Mini Kabibi Habibi

Current Path : C:/Nspire/
Upload File :
Current File : C:/Nspire/HRMSv3-03272025-1015.backup

--
-- PostgreSQL database dump
--

-- Dumped from database version 9.2.4
-- Dumped by pg_dump version 9.2.4
-- Started on 2025-03-27 10:16:14

SET statement_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SET check_function_bodies = false;
SET client_min_messages = warning;

--
-- TOC entry 468 (class 3079 OID 11727)
-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: 
--

CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;


--
-- TOC entry 4097 (class 0 OID 0)
-- Dependencies: 468
-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: 
--

COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';


SET search_path = public, pg_catalog;

--
-- TOC entry 481 (class 1255 OID 16394)
-- Name: fsl_tr_ai(); Type: FUNCTION; Schema: public; Owner: postgres
--

CREATE FUNCTION fsl_tr_ai() RETURNS trigger
    LANGUAGE plpgsql
    AS $$
DECLARE
	TempStationEmployeeId INT;
    TempStationId INT;
    TempEmployeeId INT;    
    TempEmployeeLogId INT;
    TempTimeInDate VARCHAR;
    TempTimeOutDate VARCHAR;
    TempEmployeeNumber INT;
BEGIN
	TempEmployeeNumber =  NEW."EmployeeNumber"::INTEGER;
    
	/* OBJECTIVE IS TO AUTO TRANSFER DATA INTO EMPLOYEES LOGS */ 
	/* CHECK EMPLOYEE STATIONS IF EXISTS */
    /* PAIR PREVOUS TIMOUT OUT DONT LEAVE EMPTY TIME OUT */
	/* UPDATE TO GET STATION ID FROM FACESCANNERDEVICE 3/13/2021 */
	
	/* OLD SELECT * FROM "StationEmployees" WHERE "EmployeeId" = TempEmployeeNumber*/
    IF EXISTS(SELECT "StationId" FROM "FaceScannerDevices" WHERE "FaceScannerDeviceId" = NEW."FaceScannerDeviceId") THEN
      /* GET EMPLOYEE ID EXISTS IN EMPLOYEE STATION*/
	  SELECT "StationId" INTO TempStationId FROM "FaceScannerDevices" WHERE "FaceScannerDeviceId" = NEW."FaceScannerDeviceId";	  
      /* OLD SELECT "StationEmployeeId", "StationId", "EmployeeId" INTO TempStationEmployeeId, TempStationId, TempEmployeeId FROM "StationEmployees" WHERE "EmployeeId" = TempEmployeeNumber;*/

		/* THIS IS FOR SAME DATE */
    	IF EXISTS(SELECT * FROM "EmployeeLogs" WHERE "TimeInDate"::date >= Now()::date AND "TimeInDate"::date <= Now()::date AND "EmployeeId" = TempEmployeeNumber) THEN
        	/* GET EMPLOYEEID LOG EXITSTING ID */
            SELECT "EmployeeLogId", "TimeOutDate" INTO TempEmployeeLogId, TempTimeOutDate FROM "EmployeeLogs" WHERE "EmployeeLogId" = (SELECT max("EmployeeLogId") FROM "EmployeeLogs" WHERE "EmployeeId" = TempEmployeeNumber);
			/* UPDATE TIME OUT ON SAME DATE ELSE INSERT NEW DATA FOR TIME IN */	
            IF (TempTimeOutDate IS NULL OR TempTimeOutDate= '0001-01-01') THEN
		       UPDATE "EmployeeLogs" SET "TimeOutDate" = NEW."LogDateTime"::date, "TimeOut" = NEW."LogDateTime"::TIME WHERE "EmployeeLogId" = TempEmployeeLogId;            	
            ELSE
				IF TempEmployeeNumber <> 0 THEN
					INSERT INTO "EmployeeLogs" ("EmployeeId", "StationId", "TimeInDate", "TimeOutDate", "TimeIn", "TimeOut", "IsApproved") VALUES (TempEmployeeNumber, TempStationId, NEW."LogDateTime"::date, '0001-01-01', NEW."LogDateTime"::TIME, '', false);  
				END IF;
        	END IF;    
        ELSE
        	 /* CHECK RECORD ON SAME DATE */	
             IF EXISTS(SELECT * FROM "EmployeeLogs" WHERE "TimeInDate"::date >= Now()::date AND "TimeInDate"::date <= Now()::date AND "EmployeeId" = TempEmployeeNumber) THEN
                 /* UPDATE TIMOUTDATE IF WITHIN THE DAY */
                 UPDATE "EmployeeLogs" SET "TimeOutDate" = NEW."LogDateTime"::date, "TimeOut" = NEW."LogDateTime"::TIME WHERE "EmployeeLogId" = TempEmployeeLogId;            
             ELSE
               IF EXISTS(SELECT "EmployeeLogId" FROM "EmployeeLogs" WHERE "TimeOutDate" = '0001-01-01 00:00:00' AND "TimeInDate"::date = NEW."LogDateTime"::date AND "EmployeeId" = TempEmployeeNumber) THEN
                    SELECT "EmployeeLogId", "TimeInDate"::date INTO TempEmployeeLogId, TempTimeInDate FROM "EmployeeLogs" WHERE "TimeOutDate" = '0001-01-01 00:00:00' AND "EmployeeId" = TempEmployeeNumber AND "TimeInDate"::date = NEW."LogDateTime"::date;
                    UPDATE "EmployeeLogs" SET "TimeOutDate" = NEW."LogDateTime"::date, "TimeOut" = NEW."LogDateTime"::TIME WHERE "EmployeeLogId" = TempEmployeeLogId;
               ELSE
                    /* IT'S A NEW DAY INSERT NEW LOGS FOR EMPLOYEE */
					IF TempEmployeeNumber <> 0 THEN
						INSERT INTO "EmployeeLogs" ("EmployeeId", "StationId", "TimeInDate", "TimeOutDate", "TimeIn", "TimeOut", "IsApproved") VALUES (TempEmployeeNumber, TempStationId, NEW."LogDateTime"::date, '0001-01-01', NEW."LogDateTime"::TIME, '', false);                              
					END IF;
               END IF;       
             END IF;             
		END IF;   	
     END IF;
     RETURN NEW;
END;
$$;


ALTER FUNCTION public.fsl_tr_ai() OWNER TO postgres;

SET default_tablespace = '';

SET default_with_oids = false;

--
-- TOC entry 168 (class 1259 OID 16395)
-- Name: Adjustments; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Adjustments" (
    "Id" bigint NOT NULL,
    "AdjustmentValue" numeric(11,2),
    "AdjustmentFor" character varying,
    "PayrollId" integer,
    "AdjustedBy" character varying,
    "EmployeeId" integer,
    "Balance" numeric(18,2)
);


ALTER TABLE public."Adjustments" OWNER TO postgres;

--
-- TOC entry 169 (class 1259 OID 16401)
-- Name: Adjustments_Id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Adjustments_Id_seq"
    START WITH 1
    INCREMENT BY 1
    MINVALUE 0
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Adjustments_Id_seq" OWNER TO postgres;

--
-- TOC entry 4099 (class 0 OID 0)
-- Dependencies: 169
-- Name: Adjustments_Id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Adjustments_Id_seq" OWNED BY "Adjustments"."Id";


--
-- TOC entry 170 (class 1259 OID 16403)
-- Name: AdvertisementImages; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "AdvertisementImages" (
    "AdId" bigint NOT NULL,
    "ImageName" character varying,
    "ImagePath" character varying
);


ALTER TABLE public."AdvertisementImages" OWNER TO postgres;

--
-- TOC entry 171 (class 1259 OID 16409)
-- Name: AdvertisementImages_AdId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "AdvertisementImages_AdId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."AdvertisementImages_AdId_seq" OWNER TO postgres;

--
-- TOC entry 4102 (class 0 OID 0)
-- Dependencies: 171
-- Name: AdvertisementImages_AdId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "AdvertisementImages_AdId_seq" OWNED BY "AdvertisementImages"."AdId";


--
-- TOC entry 172 (class 1259 OID 16411)
-- Name: AllowanceRates; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "AllowanceRates" (
    "AllowanceRateId" bigint NOT NULL,
    "Frequency" character varying,
    "DaysOrHours" integer,
    "From" integer,
    "To" integer,
    "Multiplier" numeric(18,2),
    "Amount" numeric(18,2),
    "AllowanceTypeId" integer
);


ALTER TABLE public."AllowanceRates" OWNER TO postgres;

--
-- TOC entry 173 (class 1259 OID 16417)
-- Name: AllowanceRates_AllowanceRateId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "AllowanceRates_AllowanceRateId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."AllowanceRates_AllowanceRateId_seq" OWNER TO postgres;

--
-- TOC entry 4105 (class 0 OID 0)
-- Dependencies: 173
-- Name: AllowanceRates_AllowanceRateId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "AllowanceRates_AllowanceRateId_seq" OWNED BY "AllowanceRates"."AllowanceRateId";


--
-- TOC entry 174 (class 1259 OID 16419)
-- Name: AllowanceTypes; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "AllowanceTypes" (
    "AllowanceTypeId" bigint NOT NULL,
    "AllowanceName" character varying,
    "MonthlyAllowanceAmount" numeric(18,2),
    "PositionId" integer,
    "DeductOrEarn" character varying,
    "PresentOrAbsent" character varying,
    "MaxTimes" integer,
    "IsTaxable" boolean DEFAULT false,
    "Category" character varying DEFAULT 'Generation'::character varying,
    "Types" character varying DEFAULT 'DAYS'::character varying,
    "IsIncludeHoliday" boolean DEFAULT false,
    "IsIncludeLeave" boolean DEFAULT false,
    "IsIncludeTravelOrder" boolean DEFAULT false,
    "EmploymentType" character varying
);


ALTER TABLE public."AllowanceTypes" OWNER TO postgres;

--
-- TOC entry 175 (class 1259 OID 16431)
-- Name: AllowanceTypes_AllowanceTypeId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "AllowanceTypes_AllowanceTypeId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."AllowanceTypes_AllowanceTypeId_seq" OWNER TO postgres;

--
-- TOC entry 4108 (class 0 OID 0)
-- Dependencies: 175
-- Name: AllowanceTypes_AllowanceTypeId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "AllowanceTypes_AllowanceTypeId_seq" OWNED BY "AllowanceTypes"."AllowanceTypeId";


--
-- TOC entry 176 (class 1259 OID 16433)
-- Name: Allowances; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Allowances" (
    "AllowanceId" bigint NOT NULL,
    "AllowanceType" character varying,
    "AllowanceDescription" character varying,
    "AllowanceAmount" numeric(18,2),
    "Type" character varying
);


ALTER TABLE public."Allowances" OWNER TO postgres;

--
-- TOC entry 177 (class 1259 OID 16439)
-- Name: Allowances_AllowanceID_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Allowances_AllowanceID_seq"
    START WITH 1
    INCREMENT BY 1
    MINVALUE 0
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Allowances_AllowanceID_seq" OWNER TO postgres;

--
-- TOC entry 4111 (class 0 OID 0)
-- Dependencies: 177
-- Name: Allowances_AllowanceID_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Allowances_AllowanceID_seq" OWNED BY "Allowances"."AllowanceId";


--
-- TOC entry 178 (class 1259 OID 16441)
-- Name: AnnualLeaveCredits; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "AnnualLeaveCredits" (
    "AnnualLeaveCreditId" bigint NOT NULL,
    "LeaveId" integer,
    "MaximumAnnualCredits" numeric(18,5),
    "EffectivityDate" date,
    "Remarks" character varying,
    "MaximumNumberOfDaysPerMonth" integer,
    "MaximumNumberOfHoursPerDay" integer
);


ALTER TABLE public."AnnualLeaveCredits" OWNER TO postgres;

--
-- TOC entry 179 (class 1259 OID 16447)
-- Name: AnnulLeaveCredits_AnnualLeaveCreditId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "AnnulLeaveCredits_AnnualLeaveCreditId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."AnnulLeaveCredits_AnnualLeaveCreditId_seq" OWNER TO postgres;

--
-- TOC entry 4114 (class 0 OID 0)
-- Dependencies: 179
-- Name: AnnulLeaveCredits_AnnualLeaveCreditId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "AnnulLeaveCredits_AnnualLeaveCreditId_seq" OWNED BY "AnnualLeaveCredits"."AnnualLeaveCreditId";


--
-- TOC entry 180 (class 1259 OID 16449)
-- Name: ApplicationPolicies; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "ApplicationPolicies" (
    "ApplicationPolicyId" bigint NOT NULL,
    "ApplicationPolicyName" character varying,
    "isEnabled" boolean,
    "Value" integer
);


ALTER TABLE public."ApplicationPolicies" OWNER TO postgres;

--
-- TOC entry 181 (class 1259 OID 16455)
-- Name: ApplicationPolicies_ApplicationPolicyId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "ApplicationPolicies_ApplicationPolicyId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."ApplicationPolicies_ApplicationPolicyId_seq" OWNER TO postgres;

--
-- TOC entry 4117 (class 0 OID 0)
-- Dependencies: 181
-- Name: ApplicationPolicies_ApplicationPolicyId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "ApplicationPolicies_ApplicationPolicyId_seq" OWNED BY "ApplicationPolicies"."ApplicationPolicyId";


--
-- TOC entry 182 (class 1259 OID 16457)
-- Name: AppliedPremiumsPolicies; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "AppliedPremiumsPolicies" (
    "AppliedPremiumsPolicyId" bigint NOT NULL,
    "AppliedPremiumName" character varying,
    "IsEnabled" boolean,
    "FixedPremiumAmount" numeric(18,2) DEFAULT 0,
    "PremiumComputationBasis" character varying DEFAULT ''::character varying,
    "EmploymentStatusName" character varying DEFAULT 'Job order'::character varying,
    "AppliedCutoff" character varying DEFAULT 'NONE'::character varying
);


ALTER TABLE public."AppliedPremiumsPolicies" OWNER TO postgres;

--
-- TOC entry 183 (class 1259 OID 16467)
-- Name: AppliedPremiumsPolicies_AppliedPremiumsPolicyId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "AppliedPremiumsPolicies_AppliedPremiumsPolicyId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."AppliedPremiumsPolicies_AppliedPremiumsPolicyId_seq" OWNER TO postgres;

--
-- TOC entry 4120 (class 0 OID 0)
-- Dependencies: 183
-- Name: AppliedPremiumsPolicies_AppliedPremiumsPolicyId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "AppliedPremiumsPolicies_AppliedPremiumsPolicyId_seq" OWNED BY "AppliedPremiumsPolicies"."AppliedPremiumsPolicyId";


--
-- TOC entry 184 (class 1259 OID 16469)
-- Name: ApprovedLogs; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "ApprovedLogs" (
    "LogDate" date,
    "TotalHrs" numeric(18,2),
    "OvertimeHrs" numeric(18,2),
    "NightPremiumHours" numeric(18,2),
    "EmployeeId" integer,
    "EarnedVacationLeaveCredits" numeric(18,5),
    "EarnedSickLeaveCredits" numeric(18,5),
    "CompensatoryLeaveCredits" numeric(18,5),
    "CompensatoryLeaveCreditOffset" numeric(18,5),
    "VacationLeaveCreditOffset" numeric(18,5),
    "ApprovedLogId" bigint NOT NULL,
    "CreditsComputationDateId" integer,
    "NightPremiumOvertimeHours" numeric(18,2) DEFAULT 0,
    "IsRegularHoliday" boolean DEFAULT false,
    "IsSpecialHoliday" boolean DEFAULT false,
    "HasAttendedHoliday" boolean DEFAULT false
);


ALTER TABLE public."ApprovedLogs" OWNER TO postgres;

--
-- TOC entry 185 (class 1259 OID 16476)
-- Name: ApprovedLogs_ApprovedLogId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "ApprovedLogs_ApprovedLogId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."ApprovedLogs_ApprovedLogId_seq" OWNER TO postgres;

--
-- TOC entry 4123 (class 0 OID 0)
-- Dependencies: 185
-- Name: ApprovedLogs_ApprovedLogId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "ApprovedLogs_ApprovedLogId_seq" OWNED BY "ApprovedLogs"."ApprovedLogId";


--
-- TOC entry 186 (class 1259 OID 16478)
-- Name: AuditTrails; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "AuditTrails" (
    "AuditTrailId" bigint NOT NULL,
    "AuditTrailDate" date,
    "AuditTrailTime" character varying,
    "SystemPage" character varying,
    "Action" character varying,
    "OldValues" character varying,
    "NewValues" character varying,
    "Username" character varying,
    "AffectedData" character varying,
    "BasicInformationId" integer
);


ALTER TABLE public."AuditTrails" OWNER TO postgres;

--
-- TOC entry 187 (class 1259 OID 16484)
-- Name: AuditTrails_AuditTrailId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "AuditTrails_AuditTrailId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."AuditTrails_AuditTrailId_seq" OWNER TO postgres;

--
-- TOC entry 4126 (class 0 OID 0)
-- Dependencies: 187
-- Name: AuditTrails_AuditTrailId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "AuditTrails_AuditTrailId_seq" OWNED BY "AuditTrails"."AuditTrailId";


--
-- TOC entry 188 (class 1259 OID 16486)
-- Name: BankAccounts; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "BankAccounts" (
    "BankAccountNumber" character varying NOT NULL,
    "BankName" character varying,
    "IsActive" boolean,
    "EmployeeId" bigint
);


ALTER TABLE public."BankAccounts" OWNER TO postgres;

--
-- TOC entry 189 (class 1259 OID 16492)
-- Name: BasicInformation; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "BasicInformation" (
    "LastName" character varying,
    "FirstName" character varying,
    "MiddleName" character varying,
    "MaidenName" character varying,
    "ExtensionName" character varying,
    "FullName" character varying,
    "Gender" character varying,
    "BirthDate" date,
    "BirthPlace" character varying,
    "Religion" character varying,
    "Address1" character varying,
    "Address2" character varying,
    "City" character varying,
    "Province" character varying,
    "LandlineNumber" character varying,
    "MobileNumber" character varying,
    "EmailAddress" character varying,
    "SSS" character varying,
    "TIN" character varying,
    "HDMF" character varying,
    "ContactName" character varying,
    "ContactRelationship" character varying,
    "ContactAddress" character varying,
    "ContactNumber" character varying,
    "Nationality" character varying,
    "Weight" character varying,
    "Height" character varying,
    "IsActive" boolean,
    "ImageName" character varying,
    "BasicInformationId" bigint NOT NULL,
    "GSIS" character varying,
    "Philhealth" character varying,
    "CivilStatus" character varying,
    "BloodType" character varying,
    "Barangay" character varying DEFAULT ''::character varying,
    "AccountName" character varying DEFAULT ''::character varying,
    "AccountNumber" character varying DEFAULT ''::character varying,
    "PermanentAddress1" character varying DEFAULT ''::character varying,
    "PermanentAddress2" character varying DEFAULT ''::character varying,
    "PermanentBarangay" character varying DEFAULT ''::character varying,
    "PermanentCity" character varying DEFAULT ''::character varying,
    "PermanentProvince" character varying DEFAULT ''::character varying,
    "Country" character varying DEFAULT 'Philippines'::character varying,
    "PermanentCountry" character varying DEFAULT 'Philippines'::character varying,
    "StreetName" character varying DEFAULT ''::character varying,
    "PermanentStreetName" character varying DEFAULT ''::character varying,
    "ZipCode" character varying DEFAULT ''::character varying,
    "PermanentZipCode" character varying DEFAULT ''::character varying,
    "CitizenshipType" character varying DEFAULT ''::character varying,
    "GovernmentIssuedId" character varying,
    "GovernmentIdNumber" character varying,
    "GovernmentIdIssuedDate" date DEFAULT '0001-01-01'::date,
    "GovernmentIdPlaceIssued" character varying,
    "Salutation" character varying
);


ALTER TABLE public."BasicInformation" OWNER TO postgres;

--
-- TOC entry 190 (class 1259 OID 16514)
-- Name: BasicInformation_BasicInformationId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "BasicInformation_BasicInformationId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."BasicInformation_BasicInformationId_seq" OWNER TO postgres;

--
-- TOC entry 4130 (class 0 OID 0)
-- Dependencies: 190
-- Name: BasicInformation_BasicInformationId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "BasicInformation_BasicInformationId_seq" OWNED BY "BasicInformation"."BasicInformationId";


--
-- TOC entry 191 (class 1259 OID 16516)
-- Name: BonusTypes; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "BonusTypes" (
    "BonusTypeId" bigint NOT NULL,
    "BonusTypeName" character varying,
    "FixedAmount" numeric(18,2),
    "PercentageFromSalary" numeric(18,2) DEFAULT 0,
    "MaxAmount" numeric(18,2) DEFAULT 0,
    "AdditionalGiftAmount" numeric(18,2),
    "AmountBasis" character varying DEFAULT ''::character varying,
    "BonusBasis" character varying DEFAULT ''::character varying,
    "RateNumber" integer DEFAULT 0,
    "YearsOfServiceRequired" integer DEFAULT 0,
    "SpecificEmploymentStatus" character varying DEFAULT ''::character varying,
    "AttendedFromDate" date DEFAULT '0001-01-01'::date,
    "AttendedToDate" date DEFAULT '0001-01-01'::date
);


ALTER TABLE public."BonusTypes" OWNER TO postgres;

--
-- TOC entry 192 (class 1259 OID 16531)
-- Name: BonusTypes_BonusTypeId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "BonusTypes_BonusTypeId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."BonusTypes_BonusTypeId_seq" OWNER TO postgres;

--
-- TOC entry 4133 (class 0 OID 0)
-- Dependencies: 192
-- Name: BonusTypes_BonusTypeId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "BonusTypes_BonusTypeId_seq" OWNED BY "BonusTypes"."BonusTypeId";


--
-- TOC entry 193 (class 1259 OID 16533)
-- Name: Breaks; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Breaks" (
    "BreakId" bigint NOT NULL,
    "EmployeeScheduleId" integer,
    "Minutes" integer
);


ALTER TABLE public."Breaks" OWNER TO postgres;

--
-- TOC entry 194 (class 1259 OID 16536)
-- Name: Breaks_BreakId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Breaks_BreakId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Breaks_BreakId_seq" OWNER TO postgres;

--
-- TOC entry 4136 (class 0 OID 0)
-- Dependencies: 194
-- Name: Breaks_BreakId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Breaks_BreakId_seq" OWNED BY "Breaks"."BreakId";


--
-- TOC entry 195 (class 1259 OID 16538)
-- Name: Cards; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Cards" (
    "CardId" character varying NOT NULL,
    "Status" character varying,
    "IsActive" boolean DEFAULT true NOT NULL,
    "ServesAs" character varying,
    "HasExpiry" boolean DEFAULT false NOT NULL,
    "ExpiryDate" date DEFAULT '0001-01-01'::date NOT NULL,
    "VisitorCardNumber" character varying DEFAULT ''::character varying
);


ALTER TABLE public."Cards" OWNER TO postgres;

--
-- TOC entry 196 (class 1259 OID 16548)
-- Name: CharacterReferences; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "CharacterReferences" (
    "LastName" character varying,
    "FirstName" character varying,
    "MiddleName" character varying,
    "ExtensionName" character varying,
    "ContactNumber" character varying,
    "Position" character varying,
    "CompanyName" character varying,
    "CompanyAddress" character varying,
    "Relationship" character varying,
    "Status" character varying,
    "CharacterReferenceId" bigint NOT NULL,
    "BasicInformationId" integer
);


ALTER TABLE public."CharacterReferences" OWNER TO postgres;

--
-- TOC entry 197 (class 1259 OID 16554)
-- Name: CharacterReferences_CharacterReferenceId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "CharacterReferences_CharacterReferenceId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."CharacterReferences_CharacterReferenceId_seq" OWNER TO postgres;

--
-- TOC entry 4140 (class 0 OID 0)
-- Dependencies: 197
-- Name: CharacterReferences_CharacterReferenceId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "CharacterReferences_CharacterReferenceId_seq" OWNED BY "CharacterReferences"."CharacterReferenceId";


--
-- TOC entry 198 (class 1259 OID 16556)
-- Name: Children; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Children" (
    "ChildrenId" bigint NOT NULL,
    "FirstName" character varying,
    "MiddleName" character varying,
    "LastName" character varying,
    "FullName" character varying,
    "Gender" character varying,
    "BirthDate" date,
    "BirthPlace" character varying,
    "IsDependent" boolean,
    "EmployeeId" bigint
);


ALTER TABLE public."Children" OWNER TO postgres;

--
-- TOC entry 199 (class 1259 OID 16562)
-- Name: Children_ChildrenId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Children_ChildrenId_seq"
    START WITH 1
    INCREMENT BY 1
    MINVALUE 0
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Children_ChildrenId_seq" OWNER TO postgres;

--
-- TOC entry 4143 (class 0 OID 0)
-- Dependencies: 199
-- Name: Children_ChildrenId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Children_ChildrenId_seq" OWNED BY "Children"."ChildrenId";


--
-- TOC entry 200 (class 1259 OID 16564)
-- Name: CommunityServices; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "CommunityServices" (
    "CommunityServiceId" bigint NOT NULL,
    "Status" character varying,
    "BasicInformationId" integer,
    "OrganizationName" character varying,
    "OrganizationAddress" character varying,
    "DateFrom" character varying,
    "DateTo" character varying,
    "NumberOfHours" character varying
);


ALTER TABLE public."CommunityServices" OWNER TO postgres;

--
-- TOC entry 201 (class 1259 OID 16570)
-- Name: CommunityServices_CommunityServiceId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "CommunityServices_CommunityServiceId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."CommunityServices_CommunityServiceId_seq" OWNER TO postgres;

--
-- TOC entry 4146 (class 0 OID 0)
-- Dependencies: 201
-- Name: CommunityServices_CommunityServiceId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "CommunityServices_CommunityServiceId_seq" OWNED BY "CommunityServices"."CommunityServiceId";


--
-- TOC entry 202 (class 1259 OID 16572)
-- Name: Companies; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Companies" (
    "CompanyId" bigint NOT NULL,
    "CompanyName" character varying,
    "ContactPerson" character varying,
    "ContactNumber" character varying,
    "CompanyAddress" character varying
);


ALTER TABLE public."Companies" OWNER TO postgres;

--
-- TOC entry 203 (class 1259 OID 16578)
-- Name: Companies_CompanyId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Companies_CompanyId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Companies_CompanyId_seq" OWNER TO postgres;

--
-- TOC entry 4149 (class 0 OID 0)
-- Dependencies: 203
-- Name: Companies_CompanyId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Companies_CompanyId_seq" OWNED BY "Companies"."CompanyId";


--
-- TOC entry 204 (class 1259 OID 16580)
-- Name: ContributionMemberships; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "ContributionMemberships" (
    "ContributionMembershipId" bigint NOT NULL,
    "EmployeeId" integer,
    "DateStarted" date NOT NULL,
    "DateEnded" date,
    "ContributionTypeId" integer
);


ALTER TABLE public."ContributionMemberships" OWNER TO postgres;

--
-- TOC entry 205 (class 1259 OID 16583)
-- Name: ContributionMemberships_ContributionMembershipId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "ContributionMemberships_ContributionMembershipId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."ContributionMemberships_ContributionMembershipId_seq" OWNER TO postgres;

--
-- TOC entry 4152 (class 0 OID 0)
-- Dependencies: 205
-- Name: ContributionMemberships_ContributionMembershipId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "ContributionMemberships_ContributionMembershipId_seq" OWNED BY "ContributionMemberships"."ContributionMembershipId";


--
-- TOC entry 206 (class 1259 OID 16585)
-- Name: ContributionTypes; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "ContributionTypes" (
    "ContributionTypeId" bigint NOT NULL,
    "ContributionTypeName" character varying,
    "ContributionImplementation" character varying,
    "SalaryPercentage" numeric(18,2),
    "FixedAmount" numeric(18,2),
    "MaxAmount" numeric(18,2)
);


ALTER TABLE public."ContributionTypes" OWNER TO postgres;

--
-- TOC entry 207 (class 1259 OID 16591)
-- Name: ContributionTypes_ContributionTypeId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "ContributionTypes_ContributionTypeId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."ContributionTypes_ContributionTypeId_seq" OWNER TO postgres;

--
-- TOC entry 4155 (class 0 OID 0)
-- Dependencies: 207
-- Name: ContributionTypes_ContributionTypeId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "ContributionTypes_ContributionTypeId_seq" OWNED BY "ContributionTypes"."ContributionTypeId";


--
-- TOC entry 208 (class 1259 OID 16593)
-- Name: Courses; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Courses" (
    "CourseId" bigint NOT NULL,
    "CourseName" character varying,
    "Level" character varying
);


ALTER TABLE public."Courses" OWNER TO postgres;

--
-- TOC entry 209 (class 1259 OID 16599)
-- Name: Courses_CourseId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Courses_CourseId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Courses_CourseId_seq" OWNER TO postgres;

--
-- TOC entry 4158 (class 0 OID 0)
-- Dependencies: 209
-- Name: Courses_CourseId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Courses_CourseId_seq" OWNED BY "Courses"."CourseId";


--
-- TOC entry 210 (class 1259 OID 16601)
-- Name: Credentials; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Credentials" (
    "CredentialId" bigint NOT NULL,
    "BasicInformationId" integer,
    "CredentialName" character varying,
    "CredentialImageName" character varying
);


ALTER TABLE public."Credentials" OWNER TO postgres;

--
-- TOC entry 211 (class 1259 OID 16607)
-- Name: Credentials_CredentialId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Credentials_CredentialId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Credentials_CredentialId_seq" OWNER TO postgres;

--
-- TOC entry 4161 (class 0 OID 0)
-- Dependencies: 211
-- Name: Credentials_CredentialId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Credentials_CredentialId_seq" OWNED BY "Credentials"."CredentialId";


--
-- TOC entry 212 (class 1259 OID 16609)
-- Name: CreditsComputationDates; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "CreditsComputationDates" (
    "CreditsComputationDateId" bigint NOT NULL,
    "Month" integer,
    "Year" integer
);


ALTER TABLE public."CreditsComputationDates" OWNER TO postgres;

--
-- TOC entry 213 (class 1259 OID 16612)
-- Name: CreditsComputationDates_CreditsComputationDateId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "CreditsComputationDates_CreditsComputationDateId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."CreditsComputationDates_CreditsComputationDateId_seq" OWNER TO postgres;

--
-- TOC entry 4164 (class 0 OID 0)
-- Dependencies: 213
-- Name: CreditsComputationDates_CreditsComputationDateId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "CreditsComputationDates_CreditsComputationDateId_seq" OWNED BY "CreditsComputationDates"."CreditsComputationDateId";


--
-- TOC entry 214 (class 1259 OID 16614)
-- Name: DailyLeaveCredits; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "DailyLeaveCredits" (
    "DailyLeaveCreditId" bigint NOT NULL,
    "Day" integer,
    "LeaveEarned" numeric(18,5)
);


ALTER TABLE public."DailyLeaveCredits" OWNER TO postgres;

--
-- TOC entry 215 (class 1259 OID 16617)
-- Name: DailyLeaveCredits_DailyLeaveCreditId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "DailyLeaveCredits_DailyLeaveCreditId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."DailyLeaveCredits_DailyLeaveCreditId_seq" OWNER TO postgres;

--
-- TOC entry 4167 (class 0 OID 0)
-- Dependencies: 215
-- Name: DailyLeaveCredits_DailyLeaveCreditId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "DailyLeaveCredits_DailyLeaveCreditId_seq" OWNED BY "DailyLeaveCredits"."DailyLeaveCreditId";


--
-- TOC entry 216 (class 1259 OID 16619)
-- Name: DayConversionValues; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "DayConversionValues" (
    "DayConversionValueId" bigint NOT NULL,
    "Hour" integer,
    "Minute" integer,
    "EquivalentDay" numeric(18,5)
);


ALTER TABLE public."DayConversionValues" OWNER TO postgres;

--
-- TOC entry 217 (class 1259 OID 16622)
-- Name: DayConversionValues_DayConversionValueId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "DayConversionValues_DayConversionValueId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."DayConversionValues_DayConversionValueId_seq" OWNER TO postgres;

--
-- TOC entry 4170 (class 0 OID 0)
-- Dependencies: 217
-- Name: DayConversionValues_DayConversionValueId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "DayConversionValues_DayConversionValueId_seq" OWNED BY "DayConversionValues"."DayConversionValueId";


--
-- TOC entry 218 (class 1259 OID 16624)
-- Name: DeductionTypes; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "DeductionTypes" (
    "DeductionTypeId" bigint NOT NULL,
    "DeductionTypeName" character varying,
    "Cutoff" character varying,
    "Amount" numeric(18,2)
);


ALTER TABLE public."DeductionTypes" OWNER TO postgres;

--
-- TOC entry 219 (class 1259 OID 16630)
-- Name: DeductionTypes_DeductionTypeId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "DeductionTypes_DeductionTypeId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."DeductionTypes_DeductionTypeId_seq" OWNER TO postgres;

--
-- TOC entry 4173 (class 0 OID 0)
-- Dependencies: 219
-- Name: DeductionTypes_DeductionTypeId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "DeductionTypes_DeductionTypeId_seq" OWNED BY "DeductionTypes"."DeductionTypeId";


--
-- TOC entry 220 (class 1259 OID 16632)
-- Name: Departments; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Departments" (
    "DepartmentName" character varying,
    "Description" character varying,
    "Rank" integer,
    "DepartmentId" bigint NOT NULL,
    "DepartmentCode" character varying DEFAULT ''::character varying,
    "ShortName" character varying DEFAULT ''::character varying,
    "ExemptedToHolidays" boolean DEFAULT false,
    "ExemptedToWeekends" boolean DEFAULT false,
    "OldName" character varying DEFAULT ''::character varying,
    "FundingType" character varying DEFAULT 'General Fund'::character varying,
    "SignatoryName" character varying DEFAULT ''::character varying,
    "SignatoryPosition" character varying DEFAULT ''::character varying,
    "FppCode" character varying DEFAULT ''::character varying
);


ALTER TABLE public."Departments" OWNER TO postgres;

--
-- TOC entry 221 (class 1259 OID 16647)
-- Name: Departments_DepartmentId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Departments_DepartmentId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Departments_DepartmentId_seq" OWNER TO postgres;

--
-- TOC entry 4176 (class 0 OID 0)
-- Dependencies: 221
-- Name: Departments_DepartmentId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Departments_DepartmentId_seq" OWNED BY "Departments"."DepartmentId";


--
-- TOC entry 222 (class 1259 OID 16649)
-- Name: DistributionReleases; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "DistributionReleases" (
    "DistributionEntryId" bigint NOT NULL,
    "DistributionId" integer,
    "EmployeeId" integer,
    "DateReleased" date,
    "Amount" numeric(18,2),
    "ServiceRecordId" integer
);


ALTER TABLE public."DistributionReleases" OWNER TO postgres;

--
-- TOC entry 223 (class 1259 OID 16652)
-- Name: DistributionReleases_DistributionEntryId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "DistributionReleases_DistributionEntryId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."DistributionReleases_DistributionEntryId_seq" OWNER TO postgres;

--
-- TOC entry 4179 (class 0 OID 0)
-- Dependencies: 223
-- Name: DistributionReleases_DistributionEntryId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "DistributionReleases_DistributionEntryId_seq" OWNED BY "DistributionReleases"."DistributionEntryId";


--
-- TOC entry 224 (class 1259 OID 16654)
-- Name: Distributions; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Distributions" (
    "DistributionId" bigint NOT NULL,
    "DistributionName" character varying,
    "DistributionCreationDate" date,
    "Description" character varying
);


ALTER TABLE public."Distributions" OWNER TO postgres;

--
-- TOC entry 225 (class 1259 OID 16660)
-- Name: Distributions_DistributionId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Distributions_DistributionId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Distributions_DistributionId_seq" OWNER TO postgres;

--
-- TOC entry 4182 (class 0 OID 0)
-- Dependencies: 225
-- Name: Distributions_DistributionId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Distributions_DistributionId_seq" OWNED BY "Distributions"."DistributionId";


--
-- TOC entry 226 (class 1259 OID 16662)
-- Name: Divisions; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Divisions" (
    "DivisionId" bigint NOT NULL,
    "DivisionName" character varying,
    "Description" character varying,
    "DepartmentId" integer,
    "Rank" integer
);


ALTER TABLE public."Divisions" OWNER TO postgres;

--
-- TOC entry 227 (class 1259 OID 16668)
-- Name: Divisions_DivisionId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Divisions_DivisionId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Divisions_DivisionId_seq" OWNER TO postgres;

--
-- TOC entry 4185 (class 0 OID 0)
-- Dependencies: 227
-- Name: Divisions_DivisionId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Divisions_DivisionId_seq" OWNED BY "Divisions"."DivisionId";


--
-- TOC entry 228 (class 1259 OID 16670)
-- Name: EducationalBackgrounds; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "EducationalBackgrounds" (
    "EducationalBackgroundId" bigint NOT NULL,
    "Level" character varying,
    "SchoolorUniversity" character varying,
    "YearGraduated" character varying,
    "CourseOrMajor" character varying,
    "Awards" character varying,
    "BasicInformationId" integer,
    "DateFrom" character varying,
    "DateTo" character varying,
    "EducationalAttainment" character varying,
    "Course" character varying DEFAULT ''::character varying,
    "Major" character varying DEFAULT ''::character varying,
    "CourseId" integer DEFAULT 0
);


ALTER TABLE public."EducationalBackgrounds" OWNER TO postgres;

--
-- TOC entry 229 (class 1259 OID 16679)
-- Name: EducationalBackground_EducationalID_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "EducationalBackground_EducationalID_seq"
    START WITH 1
    INCREMENT BY 1
    MINVALUE 0
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."EducationalBackground_EducationalID_seq" OWNER TO postgres;

--
-- TOC entry 4188 (class 0 OID 0)
-- Dependencies: 229
-- Name: EducationalBackground_EducationalID_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "EducationalBackground_EducationalID_seq" OWNED BY "EducationalBackgrounds"."EducationalBackgroundId";


--
-- TOC entry 230 (class 1259 OID 16681)
-- Name: Eligibilities; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Eligibilities" (
    "EligibilityId" bigint NOT NULL,
    "Title" character varying,
    "LicenseNumber" character varying,
    "BasicInformationId" integer,
    "ExpirationDate" character varying,
    "PlaceOfExamination" character varying,
    "Rating" character varying,
    "DateOfExamination" character varying,
    "DateOfRelease" character varying,
    "LastDateOfExamination" character varying DEFAULT ''::character varying,
    "EligibilityDocumentTypeId" integer DEFAULT 0,
    "ImplementationDate" character varying DEFAULT ''::character varying,
    "ImplementationExpiration" character varying DEFAULT ''::character varying,
    "EligibilityProcessStatusId" integer DEFAULT 0,
    "LevelOfEligibility" character varying DEFAULT ''::character varying
);


ALTER TABLE public."Eligibilities" OWNER TO postgres;

--
-- TOC entry 231 (class 1259 OID 16693)
-- Name: Eligibilities_EligibilityId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Eligibilities_EligibilityId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Eligibilities_EligibilityId_seq" OWNER TO postgres;

--
-- TOC entry 4191 (class 0 OID 0)
-- Dependencies: 231
-- Name: Eligibilities_EligibilityId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Eligibilities_EligibilityId_seq" OWNED BY "Eligibilities"."EligibilityId";


--
-- TOC entry 232 (class 1259 OID 16695)
-- Name: EligibilityDocumentTypes; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "EligibilityDocumentTypes" (
    "EligibilityDocumentTypeId" bigint NOT NULL,
    "DocumentType" character varying,
    "Rank" integer DEFAULT 0
);


ALTER TABLE public."EligibilityDocumentTypes" OWNER TO postgres;

--
-- TOC entry 233 (class 1259 OID 16702)
-- Name: EligibilityDocumentTypes_EligibilityDocumentTypeId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "EligibilityDocumentTypes_EligibilityDocumentTypeId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."EligibilityDocumentTypes_EligibilityDocumentTypeId_seq" OWNER TO postgres;

--
-- TOC entry 4194 (class 0 OID 0)
-- Dependencies: 233
-- Name: EligibilityDocumentTypes_EligibilityDocumentTypeId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "EligibilityDocumentTypes_EligibilityDocumentTypeId_seq" OWNED BY "EligibilityDocumentTypes"."EligibilityDocumentTypeId";


--
-- TOC entry 234 (class 1259 OID 16704)
-- Name: EligibilityProcessStatuses; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "EligibilityProcessStatuses" (
    "EligibilityProcessStatusId" bigint NOT NULL,
    "StatusName" character varying,
    "StatusNumber" integer
);


ALTER TABLE public."EligibilityProcessStatuses" OWNER TO postgres;

--
-- TOC entry 235 (class 1259 OID 16710)
-- Name: EligibilityProcessStatuses_EligibilityProcessStatusId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "EligibilityProcessStatuses_EligibilityProcessStatusId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."EligibilityProcessStatuses_EligibilityProcessStatusId_seq" OWNER TO postgres;

--
-- TOC entry 4197 (class 0 OID 0)
-- Dependencies: 235
-- Name: EligibilityProcessStatuses_EligibilityProcessStatusId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "EligibilityProcessStatuses_EligibilityProcessStatusId_seq" OWNED BY "EligibilityProcessStatuses"."EligibilityProcessStatusId";


--
-- TOC entry 236 (class 1259 OID 16712)
-- Name: EmployeeAllowances; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "EmployeeAllowances" (
    "AllowanceTypeId" bigint,
    "ServiceRecordId" bigint,
    "EffectivityDate" date,
    "EmployeeAllowanceId" bigint NOT NULL,
    "Period" character varying DEFAULT 'NONE'::character varying,
    "AllowanceAmount" numeric(18,2) DEFAULT 0
);


ALTER TABLE public."EmployeeAllowances" OWNER TO postgres;

--
-- TOC entry 237 (class 1259 OID 16720)
-- Name: EmployeeAllowances_EmployeeAllowanceId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "EmployeeAllowances_EmployeeAllowanceId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."EmployeeAllowances_EmployeeAllowanceId_seq" OWNER TO postgres;

--
-- TOC entry 4200 (class 0 OID 0)
-- Dependencies: 237
-- Name: EmployeeAllowances_EmployeeAllowanceId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "EmployeeAllowances_EmployeeAllowanceId_seq" OWNED BY "EmployeeAllowances"."EmployeeAllowanceId";


--
-- TOC entry 238 (class 1259 OID 16722)
-- Name: EmployeeAwards; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "EmployeeAwards" (
    "EmployeeAwardId" bigint NOT NULL,
    "DateAwarded" date,
    "EmployeeId" integer,
    "LoyaltyAwardPolicyId" integer,
    "Remarks" character varying,
    "AwardAmount" numeric(18,2) DEFAULT 0,
    "Status" character varying DEFAULT 'Granted'::character varying
);


ALTER TABLE public."EmployeeAwards" OWNER TO postgres;

--
-- TOC entry 239 (class 1259 OID 16730)
-- Name: EmployeeAwards_EmployeeAwardId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "EmployeeAwards_EmployeeAwardId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."EmployeeAwards_EmployeeAwardId_seq" OWNER TO postgres;

--
-- TOC entry 4203 (class 0 OID 0)
-- Dependencies: 239
-- Name: EmployeeAwards_EmployeeAwardId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "EmployeeAwards_EmployeeAwardId_seq" OWNED BY "EmployeeAwards"."EmployeeAwardId";


--
-- TOC entry 240 (class 1259 OID 16732)
-- Name: EmployeeBonuses; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "EmployeeBonuses" (
    "EmployeeBonusId" bigint NOT NULL,
    "EmployeeId" integer,
    "Amount" numeric(18,2)
);


ALTER TABLE public."EmployeeBonuses" OWNER TO postgres;

--
-- TOC entry 241 (class 1259 OID 16735)
-- Name: EmployeeCards; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "EmployeeCards" (
    "CardId" character varying NOT NULL,
    "EmployeeId" integer,
    "Enabled" boolean
);


ALTER TABLE public."EmployeeCards" OWNER TO postgres;

--
-- TOC entry 242 (class 1259 OID 16741)
-- Name: EmployeeDeductions; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "EmployeeDeductions" (
    "EmployeeDeductionId" bigint NOT NULL,
    "DeductionTypeId" integer,
    "EmployeeId" integer,
    "Cutoff" character varying,
    "DeductionAmount" numeric(18,2)
);


ALTER TABLE public."EmployeeDeductions" OWNER TO postgres;

--
-- TOC entry 243 (class 1259 OID 16747)
-- Name: EmployeeDeductions_EmployeeDeductionId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "EmployeeDeductions_EmployeeDeductionId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."EmployeeDeductions_EmployeeDeductionId_seq" OWNER TO postgres;

--
-- TOC entry 4208 (class 0 OID 0)
-- Dependencies: 243
-- Name: EmployeeDeductions_EmployeeDeductionId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "EmployeeDeductions_EmployeeDeductionId_seq" OWNED BY "EmployeeDeductions"."EmployeeDeductionId";


--
-- TOC entry 244 (class 1259 OID 16749)
-- Name: EmployeeEarnings; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "EmployeeEarnings" (
    "EarningId" bigint NOT NULL,
    "BasicInformationId" integer,
    "Amount" numeric(18,2),
    "Source" character varying,
    "SourceId" integer,
    "ServiceRecordId" integer,
    "DateRecieved" date
);


ALTER TABLE public."EmployeeEarnings" OWNER TO postgres;

--
-- TOC entry 245 (class 1259 OID 16755)
-- Name: EmployeeEarnings_EarningId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "EmployeeEarnings_EarningId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."EmployeeEarnings_EarningId_seq" OWNER TO postgres;

--
-- TOC entry 4211 (class 0 OID 0)
-- Dependencies: 245
-- Name: EmployeeEarnings_EarningId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "EmployeeEarnings_EarningId_seq" OWNED BY "EmployeeEarnings"."EarningId";


--
-- TOC entry 246 (class 1259 OID 16757)
-- Name: EmployeeLogs; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "EmployeeLogs" (
    "TimeIn" character varying,
    "TimeOut" character varying,
    "Remarks" character varying,
    "EmployeeLogId" bigint NOT NULL,
    "EmployeeId" bigint,
    "TimeInDate" date,
    "TimeOutDate" date,
    "TimeInImage" character varying,
    "TimeOutImage" character varying,
    "IsApproved" boolean,
    "StationId" integer DEFAULT 0
);


ALTER TABLE public."EmployeeLogs" OWNER TO postgres;

--
-- TOC entry 247 (class 1259 OID 16764)
-- Name: EmployeeLogs_EmployeeLogId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "EmployeeLogs_EmployeeLogId_seq"
    START WITH 1
    INCREMENT BY 1
    MINVALUE 0
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."EmployeeLogs_EmployeeLogId_seq" OWNER TO postgres;

--
-- TOC entry 4214 (class 0 OID 0)
-- Dependencies: 247
-- Name: EmployeeLogs_EmployeeLogId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "EmployeeLogs_EmployeeLogId_seq" OWNED BY "EmployeeLogs"."EmployeeLogId";


--
-- TOC entry 248 (class 1259 OID 16766)
-- Name: EmployeePremiumContributions; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "EmployeePremiumContributions" (
    "EmployeePremiumContributionId" bigint NOT NULL,
    "EmployeeId" integer,
    "EffectivityDate" date,
    "PremiumType" character varying,
    "Amount" numeric(18,2),
    "Percentage" numeric(18,2),
    "IsCancelled" boolean,
    "SetGovernmentShare" boolean DEFAULT false,
    "GovernmentShareValue" numeric(18,2) DEFAULT 0
);


ALTER TABLE public."EmployeePremiumContributions" OWNER TO postgres;

--
-- TOC entry 249 (class 1259 OID 16774)
-- Name: EmployeePremiumContributions_EmployeePremiumContributionId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "EmployeePremiumContributions_EmployeePremiumContributionId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."EmployeePremiumContributions_EmployeePremiumContributionId_seq" OWNER TO postgres;

--
-- TOC entry 4217 (class 0 OID 0)
-- Dependencies: 249
-- Name: EmployeePremiumContributions_EmployeePremiumContributionId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "EmployeePremiumContributions_EmployeePremiumContributionId_seq" OWNED BY "EmployeePremiumContributions"."EmployeePremiumContributionId";


--
-- TOC entry 250 (class 1259 OID 16776)
-- Name: EmployeeRelatives; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "EmployeeRelatives" (
    "EmployeeRelativeId" bigint NOT NULL,
    "FirstName" character varying,
    "MiddleName" character varying,
    "LastName" character varying,
    "ExtensionName" character varying,
    "FullName" character varying,
    "Gender" character varying,
    "BirthDate" date,
    "BirthPlace" character varying,
    "Occupation" character varying,
    "EmailAddress" character varying,
    "ContactNumber" character varying,
    "Relationship" character varying,
    "CivilStatus" character varying,
    "BasicInformationId" integer,
    "MaidenName" character varying
);


ALTER TABLE public."EmployeeRelatives" OWNER TO postgres;

--
-- TOC entry 251 (class 1259 OID 16782)
-- Name: EmployeeRelatives_EmployeeRelativeId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "EmployeeRelatives_EmployeeRelativeId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."EmployeeRelatives_EmployeeRelativeId_seq" OWNER TO postgres;

--
-- TOC entry 4220 (class 0 OID 0)
-- Dependencies: 251
-- Name: EmployeeRelatives_EmployeeRelativeId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "EmployeeRelatives_EmployeeRelativeId_seq" OWNED BY "EmployeeRelatives"."EmployeeRelativeId";


--
-- TOC entry 252 (class 1259 OID 16784)
-- Name: EmployeeSchedules; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "EmployeeSchedules" (
    "EmployeeScheduleId" bigint NOT NULL,
    "EmployeeId" bigint,
    "StartDate" date,
    "StartTime" character varying,
    "EndDate" date,
    "EndTime" character varying,
    "IsOtDay" boolean
);


ALTER TABLE public."EmployeeSchedules" OWNER TO postgres;

--
-- TOC entry 253 (class 1259 OID 16790)
-- Name: EmployeeSchedules_EmployeeScheduleId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "EmployeeSchedules_EmployeeScheduleId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."EmployeeSchedules_EmployeeScheduleId_seq" OWNER TO postgres;

--
-- TOC entry 4223 (class 0 OID 0)
-- Dependencies: 253
-- Name: EmployeeSchedules_EmployeeScheduleId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "EmployeeSchedules_EmployeeScheduleId_seq" OWNED BY "EmployeeSchedules"."EmployeeScheduleId";


--
-- TOC entry 254 (class 1259 OID 16792)
-- Name: EmployeeTrainings; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "EmployeeTrainings" (
    "EmployeeTrainingId" bigint NOT NULL,
    "BasicInformationId" integer,
    "TrainingId" integer,
    "Hours" numeric(18,2),
    "NatureOfParticipation" character varying,
    "TrainingPerformanceRate" integer,
    "Status" character varying,
    "FromDate" date,
    "ToDate" date,
    "SponsoringAgency" character varying
);


ALTER TABLE public."EmployeeTrainings" OWNER TO postgres;

--
-- TOC entry 255 (class 1259 OID 16798)
-- Name: EmployeeTrainings_EmployeeTrainingId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "EmployeeTrainings_EmployeeTrainingId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."EmployeeTrainings_EmployeeTrainingId_seq" OWNER TO postgres;

--
-- TOC entry 4226 (class 0 OID 0)
-- Dependencies: 255
-- Name: EmployeeTrainings_EmployeeTrainingId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "EmployeeTrainings_EmployeeTrainingId_seq" OWNED BY "EmployeeTrainings"."EmployeeTrainingId";


--
-- TOC entry 256 (class 1259 OID 16800)
-- Name: EmployeeViolations; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "EmployeeViolations" (
    "EmployeeViolationId" bigint NOT NULL,
    "EmployeeId" integer,
    "ViolationId" integer,
    "StartDateOfViolation" date,
    "SuspensionDays" integer,
    "Fine" numeric(18,2),
    "IsDismissed" boolean,
    "EndDateOfViolation" date
);


ALTER TABLE public."EmployeeViolations" OWNER TO postgres;

--
-- TOC entry 257 (class 1259 OID 16803)
-- Name: EmployeeViolations_EmployeeViolationId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "EmployeeViolations_EmployeeViolationId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."EmployeeViolations_EmployeeViolationId_seq" OWNER TO postgres;

--
-- TOC entry 4229 (class 0 OID 0)
-- Dependencies: 257
-- Name: EmployeeViolations_EmployeeViolationId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "EmployeeViolations_EmployeeViolationId_seq" OWNED BY "EmployeeViolations"."EmployeeViolationId";


--
-- TOC entry 258 (class 1259 OID 16805)
-- Name: EmployeeWeeklySchedules; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "EmployeeWeeklySchedules" (
    "EmployeeWeeklyScheduleId" bigint NOT NULL,
    "ScheduleTemplateId" integer,
    "DayOfWeek" character varying,
    "StartTime" timestamp without time zone,
    "EndTime" timestamp without time zone,
    "NextDayOut" boolean DEFAULT false,
    "IsOtDay" boolean
);


ALTER TABLE public."EmployeeWeeklySchedules" OWNER TO postgres;

--
-- TOC entry 259 (class 1259 OID 16812)
-- Name: EmployeeWeeklySchedulesMembers; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "EmployeeWeeklySchedulesMembers" (
    "EmployeeWeeklySchedulesMemberId" bigint NOT NULL,
    "EmployeeId" integer,
    "ScheduleTemplateId" integer
);


ALTER TABLE public."EmployeeWeeklySchedulesMembers" OWNER TO postgres;

--
-- TOC entry 260 (class 1259 OID 16815)
-- Name: EmployeeWeeklySchedulesMember_EmployeeWeeklySchedulesMember_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "EmployeeWeeklySchedulesMember_EmployeeWeeklySchedulesMember_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."EmployeeWeeklySchedulesMember_EmployeeWeeklySchedulesMember_seq" OWNER TO postgres;

--
-- TOC entry 4233 (class 0 OID 0)
-- Dependencies: 260
-- Name: EmployeeWeeklySchedulesMember_EmployeeWeeklySchedulesMember_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "EmployeeWeeklySchedulesMember_EmployeeWeeklySchedulesMember_seq" OWNED BY "EmployeeWeeklySchedulesMembers"."EmployeeWeeklySchedulesMemberId";


--
-- TOC entry 261 (class 1259 OID 16817)
-- Name: EmployeeWeeklySchedules_EmployeeWeeklyScheduleId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "EmployeeWeeklySchedules_EmployeeWeeklyScheduleId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."EmployeeWeeklySchedules_EmployeeWeeklyScheduleId_seq" OWNER TO postgres;

--
-- TOC entry 4235 (class 0 OID 0)
-- Dependencies: 261
-- Name: EmployeeWeeklySchedules_EmployeeWeeklyScheduleId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "EmployeeWeeklySchedules_EmployeeWeeklyScheduleId_seq" OWNED BY "EmployeeWeeklySchedules"."EmployeeWeeklyScheduleId";


--
-- TOC entry 262 (class 1259 OID 16819)
-- Name: EmployeeWithholdingTaxes; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "EmployeeWithholdingTaxes" (
    "EmployeeWithholdingTaxId" bigint NOT NULL,
    "EmployeeId" integer,
    "EffectivityDate" date,
    "TaxAmount" numeric(18,2),
    "IsCancelled" boolean,
    "Percentage" numeric(18,2) DEFAULT 0
);


ALTER TABLE public."EmployeeWithholdingTaxes" OWNER TO postgres;

--
-- TOC entry 263 (class 1259 OID 16823)
-- Name: EmployeeWithholdingTaxes_EmployeeWithholdingTaxId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "EmployeeWithholdingTaxes_EmployeeWithholdingTaxId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."EmployeeWithholdingTaxes_EmployeeWithholdingTaxId_seq" OWNER TO postgres;

--
-- TOC entry 4238 (class 0 OID 0)
-- Dependencies: 263
-- Name: EmployeeWithholdingTaxes_EmployeeWithholdingTaxId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "EmployeeWithholdingTaxes_EmployeeWithholdingTaxId_seq" OWNED BY "EmployeeBonuses"."EmployeeBonusId";


--
-- TOC entry 264 (class 1259 OID 16825)
-- Name: EmployeeWithholdingTaxes_EmployeeWithholdingTaxId_seq1; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "EmployeeWithholdingTaxes_EmployeeWithholdingTaxId_seq1"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."EmployeeWithholdingTaxes_EmployeeWithholdingTaxId_seq1" OWNER TO postgres;

--
-- TOC entry 4240 (class 0 OID 0)
-- Dependencies: 264
-- Name: EmployeeWithholdingTaxes_EmployeeWithholdingTaxId_seq1; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "EmployeeWithholdingTaxes_EmployeeWithholdingTaxId_seq1" OWNED BY "EmployeeWithholdingTaxes"."EmployeeWithholdingTaxId";


--
-- TOC entry 265 (class 1259 OID 16827)
-- Name: Employees; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Employees" (
    "BasicInformationId" integer,
    "EmployeeNumber" character varying,
    "EmployeeId" bigint NOT NULL,
    "BiometricId" integer DEFAULT 0,
    "FingerprintDataString" character varying DEFAULT ''::character varying,
    "BiometricIdString" character varying DEFAULT ''::character varying,
    "FingerprintTemplateFilePath" character varying DEFAULT ''::character varying,
    "FingerprintBytes" bytea,
    "FingerprintDataKiosk" character varying DEFAULT ''::character varying
);


ALTER TABLE public."Employees" OWNER TO postgres;

--
-- TOC entry 266 (class 1259 OID 16838)
-- Name: Employees_EmployeeId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Employees_EmployeeId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Employees_EmployeeId_seq" OWNER TO postgres;

--
-- TOC entry 4243 (class 0 OID 0)
-- Dependencies: 266
-- Name: Employees_EmployeeId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Employees_EmployeeId_seq" OWNED BY "Employees"."EmployeeId";


--
-- TOC entry 267 (class 1259 OID 16840)
-- Name: Employees_EmployeeSequence_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Employees_EmployeeSequence_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Employees_EmployeeSequence_seq" OWNER TO postgres;

--
-- TOC entry 268 (class 1259 OID 16842)
-- Name: Employees_SeqId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Employees_SeqId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Employees_SeqId_seq" OWNER TO postgres;

--
-- TOC entry 269 (class 1259 OID 16844)
-- Name: EmploymentStatus; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "EmploymentStatus" (
    "EmploymentStatusId" bigint NOT NULL,
    "EmploymentStatusName" character varying,
    "Remarks" character varying,
    "IsRegular" boolean,
    "IsPlantilla" boolean,
    "WithBenefits" boolean,
    "IsUsingSalaryGrade" boolean,
    "IsUsingWitholdingTax" boolean,
    "TaxAmountPercentage" numeric(18,2)
);


ALTER TABLE public."EmploymentStatus" OWNER TO postgres;

--
-- TOC entry 270 (class 1259 OID 16850)
-- Name: EmploymentStatusPolicies; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "EmploymentStatusPolicies" (
    "EmploymentStatusPolicyId" bigint NOT NULL,
    "EmploymentStatus" character varying,
    "IsEnabled" boolean,
    "WithBenefits" boolean
);


ALTER TABLE public."EmploymentStatusPolicies" OWNER TO postgres;

--
-- TOC entry 271 (class 1259 OID 16856)
-- Name: EmploymentStatusPolicies_EmploymentStatusPolicyId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "EmploymentStatusPolicies_EmploymentStatusPolicyId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."EmploymentStatusPolicies_EmploymentStatusPolicyId_seq" OWNER TO postgres;

--
-- TOC entry 4249 (class 0 OID 0)
-- Dependencies: 271
-- Name: EmploymentStatusPolicies_EmploymentStatusPolicyId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "EmploymentStatusPolicies_EmploymentStatusPolicyId_seq" OWNED BY "EmploymentStatusPolicies"."EmploymentStatusPolicyId";


--
-- TOC entry 272 (class 1259 OID 16858)
-- Name: EmploymentStatus_EmploymentStatusId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "EmploymentStatus_EmploymentStatusId_seq"
    START WITH 1
    INCREMENT BY 1
    MINVALUE 0
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."EmploymentStatus_EmploymentStatusId_seq" OWNER TO postgres;

--
-- TOC entry 4251 (class 0 OID 0)
-- Dependencies: 272
-- Name: EmploymentStatus_EmploymentStatusId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "EmploymentStatus_EmploymentStatusId_seq" OWNED BY "EmploymentStatus"."EmploymentStatusId";


--
-- TOC entry 273 (class 1259 OID 16860)
-- Name: EvaluationAnswers; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "EvaluationAnswers" (
    "EvaluationAnswerId" bigint NOT NULL,
    "EvaluationId" integer DEFAULT 0,
    "EvaluationQuestionId" integer DEFAULT 0,
    "EmployeeId" integer DEFAULT 0,
    "ActualAccomplishments" character varying DEFAULT ''::character varying,
    "QualityRate" integer DEFAULT 0,
    "EfficiencyRate" integer DEFAULT 0,
    "TimelinessRate" integer DEFAULT 0,
    "Remarks" character varying DEFAULT ''::character varying
);


ALTER TABLE public."EvaluationAnswers" OWNER TO postgres;

--
-- TOC entry 274 (class 1259 OID 16874)
-- Name: EvaluationAnswers_EvaluationAnswerId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "EvaluationAnswers_EvaluationAnswerId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."EvaluationAnswers_EvaluationAnswerId_seq" OWNER TO postgres;

--
-- TOC entry 4254 (class 0 OID 0)
-- Dependencies: 274
-- Name: EvaluationAnswers_EvaluationAnswerId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "EvaluationAnswers_EvaluationAnswerId_seq" OWNED BY "EvaluationAnswers"."EvaluationAnswerId";


--
-- TOC entry 275 (class 1259 OID 16876)
-- Name: EvaluationDepartments; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "EvaluationDepartments" (
    "EvaluationDepartmentId" bigint NOT NULL,
    "DepartmentId" integer,
    "EvaluationId" integer
);


ALTER TABLE public."EvaluationDepartments" OWNER TO postgres;

--
-- TOC entry 276 (class 1259 OID 16879)
-- Name: EvaluationDepartments_EvaluationDepartmentId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "EvaluationDepartments_EvaluationDepartmentId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."EvaluationDepartments_EvaluationDepartmentId_seq" OWNER TO postgres;

--
-- TOC entry 4257 (class 0 OID 0)
-- Dependencies: 276
-- Name: EvaluationDepartments_EvaluationDepartmentId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "EvaluationDepartments_EvaluationDepartmentId_seq" OWNED BY "EvaluationDepartments"."EvaluationDepartmentId";


--
-- TOC entry 277 (class 1259 OID 16881)
-- Name: EvaluationEmployees; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "EvaluationEmployees" (
    "EvaluationEmployeeId" bigint NOT NULL,
    "EvaluationId" integer DEFAULT 0,
    "EmployeeId" integer DEFAULT 0,
    "Remarks" character varying DEFAULT ''::character varying,
    "NumericalRating" numeric(18,2) DEFAULT 0,
    "SpecificQuarter" character varying
);


ALTER TABLE public."EvaluationEmployees" OWNER TO postgres;

--
-- TOC entry 278 (class 1259 OID 16891)
-- Name: EvaluationEmployees_EvaluationEmployeeId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "EvaluationEmployees_EvaluationEmployeeId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."EvaluationEmployees_EvaluationEmployeeId_seq" OWNER TO postgres;

--
-- TOC entry 4260 (class 0 OID 0)
-- Dependencies: 278
-- Name: EvaluationEmployees_EvaluationEmployeeId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "EvaluationEmployees_EvaluationEmployeeId_seq" OWNED BY "EvaluationEmployees"."EvaluationEmployeeId";


--
-- TOC entry 279 (class 1259 OID 16893)
-- Name: EvaluationIpcrItems; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "EvaluationIpcrItems" (
    "EvaluationIpcrItemId" bigint NOT NULL,
    "EvaluationQuestionId" integer,
    "QuestionTypeId" integer,
    "IpcrCode" character varying,
    "Question" character varying,
    "SuccessIndicator" character varying,
    "RateByQuality" boolean,
    "RateByEfficiency" boolean,
    "RateByTimeliness" boolean,
    "EmployeeId" integer,
    "SpecificQuarter" character varying,
    "ActualAccomplishments" character varying,
    "QualityRate" numeric(18,2),
    "EfficiencyRate" numeric(18,2),
    "TimelinessRate" numeric(18,2),
    "Remarks" character varying,
    "QualityScore1" character varying,
    "QualityScore2" character varying,
    "QualityScore3" character varying,
    "QualityScore4" character varying,
    "QualityScore5" character varying,
    "EfficiencyScore1" character varying,
    "EfficiencyScore2" character varying,
    "EfficiencyScore3" character varying,
    "EfficiencyScore4" character varying,
    "EfficiencyScore5" character varying,
    "TimelinessScore1" character varying,
    "TimelinessScore2" character varying,
    "TimelinessScore3" character varying,
    "TimelinessScore4" character varying,
    "TimelinessScore5" character varying,
    "AverageRate" numeric(18,2)
);


ALTER TABLE public."EvaluationIpcrItems" OWNER TO postgres;

--
-- TOC entry 280 (class 1259 OID 16899)
-- Name: EvaluationIpcrItems_EvaluationIpcrItemId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "EvaluationIpcrItems_EvaluationIpcrItemId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."EvaluationIpcrItems_EvaluationIpcrItemId_seq" OWNER TO postgres;

--
-- TOC entry 4263 (class 0 OID 0)
-- Dependencies: 280
-- Name: EvaluationIpcrItems_EvaluationIpcrItemId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "EvaluationIpcrItems_EvaluationIpcrItemId_seq" OWNED BY "EvaluationIpcrItems"."EvaluationIpcrItemId";


--
-- TOC entry 281 (class 1259 OID 16901)
-- Name: EvaluationOverallAnswers; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "EvaluationOverallAnswers" (
    "EvaluationOverallAnswerId" bigint NOT NULL,
    "EvaluationId" integer DEFAULT 0,
    "EvaluationQuestionId" integer DEFAULT 0,
    "AllottedBudget" numeric(18,2) DEFAULT 0,
    "ActualAccomplishments" character varying DEFAULT ''::character varying,
    "QualityRate" numeric(18,2) DEFAULT 0,
    "EfficiencyRate" numeric(18,2) DEFAULT 0,
    "TimelinessRate" numeric(18,2) DEFAULT 0,
    "Remarks" character varying DEFAULT ''::character varying
);


ALTER TABLE public."EvaluationOverallAnswers" OWNER TO postgres;

--
-- TOC entry 282 (class 1259 OID 16915)
-- Name: EvaluationOverallAnswers_EvaluationOverallAnswerId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "EvaluationOverallAnswers_EvaluationOverallAnswerId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."EvaluationOverallAnswers_EvaluationOverallAnswerId_seq" OWNER TO postgres;

--
-- TOC entry 4266 (class 0 OID 0)
-- Dependencies: 282
-- Name: EvaluationOverallAnswers_EvaluationOverallAnswerId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "EvaluationOverallAnswers_EvaluationOverallAnswerId_seq" OWNED BY "EvaluationOverallAnswers"."EvaluationOverallAnswerId";


--
-- TOC entry 283 (class 1259 OID 16917)
-- Name: EvaluationQuestionTypes; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "EvaluationQuestionTypes" (
    "Description" character varying,
    "Percentage" numeric(18,2),
    "EffectivityDate" date,
    "QuestionTypeId" bigint NOT NULL,
    "Title" character varying DEFAULT ''::character varying,
    "EvaluationDepartmentId" integer DEFAULT 0
);


ALTER TABLE public."EvaluationQuestionTypes" OWNER TO postgres;

--
-- TOC entry 284 (class 1259 OID 16925)
-- Name: EvaluationQuestionTypes_QuestionTypeId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "EvaluationQuestionTypes_QuestionTypeId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."EvaluationQuestionTypes_QuestionTypeId_seq" OWNER TO postgres;

--
-- TOC entry 4269 (class 0 OID 0)
-- Dependencies: 284
-- Name: EvaluationQuestionTypes_QuestionTypeId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "EvaluationQuestionTypes_QuestionTypeId_seq" OWNED BY "EvaluationQuestionTypes"."QuestionTypeId";


--
-- TOC entry 285 (class 1259 OID 16927)
-- Name: EvaluationQuestions; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "EvaluationQuestions" (
    "EvaluationQuestionId" bigint NOT NULL,
    "Question" character varying,
    "SuccessIndicator" character varying,
    "QuestionTypeId" integer,
    "RateByQuality" boolean DEFAULT true,
    "RateByEfficiency" boolean DEFAULT true,
    "RateByTimeliness" boolean DEFAULT true,
    "DpcrCode" character varying DEFAULT ''::character varying,
    "EmployeeId" integer DEFAULT 0,
    "SpecificQuarter" character varying DEFAULT ''::character varying,
    "ActualAccomplishments" character varying DEFAULT ''::character varying,
    "QualityRate" numeric(18,2) DEFAULT 0,
    "EfficiencyRate" numeric(18,2) DEFAULT 0,
    "TimelinessRate" numeric(18,2) DEFAULT 0,
    "Remarks" character varying DEFAULT ''::character varying,
    "EvaluationDepartmentId" integer,
    "QualityScore1" character varying,
    "QualityScore2" character varying,
    "QualityScore3" character varying,
    "QualityScore4" character varying,
    "QualityScore5" character varying,
    "EfficiencyScore1" character varying,
    "EfficiencyScore2" character varying,
    "EfficiencyScore3" character varying,
    "EfficiencyScore4" character varying,
    "EfficiencyScore5" character varying,
    "TimelinessScore1" character varying,
    "TimelinessScore2" character varying,
    "TimelinessScore3" character varying,
    "TimelinessScore4" character varying,
    "TimelinessScore5" character varying,
    "AverageRate" numeric(18,2)
);


ALTER TABLE public."EvaluationQuestions" OWNER TO postgres;

--
-- TOC entry 286 (class 1259 OID 16944)
-- Name: EvaluationQuestions_EvaluationQuestionId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "EvaluationQuestions_EvaluationQuestionId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."EvaluationQuestions_EvaluationQuestionId_seq" OWNER TO postgres;

--
-- TOC entry 4272 (class 0 OID 0)
-- Dependencies: 286
-- Name: EvaluationQuestions_EvaluationQuestionId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "EvaluationQuestions_EvaluationQuestionId_seq" OWNED BY "EvaluationQuestions"."EvaluationQuestionId";


--
-- TOC entry 287 (class 1259 OID 16946)
-- Name: EvaluationRateTypes; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "EvaluationRateTypes" (
    "RateName" character varying,
    "RateNumber" bigint NOT NULL,
    "MinimumRate" numeric(18,2) DEFAULT 0,
    "MaximumRate" numeric(18,2) DEFAULT 0
);


ALTER TABLE public."EvaluationRateTypes" OWNER TO postgres;

--
-- TOC entry 288 (class 1259 OID 16954)
-- Name: EvaluationRatings; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "EvaluationRatings" (
    "RatingId" bigint NOT NULL,
    "EmployeeId" integer,
    "EvaluatorPosition" character varying,
    "EvaluationId" integer,
    "QualityRate" integer,
    "EfficiencyRate" integer,
    "TimeRate" integer,
    "Remarks" character varying,
    "GroupNumber" character varying
);


ALTER TABLE public."EvaluationRatings" OWNER TO postgres;

--
-- TOC entry 289 (class 1259 OID 16960)
-- Name: EvaluationRatings_RatingId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "EvaluationRatings_RatingId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."EvaluationRatings_RatingId_seq" OWNER TO postgres;

--
-- TOC entry 4276 (class 0 OID 0)
-- Dependencies: 289
-- Name: EvaluationRatings_RatingId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "EvaluationRatings_RatingId_seq" OWNED BY "EvaluationRatings"."RatingId";


--
-- TOC entry 290 (class 1259 OID 16962)
-- Name: Evaluations; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Evaluations" (
    "EvaluationId" bigint NOT NULL,
    "DateFrom" date,
    "DateTo" date,
    "EvaluationDate" date,
    "DepartmentId" integer,
    "ReviewerEmployeeId" integer DEFAULT 0,
    "ReviewerPositionId" integer DEFAULT 0,
    "DateReviewed" date DEFAULT '0001-01-01'::date,
    "ApproverEmployeeId" integer DEFAULT 0,
    "ApproverPositionId" integer DEFAULT 0,
    "DateApproved" date DEFAULT '0001-01-01'::date,
    "AssessorEmployeeId" integer DEFAULT 0,
    "AssessorPositionId" integer DEFAULT 0,
    "DateAssessed" date DEFAULT '0001-01-01'::date,
    "ReassessedEmployeeId" integer DEFAULT 0,
    "ReassessedPositionId" integer DEFAULT 0,
    "DateReassessed" date DEFAULT '0001-01-01'::date,
    "FinalEmployeeId" integer DEFAULT 0,
    "FinalPositionId" integer DEFAULT 0,
    "DateFinalRated" date DEFAULT '0001-01-01'::date,
    "DateCalibrated" date DEFAULT '0001-01-01'::date,
    "Remarks" character varying DEFAULT ''::character varying,
    "DateCreated" date DEFAULT '0001-01-01'::date
);


ALTER TABLE public."Evaluations" OWNER TO postgres;

--
-- TOC entry 291 (class 1259 OID 16986)
-- Name: Evaluations_EvaluationId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Evaluations_EvaluationId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Evaluations_EvaluationId_seq" OWNER TO postgres;

--
-- TOC entry 4279 (class 0 OID 0)
-- Dependencies: 291
-- Name: Evaluations_EvaluationId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Evaluations_EvaluationId_seq" OWNED BY "Evaluations"."EvaluationId";


--
-- TOC entry 292 (class 1259 OID 16988)
-- Name: Events; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Events" (
    "EventId" bigint NOT NULL,
    "Title" character varying,
    "Date" date
);


ALTER TABLE public."Events" OWNER TO postgres;

--
-- TOC entry 293 (class 1259 OID 16994)
-- Name: Events_EventId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Events_EventId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Events_EventId_seq" OWNER TO postgres;

--
-- TOC entry 4282 (class 0 OID 0)
-- Dependencies: 293
-- Name: Events_EventId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Events_EventId_seq" OWNED BY "Events"."EventId";


--
-- TOC entry 294 (class 1259 OID 16996)
-- Name: Expenses; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Expenses" (
    "ExpenseId" bigint NOT NULL,
    "ApprovedTripId" integer,
    "GasOil" numeric(11,2),
    "Meal" numeric(11,2),
    "TollFee" numeric(11,2),
    "CPLoad" numeric(11,2),
    "LtoTmg" numeric(11,2)
);


ALTER TABLE public."Expenses" OWNER TO postgres;

--
-- TOC entry 295 (class 1259 OID 16999)
-- Name: Expenses_ExpenseId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Expenses_ExpenseId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Expenses_ExpenseId_seq" OWNER TO postgres;

--
-- TOC entry 4285 (class 0 OID 0)
-- Dependencies: 295
-- Name: Expenses_ExpenseId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Expenses_ExpenseId_seq" OWNED BY "Expenses"."ExpenseId";


--
-- TOC entry 296 (class 1259 OID 17001)
-- Name: Experiences; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Experiences" (
    "ExperienceId" bigint NOT NULL,
    "CompanyInstitution" character varying,
    "PositionHeld" character varying,
    "ReasonOfLeaving" character varying,
    "Status" character varying,
    "BasicInformationId" integer,
    "FromDate" date,
    "ToDate" date,
    "MonthlySalary" character varying,
    "SalaryGradeAndStepIncrement" character varying,
    "IsGovernmentService" boolean,
    "AnnualSalary" numeric(18,2) DEFAULT 0,
    "Remarks" character varying DEFAULT ''::character varying,
    "RateTypeName" character varying DEFAULT 'Monthly'::character varying
);


ALTER TABLE public."Experiences" OWNER TO postgres;

--
-- TOC entry 297 (class 1259 OID 17010)
-- Name: Experiences_ExperienceId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Experiences_ExperienceId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Experiences_ExperienceId_seq" OWNER TO postgres;

--
-- TOC entry 4288 (class 0 OID 0)
-- Dependencies: 297
-- Name: Experiences_ExperienceId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Experiences_ExperienceId_seq" OWNED BY "Experiences"."ExperienceId";


--
-- TOC entry 298 (class 1259 OID 17012)
-- Name: FaceScannerDevices; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "FaceScannerDevices" (
    "FaceScannerDeviceId" bigint NOT NULL,
    "FaceScannerType" character varying,
    "SerialNumber" character varying,
    "DeviceIp" character varying,
    "StationId" integer,
    "DevicePort" character varying DEFAULT '8090'::character varying,
    "PreviousHarvestedDate" date DEFAULT '2020-01-01'::date
);


ALTER TABLE public."FaceScannerDevices" OWNER TO postgres;

--
-- TOC entry 299 (class 1259 OID 17020)
-- Name: FaceScannerDevices_FaceScannerDeviceId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "FaceScannerDevices_FaceScannerDeviceId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."FaceScannerDevices_FaceScannerDeviceId_seq" OWNER TO postgres;

--
-- TOC entry 4291 (class 0 OID 0)
-- Dependencies: 299
-- Name: FaceScannerDevices_FaceScannerDeviceId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "FaceScannerDevices_FaceScannerDeviceId_seq" OWNED BY "FaceScannerDevices"."FaceScannerDeviceId";


--
-- TOC entry 300 (class 1259 OID 17022)
-- Name: FaceScannerLogs; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "FaceScannerLogs" (
    "FaceScannerLogId" bigint NOT NULL,
    "FaceScannerDeviceId" integer,
    "LogDateTime" timestamp without time zone,
    "CardNumber" character varying,
    "Remarks" character varying,
    "EmployeeNumber" character varying DEFAULT ''::character varying,
    "DeviceLogId" integer DEFAULT 0
);


ALTER TABLE public."FaceScannerLogs" OWNER TO postgres;

--
-- TOC entry 301 (class 1259 OID 17030)
-- Name: FaceScannerLogs_FaceScannerLogId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "FaceScannerLogs_FaceScannerLogId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."FaceScannerLogs_FaceScannerLogId_seq" OWNER TO postgres;

--
-- TOC entry 4294 (class 0 OID 0)
-- Dependencies: 301
-- Name: FaceScannerLogs_FaceScannerLogId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "FaceScannerLogs_FaceScannerLogId_seq" OWNED BY "FaceScannerLogs"."FaceScannerLogId";


--
-- TOC entry 302 (class 1259 OID 17032)
-- Name: FlapBarriers; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "FlapBarriers" (
    "FlapBarrierId" bigint NOT NULL,
    "IpAddress" character varying,
    "Direction" character varying,
    "StationId" integer
);


ALTER TABLE public."FlapBarriers" OWNER TO postgres;

--
-- TOC entry 303 (class 1259 OID 17038)
-- Name: FlapBarriers_FlapBarrierId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "FlapBarriers_FlapBarrierId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."FlapBarriers_FlapBarrierId_seq" OWNER TO postgres;

--
-- TOC entry 4297 (class 0 OID 0)
-- Dependencies: 303
-- Name: FlapBarriers_FlapBarrierId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "FlapBarriers_FlapBarrierId_seq" OWNED BY "FlapBarriers"."FlapBarrierId";


--
-- TOC entry 304 (class 1259 OID 17040)
-- Name: GSISContributions; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "GSISContributions" (
    "GSISContributionId" bigint NOT NULL,
    "TypeOfInsuranceCoverage" character varying,
    "Life" numeric(18,2),
    "Retirement" numeric(18,2),
    "EffectivityDate" date
);


ALTER TABLE public."GSISContributions" OWNER TO postgres;

--
-- TOC entry 305 (class 1259 OID 17046)
-- Name: GSISContributions_GSISContributionId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "GSISContributions_GSISContributionId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."GSISContributions_GSISContributionId_seq" OWNER TO postgres;

--
-- TOC entry 4300 (class 0 OID 0)
-- Dependencies: 305
-- Name: GSISContributions_GSISContributionId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "GSISContributions_GSISContributionId_seq" OWNED BY "GSISContributions"."GSISContributionId";


--
-- TOC entry 306 (class 1259 OID 17048)
-- Name: GeneralPolicies; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "GeneralPolicies" (
    "GeneralPolicyId" bigint NOT NULL,
    "SalaryGradeEffectivityDate" date,
    "NosaReportFormat" character varying,
    "LoyaltyAwardFormat" character varying
);


ALTER TABLE public."GeneralPolicies" OWNER TO postgres;

--
-- TOC entry 307 (class 1259 OID 17054)
-- Name: GeneralPolicies_GeneralPolicyId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "GeneralPolicies_GeneralPolicyId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."GeneralPolicies_GeneralPolicyId_seq" OWNER TO postgres;

--
-- TOC entry 4303 (class 0 OID 0)
-- Dependencies: 307
-- Name: GeneralPolicies_GeneralPolicyId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "GeneralPolicies_GeneralPolicyId_seq" OWNED BY "GeneralPolicies"."GeneralPolicyId";


--
-- TOC entry 308 (class 1259 OID 17056)
-- Name: HDMFContributions; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "HDMFContributions" (
    "HDMFBracketId" bigint NOT NULL,
    "MinBracket" numeric(11,2) DEFAULT 0 NOT NULL,
    "MaxBracket" numeric(11,2) DEFAULT 0 NOT NULL,
    "ERMultiplier" numeric(11,2) DEFAULT 0 NOT NULL,
    "EEMultiplier" numeric(11,2) DEFAULT 0 NOT NULL,
    "DateImplemented" date,
    "ValidUntil" character varying
);


ALTER TABLE public."HDMFContributions" OWNER TO postgres;

--
-- TOC entry 309 (class 1259 OID 17066)
-- Name: HDMF_HDMFBracketId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "HDMF_HDMFBracketId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."HDMF_HDMFBracketId_seq" OWNER TO postgres;

--
-- TOC entry 4306 (class 0 OID 0)
-- Dependencies: 309
-- Name: HDMF_HDMFBracketId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "HDMF_HDMFBracketId_seq" OWNED BY "HDMFContributions"."HDMFBracketId";


--
-- TOC entry 310 (class 1259 OID 17068)
-- Name: HolidayMultipliers; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "HolidayMultipliers" (
    "HolidayMultiplierId" bigint NOT NULL,
    "Multiplier" numeric(18,2),
    "EffectivityDate" date,
    "Remarks" character varying,
    "HolidayType" character varying
);


ALTER TABLE public."HolidayMultipliers" OWNER TO postgres;

--
-- TOC entry 311 (class 1259 OID 17074)
-- Name: HolidayMultipliers_HolidayMultiplierId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "HolidayMultipliers_HolidayMultiplierId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."HolidayMultipliers_HolidayMultiplierId_seq" OWNER TO postgres;

--
-- TOC entry 4309 (class 0 OID 0)
-- Dependencies: 311
-- Name: HolidayMultipliers_HolidayMultiplierId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "HolidayMultipliers_HolidayMultiplierId_seq" OWNED BY "HolidayMultipliers"."HolidayMultiplierId";


--
-- TOC entry 312 (class 1259 OID 17076)
-- Name: HolidayPolicies; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "HolidayPolicies" (
    "HolidayPolicyId" bigint NOT NULL,
    "HolidayType" character varying,
    "IsEnabled" boolean
);


ALTER TABLE public."HolidayPolicies" OWNER TO postgres;

--
-- TOC entry 313 (class 1259 OID 17082)
-- Name: HolidayPolicies_HolidayPolicyId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "HolidayPolicies_HolidayPolicyId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."HolidayPolicies_HolidayPolicyId_seq" OWNER TO postgres;

--
-- TOC entry 4312 (class 0 OID 0)
-- Dependencies: 313
-- Name: HolidayPolicies_HolidayPolicyId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "HolidayPolicies_HolidayPolicyId_seq" OWNED BY "HolidayPolicies"."HolidayPolicyId";


--
-- TOC entry 314 (class 1259 OID 17084)
-- Name: Holidays; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Holidays" (
    "HolidayName" character varying,
    "HolidayType" character varying,
    "IsDateMovable" boolean,
    "Date" date,
    "HolidayId" bigint NOT NULL
);


ALTER TABLE public."Holidays" OWNER TO postgres;

--
-- TOC entry 315 (class 1259 OID 17090)
-- Name: Holidays_HolidayId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Holidays_HolidayId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Holidays_HolidayId_seq" OWNER TO postgres;

--
-- TOC entry 4315 (class 0 OID 0)
-- Dependencies: 315
-- Name: Holidays_HolidayId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Holidays_HolidayId_seq" OWNED BY "Holidays"."HolidayId";


--
-- TOC entry 316 (class 1259 OID 17092)
-- Name: Honorarias; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Honorarias" (
    "EmployeeId" integer NOT NULL,
    "Year" integer NOT NULL,
    "HonorariaTax" numeric(18,2)
);


ALTER TABLE public."Honorarias" OWNER TO postgres;

--
-- TOC entry 317 (class 1259 OID 17095)
-- Name: JobVacancies; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "JobVacancies" (
    "JobVacancyId" bigint NOT NULL,
    "EmploymentStatusId" integer,
    "Slot" integer,
    "PositionId" integer,
    "RateTypeId" integer,
    "SalaryRate" numeric(18,2),
    "DateCreated" date,
    "EncoderBasicInformationId" integer,
    "IsActive" boolean,
    "Duration" integer,
    "PlantillaId" integer DEFAULT 0,
    "IsPlantilla" boolean DEFAULT false,
    "DepartmentId" integer DEFAULT 0,
    "DivisionId" integer DEFAULT 0,
    "SectionId" integer DEFAULT 0,
    "SalaryGradeEffectivity" date DEFAULT '0001-01-01'::date,
    "ClosingDate" date DEFAULT '0001-01-01'::date,
    "SalaryGradeAnnex" character varying DEFAULT ' '::character varying,
    "JobDescription" character varying DEFAULT ''::character varying,
    "DateEnded" date DEFAULT '0001-01-01'::date
);


ALTER TABLE public."JobVacancies" OWNER TO postgres;

--
-- TOC entry 318 (class 1259 OID 17111)
-- Name: JobVacancies_JobVacancyId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "JobVacancies_JobVacancyId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."JobVacancies_JobVacancyId_seq" OWNER TO postgres;

--
-- TOC entry 4319 (class 0 OID 0)
-- Dependencies: 318
-- Name: JobVacancies_JobVacancyId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "JobVacancies_JobVacancyId_seq" OWNED BY "JobVacancies"."JobVacancyId";


--
-- TOC entry 319 (class 1259 OID 17113)
-- Name: LeaveCredits; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "LeaveCredits" (
    "LeaveId" integer,
    "YearofServiceFrom" integer,
    "YearofServiceTo" integer,
    "Days" integer,
    "LeaveCreditId" bigint NOT NULL
);


ALTER TABLE public."LeaveCredits" OWNER TO postgres;

--
-- TOC entry 320 (class 1259 OID 17116)
-- Name: LeaveCredits_LeaveCreditID_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "LeaveCredits_LeaveCreditID_seq"
    START WITH 1
    INCREMENT BY 1
    MINVALUE 0
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."LeaveCredits_LeaveCreditID_seq" OWNER TO postgres;

--
-- TOC entry 4322 (class 0 OID 0)
-- Dependencies: 320
-- Name: LeaveCredits_LeaveCreditID_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "LeaveCredits_LeaveCreditID_seq" OWNED BY "LeaveCredits"."LeaveCreditId";


--
-- TOC entry 321 (class 1259 OID 17118)
-- Name: LeavePolicies; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "LeavePolicies" (
    "LeavePolicyId" bigint NOT NULL,
    "SpecialLeaveActivated" boolean,
    "SpecialLeaveNumberOfDays" integer,
    "OffsetLeaveCreditToAbsence" boolean,
    "MaternityLeaveNumberOfDays" integer,
    "MaternityLeaveMaxNumberOfApplication" integer,
    "PaternityLeaveNumberOfDays" integer,
    "PaternityLeaveMaxNumberOfApplication" integer,
    "ConstantFactorFormulaSetup" character varying,
    "ConstantFactorValue" numeric(18,7),
    "MonetizationVariableSalary" character varying,
    "MonetizationVariableNumberOfDays" character varying,
    "MonetizationFormula" character varying,
    "TerminalLeaveVariableHighestSalary" character varying,
    "TerminalLeaveVariableAccumulatedLeaveCredits" character varying,
    "TerminalLeaveFormula" character varying,
    "LeaveWithoutPayVariableMonthlySalary" character varying,
    "LeaveWithoutPayVariableCalendarDays" character varying,
    "LeaveWithoutPayVariableNumberOfDays" character varying,
    "LeaveWithoutPayFormula" character varying,
    "StudyLeaveRefundVariableTotalCompensationReceived" character varying,
    "StudyLeaveRefundVariableObligationServed" character varying,
    "StudyLeaveRefundVariableObligationRequired" character varying,
    "StudyLeaveRefundFormula" character varying,
    "CasualLeaveMaxNumberofHours" integer,
    "CasualLeaveFrequency" character varying,
    "MaternityLeaveActivated" boolean,
    "PaternityLeaveActivated" boolean,
    "StudyLeaveActivated" boolean,
    "CompensatoryLeaveActivated" boolean,
    "TerminalLeaveVariableConstantFactor" character varying,
    "ConstantFactorActivated" boolean,
    "CasualLeaveActivated" boolean,
    "ParentalLeaveActivated" boolean,
    "RehabilitationLeaveActivated" boolean DEFAULT false,
    "SoloParentLeaveActivated" boolean DEFAULT false,
    "SoloParentLeaveNumberOfDays" integer DEFAULT 0,
    "ForceLeaveActivated" boolean DEFAULT true,
    "ForceLeaveNumberOfDays" integer DEFAULT 0,
    "LeaveCardReportFormat" character varying DEFAULT 'Format 1'::character varying
);


ALTER TABLE public."LeavePolicies" OWNER TO postgres;

--
-- TOC entry 322 (class 1259 OID 17130)
-- Name: LeavePolicies_LeavePolicyId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "LeavePolicies_LeavePolicyId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."LeavePolicies_LeavePolicyId_seq" OWNER TO postgres;

--
-- TOC entry 4325 (class 0 OID 0)
-- Dependencies: 322
-- Name: LeavePolicies_LeavePolicyId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "LeavePolicies_LeavePolicyId_seq" OWNED BY "LeavePolicies"."LeavePolicyId";


--
-- TOC entry 323 (class 1259 OID 17132)
-- Name: LeaveRecords; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "LeaveRecords" (
    "LeaveRecordId" bigint NOT NULL,
    "LeaveId" integer,
    "DateFiled" date DEFAULT '0001-01-01'::date NOT NULL,
    "FromDate" date DEFAULT '0001-01-01'::date NOT NULL,
    "ToDate" date DEFAULT '0001-01-01'::date NOT NULL,
    "Reason" character varying,
    "Status" character varying,
    "EmployeeId" bigint,
    "Days" numeric(18,2),
    "ReturnedDate" date,
    "ExtendedEndDate" date,
    "FromTime" timestamp without time zone,
    "ToTime" timestamp without time zone,
    "Hours" numeric(18,2) DEFAULT 0,
    "DateHour" date,
    "ForcedLeaveType" character varying DEFAULT 'Dates'::character varying,
    "Country" character varying DEFAULT ''::character varying,
    "LocationName" character varying DEFAULT ''::character varying,
    "InHospitalIllness" character varying DEFAULT ''::character varying,
    "OutPatientIllness" character varying DEFAULT ''::character varying,
    "SpecialLeaveIllness" character varying DEFAULT ''::character varying,
    "IsMasterDegree" boolean DEFAULT false,
    "IsBar" boolean DEFAULT false,
    "IsMonetizeLeaveCredit" boolean DEFAULT false,
    "IsTerminalLeave" boolean DEFAULT false
);


ALTER TABLE public."LeaveRecords" OWNER TO postgres;

--
-- TOC entry 324 (class 1259 OID 17152)
-- Name: LeaveRecord_LeaveRecordId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "LeaveRecord_LeaveRecordId_seq"
    START WITH 1
    INCREMENT BY 1
    MINVALUE 0
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."LeaveRecord_LeaveRecordId_seq" OWNER TO postgres;

--
-- TOC entry 4328 (class 0 OID 0)
-- Dependencies: 324
-- Name: LeaveRecord_LeaveRecordId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "LeaveRecord_LeaveRecordId_seq" OWNED BY "LeaveRecords"."LeaveRecordId";


--
-- TOC entry 325 (class 1259 OID 17154)
-- Name: Leaves; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Leaves" (
    "LeaveId" bigint NOT NULL,
    "LeaveType" character varying,
    "Description" character varying,
    "DeductableType" character varying DEFAULT ''::character varying,
    "MaximumDays" integer DEFAULT 0,
    "AppliedNumber" integer DEFAULT 0,
    "IsUnlimited" boolean DEFAULT true
);


ALTER TABLE public."Leaves" OWNER TO postgres;

--
-- TOC entry 326 (class 1259 OID 17164)
-- Name: Leaves_LeaveId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Leaves_LeaveId_seq"
    START WITH 1
    INCREMENT BY 1
    MINVALUE 0
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Leaves_LeaveId_seq" OWNER TO postgres;

--
-- TOC entry 4331 (class 0 OID 0)
-- Dependencies: 326
-- Name: Leaves_LeaveId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Leaves_LeaveId_seq" OWNED BY "Leaves"."LeaveId";


--
-- TOC entry 327 (class 1259 OID 17166)
-- Name: LoanApplications; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "LoanApplications" (
    "LoanApplicationId" bigint NOT NULL,
    "EmployeeId" integer,
    "LoanTypeId" integer,
    "LoanAmount" numeric(18,2),
    "Terms" integer,
    "MonthlyAmortization" numeric(18,2),
    "StartedDeductionDate" date,
    "EndDate" date,
    "CancelledDate" date,
    "IsCancelled" boolean,
    "Period" character varying DEFAULT 'NONE'::character varying
);


ALTER TABLE public."LoanApplications" OWNER TO postgres;

--
-- TOC entry 328 (class 1259 OID 17173)
-- Name: LoanApplications_LoanApplicationId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "LoanApplications_LoanApplicationId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."LoanApplications_LoanApplicationId_seq" OWNER TO postgres;

--
-- TOC entry 4334 (class 0 OID 0)
-- Dependencies: 328
-- Name: LoanApplications_LoanApplicationId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "LoanApplications_LoanApplicationId_seq" OWNED BY "LoanApplications"."LoanApplicationId";


--
-- TOC entry 329 (class 1259 OID 17175)
-- Name: LoanBreakdowns; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "LoanBreakdowns" (
    "LoanBreakdownId" bigint NOT NULL,
    "LoanApplicationId" integer,
    "DateOfDeduction" date,
    "LoanBreakdownAmount" numeric(18,2),
    "BreakdownName" character varying,
    "IsPaid" boolean,
    "PayrollId" integer,
    "Period" character varying DEFAULT 'NONE'::character varying
);


ALTER TABLE public."LoanBreakdowns" OWNER TO postgres;

--
-- TOC entry 330 (class 1259 OID 17182)
-- Name: LoanBreakdowns_LoanBreakdownId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "LoanBreakdowns_LoanBreakdownId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."LoanBreakdowns_LoanBreakdownId_seq" OWNER TO postgres;

--
-- TOC entry 4337 (class 0 OID 0)
-- Dependencies: 330
-- Name: LoanBreakdowns_LoanBreakdownId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "LoanBreakdowns_LoanBreakdownId_seq" OWNED BY "LoanBreakdowns"."LoanBreakdownId";


--
-- TOC entry 331 (class 1259 OID 17184)
-- Name: LoanTypes; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "LoanTypes" (
    "LoanTypeId" bigint NOT NULL,
    "LoanName" character varying,
    "Remarks" character varying,
    "ShortName" character varying DEFAULT ''::character varying
);


ALTER TABLE public."LoanTypes" OWNER TO postgres;

--
-- TOC entry 332 (class 1259 OID 17191)
-- Name: LoanTypes_LoanTypeId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "LoanTypes_LoanTypeId_seq"
    START WITH 1
    INCREMENT BY 1
    MINVALUE 0
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."LoanTypes_LoanTypeId_seq" OWNER TO postgres;

--
-- TOC entry 4340 (class 0 OID 0)
-- Dependencies: 332
-- Name: LoanTypes_LoanTypeId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "LoanTypes_LoanTypeId_seq" OWNED BY "LoanTypes"."LoanTypeId";


--
-- TOC entry 333 (class 1259 OID 17193)
-- Name: LocatorSlips; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "LocatorSlips" (
    "LocatorSlipId" bigint NOT NULL,
    "EmployeeId" integer,
    "Destination" character varying,
    "Purpose" character varying,
    "ApproverId" integer,
    "DateFiled" date,
    "DepartureDate" date,
    "DepartureTime" character varying,
    "ArrivalTime" character varying,
    "Status" character varying,
    "Type" character varying
);


ALTER TABLE public."LocatorSlips" OWNER TO postgres;

--
-- TOC entry 334 (class 1259 OID 17199)
-- Name: LocatorSlips_LocatorSlipId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "LocatorSlips_LocatorSlipId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."LocatorSlips_LocatorSlipId_seq" OWNER TO postgres;

--
-- TOC entry 4343 (class 0 OID 0)
-- Dependencies: 334
-- Name: LocatorSlips_LocatorSlipId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "LocatorSlips_LocatorSlipId_seq" OWNED BY "LocatorSlips"."LocatorSlipId";


--
-- TOC entry 335 (class 1259 OID 17201)
-- Name: LoyaltyAwardPolicies; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "LoyaltyAwardPolicies" (
    "LoyaltyAwardPolicyId" bigint NOT NULL,
    "AwardName" character varying,
    "AwardType" character varying,
    "YearsOfServiceRequired" integer,
    "Recurrence" character varying DEFAULT ''::character varying,
    "AmountBasis" character varying DEFAULT ''::character varying,
    "AwardBasis" character varying DEFAULT ''::character varying,
    "MinimumPerformanceRate" numeric(18,2) DEFAULT 0,
    "MaximumPerformanceRate" numeric(18,2) DEFAULT 0,
    "SpecificEmploymentStatus" character varying DEFAULT ''::character varying,
    "RateNumber" integer DEFAULT 0,
    "PercentageValue" numeric(18,4) DEFAULT 0,
    "EnteredAmount" numeric(18,2) DEFAULT 0,
    "PrerequisiteAwardId" integer,
    "AuthorizedLeaveWithoutPay" integer
);


ALTER TABLE public."LoyaltyAwardPolicies" OWNER TO postgres;

--
-- TOC entry 336 (class 1259 OID 17216)
-- Name: LoyaltyAwardsPolicies_LoyaltyAwardPolicyId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "LoyaltyAwardsPolicies_LoyaltyAwardPolicyId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."LoyaltyAwardsPolicies_LoyaltyAwardPolicyId_seq" OWNER TO postgres;

--
-- TOC entry 4346 (class 0 OID 0)
-- Dependencies: 336
-- Name: LoyaltyAwardsPolicies_LoyaltyAwardPolicyId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "LoyaltyAwardsPolicies_LoyaltyAwardPolicyId_seq" OWNED BY "LoyaltyAwardPolicies"."LoyaltyAwardPolicyId";


--
-- TOC entry 337 (class 1259 OID 17218)
-- Name: MemberContributionExclusions; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "MemberContributionExclusions" (
    "ContributionId" integer NOT NULL,
    "EmployeeId" integer NOT NULL
);


ALTER TABLE public."MemberContributionExclusions" OWNER TO postgres;

--
-- TOC entry 338 (class 1259 OID 17221)
-- Name: Messages; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Messages" (
    "MessageId" bigint NOT NULL,
    "DateEntry" date,
    "MessageDetails" character varying,
    "NoticeFrom" character varying,
    "Receiver" character varying,
    "ReceiverId" bigint
);


ALTER TABLE public."Messages" OWNER TO postgres;

--
-- TOC entry 339 (class 1259 OID 17227)
-- Name: Messages_MessageId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Messages_MessageId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Messages_MessageId_seq" OWNER TO postgres;

--
-- TOC entry 4350 (class 0 OID 0)
-- Dependencies: 339
-- Name: Messages_MessageId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Messages_MessageId_seq" OWNED BY "Messages"."MessageId";


--
-- TOC entry 340 (class 1259 OID 17229)
-- Name: MonitizedLeaveCredits; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "MonitizedLeaveCredits" (
    "MonetizedLeaveCreditId" bigint NOT NULL,
    "EmployeeId" integer,
    "MonitizedSickLeaveCredits" numeric(18,5),
    "MonitizedVacationLeaveCredits" numeric(18,5),
    "Date" date,
    "Remarks" character varying,
    "Status" character varying,
    "MoneyValue" numeric(18,2)
);


ALTER TABLE public."MonitizedLeaveCredits" OWNER TO postgres;

--
-- TOC entry 341 (class 1259 OID 17235)
-- Name: MonitizedLeaveCredits_MonetizedLeaveCreditId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "MonitizedLeaveCredits_MonetizedLeaveCreditId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."MonitizedLeaveCredits_MonetizedLeaveCreditId_seq" OWNER TO postgres;

--
-- TOC entry 4353 (class 0 OID 0)
-- Dependencies: 341
-- Name: MonitizedLeaveCredits_MonetizedLeaveCreditId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "MonitizedLeaveCredits_MonetizedLeaveCreditId_seq" OWNED BY "MonitizedLeaveCredits"."MonetizedLeaveCreditId";


--
-- TOC entry 342 (class 1259 OID 17237)
-- Name: Multipliers; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Multipliers" (
    "MultiplierId" bigint NOT NULL,
    "RegularOT" numeric(18,2),
    "RegularHours" integer,
    "DateImplemented" date,
    "ValidUntil" character varying,
    "RegularHoliday" numeric(18,2),
    "RegularHolidayOT" numeric(18,2),
    "SpecialNonWorkingDay" numeric(18,2),
    "SpecialNonWorkingDayOT" numeric(18,2),
    "OtherHoliday" numeric(18,2),
    "OtherHolidayOT" numeric(18,2),
    "RestDay" numeric(18,2) DEFAULT 0,
    "RestDayOT" numeric(18,2) DEFAULT 0,
    "NightShift" numeric(18,2) DEFAULT 0,
    "SpecialNonWorkingDayRestDay" numeric(18,2) DEFAULT 0,
    "SpecialNonWorkingDayRestDayOT" numeric(18,2) DEFAULT 0,
    "SpecialNonWorkingDayNightShift" numeric(18,2) DEFAULT 0,
    "RegularHolidayRestDay" numeric(18,2) DEFAULT 0,
    "RegularHolidayRestDayOT" numeric(18,2) DEFAULT 0,
    "RegularHolidayNightShift" numeric(18,2) DEFAULT 0,
    "EmploymentStatusName" character varying DEFAULT 'Job order'::character varying
);


ALTER TABLE public."Multipliers" OWNER TO postgres;

--
-- TOC entry 343 (class 1259 OID 17253)
-- Name: Multiplier_MultiplierId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Multiplier_MultiplierId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Multiplier_MultiplierId_seq" OWNER TO postgres;

--
-- TOC entry 4356 (class 0 OID 0)
-- Dependencies: 343
-- Name: Multiplier_MultiplierId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Multiplier_MultiplierId_seq" OWNED BY "Multipliers"."MultiplierId";


--
-- TOC entry 344 (class 1259 OID 17255)
-- Name: NonPlantillaItemEntries; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "NonPlantillaItemEntries" (
    "NonPlantillaItemEntryId" bigint NOT NULL,
    "NonPlantillaItemId" integer,
    "DateOfMovement" date,
    "MovementType" character varying,
    "EmployeeId" integer,
    "DepartmentId" integer,
    "DivisionId" integer,
    "SectionId" integer,
    "RateTypeId" integer,
    "SalaryRate" numeric(18,2),
    "ReasonOfSeparation" character varying
);


ALTER TABLE public."NonPlantillaItemEntries" OWNER TO postgres;

--
-- TOC entry 345 (class 1259 OID 17261)
-- Name: NonPlantillaItemEntries_NonPlantillaItemEntryId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "NonPlantillaItemEntries_NonPlantillaItemEntryId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."NonPlantillaItemEntries_NonPlantillaItemEntryId_seq" OWNER TO postgres;

--
-- TOC entry 4359 (class 0 OID 0)
-- Dependencies: 345
-- Name: NonPlantillaItemEntries_NonPlantillaItemEntryId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "NonPlantillaItemEntries_NonPlantillaItemEntryId_seq" OWNED BY "NonPlantillaItemEntries"."NonPlantillaItemEntryId";


--
-- TOC entry 346 (class 1259 OID 17263)
-- Name: NonPlantillaItems; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "NonPlantillaItems" (
    "NonPlantillaItemId" bigint NOT NULL,
    "PositionId" integer,
    "IsDeleted" boolean
);


ALTER TABLE public."NonPlantillaItems" OWNER TO postgres;

--
-- TOC entry 347 (class 1259 OID 17266)
-- Name: NonPlantillaItems_NonPlantillaItemId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "NonPlantillaItems_NonPlantillaItemId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."NonPlantillaItems_NonPlantillaItemId_seq" OWNER TO postgres;

--
-- TOC entry 4362 (class 0 OID 0)
-- Dependencies: 347
-- Name: NonPlantillaItems_NonPlantillaItemId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "NonPlantillaItems_NonPlantillaItemId_seq" OWNED BY "NonPlantillaItems"."NonPlantillaItemId";


--
-- TOC entry 348 (class 1259 OID 17268)
-- Name: Notifications; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Notifications" (
    "NotificationId" bigint NOT NULL,
    "Description" character varying,
    "IsRead" boolean,
    "DateCreated" date,
    "Category" character varying,
    "EmployeeGroupId" integer,
    "Remarks" character varying,
    "BasicInformationId" integer
);


ALTER TABLE public."Notifications" OWNER TO postgres;

--
-- TOC entry 349 (class 1259 OID 17274)
-- Name: Notifications_NotificationId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Notifications_NotificationId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Notifications_NotificationId_seq" OWNER TO postgres;

--
-- TOC entry 4365 (class 0 OID 0)
-- Dependencies: 349
-- Name: Notifications_NotificationId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Notifications_NotificationId_seq" OWNED BY "Notifications"."NotificationId";


--
-- TOC entry 350 (class 1259 OID 17276)
-- Name: OTMultipliers; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "OTMultipliers" (
    "OTMultiplierId" bigint NOT NULL,
    "Name" character varying,
    "Percentage" numeric(18,2),
    "EffectivityDate" date,
    "Remarks" character varying
);


ALTER TABLE public."OTMultipliers" OWNER TO postgres;

--
-- TOC entry 351 (class 1259 OID 17282)
-- Name: OTMultipliers_OTMultipliersId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "OTMultipliers_OTMultipliersId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."OTMultipliers_OTMultipliersId_seq" OWNER TO postgres;

--
-- TOC entry 4368 (class 0 OID 0)
-- Dependencies: 351
-- Name: OTMultipliers_OTMultipliersId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "OTMultipliers_OTMultipliersId_seq" OWNED BY "OTMultipliers"."OTMultiplierId";


--
-- TOC entry 352 (class 1259 OID 17284)
-- Name: Organizations; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Organizations" (
    "OrganizationId" bigint NOT NULL,
    "OrganizationName" character varying,
    "BasicInformationId" integer
);


ALTER TABLE public."Organizations" OWNER TO postgres;

--
-- TOC entry 353 (class 1259 OID 17290)
-- Name: Organizations_OrganizationId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Organizations_OrganizationId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Organizations_OrganizationId_seq" OWNER TO postgres;

--
-- TOC entry 4371 (class 0 OID 0)
-- Dependencies: 353
-- Name: Organizations_OrganizationId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Organizations_OrganizationId_seq" OWNED BY "Organizations"."OrganizationId";


--
-- TOC entry 354 (class 1259 OID 17292)
-- Name: OtherCharges; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "OtherCharges" (
    "OtherChargesId" bigint NOT NULL,
    "ExpenseId" integer,
    "ExpenseName" character varying,
    "Amount" numeric(11,2)
);


ALTER TABLE public."OtherCharges" OWNER TO postgres;

--
-- TOC entry 355 (class 1259 OID 17298)
-- Name: OtherCharges_OtherChargesId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "OtherCharges_OtherChargesId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."OtherCharges_OtherChargesId_seq" OWNER TO postgres;

--
-- TOC entry 4374 (class 0 OID 0)
-- Dependencies: 355
-- Name: OtherCharges_OtherChargesId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "OtherCharges_OtherChargesId_seq" OWNED BY "OtherCharges"."OtherChargesId";


--
-- TOC entry 356 (class 1259 OID 17300)
-- Name: OtherDeductions; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "OtherDeductions" (
    "OtherDeductionId" bigint NOT NULL,
    "DeductionName" character varying,
    "OtherDeductionValue" numeric(11,2),
    "PayrollDateId" integer,
    "EmployeeId" bigint,
    "DeductionTypeId" integer DEFAULT 0
);


ALTER TABLE public."OtherDeductions" OWNER TO postgres;

--
-- TOC entry 357 (class 1259 OID 17307)
-- Name: OtherDeductions_OtherDeductionId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "OtherDeductions_OtherDeductionId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."OtherDeductions_OtherDeductionId_seq" OWNER TO postgres;

--
-- TOC entry 4377 (class 0 OID 0)
-- Dependencies: 357
-- Name: OtherDeductions_OtherDeductionId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "OtherDeductions_OtherDeductionId_seq" OWNED BY "OtherDeductions"."OtherDeductionId";


--
-- TOC entry 358 (class 1259 OID 17309)
-- Name: Overtimes; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Overtimes" (
    "OvertimeId" bigint NOT NULL,
    "EmployeeId" integer,
    "ScheduleDate" date,
    "NumberOfHours" integer,
    "ApproverEmployeeId" integer
);


ALTER TABLE public."Overtimes" OWNER TO postgres;

--
-- TOC entry 359 (class 1259 OID 17312)
-- Name: Overtimes_OvertimeId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Overtimes_OvertimeId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Overtimes_OvertimeId_seq" OWNER TO postgres;

--
-- TOC entry 4380 (class 0 OID 0)
-- Dependencies: 359
-- Name: Overtimes_OvertimeId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Overtimes_OvertimeId_seq" OWNED BY "Overtimes"."OvertimeId";


--
-- TOC entry 360 (class 1259 OID 17314)
-- Name: PayrollAllowances; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "PayrollAllowances" (
    "PayrollAllowanceId" bigint NOT NULL,
    "PayrollId" integer,
    "EmployeeAllowanceId" integer,
    "Amount" numeric(18,2),
    "AllowanceName" character varying,
    "Period" character varying DEFAULT 'NONE'::character varying
);


ALTER TABLE public."PayrollAllowances" OWNER TO postgres;

--
-- TOC entry 361 (class 1259 OID 17321)
-- Name: PayrollAllowances_PayrollAllowanceId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "PayrollAllowances_PayrollAllowanceId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."PayrollAllowances_PayrollAllowanceId_seq" OWNER TO postgres;

--
-- TOC entry 4383 (class 0 OID 0)
-- Dependencies: 361
-- Name: PayrollAllowances_PayrollAllowanceId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "PayrollAllowances_PayrollAllowanceId_seq" OWNED BY "PayrollAllowances"."PayrollAllowanceId";


--
-- TOC entry 362 (class 1259 OID 17323)
-- Name: PayrollClusters; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "PayrollClusters" (
    "PayrollClusterId" bigint NOT NULL,
    "ClusterName" character varying DEFAULT ''::character varying,
    "FundingAgency" character varying DEFAULT ''::character varying
);


ALTER TABLE public."PayrollClusters" OWNER TO postgres;

--
-- TOC entry 363 (class 1259 OID 17331)
-- Name: PayrollClusters_PayrollClusterId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "PayrollClusters_PayrollClusterId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."PayrollClusters_PayrollClusterId_seq" OWNER TO postgres;

--
-- TOC entry 4386 (class 0 OID 0)
-- Dependencies: 363
-- Name: PayrollClusters_PayrollClusterId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "PayrollClusters_PayrollClusterId_seq" OWNED BY "PayrollClusters"."PayrollClusterId";


--
-- TOC entry 364 (class 1259 OID 17333)
-- Name: PayrollDates; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "PayrollDates" (
    "PayrollDateId" bigint NOT NULL,
    "PayrollDateName" character varying,
    "StartDate" date,
    "EndDate" date,
    "PayrollDateReflection" date,
    "Month" integer,
    "Year" integer,
    "Day" integer,
    "PayrollType" character varying,
    "BonusTypeId" integer,
    "IsLocked" boolean,
    "SpecificCutoff" character varying,
    "UserId" integer DEFAULT 0,
    "IsOpen" boolean DEFAULT false
);


ALTER TABLE public."PayrollDates" OWNER TO postgres;

--
-- TOC entry 365 (class 1259 OID 17341)
-- Name: PayrollDates_PayrollDateId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "PayrollDates_PayrollDateId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."PayrollDates_PayrollDateId_seq" OWNER TO postgres;

--
-- TOC entry 4389 (class 0 OID 0)
-- Dependencies: 365
-- Name: PayrollDates_PayrollDateId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "PayrollDates_PayrollDateId_seq" OWNED BY "PayrollDates"."PayrollDateId";


--
-- TOC entry 366 (class 1259 OID 17343)
-- Name: PayrollOtherDeductions; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "PayrollOtherDeductions" (
    "PayrollOtherDeductionsId" bigint NOT NULL,
    "PayrollDateId" integer,
    "ContributionTypeId" integer
);


ALTER TABLE public."PayrollOtherDeductions" OWNER TO postgres;

--
-- TOC entry 367 (class 1259 OID 17346)
-- Name: PayrollOtherDeductions_PayrollOtherDeductionsId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "PayrollOtherDeductions_PayrollOtherDeductionsId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."PayrollOtherDeductions_PayrollOtherDeductionsId_seq" OWNER TO postgres;

--
-- TOC entry 4392 (class 0 OID 0)
-- Dependencies: 367
-- Name: PayrollOtherDeductions_PayrollOtherDeductionsId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "PayrollOtherDeductions_PayrollOtherDeductionsId_seq" OWNED BY "PayrollOtherDeductions"."PayrollOtherDeductionsId";


--
-- TOC entry 368 (class 1259 OID 17348)
-- Name: PayrollPremiums; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "PayrollPremiums" (
    "PayrollPremiumId" bigint NOT NULL,
    "PayrollId" integer,
    "PremiumName" character varying,
    "Amount" numeric(18,2),
    "isPersonalDeduction" boolean,
    "ContributionTypeId" integer
);


ALTER TABLE public."PayrollPremiums" OWNER TO postgres;

--
-- TOC entry 369 (class 1259 OID 17354)
-- Name: PayrollPremiums_PayrollPremiumId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "PayrollPremiums_PayrollPremiumId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."PayrollPremiums_PayrollPremiumId_seq" OWNER TO postgres;

--
-- TOC entry 4395 (class 0 OID 0)
-- Dependencies: 369
-- Name: PayrollPremiums_PayrollPremiumId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "PayrollPremiums_PayrollPremiumId_seq" OWNED BY "PayrollPremiums"."PayrollPremiumId";


--
-- TOC entry 370 (class 1259 OID 17356)
-- Name: PayrollProfiles; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "PayrollProfiles" (
    "PayrollProfileId" bigint NOT NULL,
    "EmployeeId" integer,
    "MonthlyRate" numeric(18,10),
    "HalfMonthRate" numeric(18,10),
    "DailyRate" numeric(18,10),
    "HourlyRate" numeric(18,10),
    "HourlyOtRate" numeric(18,10),
    "HourlyRestDayRate" numeric(18,10),
    "HourlyRestDayOtRate" numeric(18,10),
    "HourlyNdRate" numeric(18,10),
    "HourlyOtNdRate" numeric(18,10),
    "HourlyRestDayNdRate" numeric(18,10),
    "HourlyRestDayOtNdRate" numeric(18,10),
    "SpecialHolidayHourlyRate" numeric(18,10),
    "SpecialHolidayHourlyOtRate" numeric(18,10),
    "SpecialHolidayHourlyRestDayRate" numeric(18,10),
    "SpecialHolidayHourlyRestDayOtRate" numeric(18,10),
    "SpecialHolidayHourlyNdRate" numeric(18,10),
    "SpecialHolidayHourlyOtNdRate" numeric(18,10),
    "SpecialHolidayHourlyRestDayNdRate" numeric(18,10),
    "SpecialHolidayHourlyRestDayOtNdRate" numeric(18,10),
    "RegularHolidayHourlyRate" numeric(18,10),
    "RegularHolidayHourlyOtRate" numeric(18,10),
    "RegularHolidayHourlyRestDayRate" numeric(18,10),
    "RegularHolidayHourlyRestDayOtRate" numeric(18,10),
    "RegularHolidayHourlyNdRate" numeric(18,10),
    "RegularHolidayHourlyOtNdRate" numeric(18,10),
    "RegularHolidayHourlyRestDayNdRate" numeric(18,10),
    "RegularHolidayHourlyRestDayOtNdRate" numeric(18,10),
    "DoubleHolidayHourlyRate" numeric(18,10),
    "DoubleHolidayHourlyOtRate" numeric(18,10),
    "DoubleHolidayHourlyRestDayRate" numeric(18,10),
    "DoubleHolidayHourlyRestDayOtRate" numeric(18,10),
    "DoubleHolidayHourlyNdRate" numeric(18,10),
    "DoubleHolidayHourlyOtNdRate" numeric(18,10),
    "DoubleHolidayHourlyRestDayNdRate" numeric(18,10),
    "DoubleHolidayHourlyRestDayOtNdRate" numeric(18,10),
    "Allowance01Id" integer,
    "Allowance01Amount" numeric(18,10),
    "Allowance02Id" integer,
    "Allowance02Amount" numeric(18,10),
    "Allowance03Id" integer,
    "Allowance03Amount" numeric(18,10),
    "Allowance04Id" integer,
    "Allowance04Amount" numeric(18,10),
    "Allowance05Id" integer,
    "Allowance05Amount" numeric(18,10),
    "Allowance06Id" integer,
    "Allowance06Amount" numeric(18,10),
    "Allowance07Id" integer,
    "Allowance07Amount" numeric(18,10),
    "Allowance08Id" integer,
    "Allowance08Amount" numeric(18,10),
    "Allowance09Id" integer,
    "Allowance09Amount" numeric(18,10),
    "Allowance10Id" integer,
    "Allowance10Amount" numeric(18,10),
    "Loan01Id" integer,
    "Loan02Id" integer,
    "Loan03Id" integer,
    "Loan04Id" integer,
    "Loan05Id" integer,
    "Loan06Id" integer,
    "Loan07Id" integer,
    "Loan08Id" integer,
    "Loan09Id" integer,
    "Loan10Id" integer,
    "Loan11Id" integer,
    "Loan12Id" integer,
    "Loan13Id" integer,
    "Loan14Id" integer,
    "Loan15Id" integer,
    "Loan16Id" integer,
    "Loan17Id" integer,
    "Loan18Id" integer,
    "Loan19Id" integer,
    "Loan20Id" integer,
    "Loan01Amount" numeric(18,10),
    "Loan02Amount" numeric(18,10),
    "Loan03Amount" numeric(18,10),
    "Loan04Amount" numeric(18,10),
    "Loan05Amount" numeric(18,10),
    "Loan06Amount" numeric(18,10),
    "Loan07Amount" numeric(18,10),
    "Loan08Amount" numeric(18,10),
    "Loan09Amount" numeric(18,10),
    "Loan10Amount" numeric(18,10),
    "Loan11Amount" numeric(18,10),
    "Loan12Amount" numeric(18,10),
    "Loan13Amount" numeric(18,10),
    "Loan14Amount" numeric(18,10),
    "Loan15Amount" numeric(18,10),
    "Loan16Amount" numeric(18,10),
    "Loan17Amount" numeric(18,10),
    "Loan18Amount" numeric(18,10),
    "Loan19Amount" numeric(18,10),
    "Loan20Amount" numeric(18,10),
    "Deduction01Id" integer,
    "Deduction02Id" integer,
    "Deduction03Id" integer,
    "Deduction04Id" integer,
    "Deduction05Id" integer,
    "Deduction06Id" integer,
    "Deduction07Id" integer,
    "Deduction08Id" integer,
    "Deduction09Id" integer,
    "Deduction10Id" integer,
    "Deduction01Amount" numeric(18,10),
    "Deduction02Amount" numeric(18,10),
    "Deduction03Amount" numeric(18,10),
    "Deduction04Amount" numeric(18,10),
    "Deduction05Amount" numeric(18,10),
    "Deduction06Amount" numeric(18,10),
    "Deduction07Amount" numeric(18,10),
    "Deduction08Amount" numeric(18,10),
    "Deduction09Amount" numeric(18,10),
    "Deduction10Amount" numeric(18,10),
    "GsisPsAmount" numeric(18,10),
    "HdmfPsAmount" numeric(18,10),
    "PhilHealthPsAmount" numeric(18,10),
    "WithholdingTaxAmount" numeric(18,10),
    "GsisGsAmount" numeric(18,10),
    "HdmfGsAmount" numeric(18,10),
    "PhilHealthGsAmount" numeric(18,10),
    "IsGsisCustom" boolean DEFAULT false,
    "IsHdmfCustom" boolean DEFAULT false,
    "IsPhilHealthCustom" boolean DEFAULT false,
    "IsWithholdingTaxCustom" boolean DEFAULT false,
    "GsisEccAmount" numeric(18,10) DEFAULT 0,
    "Allowance01Cutoff" character varying,
    "Allowance02Cutoff" character varying,
    "Allowance03Cutoff" character varying,
    "Allowance04Cutoff" character varying,
    "Allowance05Cutoff" character varying,
    "Allowance06Cutoff" character varying,
    "Allowance07Cutoff" character varying,
    "Allowance08Cutoff" character varying,
    "Allowance09Cutoff" character varying,
    "Allowance10Cutoff" character varying,
    "Loan01Cutoff" character varying,
    "Loan02Cutoff" character varying,
    "Loan03Cutoff" character varying,
    "Loan04Cutoff" character varying,
    "Loan05Cutoff" character varying,
    "Loan06Cutoff" character varying,
    "Loan07Cutoff" character varying,
    "Loan08Cutoff" character varying,
    "Loan09Cutoff" character varying,
    "Loan10Cutoff" character varying,
    "Loan11Cutoff" character varying,
    "Loan12Cutoff" character varying,
    "Loan13Cutoff" character varying,
    "Loan14Cutoff" character varying,
    "Loan15Cutoff" character varying,
    "Loan16Cutoff" character varying,
    "Loan17Cutoff" character varying,
    "Loan18Cutoff" character varying,
    "Loan19Cutoff" character varying,
    "Loan20Cutoff" character varying,
    "Deduction01Cutoff" character varying,
    "Deduction02Cutoff" character varying,
    "Deduction03Cutoff" character varying,
    "Deduction04Cutoff" character varying,
    "Deduction05Cutoff" character varying,
    "Deduction06Cutoff" character varying,
    "Deduction07Cutoff" character varying,
    "Deduction08Cutoff" character varying,
    "Deduction09Cutoff" character varying,
    "Deduction10Cutoff" character varying,
    "IsSssCustom" boolean DEFAULT false,
    "SssEeAmount" numeric(18,10) DEFAULT 0,
    "SssErAmount" numeric(18,10) DEFAULT 0,
    "ClusterName" character varying DEFAULT ''::character varying,
    "WithholdingTaxComputation" character varying DEFAULT 'Auto-compute'::character varying
);


ALTER TABLE public."PayrollProfiles" OWNER TO postgres;

--
-- TOC entry 371 (class 1259 OID 17372)
-- Name: PayrollProfiles_PayrollProfileId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "PayrollProfiles_PayrollProfileId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."PayrollProfiles_PayrollProfileId_seq" OWNER TO postgres;

--
-- TOC entry 4398 (class 0 OID 0)
-- Dependencies: 371
-- Name: PayrollProfiles_PayrollProfileId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "PayrollProfiles_PayrollProfileId_seq" OWNED BY "PayrollProfiles"."PayrollProfileId";


--
-- TOC entry 372 (class 1259 OID 17374)
-- Name: Payrolls; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Payrolls" (
    "PayrollId" bigint NOT NULL,
    "IsRecieved" boolean DEFAULT false NOT NULL,
    "PayrollDateId" integer,
    "EmployeeId" bigint,
    "Present" integer,
    "Absences" integer,
    "BasicPay" numeric(18,10),
    "AbsencesDeduction" numeric(18,10),
    "LateDeduction" numeric(18,10),
    "OTPay" numeric(18,10),
    "OTHrs" numeric(18,10),
    "NightHrs" numeric(18,10),
    "NightPay" numeric(18,10),
    "HolidayPay" numeric(18,10),
    "SpecialHolidayPay" numeric(18,10),
    "SpecialHolidayOTPay" numeric(18,10),
    "OtherPay" numeric(18,10),
    "OtherOTPay" numeric(18,10),
    "TotalHrs" numeric(18,10),
    "HolidayOTPay" numeric(18,10),
    "GenerationType" character varying DEFAULT ''::character varying,
    "RegularDays" numeric(18,10),
    "RegularHours" numeric(18,10),
    "SpecialHolidayDays" numeric(18,10),
    "RegularHolidayDays" numeric(18,10),
    "SpecialHolidayHours" numeric(18,10),
    "RegularHolidayHours" numeric(18,10),
    "OvertimeHours" numeric(18,10),
    "NightDifferentialHours" numeric(18,10),
    "NightDifferentialOtHours" numeric(18,10),
    "ShOvertimeHours" numeric(18,10),
    "ShNightDifferentialHours" numeric(18,10),
    "ShNightDifferentialOtHours" numeric(18,10),
    "RhOvertimeHours" numeric(18,10),
    "RhNightDifferentialHours" numeric(18,10),
    "RhNightDifferentialOtHours" numeric(18,10),
    "RequiredDaysToAttend" integer,
    "AbsentDays" integer,
    "LeaveDays" numeric(18,2),
    "Allowance01Id" integer,
    "Allowance02Id" integer,
    "Allowance03Id" integer,
    "Allowance04Id" integer,
    "Allowance05Id" integer,
    "Allowance06Id" integer,
    "Allowance07Id" integer,
    "Allowance08Id" integer,
    "Allowance09Id" integer,
    "Allowance10Id" integer,
    "Allowance01Amount" numeric(18,10),
    "Allowance02Amount" numeric(18,10),
    "Allowance03Amount" numeric(18,10),
    "Allowance04Amount" numeric(18,10),
    "Allowance05Amount" numeric(18,10),
    "Allowance06Amount" numeric(18,10),
    "Allowance07Amount" numeric(18,10),
    "Allowance08Amount" numeric(18,10),
    "Allowance09Amount" numeric(18,10),
    "Allowance10Amount" numeric(18,10),
    "TotalAllowanceAmount" numeric(18,10),
    "Loan01Id" integer,
    "Loan02Id" integer,
    "Loan03Id" integer,
    "Loan04Id" integer,
    "Loan05Id" integer,
    "Loan06Id" integer,
    "Loan07Id" integer,
    "Loan08Id" integer,
    "Loan09Id" integer,
    "Loan10Id" integer,
    "Loan11Id" integer,
    "Loan12Id" integer,
    "Loan13Id" integer,
    "Loan14Id" integer,
    "Loan15Id" integer,
    "Loan16Id" integer,
    "Loan17Id" integer,
    "Loan18Id" integer,
    "Loan19Id" integer,
    "Loan20Id" integer,
    "Loan01Amount" numeric(18,10),
    "Loan02Amount" numeric(18,10),
    "Loan03Amount" numeric(18,10),
    "Loan04Amount" numeric(18,10),
    "Loan05Amount" numeric(18,10),
    "Loan06Amount" numeric(18,10),
    "Loan07Amount" numeric(18,10),
    "Loan08Amount" numeric(18,10),
    "Loan09Amount" numeric(18,10),
    "Loan10Amount" numeric(18,10),
    "Loan11Amount" numeric(18,10),
    "Loan12Amount" numeric(18,10),
    "Loan13Amount" numeric(18,10),
    "Loan14Amount" numeric(18,10),
    "Loan15Amount" numeric(18,10),
    "Loan16Amount" numeric(18,10),
    "Loan17Amount" numeric(18,10),
    "Loan18Amount" numeric(18,10),
    "Loan19Amount" numeric(18,10),
    "Loan20Amount" numeric(18,10),
    "TotalLoanAmount" numeric(18,10),
    "Deduction01Id" integer,
    "Deduction02Id" integer,
    "Deduction03Id" integer,
    "Deduction04Id" integer,
    "Deduction05Id" integer,
    "Deduction06Id" integer,
    "Deduction07Id" integer,
    "Deduction08Id" integer,
    "Deduction09Id" integer,
    "Deduction10Id" integer,
    "Deduction01Amount" numeric(18,10),
    "Deduction02Amount" numeric(18,10),
    "Deduction03Amount" numeric(18,10),
    "Deduction04Amount" numeric(18,10),
    "Deduction05Amount" numeric(18,10),
    "Deduction06Amount" numeric(18,10),
    "Deduction07Amount" numeric(18,10),
    "Deduction08Amount" numeric(18,10),
    "Deduction09Amount" numeric(18,10),
    "Deduction10Amount" numeric(18,10),
    "TotalDeductionAmount" numeric(18,10),
    "Adjustment01Reason" character varying,
    "Adjustment02Reason" character varying,
    "Adjustment03Reason" character varying,
    "Adjustment04Reason" character varying,
    "Adjustment05Reason" character varying,
    "Adjustment06Reason" character varying,
    "Adjustment07Reason" character varying,
    "Adjustment08Reason" character varying,
    "Adjustment09Reason" character varying,
    "Adjustment10Reason" character varying,
    "Adjustment01Amount" numeric(18,10),
    "Adjustment02Amount" numeric(18,10),
    "Adjustment03Amount" numeric(18,10),
    "Adjustment04Amount" numeric(18,10),
    "Adjustment05Amount" numeric(18,10),
    "Adjustment06Amount" numeric(18,10),
    "Adjustment07Amount" numeric(18,10),
    "Adjustment08Amount" numeric(18,10),
    "Adjustment09Amount" numeric(18,10),
    "Adjustment10Amount" numeric(18,10),
    "TotalAdjustmentAmount" numeric(18,10),
    "GsisPsAmount" numeric(18,10),
    "GsisGsAmount" numeric(18,10),
    "GsisEccAmount" numeric(18,10),
    "HdmfPsAmount" numeric(18,10),
    "HdmfGsAmount" numeric(18,10),
    "PhilHealthPsAmount" numeric(18,10),
    "PhilHealthGsAmount" numeric(18,10),
    "WithholdingTaxAmount" numeric(18,10),
    "NetPayAmount" numeric(18,10),
    "LeaveWithoutPayDays" numeric(18,2),
    "NightDifferentialPay" numeric(18,10),
    "FirstCutoffValue" numeric(18,10),
    "SecondCutoffValue" numeric(18,10),
    "Adjustment01Cutoff" character varying,
    "Adjustment02Cutoff" character varying,
    "Adjustment03Cutoff" character varying,
    "Adjustment04Cutoff" character varying,
    "Adjustment05Cutoff" character varying,
    "Adjustment06Cutoff" character varying,
    "Adjustment07Cutoff" character varying,
    "Adjustment08Cutoff" character varying,
    "Adjustment09Cutoff" character varying,
    "Adjustment10Cutoff" character varying,
    "SssEeAmount" numeric(18,10) DEFAULT 0,
    "SssErAmount" numeric(18,10) DEFAULT 0,
    "TotalTaxableAmount" numeric(18,10) DEFAULT 0,
    "TotalNonTaxableAmount" numeric(18,10) DEFAULT 0,
    "TotalGrossAmount" numeric(18,10) DEFAULT 0,
    "TardinessMinutes" integer DEFAULT 0,
    "TardinessEquivalent" numeric(18,5) DEFAULT 0,
    "AbsentEquivalent" numeric(18,5) DEFAULT 0,
    "OvertimeEquivalent" numeric(18,5) DEFAULT 0,
    "Allowance01Cutoff" character varying DEFAULT 'None'::character varying,
    "Allowance02Cutoff" character varying DEFAULT 'None'::character varying,
    "Allowance03Cutoff" character varying DEFAULT 'None'::character varying,
    "Allowance04Cutoff" character varying DEFAULT 'None'::character varying,
    "Allowance05Cutoff" character varying DEFAULT 'None'::character varying,
    "Allowance06Cutoff" character varying DEFAULT 'None'::character varying,
    "Allowance07Cutoff" character varying DEFAULT 'None'::character varying,
    "Allowance08Cutoff" character varying DEFAULT 'None'::character varying,
    "Allowance09Cutoff" character varying DEFAULT 'None'::character varying,
    "Allowance10Cutoff" character varying DEFAULT 'None'::character varying,
    "Loan01Cutoff" character varying DEFAULT 'None'::character varying,
    "Loan02Cutoff" character varying DEFAULT 'None'::character varying,
    "Loan03Cutoff" character varying DEFAULT 'None'::character varying,
    "Loan04Cutoff" character varying DEFAULT 'None'::character varying,
    "Loan05Cutoff" character varying DEFAULT 'None'::character varying,
    "Loan06Cutoff" character varying DEFAULT 'None'::character varying,
    "Loan07Cutoff" character varying DEFAULT 'None'::character varying,
    "Loan08Cutoff" character varying DEFAULT 'None'::character varying,
    "Loan09Cutoff" character varying DEFAULT 'None'::character varying,
    "Loan10Cutoff" character varying DEFAULT 'None'::character varying,
    "Loan11Cutoff" character varying DEFAULT 'None'::character varying,
    "Loan12Cutoff" character varying DEFAULT 'None'::character varying,
    "Loan13Cutoff" character varying DEFAULT 'None'::character varying,
    "Loan14Cutoff" character varying DEFAULT 'None'::character varying,
    "Loan15Cutoff" character varying DEFAULT 'None'::character varying,
    "Loan16Cutoff" character varying DEFAULT 'None'::character varying,
    "Loan17Cutoff" character varying DEFAULT 'None'::character varying,
    "Loan18Cutoff" character varying DEFAULT 'None'::character varying,
    "Loan19Cutoff" character varying DEFAULT 'None'::character varying,
    "Loan20Cutoff" character varying DEFAULT 'None'::character varying,
    "Deduction01Cutoff" character varying DEFAULT 'None'::character varying,
    "Deduction02Cutoff" character varying DEFAULT 'None'::character varying,
    "Deduction03Cutoff" character varying DEFAULT 'None'::character varying,
    "Deduction04Cutoff" character varying DEFAULT 'None'::character varying,
    "Deduction05Cutoff" character varying DEFAULT 'None'::character varying,
    "Deduction06Cutoff" character varying DEFAULT 'None'::character varying,
    "Deduction07Cutoff" character varying DEFAULT 'None'::character varying,
    "Deduction08Cutoff" character varying DEFAULT 'None'::character varying,
    "Deduction09Cutoff" character varying DEFAULT 'None'::character varying,
    "Deduction10Cutoff" character varying DEFAULT 'None'::character varying,
    "LeaveWithoutFileDays" numeric(18,2)
);


ALTER TABLE public."Payrolls" OWNER TO postgres;

--
-- TOC entry 373 (class 1259 OID 17431)
-- Name: Payrolls_PayrollId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Payrolls_PayrollId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Payrolls_PayrollId_seq" OWNER TO postgres;

--
-- TOC entry 4401 (class 0 OID 0)
-- Dependencies: 373
-- Name: Payrolls_PayrollId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Payrolls_PayrollId_seq" OWNED BY "Payrolls"."PayrollId";


--
-- TOC entry 374 (class 1259 OID 17433)
-- Name: PermissionToLeaves; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "PermissionToLeaves" (
    "PermissionToLeaveId" bigint NOT NULL,
    "EmployeeId" integer,
    "DepartmentId" integer,
    "OfficeToVisit" character varying,
    "ReasonForTravel" character varying,
    "DateFiled" date,
    "DateFrom" date,
    "DateTo" date,
    "NumberOfDays" integer,
    "Status" character varying,
    "PositionId" integer,
    "DivisionId" integer,
    "SectionId" integer
);


ALTER TABLE public."PermissionToLeaves" OWNER TO postgres;

--
-- TOC entry 375 (class 1259 OID 17439)
-- Name: PermissionToLeaves_PermissionToLeaveId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "PermissionToLeaves_PermissionToLeaveId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."PermissionToLeaves_PermissionToLeaveId_seq" OWNER TO postgres;

--
-- TOC entry 4404 (class 0 OID 0)
-- Dependencies: 375
-- Name: PermissionToLeaves_PermissionToLeaveId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "PermissionToLeaves_PermissionToLeaveId_seq" OWNED BY "PermissionToLeaves"."PermissionToLeaveId";


--
-- TOC entry 376 (class 1259 OID 17441)
-- Name: PersonnelActionMemoNotifications; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "PersonnelActionMemoNotifications" (
    "PersonnelActionMemoNotificationId" bigint NOT NULL,
    "IsRead" boolean,
    "PersonnelActionMemoId" integer
);


ALTER TABLE public."PersonnelActionMemoNotifications" OWNER TO postgres;

--
-- TOC entry 377 (class 1259 OID 17444)
-- Name: PersonnelActionMemoNotificati_PersonnelActionMemoNotificati_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "PersonnelActionMemoNotificati_PersonnelActionMemoNotificati_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."PersonnelActionMemoNotificati_PersonnelActionMemoNotificati_seq" OWNER TO postgres;

--
-- TOC entry 4407 (class 0 OID 0)
-- Dependencies: 377
-- Name: PersonnelActionMemoNotificati_PersonnelActionMemoNotificati_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "PersonnelActionMemoNotificati_PersonnelActionMemoNotificati_seq" OWNED BY "PersonnelActionMemoNotifications"."PersonnelActionMemoNotificationId";


--
-- TOC entry 378 (class 1259 OID 17446)
-- Name: PersonnelActionMemos; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "PersonnelActionMemos" (
    "PersonnelActionMemoId" bigint NOT NULL,
    "DateHired" date,
    "EffectivityDate" date,
    "EmploymentStatusId" bigint,
    "PositionId" bigint,
    "SalaryRate" numeric(18,2),
    "RateTypeId" bigint,
    "Status" character varying,
    "DateCreated" date,
    "Remarks" character varying,
    "DateApproved" character varying,
    "BasicInformationId" bigint,
    "PurposeOfMovement" character varying,
    "ToStep" integer,
    "EncoderBasicInformationId" integer,
    "ApproverBasicInformationId" integer,
    "PlantillaRecordId" integer,
    "Value" integer DEFAULT 0,
    "JobVacancyId" integer DEFAULT 0,
    "FromStep" integer DEFAULT 0,
    "ApplicationStatus" character varying,
    "NonPlantillaRecordId" integer DEFAULT 0
);


ALTER TABLE public."PersonnelActionMemos" OWNER TO postgres;

--
-- TOC entry 379 (class 1259 OID 17456)
-- Name: PersonnelActionMemos_PersonnelActionMemoId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "PersonnelActionMemos_PersonnelActionMemoId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."PersonnelActionMemos_PersonnelActionMemoId_seq" OWNER TO postgres;

--
-- TOC entry 4410 (class 0 OID 0)
-- Dependencies: 379
-- Name: PersonnelActionMemos_PersonnelActionMemoId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "PersonnelActionMemos_PersonnelActionMemoId_seq" OWNED BY "PersonnelActionMemos"."PersonnelActionMemoId";


--
-- TOC entry 380 (class 1259 OID 17458)
-- Name: PhilHealthContributions; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "PhilHealthContributions" (
    "PhilHealthContributionId" bigint NOT NULL,
    "MinBracket" numeric(11,2) DEFAULT 0 NOT NULL,
    "MaxBracket" numeric(11,2) DEFAULT 0 NOT NULL,
    "ERShare" numeric(11,2) DEFAULT 0 NOT NULL,
    "EEShare" numeric(11,2) DEFAULT 0 NOT NULL,
    "DateImplemented" date,
    "ValidUntil" character varying,
    "EmployeePercentage" numeric(18,5) DEFAULT 0,
    "EmployerPercentage" numeric(18,5) DEFAULT 0
);


ALTER TABLE public."PhilHealthContributions" OWNER TO postgres;

--
-- TOC entry 381 (class 1259 OID 17470)
-- Name: PhilHealthContribution_PhilHealthBracketId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "PhilHealthContribution_PhilHealthBracketId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."PhilHealthContribution_PhilHealthBracketId_seq" OWNER TO postgres;

--
-- TOC entry 4413 (class 0 OID 0)
-- Dependencies: 381
-- Name: PhilHealthContribution_PhilHealthBracketId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "PhilHealthContribution_PhilHealthBracketId_seq" OWNED BY "PhilHealthContributions"."PhilHealthContributionId";


--
-- TOC entry 382 (class 1259 OID 17472)
-- Name: PlantillaRecordEntries; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "PlantillaRecordEntries" (
    "PlantillaRecordEntryId" bigint NOT NULL,
    "PlantillaRecordId" integer,
    "PlantillaYear" integer,
    "ItemNumber" character varying,
    "DateOfMovement" date,
    "MovementType" character varying,
    "EmployeeId" integer,
    "DepartmentId" integer,
    "DivisionId" integer,
    "SectionId" integer,
    "ReasonOfSeparation" character varying,
    "ScrapBuildFromPlantillaId" integer,
    "PositionId" integer DEFAULT 0,
    "SalaryGradeId" integer DEFAULT 0
);


ALTER TABLE public."PlantillaRecordEntries" OWNER TO postgres;

--
-- TOC entry 383 (class 1259 OID 17480)
-- Name: PlantillaRecordEntries_PlantillaRecordEntryId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "PlantillaRecordEntries_PlantillaRecordEntryId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."PlantillaRecordEntries_PlantillaRecordEntryId_seq" OWNER TO postgres;

--
-- TOC entry 4416 (class 0 OID 0)
-- Dependencies: 383
-- Name: PlantillaRecordEntries_PlantillaRecordEntryId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "PlantillaRecordEntries_PlantillaRecordEntryId_seq" OWNED BY "PlantillaRecordEntries"."PlantillaRecordEntryId";


--
-- TOC entry 384 (class 1259 OID 17482)
-- Name: PlantillaRecords; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "PlantillaRecords" (
    "PlantillaRecordId" bigint NOT NULL,
    "ItemNumber" character varying,
    "EmployeeId" integer,
    "PositionId" integer,
    "DateAdded" date,
    "Remark" character varying,
    "EncoderBasicInformationId" integer,
    "TemporaryEmployeeId" integer,
    "IsDeleted" boolean,
    "DepartmentId" integer DEFAULT 0,
    "DivisionId" integer DEFAULT 0,
    "SectionId" integer DEFAULT 0,
    "ActionIfVacated" character varying DEFAULT 'Stay on specified department'::character varying
);


ALTER TABLE public."PlantillaRecords" OWNER TO postgres;

--
-- TOC entry 385 (class 1259 OID 17492)
-- Name: PlantillaRecords_PlantillaRecordId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "PlantillaRecords_PlantillaRecordId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."PlantillaRecords_PlantillaRecordId_seq" OWNER TO postgres;

--
-- TOC entry 4419 (class 0 OID 0)
-- Dependencies: 385
-- Name: PlantillaRecords_PlantillaRecordId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "PlantillaRecords_PlantillaRecordId_seq" OWNED BY "PlantillaRecords"."PlantillaRecordId";


--
-- TOC entry 386 (class 1259 OID 17494)
-- Name: PositionEducationalBackgrounds; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "PositionEducationalBackgrounds" (
    "PositionEducationalBackgroundId" bigint NOT NULL,
    "CourseId" integer,
    "YearsAcquired" integer,
    "MonthsAcquired" integer,
    "IsGraduated" boolean,
    "EducationalLevel" character varying,
    "PositionId" integer,
    "Degree" character varying,
    "CourseName" character varying,
    "UnitsEarned" character varying
);


ALTER TABLE public."PositionEducationalBackgrounds" OWNER TO postgres;

--
-- TOC entry 387 (class 1259 OID 17500)
-- Name: PositionEducationalBackground_PositionEducationalBackground_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "PositionEducationalBackground_PositionEducationalBackground_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."PositionEducationalBackground_PositionEducationalBackground_seq" OWNER TO postgres;

--
-- TOC entry 4422 (class 0 OID 0)
-- Dependencies: 387
-- Name: PositionEducationalBackground_PositionEducationalBackground_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "PositionEducationalBackground_PositionEducationalBackground_seq" OWNED BY "PositionEducationalBackgrounds"."PositionEducationalBackgroundId";


--
-- TOC entry 388 (class 1259 OID 17502)
-- Name: PositionEligibilities; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "PositionEligibilities" (
    "PositionEligibilityId" bigint NOT NULL,
    "PositionId" integer,
    "EligibilityTitle" character varying,
    "LevelOfEligibility" character varying,
    "Rating" character varying,
    "EligibilityDocumentTypeId" integer,
    "EligibilityType" character varying
);


ALTER TABLE public."PositionEligibilities" OWNER TO postgres;

--
-- TOC entry 389 (class 1259 OID 17508)
-- Name: PositionEligibilities_PositionEligibilityId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "PositionEligibilities_PositionEligibilityId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."PositionEligibilities_PositionEligibilityId_seq" OWNER TO postgres;

--
-- TOC entry 4425 (class 0 OID 0)
-- Dependencies: 389
-- Name: PositionEligibilities_PositionEligibilityId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "PositionEligibilities_PositionEligibilityId_seq" OWNED BY "PositionEligibilities"."PositionEligibilityId";


--
-- TOC entry 390 (class 1259 OID 17510)
-- Name: PositionExperiences; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "PositionExperiences" (
    "PositionExperienceId" bigint NOT NULL,
    "PositionId" integer,
    "YearsExperience" integer,
    "MonthsExperience" integer,
    "WorkExperience" character varying
);


ALTER TABLE public."PositionExperiences" OWNER TO postgres;

--
-- TOC entry 391 (class 1259 OID 17516)
-- Name: PositionExperiences_PositionExperienceId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "PositionExperiences_PositionExperienceId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."PositionExperiences_PositionExperienceId_seq" OWNER TO postgres;

--
-- TOC entry 4428 (class 0 OID 0)
-- Dependencies: 391
-- Name: PositionExperiences_PositionExperienceId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "PositionExperiences_PositionExperienceId_seq" OWNED BY "PositionExperiences"."PositionExperienceId";


--
-- TOC entry 392 (class 1259 OID 17518)
-- Name: PositionTrainings; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "PositionTrainings" (
    "PositionTrainingId" bigint NOT NULL,
    "PositionId" integer,
    "TrainingId" integer,
    "NumberOfHours" character varying,
    "TrainingType" character varying
);


ALTER TABLE public."PositionTrainings" OWNER TO postgres;

--
-- TOC entry 393 (class 1259 OID 17524)
-- Name: PositionTrainings_PositionTrainingId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "PositionTrainings_PositionTrainingId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."PositionTrainings_PositionTrainingId_seq" OWNER TO postgres;

--
-- TOC entry 4431 (class 0 OID 0)
-- Dependencies: 393
-- Name: PositionTrainings_PositionTrainingId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "PositionTrainings_PositionTrainingId_seq" OWNED BY "PositionTrainings"."PositionTrainingId";


--
-- TOC entry 394 (class 1259 OID 17526)
-- Name: Positions; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Positions" (
    "PositionId" bigint NOT NULL,
    "PositionTitle" character varying,
    "PositionDescription" character varying,
    "SectionId" integer,
    "DepartmentId" integer,
    "DivisionId" integer,
    "SalaryGradeNumber" integer,
    "Rank" integer,
    "IsSupervisor" boolean,
    "AccessLevel" character varying,
    "SalaryGradeAnnex" character varying,
    "ShortName" character varying DEFAULT ''::character varying,
    "Type" character varying
);


ALTER TABLE public."Positions" OWNER TO postgres;

--
-- TOC entry 395 (class 1259 OID 17533)
-- Name: Positions_PositionId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Positions_PositionId_seq"
    START WITH 1
    INCREMENT BY 1
    MINVALUE 0
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Positions_PositionId_seq" OWNER TO postgres;

--
-- TOC entry 4434 (class 0 OID 0)
-- Dependencies: 395
-- Name: Positions_PositionId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Positions_PositionId_seq" OWNED BY "Positions"."PositionId";


--
-- TOC entry 396 (class 1259 OID 17535)
-- Name: Questionnaires; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Questionnaires" (
    "QuestionnaireId" bigint NOT NULL,
    "BasicInformationId" integer,
    "Q36a" character varying,
    "Q36b" character varying,
    "Q37a" character varying,
    "Q37b" character varying,
    "Q38" character varying,
    "Q39" character varying,
    "Q40" character varying,
    "Q41a" character varying,
    "Q41b" character varying,
    "Q41c" character varying,
    "Q25a" character varying,
    "Q25b" character varying,
    "Q34a" character varying DEFAULT ''::character varying,
    "Q34b" character varying DEFAULT ''::character varying,
    "Q35a" character varying DEFAULT ''::character varying,
    "Q35b" character varying DEFAULT ''::character varying,
    "Q38a" character varying DEFAULT ''::character varying,
    "Q38b" character varying DEFAULT ''::character varying,
    "Q40a" character varying DEFAULT ''::character varying,
    "Q40b" character varying DEFAULT ''::character varying,
    "Q40c" character varying DEFAULT ''::character varying
);


ALTER TABLE public."Questionnaires" OWNER TO postgres;

--
-- TOC entry 397 (class 1259 OID 17550)
-- Name: Questionnaires_QuestionnaireId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Questionnaires_QuestionnaireId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Questionnaires_QuestionnaireId_seq" OWNER TO postgres;

--
-- TOC entry 4437 (class 0 OID 0)
-- Dependencies: 397
-- Name: Questionnaires_QuestionnaireId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Questionnaires_QuestionnaireId_seq" OWNED BY "Questionnaires"."QuestionnaireId";


--
-- TOC entry 398 (class 1259 OID 17552)
-- Name: RFIDParameters; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "RFIDParameters" (
    "RFIDParameterId" bigint NOT NULL,
    "EthernetReaderEnabled" boolean,
    "USBReaderEnabled" boolean,
    "KioskReaderEnabled" boolean DEFAULT false,
    "RequiredDevice" character varying DEFAULT ''::character varying,
    "BiometricsEnabled" boolean DEFAULT false,
    "AccuracyPercentage" integer DEFAULT 0,
    "DigitalPersonaEnabled" boolean DEFAULT false,
    "FaceScannerServerIp" character varying DEFAULT ''::character varying,
    "FaceScannerServerAccessKey" character varying DEFAULT ''::character varying,
    "MaximumNormalTemperature" numeric(18,2) DEFAULT 37.5,
    "AcsNfcReaderEnabled" boolean
);


ALTER TABLE public."RFIDParameters" OWNER TO postgres;

--
-- TOC entry 399 (class 1259 OID 17566)
-- Name: RFIDParameters_RFIDParameterId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "RFIDParameters_RFIDParameterId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."RFIDParameters_RFIDParameterId_seq" OWNER TO postgres;

--
-- TOC entry 4440 (class 0 OID 0)
-- Dependencies: 399
-- Name: RFIDParameters_RFIDParameterId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "RFIDParameters_RFIDParameterId_seq" OWNED BY "RFIDParameters"."RFIDParameterId";


--
-- TOC entry 400 (class 1259 OID 17568)
-- Name: Rankings; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Rankings" (
    "RankName" character varying,
    "RankingLevel" integer,
    "RankId" bigint NOT NULL
);


ALTER TABLE public."Rankings" OWNER TO postgres;

--
-- TOC entry 401 (class 1259 OID 17574)
-- Name: Rankings_RankId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Rankings_RankId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Rankings_RankId_seq" OWNER TO postgres;

--
-- TOC entry 4443 (class 0 OID 0)
-- Dependencies: 401
-- Name: Rankings_RankId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Rankings_RankId_seq" OWNED BY "Rankings"."RankId";


--
-- TOC entry 402 (class 1259 OID 17576)
-- Name: RateTypes; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "RateTypes" (
    "RateTypeId" bigint NOT NULL,
    "RateDescription" character varying,
    "Description" character varying
);


ALTER TABLE public."RateTypes" OWNER TO postgres;

--
-- TOC entry 403 (class 1259 OID 17582)
-- Name: RateType_RateTypeId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "RateType_RateTypeId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."RateType_RateTypeId_seq" OWNER TO postgres;

--
-- TOC entry 4446 (class 0 OID 0)
-- Dependencies: 403
-- Name: RateType_RateTypeId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "RateType_RateTypeId_seq" OWNED BY "RateTypes"."RateTypeId";


--
-- TOC entry 404 (class 1259 OID 17584)
-- Name: Recognitions; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Recognitions" (
    "RecognitionId" bigint NOT NULL,
    "RecognitionName" character varying,
    "BasicInformationId" integer
);


ALTER TABLE public."Recognitions" OWNER TO postgres;

--
-- TOC entry 405 (class 1259 OID 17590)
-- Name: Recognitions_RecognitionId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Recognitions_RecognitionId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Recognitions_RecognitionId_seq" OWNER TO postgres;

--
-- TOC entry 4449 (class 0 OID 0)
-- Dependencies: 405
-- Name: Recognitions_RecognitionId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Recognitions_RecognitionId_seq" OWNED BY "Recognitions"."RecognitionId";


--
-- TOC entry 406 (class 1259 OID 17592)
-- Name: ReportPrintSettings; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "ReportPrintSettings" (
    "ReportPrintSettingId" bigint NOT NULL,
    "EmploymentStatusId" integer,
    "Category" character varying,
    "ValueInt" integer,
    "ValueString" character varying DEFAULT ''::character varying,
    "Half" integer
);


ALTER TABLE public."ReportPrintSettings" OWNER TO postgres;

--
-- TOC entry 407 (class 1259 OID 17599)
-- Name: ReportPrintSettings_ReportPrintSettingId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "ReportPrintSettings_ReportPrintSettingId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."ReportPrintSettings_ReportPrintSettingId_seq" OWNER TO postgres;

--
-- TOC entry 4452 (class 0 OID 0)
-- Dependencies: 407
-- Name: ReportPrintSettings_ReportPrintSettingId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "ReportPrintSettings_ReportPrintSettingId_seq" OWNED BY "ReportPrintSettings"."ReportPrintSettingId";


--
-- TOC entry 408 (class 1259 OID 17601)
-- Name: ReportSignatories; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "ReportSignatories" (
    "ReportSignatoryId" bigint NOT NULL,
    "ReportName" character varying,
    "SignatoryPurpose" character varying,
    "PositionTitle" character varying,
    "SignatoryName" character varying,
    "AdditionalDetail1" character varying DEFAULT ''::character varying,
    "ReportLogo1" character varying DEFAULT ''::character varying,
    "AdditionalDetail2" character varying
);


ALTER TABLE public."ReportSignatories" OWNER TO postgres;

--
-- TOC entry 409 (class 1259 OID 17609)
-- Name: ReportSignatories_ReportSignatoryId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "ReportSignatories_ReportSignatoryId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."ReportSignatories_ReportSignatoryId_seq" OWNER TO postgres;

--
-- TOC entry 4455 (class 0 OID 0)
-- Dependencies: 409
-- Name: ReportSignatories_ReportSignatoryId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "ReportSignatories_ReportSignatoryId_seq" OWNED BY "ReportSignatories"."ReportSignatoryId";


--
-- TOC entry 410 (class 1259 OID 17611)
-- Name: SSSContributions; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "SSSContributions" (
    "SSSBracketId" bigint NOT NULL,
    "MinBracket" numeric(11,2) DEFAULT 0 NOT NULL,
    "MaxBracket" numeric(11,2) DEFAULT 0 NOT NULL,
    "ERShare" numeric(11,2) DEFAULT 0 NOT NULL,
    "EEShare" numeric(11,2) DEFAULT 0 NOT NULL,
    "EC" numeric(11,2) DEFAULT 0 NOT NULL,
    "DateImplemented" date,
    "ValidUntil" character varying
);


ALTER TABLE public."SSSContributions" OWNER TO postgres;

--
-- TOC entry 411 (class 1259 OID 17622)
-- Name: SSSContribution_SSSBracketId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "SSSContribution_SSSBracketId_seq"
    START WITH 1
    INCREMENT BY 1
    MINVALUE 0
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."SSSContribution_SSSBracketId_seq" OWNER TO postgres;

--
-- TOC entry 4458 (class 0 OID 0)
-- Dependencies: 411
-- Name: SSSContribution_SSSBracketId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "SSSContribution_SSSBracketId_seq" OWNED BY "SSSContributions"."SSSBracketId";


--
-- TOC entry 412 (class 1259 OID 17624)
-- Name: SalaryGrades; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "SalaryGrades" (
    "SalaryGradeNumber" bigint,
    "EffectivityDate" date,
    "Step1" numeric(18,2),
    "Step2" numeric(18,2),
    "Step3" numeric(18,2),
    "Step4" numeric(18,2),
    "Step5" numeric(18,2),
    "Step6" numeric(18,2),
    "Step7" numeric(18,2),
    "Step8" numeric(18,2),
    "SalaryGradeId" bigint NOT NULL,
    "Annex" character varying,
    "LbcNo" character varying DEFAULT ''::character varying
);


ALTER TABLE public."SalaryGrades" OWNER TO postgres;

--
-- TOC entry 413 (class 1259 OID 17631)
-- Name: SalaryGrades_Id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "SalaryGrades_Id_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."SalaryGrades_Id_seq" OWNER TO postgres;

--
-- TOC entry 4461 (class 0 OID 0)
-- Dependencies: 413
-- Name: SalaryGrades_Id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "SalaryGrades_Id_seq" OWNED BY "SalaryGrades"."SalaryGradeId";


--
-- TOC entry 414 (class 1259 OID 17633)
-- Name: Sanctions; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Sanctions" (
    "SanctionId" bigint NOT NULL,
    "SanctionDescription" character varying,
    "HasSuspension" boolean,
    "HasFine" boolean,
    "IsDismissed" boolean
);


ALTER TABLE public."Sanctions" OWNER TO postgres;

--
-- TOC entry 415 (class 1259 OID 17639)
-- Name: Sanctions_SanctionId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Sanctions_SanctionId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Sanctions_SanctionId_seq" OWNER TO postgres;

--
-- TOC entry 4464 (class 0 OID 0)
-- Dependencies: 415
-- Name: Sanctions_SanctionId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Sanctions_SanctionId_seq" OWNED BY "Sanctions"."SanctionId";


--
-- TOC entry 416 (class 1259 OID 17641)
-- Name: ScheduleTemplates; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "ScheduleTemplates" (
    "ScheduleTemplateId" bigint NOT NULL,
    "ScheduleTemplateName" character varying
);


ALTER TABLE public."ScheduleTemplates" OWNER TO postgres;

--
-- TOC entry 417 (class 1259 OID 17647)
-- Name: ScheduleTemplates_ScheduleTemplateId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "ScheduleTemplates_ScheduleTemplateId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."ScheduleTemplates_ScheduleTemplateId_seq" OWNER TO postgres;

--
-- TOC entry 4467 (class 0 OID 0)
-- Dependencies: 417
-- Name: ScheduleTemplates_ScheduleTemplateId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "ScheduleTemplates_ScheduleTemplateId_seq" OWNED BY "ScheduleTemplates"."ScheduleTemplateId";


--
-- TOC entry 418 (class 1259 OID 17649)
-- Name: Sections; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Sections" (
    "SectionId" bigint NOT NULL,
    "DepartmentId" integer,
    "SectionName" character varying,
    "Description" character varying,
    "DivisionId" integer,
    "Rank" integer
);


ALTER TABLE public."Sections" OWNER TO postgres;

--
-- TOC entry 419 (class 1259 OID 17655)
-- Name: Sections_SectionId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Sections_SectionId_seq"
    START WITH 1
    INCREMENT BY 1
    MINVALUE 0
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Sections_SectionId_seq" OWNER TO postgres;

--
-- TOC entry 4470 (class 0 OID 0)
-- Dependencies: 419
-- Name: Sections_SectionId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Sections_SectionId_seq" OWNED BY "Sections"."SectionId";


--
-- TOC entry 420 (class 1259 OID 17657)
-- Name: SelfEmployedSSSEmployees; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "SelfEmployedSSSEmployees" (
    "SelfEmployedId" bigint NOT NULL,
    "EmployeeId" integer
);


ALTER TABLE public."SelfEmployedSSSEmployees" OWNER TO postgres;

--
-- TOC entry 421 (class 1259 OID 17660)
-- Name: SelfEmployedSSSEmployees_SelfEmployedId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "SelfEmployedSSSEmployees_SelfEmployedId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."SelfEmployedSSSEmployees_SelfEmployedId_seq" OWNER TO postgres;

--
-- TOC entry 4473 (class 0 OID 0)
-- Dependencies: 421
-- Name: SelfEmployedSSSEmployees_SelfEmployedId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "SelfEmployedSSSEmployees_SelfEmployedId_seq" OWNED BY "SelfEmployedSSSEmployees"."SelfEmployedId";


--
-- TOC entry 422 (class 1259 OID 17662)
-- Name: SeparatedRecords; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "SeparatedRecords" (
    "SeparatedRecordId" bigint NOT NULL,
    "EmployeeId" integer,
    "DateStart" character varying,
    "DateEnd" character varying,
    "Designation" character varying,
    "Status" character varying,
    "Salary" character varying,
    "Station" character varying,
    "LeaveOfAbsencesWithoutPay" character varying,
    "SeparationDate" character varying,
    "SeparationCause" character varying,
    "Remarks" character varying,
    "IsInCurrentAgency" character varying DEFAULT 'NO'::character varying,
    "DepartmentName" character varying,
    "DivisionName" character varying,
    "SectionName" character varying
);


ALTER TABLE public."SeparatedRecords" OWNER TO postgres;

--
-- TOC entry 423 (class 1259 OID 17669)
-- Name: SeparatedRecords_SeparatedRecordId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "SeparatedRecords_SeparatedRecordId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."SeparatedRecords_SeparatedRecordId_seq" OWNER TO postgres;

--
-- TOC entry 4476 (class 0 OID 0)
-- Dependencies: 423
-- Name: SeparatedRecords_SeparatedRecordId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "SeparatedRecords_SeparatedRecordId_seq" OWNED BY "SeparatedRecords"."SeparatedRecordId";


--
-- TOC entry 424 (class 1259 OID 17671)
-- Name: ServiceRecords; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "ServiceRecords" (
    "ServiceRecordId" bigint NOT NULL,
    "DateStarted" date DEFAULT '0001-01-01'::date NOT NULL,
    "SalaryRate" numeric(18,2) DEFAULT 0 NOT NULL,
    "PositionId" integer DEFAULT 0 NOT NULL,
    "EmploymentStatusId" integer DEFAULT 0 NOT NULL,
    "RateTypeId" integer,
    "PersonnelActionMemoId" integer,
    "Remarks" character varying,
    "EmployeeId" integer,
    "Step" integer,
    "DateEnded" date,
    "PlantillaRecordId" integer,
    "DepartmentId" integer,
    "DivisionId" integer,
    "SectionId" integer,
    "UseOldName" boolean DEFAULT false,
    "UseOldNameDetailed" boolean DEFAULT false,
    "DetailedDepartmentId" integer DEFAULT 0,
    "DetailedDivisionId" integer DEFAULT 0,
    "DetailedSectionId" integer DEFAULT 0,
    "NonPlantillaItemId" integer DEFAULT 0,
    "SalaryGradeNo" integer,
    "SalaryGradeAnnex" character varying
);


ALTER TABLE public."ServiceRecords" OWNER TO postgres;

--
-- TOC entry 425 (class 1259 OID 17687)
-- Name: ServiceRecord_ServiceId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "ServiceRecord_ServiceId_seq"
    START WITH 1
    INCREMENT BY 1
    MINVALUE 0
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."ServiceRecord_ServiceId_seq" OWNER TO postgres;

--
-- TOC entry 4479 (class 0 OID 0)
-- Dependencies: 425
-- Name: ServiceRecord_ServiceId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "ServiceRecord_ServiceId_seq" OWNED BY "ServiceRecords"."ServiceRecordId";


--
-- TOC entry 426 (class 1259 OID 17689)
-- Name: Skills; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Skills" (
    "SkillId" bigint NOT NULL,
    "SkillName" character varying,
    "BasicInformationId" integer
);


ALTER TABLE public."Skills" OWNER TO postgres;

--
-- TOC entry 427 (class 1259 OID 17695)
-- Name: Skills_SkillId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Skills_SkillId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Skills_SkillId_seq" OWNER TO postgres;

--
-- TOC entry 4482 (class 0 OID 0)
-- Dependencies: 427
-- Name: Skills_SkillId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Skills_SkillId_seq" OWNED BY "Skills"."SkillId";


--
-- TOC entry 428 (class 1259 OID 17697)
-- Name: Spouses; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Spouses" (
    "SpouseId" bigint NOT NULL,
    "FirstName" character varying,
    "MiddleName" character varying,
    "LastName" character varying,
    "FullName" character varying,
    "Gender" character varying,
    "BirthDate" date,
    "BirthPlace" character varying,
    "Occupation" character varying,
    "EmailAddress" character varying,
    "ContactNumber" character varying,
    "EmployeeId" bigint
);


ALTER TABLE public."Spouses" OWNER TO postgres;

--
-- TOC entry 429 (class 1259 OID 17703)
-- Name: Spouse_SpouseId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Spouse_SpouseId_seq"
    START WITH 1
    INCREMENT BY 1
    MINVALUE 0
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Spouse_SpouseId_seq" OWNER TO postgres;

--
-- TOC entry 4485 (class 0 OID 0)
-- Dependencies: 429
-- Name: Spouse_SpouseId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Spouse_SpouseId_seq" OWNED BY "Spouses"."SpouseId";


--
-- TOC entry 430 (class 1259 OID 17705)
-- Name: StationEmployees; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "StationEmployees" (
    "StationEmployeeId" bigint NOT NULL,
    "StationId" integer,
    "EmployeeId" integer
);


ALTER TABLE public."StationEmployees" OWNER TO postgres;

--
-- TOC entry 431 (class 1259 OID 17708)
-- Name: StationEmployees_StationEmployeeId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "StationEmployees_StationEmployeeId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."StationEmployees_StationEmployeeId_seq" OWNER TO postgres;

--
-- TOC entry 4488 (class 0 OID 0)
-- Dependencies: 431
-- Name: StationEmployees_StationEmployeeId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "StationEmployees_StationEmployeeId_seq" OWNED BY "StationEmployees"."StationEmployeeId";


--
-- TOC entry 432 (class 1259 OID 17710)
-- Name: Stations; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Stations" (
    "StationId" bigint NOT NULL,
    "StationName" character varying,
    "EthernetReaderIpAddress" character varying,
    "RfidReaderType" character varying DEFAULT 'None'::character varying,
    "BiometricsType" character varying DEFAULT 'None'::character varying NOT NULL,
    "WebcamActivated" boolean DEFAULT false,
    "WindowStyle" character varying DEFAULT 'None'::character varying
);


ALTER TABLE public."Stations" OWNER TO postgres;

--
-- TOC entry 433 (class 1259 OID 17720)
-- Name: Stations_StationId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Stations_StationId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Stations_StationId_seq" OWNER TO postgres;

--
-- TOC entry 4491 (class 0 OID 0)
-- Dependencies: 433
-- Name: Stations_StationId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Stations_StationId_seq" OWNED BY "Stations"."StationId";


--
-- TOC entry 434 (class 1259 OID 17722)
-- Name: StepIncrementPolicies; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "StepIncrementPolicies" (
    "StepIncrementPolicyId" bigint NOT NULL,
    "YearsOfService" integer,
    "AutoDetectQualifiedEmployees" boolean,
    "NosiReportFormat" character varying
);


ALTER TABLE public."StepIncrementPolicies" OWNER TO postgres;

--
-- TOC entry 435 (class 1259 OID 17728)
-- Name: StepIncrementPolicies_StepIncrementPolicyId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "StepIncrementPolicies_StepIncrementPolicyId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."StepIncrementPolicies_StepIncrementPolicyId_seq" OWNER TO postgres;

--
-- TOC entry 4494 (class 0 OID 0)
-- Dependencies: 435
-- Name: StepIncrementPolicies_StepIncrementPolicyId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "StepIncrementPolicies_StepIncrementPolicyId_seq" OWNED BY "StepIncrementPolicies"."StepIncrementPolicyId";


--
-- TOC entry 436 (class 1259 OID 17730)
-- Name: StudyLeaveServiceObligations; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "StudyLeaveServiceObligations" (
    "ServiceObligationId" bigint NOT NULL,
    "NumberOfMonthsGranted" integer,
    "NumberOfMonthsObligated" integer
);


ALTER TABLE public."StudyLeaveServiceObligations" OWNER TO postgres;

--
-- TOC entry 437 (class 1259 OID 17733)
-- Name: StudyLeaveServiceObligations_ServiceObligationId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "StudyLeaveServiceObligations_ServiceObligationId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."StudyLeaveServiceObligations_ServiceObligationId_seq" OWNER TO postgres;

--
-- TOC entry 4497 (class 0 OID 0)
-- Dependencies: 437
-- Name: StudyLeaveServiceObligations_ServiceObligationId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "StudyLeaveServiceObligations_ServiceObligationId_seq" OWNED BY "StudyLeaveServiceObligations"."ServiceObligationId";


--
-- TOC entry 438 (class 1259 OID 17735)
-- Name: SystemParameters; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "SystemParameters" (
    "NextIdVariableIndex" integer DEFAULT 0 NOT NULL,
    "NextImageId" character varying,
    "CompanyName" character varying,
    "CompanyLogo" character varying,
    "CompanyTelephone" character varying,
    "CompanyCellphone" character varying,
    "CompanyWebsite" character varying,
    "SystemParameterId" integer NOT NULL,
    "CompanyEmail" character varying,
    "Signatory1Name" character varying,
    "Signatory1Position" character varying,
    "EmployeeNumberPrefix" character varying,
    "NextEmployeeNumber" character varying,
    "Signatory2Name" character varying,
    "Signatory2Position" character varying,
    "BankAccount" character(1),
    "HDMFMaxSalary" numeric(11,2) DEFAULT 0 NOT NULL,
    "PayrollOfficerName" character varying,
    "PayrollOfficerPosition" character varying,
    "TimekeepingOfficerName" character varying,
    "TimekeepingOfficerPosition" character varying,
    "HROfficerName" character varying,
    "HROfficerPosition" character varying,
    "EmployerSSSNo" character varying,
    "EmployerPhilhealthNo" character varying,
    "EmployerTIN" character varying,
    "NightPremiumStart" character varying,
    "NightPremiumEnd" character varying,
    "BreakHours" character varying,
    "LeaveYear" character varying,
    "MainImagePath" character varying,
    "CloseGateActivated" boolean,
    "EmergencyOutActivated" boolean,
    "DepartmentTitle" character varying,
    "DivisionTitle" character varying,
    "SectionTitle" character varying,
    "Barangay" character varying,
    "CityOrMunicipality" character varying,
    "Province" character varying,
    "ZipCode" character varying,
    "PhilHealthYear" date,
    "HDMFYear" date,
    "SSSYear" date,
    "WithholdingTaxYear" date,
    "IsCity" boolean,
    "MinimumWage" numeric(18,2),
    "Conso" numeric(18,2),
    "REG3D" numeric(18,2),
    "GarbageFee" numeric(18,2),
    "SSSContri" numeric(18,2),
    "EducAssistance" numeric(18,2),
    "WebcamActivated" boolean,
    "ECCPercentage" numeric(18,2) DEFAULT 0.01,
    "ECCMaxValue" numeric(18,2) DEFAULT 100,
    "IsUsingWithholdingTax" boolean,
    "TaxableBonus" numeric(18,2) DEFAULT 0,
    "IsIncludeHoliday" boolean DEFAULT false,
    "AdministrativeDivision" character varying DEFAULT ''::character varying,
    "GeneralPayrollFormat" character varying DEFAULT ''::character varying,
    "EligibilityExpiryWarningDays" integer DEFAULT 0,
    "CountryName" character varying DEFAULT 'Philippines'::character varying,
    "NetPayGreaterHalfAllocation" character varying DEFAULT '16-30'::character varying,
    "PayrollSummaryFormat" character varying DEFAULT 'Format 2'::character varying,
    "LeaveApplicationReportFormat" character varying DEFAULT 'Format 1'::character varying,
    "EmployeeListArrangement" character varying DEFAULT ''::character varying,
    "BasicPayRoundOffRule" character varying DEFAULT ''::character varying,
    "ServiceRecordReportFormat" character varying DEFAULT 'Format 1'::character varying,
    "PayslipFormat" character varying DEFAULT 'Format 1'::character varying,
    "DailyWagePayrollFormat" character varying DEFAULT 'Format 2'::character varying,
    "ObligationRequestReportFormat" character varying DEFAULT 'Format 1'::character varying,
    "SalaryAccountCode" character varying DEFAULT ''::character varying,
    "AllowanceAccountCode" character varying DEFAULT ''::character varying,
    "GsisAccountCode" character varying DEFAULT ''::character varying,
    "HdmfAccountCode" character varying DEFAULT ''::character varying,
    "PhilHealthAccountCode" character varying DEFAULT ''::character varying,
    "GsisEccAccountCode" character varying DEFAULT ''::character varying,
    "DefaultDepartmentToLoad" character varying DEFAULT 'All'::character varying,
    "TardinessValueType" character varying DEFAULT 'Minutes'::character varying,
    "JobOrderFilterType" character varying DEFAULT 'By Cluster'::character varying,
    "OvertimeValueType" character varying DEFAULT 'Hours'::character varying,
    "AbsentValueType" character varying DEFAULT 'Days'::character varying,
    "SavePayrollChangesToProfilePermanent" boolean DEFAULT false,
    "SavePayrollChangesToProfileJobOrder" boolean DEFAULT false,
    "LaundryAccountCode" character varying DEFAULT ''::character varying,
    "SubsistenceAccountCode" character varying DEFAULT ''::character varying,
    "HazardPayAccountCode" character varying DEFAULT ''::character varying,
    "PlantillaRecordsReportFormat" character varying,
    "AreaCode" character varying,
    "AgencyAddress" character varying DEFAULT ''::character varying
);


ALTER TABLE public."SystemParameters" OWNER TO postgres;

--
-- TOC entry 439 (class 1259 OID 17777)
-- Name: TardinessPolicies; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "TardinessPolicies" (
    "Id" bigint NOT NULL,
    "Day" character varying,
    "GracePeriodMinutes" bigint,
    "LateMinutes" bigint,
    "HalfDayMinutes" bigint,
    "AbsentMinutes" bigint
);


ALTER TABLE public."TardinessPolicies" OWNER TO postgres;

--
-- TOC entry 440 (class 1259 OID 17783)
-- Name: TardinessPolicies_Id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "TardinessPolicies_Id_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."TardinessPolicies_Id_seq" OWNER TO postgres;

--
-- TOC entry 4501 (class 0 OID 0)
-- Dependencies: 440
-- Name: TardinessPolicies_Id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "TardinessPolicies_Id_seq" OWNED BY "TardinessPolicies"."Id";


--
-- TOC entry 441 (class 1259 OID 17785)
-- Name: TimeLogPolicies; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "TimeLogPolicies" (
    "Id" bigint NOT NULL,
    "OfficeHoursRecurrence" character varying,
    "DailyOpeningTime" character varying,
    "DailyClosingTime" character varying,
    "MondayOpeningTime" character varying,
    "MondayClosingTime" character varying,
    "TuesdayOpeningTime" character varying,
    "TuesdayClosingTime" character varying,
    "WednesdayOpeningTime" character varying,
    "WednesdayClosingTime" character varying,
    "ThursdayOpeningTime" character varying,
    "ThursdayClosingTime" character varying,
    "FridayOpeningTime" character varying,
    "FridayClosingTime" character varying,
    "SaturdayOpeningTime" character varying,
    "SaturdayClosingTime" character varying,
    "SundayOpeningTime" character varying,
    "SundayClosingTime" character varying,
    "OpenOnMondays" boolean,
    "OpenOnTuesdays" boolean,
    "OpenOnWednesdays" boolean,
    "OpenOnThursdays" boolean,
    "OpenOnFridays" boolean,
    "OpenOnSaturdays" boolean,
    "OpenOnSundays" boolean,
    "NightDifferentialStartTime" character varying,
    "NightDifferentialEndTime" character varying,
    "MultiplierOrAmount" character varying,
    "NightDifferentialValue" numeric(18,2),
    "RegularHours" integer,
    "AutoDetectLogTime" boolean DEFAULT false,
    "AmInStartTime" character varying DEFAULT ''::character varying,
    "AmInEndTime" character varying DEFAULT ''::character varying,
    "AmOutStartTime" character varying DEFAULT ''::character varying,
    "AmOutEndTime" character varying DEFAULT ''::character varying,
    "PmInStartTime" character varying DEFAULT ''::character varying,
    "PmInEndTime" character varying DEFAULT ''::character varying,
    "PmOutStartTime" character varying DEFAULT ''::character varying,
    "PmOutEndTime" character varying DEFAULT ''::character varying,
    "AllowEarlyOut" boolean DEFAULT false,
    "BiometricExcelImportFormat" character varying DEFAULT 'Format 1'::character varying,
    "AutoGenerateSchedules" boolean DEFAULT true,
    "ScheduleGenerationStatus" character varying DEFAULT ''::character varying,
    "MonitoringNotificationDuration" integer DEFAULT 2,
    "LogIntervalMinutes" integer DEFAULT 30,
    "LogViewingType" character varying DEFAULT 'Daily Logs'::character varying,
    "DtrReportFormat" character varying DEFAULT 'Format 1'::character varying,
    "DaysInMonth" integer,
    "TravelOrderFormFormat" character varying,
    "MonthlyMaximumLocatorSlips" integer
);


ALTER TABLE public."TimeLogPolicies" OWNER TO postgres;

--
-- TOC entry 442 (class 1259 OID 17808)
-- Name: TimeLogPolicies_Id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "TimeLogPolicies_Id_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."TimeLogPolicies_Id_seq" OWNER TO postgres;

--
-- TOC entry 4504 (class 0 OID 0)
-- Dependencies: 442
-- Name: TimeLogPolicies_Id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "TimeLogPolicies_Id_seq" OWNED BY "TimeLogPolicies"."Id";


--
-- TOC entry 443 (class 1259 OID 17810)
-- Name: Trainings; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Trainings" (
    "TrainingId" bigint NOT NULL,
    "TitleOfConference" character varying,
    "NatureOfParticipation" character varying,
    "SponsoringAgency" character varying,
    "Status" character varying,
    "BasicInformationId" integer,
    "InclusiveDates" character varying,
    "FromDate" date,
    "ToDate" date,
    "NumberOfHours" character varying,
    "SpecificPositionId" integer DEFAULT 0,
    "SpecificDepartmentId" integer DEFAULT 0,
    "SpecificEmploymentStatusId" integer DEFAULT 0,
    "Type" character varying DEFAULT ''::character varying
);


ALTER TABLE public."Trainings" OWNER TO postgres;

--
-- TOC entry 444 (class 1259 OID 17820)
-- Name: Trainings_TrainingId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Trainings_TrainingId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Trainings_TrainingId_seq" OWNER TO postgres;

--
-- TOC entry 4507 (class 0 OID 0)
-- Dependencies: 444
-- Name: Trainings_TrainingId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Trainings_TrainingId_seq" OWNED BY "Trainings"."TrainingId";


--
-- TOC entry 445 (class 1259 OID 17822)
-- Name: TravelOrderEmployees; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "TravelOrderEmployees" (
    "TravelOrderEmployeeId" bigint NOT NULL,
    "TravelOrderId" integer,
    "EmployeeId" integer
);


ALTER TABLE public."TravelOrderEmployees" OWNER TO postgres;

--
-- TOC entry 446 (class 1259 OID 17825)
-- Name: TravelOrderEmployees_TravelOrderEmployeeId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "TravelOrderEmployees_TravelOrderEmployeeId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."TravelOrderEmployees_TravelOrderEmployeeId_seq" OWNER TO postgres;

--
-- TOC entry 4510 (class 0 OID 0)
-- Dependencies: 446
-- Name: TravelOrderEmployees_TravelOrderEmployeeId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "TravelOrderEmployees_TravelOrderEmployeeId_seq" OWNED BY "TravelOrderEmployees"."TravelOrderEmployeeId";


--
-- TOC entry 447 (class 1259 OID 17827)
-- Name: TravelOrders; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "TravelOrders" (
    "TravelOrderId" bigint NOT NULL,
    "EmployeeId" integer,
    "DepartureDate" date,
    "ReturnDate" date,
    "Remarks" character varying,
    "Allowance" numeric(18,2),
    "Purpose" character varying,
    "Status" character varying,
    "Destination" character varying,
    "DateFiled" date,
    "OrderNumber" integer DEFAULT 0,
    "DepartmentId" integer DEFAULT 0,
    "DepartureTime" character varying DEFAULT ''::character varying,
    "ReturnTime" character varying DEFAULT ''::character varying
);


ALTER TABLE public."TravelOrders" OWNER TO postgres;

--
-- TOC entry 448 (class 1259 OID 17837)
-- Name: TravelOrderId_TravelOrderId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "TravelOrderId_TravelOrderId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."TravelOrderId_TravelOrderId_seq" OWNER TO postgres;

--
-- TOC entry 4513 (class 0 OID 0)
-- Dependencies: 448
-- Name: TravelOrderId_TravelOrderId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "TravelOrderId_TravelOrderId_seq" OWNED BY "TravelOrders"."TravelOrderId";


--
-- TOC entry 449 (class 1259 OID 17839)
-- Name: UserGroups; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "UserGroups" (
    "Id" bigint NOT NULL,
    "UserGroupName" character varying,
    "IsDefault" boolean,
    "IsActive" boolean
);


ALTER TABLE public."UserGroups" OWNER TO postgres;

--
-- TOC entry 450 (class 1259 OID 17845)
-- Name: UserGroups_Id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "UserGroups_Id_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."UserGroups_Id_seq" OWNER TO postgres;

--
-- TOC entry 4516 (class 0 OID 0)
-- Dependencies: 450
-- Name: UserGroups_Id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "UserGroups_Id_seq" OWNED BY "UserGroups"."Id";


--
-- TOC entry 451 (class 1259 OID 17847)
-- Name: UserPermissions; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "UserPermissions" (
    "SystemPageCode" character varying NOT NULL,
    "Access" character varying,
    "Id" bigint NOT NULL
);


ALTER TABLE public."UserPermissions" OWNER TO postgres;

--
-- TOC entry 452 (class 1259 OID 17853)
-- Name: Users; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Users" (
    "Username" character varying NOT NULL,
    "DisplayName" character varying,
    "Password" character varying,
    "Id" bigint NOT NULL,
    "BasicInformationId" bigint,
    "EmployeeGroupId" integer,
    "CustomEmployeeGroupId" integer
);


ALTER TABLE public."Users" OWNER TO postgres;

--
-- TOC entry 453 (class 1259 OID 17859)
-- Name: Users_Id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Users_Id_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Users_Id_seq" OWNER TO postgres;

--
-- TOC entry 4520 (class 0 OID 0)
-- Dependencies: 453
-- Name: Users_Id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Users_Id_seq" OWNED BY "Users"."Id";


--
-- TOC entry 454 (class 1259 OID 17861)
-- Name: ViolationPolicies; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "ViolationPolicies" (
    "ViolationPolicyId" bigint NOT NULL,
    "ViolationName" character varying,
    "NumberOfOffense" integer,
    "Punishment" character varying
);


ALTER TABLE public."ViolationPolicies" OWNER TO postgres;

--
-- TOC entry 4522 (class 0 OID 0)
-- Dependencies: 454
-- Name: COLUMN "ViolationPolicies"."ViolationPolicyId"; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN "ViolationPolicies"."ViolationPolicyId" IS '
';


--
-- TOC entry 455 (class 1259 OID 17867)
-- Name: ViolationPolicies_ViolationPolicyId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "ViolationPolicies_ViolationPolicyId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."ViolationPolicies_ViolationPolicyId_seq" OWNER TO postgres;

--
-- TOC entry 4524 (class 0 OID 0)
-- Dependencies: 455
-- Name: ViolationPolicies_ViolationPolicyId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "ViolationPolicies_ViolationPolicyId_seq" OWNED BY "ViolationPolicies"."ViolationPolicyId";


--
-- TOC entry 456 (class 1259 OID 17869)
-- Name: Violations; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Violations" (
    "ViolationId" bigint NOT NULL,
    "ViolationDescription" character varying
);


ALTER TABLE public."Violations" OWNER TO postgres;

--
-- TOC entry 457 (class 1259 OID 17875)
-- Name: ViolationsAndSanctions; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "ViolationsAndSanctions" (
    "ViolationAndSanctionId" bigint NOT NULL,
    "ViolationId" integer,
    "SanctionId" integer,
    "NumberOfOffense" integer
);


ALTER TABLE public."ViolationsAndSanctions" OWNER TO postgres;

--
-- TOC entry 458 (class 1259 OID 17878)
-- Name: ViolationsAndSanctions_ViolationAndSanctionId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "ViolationsAndSanctions_ViolationAndSanctionId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."ViolationsAndSanctions_ViolationAndSanctionId_seq" OWNER TO postgres;

--
-- TOC entry 4528 (class 0 OID 0)
-- Dependencies: 458
-- Name: ViolationsAndSanctions_ViolationAndSanctionId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "ViolationsAndSanctions_ViolationAndSanctionId_seq" OWNED BY "ViolationsAndSanctions"."ViolationAndSanctionId";


--
-- TOC entry 459 (class 1259 OID 17880)
-- Name: Violations_ViolationId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Violations_ViolationId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Violations_ViolationId_seq" OWNER TO postgres;

--
-- TOC entry 4530 (class 0 OID 0)
-- Dependencies: 459
-- Name: Violations_ViolationId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Violations_ViolationId_seq" OWNED BY "Violations"."ViolationId";


--
-- TOC entry 460 (class 1259 OID 17882)
-- Name: VisitorLogs; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "VisitorLogs" (
    "VisitorLogId" bigint NOT NULL,
    "CardId" character varying,
    "VisitorId" bigint,
    "TimeInDate" date,
    "TimeIn" character varying,
    "TimeOutDate" date,
    "TimeOut" character varying,
    "Purpose" character varying,
    "Remarks" character varying
);


ALTER TABLE public."VisitorLogs" OWNER TO postgres;

--
-- TOC entry 461 (class 1259 OID 17888)
-- Name: VisitorLogs_VisitorLogId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "VisitorLogs_VisitorLogId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."VisitorLogs_VisitorLogId_seq" OWNER TO postgres;

--
-- TOC entry 4533 (class 0 OID 0)
-- Dependencies: 461
-- Name: VisitorLogs_VisitorLogId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "VisitorLogs_VisitorLogId_seq" OWNED BY "VisitorLogs"."VisitorLogId";


--
-- TOC entry 462 (class 1259 OID 17890)
-- Name: Visitors; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "Visitors" (
    "VisitorId" bigint NOT NULL,
    "FirstName" character varying,
    "MiddleName" character varying,
    "LastName" character varying,
    "FullName" character varying,
    "Type" character varying,
    "CompanyName" character varying,
    "ContactNumber" character varying,
    "ImageName" character varying
);


ALTER TABLE public."Visitors" OWNER TO postgres;

--
-- TOC entry 463 (class 1259 OID 17896)
-- Name: Visitors_VisitorId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "Visitors_VisitorId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."Visitors_VisitorId_seq" OWNER TO postgres;

--
-- TOC entry 4536 (class 0 OID 0)
-- Dependencies: 463
-- Name: Visitors_VisitorId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "Visitors_VisitorId_seq" OWNED BY "Visitors"."VisitorId";


--
-- TOC entry 464 (class 1259 OID 17898)
-- Name: WithholdingTaxesStatus; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "WithholdingTaxesStatus" (
    "WithholdingTaxStatusId" bigint NOT NULL,
    "StatusCode" character varying,
    "Description" character varying,
    "PersonalExemption" numeric(11,2) DEFAULT 0 NOT NULL,
    "NumberofChildren" integer DEFAULT 0 NOT NULL
);


ALTER TABLE public."WithholdingTaxesStatus" OWNER TO postgres;

--
-- TOC entry 465 (class 1259 OID 17906)
-- Name: WithholdingTaxStatus_WithholdingTaxStatusId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "WithholdingTaxStatus_WithholdingTaxStatusId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."WithholdingTaxStatus_WithholdingTaxStatusId_seq" OWNER TO postgres;

--
-- TOC entry 4539 (class 0 OID 0)
-- Dependencies: 465
-- Name: WithholdingTaxStatus_WithholdingTaxStatusId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "WithholdingTaxStatus_WithholdingTaxStatusId_seq" OWNED BY "WithholdingTaxesStatus"."WithholdingTaxStatusId";


--
-- TOC entry 466 (class 1259 OID 17908)
-- Name: WithholdingTaxes; Type: TABLE; Schema: public; Owner: postgres; Tablespace: 
--

CREATE TABLE "WithholdingTaxes" (
    "WithholdingTaxId" bigint NOT NULL,
    "BracketNumber" integer DEFAULT 0 NOT NULL,
    "TaxRate" numeric(18,2) DEFAULT 0 NOT NULL,
    "InExcessFactor" numeric(18,2) DEFAULT 0 NOT NULL,
    "WithholdingTaxStatusId" integer DEFAULT 0 NOT NULL,
    "Duration" character varying,
    "MaxSalaryBase" numeric(18,2),
    "MinSalaryBase" numeric(18,2),
    "DateImplemented" date,
    "ValidUntil" character varying
);


ALTER TABLE public."WithholdingTaxes" OWNER TO postgres;

--
-- TOC entry 467 (class 1259 OID 17918)
-- Name: WithholdingTax_WithholdingTaxId_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

CREATE SEQUENCE "WithholdingTax_WithholdingTaxId_seq"
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public."WithholdingTax_WithholdingTaxId_seq" OWNER TO postgres;

--
-- TOC entry 4542 (class 0 OID 0)
-- Dependencies: 467
-- Name: WithholdingTax_WithholdingTaxId_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE "WithholdingTax_WithholdingTaxId_seq" OWNED BY "WithholdingTaxes"."WithholdingTaxId";


--
-- TOC entry 2947 (class 2604 OID 17920)
-- Name: Id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Adjustments" ALTER COLUMN "Id" SET DEFAULT nextval('"Adjustments_Id_seq"'::regclass);


--
-- TOC entry 2948 (class 2604 OID 17921)
-- Name: AdId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "AdvertisementImages" ALTER COLUMN "AdId" SET DEFAULT nextval('"AdvertisementImages_AdId_seq"'::regclass);


--
-- TOC entry 2949 (class 2604 OID 17922)
-- Name: AllowanceRateId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "AllowanceRates" ALTER COLUMN "AllowanceRateId" SET DEFAULT nextval('"AllowanceRates_AllowanceRateId_seq"'::regclass);


--
-- TOC entry 2956 (class 2604 OID 17923)
-- Name: AllowanceTypeId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "AllowanceTypes" ALTER COLUMN "AllowanceTypeId" SET DEFAULT nextval('"AllowanceTypes_AllowanceTypeId_seq"'::regclass);


--
-- TOC entry 2957 (class 2604 OID 17924)
-- Name: AllowanceId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Allowances" ALTER COLUMN "AllowanceId" SET DEFAULT nextval('"Allowances_AllowanceID_seq"'::regclass);


--
-- TOC entry 2958 (class 2604 OID 17925)
-- Name: AnnualLeaveCreditId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "AnnualLeaveCredits" ALTER COLUMN "AnnualLeaveCreditId" SET DEFAULT nextval('"AnnulLeaveCredits_AnnualLeaveCreditId_seq"'::regclass);


--
-- TOC entry 2959 (class 2604 OID 17926)
-- Name: ApplicationPolicyId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "ApplicationPolicies" ALTER COLUMN "ApplicationPolicyId" SET DEFAULT nextval('"ApplicationPolicies_ApplicationPolicyId_seq"'::regclass);


--
-- TOC entry 2964 (class 2604 OID 17927)
-- Name: AppliedPremiumsPolicyId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "AppliedPremiumsPolicies" ALTER COLUMN "AppliedPremiumsPolicyId" SET DEFAULT nextval('"AppliedPremiumsPolicies_AppliedPremiumsPolicyId_seq"'::regclass);


--
-- TOC entry 2969 (class 2604 OID 17928)
-- Name: ApprovedLogId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "ApprovedLogs" ALTER COLUMN "ApprovedLogId" SET DEFAULT nextval('"ApprovedLogs_ApprovedLogId_seq"'::regclass);


--
-- TOC entry 2970 (class 2604 OID 17929)
-- Name: AuditTrailId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "AuditTrails" ALTER COLUMN "AuditTrailId" SET DEFAULT nextval('"AuditTrails_AuditTrailId_seq"'::regclass);


--
-- TOC entry 2987 (class 2604 OID 17930)
-- Name: BasicInformationId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "BasicInformation" ALTER COLUMN "BasicInformationId" SET DEFAULT nextval('"BasicInformation_BasicInformationId_seq"'::regclass);


--
-- TOC entry 2997 (class 2604 OID 17931)
-- Name: BonusTypeId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "BonusTypes" ALTER COLUMN "BonusTypeId" SET DEFAULT nextval('"BonusTypes_BonusTypeId_seq"'::regclass);


--
-- TOC entry 2998 (class 2604 OID 17932)
-- Name: BreakId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Breaks" ALTER COLUMN "BreakId" SET DEFAULT nextval('"Breaks_BreakId_seq"'::regclass);


--
-- TOC entry 3003 (class 2604 OID 17933)
-- Name: CharacterReferenceId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "CharacterReferences" ALTER COLUMN "CharacterReferenceId" SET DEFAULT nextval('"CharacterReferences_CharacterReferenceId_seq"'::regclass);


--
-- TOC entry 3004 (class 2604 OID 17934)
-- Name: ChildrenId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Children" ALTER COLUMN "ChildrenId" SET DEFAULT nextval('"Children_ChildrenId_seq"'::regclass);


--
-- TOC entry 3005 (class 2604 OID 17935)
-- Name: CommunityServiceId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "CommunityServices" ALTER COLUMN "CommunityServiceId" SET DEFAULT nextval('"CommunityServices_CommunityServiceId_seq"'::regclass);


--
-- TOC entry 3006 (class 2604 OID 17936)
-- Name: CompanyId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Companies" ALTER COLUMN "CompanyId" SET DEFAULT nextval('"Companies_CompanyId_seq"'::regclass);


--
-- TOC entry 3007 (class 2604 OID 17937)
-- Name: ContributionMembershipId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "ContributionMemberships" ALTER COLUMN "ContributionMembershipId" SET DEFAULT nextval('"ContributionMemberships_ContributionMembershipId_seq"'::regclass);


--
-- TOC entry 3008 (class 2604 OID 17938)
-- Name: ContributionTypeId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "ContributionTypes" ALTER COLUMN "ContributionTypeId" SET DEFAULT nextval('"ContributionTypes_ContributionTypeId_seq"'::regclass);


--
-- TOC entry 3009 (class 2604 OID 17939)
-- Name: CourseId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Courses" ALTER COLUMN "CourseId" SET DEFAULT nextval('"Courses_CourseId_seq"'::regclass);


--
-- TOC entry 3010 (class 2604 OID 17940)
-- Name: CredentialId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Credentials" ALTER COLUMN "CredentialId" SET DEFAULT nextval('"Credentials_CredentialId_seq"'::regclass);


--
-- TOC entry 3011 (class 2604 OID 17941)
-- Name: CreditsComputationDateId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "CreditsComputationDates" ALTER COLUMN "CreditsComputationDateId" SET DEFAULT nextval('"CreditsComputationDates_CreditsComputationDateId_seq"'::regclass);


--
-- TOC entry 3012 (class 2604 OID 17942)
-- Name: DailyLeaveCreditId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "DailyLeaveCredits" ALTER COLUMN "DailyLeaveCreditId" SET DEFAULT nextval('"DailyLeaveCredits_DailyLeaveCreditId_seq"'::regclass);


--
-- TOC entry 3013 (class 2604 OID 17943)
-- Name: DayConversionValueId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "DayConversionValues" ALTER COLUMN "DayConversionValueId" SET DEFAULT nextval('"DayConversionValues_DayConversionValueId_seq"'::regclass);


--
-- TOC entry 3014 (class 2604 OID 17944)
-- Name: DeductionTypeId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "DeductionTypes" ALTER COLUMN "DeductionTypeId" SET DEFAULT nextval('"DeductionTypes_DeductionTypeId_seq"'::regclass);


--
-- TOC entry 3024 (class 2604 OID 17945)
-- Name: DepartmentId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Departments" ALTER COLUMN "DepartmentId" SET DEFAULT nextval('"Departments_DepartmentId_seq"'::regclass);


--
-- TOC entry 3025 (class 2604 OID 17946)
-- Name: DistributionEntryId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "DistributionReleases" ALTER COLUMN "DistributionEntryId" SET DEFAULT nextval('"DistributionReleases_DistributionEntryId_seq"'::regclass);


--
-- TOC entry 3026 (class 2604 OID 17947)
-- Name: DistributionId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Distributions" ALTER COLUMN "DistributionId" SET DEFAULT nextval('"Distributions_DistributionId_seq"'::regclass);


--
-- TOC entry 3027 (class 2604 OID 17948)
-- Name: DivisionId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Divisions" ALTER COLUMN "DivisionId" SET DEFAULT nextval('"Divisions_DivisionId_seq"'::regclass);


--
-- TOC entry 3028 (class 2604 OID 17949)
-- Name: EducationalBackgroundId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "EducationalBackgrounds" ALTER COLUMN "EducationalBackgroundId" SET DEFAULT nextval('"EducationalBackground_EducationalID_seq"'::regclass);


--
-- TOC entry 3038 (class 2604 OID 17950)
-- Name: EligibilityId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Eligibilities" ALTER COLUMN "EligibilityId" SET DEFAULT nextval('"Eligibilities_EligibilityId_seq"'::regclass);


--
-- TOC entry 3039 (class 2604 OID 17951)
-- Name: EligibilityDocumentTypeId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "EligibilityDocumentTypes" ALTER COLUMN "EligibilityDocumentTypeId" SET DEFAULT nextval('"EligibilityDocumentTypes_EligibilityDocumentTypeId_seq"'::regclass);


--
-- TOC entry 3041 (class 2604 OID 17952)
-- Name: EligibilityProcessStatusId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "EligibilityProcessStatuses" ALTER COLUMN "EligibilityProcessStatusId" SET DEFAULT nextval('"EligibilityProcessStatuses_EligibilityProcessStatusId_seq"'::regclass);


--
-- TOC entry 3042 (class 2604 OID 17953)
-- Name: EmployeeAllowanceId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "EmployeeAllowances" ALTER COLUMN "EmployeeAllowanceId" SET DEFAULT nextval('"EmployeeAllowances_EmployeeAllowanceId_seq"'::regclass);


--
-- TOC entry 3045 (class 2604 OID 17954)
-- Name: EmployeeAwardId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "EmployeeAwards" ALTER COLUMN "EmployeeAwardId" SET DEFAULT nextval('"EmployeeAwards_EmployeeAwardId_seq"'::regclass);


--
-- TOC entry 3048 (class 2604 OID 17955)
-- Name: EmployeeBonusId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "EmployeeBonuses" ALTER COLUMN "EmployeeBonusId" SET DEFAULT nextval('"EmployeeWithholdingTaxes_EmployeeWithholdingTaxId_seq"'::regclass);


--
-- TOC entry 3049 (class 2604 OID 17956)
-- Name: EmployeeDeductionId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "EmployeeDeductions" ALTER COLUMN "EmployeeDeductionId" SET DEFAULT nextval('"EmployeeDeductions_EmployeeDeductionId_seq"'::regclass);


--
-- TOC entry 3050 (class 2604 OID 17957)
-- Name: EarningId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "EmployeeEarnings" ALTER COLUMN "EarningId" SET DEFAULT nextval('"EmployeeEarnings_EarningId_seq"'::regclass);


--
-- TOC entry 3051 (class 2604 OID 17958)
-- Name: EmployeeLogId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "EmployeeLogs" ALTER COLUMN "EmployeeLogId" SET DEFAULT nextval('"EmployeeLogs_EmployeeLogId_seq"'::regclass);


--
-- TOC entry 3053 (class 2604 OID 17959)
-- Name: EmployeePremiumContributionId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "EmployeePremiumContributions" ALTER COLUMN "EmployeePremiumContributionId" SET DEFAULT nextval('"EmployeePremiumContributions_EmployeePremiumContributionId_seq"'::regclass);


--
-- TOC entry 3056 (class 2604 OID 17960)
-- Name: EmployeeRelativeId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "EmployeeRelatives" ALTER COLUMN "EmployeeRelativeId" SET DEFAULT nextval('"EmployeeRelatives_EmployeeRelativeId_seq"'::regclass);


--
-- TOC entry 3057 (class 2604 OID 17961)
-- Name: EmployeeScheduleId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "EmployeeSchedules" ALTER COLUMN "EmployeeScheduleId" SET DEFAULT nextval('"EmployeeSchedules_EmployeeScheduleId_seq"'::regclass);


--
-- TOC entry 3058 (class 2604 OID 17962)
-- Name: EmployeeTrainingId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "EmployeeTrainings" ALTER COLUMN "EmployeeTrainingId" SET DEFAULT nextval('"EmployeeTrainings_EmployeeTrainingId_seq"'::regclass);


--
-- TOC entry 3059 (class 2604 OID 17963)
-- Name: EmployeeViolationId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "EmployeeViolations" ALTER COLUMN "EmployeeViolationId" SET DEFAULT nextval('"EmployeeViolations_EmployeeViolationId_seq"'::regclass);


--
-- TOC entry 3060 (class 2604 OID 17964)
-- Name: EmployeeWeeklyScheduleId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "EmployeeWeeklySchedules" ALTER COLUMN "EmployeeWeeklyScheduleId" SET DEFAULT nextval('"EmployeeWeeklySchedules_EmployeeWeeklyScheduleId_seq"'::regclass);


--
-- TOC entry 3062 (class 2604 OID 17965)
-- Name: EmployeeWeeklySchedulesMemberId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "EmployeeWeeklySchedulesMembers" ALTER COLUMN "EmployeeWeeklySchedulesMemberId" SET DEFAULT nextval('"EmployeeWeeklySchedulesMember_EmployeeWeeklySchedulesMember_seq"'::regclass);


--
-- TOC entry 3063 (class 2604 OID 17966)
-- Name: EmployeeWithholdingTaxId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "EmployeeWithholdingTaxes" ALTER COLUMN "EmployeeWithholdingTaxId" SET DEFAULT nextval('"EmployeeWithholdingTaxes_EmployeeWithholdingTaxId_seq1"'::regclass);


--
-- TOC entry 3070 (class 2604 OID 17967)
-- Name: EmployeeId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Employees" ALTER COLUMN "EmployeeId" SET DEFAULT nextval('"Employees_EmployeeId_seq"'::regclass);


--
-- TOC entry 3071 (class 2604 OID 17968)
-- Name: EmploymentStatusId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "EmploymentStatus" ALTER COLUMN "EmploymentStatusId" SET DEFAULT nextval('"EmploymentStatus_EmploymentStatusId_seq"'::regclass);


--
-- TOC entry 3072 (class 2604 OID 17969)
-- Name: EmploymentStatusPolicyId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "EmploymentStatusPolicies" ALTER COLUMN "EmploymentStatusPolicyId" SET DEFAULT nextval('"EmploymentStatusPolicies_EmploymentStatusPolicyId_seq"'::regclass);


--
-- TOC entry 3081 (class 2604 OID 17970)
-- Name: EvaluationAnswerId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "EvaluationAnswers" ALTER COLUMN "EvaluationAnswerId" SET DEFAULT nextval('"EvaluationAnswers_EvaluationAnswerId_seq"'::regclass);


--
-- TOC entry 3082 (class 2604 OID 17971)
-- Name: EvaluationDepartmentId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "EvaluationDepartments" ALTER COLUMN "EvaluationDepartmentId" SET DEFAULT nextval('"EvaluationDepartments_EvaluationDepartmentId_seq"'::regclass);


--
-- TOC entry 3087 (class 2604 OID 17972)
-- Name: EvaluationEmployeeId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "EvaluationEmployees" ALTER COLUMN "EvaluationEmployeeId" SET DEFAULT nextval('"EvaluationEmployees_EvaluationEmployeeId_seq"'::regclass);


--
-- TOC entry 3088 (class 2604 OID 17973)
-- Name: EvaluationIpcrItemId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "EvaluationIpcrItems" ALTER COLUMN "EvaluationIpcrItemId" SET DEFAULT nextval('"EvaluationIpcrItems_EvaluationIpcrItemId_seq"'::regclass);


--
-- TOC entry 3097 (class 2604 OID 17974)
-- Name: EvaluationOverallAnswerId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "EvaluationOverallAnswers" ALTER COLUMN "EvaluationOverallAnswerId" SET DEFAULT nextval('"EvaluationOverallAnswers_EvaluationOverallAnswerId_seq"'::regclass);


--
-- TOC entry 3098 (class 2604 OID 17975)
-- Name: QuestionTypeId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "EvaluationQuestionTypes" ALTER COLUMN "QuestionTypeId" SET DEFAULT nextval('"EvaluationQuestionTypes_QuestionTypeId_seq"'::regclass);


--
-- TOC entry 3112 (class 2604 OID 17976)
-- Name: EvaluationQuestionId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "EvaluationQuestions" ALTER COLUMN "EvaluationQuestionId" SET DEFAULT nextval('"EvaluationQuestions_EvaluationQuestionId_seq"'::regclass);


--
-- TOC entry 3115 (class 2604 OID 17977)
-- Name: RatingId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "EvaluationRatings" ALTER COLUMN "RatingId" SET DEFAULT nextval('"EvaluationRatings_RatingId_seq"'::regclass);


--
-- TOC entry 3134 (class 2604 OID 17978)
-- Name: EvaluationId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Evaluations" ALTER COLUMN "EvaluationId" SET DEFAULT nextval('"Evaluations_EvaluationId_seq"'::regclass);


--
-- TOC entry 3135 (class 2604 OID 17979)
-- Name: EventId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Events" ALTER COLUMN "EventId" SET DEFAULT nextval('"Events_EventId_seq"'::regclass);


--
-- TOC entry 3136 (class 2604 OID 17980)
-- Name: ExpenseId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Expenses" ALTER COLUMN "ExpenseId" SET DEFAULT nextval('"Expenses_ExpenseId_seq"'::regclass);


--
-- TOC entry 3137 (class 2604 OID 17981)
-- Name: ExperienceId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Experiences" ALTER COLUMN "ExperienceId" SET DEFAULT nextval('"Experiences_ExperienceId_seq"'::regclass);


--
-- TOC entry 3141 (class 2604 OID 17982)
-- Name: FaceScannerDeviceId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "FaceScannerDevices" ALTER COLUMN "FaceScannerDeviceId" SET DEFAULT nextval('"FaceScannerDevices_FaceScannerDeviceId_seq"'::regclass);


--
-- TOC entry 3144 (class 2604 OID 17983)
-- Name: FaceScannerLogId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "FaceScannerLogs" ALTER COLUMN "FaceScannerLogId" SET DEFAULT nextval('"FaceScannerLogs_FaceScannerLogId_seq"'::regclass);


--
-- TOC entry 3147 (class 2604 OID 17984)
-- Name: FlapBarrierId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "FlapBarriers" ALTER COLUMN "FlapBarrierId" SET DEFAULT nextval('"FlapBarriers_FlapBarrierId_seq"'::regclass);


--
-- TOC entry 3148 (class 2604 OID 17985)
-- Name: GSISContributionId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "GSISContributions" ALTER COLUMN "GSISContributionId" SET DEFAULT nextval('"GSISContributions_GSISContributionId_seq"'::regclass);


--
-- TOC entry 3149 (class 2604 OID 17986)
-- Name: GeneralPolicyId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "GeneralPolicies" ALTER COLUMN "GeneralPolicyId" SET DEFAULT nextval('"GeneralPolicies_GeneralPolicyId_seq"'::regclass);


--
-- TOC entry 3154 (class 2604 OID 17987)
-- Name: HDMFBracketId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "HDMFContributions" ALTER COLUMN "HDMFBracketId" SET DEFAULT nextval('"HDMF_HDMFBracketId_seq"'::regclass);


--
-- TOC entry 3155 (class 2604 OID 17988)
-- Name: HolidayMultiplierId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "HolidayMultipliers" ALTER COLUMN "HolidayMultiplierId" SET DEFAULT nextval('"HolidayMultipliers_HolidayMultiplierId_seq"'::regclass);


--
-- TOC entry 3156 (class 2604 OID 17989)
-- Name: HolidayPolicyId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "HolidayPolicies" ALTER COLUMN "HolidayPolicyId" SET DEFAULT nextval('"HolidayPolicies_HolidayPolicyId_seq"'::regclass);


--
-- TOC entry 3157 (class 2604 OID 17990)
-- Name: HolidayId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Holidays" ALTER COLUMN "HolidayId" SET DEFAULT nextval('"Holidays_HolidayId_seq"'::regclass);


--
-- TOC entry 3168 (class 2604 OID 17991)
-- Name: JobVacancyId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "JobVacancies" ALTER COLUMN "JobVacancyId" SET DEFAULT nextval('"JobVacancies_JobVacancyId_seq"'::regclass);


--
-- TOC entry 3169 (class 2604 OID 17992)
-- Name: LeaveCreditId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "LeaveCredits" ALTER COLUMN "LeaveCreditId" SET DEFAULT nextval('"LeaveCredits_LeaveCreditID_seq"'::regclass);


--
-- TOC entry 3176 (class 2604 OID 17993)
-- Name: LeavePolicyId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "LeavePolicies" ALTER COLUMN "LeavePolicyId" SET DEFAULT nextval('"LeavePolicies_LeavePolicyId_seq"'::regclass);


--
-- TOC entry 3191 (class 2604 OID 17994)
-- Name: LeaveRecordId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "LeaveRecords" ALTER COLUMN "LeaveRecordId" SET DEFAULT nextval('"LeaveRecord_LeaveRecordId_seq"'::regclass);


--
-- TOC entry 3196 (class 2604 OID 17995)
-- Name: LeaveId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Leaves" ALTER COLUMN "LeaveId" SET DEFAULT nextval('"Leaves_LeaveId_seq"'::regclass);


--
-- TOC entry 3197 (class 2604 OID 17996)
-- Name: LoanApplicationId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "LoanApplications" ALTER COLUMN "LoanApplicationId" SET DEFAULT nextval('"LoanApplications_LoanApplicationId_seq"'::regclass);


--
-- TOC entry 3199 (class 2604 OID 17997)
-- Name: LoanBreakdownId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "LoanBreakdowns" ALTER COLUMN "LoanBreakdownId" SET DEFAULT nextval('"LoanBreakdowns_LoanBreakdownId_seq"'::regclass);


--
-- TOC entry 3201 (class 2604 OID 17998)
-- Name: LoanTypeId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "LoanTypes" ALTER COLUMN "LoanTypeId" SET DEFAULT nextval('"LoanTypes_LoanTypeId_seq"'::regclass);


--
-- TOC entry 3203 (class 2604 OID 17999)
-- Name: LocatorSlipId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "LocatorSlips" ALTER COLUMN "LocatorSlipId" SET DEFAULT nextval('"LocatorSlips_LocatorSlipId_seq"'::regclass);


--
-- TOC entry 3213 (class 2604 OID 18000)
-- Name: LoyaltyAwardPolicyId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "LoyaltyAwardPolicies" ALTER COLUMN "LoyaltyAwardPolicyId" SET DEFAULT nextval('"LoyaltyAwardsPolicies_LoyaltyAwardPolicyId_seq"'::regclass);


--
-- TOC entry 3214 (class 2604 OID 18001)
-- Name: MessageId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Messages" ALTER COLUMN "MessageId" SET DEFAULT nextval('"Messages_MessageId_seq"'::regclass);


--
-- TOC entry 3215 (class 2604 OID 18002)
-- Name: MonetizedLeaveCreditId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "MonitizedLeaveCredits" ALTER COLUMN "MonetizedLeaveCreditId" SET DEFAULT nextval('"MonitizedLeaveCredits_MonetizedLeaveCreditId_seq"'::regclass);


--
-- TOC entry 3226 (class 2604 OID 18003)
-- Name: MultiplierId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Multipliers" ALTER COLUMN "MultiplierId" SET DEFAULT nextval('"Multiplier_MultiplierId_seq"'::regclass);


--
-- TOC entry 3227 (class 2604 OID 18004)
-- Name: NonPlantillaItemEntryId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "NonPlantillaItemEntries" ALTER COLUMN "NonPlantillaItemEntryId" SET DEFAULT nextval('"NonPlantillaItemEntries_NonPlantillaItemEntryId_seq"'::regclass);


--
-- TOC entry 3228 (class 2604 OID 18005)
-- Name: NonPlantillaItemId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "NonPlantillaItems" ALTER COLUMN "NonPlantillaItemId" SET DEFAULT nextval('"NonPlantillaItems_NonPlantillaItemId_seq"'::regclass);


--
-- TOC entry 3229 (class 2604 OID 18006)
-- Name: NotificationId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Notifications" ALTER COLUMN "NotificationId" SET DEFAULT nextval('"Notifications_NotificationId_seq"'::regclass);


--
-- TOC entry 3230 (class 2604 OID 18007)
-- Name: OTMultiplierId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "OTMultipliers" ALTER COLUMN "OTMultiplierId" SET DEFAULT nextval('"OTMultipliers_OTMultipliersId_seq"'::regclass);


--
-- TOC entry 3231 (class 2604 OID 18008)
-- Name: OrganizationId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Organizations" ALTER COLUMN "OrganizationId" SET DEFAULT nextval('"Organizations_OrganizationId_seq"'::regclass);


--
-- TOC entry 3232 (class 2604 OID 18009)
-- Name: OtherChargesId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "OtherCharges" ALTER COLUMN "OtherChargesId" SET DEFAULT nextval('"OtherCharges_OtherChargesId_seq"'::regclass);


--
-- TOC entry 3233 (class 2604 OID 18010)
-- Name: OtherDeductionId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "OtherDeductions" ALTER COLUMN "OtherDeductionId" SET DEFAULT nextval('"OtherDeductions_OtherDeductionId_seq"'::regclass);


--
-- TOC entry 3235 (class 2604 OID 18011)
-- Name: OvertimeId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Overtimes" ALTER COLUMN "OvertimeId" SET DEFAULT nextval('"Overtimes_OvertimeId_seq"'::regclass);


--
-- TOC entry 3236 (class 2604 OID 18012)
-- Name: PayrollAllowanceId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "PayrollAllowances" ALTER COLUMN "PayrollAllowanceId" SET DEFAULT nextval('"PayrollAllowances_PayrollAllowanceId_seq"'::regclass);


--
-- TOC entry 3238 (class 2604 OID 18013)
-- Name: PayrollClusterId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "PayrollClusters" ALTER COLUMN "PayrollClusterId" SET DEFAULT nextval('"PayrollClusters_PayrollClusterId_seq"'::regclass);


--
-- TOC entry 3241 (class 2604 OID 18014)
-- Name: PayrollDateId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "PayrollDates" ALTER COLUMN "PayrollDateId" SET DEFAULT nextval('"PayrollDates_PayrollDateId_seq"'::regclass);


--
-- TOC entry 3244 (class 2604 OID 18015)
-- Name: PayrollOtherDeductionsId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "PayrollOtherDeductions" ALTER COLUMN "PayrollOtherDeductionsId" SET DEFAULT nextval('"PayrollOtherDeductions_PayrollOtherDeductionsId_seq"'::regclass);


--
-- TOC entry 3245 (class 2604 OID 18016)
-- Name: PayrollPremiumId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "PayrollPremiums" ALTER COLUMN "PayrollPremiumId" SET DEFAULT nextval('"PayrollPremiums_PayrollPremiumId_seq"'::regclass);


--
-- TOC entry 3256 (class 2604 OID 18017)
-- Name: PayrollProfileId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "PayrollProfiles" ALTER COLUMN "PayrollProfileId" SET DEFAULT nextval('"PayrollProfiles_PayrollProfileId_seq"'::regclass);


--
-- TOC entry 3308 (class 2604 OID 18018)
-- Name: PayrollId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Payrolls" ALTER COLUMN "PayrollId" SET DEFAULT nextval('"Payrolls_PayrollId_seq"'::regclass);


--
-- TOC entry 3309 (class 2604 OID 18019)
-- Name: PermissionToLeaveId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "PermissionToLeaves" ALTER COLUMN "PermissionToLeaveId" SET DEFAULT nextval('"PermissionToLeaves_PermissionToLeaveId_seq"'::regclass);


--
-- TOC entry 3310 (class 2604 OID 18020)
-- Name: PersonnelActionMemoNotificationId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "PersonnelActionMemoNotifications" ALTER COLUMN "PersonnelActionMemoNotificationId" SET DEFAULT nextval('"PersonnelActionMemoNotificati_PersonnelActionMemoNotificati_seq"'::regclass);


--
-- TOC entry 3315 (class 2604 OID 18021)
-- Name: PersonnelActionMemoId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "PersonnelActionMemos" ALTER COLUMN "PersonnelActionMemoId" SET DEFAULT nextval('"PersonnelActionMemos_PersonnelActionMemoId_seq"'::regclass);


--
-- TOC entry 3322 (class 2604 OID 18022)
-- Name: PhilHealthContributionId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "PhilHealthContributions" ALTER COLUMN "PhilHealthContributionId" SET DEFAULT nextval('"PhilHealthContribution_PhilHealthBracketId_seq"'::regclass);


--
-- TOC entry 3323 (class 2604 OID 18023)
-- Name: PlantillaRecordEntryId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "PlantillaRecordEntries" ALTER COLUMN "PlantillaRecordEntryId" SET DEFAULT nextval('"PlantillaRecordEntries_PlantillaRecordEntryId_seq"'::regclass);


--
-- TOC entry 3330 (class 2604 OID 18024)
-- Name: PlantillaRecordId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "PlantillaRecords" ALTER COLUMN "PlantillaRecordId" SET DEFAULT nextval('"PlantillaRecords_PlantillaRecordId_seq"'::regclass);


--
-- TOC entry 3331 (class 2604 OID 18025)
-- Name: PositionEducationalBackgroundId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "PositionEducationalBackgrounds" ALTER COLUMN "PositionEducationalBackgroundId" SET DEFAULT nextval('"PositionEducationalBackground_PositionEducationalBackground_seq"'::regclass);


--
-- TOC entry 3332 (class 2604 OID 18026)
-- Name: PositionEligibilityId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "PositionEligibilities" ALTER COLUMN "PositionEligibilityId" SET DEFAULT nextval('"PositionEligibilities_PositionEligibilityId_seq"'::regclass);


--
-- TOC entry 3333 (class 2604 OID 18027)
-- Name: PositionExperienceId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "PositionExperiences" ALTER COLUMN "PositionExperienceId" SET DEFAULT nextval('"PositionExperiences_PositionExperienceId_seq"'::regclass);


--
-- TOC entry 3334 (class 2604 OID 18028)
-- Name: PositionTrainingId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "PositionTrainings" ALTER COLUMN "PositionTrainingId" SET DEFAULT nextval('"PositionTrainings_PositionTrainingId_seq"'::regclass);


--
-- TOC entry 3335 (class 2604 OID 18029)
-- Name: PositionId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Positions" ALTER COLUMN "PositionId" SET DEFAULT nextval('"Positions_PositionId_seq"'::regclass);


--
-- TOC entry 3346 (class 2604 OID 18030)
-- Name: QuestionnaireId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Questionnaires" ALTER COLUMN "QuestionnaireId" SET DEFAULT nextval('"Questionnaires_QuestionnaireId_seq"'::regclass);


--
-- TOC entry 3355 (class 2604 OID 18031)
-- Name: RFIDParameterId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "RFIDParameters" ALTER COLUMN "RFIDParameterId" SET DEFAULT nextval('"RFIDParameters_RFIDParameterId_seq"'::regclass);


--
-- TOC entry 3356 (class 2604 OID 18032)
-- Name: RankId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Rankings" ALTER COLUMN "RankId" SET DEFAULT nextval('"Rankings_RankId_seq"'::regclass);


--
-- TOC entry 3357 (class 2604 OID 18033)
-- Name: RateTypeId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "RateTypes" ALTER COLUMN "RateTypeId" SET DEFAULT nextval('"RateType_RateTypeId_seq"'::regclass);


--
-- TOC entry 3358 (class 2604 OID 18034)
-- Name: RecognitionId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Recognitions" ALTER COLUMN "RecognitionId" SET DEFAULT nextval('"Recognitions_RecognitionId_seq"'::regclass);


--
-- TOC entry 3359 (class 2604 OID 18035)
-- Name: ReportPrintSettingId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "ReportPrintSettings" ALTER COLUMN "ReportPrintSettingId" SET DEFAULT nextval('"ReportPrintSettings_ReportPrintSettingId_seq"'::regclass);


--
-- TOC entry 3361 (class 2604 OID 18036)
-- Name: ReportSignatoryId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "ReportSignatories" ALTER COLUMN "ReportSignatoryId" SET DEFAULT nextval('"ReportSignatories_ReportSignatoryId_seq"'::regclass);


--
-- TOC entry 3369 (class 2604 OID 18037)
-- Name: SSSBracketId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "SSSContributions" ALTER COLUMN "SSSBracketId" SET DEFAULT nextval('"SSSContribution_SSSBracketId_seq"'::regclass);


--
-- TOC entry 3370 (class 2604 OID 18038)
-- Name: SalaryGradeId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "SalaryGrades" ALTER COLUMN "SalaryGradeId" SET DEFAULT nextval('"SalaryGrades_Id_seq"'::regclass);


--
-- TOC entry 3372 (class 2604 OID 18039)
-- Name: SanctionId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Sanctions" ALTER COLUMN "SanctionId" SET DEFAULT nextval('"Sanctions_SanctionId_seq"'::regclass);


--
-- TOC entry 3373 (class 2604 OID 18040)
-- Name: ScheduleTemplateId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "ScheduleTemplates" ALTER COLUMN "ScheduleTemplateId" SET DEFAULT nextval('"ScheduleTemplates_ScheduleTemplateId_seq"'::regclass);


--
-- TOC entry 3374 (class 2604 OID 18041)
-- Name: SectionId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Sections" ALTER COLUMN "SectionId" SET DEFAULT nextval('"Sections_SectionId_seq"'::regclass);


--
-- TOC entry 3375 (class 2604 OID 18042)
-- Name: SelfEmployedId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "SelfEmployedSSSEmployees" ALTER COLUMN "SelfEmployedId" SET DEFAULT nextval('"SelfEmployedSSSEmployees_SelfEmployedId_seq"'::regclass);


--
-- TOC entry 3376 (class 2604 OID 18043)
-- Name: SeparatedRecordId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "SeparatedRecords" ALTER COLUMN "SeparatedRecordId" SET DEFAULT nextval('"SeparatedRecords_SeparatedRecordId_seq"'::regclass);


--
-- TOC entry 3388 (class 2604 OID 18044)
-- Name: ServiceRecordId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "ServiceRecords" ALTER COLUMN "ServiceRecordId" SET DEFAULT nextval('"ServiceRecord_ServiceId_seq"'::regclass);


--
-- TOC entry 3389 (class 2604 OID 18045)
-- Name: SkillId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Skills" ALTER COLUMN "SkillId" SET DEFAULT nextval('"Skills_SkillId_seq"'::regclass);


--
-- TOC entry 3390 (class 2604 OID 18046)
-- Name: SpouseId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Spouses" ALTER COLUMN "SpouseId" SET DEFAULT nextval('"Spouse_SpouseId_seq"'::regclass);


--
-- TOC entry 3391 (class 2604 OID 18047)
-- Name: StationEmployeeId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "StationEmployees" ALTER COLUMN "StationEmployeeId" SET DEFAULT nextval('"StationEmployees_StationEmployeeId_seq"'::regclass);


--
-- TOC entry 3396 (class 2604 OID 18048)
-- Name: StationId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Stations" ALTER COLUMN "StationId" SET DEFAULT nextval('"Stations_StationId_seq"'::regclass);


--
-- TOC entry 3397 (class 2604 OID 18049)
-- Name: StepIncrementPolicyId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "StepIncrementPolicies" ALTER COLUMN "StepIncrementPolicyId" SET DEFAULT nextval('"StepIncrementPolicies_StepIncrementPolicyId_seq"'::regclass);


--
-- TOC entry 3398 (class 2604 OID 18050)
-- Name: ServiceObligationId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "StudyLeaveServiceObligations" ALTER COLUMN "ServiceObligationId" SET DEFAULT nextval('"StudyLeaveServiceObligations_ServiceObligationId_seq"'::regclass);


--
-- TOC entry 3435 (class 2604 OID 18051)
-- Name: Id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "TardinessPolicies" ALTER COLUMN "Id" SET DEFAULT nextval('"TardinessPolicies_Id_seq"'::regclass);


--
-- TOC entry 3453 (class 2604 OID 18052)
-- Name: Id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "TimeLogPolicies" ALTER COLUMN "Id" SET DEFAULT nextval('"TimeLogPolicies_Id_seq"'::regclass);


--
-- TOC entry 3458 (class 2604 OID 18053)
-- Name: TrainingId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Trainings" ALTER COLUMN "TrainingId" SET DEFAULT nextval('"Trainings_TrainingId_seq"'::regclass);


--
-- TOC entry 3459 (class 2604 OID 18054)
-- Name: TravelOrderEmployeeId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "TravelOrderEmployees" ALTER COLUMN "TravelOrderEmployeeId" SET DEFAULT nextval('"TravelOrderEmployees_TravelOrderEmployeeId_seq"'::regclass);


--
-- TOC entry 3464 (class 2604 OID 18055)
-- Name: TravelOrderId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "TravelOrders" ALTER COLUMN "TravelOrderId" SET DEFAULT nextval('"TravelOrderId_TravelOrderId_seq"'::regclass);


--
-- TOC entry 3465 (class 2604 OID 18056)
-- Name: Id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "UserGroups" ALTER COLUMN "Id" SET DEFAULT nextval('"UserGroups_Id_seq"'::regclass);


--
-- TOC entry 3466 (class 2604 OID 18057)
-- Name: Id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Users" ALTER COLUMN "Id" SET DEFAULT nextval('"Users_Id_seq"'::regclass);


--
-- TOC entry 3467 (class 2604 OID 18058)
-- Name: ViolationPolicyId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "ViolationPolicies" ALTER COLUMN "ViolationPolicyId" SET DEFAULT nextval('"ViolationPolicies_ViolationPolicyId_seq"'::regclass);


--
-- TOC entry 3468 (class 2604 OID 18059)
-- Name: ViolationId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Violations" ALTER COLUMN "ViolationId" SET DEFAULT nextval('"Violations_ViolationId_seq"'::regclass);


--
-- TOC entry 3469 (class 2604 OID 18060)
-- Name: ViolationAndSanctionId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "ViolationsAndSanctions" ALTER COLUMN "ViolationAndSanctionId" SET DEFAULT nextval('"ViolationsAndSanctions_ViolationAndSanctionId_seq"'::regclass);


--
-- TOC entry 3470 (class 2604 OID 18061)
-- Name: VisitorLogId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "VisitorLogs" ALTER COLUMN "VisitorLogId" SET DEFAULT nextval('"VisitorLogs_VisitorLogId_seq"'::regclass);


--
-- TOC entry 3471 (class 2604 OID 18062)
-- Name: VisitorId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "Visitors" ALTER COLUMN "VisitorId" SET DEFAULT nextval('"Visitors_VisitorId_seq"'::regclass);


--
-- TOC entry 3479 (class 2604 OID 18063)
-- Name: WithholdingTaxId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "WithholdingTaxes" ALTER COLUMN "WithholdingTaxId" SET DEFAULT nextval('"WithholdingTax_WithholdingTaxId_seq"'::regclass);


--
-- TOC entry 3472 (class 2604 OID 18064)
-- Name: WithholdingTaxStatusId; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "WithholdingTaxesStatus" ALTER COLUMN "WithholdingTaxStatusId" SET DEFAULT nextval('"WithholdingTaxStatus_WithholdingTaxStatusId_seq"'::regclass);


--
-- TOC entry 3790 (class 0 OID 16395)
-- Dependencies: 168
-- Data for Name: Adjustments; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Adjustments" ("Id", "AdjustmentValue", "AdjustmentFor", "PayrollId", "AdjustedBy", "EmployeeId", "Balance") FROM stdin;
\.


--
-- TOC entry 4544 (class 0 OID 0)
-- Dependencies: 169
-- Name: Adjustments_Id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Adjustments_Id_seq"', 1, true);


--
-- TOC entry 3792 (class 0 OID 16403)
-- Dependencies: 170
-- Data for Name: AdvertisementImages; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "AdvertisementImages" ("AdId", "ImageName", "ImagePath") FROM stdin;
\.


--
-- TOC entry 4545 (class 0 OID 0)
-- Dependencies: 171
-- Name: AdvertisementImages_AdId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"AdvertisementImages_AdId_seq"', 35, true);


--
-- TOC entry 3794 (class 0 OID 16411)
-- Dependencies: 172
-- Data for Name: AllowanceRates; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "AllowanceRates" ("AllowanceRateId", "Frequency", "DaysOrHours", "From", "To", "Multiplier", "Amount", "AllowanceTypeId") FROM stdin;
85	For Every	1	0	0	1.00	50.00	5
86	For Every	1	0	0	1.00	90.91	2
\.


--
-- TOC entry 4546 (class 0 OID 0)
-- Dependencies: 173
-- Name: AllowanceRates_AllowanceRateId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"AllowanceRates_AllowanceRateId_seq"', 85, true);


--
-- TOC entry 3796 (class 0 OID 16419)
-- Dependencies: 174
-- Data for Name: AllowanceTypes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "AllowanceTypes" ("AllowanceTypeId", "AllowanceName", "MonthlyAllowanceAmount", "PositionId", "DeductOrEarn", "PresentOrAbsent", "MaxTimes", "IsTaxable", "Category", "Types", "IsIncludeHoliday", "IsIncludeLeave", "IsIncludeTravelOrder", "EmploymentType") FROM stdin;
6	LAUNDRY	150.00	0	ADDITION	PRESENCE	1	f	Generation	DAYS	f	f	f	
3	Representation Allowance	8500.00	0	ADDITION	PRESENCE	1	f	Generation	DAYS	f	f	f	
4	Transportation Allowance	8500.00	0	ADDITION	PRESENCE	1	f	Generation	DAYS	f	f	f	
10	HAZARD PAY	0.00	0	ADDITION	PRESENCE	1	f	Generation	DAYS	f	f	f	
2	P.E.R.A	2000.00	0	DEDUCTION	LEAVE WITHOUT PAY	1	f	Generation	DAYS	f	f	f	
5	SUBSISTENCE	1500.00	0	DEDUCTION	ABSENCE	1	f	Generation	DAYS	f	t	f	
\.


--
-- TOC entry 4547 (class 0 OID 0)
-- Dependencies: 175
-- Name: AllowanceTypes_AllowanceTypeId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"AllowanceTypes_AllowanceTypeId_seq"', 11, true);


--
-- TOC entry 3798 (class 0 OID 16433)
-- Dependencies: 176
-- Data for Name: Allowances; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Allowances" ("AllowanceId", "AllowanceType", "AllowanceDescription", "AllowanceAmount", "Type") FROM stdin;
\.


--
-- TOC entry 4548 (class 0 OID 0)
-- Dependencies: 177
-- Name: Allowances_AllowanceID_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Allowances_AllowanceID_seq"', 1, true);


--
-- TOC entry 3800 (class 0 OID 16441)
-- Dependencies: 178
-- Data for Name: AnnualLeaveCredits; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "AnnualLeaveCredits" ("AnnualLeaveCreditId", "LeaveId", "MaximumAnnualCredits", "EffectivityDate", "Remarks", "MaximumNumberOfDaysPerMonth", "MaximumNumberOfHoursPerDay") FROM stdin;
1	2	15.00000	2016-08-01		30	8
2	1	15.00000	2016-08-24		30	8
\.


--
-- TOC entry 4549 (class 0 OID 0)
-- Dependencies: 179
-- Name: AnnulLeaveCredits_AnnualLeaveCreditId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"AnnulLeaveCredits_AnnualLeaveCreditId_seq"', 12, true);


--
-- TOC entry 3802 (class 0 OID 16449)
-- Dependencies: 180
-- Data for Name: ApplicationPolicies; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "ApplicationPolicies" ("ApplicationPolicyId", "ApplicationPolicyName", "isEnabled", "Value") FROM stdin;
1	PerPosition	f	10
2	PerApplication	f	10
\.


--
-- TOC entry 4550 (class 0 OID 0)
-- Dependencies: 181
-- Name: ApplicationPolicies_ApplicationPolicyId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"ApplicationPolicies_ApplicationPolicyId_seq"', 2, true);


--
-- TOC entry 3804 (class 0 OID 16457)
-- Dependencies: 182
-- Data for Name: AppliedPremiumsPolicies; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "AppliedPremiumsPolicies" ("AppliedPremiumsPolicyId", "AppliedPremiumName", "IsEnabled", "FixedPremiumAmount", "PremiumComputationBasis", "EmploymentStatusName", "AppliedCutoff") FROM stdin;
5	Withholding Tax	t	0.00	Monthly Taxable	Job order	NONE
1	GSIS	f	0.00	Salary Rate	Job order	NONE
2	SSS	t	0.00	Salary Rate	Job order	1-15
3	PhilHealth	f	0.00	Salary Rate	Job order	NONE
6	GSIS	t	0.00	Salary Rate	Permanent	NONE
7	SSS	f	0.00	Salary Rate	Permanent	NONE
8	PhilHealth	t	0.00	Salary Rate	Permanent	NONE
9	HDMF	t	100.00	Salary Rate	Permanent	NONE
10	Withholding Tax	t	0.00	Monthly Taxable	Permanent	NONE
4	HDMF	t	0.00	Salary Rate	Job order	1-15
\.


--
-- TOC entry 4551 (class 0 OID 0)
-- Dependencies: 183
-- Name: AppliedPremiumsPolicies_AppliedPremiumsPolicyId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"AppliedPremiumsPolicies_AppliedPremiumsPolicyId_seq"', 10, true);


--
-- TOC entry 3806 (class 0 OID 16469)
-- Dependencies: 184
-- Data for Name: ApprovedLogs; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "ApprovedLogs" ("LogDate", "TotalHrs", "OvertimeHrs", "NightPremiumHours", "EmployeeId", "EarnedVacationLeaveCredits", "EarnedSickLeaveCredits", "CompensatoryLeaveCredits", "CompensatoryLeaveCreditOffset", "VacationLeaveCreditOffset", "ApprovedLogId", "CreditsComputationDateId", "NightPremiumOvertimeHours", "IsRegularHoliday", "IsSpecialHoliday", "HasAttendedHoliday") FROM stdin;
\.


--
-- TOC entry 4552 (class 0 OID 0)
-- Dependencies: 185
-- Name: ApprovedLogs_ApprovedLogId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"ApprovedLogs_ApprovedLogId_seq"', 5194, true);


--
-- TOC entry 3808 (class 0 OID 16478)
-- Dependencies: 186
-- Data for Name: AuditTrails; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "AuditTrails" ("AuditTrailId", "AuditTrailDate", "AuditTrailTime", "SystemPage", "Action", "OldValues", "NewValues", "Username", "AffectedData", "BasicInformationId") FROM stdin;
759544	2024-01-23	14:21:18.6830569	ChangePasswordWindow	Update	BasicInformationId: 1\r\nCustomEmployeeGroupId: 0\r\nDisplayName: Administrator\r\nEmployeeGroupId: 4\r\nId: 1\r\nPassword: ***\r\nUsername: admin\r\n	BasicInformationId: 1\r\nCustomEmployeeGroupId: 0\r\nDisplayName: Administrator\r\nEmployeeGroupId: 4\r\nId: 1\r\nPassword: ***\r\nUsername: admin\r\n	admin	Users	1
759545	2024-06-04	23:56:36.8642108	<Undetected>	Update	AbsentValueType: Equivalent\r\nAdministrativeDivision: Provincial\r\nAgencyAddress: Batangas City\r\nAllowanceAccountCode: \r\nAreaCode: \r\nBarangay:  \r\nBasicPayRoundOffRule: Truncate. Don't round off\r\nCityOrMunicipality: BALANGA\r\nCompanyCellphone: \r\nCompanyEmail: \r\nCompanyLogo: \r\nCompanyName: DepEd Batangas City\r\nCompanyTelephone: \r\nCompanyWebsite: \r\nCountryName: Philippines\r\nDailyWagePayrollFormat: Format 3\r\nDefaultDepartmentToLoad: ALL\r\nDepartmentTitle: Department\r\nDivisionTitle: Division\r\nECCMaxValue: 100\r\nECCPercentage: 0.01\r\nEligibilityExpiryWarningDays: 4\r\nEmployeeListArrangement: EMPLOYEE NO.\r\nEmployerPhilhealthNo: \r\nEmployerSSSNo: \r\nEmployerTIN: \r\nGeneralPayrollFormat: Format 2\r\nGsisAccountCode: \r\nGsisEccAccountCode: \r\nHazardPayAccountCode: \r\nHdmfAccountCode: \r\nHDMFYear: January 01, 2014\r\nIsCity: True\r\nIsIncludeHoliday: False\r\nIsUsingWithholdingTax: False\r\nJobOrderFilterType: By Cluster\r\nLaundryAccountCode: \r\nLeaveApplicationReportFormat: Format 5\r\nMainImagePath: N:\\\\\\\\\r\nMinimumWage: 300.00\r\nNetPayGreaterHalfAllocation: 16-30\r\nObligationRequestReportFormat: Format 1\r\nOvertimeValueType: Equivalent\r\nPayrollSummaryFormat: Format 2\r\nPayslipFormat: Format 3\r\nPhilHealthAccountCode: \r\nPhilHealthYear: January 01, 2020\r\nPlantillaRecordsReportFormat: Format 2\r\nProvince: BATAAN\r\nSalaryAccountCode: \r\nSavePayrollChangesToProfileJobOrder: True\r\nSavePayrollChangesToProfilePermanent: True\r\nSectionTitle: Section\r\nServiceRecordReportFormat: Format 2\r\nSSSYear: January 01, 2014\r\nSubsistenceAccountCode: \r\nSystemParameterId: 1\r\nTardinessValueType: Equivalent\r\nTaxableBonus: 90000.00\r\nWebcamActivated: True\r\nWithholdingTaxYear: January 01, 2018\r\nZipCode: 2100\r\n	AbsentValueType: Equivalent\r\nAdministrativeDivision: Provincial\r\nAgencyAddress: Batangas City\r\nAllowanceAccountCode: \r\nAreaCode: \r\nBarangay:  \r\nBasicPayRoundOffRule: Truncate. Don't round off\r\nCityOrMunicipality: Batangas\r\nCompanyCellphone: \r\nCompanyEmail: \r\nCompanyLogo: \r\nCompanyName: DepEd Batangas City\r\nCompanyTelephone: \r\nCompanyWebsite: \r\nCountryName: Philippines\r\nDailyWagePayrollFormat: Format 3\r\nDefaultDepartmentToLoad: ALL\r\nDepartmentTitle: Department\r\nDivisionTitle: Division\r\nECCMaxValue: 100\r\nECCPercentage: 0.01\r\nEligibilityExpiryWarningDays: 4\r\nEmployeeListArrangement: EMPLOYEE NO.\r\nEmployerPhilhealthNo: \r\nEmployerSSSNo: \r\nEmployerTIN: \r\nGeneralPayrollFormat: Format 2\r\nGsisAccountCode: \r\nGsisEccAccountCode: \r\nHazardPayAccountCode: \r\nHdmfAccountCode: \r\nHDMFYear: January 01, 2014\r\nIsCity: True\r\nIsIncludeHoliday: False\r\nIsUsingWithholdingTax: False\r\nJobOrderFilterType: By Cluster\r\nLaundryAccountCode: \r\nLeaveApplicationReportFormat: Format 5\r\nMainImagePath: N:\\\\\\\\\r\nMinimumWage: 300.00\r\nNetPayGreaterHalfAllocation: 16-30\r\nObligationRequestReportFormat: Format 1\r\nOvertimeValueType: Equivalent\r\nPayrollSummaryFormat: Format 2\r\nPayslipFormat: Format 3\r\nPhilHealthAccountCode: \r\nPhilHealthYear: January 01, 2020\r\nPlantillaRecordsReportFormat: Format 2\r\nProvince: BATANGAS\r\nSalaryAccountCode: \r\nSavePayrollChangesToProfileJobOrder: True\r\nSavePayrollChangesToProfilePermanent: True\r\nSectionTitle: Section\r\nServiceRecordReportFormat: Format 2\r\nSSSYear: January 01, 2014\r\nSubsistenceAccountCode: \r\nSystemParameterId: 1\r\nTardinessValueType: Equivalent\r\nTaxableBonus: 90000.00\r\nWebcamActivated: True\r\nWithholdingTaxYear: January 01, 2018\r\nZipCode: 2100\r\n	admin	SystemParameters	1
759546	2024-06-05	15:34:22.6314603	<Undetected>	Update	AbsentValueType: Equivalent\r\nAdministrativeDivision: Provincial\r\nAgencyAddress: Batangas City\r\nAllowanceAccountCode: \r\nAreaCode: \r\nBarangay:  \r\nBasicPayRoundOffRule: Truncate. Don't round off\r\nCityOrMunicipality: Batangas\r\nCompanyCellphone: \r\nCompanyEmail: \r\nCompanyLogo: \r\nCompanyName: DepEd Batangas City\r\nCompanyTelephone: \r\nCompanyWebsite: \r\nCountryName: Philippines\r\nDailyWagePayrollFormat: Format 3\r\nDefaultDepartmentToLoad: ALL\r\nDepartmentTitle: Department\r\nDivisionTitle: Division\r\nECCMaxValue: 100\r\nECCPercentage: 0.01\r\nEligibilityExpiryWarningDays: 4\r\nEmployeeListArrangement: EMPLOYEE NO.\r\nEmployerPhilhealthNo: \r\nEmployerSSSNo: \r\nEmployerTIN: \r\nGeneralPayrollFormat: Format 2\r\nGsisAccountCode: \r\nGsisEccAccountCode: \r\nHazardPayAccountCode: \r\nHdmfAccountCode: \r\nHDMFYear: January 01, 2014\r\nIsCity: True\r\nIsIncludeHoliday: False\r\nIsUsingWithholdingTax: False\r\nJobOrderFilterType: By Cluster\r\nLaundryAccountCode: \r\nLeaveApplicationReportFormat: Format 5\r\nMainImagePath: N:\\\\\\\\\r\nMinimumWage: 300.00\r\nNetPayGreaterHalfAllocation: 16-30\r\nObligationRequestReportFormat: Format 1\r\nOvertimeValueType: Equivalent\r\nPayrollSummaryFormat: Format 2\r\nPayslipFormat: Format 3\r\nPhilHealthAccountCode: \r\nPhilHealthYear: January 01, 2020\r\nPlantillaRecordsReportFormat: Format 2\r\nProvince: BATANGAS\r\nSalaryAccountCode: \r\nSavePayrollChangesToProfileJobOrder: True\r\nSavePayrollChangesToProfilePermanent: True\r\nSectionTitle: Section\r\nServiceRecordReportFormat: Format 2\r\nSSSYear: January 01, 2014\r\nSubsistenceAccountCode: \r\nSystemParameterId: 1\r\nTardinessValueType: Equivalent\r\nTaxableBonus: 90000.00\r\nWebcamActivated: True\r\nWithholdingTaxYear: January 01, 2018\r\nZipCode: 2100\r\n	AbsentValueType: Equivalent\r\nAdministrativeDivision: Provincial\r\nAgencyAddress: Batangas City\r\nAllowanceAccountCode: \r\nAreaCode: 4200\r\nBarangay:  6\r\nBasicPayRoundOffRule: Truncate. Don't round off\r\nCityOrMunicipality: Batangas\r\nCompanyCellphone: \r\nCompanyEmail: \r\nCompanyLogo: \r\nCompanyName: DepEd Batangas City\r\nCompanyTelephone: \r\nCompanyWebsite: \r\nCountryName: Philippines\r\nDailyWagePayrollFormat: Format 3\r\nDefaultDepartmentToLoad: ALL\r\nDepartmentTitle: Department\r\nDivisionTitle: Division\r\nECCMaxValue: 100\r\nECCPercentage: 0.01\r\nEligibilityExpiryWarningDays: 4\r\nEmployeeListArrangement: EMPLOYEE NO.\r\nEmployerPhilhealthNo: \r\nEmployerSSSNo: \r\nEmployerTIN: \r\nGeneralPayrollFormat: Format 2\r\nGsisAccountCode: \r\nGsisEccAccountCode: \r\nHazardPayAccountCode: \r\nHdmfAccountCode: \r\nHDMFYear: January 01, 2014\r\nIsCity: True\r\nIsIncludeHoliday: False\r\nIsUsingWithholdingTax: False\r\nJobOrderFilterType: By Cluster\r\nLaundryAccountCode: \r\nLeaveApplicationReportFormat: Format 5\r\nMainImagePath: N:\\\\\\\\\r\nMinimumWage: 300.00\r\nNetPayGreaterHalfAllocation: 16-30\r\nObligationRequestReportFormat: Format 1\r\nOvertimeValueType: Equivalent\r\nPayrollSummaryFormat: Format 2\r\nPayslipFormat: Format 3\r\nPhilHealthAccountCode: \r\nPhilHealthYear: January 01, 2020\r\nPlantillaRecordsReportFormat: Format 2\r\nProvince: BATANGAS\r\nSalaryAccountCode: \r\nSavePayrollChangesToProfileJobOrder: True\r\nSavePayrollChangesToProfilePermanent: True\r\nSectionTitle: Section\r\nServiceRecordReportFormat: Format 2\r\nSSSYear: January 01, 2014\r\nSubsistenceAccountCode: \r\nSystemParameterId: 1\r\nTardinessValueType: Equivalent\r\nTaxableBonus: 90000.00\r\nWebcamActivated: True\r\nWithholdingTaxYear: January 01, 2018\r\nZipCode: 2100\r\n	admin	SystemParameters	1
759547	2024-06-05	15:34:46.3902200	<Undetected>	Update	AbsentValueType: Equivalent\r\nAdministrativeDivision: Provincial\r\nAgencyAddress: Batangas City\r\nAllowanceAccountCode: \r\nAreaCode: 4200\r\nBarangay:  6\r\nBasicPayRoundOffRule: Truncate. Don't round off\r\nCityOrMunicipality: Batangas\r\nCompanyCellphone: \r\nCompanyEmail: \r\nCompanyLogo: \r\nCompanyName: DepEd Batangas City\r\nCompanyTelephone: \r\nCompanyWebsite: \r\nCountryName: Philippines\r\nDailyWagePayrollFormat: Format 3\r\nDefaultDepartmentToLoad: ALL\r\nDepartmentTitle: Department\r\nDivisionTitle: Division\r\nECCMaxValue: 100\r\nECCPercentage: 0.01\r\nEligibilityExpiryWarningDays: 4\r\nEmployeeListArrangement: EMPLOYEE NO.\r\nEmployerPhilhealthNo: \r\nEmployerSSSNo: \r\nEmployerTIN: \r\nGeneralPayrollFormat: Format 2\r\nGsisAccountCode: \r\nGsisEccAccountCode: \r\nHazardPayAccountCode: \r\nHdmfAccountCode: \r\nHDMFYear: January 01, 2014\r\nIsCity: True\r\nIsIncludeHoliday: False\r\nIsUsingWithholdingTax: False\r\nJobOrderFilterType: By Cluster\r\nLaundryAccountCode: \r\nLeaveApplicationReportFormat: Format 5\r\nMainImagePath: N:\\\\\\\\\r\nMinimumWage: 300.00\r\nNetPayGreaterHalfAllocation: 16-30\r\nObligationRequestReportFormat: Format 1\r\nOvertimeValueType: Equivalent\r\nPayrollSummaryFormat: Format 2\r\nPayslipFormat: Format 3\r\nPhilHealthAccountCode: \r\nPhilHealthYear: January 01, 2020\r\nPlantillaRecordsReportFormat: Format 2\r\nProvince: BATANGAS\r\nSalaryAccountCode: \r\nSavePayrollChangesToProfileJobOrder: True\r\nSavePayrollChangesToProfilePermanent: True\r\nSectionTitle: Section\r\nServiceRecordReportFormat: Format 2\r\nSSSYear: January 01, 2014\r\nSubsistenceAccountCode: \r\nSystemParameterId: 1\r\nTardinessValueType: Equivalent\r\nTaxableBonus: 90000.00\r\nWebcamActivated: True\r\nWithholdingTaxYear: January 01, 2018\r\nZipCode: 2100\r\n	AbsentValueType: Equivalent\r\nAdministrativeDivision: Provincial\r\nAgencyAddress: Batangas City\r\nAllowanceAccountCode: \r\nAreaCode: 4200\r\nBarangay:  6\r\nBasicPayRoundOffRule: Truncate. Don't round off\r\nCityOrMunicipality: Batangas\r\nCompanyCellphone: \r\nCompanyEmail: \r\nCompanyLogo: \r\nCompanyName: DepEd Batangas City\r\nCompanyTelephone: \r\nCompanyWebsite: \r\nCountryName: Philippines\r\nDailyWagePayrollFormat: Format 3\r\nDefaultDepartmentToLoad: ALL\r\nDepartmentTitle: Department\r\nDivisionTitle: Division\r\nECCMaxValue: 100\r\nECCPercentage: 0.01\r\nEligibilityExpiryWarningDays: 4\r\nEmployeeListArrangement: EMPLOYEE NO.\r\nEmployerPhilhealthNo: \r\nEmployerSSSNo: \r\nEmployerTIN: \r\nGeneralPayrollFormat: Format 2\r\nGsisAccountCode: \r\nGsisEccAccountCode: \r\nHazardPayAccountCode: \r\nHdmfAccountCode: \r\nHDMFYear: January 01, 2014\r\nIsCity: True\r\nIsIncludeHoliday: False\r\nIsUsingWithholdingTax: False\r\nJobOrderFilterType: By Cluster\r\nLaundryAccountCode: \r\nLeaveApplicationReportFormat: Format 5\r\nMainImagePath: N:\\\\\\\\\r\nMinimumWage: 300.00\r\nNetPayGreaterHalfAllocation: 16-30\r\nObligationRequestReportFormat: Format 1\r\nOvertimeValueType: Equivalent\r\nPayrollSummaryFormat: Format 2\r\nPayslipFormat: Format 3\r\nPhilHealthAccountCode: \r\nPhilHealthYear: January 01, 2020\r\nPlantillaRecordsReportFormat: Format 2\r\nProvince: BATANGAS\r\nSalaryAccountCode: \r\nSavePayrollChangesToProfileJobOrder: True\r\nSavePayrollChangesToProfilePermanent: True\r\nSectionTitle: Section\r\nServiceRecordReportFormat: Format 2\r\nSSSYear: January 01, 2014\r\nSubsistenceAccountCode: \r\nSystemParameterId: 1\r\nTardinessValueType: Equivalent\r\nTaxableBonus: 90000.00\r\nWebcamActivated: True\r\nWithholdingTaxYear: January 01, 2018\r\nZipCode: 4200\r\n	admin	SystemParameters	1
759548	2024-06-07	10:21:15.1751038	<Undetected>	Update	AbsentValueType: Equivalent\r\nAdministrativeDivision: Provincial\r\nAgencyAddress: Batangas City\r\nAllowanceAccountCode: \r\nAreaCode: 4200\r\nBarangay:  6\r\nBasicPayRoundOffRule: Truncate. Don't round off\r\nCityOrMunicipality: Batangas\r\nCompanyCellphone: \r\nCompanyEmail: \r\nCompanyLogo: \r\nCompanyName: DepEd Batangas City\r\nCompanyTelephone: \r\nCompanyWebsite: \r\nCountryName: Philippines\r\nDailyWagePayrollFormat: Format 3\r\nDefaultDepartmentToLoad: ALL\r\nDepartmentTitle: Department\r\nDivisionTitle: Division\r\nECCMaxValue: 100\r\nECCPercentage: 0.01\r\nEligibilityExpiryWarningDays: 4\r\nEmployeeListArrangement: EMPLOYEE NO.\r\nEmployerPhilhealthNo: \r\nEmployerSSSNo: \r\nEmployerTIN: \r\nGeneralPayrollFormat: Format 2\r\nGsisAccountCode: \r\nGsisEccAccountCode: \r\nHazardPayAccountCode: \r\nHdmfAccountCode: \r\nHDMFYear: January 01, 2014\r\nIsCity: True\r\nIsIncludeHoliday: False\r\nIsUsingWithholdingTax: False\r\nJobOrderFilterType: By Cluster\r\nLaundryAccountCode: \r\nLeaveApplicationReportFormat: Format 5\r\nMainImagePath: N:\\\\\\\\\r\nMinimumWage: 300.00\r\nNetPayGreaterHalfAllocation: 16-30\r\nObligationRequestReportFormat: Format 1\r\nOvertimeValueType: Equivalent\r\nPayrollSummaryFormat: Format 2\r\nPayslipFormat: Format 3\r\nPhilHealthAccountCode: \r\nPhilHealthYear: January 01, 2020\r\nPlantillaRecordsReportFormat: Format 2\r\nProvince: BATANGAS\r\nSalaryAccountCode: \r\nSavePayrollChangesToProfileJobOrder: True\r\nSavePayrollChangesToProfilePermanent: True\r\nSectionTitle: Section\r\nServiceRecordReportFormat: Format 2\r\nSSSYear: January 01, 2014\r\nSubsistenceAccountCode: \r\nSystemParameterId: 1\r\nTardinessValueType: Equivalent\r\nTaxableBonus: 90000.00\r\nWebcamActivated: True\r\nWithholdingTaxYear: January 01, 2018\r\nZipCode: 4200\r\n	AbsentValueType: Equivalent\r\nAdministrativeDivision: Provincial\r\nAgencyAddress: Batangas City\r\nAllowanceAccountCode: \r\nAreaCode: 4200\r\nBarangay:  6\r\nBasicPayRoundOffRule: Truncate. Don't round off\r\nCityOrMunicipality: Batangas\r\nCompanyCellphone: \r\nCompanyEmail: \r\nCompanyLogo: \r\nCompanyName: DepEd Batangas City\r\nCompanyTelephone: \r\nCompanyWebsite: \r\nCountryName: Philippines\r\nDailyWagePayrollFormat: Format 3\r\nDefaultDepartmentToLoad: ALL\r\nDepartmentTitle: Division\r\nDivisionTitle: Unit\r\nECCMaxValue: 100\r\nECCPercentage: 0.01\r\nEligibilityExpiryWarningDays: 4\r\nEmployeeListArrangement: EMPLOYEE NO.\r\nEmployerPhilhealthNo: \r\nEmployerSSSNo: \r\nEmployerTIN: \r\nGeneralPayrollFormat: Format 2\r\nGsisAccountCode: \r\nGsisEccAccountCode: \r\nHazardPayAccountCode: \r\nHdmfAccountCode: \r\nHDMFYear: January 01, 2014\r\nIsCity: True\r\nIsIncludeHoliday: False\r\nIsUsingWithholdingTax: False\r\nJobOrderFilterType: By Cluster\r\nLaundryAccountCode: \r\nLeaveApplicationReportFormat: Format 5\r\nMainImagePath: N:\\\\\\\\\r\nMinimumWage: 300.00\r\nNetPayGreaterHalfAllocation: 16-30\r\nObligationRequestReportFormat: Format 1\r\nOvertimeValueType: Equivalent\r\nPayrollSummaryFormat: Format 2\r\nPayslipFormat: Format 3\r\nPhilHealthAccountCode: \r\nPhilHealthYear: January 01, 2020\r\nPlantillaRecordsReportFormat: Format 2\r\nProvince: BATANGAS\r\nSalaryAccountCode: \r\nSavePayrollChangesToProfileJobOrder: True\r\nSavePayrollChangesToProfilePermanent: True\r\nSectionTitle: Section\r\nServiceRecordReportFormat: Format 2\r\nSSSYear: January 01, 2014\r\nSubsistenceAccountCode: \r\nSystemParameterId: 1\r\nTardinessValueType: Equivalent\r\nTaxableBonus: 90000.00\r\nWebcamActivated: True\r\nWithholdingTaxYear: January 01, 2018\r\nZipCode: 4200\r\n	admin	SystemParameters	1
759549	2024-06-07	10:22:33.4589433	<Undetected>	Insert	DepartmentCode: \r\nDepartmentId: \r\nDepartmentName: \r\nDescription: \r\nExemptedToHolidays: \r\nExemptedToWeekends: \r\nFppCode: \r\nFundingType: \r\nOldName: \r\nRank: \r\nShortName: \r\nSignatoryName: \r\nSignatoryPosition: \r\n	DepartmentCode: 100\r\nDepartmentId: 2\r\nDepartmentName: Office of the Schools Division Superintendent\r\nDescription: \r\nExemptedToHolidays: False\r\nExemptedToWeekends: False\r\nFppCode: \r\nFundingType: \r\nOldName: OSDS\r\nRank: 2\r\nShortName: OSDS\r\nSignatoryName: \r\nSignatoryPosition: \r\n	admin	Departments	1
759550	2024-06-07	10:23:10.9114135	<Undetected>	Insert	DepartmentCode: \r\nDepartmentId: \r\nDepartmentName: \r\nDescription: \r\nExemptedToHolidays: \r\nExemptedToWeekends: \r\nFppCode: \r\nFundingType: \r\nOldName: \r\nRank: \r\nShortName: \r\nSignatoryName: \r\nSignatoryPosition: \r\n	DepartmentCode: 101\r\nDepartmentId: 126\r\nDepartmentName: Curriculum Implementation Division\r\nDescription: \r\nExemptedToHolidays: False\r\nExemptedToWeekends: False\r\nFppCode: \r\nFundingType: \r\nOldName: CID\r\nRank: 3\r\nShortName: CID\r\nSignatoryName: \r\nSignatoryPosition: \r\n	admin	Departments	1
759551	2024-06-07	10:23:45.0681719	<Undetected>	Insert	DepartmentCode: \r\nDepartmentId: \r\nDepartmentName: \r\nDescription: \r\nExemptedToHolidays: \r\nExemptedToWeekends: \r\nFppCode: \r\nFundingType: \r\nOldName: \r\nRank: \r\nShortName: \r\nSignatoryName: \r\nSignatoryPosition: \r\n	DepartmentCode: 102\r\nDepartmentId: 127\r\nDepartmentName: Schools Governance and Operations Division\r\nDescription: \r\nExemptedToHolidays: False\r\nExemptedToWeekends: False\r\nFppCode: \r\nFundingType: \r\nOldName: SGOD\r\nRank: 4\r\nShortName: SGOD\r\nSignatoryName: \r\nSignatoryPosition: \r\n	admin	Departments	1
759566	2024-06-07	14:25:34.2036553	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3598\r\nCourse: \r\nCourseId: 1246\r\nCourseOrMajor: \r\nDateFrom: 2015\r\nDateTo: 2019\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: Batangas State University\r\nYearGraduated: 2019\r\n	admin	EducationalBackgrounds	1
759567	2024-06-07	14:25:34.2046548	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3598\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
759552	2024-06-07	10:25:40.5165026	<Undetected>	Update	AbsentValueType: Equivalent\r\nAdministrativeDivision: Provincial\r\nAgencyAddress: Batangas City\r\nAllowanceAccountCode: \r\nAreaCode: 4200\r\nBarangay:  6\r\nBasicPayRoundOffRule: Truncate. Don't round off\r\nCityOrMunicipality: Batangas\r\nCompanyCellphone: \r\nCompanyEmail: \r\nCompanyLogo: \r\nCompanyName: DepEd Batangas City\r\nCompanyTelephone: \r\nCompanyWebsite: \r\nCountryName: Philippines\r\nDailyWagePayrollFormat: Format 3\r\nDefaultDepartmentToLoad: ALL\r\nDepartmentTitle: Division\r\nDivisionTitle: Unit\r\nECCMaxValue: 100\r\nECCPercentage: 0.01\r\nEligibilityExpiryWarningDays: 4\r\nEmployeeListArrangement: EMPLOYEE NO.\r\nEmployerPhilhealthNo: \r\nEmployerSSSNo: \r\nEmployerTIN: \r\nGeneralPayrollFormat: Format 2\r\nGsisAccountCode: \r\nGsisEccAccountCode: \r\nHazardPayAccountCode: \r\nHdmfAccountCode: \r\nHDMFYear: January 01, 2014\r\nIsCity: True\r\nIsIncludeHoliday: False\r\nIsUsingWithholdingTax: False\r\nJobOrderFilterType: By Cluster\r\nLaundryAccountCode: \r\nLeaveApplicationReportFormat: Format 5\r\nMainImagePath: N:\\\\\\\\\r\nMinimumWage: 300.00\r\nNetPayGreaterHalfAllocation: 16-30\r\nObligationRequestReportFormat: Format 1\r\nOvertimeValueType: Equivalent\r\nPayrollSummaryFormat: Format 2\r\nPayslipFormat: Format 3\r\nPhilHealthAccountCode: \r\nPhilHealthYear: January 01, 2020\r\nPlantillaRecordsReportFormat: Format 2\r\nProvince: BATANGAS\r\nSalaryAccountCode: \r\nSavePayrollChangesToProfileJobOrder: True\r\nSavePayrollChangesToProfilePermanent: True\r\nSectionTitle: Section\r\nServiceRecordReportFormat: Format 2\r\nSSSYear: January 01, 2014\r\nSubsistenceAccountCode: \r\nSystemParameterId: 1\r\nTardinessValueType: Equivalent\r\nTaxableBonus: 90000.00\r\nWebcamActivated: True\r\nWithholdingTaxYear: January 01, 2018\r\nZipCode: 4200\r\n	AbsentValueType: Equivalent\r\nAdministrativeDivision: Provincial\r\nAgencyAddress: Batangas City\r\nAllowanceAccountCode: \r\nAreaCode: 4200\r\nBarangay:  6\r\nBasicPayRoundOffRule: Truncate. Don't round off\r\nCityOrMunicipality: Batangas\r\nCompanyCellphone: \r\nCompanyEmail: \r\nCompanyLogo: \r\nCompanyName: DepEd Batangas City\r\nCompanyTelephone: \r\nCompanyWebsite: \r\nCountryName: Philippines\r\nDailyWagePayrollFormat: Format 3\r\nDefaultDepartmentToLoad: ALL\r\nDepartmentTitle: Division\r\nDivisionTitle: Section\r\nECCMaxValue: 100\r\nECCPercentage: 0.01\r\nEligibilityExpiryWarningDays: 4\r\nEmployeeListArrangement: EMPLOYEE NO.\r\nEmployerPhilhealthNo: \r\nEmployerSSSNo: \r\nEmployerTIN: \r\nGeneralPayrollFormat: Format 2\r\nGsisAccountCode: \r\nGsisEccAccountCode: \r\nHazardPayAccountCode: \r\nHdmfAccountCode: \r\nHDMFYear: January 01, 2014\r\nIsCity: True\r\nIsIncludeHoliday: False\r\nIsUsingWithholdingTax: False\r\nJobOrderFilterType: By Cluster\r\nLaundryAccountCode: \r\nLeaveApplicationReportFormat: Format 5\r\nMainImagePath: N:\\\\\\\\\r\nMinimumWage: 300.00\r\nNetPayGreaterHalfAllocation: 16-30\r\nObligationRequestReportFormat: Format 1\r\nOvertimeValueType: Equivalent\r\nPayrollSummaryFormat: Format 2\r\nPayslipFormat: Format 3\r\nPhilHealthAccountCode: \r\nPhilHealthYear: January 01, 2020\r\nPlantillaRecordsReportFormat: Format 2\r\nProvince: BATANGAS\r\nSalaryAccountCode: \r\nSavePayrollChangesToProfileJobOrder: True\r\nSavePayrollChangesToProfilePermanent: True\r\nSectionTitle: Unit\r\nServiceRecordReportFormat: Format 2\r\nSSSYear: January 01, 2014\r\nSubsistenceAccountCode: \r\nSystemParameterId: 1\r\nTardinessValueType: Equivalent\r\nTaxableBonus: 90000.00\r\nWebcamActivated: True\r\nWithholdingTaxYear: January 01, 2018\r\nZipCode: 4200\r\n	admin	SystemParameters	1
759553	2024-06-07	10:26:16.7131683	<Undetected>	Insert	DepartmentId: \r\nDescription: \r\nDivisionId: \r\nDivisionName: \r\nRank: \r\n	DepartmentId: 125\r\nDescription: Admin\r\nDivisionId: 1\r\nDivisionName: Administrative Section\r\nRank: 1\r\n	admin	Divisions	1
759554	2024-06-07	10:26:52.4551253	<Undetected>	Insert	DepartmentId: \r\nDescription: \r\nDivisionId: \r\nRank: \r\nSectionId: \r\nSectionName: \r\n	DepartmentId: 125\r\nDescription: Cash\r\nDivisionId: 164\r\nRank: 1\r\nSectionId: 1\r\nSectionName: Cashier Unit\r\n	admin	Sections	1
759555	2024-06-07	10:27:08.2564974	<Undetected>	Insert	DepartmentId: \r\nDescription: \r\nDivisionId: \r\nRank: \r\nSectionId: \r\nSectionName: \r\n	DepartmentId: 125\r\nDescription: Record\r\nDivisionId: 164\r\nRank: 2\r\nSectionId: 3\r\nSectionName: Records Unit\r\n	admin	Sections	1
759556	2024-06-07	10:27:25.1473157	<Undetected>	Insert	DepartmentId: \r\nDescription: \r\nDivisionId: \r\nRank: \r\nSectionId: \r\nSectionName: \r\n	DepartmentId: 125\r\nDescription: HR\r\nDivisionId: 164\r\nRank: 3\r\nSectionId: 4\r\nSectionName: Personnel Unit\r\n	admin	Sections	1
759557	2024-06-07	10:27:44.0293876	<Undetected>	Insert	DepartmentId: \r\nDescription: \r\nDivisionId: \r\nRank: \r\nSectionId: \r\nSectionName: \r\n	DepartmentId: 125\r\nDescription: Supply\r\nDivisionId: 164\r\nRank: 4\r\nSectionId: 5\r\nSectionName: Supply and Property Unit\r\n	admin	Sections	1
759558	2024-06-07	10:45:24.1177613	<Undetected>	Delete	EmploymentStatusId: 9\r\nEmploymentStatusName: Elected\r\nIsPlantilla: True\r\nIsRegular: True\r\nIsUsingSalaryGrade: True\r\nIsUsingWitholdingTax: True\r\nRemarks: \r\nTaxAmountPercentage: 0.00\r\nWithBenefits: True\r\n	EmploymentStatusId: \r\nEmploymentStatusName: \r\nIsPlantilla: \r\nIsRegular: \r\nIsUsingSalaryGrade: \r\nIsUsingWitholdingTax: \r\nRemarks: \r\nTaxAmountPercentage: \r\nWithBenefits: \r\n	admin	EmploymentStatus	1
759559	2024-06-07	10:45:35.6370039	<Undetected>	Delete	EmploymentStatusId: 24\r\nEmploymentStatusName: Appointed\r\nIsPlantilla: True\r\nIsRegular: True\r\nIsUsingSalaryGrade: True\r\nIsUsingWitholdingTax: True\r\nRemarks: \r\nTaxAmountPercentage: 0.00\r\nWithBenefits: True\r\n	EmploymentStatusId: \r\nEmploymentStatusName: \r\nIsPlantilla: \r\nIsRegular: \r\nIsUsingSalaryGrade: \r\nIsUsingWitholdingTax: \r\nRemarks: \r\nTaxAmountPercentage: \r\nWithBenefits: \r\n	admin	EmploymentStatus	1
759560	2024-06-07	10:46:07.5420348	<Undetected>	Delete	EmploymentStatusId: 23\r\nEmploymentStatusName: Regular\r\nIsPlantilla: True\r\nIsRegular: True\r\nIsUsingSalaryGrade: True\r\nIsUsingWitholdingTax: False\r\nRemarks: All Plantilla based\r\nTaxAmountPercentage: 0.00\r\nWithBenefits: True\r\n	EmploymentStatusId: \r\nEmploymentStatusName: \r\nIsPlantilla: \r\nIsRegular: \r\nIsUsingSalaryGrade: \r\nIsUsingWitholdingTax: \r\nRemarks: \r\nTaxAmountPercentage: \r\nWithBenefits: \r\n	admin	EmploymentStatus	1
759561	2024-06-07	10:46:20.2212092	<Undetected>	Delete	EmploymentStatusId: 7\r\nEmploymentStatusName: Coterminous\r\nIsPlantilla: True\r\nIsRegular: True\r\nIsUsingSalaryGrade: True\r\nIsUsingWitholdingTax: True\r\nRemarks: \r\nTaxAmountPercentage: 0.00\r\nWithBenefits: True\r\n	EmploymentStatusId: \r\nEmploymentStatusName: \r\nIsPlantilla: \r\nIsRegular: \r\nIsUsingSalaryGrade: \r\nIsUsingWitholdingTax: \r\nRemarks: \r\nTaxAmountPercentage: \r\nWithBenefits: \r\n	admin	EmploymentStatus	1
759562	2024-06-07	14:24:58.5411071	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: Bachelor of Science in Accounting Management\r\nLevel: College\r\n	admin	Courses	1
759563	2024-06-07	14:25:34.1729237	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 1253\r\nAddress2: N/A\r\nBarangay: KUMINTANG IBABA\r\nBasicInformationId: 0\r\nBirthDate: April 10, 1999\r\nBirthPlace: Caloocan City\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: bedioravenmatt@gmail.com\r\nExtensionName: N/A\r\nFirstName: MATT RIVEN\r\nFullName: MATT RIVEN DR. BEDIO N/A\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 171\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BEDIO\r\nMaidenName: \r\nMiddleName: DE REAL\r\nMobileNumber: 09673679096\r\nNationality: Filipino\r\nPermanentAddress1: 1253\r\nPermanentAddress2: N/A\r\nPermanentBarangay: KUMINTANG IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ONA ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: Roman Catholic\r\nSalutation: Mr.\r\nSSS: \r\nStreetName: ONA ROAD\r\nTIN: \r\nWeight: 85\r\nZipCode: 4200\r\n	admin	BasicInformation	1
759564	2024-06-07	14:25:34.2036553	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3598\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2006\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: Mamburao Central School\r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
759565	2024-06-07	14:25:34.2036553	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3598\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2011\r\nDateTo: 2015\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: Occidental Mindoro National High School\r\nYearGraduated: 2015\r\n	admin	EducationalBackgrounds	1
759703	2024-07-01	10:05:33.9351163	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3603\r\nSkillId: 0\r\nSkillName: COFFEE PAINTING\r\n	admin	Skills	1
759568	2024-06-07	14:35:55.0483945	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3598\r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 0\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: First Level (Subprofessional)\r\nLicenseNumber: N/A\r\nPlaceOfExamination: Batangas State University\r\nRating: 84\r\nTitle: CSE SubProfessional\r\n	admin	Eligibilities	1
759569	2024-06-07	14:35:55.0523941	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3598\r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 0\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: Batangas National High School\r\nRating: 81\r\nTitle: CSE Professional\r\n	admin	Eligibilities	1
759570	2024-06-07	14:35:55.0583943	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3598\r\nCompanyInstitution: Accenture, Inc.\r\nExperienceId: 0\r\nFromDate: August 23, 2019\r\nIsGovernmentService: False\r\nMonthlySalary: 0.00\r\nPositionHeld: Accounts Receivable Analyst\r\nRateTypeName: Annual\r\nReasonOfLeaving: Personal\r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: March 30, 2022\r\n	admin	Experiences	1
759571	2024-06-07	14:35:55.0623944	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3598\r\nCompanyInstitution: Batangas State University - Pablo Borbon Campus\r\nExperienceId: 0\r\nFromDate: April 18, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 0.00\r\nPositionHeld: Administrative Aide VI\r\nRateTypeName: Annual\r\nReasonOfLeaving: Promotion\r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: December 30, 2023\r\n	admin	Experiences	1
759572	2024-06-07	14:35:55.0663967	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 1253\r\nAddress2: N/A\r\nBarangay: KUMINTANG IBABA\r\nBasicInformationId: 3598\r\nBirthDate: April 10, 1999\r\nBirthPlace: Caloocan City\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: bedioravenmatt@gmail.com\r\nExtensionName: N/A\r\nFirstName: MATT RIVEN\r\nFullName: MATT RIVEN DR. BEDIO N/A\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 171\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BEDIO\r\nMaidenName: \r\nMiddleName: DE REAL\r\nMobileNumber: 09673679096\r\nNationality: Filipino\r\nPermanentAddress1: 1253\r\nPermanentAddress2: N/A\r\nPermanentBarangay: KUMINTANG IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ONA ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: Roman Catholic\r\nSalutation: Mr.\r\nSSS: \r\nStreetName: ONA ROAD\r\nTIN: \r\nWeight: 85\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 1253\r\nAddress2: N/A\r\nBarangay: KUMINTANG IBABA\r\nBasicInformationId: 3598\r\nBirthDate: April 10, 1999\r\nBirthPlace: Caloocan City\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: bedioravenmatt@gmail.com\r\nExtensionName: N/A\r\nFirstName: MATT RIVEN\r\nFullName: MATT RIVEN DR. BEDIO N/A\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006430145\r\nHDMF: 1211-5608-9438\r\nHeight: 171\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BEDIO\r\nMaidenName: \r\nMiddleName: DE REAL\r\nMobileNumber: 09673679096\r\nNationality: Filipino\r\nPermanentAddress1: 1253\r\nPermanentAddress2: N/A\r\nPermanentBarangay: KUMINTANG IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ONA ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: 01-026505269-5\r\nProvince: BATANGAS\r\nReligion: Roman Catholic\r\nSalutation: \r\nSSS: 34-8657493-7\r\nStreetName: ONA ROAD\r\nTIN: 746-791-991-0000\r\nWeight: 85\r\nZipCode: 4200\r\n	admin	BasicInformation	1
759573	2024-06-07	14:35:55.0713991	<Undetected>	Update	BasicInformationId: 3598\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3395\r\n	BasicInformationId: 3598\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3395\r\n	admin	Questionnaires	1
759574	2024-06-07	14:38:06.7389899	<Undetected>	Update	DepartmentCode: 1400\r\nDepartmentId: 1\r\nDepartmentName: OFFICE OF THE PROVINCIAL GOVERNOR\r\nDescription: \r\nExemptedToHolidays: False\r\nExemptedToWeekends: False\r\nFppCode: \r\nFundingType: General Fund\r\nOldName: \r\nRank: 1\r\nShortName: PGO\r\nSignatoryName: Albert Raymond S. Garcia\r\nSignatoryPosition: Provincial Governor\r\n	DepartmentCode: 4200\r\nDepartmentId: 1\r\nDepartmentName: SDO BATANGAS CITY\r\nDescription: \r\nExemptedToHolidays: False\r\nExemptedToWeekends: False\r\nFppCode: \r\nFundingType: General Fund\r\nOldName: \r\nRank: 1\r\nShortName: SDO BATANGAS CITY\r\nSignatoryName: HERMOGENES M. PANGANIBAN, CESO V\r\nSignatoryPosition: SCHOOLS DIVISION SUPERINTENDENT\r\n	admin	Departments	1
759575	2024-06-07	14:40:47.2069813	<Undetected>	Insert	DocumentType: \r\nEligibilityDocumentTypeId: \r\nRank: \r\n	DocumentType: CESO V\r\nEligibilityDocumentTypeId: 0\r\nRank: 1\r\n	admin	EligibilityDocumentTypes	1
759576	2024-06-07	14:40:56.5666197	<Undetected>	Insert	DocumentType: \r\nEligibilityDocumentTypeId: \r\nRank: \r\n	DocumentType: CESO 4\r\nEligibilityDocumentTypeId: 0\r\nRank: 2\r\n	admin	EligibilityDocumentTypes	1
759577	2024-06-07	14:41:07.2308998	<Undetected>	Insert	DocumentType: \r\nEligibilityDocumentTypeId: \r\nRank: \r\n	DocumentType: CESO 3\r\nEligibilityDocumentTypeId: 0\r\nRank: 3\r\n	admin	EligibilityDocumentTypes	1
759578	2024-06-07	14:41:22.7545381	<Undetected>	Insert	DocumentType: \r\nEligibilityDocumentTypeId: \r\nRank: \r\n	DocumentType: CESO 2\r\nEligibilityDocumentTypeId: 0\r\nRank: 4\r\n	admin	EligibilityDocumentTypes	1
759579	2024-06-07	14:41:36.2546020	<Undetected>	Insert	DocumentType: \r\nEligibilityDocumentTypeId: \r\nRank: \r\n	DocumentType: CESO 1\r\nEligibilityDocumentTypeId: 0\r\nRank: 5\r\n	admin	EligibilityDocumentTypes	1
759580	2024-06-07	14:41:49.4256288	<Undetected>	Insert	DocumentType: \r\nEligibilityDocumentTypeId: \r\nRank: \r\n	DocumentType: Professional\r\nEligibilityDocumentTypeId: 0\r\nRank: 6\r\n	admin	EligibilityDocumentTypes	1
759581	2024-06-07	14:42:03.3899633	<Undetected>	Insert	DocumentType: \r\nEligibilityDocumentTypeId: \r\nRank: \r\n	DocumentType: Sub Professional\r\nEligibilityDocumentTypeId: 0\r\nRank: 7\r\n	admin	EligibilityDocumentTypes	1
759582	2024-06-07	14:44:48.8821028	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3598\r\nOrganizationId: 0\r\nOrganizationName: Association of Government Internal Auditors (AGIA)\r\n	admin	Organizations	1
759704	2024-07-01	10:05:33.9381157	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3603\r\nSkillId: 0\r\nSkillName: ACRYLIC PAINTING\r\n	admin	Skills	1
759583	2024-06-07	14:44:48.8941031	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 1253\r\nAddress2: N/A\r\nBarangay: KUMINTANG IBABA\r\nBasicInformationId: 3598\r\nBirthDate: April 10, 1999\r\nBirthPlace: Caloocan City\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: bedioravenmatt@gmail.com\r\nExtensionName: N/A\r\nFirstName: MATT RIVEN\r\nFullName: MATT RIVEN DR. BEDIO N/A\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006430145\r\nHDMF: 1211-5608-9438\r\nHeight: 171\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BEDIO\r\nMaidenName: \r\nMiddleName: DE REAL\r\nMobileNumber: 09673679096\r\nNationality: Filipino\r\nPermanentAddress1: 1253\r\nPermanentAddress2: N/A\r\nPermanentBarangay: KUMINTANG IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ONA ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: 01-026505269-5\r\nProvince: BATANGAS\r\nReligion: Roman Catholic\r\nSalutation: \r\nSSS: 34-8657493-7\r\nStreetName: ONA ROAD\r\nTIN: 746-791-991-0000\r\nWeight: 85\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 1253\r\nAddress2: N/A\r\nBarangay: KUMINTANG IBABA\r\nBasicInformationId: 3598\r\nBirthDate: April 10, 1999\r\nBirthPlace: Caloocan City\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: 18A Romans St. Concepion Uno, Marikina City\r\nContactName: Lyn De Real Villarosa\r\nContactNumber: 09155640778\r\nContactRelationship: Aunt\r\nCountry: Philippines\r\nEmailAddress: bedioravenmatt@gmail.com\r\nExtensionName: N/A\r\nFirstName: MATT RIVEN\r\nFullName: MATT RIVEN DR. BEDIO N/A\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006430145\r\nHDMF: 1211-5608-9438\r\nHeight: 171\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BEDIO\r\nMaidenName: \r\nMiddleName: DE REAL\r\nMobileNumber: 09673679096\r\nNationality: Filipino\r\nPermanentAddress1: 1253\r\nPermanentAddress2: N/A\r\nPermanentBarangay: KUMINTANG IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ONA ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: 01-026505269-5\r\nProvince: BATANGAS\r\nReligion: Roman Catholic\r\nSalutation: \r\nSSS: 34-8657493-7\r\nStreetName: ONA ROAD\r\nTIN: 746-791-991-0000\r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
759584	2024-06-07	14:45:14.1917267	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nDegree: \r\nEducationalLevel: \r\nIsGraduated: \r\nMonthsAcquired: \r\nPositionEducationalBackgroundId: \r\nPositionId: \r\nUnitsEarned: \r\nYearsAcquired: \r\n	CourseId: 0\r\nCourseName: NONE\r\nDegree: NONE\r\nEducationalLevel: NONE\r\nIsGraduated: False\r\nMonthsAcquired: 0\r\nPositionEducationalBackgroundId: 0\r\nPositionId: 234\r\nUnitsEarned: \r\nYearsAcquired: 0\r\n	admin	PositionEducationalBackgrounds	1
759585	2024-06-07	14:45:14.1927241	<Undetected>	Insert	MonthsExperience: \r\nPositionExperienceId: \r\nPositionId: \r\nWorkExperience: \r\nYearsExperience: \r\n	MonthsExperience: 0\r\nPositionExperienceId: 0\r\nPositionId: 234\r\nWorkExperience: SAME AS POSITION\r\nYearsExperience: 0\r\n	admin	PositionExperiences	1
759586	2024-06-07	14:45:14.2415124	<Undetected>	Update	AccessLevel: EMPLOYEE\r\nDepartmentId: 8\r\nDivisionId: 10\r\nPositionDescription: \r\nPositionId: 234\r\nPositionTitle: Administrative Officer IV (Human Resource Management Officer II)\r\nRank: 50\r\nSalaryGradeAnnex: A1\r\nSalaryGradeNumber: 15\r\nSectionId: 0\r\nShortName: HRMO II\r\nType: \r\n	AccessLevel: HR OFFICER\r\nDepartmentId: 8\r\nDivisionId: 10\r\nPositionDescription: \r\nPositionId: 234\r\nPositionTitle: Administrative Officer IV (Human Resource Management Officer II)\r\nRank: 50\r\nSalaryGradeAnnex: A1\r\nSalaryGradeNumber: 15\r\nSectionId: 0\r\nShortName: HRMO II\r\nType: Administrative\r\n	admin	Positions	1
759587	2024-06-07	14:46:59.3692307	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: Bachelor of Science in Commerce\r\nLevel: College\r\n	admin	Courses	1
759588	2024-06-07	14:50:48.2009391	<Undetected>	Update	AccessLevel: EMPLOYEE\r\nDepartmentId: 11\r\nDivisionId: 12\r\nPositionDescription: \r\nPositionId: 206\r\nPositionTitle: Administrative Officer II\r\nRank: 91\r\nSalaryGradeAnnex: A1\r\nSalaryGradeNumber: 15\r\nSectionId: 0\r\nShortName: AO II\r\nType: \r\n	AccessLevel: EMPLOYEE\r\nDepartmentId: 11\r\nDivisionId: 12\r\nPositionDescription: \r\nPositionId: 206\r\nPositionTitle: Administrative Officer II\r\nRank: 91\r\nSalaryGradeAnnex: A1\r\nSalaryGradeNumber: 15\r\nSectionId: 0\r\nShortName: AO II\r\nType: Administrative\r\n	admin	Positions	1
759589	2024-06-07	14:53:07.4928474	<Undetected>	Update	AccessLevel: EMPLOYEE\r\nDepartmentId: 0\r\nDivisionId: 0\r\nPositionDescription: \r\nPositionId: 2009\r\nPositionTitle: ADMINISTRATIVE ASSISTANT III\r\nRank: 847\r\nSalaryGradeAnnex: A1\r\nSalaryGradeNumber: 9\r\nSectionId: 0\r\nShortName: ADMIN. ASSIST. III\r\nType: \r\n	AccessLevel: EMPLOYEE\r\nDepartmentId: 0\r\nDivisionId: 0\r\nPositionDescription: \r\nPositionId: 2009\r\nPositionTitle: ADMINISTRATIVE ASSISTANT III\r\nRank: 847\r\nSalaryGradeAnnex: A1\r\nSalaryGradeNumber: 9\r\nSectionId: 0\r\nShortName: ADMIN. ASSIST. III\r\nType: Administrative\r\n	admin	Positions	1
759590	2024-06-07	14:56:31.9326606	<Undetected>	Delete	DepartmentCode: 4200\r\nDepartmentId: 1\r\nDepartmentName: SDO BATANGAS CITY\r\nDescription: \r\nExemptedToHolidays: False\r\nExemptedToWeekends: False\r\nFppCode: \r\nFundingType: General Fund\r\nOldName: \r\nRank: 1\r\nShortName: SDO BATANGAS CITY\r\nSignatoryName: HERMOGENES M. PANGANIBAN, CESO V\r\nSignatoryPosition: SCHOOLS DIVISION SUPERINTENDENT\r\n	DepartmentCode: \r\nDepartmentId: \r\nDepartmentName: \r\nDescription: \r\nExemptedToHolidays: \r\nExemptedToWeekends: \r\nFppCode: \r\nFundingType: \r\nOldName: \r\nRank: \r\nShortName: \r\nSignatoryName: \r\nSignatoryPosition: \r\n	admin	Departments	1
759591	2024-06-07	14:56:31.9436664	<Undetected>	Update	DepartmentCode: 100\r\nDepartmentId: 125\r\nDepartmentName: Office of the Schools Division Superintendent\r\nDescription: \r\nExemptedToHolidays: False\r\nExemptedToWeekends: False\r\nFppCode: \r\nFundingType: \r\nOldName: OSDS\r\nRank: 2\r\nShortName: OSDS\r\nSignatoryName: \r\nSignatoryPosition: \r\n	DepartmentCode: 100\r\nDepartmentId: 125\r\nDepartmentName: Office of the Schools Division Superintendent\r\nDescription: \r\nExemptedToHolidays: False\r\nExemptedToWeekends: False\r\nFppCode: \r\nFundingType: \r\nOldName: OSDS\r\nRank: 1\r\nShortName: OSDS\r\nSignatoryName: \r\nSignatoryPosition: \r\n	admin	Departments	1
759592	2024-06-07	14:56:31.9436664	<Undetected>	Update	DepartmentCode: 101\r\nDepartmentId: 126\r\nDepartmentName: Curriculum Implementation Division\r\nDescription: \r\nExemptedToHolidays: False\r\nExemptedToWeekends: False\r\nFppCode: \r\nFundingType: \r\nOldName: CID\r\nRank: 3\r\nShortName: CID\r\nSignatoryName: \r\nSignatoryPosition: \r\n	DepartmentCode: 101\r\nDepartmentId: 126\r\nDepartmentName: Curriculum Implementation Division\r\nDescription: \r\nExemptedToHolidays: False\r\nExemptedToWeekends: False\r\nFppCode: \r\nFundingType: \r\nOldName: CID\r\nRank: 2\r\nShortName: CID\r\nSignatoryName: \r\nSignatoryPosition: \r\n	admin	Departments	1
759593	2024-06-07	14:56:31.9436664	<Undetected>	Update	DepartmentCode: 102\r\nDepartmentId: 127\r\nDepartmentName: Schools Governance and Operations Division\r\nDescription: \r\nExemptedToHolidays: False\r\nExemptedToWeekends: False\r\nFppCode: \r\nFundingType: \r\nOldName: SGOD\r\nRank: 4\r\nShortName: SGOD\r\nSignatoryName: \r\nSignatoryPosition: \r\n	DepartmentCode: 102\r\nDepartmentId: 127\r\nDepartmentName: Schools Governance and Operations Division\r\nDescription: \r\nExemptedToHolidays: False\r\nExemptedToWeekends: False\r\nFppCode: \r\nFundingType: \r\nOldName: SGOD\r\nRank: 3\r\nShortName: SGOD\r\nSignatoryName: \r\nSignatoryPosition: \r\n	admin	Departments	1
759594	2024-06-07	14:56:43.1441843	<Undetected>	Update	DepartmentCode: 100\r\nDepartmentId: 125\r\nDepartmentName: Office of the Schools Division Superintendent\r\nDescription: \r\nExemptedToHolidays: False\r\nExemptedToWeekends: False\r\nFppCode: \r\nFundingType: \r\nOldName: OSDS\r\nRank: 1\r\nShortName: OSDS\r\nSignatoryName: \r\nSignatoryPosition: \r\n	DepartmentCode: 100\r\nDepartmentId: 125\r\nDepartmentName: OFFICE OF THE SCHOOLS DIVISION SUPERINTENDENT\r\nDescription: \r\nExemptedToHolidays: False\r\nExemptedToWeekends: False\r\nFppCode: \r\nFundingType: \r\nOldName: OSDS\r\nRank: 1\r\nShortName: OSDS\r\nSignatoryName: \r\nSignatoryPosition: \r\n	admin	Departments	1
759595	2024-06-07	14:59:20.6670869	<Undetected>	Insert	DateOfMovement: \r\nDepartmentId: \r\nDivisionId: \r\nEmployeeId: \r\nItemNumber: \r\nMovementType: \r\nPlantillaRecordEntryId: \r\nPlantillaRecordId: \r\nPlantillaYear: \r\nPositionId: \r\nReasonOfSeparation: \r\nSalaryGradeId: \r\nScrapBuildFromPlantillaId: \r\nSectionId: \r\n	DateOfMovement: January 01, 2024\r\nDepartmentId: 0\r\nDivisionId: 0\r\nEmployeeId: 0\r\nItemNumber: 12-12\r\nMovementType: Recreated\r\nPlantillaRecordEntryId: 0\r\nPlantillaRecordId: 154\r\nPlantillaYear: 2024\r\nPositionId: 237\r\nReasonOfSeparation: \r\nSalaryGradeId: 0\r\nScrapBuildFromPlantillaId: 0\r\nSectionId: 0\r\n	admin	PlantillaRecordEntries	1
759596	2024-06-07	15:00:06.7207977	<Undetected>	Insert	DateAdded: \r\nDepartmentId: \r\nDivisionId: \r\nEncoderBasicInformationId: \r\nIsDeleted: \r\nItemNumber: \r\nPlantillaRecordId: \r\nPositionId: \r\nRemark: \r\nSectionId: \r\nTemporaryEmployeeId: \r\n	DateAdded: January 01, 0001\r\nDepartmentId: 125\r\nDivisionId: 164\r\nEncoderBasicInformationId: 0\r\nIsDeleted: False\r\nItemNumber: \r\nPlantillaRecordId: 0\r\nPositionId: 1653\r\nRemark: \r\nSectionId: 4\r\nTemporaryEmployeeId: 0\r\n	admin	PlantillaRecords	1
759597	2024-06-07	15:00:06.7237881	<Undetected>	Insert	DateOfMovement: \r\nDepartmentId: \r\nDivisionId: \r\nEmployeeId: \r\nItemNumber: \r\nMovementType: \r\nPlantillaRecordEntryId: \r\nPlantillaRecordId: \r\nPlantillaYear: \r\nPositionId: \r\nReasonOfSeparation: \r\nSalaryGradeId: \r\nScrapBuildFromPlantillaId: \r\nSectionId: \r\n	DateOfMovement: January 01, 2024\r\nDepartmentId: 125\r\nDivisionId: 164\r\nEmployeeId: 0\r\nItemNumber: 1-11\r\nMovementType: Created\r\nPlantillaRecordEntryId: 0\r\nPlantillaRecordId: 1152\r\nPlantillaYear: 2024\r\nPositionId: 0\r\nReasonOfSeparation: \r\nSalaryGradeId: 0\r\nScrapBuildFromPlantillaId: 0\r\nSectionId: 4\r\n	admin	PlantillaRecordEntries	1
759598	2024-06-07	15:00:41.8782055	<Undetected>	Insert	DateAdded: \r\nDepartmentId: \r\nDivisionId: \r\nEncoderBasicInformationId: \r\nIsDeleted: \r\nItemNumber: \r\nPlantillaRecordId: \r\nPositionId: \r\nRemark: \r\nSectionId: \r\nTemporaryEmployeeId: \r\n	DateAdded: January 01, 0001\r\nDepartmentId: 125\r\nDivisionId: 164\r\nEncoderBasicInformationId: 0\r\nIsDeleted: False\r\nItemNumber: \r\nPlantillaRecordId: 0\r\nPositionId: 206\r\nRemark: \r\nSectionId: 4\r\nTemporaryEmployeeId: 0\r\n	admin	PlantillaRecords	1
759599	2024-06-07	15:00:41.8811970	<Undetected>	Insert	DateOfMovement: \r\nDepartmentId: \r\nDivisionId: \r\nEmployeeId: \r\nItemNumber: \r\nMovementType: \r\nPlantillaRecordEntryId: \r\nPlantillaRecordId: \r\nPlantillaYear: \r\nPositionId: \r\nReasonOfSeparation: \r\nSalaryGradeId: \r\nScrapBuildFromPlantillaId: \r\nSectionId: \r\n	DateOfMovement: January 01, 2024\r\nDepartmentId: 125\r\nDivisionId: 164\r\nEmployeeId: 0\r\nItemNumber: 1-12\r\nMovementType: Created\r\nPlantillaRecordEntryId: 0\r\nPlantillaRecordId: 1153\r\nPlantillaYear: 2024\r\nPositionId: 0\r\nReasonOfSeparation: \r\nSalaryGradeId: 0\r\nScrapBuildFromPlantillaId: 0\r\nSectionId: 4\r\n	admin	PlantillaRecordEntries	1
759600	2024-06-07	15:01:26.6040111	<Undetected>	Insert	DateAdded: \r\nDepartmentId: \r\nDivisionId: \r\nEncoderBasicInformationId: \r\nIsDeleted: \r\nItemNumber: \r\nPlantillaRecordId: \r\nPositionId: \r\nRemark: \r\nSectionId: \r\nTemporaryEmployeeId: \r\n	DateAdded: January 01, 0001\r\nDepartmentId: 125\r\nDivisionId: 164\r\nEncoderBasicInformationId: 0\r\nIsDeleted: False\r\nItemNumber: \r\nPlantillaRecordId: 0\r\nPositionId: 2009\r\nRemark: \r\nSectionId: 4\r\nTemporaryEmployeeId: 0\r\n	admin	PlantillaRecords	1
759601	2024-06-07	15:01:26.6120174	<Undetected>	Insert	DateOfMovement: \r\nDepartmentId: \r\nDivisionId: \r\nEmployeeId: \r\nItemNumber: \r\nMovementType: \r\nPlantillaRecordEntryId: \r\nPlantillaRecordId: \r\nPlantillaYear: \r\nPositionId: \r\nReasonOfSeparation: \r\nSalaryGradeId: \r\nScrapBuildFromPlantillaId: \r\nSectionId: \r\n	DateOfMovement: January 01, 2024\r\nDepartmentId: 125\r\nDivisionId: 164\r\nEmployeeId: 0\r\nItemNumber: 1-13\r\nMovementType: Created\r\nPlantillaRecordEntryId: 0\r\nPlantillaRecordId: 1154\r\nPlantillaYear: 2024\r\nPositionId: 0\r\nReasonOfSeparation: \r\nSalaryGradeId: 0\r\nScrapBuildFromPlantillaId: 0\r\nSectionId: 4\r\n	admin	PlantillaRecordEntries	1
759602	2024-06-07	15:02:00.8914146	<Undetected>	Insert	DateAdded: \r\nDepartmentId: \r\nDivisionId: \r\nEncoderBasicInformationId: \r\nIsDeleted: \r\nItemNumber: \r\nPlantillaRecordId: \r\nPositionId: \r\nRemark: \r\nSectionId: \r\nTemporaryEmployeeId: \r\n	DateAdded: January 01, 0001\r\nDepartmentId: 125\r\nDivisionId: 164\r\nEncoderBasicInformationId: 0\r\nIsDeleted: False\r\nItemNumber: \r\nPlantillaRecordId: 0\r\nPositionId: 1994\r\nRemark: \r\nSectionId: 4\r\nTemporaryEmployeeId: 0\r\n	admin	PlantillaRecords	1
759603	2024-06-07	15:02:00.8934095	<Undetected>	Insert	DateOfMovement: \r\nDepartmentId: \r\nDivisionId: \r\nEmployeeId: \r\nItemNumber: \r\nMovementType: \r\nPlantillaRecordEntryId: \r\nPlantillaRecordId: \r\nPlantillaYear: \r\nPositionId: \r\nReasonOfSeparation: \r\nSalaryGradeId: \r\nScrapBuildFromPlantillaId: \r\nSectionId: \r\n	DateOfMovement: January 01, 2024\r\nDepartmentId: 125\r\nDivisionId: 164\r\nEmployeeId: 0\r\nItemNumber: 1-14\r\nMovementType: Created\r\nPlantillaRecordEntryId: 0\r\nPlantillaRecordId: 1155\r\nPlantillaYear: 2024\r\nPositionId: 0\r\nReasonOfSeparation: \r\nSalaryGradeId: 0\r\nScrapBuildFromPlantillaId: 0\r\nSectionId: 4\r\n	admin	PlantillaRecordEntries	1
759604	2024-06-07	15:03:03.7727352	<Undetected>	Insert	DateAdded: \r\nDepartmentId: \r\nDivisionId: \r\nEncoderBasicInformationId: \r\nIsDeleted: \r\nItemNumber: \r\nPlantillaRecordId: \r\nPositionId: \r\nRemark: \r\nSectionId: \r\nTemporaryEmployeeId: \r\n	DateAdded: January 01, 0001\r\nDepartmentId: 125\r\nDivisionId: 164\r\nEncoderBasicInformationId: 0\r\nIsDeleted: False\r\nItemNumber: \r\nPlantillaRecordId: 0\r\nPositionId: 101\r\nRemark: \r\nSectionId: 4\r\nTemporaryEmployeeId: 0\r\n	admin	PlantillaRecords	1
759605	2024-06-07	15:03:03.7757230	<Undetected>	Insert	DateOfMovement: \r\nDepartmentId: \r\nDivisionId: \r\nEmployeeId: \r\nItemNumber: \r\nMovementType: \r\nPlantillaRecordEntryId: \r\nPlantillaRecordId: \r\nPlantillaYear: \r\nPositionId: \r\nReasonOfSeparation: \r\nSalaryGradeId: \r\nScrapBuildFromPlantillaId: \r\nSectionId: \r\n	DateOfMovement: January 01, 2024\r\nDepartmentId: 125\r\nDivisionId: 164\r\nEmployeeId: 0\r\nItemNumber: 1-15\r\nMovementType: Created\r\nPlantillaRecordEntryId: 0\r\nPlantillaRecordId: 1156\r\nPlantillaYear: 2024\r\nPositionId: 0\r\nReasonOfSeparation: \r\nSalaryGradeId: 0\r\nScrapBuildFromPlantillaId: 0\r\nSectionId: 4\r\n	admin	PlantillaRecordEntries	1
759606	2024-06-07	15:03:33.8144091	<Undetected>	Insert	DateAdded: \r\nDepartmentId: \r\nDivisionId: \r\nEncoderBasicInformationId: \r\nIsDeleted: \r\nItemNumber: \r\nPlantillaRecordId: \r\nPositionId: \r\nRemark: \r\nSectionId: \r\nTemporaryEmployeeId: \r\n	DateAdded: January 01, 0001\r\nDepartmentId: 125\r\nDivisionId: 164\r\nEncoderBasicInformationId: 0\r\nIsDeleted: False\r\nItemNumber: \r\nPlantillaRecordId: 0\r\nPositionId: 2004\r\nRemark: \r\nSectionId: 4\r\nTemporaryEmployeeId: 0\r\n	admin	PlantillaRecords	1
759607	2024-06-07	15:03:33.8233508	<Undetected>	Insert	DateOfMovement: \r\nDepartmentId: \r\nDivisionId: \r\nEmployeeId: \r\nItemNumber: \r\nMovementType: \r\nPlantillaRecordEntryId: \r\nPlantillaRecordId: \r\nPlantillaYear: \r\nPositionId: \r\nReasonOfSeparation: \r\nSalaryGradeId: \r\nScrapBuildFromPlantillaId: \r\nSectionId: \r\n	DateOfMovement: January 01, 2024\r\nDepartmentId: 125\r\nDivisionId: 164\r\nEmployeeId: 0\r\nItemNumber: 1-16\r\nMovementType: Created\r\nPlantillaRecordEntryId: 0\r\nPlantillaRecordId: 1157\r\nPlantillaYear: 2024\r\nPositionId: 0\r\nReasonOfSeparation: \r\nSalaryGradeId: 0\r\nScrapBuildFromPlantillaId: 0\r\nSectionId: 4\r\n	admin	PlantillaRecordEntries	1
759718	2024-07-01	10:48:17.2026190	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTERS IN BUSINESS ADMINISTRATION\r\nLevel: Master's\r\n	admin	Courses	1
759608	2024-06-07	15:03:39.7852945	<Undetected>	Delete	AccountName: \r\nAccountNumber: \r\nAddress1: 1253\r\nAddress2: N/A\r\nBarangay: KUMINTANG IBABA\r\nBasicInformationId: 3598\r\nBirthDate: April 10, 1999\r\nBirthPlace: Caloocan City\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: 18A Romans St. Concepion Uno, Marikina City\r\nContactName: Lyn De Real Villarosa\r\nContactNumber: 09155640778\r\nContactRelationship: Aunt\r\nCountry: Philippines\r\nEmailAddress: bedioravenmatt@gmail.com\r\nExtensionName: N/A\r\nFirstName: MATT RIVEN\r\nFullName: MATT RIVEN DR. BEDIO N/A\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006430145\r\nHDMF: 1211-5608-9438\r\nHeight: 171\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BEDIO\r\nMaidenName: \r\nMiddleName: DE REAL\r\nMobileNumber: 09673679096\r\nNationality: Filipino\r\nPermanentAddress1: 1253\r\nPermanentAddress2: N/A\r\nPermanentBarangay: KUMINTANG IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ONA ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: 01-026505269-5\r\nProvince: BATANGAS\r\nReligion: Roman Catholic\r\nSalutation: \r\nSSS: 34-8657493-7\r\nStreetName: ONA ROAD\r\nTIN: 746-791-991-0000\r\nWeight: 80\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	admin	BasicInformation	1
759609	2024-06-07	15:04:18.6838053	<Undetected>	Insert	ClosingDate: \r\nDateCreated: \r\nDateEnded: \r\nDepartmentId: \r\nDivisionId: \r\nDuration: \r\nEmploymentStatusId: \r\nEncoderBasicInformationId: \r\nIsActive: \r\nIsPlantilla: \r\nJobDescription: \r\nJobVacancyId: \r\nPositionId: \r\nRateTypeId: \r\nSalaryGradeAnnex: \r\nSalaryGradeEffectivity: \r\nSalaryRate: \r\nSectionId: \r\nSlot: \r\n	ClosingDate: June 30, 2024\r\nDateCreated: June 07, 2024\r\nDateEnded: January 01, 0001\r\nDepartmentId: 125\r\nDivisionId: 164\r\nDuration: 0\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nIsActive: True\r\nIsPlantilla: True\r\nJobDescription: AOIV\r\nJobVacancyId: 0\r\nPositionId: 1653\r\nRateTypeId: 4\r\nSalaryGradeAnnex: A1\r\nSalaryGradeEffectivity: January 01, 2021\r\nSalaryRate: 33575.00\r\nSectionId: 4\r\nSlot: 1\r\n	admin	JobVacancies	1
759610	2024-06-07	15:06:15.7029266	<Undetected>	Update	DateAdded: January 01, 0001\r\nDepartmentId: 125\r\nDivisionId: 164\r\nEncoderBasicInformationId: 0\r\nIsDeleted: False\r\nItemNumber: \r\nPlantillaRecordId: 1153\r\nPositionId: 206\r\nRemark: \r\nSectionId: 4\r\nTemporaryEmployeeId: 0\r\n	DateAdded: January 01, 0001\r\nDepartmentId: 125\r\nDivisionId: 164\r\nEncoderBasicInformationId: 0\r\nIsDeleted: False\r\nItemNumber: \r\nPlantillaRecordId: 1153\r\nPositionId: 1214\r\nRemark: \r\nSectionId: 4\r\nTemporaryEmployeeId: 0\r\n	admin	PlantillaRecords	1
759611	2024-06-07	15:06:49.8862724	<Undetected>	Insert	ClosingDate: \r\nDateCreated: \r\nDateEnded: \r\nDepartmentId: \r\nDivisionId: \r\nDuration: \r\nEmploymentStatusId: \r\nEncoderBasicInformationId: \r\nIsActive: \r\nIsPlantilla: \r\nJobDescription: \r\nJobVacancyId: \r\nPositionId: \r\nRateTypeId: \r\nSalaryGradeAnnex: \r\nSalaryGradeEffectivity: \r\nSalaryRate: \r\nSectionId: \r\nSlot: \r\n	ClosingDate: June 30, 2024\r\nDateCreated: June 07, 2024\r\nDateEnded: January 01, 0001\r\nDepartmentId: 125\r\nDivisionId: 164\r\nDuration: 0\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nIsActive: True\r\nIsPlantilla: True\r\nJobDescription: AOII\r\nJobVacancyId: 0\r\nPositionId: 1214\r\nRateTypeId: 4\r\nSalaryGradeAnnex: A1\r\nSalaryGradeEffectivity: January 01, 2021\r\nSalaryRate: 23877.00\r\nSectionId: 4\r\nSlot: 1\r\n	admin	JobVacancies	1
759612	2024-06-07	15:07:15.9262573	<Undetected>	Insert	ClosingDate: \r\nDateCreated: \r\nDateEnded: \r\nDepartmentId: \r\nDivisionId: \r\nDuration: \r\nEmploymentStatusId: \r\nEncoderBasicInformationId: \r\nIsActive: \r\nIsPlantilla: \r\nJobDescription: \r\nJobVacancyId: \r\nPositionId: \r\nRateTypeId: \r\nSalaryGradeAnnex: \r\nSalaryGradeEffectivity: \r\nSalaryRate: \r\nSectionId: \r\nSlot: \r\n	ClosingDate: June 30, 2024\r\nDateCreated: June 07, 2024\r\nDateEnded: January 01, 0001\r\nDepartmentId: 125\r\nDivisionId: 164\r\nDuration: 0\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nIsActive: True\r\nIsPlantilla: True\r\nJobDescription: AAIII\r\nJobVacancyId: 0\r\nPositionId: 2009\r\nRateTypeId: 4\r\nSalaryGradeAnnex: A1\r\nSalaryGradeEffectivity: January 01, 2021\r\nSalaryRate: 19593.00\r\nSectionId: 4\r\nSlot: 1\r\n	admin	JobVacancies	1
759613	2024-06-07	15:07:42.1884746	<Undetected>	Insert	ClosingDate: \r\nDateCreated: \r\nDateEnded: \r\nDepartmentId: \r\nDivisionId: \r\nDuration: \r\nEmploymentStatusId: \r\nEncoderBasicInformationId: \r\nIsActive: \r\nIsPlantilla: \r\nJobDescription: \r\nJobVacancyId: \r\nPositionId: \r\nRateTypeId: \r\nSalaryGradeAnnex: \r\nSalaryGradeEffectivity: \r\nSalaryRate: \r\nSectionId: \r\nSlot: \r\n	ClosingDate: June 30, 2024\r\nDateCreated: June 07, 2024\r\nDateEnded: January 01, 0001\r\nDepartmentId: 125\r\nDivisionId: 164\r\nDuration: 0\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nIsActive: True\r\nIsPlantilla: True\r\nJobDescription: AAII\r\nJobVacancyId: 0\r\nPositionId: 1994\r\nRateTypeId: 4\r\nSalaryGradeAnnex: A1\r\nSalaryGradeEffectivity: January 01, 2021\r\nSalaryRate: 18251.00\r\nSectionId: 4\r\nSlot: 1\r\n	admin	JobVacancies	1
759614	2024-06-07	15:08:08.0745218	<Undetected>	Insert	ClosingDate: \r\nDateCreated: \r\nDateEnded: \r\nDepartmentId: \r\nDivisionId: \r\nDuration: \r\nEmploymentStatusId: \r\nEncoderBasicInformationId: \r\nIsActive: \r\nIsPlantilla: \r\nJobDescription: \r\nJobVacancyId: \r\nPositionId: \r\nRateTypeId: \r\nSalaryGradeAnnex: \r\nSalaryGradeEffectivity: \r\nSalaryRate: \r\nSectionId: \r\nSlot: \r\n	ClosingDate: June 30, 2024\r\nDateCreated: June 07, 2024\r\nDateEnded: January 01, 0001\r\nDepartmentId: 125\r\nDivisionId: 164\r\nDuration: 0\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nIsActive: True\r\nIsPlantilla: True\r\nJobDescription: ADAVI\r\nJobVacancyId: 0\r\nPositionId: 101\r\nRateTypeId: 4\r\nSalaryGradeAnnex: A1\r\nSalaryGradeEffectivity: January 01, 2021\r\nSalaryRate: 16200.00\r\nSectionId: 4\r\nSlot: 1\r\n	admin	JobVacancies	1
759615	2024-06-07	15:08:30.4837756	<Undetected>	Insert	ClosingDate: \r\nDateCreated: \r\nDateEnded: \r\nDepartmentId: \r\nDivisionId: \r\nDuration: \r\nEmploymentStatusId: \r\nEncoderBasicInformationId: \r\nIsActive: \r\nIsPlantilla: \r\nJobDescription: \r\nJobVacancyId: \r\nPositionId: \r\nRateTypeId: \r\nSalaryGradeAnnex: \r\nSalaryGradeEffectivity: \r\nSalaryRate: \r\nSectionId: \r\nSlot: \r\n	ClosingDate: June 30, 2024\r\nDateCreated: June 07, 2024\r\nDateEnded: January 01, 0001\r\nDepartmentId: 125\r\nDivisionId: 164\r\nDuration: 0\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nIsActive: True\r\nIsPlantilla: True\r\nJobDescription: ADAI\r\nJobVacancyId: 0\r\nPositionId: 2004\r\nRateTypeId: 4\r\nSalaryGradeAnnex: A1\r\nSalaryGradeEffectivity: January 01, 2021\r\nSalaryRate: 12034.00\r\nSectionId: 4\r\nSlot: 1\r\n	admin	JobVacancies	1
759616	2024-06-07	15:21:28.4965506	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 291\r\nAddress2: N/A\r\nBarangay: Gulod Labac\r\nBasicInformationId: 0\r\nBirthDate: December 30, 1976\r\nBirthPlace: Batangas City\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: Batangas City\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: leah.celemin@deped.gov.ph\r\nExtensionName: N/A\r\nFirstName: LEAH\r\nFullName: LEAH M. CELEMIN N/A\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0434255085\r\nLastName: CELEMIN\r\nMaidenName: \r\nMiddleName: MEDINA\r\nMobileNumber: 09778307399\r\nNationality: Filipino\r\nPermanentAddress1: 291\r\nPermanentAddress2: N/A\r\nPermanentBarangay: Gulod Labac\r\nPermanentCity: Batangas City\r\nPermanentCountry: Philippines\r\nPermanentProvince: Batangas\r\nPermanentStreetName: N/A\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: Batangas\r\nReligion: Christian\r\nSalutation: Ms.\r\nSSS: \r\nStreetName: N/A\r\nTIN: \r\nWeight: 56\r\nZipCode: 4200\r\n	admin	BasicInformation	1
759617	2024-06-07	15:22:28.3188086	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 1253\r\nAddress2: N/A\r\nBarangay: KUMINTANG IBABA\r\nBasicInformationId: 0\r\nBirthDate: April 10, 1999\r\nBirthPlace: CALOOCAN CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: \r\nExtensionName: N/A\r\nFirstName: MATT RIVEN\r\nFullName: MATT RIVEN DR. BEDIO N/A\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: 1212-5608-9438\r\nHeight: 171\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BEDIO\r\nMaidenName: \r\nMiddleName: DE REAL\r\nMobileNumber: 09673679096\r\nNationality: Filipino\r\nPermanentAddress1: 1253\r\nPermanentAddress2: N/A\r\nPermanentBarangay: KUMINTANG IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ONA ROAD EXTENSION\r\nPermanentZipCode: 4200\r\nPhilhealth: 01-026505269-5\r\nProvince: BATANGAS\r\nReligion: ROMAN CATHOLIC\r\nSalutation: Mr.\r\nSSS: 34-8657493-7\r\nStreetName: ONA ROAD EXTENSION\r\nTIN: 746-791-991-0000\r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
759618	2024-06-07	15:22:28.3288252	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3600\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2006\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: MAMBURAO CENTRAL SCHOOL\r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
759619	2024-06-07	15:22:28.3288252	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3600\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2011\r\nDateTo: 2015\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: OCCIDENTAL MINDORO NATIONAL HIGH SCHOOL\r\nYearGraduated: 2015\r\n	admin	EducationalBackgrounds	1
759620	2024-06-07	15:22:28.3288252	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3600\r\nCourse: \r\nCourseId: 1246\r\nCourseOrMajor: \r\nDateFrom: 2015\r\nDateTo: 2019\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY MAIN I\r\nYearGraduated: 2019\r\n	admin	EducationalBackgrounds	1
759621	2024-06-07	15:22:28.3288252	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3600\r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS NATIONAL HIGH SCHOOL\r\nRating: 82\r\nTitle: CSE PROFESSIONAL LEVEL\r\n	admin	Eligibilities	1
759622	2024-06-07	15:22:28.3288252	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3600\r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 7\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: First Level (Subprofessional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS STATE UNIVERSITY MAIN I\r\nRating: 84\r\nTitle: CSE SUBPROFESSIONAL LEVEL\r\n	admin	Eligibilities	1
759623	2024-06-07	15:22:28.3288252	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3600\r\nCompanyInstitution: ACCENTURE, INC.\r\nExperienceId: 0\r\nFromDate: August 23, 2019\r\nIsGovernmentService: False\r\nMonthlySalary: 0.00\r\nPositionHeld: ACCOUNTS RECEIVABLE ANALYST\r\nRateTypeName: Annual\r\nReasonOfLeaving: PERSONAL\r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: March 30, 2022\r\n	admin	Experiences	1
759624	2024-06-07	15:22:28.3288252	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3600\r\nCompanyInstitution: BATANGAS STATE UNIVERSITY PABLO BORBON CAMPUS\r\nExperienceId: 0\r\nFromDate: April 18, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 0.00\r\nPositionHeld: ADMINISTRATIVE AIDE VI\r\nRateTypeName: Annual\r\nReasonOfLeaving: PROMOTION\r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: December 30, 2023\r\n	admin	Experiences	1
759625	2024-06-07	15:22:28.3288252	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3600\r\nOrganizationId: 0\r\nOrganizationName: ASSOCIATION OF GOVERNMENT INTERNAL AUDITORS\r\n	admin	Organizations	1
759626	2024-06-07	15:22:28.3288252	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3600\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
759627	2024-06-07	15:23:24.4550341	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 1253\r\nAddress2: N/A\r\nBarangay: KUMINTANG IBABA\r\nBasicInformationId: 3600\r\nBirthDate: April 10, 1999\r\nBirthPlace: CALOOCAN CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: \r\nExtensionName: N/A\r\nFirstName: MATT RIVEN\r\nFullName: MATT RIVEN DR. BEDIO N/A\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: 1212-5608-9438\r\nHeight: 171\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BEDIO\r\nMaidenName: \r\nMiddleName: DE REAL\r\nMobileNumber: 09673679096\r\nNationality: Filipino\r\nPermanentAddress1: 1253\r\nPermanentAddress2: N/A\r\nPermanentBarangay: KUMINTANG IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ONA ROAD EXTENSION\r\nPermanentZipCode: 4200\r\nPhilhealth: 01-026505269-5\r\nProvince: BATANGAS\r\nReligion: ROMAN CATHOLIC\r\nSalutation: Mr.\r\nSSS: 34-8657493-7\r\nStreetName: ONA ROAD EXTENSION\r\nTIN: 746-791-991-0000\r\nWeight: 80\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 1253\r\nAddress2: \r\nBarangay: KUMINTANG IBABA\r\nBasicInformationId: 3600\r\nBirthDate: April 10, 1999\r\nBirthPlace: CALOOCAN CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: \r\nExtensionName: \r\nFirstName: MATT RIVEN\r\nFullName: MATT RIVEN DR. BEDIO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: 1212-5608-9438\r\nHeight: 171\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BEDIO\r\nMaidenName: \r\nMiddleName: DE REAL\r\nMobileNumber: 09673679096\r\nNationality: Filipino\r\nPermanentAddress1: 1253\r\nPermanentAddress2: N/A\r\nPermanentBarangay: KUMINTANG IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ONA ROAD EXTENSION\r\nPermanentZipCode: 4200\r\nPhilhealth: 01-026505269-5\r\nProvince: BATANGAS\r\nReligion: ROMAN CATHOLIC\r\nSalutation: \r\nSSS: 34-8657493-7\r\nStreetName: ONA ROAD EXTENSION\r\nTIN: 746-791-991-0000\r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
759628	2024-06-07	15:25:12.9966097	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3599\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
759629	2024-06-07	15:25:13.0084296	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 291\r\nAddress2: N/A\r\nBarangay: Gulod Labac\r\nBasicInformationId: 3599\r\nBirthDate: December 30, 1976\r\nBirthPlace: Batangas City\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: Batangas City\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: leah.celemin@deped.gov.ph\r\nExtensionName: N/A\r\nFirstName: LEAH\r\nFullName: LEAH M. CELEMIN N/A\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0434255085\r\nLastName: CELEMIN\r\nMaidenName: \r\nMiddleName: MEDINA\r\nMobileNumber: 09778307399\r\nNationality: Filipino\r\nPermanentAddress1: 291\r\nPermanentAddress2: N/A\r\nPermanentBarangay: Gulod Labac\r\nPermanentCity: Batangas City\r\nPermanentCountry: Philippines\r\nPermanentProvince: Batangas\r\nPermanentStreetName: N/A\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: Batangas\r\nReligion: Christian\r\nSalutation: Ms.\r\nSSS: \r\nStreetName: N/A\r\nTIN: \r\nWeight: 56\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 291\r\nAddress2: N/A\r\nBarangay: Gulod Labac\r\nBasicInformationId: 3599\r\nBirthDate: December 30, 1976\r\nBirthPlace: Batangas City\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: Batangas City\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: leah.celemin@deped.gov.ph\r\nExtensionName: \r\nFirstName: LEAH\r\nFullName: LEAH M. CELEMIN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0434255085\r\nLastName: CELEMIN\r\nMaidenName: \r\nMiddleName: MEDINA\r\nMobileNumber: 09778307399\r\nNationality: Filipino\r\nPermanentAddress1: 291\r\nPermanentAddress2: N/A\r\nPermanentBarangay: Gulod Labac\r\nPermanentCity: Batangas City\r\nPermanentCountry: Philippines\r\nPermanentProvince: Batangas\r\nPermanentStreetName: N/A\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: Batangas\r\nReligion: Christian\r\nSalutation: \r\nSSS: \r\nStreetName: N/A\r\nTIN: \r\nWeight: 56\r\nZipCode: 4200\r\n	admin	BasicInformation	1
759630	2024-06-07	15:35:42.7376674	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: N/A\r\nBasicInformationId: 3599\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1983\r\nDateTo: 1989\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: Batangas City East Elementary School\r\nYearGraduated: 1989\r\n	admin	EducationalBackgrounds	1
759631	2024-06-07	15:35:42.7486305	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: N/A\r\nBasicInformationId: 3599\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1989\r\nDateTo: 1993\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: Western Philippine Colleges\r\nYearGraduated: 1993\r\n	admin	EducationalBackgrounds	1
759632	2024-06-07	15:35:42.7526171	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: N/A\r\nBasicInformationId: 3599\r\nCourse: \r\nCourseId: 1247\r\nCourseOrMajor: \r\nDateFrom: 1995\r\nDateTo: 1998\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: Computer Application\r\nSchoolorUniversity: University of Batangas\r\nYearGraduated: 1998\r\n	admin	EducationalBackgrounds	1
759633	2024-06-07	15:35:42.7576008	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3599\r\nBirthDate: April 05, 1945\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: Vicente\r\nFullName: Vicente Cueto Celemin (Deceased)\r\nGender: Male\r\nLastName: Celemin (Deceased)\r\nMaidenName: \r\nMiddleName: Cueto\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
759634	2024-06-07	15:35:42.7655740	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3599\r\nBirthDate: March 30, 1951\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: Maria Rosemarie\r\nFullName: Maria Rosemarie Pentinio Medina\r\nGender: Male\r\nLastName: Medina\r\nMaidenName: \r\nMiddleName: Pentinio\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
759635	2024-06-07	15:35:42.7695608	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3599\r\nDateOfExamination: November 07, 1999\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: November 07, 1999\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: N/A\r\nPlaceOfExamination: Batangas National High School\r\nRating: 81.89\r\nTitle: Civil Service Eligibility\r\n	admin	Eligibilities	1
759636	2024-06-07	15:35:42.7735472	<Undetected>	Update	BasicInformationId: 3599\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3397\r\n	BasicInformationId: 3599\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3397\r\n	admin	Questionnaires	1
759637	2024-06-07	15:46:53.7052414	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: Bachelor of Science in Industrial Engineering\r\nLevel: College\r\n	admin	Courses	1
759638	2024-06-07	15:52:44.6283253	<Undetected>	Insert	ApplicationStatus: \r\nApproverBasicInformationId: \r\nBasicInformationId: \r\nDateApproved: \r\nDateCreated: \r\nDateHired: \r\nEffectivityDate: \r\nEmploymentStatusId: \r\nEncoderBasicInformationId: \r\nFromStep: \r\nJobVacancyId: \r\nNonPlantillaRecordId: \r\nPersonnelActionMemoId: \r\nPlantillaRecordId: \r\nPositionId: \r\nPurposeOfMovement: \r\nRateTypeId: \r\nRemarks: \r\nSalaryRate: \r\nStatus: \r\nToStep: \r\nValue: \r\n	ApplicationStatus: Pending\r\nApproverBasicInformationId: 0\r\nBasicInformationId: 3600\r\nDateApproved: January 01, 0001\r\nDateCreated: June 07, 2024\r\nDateHired: January 01, 0001\r\nEffectivityDate: January 01, 0001\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nFromStep: 0\r\nJobVacancyId: 381\r\nNonPlantillaRecordId: 0\r\nPersonnelActionMemoId: 0\r\nPlantillaRecordId: 0\r\nPositionId: 101\r\nPurposeOfMovement: New Employee\r\nRateTypeId: 2\r\nRemarks: \r\nSalaryRate: 194400.00\r\nStatus: Pending\r\nToStep: 1\r\nValue: 0\r\n	admin	PersonnelActionMemos	1
761859	2024-07-05	08:59:15.0678936	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3642\r\nSkillId: 0\r\nSkillName: BASIC AUTO MECHANIC\r\n	admin	Skills	1
759639	2024-06-07	16:02:40.7620511	<Undetected>	Insert	ApplicationStatus: \r\nApproverBasicInformationId: \r\nBasicInformationId: \r\nDateApproved: \r\nDateCreated: \r\nDateHired: \r\nEffectivityDate: \r\nEmploymentStatusId: \r\nEncoderBasicInformationId: \r\nFromStep: \r\nJobVacancyId: \r\nNonPlantillaRecordId: \r\nPersonnelActionMemoId: \r\nPlantillaRecordId: \r\nPositionId: \r\nPurposeOfMovement: \r\nRateTypeId: \r\nRemarks: \r\nSalaryRate: \r\nStatus: \r\nToStep: \r\nValue: \r\n	ApplicationStatus: Pending\r\nApproverBasicInformationId: 0\r\nBasicInformationId: 3599\r\nDateApproved: January 01, 0001\r\nDateCreated: June 07, 2024\r\nDateHired: January 01, 0001\r\nEffectivityDate: January 01, 0001\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nFromStep: 0\r\nJobVacancyId: 377\r\nNonPlantillaRecordId: 0\r\nPersonnelActionMemoId: 0\r\nPlantillaRecordId: 0\r\nPositionId: 1653\r\nPurposeOfMovement: New Employee\r\nRateTypeId: 2\r\nRemarks: \r\nSalaryRate: 402900.00\r\nStatus: Pending\r\nToStep: 1\r\nValue: 0\r\n	admin	PersonnelActionMemos	1
759640	2024-06-07	16:03:14.0806444	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: Kumintang Ilaya\r\nBasicInformationId: 0\r\nBirthDate: April 14, 1994\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: Batangas\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: maybellepagcaliwagan@gmail.com\r\nExtensionName: \r\nFirstName: MAYBELLE\r\nFullName: MAYBELLE P. LONTOC\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 151\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437221699\r\nLastName: LONTOC\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nMobileNumber: 09276123447\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: Kumintang Ilaya\r\nPermanentCity: Batangas\r\nPermanentCountry: Philippines\r\nPermanentProvince: Batangas\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: Batangas\r\nReligion: CHRISTIAN\r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 58\r\nZipCode: 4200\r\n	admin	BasicInformation	1
759641	2024-06-07	16:11:08.8179412	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 291\r\nAddress2: N/A\r\nBarangay: Gulod Labac\r\nBasicInformationId: 3599\r\nBirthDate: December 30, 1976\r\nBirthPlace: Batangas City\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: Batangas City\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: leah.celemin@deped.gov.ph\r\nExtensionName: \r\nFirstName: LEAH\r\nFullName: LEAH M. CELEMIN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0434255085\r\nLastName: CELEMIN\r\nMaidenName: \r\nMiddleName: MEDINA\r\nMobileNumber: 09778307399\r\nNationality: Filipino\r\nPermanentAddress1: 291\r\nPermanentAddress2: N/A\r\nPermanentBarangay: Gulod Labac\r\nPermanentCity: Batangas City\r\nPermanentCountry: Philippines\r\nPermanentProvince: Batangas\r\nPermanentStreetName: N/A\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: Batangas\r\nReligion: Christian\r\nSalutation: \r\nSSS: \r\nStreetName: N/A\r\nTIN: \r\nWeight: 56\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 291\r\nAddress2: N/A\r\nBarangay: Gulod Labac\r\nBasicInformationId: 3599\r\nBirthDate: December 30, 1976\r\nBirthPlace: Batangas City\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: Batangas City\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: leah.celemin@deped.gov.ph\r\nExtensionName: \r\nFirstName: LEAH\r\nFullName: LEAH M. CELEMIN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0434255085\r\nLastName: CELEMIN\r\nMaidenName: \r\nMiddleName: MEDINA\r\nMobileNumber: 09778307399\r\nNationality: Filipino\r\nPermanentAddress1: 291\r\nPermanentAddress2: N/A\r\nPermanentBarangay: Gulod Labac\r\nPermanentCity: Batangas City\r\nPermanentCountry: Philippines\r\nPermanentProvince: Batangas\r\nPermanentStreetName: N/A\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: Batangas\r\nReligion: Christian\r\nSalutation: Ms.\r\nSSS: \r\nStreetName: N/A\r\nTIN: \r\nWeight: 56\r\nZipCode: 4200\r\n	admin	BasicInformation	1
759642	2024-06-07	16:11:08.8219279	<Undetected>	Update	BasicInformationId: 3599\r\nBirthDate: April 05, 1945\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3259\r\nExtensionName: \r\nFirstName: Vicente\r\nFullName: Vicente Cueto Celemin (Deceased)\r\nGender: Male\r\nLastName: Celemin (Deceased)\r\nMaidenName: \r\nMiddleName: Cueto\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3599\r\nBirthDate: April 05, 1945\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3259\r\nExtensionName: \r\nFirstName: Vicente\r\nFullName: Vicente Celemin (Deceased)\r\nGender: Male\r\nLastName: Celemin (Deceased)\r\nMaidenName: \r\nMiddleName: Cueto\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
759643	2024-06-07	16:11:08.8340032	<Undetected>	Update	BasicInformationId: 3599\r\nBirthDate: March 30, 1951\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3260\r\nExtensionName: \r\nFirstName: Maria Rosemarie\r\nFullName: Maria Rosemarie Pentinio Medina\r\nGender: Male\r\nLastName: Medina\r\nMaidenName: \r\nMiddleName: Pentinio\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3599\r\nBirthDate: March 30, 1951\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3260\r\nExtensionName: \r\nFirstName: Maria Rosemarie\r\nFullName: Maria Rosemarie Medina\r\nGender: Male\r\nLastName: Medina\r\nMaidenName: \r\nMiddleName: Pentinio\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
759644	2024-06-07	16:12:46.3339772	<Undetected>	Insert	ApplicationStatus: \r\nApproverBasicInformationId: \r\nBasicInformationId: \r\nDateApproved: \r\nDateCreated: \r\nDateHired: \r\nEffectivityDate: \r\nEmploymentStatusId: \r\nEncoderBasicInformationId: \r\nFromStep: \r\nJobVacancyId: \r\nNonPlantillaRecordId: \r\nPersonnelActionMemoId: \r\nPlantillaRecordId: \r\nPositionId: \r\nPurposeOfMovement: \r\nRateTypeId: \r\nRemarks: \r\nSalaryRate: \r\nStatus: \r\nToStep: \r\nValue: \r\n	ApplicationStatus: Pending\r\nApproverBasicInformationId: 0\r\nBasicInformationId: 3601\r\nDateApproved: January 01, 0001\r\nDateCreated: June 07, 2024\r\nDateHired: January 01, 0001\r\nEffectivityDate: January 01, 0001\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nFromStep: 0\r\nJobVacancyId: 380\r\nNonPlantillaRecordId: 0\r\nPersonnelActionMemoId: 0\r\nPlantillaRecordId: 0\r\nPositionId: 1994\r\nPurposeOfMovement: New Employee\r\nRateTypeId: 2\r\nRemarks: \r\nSalaryRate: 219012.00\r\nStatus: Pending\r\nToStep: 1\r\nValue: 0\r\n	admin	PersonnelActionMemos	1
759645	2024-06-07	16:28:00.9484821	<Undetected>	Update	AbsentValueType: Equivalent\r\nAdministrativeDivision: Provincial\r\nAgencyAddress: Batangas City\r\nAllowanceAccountCode: \r\nAreaCode: 4200\r\nBarangay:  6\r\nBasicPayRoundOffRule: Truncate. Don't round off\r\nCityOrMunicipality: Batangas\r\nCompanyCellphone: \r\nCompanyEmail: \r\nCompanyLogo: \r\nCompanyName: DepEd Batangas City\r\nCompanyTelephone: \r\nCompanyWebsite: \r\nCountryName: Philippines\r\nDailyWagePayrollFormat: Format 3\r\nDefaultDepartmentToLoad: ALL\r\nDepartmentTitle: Division\r\nDivisionTitle: Section\r\nECCMaxValue: 100\r\nECCPercentage: 0.01\r\nEligibilityExpiryWarningDays: 4\r\nEmployeeListArrangement: EMPLOYEE NO.\r\nEmployerPhilhealthNo: \r\nEmployerSSSNo: \r\nEmployerTIN: \r\nGeneralPayrollFormat: Format 2\r\nGsisAccountCode: \r\nGsisEccAccountCode: \r\nHazardPayAccountCode: \r\nHdmfAccountCode: \r\nHDMFYear: January 01, 2014\r\nIsCity: True\r\nIsIncludeHoliday: False\r\nIsUsingWithholdingTax: False\r\nJobOrderFilterType: By Cluster\r\nLaundryAccountCode: \r\nLeaveApplicationReportFormat: Format 5\r\nMainImagePath: N:\\\\\\\\\r\nMinimumWage: 300.00\r\nNetPayGreaterHalfAllocation: 16-30\r\nObligationRequestReportFormat: Format 1\r\nOvertimeValueType: Equivalent\r\nPayrollSummaryFormat: Format 2\r\nPayslipFormat: Format 3\r\nPhilHealthAccountCode: \r\nPhilHealthYear: January 01, 2020\r\nPlantillaRecordsReportFormat: Format 2\r\nProvince: BATANGAS\r\nSalaryAccountCode: \r\nSavePayrollChangesToProfileJobOrder: True\r\nSavePayrollChangesToProfilePermanent: True\r\nSectionTitle: Unit\r\nServiceRecordReportFormat: Format 2\r\nSSSYear: January 01, 2014\r\nSubsistenceAccountCode: \r\nSystemParameterId: 1\r\nTardinessValueType: Equivalent\r\nTaxableBonus: 90000.00\r\nWebcamActivated: True\r\nWithholdingTaxYear: January 01, 2018\r\nZipCode: 4200\r\n	AbsentValueType: Equivalent\r\nAdministrativeDivision: Provincial\r\nAgencyAddress: Batangas City\r\nAllowanceAccountCode: \r\nAreaCode: 4200\r\nBarangay:  6\r\nBasicPayRoundOffRule: Truncate. Don't round off\r\nCityOrMunicipality: Batangas\r\nCompanyCellphone: \r\nCompanyEmail: \r\nCompanyLogo: DepEd Batangas City.png\r\nCompanyName: DepEd Batangas City\r\nCompanyTelephone: \r\nCompanyWebsite: \r\nCountryName: Philippines\r\nDailyWagePayrollFormat: Format 3\r\nDefaultDepartmentToLoad: ALL\r\nDepartmentTitle: Division\r\nDivisionTitle: Section\r\nECCMaxValue: 100\r\nECCPercentage: 0.01\r\nEligibilityExpiryWarningDays: 4\r\nEmployeeListArrangement: EMPLOYEE NO.\r\nEmployerPhilhealthNo: \r\nEmployerSSSNo: \r\nEmployerTIN: \r\nGeneralPayrollFormat: Format 2\r\nGsisAccountCode: \r\nGsisEccAccountCode: \r\nHazardPayAccountCode: \r\nHdmfAccountCode: \r\nHDMFYear: January 01, 2014\r\nIsCity: True\r\nIsIncludeHoliday: False\r\nIsUsingWithholdingTax: False\r\nJobOrderFilterType: By Cluster\r\nLaundryAccountCode: \r\nLeaveApplicationReportFormat: Format 5\r\nMainImagePath: N:\\\\\\\\\r\nMinimumWage: 300.00\r\nNetPayGreaterHalfAllocation: 16-30\r\nObligationRequestReportFormat: Format 1\r\nOvertimeValueType: Equivalent\r\nPayrollSummaryFormat: Format 2\r\nPayslipFormat: Format 3\r\nPhilHealthAccountCode: \r\nPhilHealthYear: January 01, 2020\r\nPlantillaRecordsReportFormat: Format 2\r\nProvince: BATANGAS\r\nSalaryAccountCode: \r\nSavePayrollChangesToProfileJobOrder: True\r\nSavePayrollChangesToProfilePermanent: True\r\nSectionTitle: Unit\r\nServiceRecordReportFormat: Format 2\r\nSSSYear: January 01, 2014\r\nSubsistenceAccountCode: \r\nSystemParameterId: 1\r\nTardinessValueType: Equivalent\r\nTaxableBonus: 90000.00\r\nWebcamActivated: True\r\nWithholdingTaxYear: January 01, 2018\r\nZipCode: 4200\r\n	admin	SystemParameters	1
759646	2024-06-07	16:30:38.3485166	<Undetected>	Update	ApplicationStatus: Pending\r\nApproverBasicInformationId: 0\r\nBasicInformationId: 3599\r\nDateApproved: January 01, 0001\r\nDateCreated: June 07, 2024\r\nDateHired: January 01, 0001\r\nEffectivityDate: January 01, 0001\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nFromStep: 0\r\nJobVacancyId: 377\r\nNonPlantillaRecordId: 0\r\nPersonnelActionMemoId: 2280\r\nPlantillaRecordId: 0\r\nPositionId: 1653\r\nPurposeOfMovement: New Employee\r\nRateTypeId: 2\r\nRemarks: \r\nSalaryRate: 402900.00\r\nStatus: Pending\r\nToStep: 1\r\nValue: 0\r\n	ApplicationStatus: \r\nApproverBasicInformationId: 0\r\nBasicInformationId: 3599\r\nDateApproved: January 01, 0001\r\nDateCreated: June 07, 2024\r\nDateHired: January 01, 0001\r\nEffectivityDate: January 01, 0001\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nFromStep: 0\r\nJobVacancyId: 377\r\nNonPlantillaRecordId: 0\r\nPersonnelActionMemoId: 2280\r\nPlantillaRecordId: 1152\r\nPositionId: 1653\r\nPurposeOfMovement: New Employee\r\nRateTypeId: 2\r\nRemarks: \r\nSalaryRate: 402900.00\r\nStatus: Pending\r\nToStep: 1\r\nValue: 0\r\n	admin	PersonnelActionMemos	1
759647	2024-06-07	16:32:04.9987498	<Undetected>	Insert	BasicInformationId: \r\nBiometricIdString: \r\nEmployeeId: \r\nEmployeeNumber: \r\nFingerprintBytes: \r\nFingerprintDataKiosk: \r\nFingerprintDataString: \r\nFingerprintTemplateFilePath: \r\n	BasicInformationId: 3599\r\nBiometricIdString: \r\nEmployeeId: 0\r\nEmployeeNumber: 10000001\r\nFingerprintBytes: \r\nFingerprintDataKiosk: \r\nFingerprintDataString: \r\nFingerprintTemplateFilePath: \r\n	admin	Employees	1
759648	2024-06-07	16:32:05.0506125	<Undetected>	Insert	DateOfMovement: \r\nDepartmentId: \r\nDivisionId: \r\nEmployeeId: \r\nItemNumber: \r\nMovementType: \r\nPlantillaRecordEntryId: \r\nPlantillaRecordId: \r\nPlantillaYear: \r\nPositionId: \r\nReasonOfSeparation: \r\nSalaryGradeId: \r\nScrapBuildFromPlantillaId: \r\nSectionId: \r\n	DateOfMovement: January 01, 2024\r\nDepartmentId: 125\r\nDivisionId: 164\r\nEmployeeId: 2745\r\nItemNumber: 1-11\r\nMovementType: Appointed\r\nPlantillaRecordEntryId: 0\r\nPlantillaRecordId: 1152\r\nPlantillaYear: 2024\r\nPositionId: 1653\r\nReasonOfSeparation: \r\nSalaryGradeId: 0\r\nScrapBuildFromPlantillaId: 0\r\nSectionId: 4\r\n	admin	PlantillaRecordEntries	1
768132	2025-03-12	09:02:13.4077654	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3728\r\nSkillId: 0\r\nSkillName: SKIRTING\r\n	admin	Skills	1
759649	2024-06-07	16:32:05.0506125	<Undetected>	Insert	DateEnded: \r\nDateStarted: \r\nDepartmentId: \r\nDetailedDepartmentId: \r\nDetailedDivisionId: \r\nDetailedSectionId: \r\nDivisionId: \r\nEmployeeId: \r\nEmploymentStatusId: \r\nNonPlantillaItemId: \r\nPersonnelActionMemoId: \r\nPlantillaRecordId: \r\nPositionId: \r\nRateTypeId: \r\nRemarks: \r\nSalaryGradeAnnex: \r\nSalaryGradeNo: \r\nSalaryRate: \r\nSectionId: \r\nServiceRecordId: \r\nStep: \r\nUseOldName: \r\nUseOldNameDetailed: \r\n	DateEnded: January 01, 0001\r\nDateStarted: January 01, 2024\r\nDepartmentId: 125\r\nDetailedDepartmentId: 0\r\nDetailedDivisionId: 0\r\nDetailedSectionId: 0\r\nDivisionId: 164\r\nEmployeeId: 2745\r\nEmploymentStatusId: 1\r\nNonPlantillaItemId: 0\r\nPersonnelActionMemoId: 2280\r\nPlantillaRecordId: 1152\r\nPositionId: 1653\r\nRateTypeId: 2\r\nRemarks: \r\nSalaryGradeAnnex: A1\r\nSalaryGradeNo: 15\r\nSalaryRate: 402900.00\r\nSectionId: 4\r\nServiceRecordId: 0\r\nStep: 1\r\nUseOldName: False\r\nUseOldNameDetailed: False\r\n	admin	ServiceRecords	1
759650	2024-06-07	16:32:05.0506125	<Undetected>	Update	ApplicationStatus: \r\nApproverBasicInformationId: 0\r\nBasicInformationId: 3599\r\nDateApproved: January 01, 0001\r\nDateCreated: June 07, 2024\r\nDateHired: January 01, 0001\r\nEffectivityDate: January 01, 0001\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nFromStep: 0\r\nJobVacancyId: 377\r\nNonPlantillaRecordId: 0\r\nPersonnelActionMemoId: 2280\r\nPlantillaRecordId: 1152\r\nPositionId: 1653\r\nPurposeOfMovement: New Employee\r\nRateTypeId: 2\r\nRemarks: \r\nSalaryRate: 402900.00\r\nStatus: Pending\r\nToStep: 1\r\nValue: 0\r\n	ApplicationStatus: \r\nApproverBasicInformationId: 1\r\nBasicInformationId: 3599\r\nDateApproved: June 07, 2024\r\nDateCreated: June 07, 2024\r\nDateHired: January 01, 2024\r\nEffectivityDate: January 01, 2024\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nFromStep: 0\r\nJobVacancyId: 377\r\nNonPlantillaRecordId: 0\r\nPersonnelActionMemoId: 2280\r\nPlantillaRecordId: 1152\r\nPositionId: 1653\r\nPurposeOfMovement: New Employee\r\nRateTypeId: 2\r\nRemarks: \r\nSalaryRate: 402900.00\r\nStatus: Approved\r\nToStep: 1\r\nValue: 0\r\n	admin	PersonnelActionMemos	1
759651	2024-06-07	16:32:05.1099528	<Undetected>	Update	ClosingDate: June 30, 2024\r\nDateCreated: June 07, 2024\r\nDateEnded: January 01, 0001\r\nDepartmentId: 125\r\nDivisionId: 164\r\nDuration: 0\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nIsActive: True\r\nIsPlantilla: True\r\nJobDescription: AOIV\r\nJobVacancyId: 377\r\nPositionId: 1653\r\nRateTypeId: 4\r\nSalaryGradeAnnex: A1\r\nSalaryGradeEffectivity: January 01, 2021\r\nSalaryRate: 33575.00\r\nSectionId: 4\r\nSlot: 1\r\n	ClosingDate: June 30, 2024\r\nDateCreated: June 07, 2024\r\nDateEnded: January 01, 0001\r\nDepartmentId: 125\r\nDivisionId: 164\r\nDuration: 0\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nIsActive: False\r\nIsPlantilla: True\r\nJobDescription: AOIV\r\nJobVacancyId: 377\r\nPositionId: 1653\r\nRateTypeId: 4\r\nSalaryGradeAnnex: A1\r\nSalaryGradeEffectivity: January 01, 2021\r\nSalaryRate: 33575.00\r\nSectionId: 4\r\nSlot: 1\r\n	admin	JobVacancies	1
759652	2024-06-07	16:32:06.6681826	<Undetected>	Insert	Allowance01Amount: \r\nAllowance01Cutoff: \r\nAllowance01Id: \r\nAllowance02Amount: \r\nAllowance02Cutoff: \r\nAllowance02Id: \r\nAllowance03Amount: \r\nAllowance03Cutoff: \r\nAllowance03Id: \r\nAllowance04Amount: \r\nAllowance04Cutoff: \r\nAllowance04Id: \r\nAllowance05Amount: \r\nAllowance05Cutoff: \r\nAllowance05Id: \r\nAllowance06Amount: \r\nAllowance06Cutoff: \r\nAllowance06Id: \r\nAllowance07Amount: \r\nAllowance07Cutoff: \r\nAllowance07Id: \r\nAllowance08Amount: \r\nAllowance08Cutoff: \r\nAllowance08Id: \r\nAllowance09Amount: \r\nAllowance09Cutoff: \r\nAllowance09Id: \r\nAllowance10Amount: \r\nAllowance10Cutoff: \r\nAllowance10Id: \r\nClusterName: \r\nDailyRate: \r\nDeduction01Amount: \r\nDeduction01Cutoff: \r\nDeduction01Id: \r\nDeduction02Amount: \r\nDeduction02Cutoff: \r\nDeduction02Id: \r\nDeduction03Amount: \r\nDeduction03Cutoff: \r\nDeduction03Id: \r\nDeduction04Amount: \r\nDeduction04Cutoff: \r\nDeduction04Id: \r\nDeduction05Amount: \r\nDeduction05Cutoff: \r\nDeduction05Id: \r\nDeduction06Amount: \r\nDeduction06Cutoff: \r\nDeduction06Id: \r\nDeduction07Amount: \r\nDeduction07Cutoff: \r\nDeduction07Id: \r\nDeduction08Amount: \r\nDeduction08Cutoff: \r\nDeduction08Id: \r\nDeduction09Amount: \r\nDeduction09Cutoff: \r\nDeduction09Id: \r\nDeduction10Amount: \r\nDeduction10Cutoff: \r\nDeduction10Id: \r\nDoubleHolidayHourlyNdRate: \r\nDoubleHolidayHourlyOtNdRate: \r\nDoubleHolidayHourlyOtRate: \r\nDoubleHolidayHourlyRate: \r\nDoubleHolidayHourlyRestDayNdRate: \r\nDoubleHolidayHourlyRestDayOtNdRate: \r\nDoubleHolidayHourlyRestDayOtRate: \r\nDoubleHolidayHourlyRestDayRate: \r\nEmployeeId: \r\nGsisEccAmount: \r\nGsisGsAmount: \r\nGsisPsAmount: \r\nHalfMonthRate: \r\nHdmfGsAmount: \r\nHdmfPsAmount: \r\nHourlyNdRate: \r\nHourlyOtNdRate: \r\nHourlyOtRate: \r\nHourlyRate: \r\nHourlyRestDayNdRate: \r\nHourlyRestDayOtNdRate: \r\nHourlyRestDayOtRate: \r\nHourlyRestDayRate: \r\nIsGsisCustom: \r\nIsHdmfCustom: \r\nIsPhilHealthCustom: \r\nIsSssCustom: \r\nLoan01Amount: \r\nLoan01Cutoff: \r\nLoan01Id: \r\nLoan02Amount: \r\nLoan02Cutoff: \r\nLoan02Id: \r\nLoan03Amount: \r\nLoan03Cutoff: \r\nLoan03Id: \r\nLoan04Amount: \r\nLoan04Cutoff: \r\nLoan04Id: \r\nLoan05Amount: \r\nLoan05Cutoff: \r\nLoan05Id: \r\nLoan06Amount: \r\nLoan06Cutoff: \r\nLoan06Id: \r\nLoan07Amount: \r\nLoan07Cutoff: \r\nLoan07Id: \r\nLoan08Amount: \r\nLoan08Cutoff: \r\nLoan08Id: \r\nLoan09Amount: \r\nLoan09Cutoff: \r\nLoan09Id: \r\nLoan10Amount: \r\nLoan10Cutoff: \r\nLoan10Id: \r\nLoan11Amount: \r\nLoan11Cutoff: \r\nLoan11Id: \r\nLoan12Amount: \r\nLoan12Cutoff: \r\nLoan12Id: \r\nLoan13Amount: \r\nLoan13Cutoff: \r\nLoan13Id: \r\nLoan14Amount: \r\nLoan14Cutoff: \r\nLoan14Id: \r\nLoan15Amount: \r\nLoan15Cutoff: \r\nLoan15Id: \r\nLoan16Amount: \r\nLoan16Cutoff: \r\nLoan16Id: \r\nLoan17Amount: \r\nLoan17Cutoff: \r\nLoan17Id: \r\nLoan18Amount: \r\nLoan18Cutoff: \r\nLoan18Id: \r\nLoan19Amount: \r\nLoan19Cutoff: \r\nLoan19Id: \r\nLoan20Amount: \r\nLoan20Cutoff: \r\nLoan20Id: \r\nMonthlyRate: \r\nPayrollProfileId: \r\nPhilHealthGsAmount: \r\nPhilHealthPsAmount: \r\nRegularHolidayHourlyNdRate: \r\nRegularHolidayHourlyOtNdRate: \r\nRegularHolidayHourlyOtRate: \r\nRegularHolidayHourlyRate: \r\nRegularHolidayHourlyRestDayNdRate: \r\nRegularHolidayHourlyRestDayOtNdRate: \r\nRegularHolidayHourlyRestDayOtRate: \r\nRegularHolidayHourlyRestDayRate: \r\nSpecialHolidayHourlyNdRate: \r\nSpecialHolidayHourlyOtNdRate: \r\nSpecialHolidayHourlyOtRate: \r\nSpecialHolidayHourlyRate: \r\nSpecialHolidayHourlyRestDayNdRate: \r\nSpecialHolidayHourlyRestDayOtNdRate: \r\nSpecialHolidayHourlyRestDayOtRate: \r\nSpecialHolidayHourlyRestDayRate: \r\nSssEeAmount: \r\nSssErAmount: \r\nWithholdingTaxAmount: \r\nWithholdingTaxComputation: \r\n	Allowance01Amount: 0\r\nAllowance01Cutoff: None\r\nAllowance01Id: 0\r\nAllowance02Amount: 0\r\nAllowance02Cutoff: None\r\nAllowance02Id: 0\r\nAllowance03Amount: 0\r\nAllowance03Cutoff: None\r\nAllowance03Id: 0\r\nAllowance04Amount: 0\r\nAllowance04Cutoff: None\r\nAllowance04Id: 0\r\nAllowance05Amount: 0\r\nAllowance05Cutoff: None\r\nAllowance05Id: 0\r\nAllowance06Amount: 0\r\nAllowance06Cutoff: None\r\nAllowance06Id: 0\r\nAllowance07Amount: 0\r\nAllowance07Cutoff: None\r\nAllowance07Id: 0\r\nAllowance08Amount: 0\r\nAllowance08Cutoff: None\r\nAllowance08Id: 0\r\nAllowance09Amount: 0\r\nAllowance09Cutoff: None\r\nAllowance09Id: 0\r\nAllowance10Amount: 0\r\nAllowance10Cutoff: None\r\nAllowance10Id: 0\r\nClusterName: \r\nDailyRate: 1119.1666666666666666666666667\r\nDeduction01Amount: 0\r\nDeduction01Cutoff: None\r\nDeduction01Id: 0\r\nDeduction02Amount: 0\r\nDeduction02Cutoff: None\r\nDeduction02Id: 0\r\nDeduction03Amount: 0\r\nDeduction03Cutoff: None\r\nDeduction03Id: 0\r\nDeduction04Amount: 0\r\nDeduction04Cutoff: None\r\nDeduction04Id: 0\r\nDeduction05Amount: 0\r\nDeduction05Cutoff: None\r\nDeduction05Id: 0\r\nDeduction06Amount: 0\r\nDeduction06Cutoff: None\r\nDeduction06Id: 0\r\nDeduction07Amount: 0\r\nDeduction07Cutoff: None\r\nDeduction07Id: 0\r\nDeduction08Amount: 0\r\nDeduction08Cutoff: None\r\nDeduction08Id: 0\r\nDeduction09Amount: 0\r\nDeduction09Cutoff: None\r\nDeduction09Id: 0\r\nDeduction10Amount: 0\r\nDeduction10Cutoff: None\r\nDeduction10Id: 0\r\nDoubleHolidayHourlyNdRate: 0\r\nDoubleHolidayHourlyOtNdRate: 0\r\nDoubleHolidayHourlyOtRate: 0\r\nDoubleHolidayHourlyRate: 0\r\nDoubleHolidayHourlyRestDayNdRate: 0\r\nDoubleHolidayHourlyRestDayOtNdRate: 0\r\nDoubleHolidayHourlyRestDayOtRate: 0\r\nDoubleHolidayHourlyRestDayRate: 0\r\nEmployeeId: 2745\r\nGsisEccAmount: 0\r\nGsisGsAmount: 0\r\nGsisPsAmount: 0\r\nHalfMonthRate: 16787.50\r\nHdmfGsAmount: 0\r\nHdmfPsAmount: 0\r\nHourlyNdRate: 139.89583333333333333333333334\r\nHourlyOtNdRate: 174.86979166666666666666666668\r\nHourlyOtRate: 174.86979166666666666666666668\r\nHourlyRate: 139.89583333333333333333333334\r\nHourlyRestDayNdRate: 209.84375000000000000000000001\r\nHourlyRestDayOtNdRate: 262.30468750000000000000000001\r\nHourlyRestDayOtRate: 262.30468750000000000000000001\r\nHourlyRestDayRate: 209.84375000000000000000000001\r\nIsGsisCustom: False\r\nIsHdmfCustom: False\r\nIsPhilHealthCustom: False\r\nIsSssCustom: False\r\nLoan01Amount: 0\r\nLoan01Cutoff: None\r\nLoan01Id: 0\r\nLoan02Amount: 0\r\nLoan02Cutoff: None\r\nLoan02Id: 0\r\nLoan03Amount: 0\r\nLoan03Cutoff: None\r\nLoan03Id: 0\r\nLoan04Amount: 0\r\nLoan04Cutoff: None\r\nLoan04Id: 0\r\nLoan05Amount: 0\r\nLoan05Cutoff: None\r\nLoan05Id: 0\r\nLoan06Amount: 0\r\nLoan06Cutoff: None\r\nLoan06Id: 0\r\nLoan07Amount: 0\r\nLoan07Cutoff: None\r\nLoan07Id: 0\r\nLoan08Amount: 0\r\nLoan08Cutoff: None\r\nLoan08Id: 0\r\nLoan09Amount: 0\r\nLoan09Cutoff: None\r\nLoan09Id: 0\r\nLoan10Amount: 0\r\nLoan10Cutoff: None\r\nLoan10Id: 0\r\nLoan11Amount: 0\r\nLoan11Cutoff: None\r\nLoan11Id: 0\r\nLoan12Amount: 0\r\nLoan12Cutoff: None\r\nLoan12Id: 0\r\nLoan13Amount: 0\r\nLoan13Cutoff: None\r\nLoan13Id: 0\r\nLoan14Amount: 0\r\nLoan14Cutoff: None\r\nLoan14Id: 0\r\nLoan15Amount: 0\r\nLoan15Cutoff: None\r\nLoan15Id: 0\r\nLoan16Amount: 0\r\nLoan16Cutoff: None\r\nLoan16Id: 0\r\nLoan17Amount: 0\r\nLoan17Cutoff: None\r\nLoan17Id: 0\r\nLoan18Amount: 0\r\nLoan18Cutoff: None\r\nLoan18Id: 0\r\nLoan19Amount: 0\r\nLoan19Cutoff: None\r\nLoan19Id: 0\r\nLoan20Amount: 0\r\nLoan20Cutoff: None\r\nLoan20Id: 0\r\nMonthlyRate: 33575.00\r\nPayrollProfileId: 0\r\nPhilHealthGsAmount: 0\r\nPhilHealthPsAmount: 0\r\nRegularHolidayHourlyNdRate: 139.89583333333333333333333334\r\nRegularHolidayHourlyOtNdRate: 139.89583333333333333333333334\r\nRegularHolidayHourlyOtRate: 139.89583333333333333333333334\r\nRegularHolidayHourlyRate: 139.89583333333333333333333334\r\nRegularHolidayHourlyRestDayNdRate: 209.84375000000000000000000001\r\nRegularHolidayHourlyRestDayOtNdRate: 209.84375000000000000000000001\r\nRegularHolidayHourlyRestDayOtRate: 209.84375000000000000000000001\r\nRegularHolidayHourlyRestDayRate: 209.84375000000000000000000001\r\nSpecialHolidayHourlyNdRate: 139.89583333333333333333333334\r\nSpecialHolidayHourlyOtNdRate: 139.89583333333333333333333334\r\nSpecialHolidayHourlyOtRate: 139.89583333333333333333333334\r\nSpecialHolidayHourlyRate: 139.89583333333333333333333334\r\nSpecialHolidayHourlyRestDayNdRate: 314.76562500000000000000000002\r\nSpecialHolidayHourlyRestDayOtNdRate: 314.76562500000000000000000002\r\nSpecialHolidayHourlyRestDayOtRate: 314.76562500000000000000000002\r\nSpecialHolidayHourlyRestDayRate: 314.76562500000000000000000002\r\nSssEeAmount: 0\r\nSssErAmount: 0\r\nWithholdingTaxAmount: 0\r\nWithholdingTaxComputation: Auto-compute\r\n	admin	PayrollProfiles	1
759653	2024-06-07	16:36:07.5962993	<Undetected>	Update	ApplicationStatus: Pending\r\nApproverBasicInformationId: 0\r\nBasicInformationId: 3600\r\nDateApproved: January 01, 0001\r\nDateCreated: June 07, 2024\r\nDateHired: January 01, 0001\r\nEffectivityDate: January 01, 0001\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nFromStep: 0\r\nJobVacancyId: 381\r\nNonPlantillaRecordId: 0\r\nPersonnelActionMemoId: 2279\r\nPlantillaRecordId: 0\r\nPositionId: 101\r\nPurposeOfMovement: New Employee\r\nRateTypeId: 2\r\nRemarks: \r\nSalaryRate: 194400.00\r\nStatus: Pending\r\nToStep: 1\r\nValue: 0\r\n	ApplicationStatus: \r\nApproverBasicInformationId: 0\r\nBasicInformationId: 3600\r\nDateApproved: January 01, 0001\r\nDateCreated: June 07, 2024\r\nDateHired: January 01, 0001\r\nEffectivityDate: January 01, 0001\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nFromStep: 0\r\nJobVacancyId: 381\r\nNonPlantillaRecordId: 0\r\nPersonnelActionMemoId: 2279\r\nPlantillaRecordId: 1156\r\nPositionId: 101\r\nPurposeOfMovement: New Employee\r\nRateTypeId: 2\r\nRemarks: \r\nSalaryRate: 194400.00\r\nStatus: Pending\r\nToStep: 1\r\nValue: 0\r\n	admin	PersonnelActionMemos	1
759654	2024-06-07	16:36:42.0819145	<Undetected>	Insert	BasicInformationId: \r\nBiometricIdString: \r\nEmployeeId: \r\nEmployeeNumber: \r\nFingerprintBytes: \r\nFingerprintDataKiosk: \r\nFingerprintDataString: \r\nFingerprintTemplateFilePath: \r\n	BasicInformationId: 3600\r\nBiometricIdString: \r\nEmployeeId: 0\r\nEmployeeNumber: 10000002\r\nFingerprintBytes: \r\nFingerprintDataKiosk: \r\nFingerprintDataString: \r\nFingerprintTemplateFilePath: \r\n	admin	Employees	1
759655	2024-06-07	16:36:42.0898933	<Undetected>	Insert	DateOfMovement: \r\nDepartmentId: \r\nDivisionId: \r\nEmployeeId: \r\nItemNumber: \r\nMovementType: \r\nPlantillaRecordEntryId: \r\nPlantillaRecordId: \r\nPlantillaYear: \r\nPositionId: \r\nReasonOfSeparation: \r\nSalaryGradeId: \r\nScrapBuildFromPlantillaId: \r\nSectionId: \r\n	DateOfMovement: January 01, 2024\r\nDepartmentId: 125\r\nDivisionId: 164\r\nEmployeeId: 2746\r\nItemNumber: 1-15\r\nMovementType: Appointed\r\nPlantillaRecordEntryId: 0\r\nPlantillaRecordId: 1156\r\nPlantillaYear: 2024\r\nPositionId: 101\r\nReasonOfSeparation: \r\nSalaryGradeId: 0\r\nScrapBuildFromPlantillaId: 0\r\nSectionId: 4\r\n	admin	PlantillaRecordEntries	1
759664	2024-07-01	08:48:26.1064981	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3602\r\nCourse: \r\nCourseId: 1249\r\nCourseOrMajor: \r\nDateFrom: 2009\r\nDateTo: 2011\r\nEducationalAttainment: Undergraduate\r\nEducationalBackgroundId: 0\r\nLevel: College Under Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
770645	2025-03-17	13:20:07.1898243	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3781\r\nSkillId: 0\r\nSkillName: WILLINGNESS TO LEARN\r\n	admin	Skills	1
759656	2024-06-07	16:36:42.0898933	<Undetected>	Insert	DateEnded: \r\nDateStarted: \r\nDepartmentId: \r\nDetailedDepartmentId: \r\nDetailedDivisionId: \r\nDetailedSectionId: \r\nDivisionId: \r\nEmployeeId: \r\nEmploymentStatusId: \r\nNonPlantillaItemId: \r\nPersonnelActionMemoId: \r\nPlantillaRecordId: \r\nPositionId: \r\nRateTypeId: \r\nRemarks: \r\nSalaryGradeAnnex: \r\nSalaryGradeNo: \r\nSalaryRate: \r\nSectionId: \r\nServiceRecordId: \r\nStep: \r\nUseOldName: \r\nUseOldNameDetailed: \r\n	DateEnded: January 01, 0001\r\nDateStarted: January 01, 2024\r\nDepartmentId: 125\r\nDetailedDepartmentId: 0\r\nDetailedDivisionId: 0\r\nDetailedSectionId: 0\r\nDivisionId: 164\r\nEmployeeId: 2746\r\nEmploymentStatusId: 1\r\nNonPlantillaItemId: 0\r\nPersonnelActionMemoId: 2279\r\nPlantillaRecordId: 1156\r\nPositionId: 101\r\nRateTypeId: 2\r\nRemarks: \r\nSalaryGradeAnnex: A1\r\nSalaryGradeNo: 6\r\nSalaryRate: 194400.00\r\nSectionId: 4\r\nServiceRecordId: 0\r\nStep: 1\r\nUseOldName: False\r\nUseOldNameDetailed: False\r\n	admin	ServiceRecords	1
759657	2024-06-07	16:36:42.0908908	<Undetected>	Update	ApplicationStatus: \r\nApproverBasicInformationId: 0\r\nBasicInformationId: 3600\r\nDateApproved: January 01, 0001\r\nDateCreated: June 07, 2024\r\nDateHired: January 01, 0001\r\nEffectivityDate: January 01, 0001\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nFromStep: 0\r\nJobVacancyId: 381\r\nNonPlantillaRecordId: 0\r\nPersonnelActionMemoId: 2279\r\nPlantillaRecordId: 1156\r\nPositionId: 101\r\nPurposeOfMovement: New Employee\r\nRateTypeId: 2\r\nRemarks: \r\nSalaryRate: 194400.00\r\nStatus: Pending\r\nToStep: 1\r\nValue: 0\r\n	ApplicationStatus: \r\nApproverBasicInformationId: 1\r\nBasicInformationId: 3600\r\nDateApproved: June 07, 2024\r\nDateCreated: June 07, 2024\r\nDateHired: January 01, 2024\r\nEffectivityDate: January 01, 2024\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nFromStep: 0\r\nJobVacancyId: 381\r\nNonPlantillaRecordId: 0\r\nPersonnelActionMemoId: 2279\r\nPlantillaRecordId: 1156\r\nPositionId: 101\r\nPurposeOfMovement: New Employee\r\nRateTypeId: 2\r\nRemarks: \r\nSalaryRate: 194400.00\r\nStatus: Approved\r\nToStep: 1\r\nValue: 0\r\n	admin	PersonnelActionMemos	1
759658	2024-06-07	16:36:42.0998667	<Undetected>	Update	ClosingDate: June 30, 2024\r\nDateCreated: June 07, 2024\r\nDateEnded: January 01, 0001\r\nDepartmentId: 125\r\nDivisionId: 164\r\nDuration: 0\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nIsActive: True\r\nIsPlantilla: True\r\nJobDescription: ADAVI\r\nJobVacancyId: 381\r\nPositionId: 101\r\nRateTypeId: 4\r\nSalaryGradeAnnex: A1\r\nSalaryGradeEffectivity: January 01, 2021\r\nSalaryRate: 16200.00\r\nSectionId: 4\r\nSlot: 1\r\n	ClosingDate: June 30, 2024\r\nDateCreated: June 07, 2024\r\nDateEnded: January 01, 0001\r\nDepartmentId: 125\r\nDivisionId: 164\r\nDuration: 0\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nIsActive: False\r\nIsPlantilla: True\r\nJobDescription: ADAVI\r\nJobVacancyId: 381\r\nPositionId: 101\r\nRateTypeId: 4\r\nSalaryGradeAnnex: A1\r\nSalaryGradeEffectivity: January 01, 2021\r\nSalaryRate: 16200.00\r\nSectionId: 4\r\nSlot: 1\r\n	admin	JobVacancies	1
759659	2024-06-07	16:36:43.7067590	<Undetected>	Insert	Allowance01Amount: \r\nAllowance01Cutoff: \r\nAllowance01Id: \r\nAllowance02Amount: \r\nAllowance02Cutoff: \r\nAllowance02Id: \r\nAllowance03Amount: \r\nAllowance03Cutoff: \r\nAllowance03Id: \r\nAllowance04Amount: \r\nAllowance04Cutoff: \r\nAllowance04Id: \r\nAllowance05Amount: \r\nAllowance05Cutoff: \r\nAllowance05Id: \r\nAllowance06Amount: \r\nAllowance06Cutoff: \r\nAllowance06Id: \r\nAllowance07Amount: \r\nAllowance07Cutoff: \r\nAllowance07Id: \r\nAllowance08Amount: \r\nAllowance08Cutoff: \r\nAllowance08Id: \r\nAllowance09Amount: \r\nAllowance09Cutoff: \r\nAllowance09Id: \r\nAllowance10Amount: \r\nAllowance10Cutoff: \r\nAllowance10Id: \r\nClusterName: \r\nDailyRate: \r\nDeduction01Amount: \r\nDeduction01Cutoff: \r\nDeduction01Id: \r\nDeduction02Amount: \r\nDeduction02Cutoff: \r\nDeduction02Id: \r\nDeduction03Amount: \r\nDeduction03Cutoff: \r\nDeduction03Id: \r\nDeduction04Amount: \r\nDeduction04Cutoff: \r\nDeduction04Id: \r\nDeduction05Amount: \r\nDeduction05Cutoff: \r\nDeduction05Id: \r\nDeduction06Amount: \r\nDeduction06Cutoff: \r\nDeduction06Id: \r\nDeduction07Amount: \r\nDeduction07Cutoff: \r\nDeduction07Id: \r\nDeduction08Amount: \r\nDeduction08Cutoff: \r\nDeduction08Id: \r\nDeduction09Amount: \r\nDeduction09Cutoff: \r\nDeduction09Id: \r\nDeduction10Amount: \r\nDeduction10Cutoff: \r\nDeduction10Id: \r\nDoubleHolidayHourlyNdRate: \r\nDoubleHolidayHourlyOtNdRate: \r\nDoubleHolidayHourlyOtRate: \r\nDoubleHolidayHourlyRate: \r\nDoubleHolidayHourlyRestDayNdRate: \r\nDoubleHolidayHourlyRestDayOtNdRate: \r\nDoubleHolidayHourlyRestDayOtRate: \r\nDoubleHolidayHourlyRestDayRate: \r\nEmployeeId: \r\nGsisEccAmount: \r\nGsisGsAmount: \r\nGsisPsAmount: \r\nHalfMonthRate: \r\nHdmfGsAmount: \r\nHdmfPsAmount: \r\nHourlyNdRate: \r\nHourlyOtNdRate: \r\nHourlyOtRate: \r\nHourlyRate: \r\nHourlyRestDayNdRate: \r\nHourlyRestDayOtNdRate: \r\nHourlyRestDayOtRate: \r\nHourlyRestDayRate: \r\nIsGsisCustom: \r\nIsHdmfCustom: \r\nIsPhilHealthCustom: \r\nIsSssCustom: \r\nLoan01Amount: \r\nLoan01Cutoff: \r\nLoan01Id: \r\nLoan02Amount: \r\nLoan02Cutoff: \r\nLoan02Id: \r\nLoan03Amount: \r\nLoan03Cutoff: \r\nLoan03Id: \r\nLoan04Amount: \r\nLoan04Cutoff: \r\nLoan04Id: \r\nLoan05Amount: \r\nLoan05Cutoff: \r\nLoan05Id: \r\nLoan06Amount: \r\nLoan06Cutoff: \r\nLoan06Id: \r\nLoan07Amount: \r\nLoan07Cutoff: \r\nLoan07Id: \r\nLoan08Amount: \r\nLoan08Cutoff: \r\nLoan08Id: \r\nLoan09Amount: \r\nLoan09Cutoff: \r\nLoan09Id: \r\nLoan10Amount: \r\nLoan10Cutoff: \r\nLoan10Id: \r\nLoan11Amount: \r\nLoan11Cutoff: \r\nLoan11Id: \r\nLoan12Amount: \r\nLoan12Cutoff: \r\nLoan12Id: \r\nLoan13Amount: \r\nLoan13Cutoff: \r\nLoan13Id: \r\nLoan14Amount: \r\nLoan14Cutoff: \r\nLoan14Id: \r\nLoan15Amount: \r\nLoan15Cutoff: \r\nLoan15Id: \r\nLoan16Amount: \r\nLoan16Cutoff: \r\nLoan16Id: \r\nLoan17Amount: \r\nLoan17Cutoff: \r\nLoan17Id: \r\nLoan18Amount: \r\nLoan18Cutoff: \r\nLoan18Id: \r\nLoan19Amount: \r\nLoan19Cutoff: \r\nLoan19Id: \r\nLoan20Amount: \r\nLoan20Cutoff: \r\nLoan20Id: \r\nMonthlyRate: \r\nPayrollProfileId: \r\nPhilHealthGsAmount: \r\nPhilHealthPsAmount: \r\nRegularHolidayHourlyNdRate: \r\nRegularHolidayHourlyOtNdRate: \r\nRegularHolidayHourlyOtRate: \r\nRegularHolidayHourlyRate: \r\nRegularHolidayHourlyRestDayNdRate: \r\nRegularHolidayHourlyRestDayOtNdRate: \r\nRegularHolidayHourlyRestDayOtRate: \r\nRegularHolidayHourlyRestDayRate: \r\nSpecialHolidayHourlyNdRate: \r\nSpecialHolidayHourlyOtNdRate: \r\nSpecialHolidayHourlyOtRate: \r\nSpecialHolidayHourlyRate: \r\nSpecialHolidayHourlyRestDayNdRate: \r\nSpecialHolidayHourlyRestDayOtNdRate: \r\nSpecialHolidayHourlyRestDayOtRate: \r\nSpecialHolidayHourlyRestDayRate: \r\nSssEeAmount: \r\nSssErAmount: \r\nWithholdingTaxAmount: \r\nWithholdingTaxComputation: \r\n	Allowance01Amount: 0\r\nAllowance01Cutoff: None\r\nAllowance01Id: 0\r\nAllowance02Amount: 0\r\nAllowance02Cutoff: None\r\nAllowance02Id: 0\r\nAllowance03Amount: 0\r\nAllowance03Cutoff: None\r\nAllowance03Id: 0\r\nAllowance04Amount: 0\r\nAllowance04Cutoff: None\r\nAllowance04Id: 0\r\nAllowance05Amount: 0\r\nAllowance05Cutoff: None\r\nAllowance05Id: 0\r\nAllowance06Amount: 0\r\nAllowance06Cutoff: None\r\nAllowance06Id: 0\r\nAllowance07Amount: 0\r\nAllowance07Cutoff: None\r\nAllowance07Id: 0\r\nAllowance08Amount: 0\r\nAllowance08Cutoff: None\r\nAllowance08Id: 0\r\nAllowance09Amount: 0\r\nAllowance09Cutoff: None\r\nAllowance09Id: 0\r\nAllowance10Amount: 0\r\nAllowance10Cutoff: None\r\nAllowance10Id: 0\r\nClusterName: \r\nDailyRate: 540.00\r\nDeduction01Amount: 0\r\nDeduction01Cutoff: None\r\nDeduction01Id: 0\r\nDeduction02Amount: 0\r\nDeduction02Cutoff: None\r\nDeduction02Id: 0\r\nDeduction03Amount: 0\r\nDeduction03Cutoff: None\r\nDeduction03Id: 0\r\nDeduction04Amount: 0\r\nDeduction04Cutoff: None\r\nDeduction04Id: 0\r\nDeduction05Amount: 0\r\nDeduction05Cutoff: None\r\nDeduction05Id: 0\r\nDeduction06Amount: 0\r\nDeduction06Cutoff: None\r\nDeduction06Id: 0\r\nDeduction07Amount: 0\r\nDeduction07Cutoff: None\r\nDeduction07Id: 0\r\nDeduction08Amount: 0\r\nDeduction08Cutoff: None\r\nDeduction08Id: 0\r\nDeduction09Amount: 0\r\nDeduction09Cutoff: None\r\nDeduction09Id: 0\r\nDeduction10Amount: 0\r\nDeduction10Cutoff: None\r\nDeduction10Id: 0\r\nDoubleHolidayHourlyNdRate: 0\r\nDoubleHolidayHourlyOtNdRate: 0\r\nDoubleHolidayHourlyOtRate: 0\r\nDoubleHolidayHourlyRate: 0\r\nDoubleHolidayHourlyRestDayNdRate: 0\r\nDoubleHolidayHourlyRestDayOtNdRate: 0\r\nDoubleHolidayHourlyRestDayOtRate: 0\r\nDoubleHolidayHourlyRestDayRate: 0\r\nEmployeeId: 2746\r\nGsisEccAmount: 0\r\nGsisGsAmount: 0\r\nGsisPsAmount: 0\r\nHalfMonthRate: 8100.00\r\nHdmfGsAmount: 0\r\nHdmfPsAmount: 0\r\nHourlyNdRate: 67.5000\r\nHourlyOtNdRate: 84.375000\r\nHourlyOtRate: 84.3750\r\nHourlyRate: 67.50\r\nHourlyRestDayNdRate: 101.250000\r\nHourlyRestDayOtNdRate: 126.56250000\r\nHourlyRestDayOtRate: 126.562500\r\nHourlyRestDayRate: 101.2500\r\nIsGsisCustom: False\r\nIsHdmfCustom: False\r\nIsPhilHealthCustom: False\r\nIsSssCustom: False\r\nLoan01Amount: 0\r\nLoan01Cutoff: None\r\nLoan01Id: 0\r\nLoan02Amount: 0\r\nLoan02Cutoff: None\r\nLoan02Id: 0\r\nLoan03Amount: 0\r\nLoan03Cutoff: None\r\nLoan03Id: 0\r\nLoan04Amount: 0\r\nLoan04Cutoff: None\r\nLoan04Id: 0\r\nLoan05Amount: 0\r\nLoan05Cutoff: None\r\nLoan05Id: 0\r\nLoan06Amount: 0\r\nLoan06Cutoff: None\r\nLoan06Id: 0\r\nLoan07Amount: 0\r\nLoan07Cutoff: None\r\nLoan07Id: 0\r\nLoan08Amount: 0\r\nLoan08Cutoff: None\r\nLoan08Id: 0\r\nLoan09Amount: 0\r\nLoan09Cutoff: None\r\nLoan09Id: 0\r\nLoan10Amount: 0\r\nLoan10Cutoff: None\r\nLoan10Id: 0\r\nLoan11Amount: 0\r\nLoan11Cutoff: None\r\nLoan11Id: 0\r\nLoan12Amount: 0\r\nLoan12Cutoff: None\r\nLoan12Id: 0\r\nLoan13Amount: 0\r\nLoan13Cutoff: None\r\nLoan13Id: 0\r\nLoan14Amount: 0\r\nLoan14Cutoff: None\r\nLoan14Id: 0\r\nLoan15Amount: 0\r\nLoan15Cutoff: None\r\nLoan15Id: 0\r\nLoan16Amount: 0\r\nLoan16Cutoff: None\r\nLoan16Id: 0\r\nLoan17Amount: 0\r\nLoan17Cutoff: None\r\nLoan17Id: 0\r\nLoan18Amount: 0\r\nLoan18Cutoff: None\r\nLoan18Id: 0\r\nLoan19Amount: 0\r\nLoan19Cutoff: None\r\nLoan19Id: 0\r\nLoan20Amount: 0\r\nLoan20Cutoff: None\r\nLoan20Id: 0\r\nMonthlyRate: 16200.00\r\nPayrollProfileId: 0\r\nPhilHealthGsAmount: 0\r\nPhilHealthPsAmount: 0\r\nRegularHolidayHourlyNdRate: 67.5000\r\nRegularHolidayHourlyOtNdRate: 67.500000\r\nRegularHolidayHourlyOtRate: 67.5000\r\nRegularHolidayHourlyRate: 67.5000\r\nRegularHolidayHourlyRestDayNdRate: 101.250000\r\nRegularHolidayHourlyRestDayOtNdRate: 101.25000000\r\nRegularHolidayHourlyRestDayOtRate: 101.250000\r\nRegularHolidayHourlyRestDayRate: 101.2500\r\nSpecialHolidayHourlyNdRate: 67.5000\r\nSpecialHolidayHourlyOtNdRate: 67.500000\r\nSpecialHolidayHourlyOtRate: 67.5000\r\nSpecialHolidayHourlyRate: 67.5000\r\nSpecialHolidayHourlyRestDayNdRate: 151.87500000\r\nSpecialHolidayHourlyRestDayOtNdRate: 151.8750000000\r\nSpecialHolidayHourlyRestDayOtRate: 151.87500000\r\nSpecialHolidayHourlyRestDayRate: 151.875000\r\nSssEeAmount: 0\r\nSssErAmount: 0\r\nWithholdingTaxAmount: 0\r\nWithholdingTaxComputation: Auto-compute\r\n	admin	PayrollProfiles	1
759660	2024-07-01	08:45:00.8234696	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: Bachelor of Industrial Technology Major in Drafting\r\nLevel: College\r\n	admin	Courses	1
759661	2024-07-01	08:48:26.0045608	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: ALANGILAN\r\nBasicInformationId: 0\r\nBirthDate: September 01, 1992\r\nBirthPlace: BATANGA\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: DARRELL.BREGONIA@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: CHARLES DARRELL\r\nFullName: CHARLES DARRELL G. BREGONIA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 5.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BREGONIA\r\nMaidenName: \r\nMiddleName: GUILLO\r\nMobileNumber: 09688715273\r\nNationality: Filipino\r\nPermanentAddress1: A\r\nPermanentAddress2: \r\nPermanentBarangay: BARANGAY 20\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: DELAS ALAS DRIVE TALAMBIRAS\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: SITIO II B\r\nTIN: \r\nWeight: 91\r\nZipCode: 4200\r\n	admin	BasicInformation	1
759662	2024-07-01	08:48:26.1054985	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3602\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1999\r\nDateTo: 2005\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: JULIAN A. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nYearGraduated: 2004\r\n	admin	EducationalBackgrounds	1
759663	2024-07-01	08:48:26.1064981	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3602\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2009\r\n	admin	EducationalBackgrounds	1
759665	2024-07-01	08:48:26.1074974	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3602\r\nBirthDate: October 15, 2020\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CHANCE GABRIEL\r\nFullName: CHANCE GABRIEL B BREGONIA\r\nGender: Male\r\nLastName: BREGONIA\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
759666	2024-07-01	08:48:26.1084968	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3602\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
759667	2024-07-01	09:05:25.0652499	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF SCIENCE IN ACCOUNTANCY\r\nLevel: College\r\n	admin	Courses	1
759668	2024-07-01	09:13:04.4249686	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 0053\r\nAddress2: \r\nBarangay: BARANGAY 20\r\nBasicInformationId: 0\r\nBirthDate: August 30, 1997\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: UPOALARIC@GMAIL.COM\r\nExtensionName: \r\nFirstName: PRINCE ALARIC\r\nFullName: PRINCE ALARIC M. UPO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.79\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7745308\r\nLastName: UPO\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nMobileNumber: 09083719344\r\nNationality: Filipino\r\nPermanentAddress1: 0053\r\nPermanentAddress2: \r\nPermanentBarangay: BARANGAY 20\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: A DELAS ALAS DRIVE\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: A DELAS ALAS DRIVE\r\nTIN: \r\nWeight: 95\r\nZipCode: 4200\r\n	admin	BasicInformation	1
759669	2024-07-01	09:13:04.4488179	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3603\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2012\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: JULIAN A. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nYearGraduated: 2012\r\n	admin	EducationalBackgrounds	1
759670	2024-07-01	09:13:04.4488179	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3603\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2011\r\nDateTo: 2016\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2016\r\n	admin	EducationalBackgrounds	1
759671	2024-07-01	09:13:04.4498185	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3603\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FELIX\r\nFullName: FELIX BAYACAL UPO\r\nGender: Male\r\nLastName: UPO\r\nMaidenName: \r\nMiddleName: BAYACAL\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
759672	2024-07-01	09:13:04.4498185	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3603\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LIBERTY\r\nFullName: LIBERTY ACOSTA MACARAIG\r\nGender: Male\r\nLastName: MACARAIG\r\nMaidenName: \r\nMiddleName: ACOSTA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
759673	2024-07-01	09:13:04.4508176	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3603\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
759674	2024-07-01	09:39:25.5680522	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3602\r\nSkillId: 0\r\nSkillName: DRIVING\r\n	admin	Skills	1
759675	2024-07-01	09:39:25.5720519	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3602\r\nSkillId: 0\r\nSkillName: SMALL ENGINE MECHANIC\r\n	admin	Skills	1
759676	2024-07-01	09:39:25.5760518	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3602\r\nSkillId: 0\r\nSkillName: INSULATOR\r\n	admin	Skills	1
759677	2024-07-01	09:39:25.5800518	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3602\r\nSkillId: 0\r\nSkillName: ELECTRICAL SKILL\r\n	admin	Skills	1
759678	2024-07-01	09:39:25.5850520	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3602\r\nSkillId: 0\r\nSkillName: SCAFOLDER\r\n	admin	Skills	1
759679	2024-07-01	09:39:25.5880519	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3602\r\nSkillId: 0\r\nSkillName: COMPUTER SKILL\r\n	admin	Skills	1
759680	2024-07-01	09:39:25.5920519	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3602\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DARWIN\r\nFullName: DARWIN BONIFACIO BREGONIA\r\nGender: Male\r\nLastName: BREGONIA\r\nMaidenName: \r\nMiddleName: BONIFACIO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
759699	2024-07-01	10:05:33.9161169	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3603\r\nSkillId: 0\r\nSkillName: BASIC FIRING\r\n	admin	Skills	1
759700	2024-07-01	10:05:33.9201162	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3603\r\nSkillId: 0\r\nSkillName: KNOWLEDGE ON  SAFETY AND SECURITY PROCEDURE\r\n	admin	Skills	1
759681	2024-07-01	09:39:25.5970520	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3602\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LOLITA\r\nFullName: LOLITA VILLA-REAL GUILLO\r\nGender: Male\r\nLastName: GUILLO\r\nMaidenName: \r\nMiddleName: VILLA-REAL\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
759682	2024-07-01	09:39:25.6000518	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3602\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 13,000.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 01-1\r\nStatus: Permanent\r\nToDate: July 01, 2024\r\n	admin	Experiences	1
759683	2024-07-01	09:39:25.6050524	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3602\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 13,000.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 01-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
759684	2024-07-01	09:39:25.6090520	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3602\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 12,517.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 01-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
759685	2024-07-01	09:39:25.6130522	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3602\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 16, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 12,034.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 01-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
759686	2024-07-01	09:39:25.6170518	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3602\r\nCompanyInstitution: MS RACING MOTORCYCLE SHOP\r\nExperienceId: 0\r\nFromDate: January 13, 2021\r\nIsGovernmentService: False\r\nMonthlySalary: 10,400.00\r\nPositionHeld: PRIVATE DRIVER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: August 16, 2021\r\n	admin	Experiences	1
759687	2024-07-01	09:39:25.6210521	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3602\r\nCompanyInstitution: COPPER TIP SECURITY AND INVESTIGATION AGENCY INC.\r\nExperienceId: 0\r\nFromDate: January 15, 2019\r\nIsGovernmentService: False\r\nMonthlySalary: 12,000.00\r\nPositionHeld: COMPANY DRIVER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
759688	2024-07-01	09:39:25.6250517	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3602\r\nCompanyInstitution: LBC BUILDER AND GENERAL SERVICES\r\nExperienceId: 0\r\nFromDate: February 06, 2016\r\nIsGovernmentService: False\r\nMonthlySalary: 9,200.00\r\nPositionHeld: INSULATOR / THINSMITH\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: March 05, 2018\r\n	admin	Experiences	1
759689	2024-07-01	09:39:25.6290518	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3602\r\nCompanyInstitution: ASIAI SECURITY AGENCY BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: September 14, 2013\r\nIsGovernmentService: False\r\nMonthlySalary: 8,200.00\r\nPositionHeld: OPERATION ASSISTANT / DRIVER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: January 25, 2016\r\n	admin	Experiences	1
759690	2024-07-01	09:39:25.6330520	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3602\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN EAST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175758860\r\nExtensionName: \r\nFirstName: MYRA FE\r\nLastName: CASAO\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
759691	2024-07-01	09:39:25.6380916	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3602\r\nCharacterReferenceId: 0\r\nCompanyAddress: RR STATION, BARANGAY 24 BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09189448457\r\nExtensionName: \r\nFirstName: GENELYN\r\nLastName: CARANDANG\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
759692	2024-07-01	09:39:25.6420933	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3602\r\nCharacterReferenceId: 0\r\nCompanyAddress: BOLBOK, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09178462228\r\nExtensionName: \r\nFirstName: DANIEL BRIAN\r\nLastName: SANDOVAL\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
759701	2024-07-01	10:05:33.9261173	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3603\r\nSkillId: 0\r\nSkillName: CONFLICT RESOLUTION\r\n	admin	Skills	1
759702	2024-07-01	10:05:33.9301158	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3603\r\nSkillId: 0\r\nSkillName: CHARCOAL PAINTING\r\n	admin	Skills	1
759693	2024-07-01	09:39:25.6460908	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: ALANGILAN\r\nBasicInformationId: 3602\r\nBirthDate: September 01, 1992\r\nBirthPlace: BATANGA\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: DARRELL.BREGONIA@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: CHARLES DARRELL\r\nFullName: CHARLES DARRELL G. BREGONIA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 5.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BREGONIA\r\nMaidenName: \r\nMiddleName: GUILLO\r\nMobileNumber: 09688715273\r\nNationality: Filipino\r\nPermanentAddress1: A\r\nPermanentAddress2: \r\nPermanentBarangay: BARANGAY 20\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: DELAS ALAS DRIVE TALAMBIRAS\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: SITIO II B\r\nTIN: \r\nWeight: 91\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: ALANGILAN\r\nBasicInformationId: 3602\r\nBirthDate: September 01, 1992\r\nBirthPlace: BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: darrel.bregonia@deped.gov.ph\r\nExtensionName: \r\nFirstName: CHARLES DARRELL\r\nFullName: CHARLES DARRELL G. BREGONIA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005934213\r\nHDMF: \r\nHeight: 5.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BREGONIA\r\nMaidenName: \r\nMiddleName: GUILLO\r\nMobileNumber: 09688715273\r\nNationality: Filipino\r\nPermanentAddress1: A\r\nPermanentAddress2: \r\nPermanentBarangay: BARANGAY 20\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: DELAS ALAS DRIVE TALAMBIRAS\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-250006480-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: 04-3809913-3\r\nStreetName: SITIO II B\r\nTIN: 449-876-374-0000\r\nWeight: 91\r\nZipCode: 4200\r\n	admin	BasicInformation	1
759694	2024-07-01	09:39:25.6500916	<Undetected>	Update	BasicInformationId: 3602\r\nBirthDate: October 15, 2020\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3261\r\nExtensionName: \r\nFirstName: CHANCE GABRIEL\r\nFullName: CHANCE GABRIEL B BREGONIA\r\nGender: Male\r\nLastName: BREGONIA\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3602\r\nBirthDate: October 15, 2020\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3261\r\nExtensionName: \r\nFirstName: CHANCE GABRIEL\r\nFullName: CHANCE GABRIEL BREGONIA\r\nGender: Male\r\nLastName: BREGONIA\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
759695	2024-07-01	09:39:25.6540916	<Undetected>	Update	BasicInformationId: 3602\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3398\r\n	BasicInformationId: 3602\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: FINISH CONTRACT\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3398\r\n	admin	Questionnaires	1
759696	2024-07-01	09:50:06.2326666	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: ASSOCIATE IN RADIOLOGIC TECHNOLOGY\r\nLevel: Vocational\r\n	admin	Courses	1
759697	2024-07-01	09:52:34.4803185	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF SCIENCE IN COMMERCE\r\nLevel: College\r\n	admin	Courses	1
759698	2024-07-01	09:55:47.5209602	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER IN PUBLIC ADMINISTRATION\r\nLevel: Master's\r\n	admin	Courses	1
759705	2024-07-01	10:05:33.9421223	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: WITH HONORS\r\nBasicInformationId: 3603\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2019\r\nDateTo: 2021\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Senior High Graduate\r\nMajor: \r\nSchoolorUniversity: ALANGILAN SENIOR HIGH SCHOOL\r\nYearGraduated: 2021\r\n	admin	EducationalBackgrounds	1
759706	2024-07-01	10:05:33.9471226	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3603\r\nCompanyInstitution: DEPARTMNENT OF EDUCATION- DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: March 01, 2023\r\nIsGovernmentService: False\r\nMonthlySalary: 14,678.00\r\nPositionHeld: SECURITY GUARD I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 3-1\r\nStatus: Permanent\r\nToDate: July 01, 2024\r\n	admin	Experiences	1
759707	2024-07-01	10:05:33.9511223	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3603\r\nCompanyInstitution: WORLD CUP SECURITY SERVICES INC.\r\nExperienceId: 0\r\nFromDate: November 08, 2018\r\nIsGovernmentService: False\r\nMonthlySalary: 16,800.00\r\nPositionHeld: SECURITY GUARD \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: January 31, 2023\r\n	admin	Experiences	1
759708	2024-07-01	10:05:33.9556299	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3603\r\nCompanyInstitution: LEON FORCE SECURITY AND INVESTIGATION AGENCY\r\nExperienceId: 0\r\nFromDate: November 08, 2016\r\nIsGovernmentService: False\r\nMonthlySalary: 7,500.00\r\nPositionHeld: SECURITY GUARD\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: July 18, 2017\r\n	admin	Experiences	1
759709	2024-07-01	10:05:33.9596347	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3603\r\nCharacterReferenceId: 0\r\nCompanyAddress: ALANGILAN BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09055558018\r\nExtensionName: \r\nFirstName: AMOR \r\nLastName: MACARAIG\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
759710	2024-07-01	10:05:33.9636356	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3603\r\nCharacterReferenceId: 0\r\nCompanyAddress: CALICANTO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09778143411\r\nExtensionName: \r\nFirstName: AREN ROSE\r\nLastName: GALVES\r\nMiddleName: E\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
759711	2024-07-01	10:05:33.9686358	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3603\r\nCharacterReferenceId: 0\r\nCompanyAddress: ALANGILAN BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09306035020\r\nExtensionName: \r\nFirstName: FATIMA LLANA\r\nLastName: ANTE\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
759712	2024-07-01	10:05:33.9726360	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 0053\r\nAddress2: \r\nBarangay: BARANGAY 20\r\nBasicInformationId: 3603\r\nBirthDate: August 30, 1997\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: UPOALARIC@GMAIL.COM\r\nExtensionName: \r\nFirstName: PRINCE ALARIC\r\nFullName: PRINCE ALARIC M. UPO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.79\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7745308\r\nLastName: UPO\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nMobileNumber: 09083719344\r\nNationality: Filipino\r\nPermanentAddress1: 0053\r\nPermanentAddress2: \r\nPermanentBarangay: BARANGAY 20\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: A DELAS ALAS DRIVE\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: A DELAS ALAS DRIVE\r\nTIN: \r\nWeight: 95\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 0053\r\nAddress2: \r\nBarangay: BARANGAY 20\r\nBasicInformationId: 3603\r\nBirthDate: August 30, 1997\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: UPOALARIC@GMAIL.COM\r\nExtensionName: \r\nFirstName: PRINCE ALARIC\r\nFullName: PRINCE ALARIC M. UPO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006270221\r\nHDMF: 1211-6813-8947\r\nHeight: 1.79\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7745308\r\nLastName: UPO\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nMobileNumber: 09083719344\r\nNationality: Filipino\r\nPermanentAddress1: 0053\r\nPermanentAddress2: \r\nPermanentBarangay: BARANGAY 20\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: A DELAS ALAS DRIVE\r\nPermanentZipCode: 4200\r\nPhilhealth: 08-051535508-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 34-5841335-6\r\nStreetName: A DELAS ALAS DRIVE\r\nTIN: 720-278-139-0000\r\nWeight: 95\r\nZipCode: 4200\r\n	admin	BasicInformation	1
759713	2024-07-01	10:05:33.9776362	<Undetected>	Update	BasicInformationId: 3603\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3262\r\nExtensionName: \r\nFirstName: FELIX\r\nFullName: FELIX BAYACAL UPO\r\nGender: Male\r\nLastName: UPO\r\nMaidenName: \r\nMiddleName: BAYACAL\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3603\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3262\r\nExtensionName: \r\nFirstName: FELIX\r\nFullName: FELIX UPO\r\nGender: Male\r\nLastName: UPO\r\nMaidenName: \r\nMiddleName: BAYACAL\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
759714	2024-07-01	10:05:33.9816361	<Undetected>	Update	BasicInformationId: 3603\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3263\r\nExtensionName: \r\nFirstName: LIBERTY\r\nFullName: LIBERTY ACOSTA MACARAIG\r\nGender: Male\r\nLastName: MACARAIG\r\nMaidenName: \r\nMiddleName: ACOSTA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3603\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3263\r\nExtensionName: \r\nFirstName: LIBERTY\r\nFullName: LIBERTY MACARAIG\r\nGender: Male\r\nLastName: MACARAIG\r\nMaidenName: \r\nMiddleName: ACOSTA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
759715	2024-07-01	10:05:33.9856356	<Undetected>	Update	BasicInformationId: 3603\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3399\r\n	BasicInformationId: 3603\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3399\r\n	admin	Questionnaires	1
759716	2024-07-01	10:33:27.9226901	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER IN  BUSINESS ADMINISTRATION\r\nLevel: College\r\n	admin	Courses	1
759717	2024-07-01	10:34:45.9703997	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER IN BUSINESS ADMINISTRATION\r\nLevel: College\r\n	admin	Courses	1
759719	2024-07-01	10:50:03.5749796	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: GULOD ITAAS\r\nBasicInformationId: 0\r\nBirthDate: November 16, 1975\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: reina.perono@deped.gov.ph\r\nExtensionName: \r\nFirstName: REINA\r\nFullName: REINA C. PERONO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PERONO\r\nMaidenName: \r\nMiddleName: CARREON\r\nMobileNumber: 09155592244\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: GULOD ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PULONG IBABA, PUROK 1\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: PULONG IBABA, PUROK 1\r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
759720	2024-07-01	10:50:03.6075012	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: 4TH HONOR\r\nBasicInformationId: 3604\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1982\r\nDateTo: 1989\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: GULOD ELEMENTARY SCHOOL\r\nYearGraduated: 1989\r\n	admin	EducationalBackgrounds	1
759721	2024-07-01	10:50:03.6075012	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3604\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1989\r\nDateTo: 1993\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1993\r\n	admin	EducationalBackgrounds	1
759722	2024-07-01	10:50:03.6075012	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: PESFA SCHOLAR\r\nBasicInformationId: 3604\r\nCourse: \r\nCourseId: 1251\r\nCourseOrMajor: \r\nDateFrom: 1993\r\nDateTo: 1993\r\nEducationalAttainment: 24 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Vocational Graduate\r\nMajor: \r\nSchoolorUniversity: LYCEUM OF THE PHILIPPINES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
759723	2024-07-01	10:50:03.6075012	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3604\r\nCourse: \r\nCourseId: 1252\r\nCourseOrMajor: \r\nDateFrom: 1993\r\nDateTo: 1997\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MAJOR IN BANKING AND FINANCE\r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 1997\r\n	admin	EducationalBackgrounds	1
759724	2024-07-01	10:50:03.6075012	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: MOST OUTSTANDING ACHIEVEMENT AWARD\r\nBasicInformationId: 3604\r\nCourse: \r\nCourseId: 1253\r\nCourseOrMajor: \r\nDateFrom: 2019\r\nDateTo: 2022\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2022\r\n	admin	EducationalBackgrounds	1
759725	2024-07-01	10:50:03.6075012	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3604\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: SR.\r\nFirstName: LUIS\r\nFullName: LUIS MEDINA PERONO SR.\r\nGender: Male\r\nLastName: PERONO\r\nMaidenName: \r\nMiddleName: MEDINA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
759726	2024-07-01	10:50:03.6075012	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3604\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FELICIDAD\r\nFullName: FELICIDAD CARREON PERONO\r\nGender: Male\r\nLastName: PERONO\r\nMaidenName: \r\nMiddleName: CARREON\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
759727	2024-07-01	10:50:03.6075012	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3604\r\nCharacterReferenceId: 0\r\nCompanyAddress: BLK 7 LOT 4 SAN ANTONIO HOMES, SAN PASCUAL, BATANGAS\r\nCompanyName: \r\nContactNumber: 09997325078\r\nExtensionName: \r\nFirstName: ARLENE\r\nLastName: DE TORRES\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
759728	2024-07-01	10:50:03.6075012	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3604\r\nCharacterReferenceId: 0\r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: PABLO\r\nLastName: EVANGELISTA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
759729	2024-07-01	10:50:03.6085016	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3604\r\nDateOfExamination: October 23, 2016\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: October 23, 2016\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS NATIONAL HIGH SCHOOL\r\nRating: 83.37%\r\nTitle: CAREER SERVICE- PROFESSIONAL CIVIL SERVICE\r\n	admin	Eligibilities	1
759983	2024-07-01	15:48:19.3078679	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3609\r\nOrganizationId: 0\r\nOrganizationName: NATIONAL EMPLOYEES UNION ( NEU)\r\n	admin	Organizations	1
759730	2024-07-01	10:50:03.6085016	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3604\r\nDateOfExamination: February 16, 1997\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 7\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: February 16, 1997\r\nLevelOfEligibility: First Level (Subprofessional)\r\nLicenseNumber: \r\nPlaceOfExamination: UNIVERSITY OF BATANGAS\r\nRating: 81.13%\r\nTitle: CAREER SERVICE- SUB-PROFESSIONAL CIVIL SERVICE\r\n	admin	Eligibilities	1
759731	2024-07-01	10:50:03.6085016	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3604\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 21,388.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-2\r\nStatus: Permanent\r\nToDate: July 01, 2024\r\n	admin	Experiences	1
759732	2024-07-01	10:50:03.6085016	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3604\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 21,388.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-2\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
759733	2024-07-01	10:50:03.6085016	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3604\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 03, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 20,572.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-2\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
759734	2024-07-01	10:50:03.6085016	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3604\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 20,402.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-1\r\nStatus: Permanent\r\nToDate: June 02, 2022\r\n	admin	Experiences	1
759735	2024-07-01	10:50:03.6085016	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3604\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 19,593.00\r\nPositionHeld: ADMINISTRATIVE ASSSITANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
759736	2024-07-01	10:50:03.6085016	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3604\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 18,784.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
759737	2024-07-01	10:50:03.6085016	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3604\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 03, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 17,975.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
759738	2024-07-01	10:50:03.6085016	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3604\r\nCompanyInstitution: CASTORAMA MANINVEST SERVICES SPECIALISTS, INC.\r\nExperienceId: 0\r\nFromDate: January 29, 2018\r\nIsGovernmentService: False\r\nMonthlySalary: 11,000.00\r\nPositionHeld: AUDIT AND FINANCE ASSOCIATE\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: January 06, 2019\r\n	admin	Experiences	1
759739	2024-07-01	10:50:03.6085016	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3604\r\nCompanyInstitution: ASIAN MARINE TRANSPORT CORP.\r\nExperienceId: 0\r\nFromDate: October 24, 2017\r\nIsGovernmentService: False\r\nMonthlySalary: 8,500.00\r\nPositionHeld: HUMAN RESOURCE ASSISTANT\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: January 28, 2018\r\n	admin	Experiences	1
759740	2024-07-01	10:50:03.6085016	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3604\r\nCompanyInstitution: DE TORRES ACCOUNTING SERVICES\r\nExperienceId: 0\r\nFromDate: February 06, 2016\r\nIsGovernmentService: False\r\nMonthlySalary: 10,000.00\r\nPositionHeld: CASHIER/BOOKKEEPER/BUSINESS CONSULTANT\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: October 21, 2017\r\n	admin	Experiences	1
760294	2024-07-02	14:07:00.9014831	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3606\r\nRecognitionId: 0\r\nRecognitionName: OUTSTANDING- NON TEACHING PERSONNEL LEVEL 2- DIVISION LEVEL\r\n	admin	Recognitions	1
759741	2024-07-01	10:50:03.6085016	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3604\r\nCompanyInstitution: CARMEL SCHOOL OF BATANGAS, INC.\r\nExperienceId: 0\r\nFromDate: August 16, 2010\r\nIsGovernmentService: False\r\nMonthlySalary: 19,850.00\r\nPositionHeld: ACCOUNTING OFFICER IN CHARGE\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: May 31, 2016\r\n	admin	Experiences	1
759742	2024-07-01	10:50:03.6095014	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3604\r\nCompanyInstitution: CARMEL SCHOOL OF BATANGAS, INC.\r\nExperienceId: 0\r\nFromDate: January 06, 2012\r\nIsGovernmentService: False\r\nMonthlySalary: 19,850.00\r\nPositionHeld: ACTING HUMAN RESOURCE OFFICER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: May 31, 2016\r\n	admin	Experiences	1
759743	2024-07-01	10:50:03.6095014	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3604\r\nCompanyInstitution: ASIAN TERMINALS, INC.\r\nExperienceId: 0\r\nFromDate: April 16, 2010\r\nIsGovernmentService: False\r\nMonthlySalary: 10,000.00\r\nPositionHeld: ACCOUNTING ASSISTANT (JUNIOR BOOK KEEPER)\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: August 13, 2010\r\n	admin	Experiences	1
759744	2024-07-01	10:50:03.6095014	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3604\r\nCompanyInstitution: CARMEL SCHOOL OF BATANGAS, INC.\r\nExperienceId: 0\r\nFromDate: January 09, 2009\r\nIsGovernmentService: False\r\nMonthlySalary: 8,500.00\r\nPositionHeld: ACCOUNTING ASSISTANT\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: April 15, 2010\r\n	admin	Experiences	1
759745	2024-07-01	10:50:03.6095014	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3604\r\nCompanyInstitution: SAN ISIDRO VILLAGE HOME OWNERS ASSOCIATION, INC.\r\nExperienceId: 0\r\nFromDate: December 15, 2008\r\nIsGovernmentService: False\r\nMonthlySalary: 10,000.00\r\nPositionHeld: BOOKKEEPER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: August 31, 2009\r\n	admin	Experiences	1
759746	2024-07-01	10:50:03.6095014	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3604\r\nCompanyInstitution: PEREZ, CABRAL, VALENCIA & CO.\r\nExperienceId: 0\r\nFromDate: October 15, 2008\r\nIsGovernmentService: False\r\nMonthlySalary: 8,000.00\r\nPositionHeld: ACCOUNTING STAFF\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Probationary\r\nToDate: December 14, 2008\r\n	admin	Experiences	1
759747	2024-07-01	10:50:03.6095014	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3604\r\nCompanyInstitution: PABULUM CREDIT ENTERPRISES\r\nExperienceId: 0\r\nFromDate: May 11, 1997\r\nIsGovernmentService: False\r\nMonthlySalary: 7,500.00\r\nPositionHeld: ACCOUNTING CLERK PROMOTED TO BOOKKEEPER/LEGAL SECRETARY\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: October 14, 2008\r\n	admin	Experiences	1
759748	2024-07-01	10:50:03.6095014	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3604\r\nSkillId: 0\r\nSkillName: EXPERT IN THE ENHANCED FINANCIAL REPORTING SYSTEM (eFRS)\r\n	admin	Skills	1
759749	2024-07-01	10:50:03.6095014	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3604\r\nSkillId: 0\r\nSkillName: KNOWLEDGE IN VARIOUS ACCOUNTING SOFTWARE AND ONLINE BANKING\r\n	admin	Skills	1
759750	2024-07-01	10:50:03.6095014	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3604\r\nSkillId: 0\r\nSkillName: HIGHLY CUSTOMER-ORIENTED PERSON\r\n	admin	Skills	1
759751	2024-07-01	10:50:03.6095014	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3604\r\nSkillId: 0\r\nSkillName: EXPERT IN MICROSOFT WORD, EXCEL, POWERPOINT & PUBLISHER\r\n	admin	Skills	1
759752	2024-07-01	10:50:03.6095014	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3604\r\nSkillId: 0\r\nSkillName: HOBBIES INCLUDE MUSICALLY INCLINED, ARTS AND SCIENCES\r\n	admin	Skills	1
759753	2024-07-01	10:50:03.6105017	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3604\r\nRecognitionId: 0\r\nRecognitionName: MERITORIOUS PERFORMANCE AWARD - DEPED BATANGAS CITY (01/23/2024)\r\n	admin	Recognitions	1
759754	2024-07-01	10:50:03.6105017	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3604\r\nRecognitionId: 0\r\nRecognitionName: DEDICATED EMPLOYEES WITHOUT ABSENCES, LEAVES AND TARDINESS (DEALT) AWARDEE IN GAWAD KAWANI (12/11/2023)\r\n	admin	Recognitions	1
759755	2024-07-01	10:50:03.6105017	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3604\r\nRecognitionId: 0\r\nRecognitionName: SECRETARIAT OF THE PERFORMANCE MANAGEMENT PILLAR - PRIME HRM (2023)\r\n	admin	Recognitions	1
759756	2024-07-01	10:50:03.6105017	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3604\r\nRecognitionId: 0\r\nRecognitionName: TWG-DOCUMENTER ON FINANCIAL ADVANCEMENT SKILLS FOR SCHOOLS AND ADMINISTRATORS AND FINANCE AND ADMINISTRATIVE PERSONNEL (2023)\r\n	admin	Recognitions	1
759757	2024-07-01	10:50:03.6105017	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3604\r\nRecognitionId: 0\r\nRecognitionName: RESOURCE SPEAKER IN THE CAPACITY BUILDING: PROMOTING TRANSPARENCY, ACCOUNTABILITY AND OPTIMIZED USE OF SCHOOL RESOURCES (2021)\r\n	admin	Recognitions	1
759758	2024-07-01	10:50:03.6105017	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3604\r\nRecognitionId: 0\r\nRecognitionName: TWG IN THE DIVISION ROLL-OUT: PROCEDURAL GUIDELINES ON THE MANAGEMENT OF CASH ADVANCES FOR SCHOOL MOOE AND PROGRAM FUNDS OF NON-IUs PURSUANT TO COA, DBM, DEPED JC NO. 2019-1 (2020)\r\n	admin	Recognitions	1
759759	2024-07-01	10:50:03.6105017	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3604\r\nRecognitionId: 0\r\nRecognitionName: FACILITATOR IN THE CAPACITY BUILDING FOR SCHOOL HEADS AND FINANCIAL STAFF ON THE PROPER UTILIZATION OF MOOE FUNDS (2019)\r\n	admin	Recognitions	1
759760	2024-07-01	10:50:03.6105017	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3604\r\nOrganizationId: 0\r\nOrganizationName: MEMBER- INTERNATIONAL CHRISTIAN MINISTRY- GULOD\r\n	admin	Organizations	1
759761	2024-07-01	10:50:03.6115014	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3604\r\nOrganizationId: 0\r\nOrganizationName: MEMBER- NATIONAL EMPLOYEES UNION\r\n	admin	Organizations	1
759762	2024-07-01	10:50:03.6115014	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3604\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
759763	2024-07-01	10:50:26.0571458	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 0\r\nBirthDate: August 22, 1975\r\nBirthPlace: PASIG CITY METRO MANILA\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: VILMAMIGUEL@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: VILMA\r\nFullName: VILMA P. MIGUEL\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MIGUEL\r\nMaidenName: \r\nMiddleName: PAGSUYOIN\r\nMobileNumber: 09567282707\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 68.5\r\nZipCode: 4200\r\n	admin	BasicInformation	1
759764	2024-07-01	10:50:26.0764095	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3605\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1982\r\nDateTo: 1988\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: COLEGIO DEL BUEN  CONSEJO\r\nYearGraduated: 1998\r\n	admin	EducationalBackgrounds	1
759765	2024-07-01	10:50:26.0774105	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3605\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1988\r\nDateTo: 1992\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: COLEGIO DEL BUEN CONSEJO\r\nYearGraduated: 1992\r\n	admin	EducationalBackgrounds	1
759766	2024-07-01	10:50:26.0774105	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3605\r\nCourse: \r\nCourseId: 1250\r\nCourseOrMajor: \r\nDateFrom: 1992\r\nDateTo: 1996\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: POLYTECHNIQUE UNIVERSITY OF THE PHILIPPINES\r\nYearGraduated: 1992\r\n	admin	EducationalBackgrounds	1
759767	2024-07-01	10:50:26.0774105	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3605\r\nCourse: \r\nCourseId: 1255\r\nCourseOrMajor: \r\nDateFrom: 2004\r\nDateTo: 2006\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2006\r\n	admin	EducationalBackgrounds	1
759768	2024-07-01	10:50:26.0774105	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3605\r\nCourse: \r\nCourseId: 1256\r\nCourseOrMajor: \r\nDateFrom: 2004\r\nDateTo: 2006\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2006\r\n	admin	EducationalBackgrounds	1
759769	2024-07-01	10:50:26.0774105	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3605\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: VERGEL\r\nFullName: VERGEL ODERA MIGUEL\r\nGender: Male\r\nLastName: MIGUEL\r\nMaidenName: \r\nMiddleName: ODERA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
759770	2024-07-01	10:50:26.0774105	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3605\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SERAPIO\r\nFullName: SERAPIO REYES PAGSUYOIN\r\nGender: Male\r\nLastName: PAGSUYOIN\r\nMaidenName: \r\nMiddleName: REYES\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
759771	2024-07-01	10:50:26.0774105	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3605\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: VICTORIA\r\nFullName: VICTORIA CLARETE\r\nGender: Male\r\nLastName: CLARETE\r\nMaidenName: AGUILA\r\nMiddleName: \r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
759772	2024-07-01	10:50:26.0774105	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3605\r\nBirthDate: August 23, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: VIVIENNE\r\nFullName: VIVIENNE P MIGUEL\r\nGender: Male\r\nLastName: MIGUEL\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
759773	2024-07-01	10:50:26.0774105	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3605\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: VENEDICT\r\nFullName: VENEDICT P MIGUEL\r\nGender: Male\r\nLastName: MIGUEL\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
759774	2024-07-01	10:50:26.0774105	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3605\r\nDateOfExamination: May 22, 2011\r\nDateOfRelease: July 12, 2011\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: May 22, 2011\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 08-139825\r\nPlaceOfExamination: BATANGAS STATE UNIVERITY\r\nRating: 80.45%\r\nTitle: CAREER SERVICE PROFESSIONAL \r\n	admin	Eligibilities	1
759775	2024-07-01	10:50:26.0774105	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3605\r\nDateOfExamination: February 18, 1996\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 7\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: February 18, 1996\r\nLevelOfEligibility: First Level (Subprofessional)\r\nLicenseNumber: \r\nPlaceOfExamination: QUEZON CITY\r\nRating: 84.79%\r\nTitle: CAREER SERVICE SUB-PROFESSIONAL \r\n	admin	Eligibilities	1
759776	2024-07-01	10:50:26.0774105	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3605\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
759777	2024-07-01	10:56:10.1340569	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3604\r\nCharacterReferenceId: 0\r\nCompanyAddress: BEEPER LENDING CORPORATION, #18 D. SILANG ST., BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09360442846\r\nExtensionName: \r\nFirstName: CRISPIN\r\nLastName: EVANGELISTA\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
759778	2024-07-01	10:56:10.1440569	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: GULOD ITAAS\r\nBasicInformationId: 3604\r\nBirthDate: November 16, 1975\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: reina.perono@deped.gov.ph\r\nExtensionName: \r\nFirstName: REINA\r\nFullName: REINA C. PERONO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PERONO\r\nMaidenName: \r\nMiddleName: CARREON\r\nMobileNumber: 09155592244\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: GULOD ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PULONG IBABA, PUROK 1\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: PULONG IBABA, PUROK 1\r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: GULOD ITAAS\r\nBasicInformationId: 3604\r\nBirthDate: November 16, 1975\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: reina.perono@deped.gov.ph\r\nExtensionName: \r\nFirstName: REINA\r\nFullName: REINA C. PERONO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005607474\r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PERONO\r\nMaidenName: \r\nMiddleName: CARREON\r\nMobileNumber: 09155592244\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: GULOD ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PULONG IBABA, PUROK 1\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050045394-9\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: 04-3205475-0\r\nStreetName: PULONG IBABA, PUROK 1\r\nTIN: 302-575-536-0000\r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
759779	2024-07-01	10:56:10.1480570	<Undetected>	Update	BasicInformationId: 3604\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3266\r\nExtensionName: SR.\r\nFirstName: LUIS\r\nFullName: LUIS MEDINA PERONO SR.\r\nGender: Male\r\nLastName: PERONO\r\nMaidenName: \r\nMiddleName: MEDINA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3604\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3266\r\nExtensionName: SR.\r\nFirstName: LUIS\r\nFullName: LUIS PERONO SR.\r\nGender: Male\r\nLastName: PERONO\r\nMaidenName: \r\nMiddleName: MEDINA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
759780	2024-07-01	10:56:10.1540568	<Undetected>	Update	BasicInformationId: 3604\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3267\r\nExtensionName: \r\nFirstName: FELICIDAD\r\nFullName: FELICIDAD CARREON PERONO\r\nGender: Male\r\nLastName: PERONO\r\nMaidenName: \r\nMiddleName: CARREON\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3604\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3267\r\nExtensionName: \r\nFirstName: FELICIDAD\r\nFullName: FELICIDAD PERONO\r\nGender: Male\r\nLastName: PERONO\r\nMaidenName: \r\nMiddleName: CARREON\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
759781	2024-07-01	10:56:10.1580568	<Undetected>	Update	BasicInformationId: 3604\r\nCharacterReferenceId: 6539\r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: PABLO\r\nLastName: EVANGELISTA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3604\r\nCharacterReferenceId: 6539\r\nCompanyAddress: DE JOYA CAPITOL VILLAGE, KUMINTANG ILAYA BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 723-0995\r\nExtensionName: SR\r\nFirstName: PABLO\r\nLastName: EVANGELISTA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
759782	2024-07-01	11:03:58.8698755	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF SCIENCE IN ACCOUNTING MANAGEMENT\r\nLevel: College\r\n	admin	Courses	1
759783	2024-07-01	11:51:58.4513498	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: MERCEDES HOME\r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 0\r\nBirthDate: July 01, 2024\r\nBirthPlace: \r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: \r\nExtensionName: \r\nFirstName: MARIA JOSEFINA\r\nFullName: MARIA JOSEFINA M. LAGMAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: LAGMAN\r\nMaidenName: \r\nMiddleName: MARANAN\r\nMobileNumber: 09178213626\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: MERCEDES BOULEVARD\r\nTIN: \r\nWeight: 71\r\nZipCode: 4200\r\n	admin	BasicInformation	1
759784	2024-07-01	11:51:58.4634783	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3606\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
759821	2024-07-01	13:25:22.0717531	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: DOCTOR OF PHILOSOPHY IN MANAGEMENT \r\nLevel: Doctorate\r\n	admin	Courses	1
759785	2024-07-01	11:52:18.3904801	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: ILAT SOUTH\r\nBasicInformationId: 0\r\nBirthDate: June 03, 1996\r\nBirthPlace: BAUAN BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: SAN PASCUAL\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rozjellmatira03@gmail.com\r\nExtensionName: \r\nFirstName: ROZ JELL\r\nFullName: ROZ JELL A. MATIRA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006334413\r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MATIRA\r\nMaidenName: \r\nMiddleName: AMADO\r\nMobileNumber: 09287316773\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: ILAT SOUTH\r\nPermanentCity: SAN PASCUAL\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS CITY\r\nPermanentStreetName: \r\nPermanentZipCode: 4204\r\nPhilhealth: 09-025581779-4\r\nProvince: BATANGAS CITY\r\nReligion: \r\nSalutation: Ms.\r\nSSS: 04-3934204-1\r\nStreetName: \r\nTIN: 341-456-075-0000\r\nWeight: 55\r\nZipCode: 4204\r\n	admin	BasicInformation	1
759786	2024-07-01	11:52:18.4090639	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3607\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: ILAT ELEMENTARY SCHOOL\r\nYearGraduated: 2009\r\n	admin	EducationalBackgrounds	1
759787	2024-07-01	11:52:18.4090639	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3607\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2009\r\nDateTo: 2013\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: STA. TERESA COLLEGE\r\nYearGraduated: 2013\r\n	admin	EducationalBackgrounds	1
759788	2024-07-01	11:52:18.4090639	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: UNIVERSITY SCHOLAR\r\nBasicInformationId: 3607\r\nCourse: \r\nCourseId: 1257\r\nCourseOrMajor: \r\nDateFrom: 2013\r\nDateTo: 2017\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2017\r\n	admin	EducationalBackgrounds	1
759789	2024-07-01	11:52:18.4090639	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3607\r\nCourse: \r\nCourseId: 1256\r\nCourseOrMajor: \r\nDateFrom: 2022\r\nDateTo: 2023\r\nEducationalAttainment: 36 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
759790	2024-07-01	11:52:18.4090639	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3607\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RODEL\r\nFullName: RODEL MACUHA MATIRA\r\nGender: Male\r\nLastName: MATIRA\r\nMaidenName: \r\nMiddleName: MACUHA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
759791	2024-07-01	11:52:18.4090639	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3607\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LUISA\r\nFullName: LUISA MADLANGBAYAN AMADO\r\nGender: Male\r\nLastName: AMADO\r\nMaidenName: \r\nMiddleName: MADLANGBAYAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
759792	2024-07-01	11:52:18.4100637	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3607\r\nCharacterReferenceId: 0\r\nCompanyAddress: BAUAN BATANGAS\r\nCompanyName: \r\nContactNumber: 09257294626\r\nExtensionName: \r\nFirstName: EUNIZE\r\nLastName: MAGSINO\r\nMiddleName: E\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
759793	2024-07-01	11:52:18.4100637	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3607\r\nCharacterReferenceId: 0\r\nCompanyAddress: BAUAN, BATANGAS\r\nCompanyName: \r\nContactNumber: 09989520308\r\nExtensionName: \r\nFirstName: MARITES\r\nLastName: CONTI\r\nMiddleName: S\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
759794	2024-07-01	11:52:18.4100637	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3607\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN PASCUAL, BATANGAS\r\nCompanyName: \r\nContactNumber: 09175696033\r\nExtensionName: \r\nFirstName: MARIA CARLA\r\nLastName: ADAME\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
759795	2024-07-01	11:52:18.4100637	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3607\r\nDateOfExamination: March 13, 2022\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: March 13, 2022\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS NATIONAL HIGH SCHOOL\r\nRating: 83.58%\r\nTitle: CAREER SERVICE ELIGIBILITY (PROFESSIONAL LEVEL)\r\n	admin	Eligibilities	1
760012	2024-07-01	15:51:57.0879107	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCAFOLD ERECTION LEVEL NC II\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759796	2024-07-01	11:52:18.4100637	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3607\r\nCompanyInstitution: ACCOUNTING UNIT/ DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 06, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 21,211.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-1\r\nStatus: Permanent\r\nToDate: July 01, 2024\r\n	admin	Experiences	1
759797	2024-07-01	11:52:18.4100637	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3607\r\nCompanyInstitution: ACCOUNTING DEPARTMENT/ BATANGAS STATE UNIVERSITY ALANGILAN CAMPUS\r\nExperienceId: 0\r\nFromDate: January 03, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 20,252.32\r\nPositionHeld: ADMINISTRATIVE AIDE VI\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 06-1\r\nStatus: Job Order\r\nToDate: June 28, 2023\r\n	admin	Experiences	1
759798	2024-07-01	11:52:18.4100637	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3607\r\nCompanyInstitution: ACCOUNTING DEPARTMENT/ BATANGAS STATE UNIVERSITY ALANGILAN CAMPUS\r\nExperienceId: 0\r\nFromDate: June 09, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 20,252.32\r\nPositionHeld: ADMINISTRATIVE AIDE VI\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 06-1\r\nStatus: Job Order\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
759799	2024-07-01	11:52:18.4100637	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3607\r\nCompanyInstitution: ACCOUNTING DEPARTMENT/ BATANGAS STATE UNIVERSITY ALANGILAN\r\nExperienceId: 0\r\nFromDate: January 03, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 20,252.32\r\nPositionHeld: ADMINISTRATIVE AIDE VI\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 06-1\r\nStatus: Job Order\r\nToDate: June 03, 2022\r\n	admin	Experiences	1
759800	2024-07-01	11:52:18.4100637	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3607\r\nCompanyInstitution: ACCOUNTING DEPARTMENT/ BATANGAS STATE UNIVERSITY ALANGILAN CAMPUS\r\nExperienceId: 0\r\nFromDate: August 24, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 19,439.20\r\nPositionHeld: ADMINISTRATIVE AIDE VI\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 06-1\r\nStatus: Job Order\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
759801	2024-07-01	11:52:18.4100637	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3607\r\nCompanyInstitution: ACCOUNTING DEPARTMENT/ BATANGAS STATE UNIVERSITY ALANGILAN CAMPUS\r\nExperienceId: 0\r\nFromDate: March 16, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 19,439.20\r\nPositionHeld: ADMINISTRATIVE AIDE VI\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 06-1\r\nStatus: Job Order\r\nToDate: August 16, 2021\r\n	admin	Experiences	1
759802	2024-07-01	11:52:18.4100637	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3607\r\nCompanyInstitution: BUSINESS DEVELOPMENT DEPARTMENT/ MONTENEGRO SHIPPING LINES, INC.\r\nExperienceId: 0\r\nFromDate: February 01, 2020\r\nIsGovernmentService: False\r\nMonthlySalary: 16,000.00\r\nPositionHeld: FINANCE SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: October 23, 2020\r\n	admin	Experiences	1
759803	2024-07-01	11:52:18.4100637	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3607\r\nCompanyInstitution: ACCOUNTING DEPARTMENT / MONTENEGRO SHIPPING LINES, INC. \r\nExperienceId: 0\r\nFromDate: October 12, 2017\r\nIsGovernmentService: False\r\nMonthlySalary: 12,000.00\r\nPositionHeld: ACCOUNTING CLERK\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: January 01, 2022\r\n	admin	Experiences	1
759804	2024-07-01	11:52:18.4110636	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3607\r\nSkillId: 0\r\nSkillName: COMMITTED, HARD WORKING, WITH SENSE OF PROFESSIONALISM\r\n	admin	Skills	1
759805	2024-07-01	11:52:18.4110636	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3607\r\nSkillId: 0\r\nSkillName: CAN COMMUNICATE IN ENGLISH AND FILIPINO\r\n	admin	Skills	1
759806	2024-07-01	11:52:18.4110636	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3607\r\nSkillId: 0\r\nSkillName: HIGHLY VERSATILE TO PEOPLE AND CAN ADJUST EASILY TO SITUATION\r\n	admin	Skills	1
759807	2024-07-01	11:52:18.4110636	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3607\r\nSkillId: 0\r\nSkillName: EAGER AND ENTHUSIASTIC TO LEARN NEW THINGS\r\n	admin	Skills	1
759808	2024-07-01	11:52:18.4110636	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3607\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE; ABILITY TO WORK WITH QUICKBOOKS APPLICATION\r\n	admin	Skills	1
759809	2024-07-01	11:52:18.4110636	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3607\r\nSkillId: 0\r\nSkillName: READING BOOKS, PLAYING GUITAR, SINGING, DANCING\r\n	admin	Skills	1
759810	2024-07-01	11:52:18.4110636	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3607\r\nRecognitionId: 0\r\nRecognitionName: 3RD PLACE IN BADMINTON DOUBLES (GIRLS) COMPETITION DURING 2023 SDO BATANGAS CITY INTERCOLORS SPORTS COMPETITION ON AUGUST 24, 2023\r\n	admin	Recognitions	1
759811	2024-07-01	11:52:18.4110636	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3607\r\nRecognitionId: 0\r\nRecognitionName: CERTIFICATE OF RECOGNITION FOR SERVICE RENDERED AS DOCUMENTER DURING 1ST GAWAD KAWANI OF SDO BATANGAS CITY HELD ON DECEMBER 11, 2023 AT CITY TRAVEL HOTEL, KISA ROAD, BAGUIO CITY\r\n	admin	Recognitions	1
759812	2024-07-01	11:52:18.4110636	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3607\r\nRecognitionId: 0\r\nRecognitionName: CERTIFICATE OF RECOGNITION FOR SERVICE RENDERED AS SECRETARIAT IN PERFORMANCE MANAGEMENT (PM) SYSTEM TO ACHIEVE MATURITY LEVEL 2 HELD ON DECEMBER 11, 2023 AT CITY TRAVEL HOTEL, KISAD ROAD, BAGUIO CITY\r\n	admin	Recognitions	1
759813	2024-07-01	11:52:18.4110636	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3607\r\nRecognitionId: 0\r\nRecognitionName: DEDICATED EMPLOYEES WITHOUT ABSENCES, LEAVES AND TARDINESS (DEALT) AWARD FOR THE MONTH OF SEPTEMBER 2023 AWARDED ON DECEMBER 11, 2023 AT CITY TRAVEL HOTEL, KISAD ROAD, BAGUIO CITY\r\n	admin	Recognitions	1
759814	2024-07-01	11:52:18.4110636	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3607\r\nRecognitionId: 0\r\nRecognitionName: CERTIFICATE OF RECOGNITION FOR SERVICE RENDERED AS TWG CO-CHAIR DURING DEPED 12 DAYS OF CHRISTMAS WITH THEME: MAKULAY ANG PASKO NG PAMILYANG PILIPINO HELD ON DECEMBER 18, 2023 AT BULWAGAN ALA-EH SDO BATANGAS CITY\r\n	admin	Recognitions	1
759815	2024-07-01	11:52:18.4110636	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3607\r\nRecognitionId: 0\r\nRecognitionName: CERTIFICATE OF PARTICIPATION IN KAPEHANG ALA- EH- SEARCH FOR CALENDAR MODEL ON JANUARY 3, 2024 AT BULWAGAN ALA-EH, SDO BATANGAS CITY\r\n	admin	Recognitions	1
759816	2024-07-01	11:52:18.4110636	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3607\r\nRecognitionId: 0\r\nRecognitionName: MERITORIOUS PERFORMANCE AWARD GIVEN ON JANUARY 23, 2024 AT BULWAGANG ALA-EH, SDO BATANGAS CITY\r\n	admin	Recognitions	1
759817	2024-07-01	11:52:18.4120635	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3607\r\nOrganizationId: 0\r\nOrganizationName: YOUNG ACCOUNTING MANAGERS SOCIETY (YAMS) BATANGAS STATE UNIVERSITY (BATANGAS CHAPTER) 2015-2017\r\n	admin	Organizations	1
759818	2024-07-01	11:52:18.4120635	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3607\r\nOrganizationId: 0\r\nOrganizationName: JUNIOR PHILIPPINE INSTITUTE OF ACCOUNTANTS (JPIA) BATANGAS CHAPTER 2013-2015\r\n	admin	Organizations	1
759819	2024-07-01	11:52:18.4120635	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3607\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: RESIGNATION\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
759820	2024-07-01	13:11:18.3430384	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF SCIENCE IN COMPUTER SCIENCES\r\nLevel: College\r\n	admin	Courses	1
759822	2024-07-01	13:41:12.8944201	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: VAW FREE SDO AND GENDER- FAIR LANGUAGE ADVOCACY IN THE WORKPLACE\r\nTrainingId: 0\r\nType:  TECHNICAL\r\n	admin	Trainings	1
759823	2024-07-01	13:43:44.3399915	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION QUALITY MANAGEMENT (DQMS) JOURNEY TOWARDS ONE DEPED, ONE QMS CERTIFICATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759824	2024-07-01	13:46:43.8065061	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FINANCIAL ADVANCEMENT SKILLS FOR SCHOOL ADMINISTRATORS AND FINANCE AND ADMINISTRATIVE PERSONNEL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759825	2024-07-01	13:48:09.9160560	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SAFE SPACES, ACT AND GENDER-RESPONSIVE POLICIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759826	2024-07-01	13:49:57.1812637	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FINALIZATION OF YEAR-END REPORTS AND PERFORMANCE REVIEW FOR FY 2022\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759827	2024-07-01	13:52:06.0920967	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL SEMINAR- WORKSHOP ON THE PREPARATION AND CONSOLIDATION OF CY 2022 MID-YEAR FINANCIAL REPORTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759828	2024-07-01	13:55:29.6608102	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING- WORKSHOP ON QUALITY MANAGEMENT SYSTEMS FOCUSED ON SEVEN S (7s)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759829	2024-07-01	13:57:26.1156488	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REORIENTATION OF WEB-BASED MONITORING SYSTEM USERS OF THE SCHOOLS MOOE FUNDS IN SCHOOLS DIVISION OFFICES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759830	2024-07-01	14:00:27.8363318	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL SEMINAR-WORKSHOP IN THE PREPARATION AND CONSOLIDATION OF FY 2021 YEAR-END FINANCIAL REPORTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759831	2024-07-01	14:02:36.0869811	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SEMINAR-WORKSHOP ON THE PREPARATION OF FY 2022 BUDGET EXECUTION DOCUMENTS ENCODING IN THE UNIFIED REPORTING SYSTEM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759832	2024-07-01	14:04:55.0352683	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING: PROMOTING TRANSPARENCY, ACCOUNTABILITY AND OPTIMIZED USE OF SCHOOL RESOURCES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759833	2024-07-01	14:06:36.4437324	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL SEMINAR/ WORKSHOP ON THE PREPARATION AND CONSODILATION OF CY 2021 MID-YEAR FINANCIAL REPORTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759834	2024-07-01	14:09:31.3634460	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2020 GOVERMENT SUMMIT & GENERAL MEMBERSHIP MEETING "FOSTERING EFFECTIVE AND EFFICIENT UTILIZATION OF GOVERNMENT FUNDS: REINFORCING THE LAWS, REGULATIONS AMIDST CHALLENGING TIMES"\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759835	2024-07-01	14:11:44.0193707	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TECHNICAL ASSISTANCE ON THE PREPARATION OF BANK RECONCILIATION STATEMENT, PROPER IMPLEMENTATION OF CHECKING ACCOUNTS AND UPDATES ON FINANCE ISSUES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759836	2024-07-01	14:13:19.6408791	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL SEMINAR-WORKSHOP ON THE PREPARATION AND CONSODILATION OF FY 2019 FINANCIAL REPORTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759837	2024-07-01	14:16:01.1454875	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING ON CAREER DEVELOPMENT & SUCCESSION MANAGEMENT CUM FINANCIAL LITERACY MANAGEMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759838	2024-07-01	14:18:11.6594826	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPABILITY BUILDING ON CAREER DEVELOPMENT & SUCCESSION MANAGEMENT CUM FINANCIAL LITERACY MANAGEMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759839	2024-07-01	14:20:15.0513976	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION OF UNIFIED REPORTING SYSTEM (URS) VERSION 2.0 AND ACTUAL ONLINE ENCODING ACTIVITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759840	2024-07-01	14:24:58.0431825	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING FOR SCHOOL HEADS AND FINANCIAL STAFF ON THE PROPER UTILZATION OF MOOE FUNDS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759841	2024-07-01	14:26:36.7461826	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL SEMINAR WORKSHOP ON THE PREPARATION OF CY 2019 MID-YEAR FINANCIAL REPORTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759842	2024-07-01	14:28:41.7149256	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ISO 1901:2018 GUIDELINES FOR AUDITING MANAGEMENT SYSTEM TRAINING COURSE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759843	2024-07-01	14:30:14.1849482	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BUCAL\r\nBasicInformationId: 0\r\nBirthDate: June 09, 1989\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: darlenevenus.magnaye@deped.gov.ph\r\nExtensionName: \r\nFirstName: DARLENE VENUS\r\nFullName: DARLENE VENUS DT. MAGNAYE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005153064\r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MAGNAYE\r\nMaidenName: \r\nMiddleName: DE TORRES\r\nMobileNumber: 09077527070\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BUCAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 08-050940817-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: 04-2245291-9\r\nStreetName: \r\nTIN: 291-810-322-0000\r\nWeight: 59.8\r\nZipCode: 4200\r\n	admin	BasicInformation	1
759844	2024-07-01	14:30:14.4347164	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3608\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1995\r\nDateTo: 2001\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: CONCEPCION ELEMENTARY SCHOOL\r\nYearGraduated: 2001\r\n	admin	EducationalBackgrounds	1
759845	2024-07-01	14:30:14.4387163	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3608\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2005\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2005\r\n	admin	EducationalBackgrounds	1
759846	2024-07-01	14:30:14.4437163	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3608\r\nCourse: \r\nCourseId: 1258\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2010\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY/ ALANGILAN CAMPUS\r\nYearGraduated: 2010\r\n	admin	EducationalBackgrounds	1
759847	2024-07-01	14:30:14.4477164	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3608\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOHN ERWIN\r\nFullName: JOHN ERWIN CONDEZ MAGNAYE\r\nGender: Male\r\nLastName: MAGNAYE\r\nMaidenName: \r\nMiddleName: CONDEZ\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
759848	2024-07-01	14:30:14.4517162	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3608\r\nBirthDate: October 26, 2016\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JILLIAN DAYNE\r\nFullName: JILLIAN DAYNE DE TORRES MAGNAYE\r\nGender: Male\r\nLastName: MAGNAYE\r\nMaidenName: \r\nMiddleName: DE TORRES\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
759849	2024-07-01	14:30:14.4557163	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3608\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PERFECTO\r\nFullName: PERFECTO ABEL DE TORRES\r\nGender: Male\r\nLastName: DE TORRES\r\nMaidenName: \r\nMiddleName: ABEL\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
759850	2024-07-01	14:30:14.4597163	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3608\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LEILANI\r\nFullName: LEILANI MERCADO ILAO\r\nGender: Male\r\nLastName: ILAO\r\nMaidenName: \r\nMiddleName: MERCADO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
759851	2024-07-01	14:30:14.4647164	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3608\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759852	2024-07-01	14:30:14.4687163	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3608\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15045\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759853	2024-07-01	14:30:14.4727162	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3608\r\nEmployeeTrainingId: 0\r\nFromDate: May 15, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: May 17, 2023\r\nTrainingId: 15046\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759854	2024-07-01	14:30:14.4767163	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3608\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15047\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759855	2024-07-01	14:30:14.4807163	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3608\r\nEmployeeTrainingId: 0\r\nFromDate: January 17, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: January 17, 2023\r\nTrainingId: 15048\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759856	2024-07-01	14:30:14.4857163	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3608\r\nEmployeeTrainingId: 0\r\nFromDate: July 05, 2022\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- REGION IVA CALABARZON\r\nStatus: \r\nToDate: July 08, 2022\r\nTrainingId: 15049\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759857	2024-07-01	14:30:14.4897162	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3608\r\nEmployeeTrainingId: 0\r\nFromDate: June 30, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: June 30, 2022\r\nTrainingId: 15050\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759858	2024-07-01	14:30:14.4927163	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3608\r\nEmployeeTrainingId: 0\r\nFromDate: June 06, 2022\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV A CALABARZON\r\nStatus: \r\nToDate: June 08, 2022\r\nTrainingId: 15051\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759859	2024-07-01	14:30:14.4977163	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3608\r\nEmployeeTrainingId: 0\r\nFromDate: January 10, 2022\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IVA CALABARZON\r\nStatus: \r\nToDate: January 14, 2022\r\nTrainingId: 15049\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759860	2024-07-01	14:30:14.5017162	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3608\r\nEmployeeTrainingId: 0\r\nFromDate: November 15, 2021\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IVA CALABARZON\r\nStatus: \r\nToDate: November 19, 2021\r\nTrainingId: 15053\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759861	2024-07-01	14:30:14.5057163	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3608\r\nEmployeeTrainingId: 0\r\nFromDate: August 17, 2021\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: August 19, 2021\r\nTrainingId: 15054\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759862	2024-07-01	14:30:14.5097162	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3608\r\nEmployeeTrainingId: 0\r\nFromDate: July 12, 2021\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IVA CALABARZON\r\nStatus: \r\nToDate: July 16, 2021\r\nTrainingId: 15055\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759863	2024-07-01	14:30:14.5137162	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3608\r\nEmployeeTrainingId: 0\r\nFromDate: September 03, 2020\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: PICPA SOUTHERN TAGALOG REGION\r\nStatus: \r\nToDate: September 05, 2020\r\nTrainingId: 15056\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759864	2024-07-01	14:30:14.5187162	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3608\r\nEmployeeTrainingId: 0\r\nFromDate: July 13, 2020\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: July 15, 2020\r\nTrainingId: 15057\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759865	2024-07-01	14:30:14.5217162	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3608\r\nEmployeeTrainingId: 0\r\nFromDate: January 20, 2020\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATIONREGION IVA CALABARZON\r\nStatus: \r\nToDate: January 24, 2020\r\nTrainingId: 15058\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759866	2024-07-01	14:30:14.5267163	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3608\r\nEmployeeTrainingId: 0\r\nFromDate: December 12, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: December 13, 2019\r\nTrainingId: 15060\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759867	2024-07-01	14:30:14.5307162	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3608\r\nEmployeeTrainingId: 0\r\nFromDate: August 29, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IVA CALABARZON\r\nStatus: \r\nToDate: August 30, 2019\r\nTrainingId: 15061\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759868	2024-07-01	14:30:14.5347162	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3608\r\nEmployeeTrainingId: 0\r\nFromDate: July 30, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: July 31, 2019\r\nTrainingId: 15062\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759869	2024-07-01	14:30:14.5387162	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3608\r\nEmployeeTrainingId: 0\r\nFromDate: July 09, 2019\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IVA CALABARZON\r\nStatus: \r\nToDate: July 12, 2019\r\nTrainingId: 15063\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759870	2024-07-01	14:30:14.5427162	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3608\r\nEmployeeTrainingId: 0\r\nFromDate: May 23, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: JDBC OCCUPATIONAL HEALTH, SAFETY AND ENVIRONMENT CONSULTANCY\r\nStatus: \r\nToDate: May 24, 2019\r\nTrainingId: 15064\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759871	2024-07-01	14:30:14.5467163	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3608\r\nCharacterReferenceId: 0\r\nCompanyAddress: SOROSORO ILAYA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: (043) 722-0715\r\nExtensionName: \r\nFirstName: MARIA JOSEFINA\r\nLastName: LAGMAN\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
759872	2024-07-01	14:30:14.5507163	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3608\r\nCharacterReferenceId: 0\r\nCompanyAddress: GULOD ITAAS, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: (043) 723-6277\r\nExtensionName: \r\nFirstName: YOLANDA\r\nLastName: BRIONES\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
759873	2024-07-01	14:30:14.5547162	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3608\r\nCharacterReferenceId: 0\r\nCompanyAddress: TULO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: (043) 722-0715\r\nExtensionName: \r\nFirstName: ROSE ANNE ALYSSA\r\nLastName: GABIA\r\nMiddleName: F\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
759874	2024-07-01	14:30:14.5597162	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3608\r\nDateOfExamination: October 23, 2016\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 7\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: October 23, 2016\r\nLevelOfEligibility: First Level (Subprofessional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS STATE UNIVERSITY- ALANGILAN CAMPUS\r\nRating: 80.16%\r\nTitle: CSC SUBPROFESSIONAL ELIGIBILITY\r\n	admin	Eligibilities	1
759875	2024-07-01	14:30:14.5627163	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3608\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 07, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 19,757.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-2\r\nStatus: Permanent\r\nToDate: July 01, 2024\r\n	admin	Experiences	1
759876	2024-07-01	14:30:14.5677163	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3608\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 07, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 18,784.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-1\r\nStatus: Permanent\r\nToDate: July 06, 2021\r\n	admin	Experiences	1
759877	2024-07-01	14:30:14.5717162	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3608\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: February 15, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 15,818.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 08-1\r\nStatus: Permanent\r\nToDate: July 06, 2018\r\n	admin	Experiences	1
759878	2024-07-01	14:30:14.5757163	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3608\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 04, 2014\r\nIsGovernmentService: False\r\nMonthlySalary: 10,582.00\r\nPositionHeld: ADMINISTRATIVE AIDE IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: February 14, 2016\r\n	admin	Experiences	1
759879	2024-07-01	14:30:14.5797162	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3608\r\nCompanyInstitution: AMA COMPUTER LEARNING CENTER- BATANGAS CAMPUS\r\nExperienceId: 0\r\nFromDate: December 04, 2010\r\nIsGovernmentService: False\r\nMonthlySalary: 10,000.00\r\nPositionHeld: ASSISTANT INSTRUCTOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: March 27, 2014\r\n	admin	Experiences	1
759880	2024-07-01	14:30:14.5837162	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3608\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
759881	2024-07-01	14:30:14.5887162	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3608\r\nRecognitionId: 0\r\nRecognitionName: CERTIFICATE OF RECOGNITION AS RESOURCE SPEAKER "TECHNICAL ASSISTANCE CUM WEBINAR ON THE PREPARATION OF BANK RECONCILIATION STATEMENT, PROPER IMPLEMENTATION OF CHECKING ACCOUNT AND UPDATES ON FINANCE ISSUES"\r\n	admin	Recognitions	1
759882	2024-07-01	14:30:14.5927162	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3608\r\nRecognitionId: 0\r\nRecognitionName: CERTIFICATE OF PARTICIPATION AS RESOURCE SPEAKER "CAPACITY BUILDING: PROMOTING TRANSPARENCY, ACCOUNTABILITY AND OPTIMIZED USE OF SCHOOL RESOURCES"\r\n	admin	Recognitions	1
759883	2024-07-01	14:30:14.5967162	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3608\r\nRecognitionId: 0\r\nRecognitionName: CERTIFICATE OF RECOGNITION AS RESOURCE SPEAKER "SEMINAR WORKSHOP ON THE IMPLMENTATION OF WEB-BASED MONITORING SYSTEM OF SCHOOL MOOE FUNDS"\r\n	admin	Recognitions	1
759884	2024-07-01	14:30:14.6007162	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3608\r\nRecognitionId: 0\r\nRecognitionName: CERTIFICATE OF RECOGNITION AS RESOURCE SPEAKER "FINANCIAL ADVANCEMENT SKILLS FOR SCHOOL ADMINISTRATORS AND FINANCE & ADMINISTRATIVE PERSONNEL"\r\n	admin	Recognitions	1
759885	2024-07-01	14:30:14.6047161	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3608\r\nOrganizationId: 0\r\nOrganizationName: DEPED- NATIONAL EMPLOYEES UNION\r\n	admin	Organizations	1
759886	2024-07-01	14:30:14.6097163	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3608\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
759887	2024-07-01	14:32:27.3513150	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER IN MANAGEMENT IN PUBLIC ADMINISTRATION \r\nLevel: Master's\r\n	admin	Courses	1
759888	2024-07-01	14:34:52.7387477	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: "AWARENESS ON BATSTATEU SUSTAINABLE DEVELOPMENT GOALS" WEBINAR\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759899	2024-07-01	14:36:12.6802587	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3609\r\nDateOfExamination: July 27, 2008\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: July 27, 2008\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS CITY \r\nRating: 81.03% \r\nTitle: CAREER CIVIL SERVICE PASSER - PROFESSIONAL \r\n	admin	Eligibilities	1
759900	2024-07-01	14:36:12.6802587	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3609\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
760295	2024-07-02	14:07:00.9064842	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3606\r\nRecognitionId: 0\r\nRecognitionName: OUTSTANDING SCHOOLS DIVISION  ACCOUNTANT - REGIONAL LEVEL \r\n	admin	Recognitions	1
759889	2024-07-01	14:36:12.6662655	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: BAGONG POOK\r\nBarangay: BILOGO\r\nBasicInformationId: 0\r\nBirthDate: July 01, 2024\r\nBirthPlace: \r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RINALYN.SORIANO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RINALYN\r\nFullName: RINALYN S. ZARASPE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: SORIANO\r\nMobileNumber: 09273533174\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: BAGONG POOK\r\nPermanentBarangay: BILOGO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 70\r\nZipCode: 4200\r\n	admin	BasicInformation	1
759890	2024-07-01	14:36:12.6792592	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: SECOND HONORABLE \r\nBasicInformationId: 3609\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 2000\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BILOGO ELEMENTARY SCHOOL \r\nYearGraduated: 2000\r\n	admin	EducationalBackgrounds	1
759891	2024-07-01	14:36:12.6802587	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3609\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2000\r\nDateTo: 2004\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL \r\nYearGraduated: 2004\r\n	admin	EducationalBackgrounds	1
759892	2024-07-01	14:36:12.6802587	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: OCVAS SCHOLAR \r\nBasicInformationId: 3609\r\nCourse: \r\nCourseId: 1257\r\nCourseOrMajor: \r\nDateFrom: 2004\r\nDateTo: 2008\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2008\r\n	admin	EducationalBackgrounds	1
759893	2024-07-01	14:36:12.6802587	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3609\r\nCourse: \r\nCourseId: 1260\r\nCourseOrMajor: \r\nDateFrom: 2016\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: PHILIPPINE CHRISTIAN UNIVERSITY \r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
759894	2024-07-01	14:36:12.6802587	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3609\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FERDINAND DERICK\r\nFullName: FERDINAND DERICK FARAON ZARASPE\r\nGender: Male\r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: FARAON\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
759895	2024-07-01	14:36:12.6802587	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3609\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EVARISTO\r\nFullName: EVARISTO PEREZ SORIANO\r\nGender: Male\r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: PEREZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
759896	2024-07-01	14:36:12.6802587	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3609\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROSSINI\r\nFullName: ROSSINI GUTIERREZ MAGADIA\r\nGender: Male\r\nLastName: MAGADIA\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
759897	2024-07-01	14:36:12.6802587	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3609\r\nBirthDate: August 23, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DWAYNE JARRED\r\nFullName: DWAYNE JARRED S ZARASPE\r\nGender: Male\r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
759898	2024-07-01	14:36:12.6802587	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3609\r\nBirthDate: March 15, 2023\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RAJON JAYDEN\r\nFullName: RAJON JAYDEN S ZARASPE\r\nGender: Male\r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
759901	2024-07-01	14:36:51.0917869	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BREAK THE PLASTIC WAVE: A MARINE POLLUTION AWARENESS SEMINAR\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770646	2025-03-17	13:20:07.2008246	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3781\r\nSkillId: 0\r\nSkillName: HAS STRONG WORK ETHICS\r\n	admin	Skills	1
759902	2024-07-01	14:38:55.4759683	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WEBINAR ON EASE OF DOING BUSINESS AND EFFICIENT GOVERNMENT SERVICE DELIVERY ACT OF 2018\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759903	2024-07-01	14:41:49.0111985	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 10TH ENTREPRENEURIAL FORUM: "UNVEILING BUSINESS STRATEGY FOR SUCCESS: READY, GET, SET, GROW!"\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759904	2024-07-01	14:43:41.8739159	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ISO 14001:2015 AWARENESS WEBINBAR "ENVIRONMENTAL PILLAR OF SUSTAINABILITY"\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759905	2024-07-01	14:46:19.5623220	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BATSTATEU ALANGILAN TEAM BUILDING 2022 FOR FACULTY AND EMPLOYEES: "3Rs: REFRESH, RELAX AND RESTORE"\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759906	2024-07-01	14:47:47.3629427	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FILES MANAGEMENT AND EMAIL COMMUNICATION WEBINAR-TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759907	2024-07-01	14:49:14.0722579	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MODULE 3: MS EXCEL INTERMEDIATE TRAINING LOOK UP AND REFERENCE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759908	2024-07-01	14:51:24.6582557	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MODULE 2: EXCELBASIC FUNCTION AND FORMULAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759909	2024-07-01	14:53:04.9040156	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MODULE 1: BASIC EXCEL FOR BEGINNERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759910	2024-07-01	14:55:02.8341624	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ICT SPECIALIZED COURSE TRAINING FOR NON-TEACHING SCHOOL STAFF\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759911	2024-07-01	14:58:18.4501314	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ISO 9001:2015 QUALITY MANAGEMENT SYSTEM AWARENESS WEBINAR\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759912	2024-07-01	15:00:05.4081754	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ENHANCING EMPLOYEE DECISION-MAKING THROUGH COMPLETED STAFF WORK\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759913	2024-07-01	15:01:40.9825100	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3607\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: QUALITY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759914	2024-07-01	15:01:40.9865100	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3607\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15045\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759915	2024-07-01	15:01:40.9905100	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3607\r\nEmployeeTrainingId: 0\r\nFromDate: February 13, 2023\r\nHours: 3\r\nNatureOfParticipation: QUALITY\r\nSponsoringAgency: BATANGAS STATE UNIVERSITY- ALANGILAN, HUMAN RESOURCE MANAGAEMENT OFFICE\r\nStatus: \r\nToDate: February 13, 2023\r\nTrainingId: 15065\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759916	2024-07-01	15:01:40.9955102	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3607\r\nEmployeeTrainingId: 0\r\nFromDate: December 12, 2022\r\nHours: 3\r\nNatureOfParticipation: QUALITY\r\nSponsoringAgency: BATANGAS STATE UNIVERSITY, ENVIRONMENTAL MANAGEMENT UNIT\r\nStatus: \r\nToDate: December 12, 2022\r\nTrainingId: 15066\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759917	2024-07-01	15:01:40.9995101	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3607\r\nEmployeeTrainingId: 0\r\nFromDate: October 27, 2022\r\nHours: 3\r\nNatureOfParticipation: QUALITY\r\nSponsoringAgency: BATANGAS STATE UNIVERSITY \r\nStatus: \r\nToDate: October 27, 2022\r\nTrainingId: 15067\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759918	2024-07-01	15:01:41.0035101	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3607\r\nEmployeeTrainingId: 0\r\nFromDate: January 10, 2022\r\nHours: 4\r\nNatureOfParticipation: SKILLS\r\nSponsoringAgency: GOLDEN GATE COLLEGES- GRADUATE SCHOOL\r\nStatus: \r\nToDate: January 10, 2022\r\nTrainingId: 15068\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759919	2024-07-01	15:01:41.0075101	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3607\r\nEmployeeTrainingId: 0\r\nFromDate: September 20, 2022\r\nHours: 3\r\nNatureOfParticipation: QUALITY\r\nSponsoringAgency: BATANGAS STATE UNIVERSITY, ENVIRONMENTAL MANAGEMENT UNIT\r\nStatus: \r\nToDate: September 20, 2022\r\nTrainingId: 15069\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759920	2024-07-01	15:01:41.0115101	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3607\r\nEmployeeTrainingId: 0\r\nFromDate: June 17, 2022\r\nHours: 8\r\nNatureOfParticipation: SKILLS\r\nSponsoringAgency: BATANGAS STATE UNIVERSITY \r\nStatus: \r\nToDate: June 17, 2022\r\nTrainingId: 15070\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759921	2024-07-01	15:01:41.0165100	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3607\r\nEmployeeTrainingId: 0\r\nFromDate: November 11, 2021\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BATANGAS STATE UNIVERSITY, LIBRARY SERVICES ALANGILAN\r\nStatus: \r\nToDate: November 11, 2021\r\nTrainingId: 15071\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759922	2024-07-01	15:01:41.0195101	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3607\r\nEmployeeTrainingId: 0\r\nFromDate: October 17, 2021\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: INNOVATION PHILIPPINES TRAINING CONSULTANCY SERVICES\r\nStatus: \r\nToDate: October 17, 2021\r\nTrainingId: 15072\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759923	2024-07-01	15:01:41.0235101	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3607\r\nEmployeeTrainingId: 0\r\nFromDate: October 10, 2023\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: INNOVATION PHILIPPINES TRAINING CONSULTANCY SERVICES\r\nStatus: \r\nToDate: October 10, 2023\r\nTrainingId: 15073\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759924	2024-07-01	15:01:41.0285100	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3607\r\nEmployeeTrainingId: 0\r\nFromDate: February 10, 2021\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: INNOVATION PHILIPPINES TRAINING CONSULTANCY SERVICES \r\nStatus: \r\nToDate: February 10, 2021\r\nTrainingId: 15074\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759925	2024-07-01	15:01:41.0315100	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3607\r\nEmployeeTrainingId: 0\r\nFromDate: September 23, 2021\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY- LUZON CLUSTER 3\r\nStatus: \r\nToDate: September 23, 2021\r\nTrainingId: 15075\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759926	2024-07-01	15:01:41.0365101	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3607\r\nEmployeeTrainingId: 0\r\nFromDate: September 24, 2021\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY- LUZON CLUSTER 3\r\nStatus: \r\nToDate: September 24, 2021\r\nTrainingId: 15075\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759927	2024-07-01	15:01:41.0405100	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3607\r\nEmployeeTrainingId: 0\r\nFromDate: July 16, 2021\r\nHours: 6\r\nNatureOfParticipation: QUALITY\r\nSponsoringAgency: BATANGAS STATE UNIVERSITY \r\nStatus: \r\nToDate: July 16, 2021\r\nTrainingId: 15076\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759928	2024-07-01	15:01:41.0445101	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3607\r\nEmployeeTrainingId: 0\r\nFromDate: June 23, 2021\r\nHours: 8\r\nNatureOfParticipation: SKILLS\r\nSponsoringAgency: BATANGAS STATE UNIVERSITY \r\nStatus: \r\nToDate: June 23, 2021\r\nTrainingId: 15077\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759929	2024-07-01	15:01:41.0485100	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3607\r\nEmployeeTrainingId: 0\r\nFromDate: June 25, 2021\r\nHours: 8\r\nNatureOfParticipation: SKILLS\r\nSponsoringAgency: BATANGAS STATE UNIVERSITY \r\nStatus: \r\nToDate: June 25, 2021\r\nTrainingId: 15077\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759930	2024-07-01	15:01:41.0525101	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: ILAT SOUTH\r\nBasicInformationId: 3607\r\nBirthDate: June 03, 1996\r\nBirthPlace: BAUAN BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: SAN PASCUAL\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rozjellmatira03@gmail.com\r\nExtensionName: \r\nFirstName: ROZ JELL\r\nFullName: ROZ JELL A. MATIRA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006334413\r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MATIRA\r\nMaidenName: \r\nMiddleName: AMADO\r\nMobileNumber: 09287316773\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: ILAT SOUTH\r\nPermanentCity: SAN PASCUAL\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS CITY\r\nPermanentStreetName: \r\nPermanentZipCode: 4204\r\nPhilhealth: 09-025581779-4\r\nProvince: BATANGAS CITY\r\nReligion: \r\nSalutation: Ms.\r\nSSS: 04-3934204-1\r\nStreetName: \r\nTIN: 341-456-075-0000\r\nWeight: 55\r\nZipCode: 4204\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: ILAT SOUTH\r\nBasicInformationId: 3607\r\nBirthDate: June 03, 1996\r\nBirthPlace: BAUAN BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: SAN PASCUAL\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rozjellmatira03@gmail.com\r\nExtensionName: \r\nFirstName: ROZ JELL\r\nFullName: ROZ JELL A. MATIRA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006334413\r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MATIRA\r\nMaidenName: \r\nMiddleName: AMADO\r\nMobileNumber: 09287316773\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: ILAT SOUTH\r\nPermanentCity: SAN PASCUAL\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS CITY\r\nPermanentStreetName: \r\nPermanentZipCode: 4204\r\nPhilhealth: 09-025581779-4\r\nProvince: BATANGAS CITY\r\nReligion: \r\nSalutation: \r\nSSS: 04-3934204-1\r\nStreetName: \r\nTIN: 341-456-075-0000\r\nWeight: 55\r\nZipCode: 4204\r\n	admin	BasicInformation	1
759931	2024-07-01	15:01:41.0565100	<Undetected>	Update	BasicInformationId: 3607\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3273\r\nExtensionName: \r\nFirstName: RODEL\r\nFullName: RODEL MACUHA MATIRA\r\nGender: Male\r\nLastName: MATIRA\r\nMaidenName: \r\nMiddleName: MACUHA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3607\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3273\r\nExtensionName: \r\nFirstName: RODEL\r\nFullName: RODEL MATIRA\r\nGender: Male\r\nLastName: MATIRA\r\nMaidenName: \r\nMiddleName: MACUHA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
759932	2024-07-01	15:01:41.0605100	<Undetected>	Update	BasicInformationId: 3607\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3274\r\nExtensionName: \r\nFirstName: LUISA\r\nFullName: LUISA MADLANGBAYAN AMADO\r\nGender: Male\r\nLastName: AMADO\r\nMaidenName: \r\nMiddleName: MADLANGBAYAN\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3607\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3274\r\nExtensionName: \r\nFirstName: LUISA\r\nFullName: LUISA AMADO\r\nGender: Male\r\nLastName: AMADO\r\nMaidenName: \r\nMiddleName: MADLANGBAYAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
759933	2024-07-01	15:03:53.3687853	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING WORKSHOP ON THE PAYROLL PROCESSES, PROCEDURES AND FOR THE DOWNLOADING OF PAYROLLS TO THE DIVISION OFFICES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759934	2024-07-01	15:06:03.3137361	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION QUALITY MANAGEMENT SYSTEM- JOURNEY TOWARDS ONE DEPED, ONE QMS CERTIFICATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759935	2024-07-01	15:09:30.5863871	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CLUSTER 3: TRAINING OF TRAINERS ON THE PAYROLL PROCESSES, PROCEDURES, AND POLICIES FOR THE DOWNLOADING OF PAYROLLS TO SCHOOL DIVISION OFFICES (REGIONS IV-A, IV-B, V, AND NCR)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759936	2024-07-01	15:11:17.4496226	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FINANCIAL ADVANCEMENT SKILLS FOR SCHOOL ADMINISTRATORS AND ADMINISTRATIVE PERSONNEL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759937	2024-07-01	15:14:52.9932215	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SEMINAR-WORKSHOP ON THE RECONCILIATION OF PSI-POP AND PAYROLL DISBURSEMENT VERSUS THE FY2023 NATIONAL EXPENDITURE PROGRAM (NEP)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759938	2024-07-01	15:16:43.0410339	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING-WORKSHOP QUALITY MANAGEMEN SYSTEM FOCUSED ON 7s\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759939	2024-07-01	15:19:26.1611981	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PICPA: ANNUAL TAX AND FINANCIAL STATEMENTS FILING REMINDERS AND UPDATES PART 1 AND 2\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759940	2024-07-01	15:22:00.9842979	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2022 ORIENTATION TRAINING ON QUALITY MANAGEMENT SYSTEM, DEPED ANNUAL OF STYLE, AND DEPED SERVICE MARKS AND VISUAL IDENTITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759941	2024-07-01	15:24:18.2157078	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: COA: INSURING TRANSPARENCY AND ACCOUNTABILITY OF GOVERNMENT RESPONSE TO PANDEMIC/ BATSTATEU-CABEIHM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759942	2024-07-01	15:26:03.5449947	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BUDGET ALLOCATION AND UTILIZATION FOR BE-LCT DURING PUBLIC HEALTH EMERGENCY/BATSTATEU-CABEIHM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759943	2024-07-01	15:28:19.4089290	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: VIRTUAL CAPACITY BUILDING ON RA 9184: GOVERNMENT PROCUREMENT INITIATIVES UNDER NEW NORMAL/ BATSTATEU-CABEIHM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759944	2024-07-01	15:31:16.9767281	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2021 GOVERNMENT SUMMIT: TAXATION, BUSINESS REGISTRATION AND INVOICE REQUIREMENTS/ PICPA\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759945	2024-07-01	15:34:11.8298961	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FINANCIAL MANAGEMENT OPERATIONS MANUAL (FMOM)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759946	2024-07-01	15:36:16.7983989	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WEBINAR ON REVISITING EMPLOYEES ETHICAL STANDARDS AND PRACTICES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759947	2024-07-01	15:37:35.1128758	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2020 GOVERNMENT SUMMIT/PICPA\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759948	2024-07-01	15:40:48.7241113	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TECHNICAL ASSISTANCE CUM WEBINAR ON PREPERATION OF STATEMENT OF BANK RECONCILIATION PROPER IMPLEMENTATION OF CHECKING ACCOUNT AND UPDATES ON FINANCE GUIDELINES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759949	2024-07-01	15:43:31.8940358	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION ROLL-OUT OF DEPED ORDER NO.29 s.2019 REGARDING PROCEDURE ON CASH ADVANCES FOR SCHOOL MOOE AND PROGRAM FUNDS OF NON-IMPLEMENTING UNITS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759950	2024-07-01	15:45:43.2800020	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING ON CAREER DEVELOPMENT AND SUCCESSION AND MANAGEMENT CUM FINANCIAL LITERACY MANAGEMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
759951	2024-07-01	15:48:07.3864740	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3604\r\nEmployeeTrainingId: 0\r\nFromDate: September 19, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- REGIONAL OFFICE\r\nStatus: \r\nToDate: September 20, 2023\r\nTrainingId: 15078\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759952	2024-07-01	15:48:07.3904740	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3604\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15079\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759953	2024-07-01	15:48:07.3954740	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3604\r\nEmployeeTrainingId: 0\r\nFromDate: May 23, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- CENTRAL OFFICE\r\nStatus: \r\nToDate: May 25, 2023\r\nTrainingId: 15080\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759954	2024-07-01	15:48:07.3994740	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3604\r\nEmployeeTrainingId: 0\r\nFromDate: May 15, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: May 17, 2023\r\nTrainingId: 15046\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759955	2024-07-01	15:48:07.4024741	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3604\r\nEmployeeTrainingId: 0\r\nFromDate: November 09, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- REGIONAL OFFICE\r\nStatus: \r\nToDate: November 11, 2022\r\nTrainingId: 15082\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759956	2024-07-01	15:48:07.4074739	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3604\r\nEmployeeTrainingId: 0\r\nFromDate: June 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: June 30, 2023\r\nTrainingId: 15083\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759957	2024-07-01	15:48:07.4114740	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3604\r\nEmployeeTrainingId: 0\r\nFromDate: March 03, 2022\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS- SOUTHERN TAGALOG \r\nStatus: \r\nToDate: March 03, 2022\r\nTrainingId: 15084\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759958	2024-07-01	15:48:07.4154741	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3604\r\nEmployeeTrainingId: 0\r\nFromDate: January 12, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- REGIONAL & CENTRAL OFFICE\r\nStatus: \r\nToDate: January 14, 2022\r\nTrainingId: 15085\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759959	2024-07-01	15:48:07.4194740	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3604\r\nEmployeeTrainingId: 0\r\nFromDate: May 29, 2021\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BATANGAS STATE UNIVERSITY\r\nStatus: \r\nToDate: May 29, 2021\r\nTrainingId: 15086\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759960	2024-07-01	15:48:07.4234740	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3604\r\nEmployeeTrainingId: 0\r\nFromDate: May 15, 2021\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BATANGAS STATE UNIVERSITY\r\nStatus: \r\nToDate: May 15, 2021\r\nTrainingId: 15087\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759961	2024-07-01	15:48:07.4284739	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3604\r\nEmployeeTrainingId: 0\r\nFromDate: April 24, 2021\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BATANGAS STATE UNIVERSITY\r\nStatus: \r\nToDate: April 24, 2021\r\nTrainingId: 15088\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759962	2024-07-01	15:48:07.4324739	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3604\r\nEmployeeTrainingId: 0\r\nFromDate: March 24, 2021\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: PHILIPPINE INSTITUTE ON CERTIFIED PUBLIC ACCOUNTANTS- SOUTHERN TAGALOG\r\nStatus: \r\nToDate: March 25, 2021\r\nTrainingId: 15089\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759963	2024-07-01	15:48:07.4364740	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3604\r\nEmployeeTrainingId: 0\r\nFromDate: August 17, 2021\r\nHours: 21\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 19, 2021\r\nTrainingId: 15054\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759964	2024-07-01	15:48:07.4404740	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3604\r\nEmployeeTrainingId: 0\r\nFromDate: March 19, 2021\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 21, 2021\r\nTrainingId: 15090\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759965	2024-07-01	15:48:07.4444739	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3604\r\nEmployeeTrainingId: 0\r\nFromDate: October 16, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: October 16, 2020\r\nTrainingId: 15091\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759966	2024-07-01	15:48:07.4494739	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3604\r\nEmployeeTrainingId: 0\r\nFromDate: September 03, 2020\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS- SOUTHERN TAGALOG\r\nStatus: \r\nToDate: September 05, 2020\r\nTrainingId: 15092\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759967	2024-07-01	15:48:07.4534739	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3604\r\nEmployeeTrainingId: 0\r\nFromDate: July 13, 2020\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 15, 2020\r\nTrainingId: 15093\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759968	2024-07-01	15:48:07.4574739	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3604\r\nEmployeeTrainingId: 0\r\nFromDate: February 13, 2020\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: February 14, 2020\r\nTrainingId: 15094\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759969	2024-07-01	15:48:07.4614739	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3604\r\nEmployeeTrainingId: 0\r\nFromDate: December 12, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: December 13, 2019\r\nTrainingId: 15059\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759970	2024-07-01	15:48:07.4654739	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3604\r\nEmployeeTrainingId: 0\r\nFromDate: July 30, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 31, 2019\r\nTrainingId: 15062\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
759971	2024-07-01	15:48:19.2563519	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3609\r\nSkillId: 0\r\nSkillName: EXPERT IN ENHANCED FINANCIAL REPORTING SYSTEM ( eFRS)\r\n	admin	Skills	1
759972	2024-07-01	15:48:19.2603518	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3609\r\nSkillId: 0\r\nSkillName: EXPERT IN FINANCIAL DATA ENTRY SYSTEM ( FinDes)\r\n	admin	Skills	1
759973	2024-07-01	15:48:19.2643515	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3609\r\nSkillId: 0\r\nSkillName: EXPERT IN MICROSOFT WORD AND EXCEL \r\n	admin	Skills	1
759974	2024-07-01	15:48:19.2683512	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3609\r\nSkillId: 0\r\nSkillName: FAMILIARITY IN ADOBE PHOTOSHOP \r\n	admin	Skills	1
759975	2024-07-01	15:48:19.2733576	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3609\r\nSkillId: 0\r\nSkillName: FAMILIARITY IN SAP APPLICATION \r\n	admin	Skills	1
759976	2024-07-01	15:48:19.2783569	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3609\r\nRecognitionId: 0\r\nRecognitionName: CHAIRMAN - TWG ON FINALIZATION OF YEAR - END REPORTS AND PERFORMANCE REVIEW FOR FY 2022\r\n	admin	Recognitions	1
759977	2024-07-01	15:48:19.2823579	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3609\r\nRecognitionId: 0\r\nRecognitionName: TWG CHAIRPERSON ON SEMINAR WORKSHOP ON THE IMPLEMENTATION OF WEB- BASED MONITORING SYSTEM OF SCHOOL MOOE FUNDS \r\n	admin	Recognitions	1
759978	2024-07-01	15:48:19.2868683	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3609\r\nRecognitionId: 0\r\nRecognitionName: CHAIRMAN- TWG ON DIVISION ROLL- OUT OF DEPED ORDER NO. 29, S.2019: RE PROCEDURAL GUIDELINES ON THE MANAGEMENT OF CASH ADVANCES FOR SCHOOL  \r\n	admin	Recognitions	1
759979	2024-07-01	15:48:19.2908687	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3609\r\nRecognitionId: 0\r\nRecognitionName: TWG- CO-CHAIRPERSON - PROCUREMENT AND DISTRIBUTION OF MATERIALS IN 2022 DIVISION GAWAD ALA EH CUM EDUCATION WEEK CELEBRATION \r\n	admin	Recognitions	1
759980	2024-07-01	15:48:19.2948684	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3609\r\nRecognitionId: 0\r\nRecognitionName: FACILITATOR - CAPACITY BUILDING FORV SCHOOL HEADS AND FINANCIAL STAFF ON THE PROPER UTILIZATION OF MOOE FUNDS \r\n	admin	Recognitions	1
759981	2024-07-01	15:48:19.2988684	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3609\r\nRecognitionId: 0\r\nRecognitionName: MEMBER- INTERNAL QUALITY AUDIT ( IQA) \r\n	admin	Recognitions	1
759982	2024-07-01	15:48:19.3028678	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3609\r\nRecognitionId: 0\r\nRecognitionName: BEST IN FEASIBILITY STUDIES- BATANGAS STATE UNIVERSITY \r\n	admin	Recognitions	1
759984	2024-07-01	15:48:19.3118679	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3609\r\nCompanyInstitution: SDO BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: PROJECT DEVELOPMENT OFFICER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: July 01, 2024\r\n	admin	Experiences	1
759985	2024-07-01	15:48:19.3168681	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3609\r\nCompanyInstitution: SDO BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 21,567.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-3\r\nStatus: Permanent\r\nToDate: January 07, 2024\r\n	admin	Experiences	1
759986	2024-07-01	15:48:19.3208690	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3609\r\nCompanyInstitution: SDO BATANGAS  CITY \r\nExperienceId: 0\r\nFromDate: December 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 20,745.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-3\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
759987	2024-07-01	15:48:19.3248681	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3609\r\nCompanyInstitution: SDO BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 20,572.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-2\r\nStatus: Permanent\r\nToDate: November 30, 2022\r\n	admin	Experiences	1
759988	2024-07-01	15:48:19.3298684	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3609\r\nCompanyInstitution: SDO BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 19,757.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-2\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
759989	2024-07-01	15:48:19.3338682	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3609\r\nCompanyInstitution: SDO BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 18,941.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-2\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
759990	2024-07-01	15:48:19.3378679	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3609\r\nCompanyInstitution: SDO BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: December 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 18,125.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-2\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
759991	2024-07-01	15:48:19.3418679	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3609\r\nCompanyInstitution: SDO BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 17,975.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
759992	2024-07-01	15:48:19.3458678	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3609\r\nCompanyInstitution: SDO BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 17,473.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
759993	2024-07-01	15:48:19.3508683	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3609\r\nCompanyInstitution: SDO BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 16,986.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
759994	2024-07-01	15:48:19.3548684	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3609\r\nCompanyInstitution: SDO BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: December 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 16,512.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
760013	2024-07-01	15:54:27.2879850	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ELECTRICAL INSTALLATION AND MAINTENANCE LEVEL NC II\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770647	2025-03-17	13:20:07.2048239	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3781\r\nSkillId: 0\r\nSkillName: OPEN MINDED\r\n	admin	Skills	1
759995	2024-07-01	15:48:19.3588678	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3609\r\nCompanyInstitution: SDO BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 15,368.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 8-1\r\nStatus: Permanent\r\nToDate: November 30, 2016\r\n	admin	Experiences	1
759996	2024-07-01	15:48:19.3628680	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3609\r\nCompanyInstitution: SDO BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: June 01, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 14,931.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 8-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
759997	2024-07-01	15:48:19.3678682	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3609\r\nCompanyInstitution: GOLDEN BAY GRAIN TERMINAL CORP \r\nExperienceId: 0\r\nFromDate: September 16, 2013\r\nIsGovernmentService: False\r\nMonthlySalary: 17,000.00\r\nPositionHeld: ACCOUNTING ASSISTANT  \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: May 31, 2015\r\n	admin	Experiences	1
759998	2024-07-01	15:48:19.3718735	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3609\r\nCompanyInstitution: CITIMART GROUP OF COMPANIES \r\nExperienceId: 0\r\nFromDate: October 04, 2008\r\nIsGovernmentService: False\r\nMonthlySalary: 12,000.00\r\nPositionHeld: SENIOR ACCOUNTANT\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: December 09, 2023\r\n	admin	Experiences	1
759999	2024-07-01	15:48:19.3758733	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3609\r\nCharacterReferenceId: 0\r\nCompanyAddress: GULOD LABAC, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09328909284\r\nExtensionName: \r\nFirstName: MARICON \r\nLastName: SUNICO\r\nMiddleName: S\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760000	2024-07-01	15:48:19.3798734	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3609\r\nCharacterReferenceId: 0\r\nCompanyAddress: SORO-SORO IBABA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09178213626\r\nExtensionName: \r\nFirstName: MARIA JOSEFINA \r\nLastName: LAGMAN\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760001	2024-07-01	15:48:19.3838731	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3609\r\nCharacterReferenceId: 0\r\nCompanyAddress: MAGALANGGALANG , BAUAN BATANGAS\r\nCompanyName: \r\nContactNumber: 09213054944\r\nExtensionName: \r\nFirstName: MICHELLE \r\nLastName: PANGANIBAN \r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760002	2024-07-01	15:48:19.3893853	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: BAGONG POOK\r\nBarangay: BILOGO\r\nBasicInformationId: 3609\r\nBirthDate: July 01, 2024\r\nBirthPlace: \r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RINALYN.SORIANO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RINALYN\r\nFullName: RINALYN S. ZARASPE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: SORIANO\r\nMobileNumber: 09273533174\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: BAGONG POOK\r\nPermanentBarangay: BILOGO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 70\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: BAGONG POOK\r\nBarangay: BILOGO\r\nBasicInformationId: 3609\r\nBirthDate: July 01, 2024\r\nBirthPlace: \r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RINALYN.SORIANO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RINALYN\r\nFullName: RINALYN S. ZARASPE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 20047090980\r\nHDMF: 1210-2577-9322\r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: SORIANO\r\nMobileNumber: 09273533174\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: BAGONG POOK\r\nPermanentBarangay: BILOGO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050205119-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: 04-1978808-1\r\nStreetName: \r\nTIN: 260-570-088-0000\r\nWeight: 70\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760003	2024-07-01	15:48:19.3933835	<Undetected>	Update	BasicInformationId: 3609\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3279\r\nExtensionName: \r\nFirstName: FERDINAND DERICK\r\nFullName: FERDINAND DERICK FARAON ZARASPE\r\nGender: Male\r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: FARAON\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3609\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3279\r\nExtensionName: \r\nFirstName: FERDINAND DERICK\r\nFullName: FERDINAND DERICK ZARASPE\r\nGender: Male\r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: FARAON\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
760004	2024-07-01	15:48:19.3973845	<Undetected>	Update	BasicInformationId: 3609\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3280\r\nExtensionName: \r\nFirstName: EVARISTO\r\nFullName: EVARISTO PEREZ SORIANO\r\nGender: Male\r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: PEREZ\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3609\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3280\r\nExtensionName: \r\nFirstName: EVARISTO\r\nFullName: EVARISTO SORIANO\r\nGender: Male\r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: PEREZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760015	2024-07-01	15:56:05.3116291	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PIPE INSULATION NC LEVEL II\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760005	2024-07-01	15:48:19.4013842	<Undetected>	Update	BasicInformationId: 3609\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3281\r\nExtensionName: \r\nFirstName: ROSSINI\r\nFullName: ROSSINI GUTIERREZ MAGADIA\r\nGender: Male\r\nLastName: MAGADIA\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3609\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3281\r\nExtensionName: \r\nFirstName: ROSSINI\r\nFullName: ROSSINI MAGADIA\r\nGender: Male\r\nLastName: MAGADIA\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760006	2024-07-01	15:48:19.4053842	<Undetected>	Update	BasicInformationId: 3609\r\nBirthDate: August 23, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3282\r\nExtensionName: \r\nFirstName: DWAYNE JARRED\r\nFullName: DWAYNE JARRED S ZARASPE\r\nGender: Male\r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3609\r\nBirthDate: August 23, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3282\r\nExtensionName: \r\nFirstName: DWAYNE JARRED\r\nFullName: DWAYNE JARRED ZARASPE\r\nGender: Male\r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760007	2024-07-01	15:48:19.4103847	<Undetected>	Update	BasicInformationId: 3609\r\nBirthDate: March 15, 2023\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3283\r\nExtensionName: \r\nFirstName: RAJON JAYDEN\r\nFullName: RAJON JAYDEN S ZARASPE\r\nGender: Male\r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3609\r\nBirthDate: March 15, 2023\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3283\r\nExtensionName: \r\nFirstName: RAJON JAYDEN\r\nFullName: RAJON JAYDEN ZARASPE\r\nGender: Male\r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760008	2024-07-01	15:48:19.4143845	<Undetected>	Update	BasicInformationId: 3609\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3405\r\n	BasicInformationId: 3609\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: RESIGNATION\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3405\r\n	admin	Questionnaires	1
760009	2024-07-01	15:49:18.8285923	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: MERCEDES HOME\r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 3606\r\nBirthDate: July 01, 2024\r\nBirthPlace: \r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: \r\nExtensionName: \r\nFirstName: MARIA JOSEFINA\r\nFullName: MARIA JOSEFINA M. LAGMAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: LAGMAN\r\nMaidenName: \r\nMiddleName: MARANAN\r\nMobileNumber: 09178213626\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: MERCEDES BOULEVARD\r\nTIN: \r\nWeight: 71\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: MERCEDES HOME\r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 3606\r\nBirthDate: July 01, 2024\r\nBirthPlace: \r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: \r\nExtensionName: \r\nFirstName: MARIA JOSEFINA\r\nFullName: MARIA JOSEFINA M. LAGMAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: LAGMAN\r\nMaidenName: \r\nMiddleName: MARANAN\r\nMobileNumber: 09178213626\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: MERCEDES BOULEVARD\r\nTIN: \r\nWeight: 71\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760010	2024-07-01	15:49:18.8325923	<Undetected>	Update	BasicInformationId: 3606\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3402\r\n	BasicInformationId: 3606\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3402\r\n	admin	Questionnaires	1
760011	2024-07-01	15:51:08.3532174	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: AIM HIGH FIRING RANGE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760014	2024-07-01	15:54:57.7915116	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION QUALITY MANAGEMENT SYSTEM ( DQMS) JOURNEY TOWARDS ONE DEPED\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760016	2024-07-01	15:57:15.6040425	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3602\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760017	2024-07-01	15:57:15.6080424	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3602\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15079\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760018	2024-07-01	15:57:15.6120424	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3602\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15047\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760019	2024-07-01	15:57:15.6160424	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3602\r\nEmployeeTrainingId: 0\r\nFromDate: August 05, 2013\r\nHours: 162\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: TECHNICAL EDUCATION AND SKILLS DEVELOPMENT AUTHORITY \r\nStatus: \r\nToDate: August 30, 2013\r\nTrainingId: 15097\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760020	2024-07-01	15:57:15.6200425	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3602\r\nEmployeeTrainingId: 0\r\nFromDate: September 17, 2014\r\nHours: 402\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: TECHNICAL EDUCATION AND SKILLS DEVELOPMENT AUTHORITY \r\nStatus: \r\nToDate: October 15, 2014\r\nTrainingId: 15098\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760021	2024-07-01	15:57:15.6240424	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3602\r\nEmployeeTrainingId: 0\r\nFromDate: September 08, 2017\r\nHours: 160\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: TECHNICAL EDUCATION AND SKILLS DEVELOPMENT AUTHORITY/ MALAMPAYA FOUNDATION \r\nStatus: \r\nToDate: October 10, 2017\r\nTrainingId: 15100\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760022	2024-07-01	15:57:15.6280424	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: ALANGILAN\r\nBasicInformationId: 3602\r\nBirthDate: September 01, 1992\r\nBirthPlace: BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: darrel.bregonia@deped.gov.ph\r\nExtensionName: \r\nFirstName: CHARLES DARRELL\r\nFullName: CHARLES DARRELL G. BREGONIA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005934213\r\nHDMF: \r\nHeight: 5.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BREGONIA\r\nMaidenName: \r\nMiddleName: GUILLO\r\nMobileNumber: 09688715273\r\nNationality: Filipino\r\nPermanentAddress1: A\r\nPermanentAddress2: \r\nPermanentBarangay: BARANGAY 20\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: DELAS ALAS DRIVE TALAMBIRAS\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-250006480-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: 04-3809913-3\r\nStreetName: SITIO II B\r\nTIN: 449-876-374-0000\r\nWeight: 91\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: ALANGILAN\r\nBasicInformationId: 3602\r\nBirthDate: September 01, 1992\r\nBirthPlace: BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: darrel.bregonia@deped.gov.ph\r\nExtensionName: \r\nFirstName: CHARLES DARRELL\r\nFullName: CHARLES DARRELL G. BREGONIA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005934213\r\nHDMF: \r\nHeight: 5.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BREGONIA\r\nMaidenName: \r\nMiddleName: GUILLO\r\nMobileNumber: 09688715273\r\nNationality: Filipino\r\nPermanentAddress1: A\r\nPermanentAddress2: \r\nPermanentBarangay: BARANGAY 20\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: DELAS ALAS DRIVE TALAMBIRAS\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-250006480-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3809913-3\r\nStreetName: SITIO II B\r\nTIN: 449-876-374-0000\r\nWeight: 91\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760023	2024-07-01	15:57:15.6330424	<Undetected>	Update	BasicInformationId: 3602\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3264\r\nExtensionName: \r\nFirstName: DARWIN\r\nFullName: DARWIN BONIFACIO BREGONIA\r\nGender: Male\r\nLastName: BREGONIA\r\nMaidenName: \r\nMiddleName: BONIFACIO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3602\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3264\r\nExtensionName: \r\nFirstName: DARWIN\r\nFullName: DARWIN BREGONIA\r\nGender: Male\r\nLastName: BREGONIA\r\nMaidenName: \r\nMiddleName: BONIFACIO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760024	2024-07-01	15:57:15.6370424	<Undetected>	Update	BasicInformationId: 3602\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3265\r\nExtensionName: \r\nFirstName: LOLITA\r\nFullName: LOLITA VILLA-REAL GUILLO\r\nGender: Male\r\nLastName: GUILLO\r\nMaidenName: \r\nMiddleName: VILLA-REAL\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3602\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3265\r\nExtensionName: \r\nFirstName: LOLITA\r\nFullName: LOLITA GUILLO\r\nGender: Male\r\nLastName: GUILLO\r\nMaidenName: \r\nMiddleName: VILLA-REAL\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760025	2024-07-01	16:00:01.1251865	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SAFE SPACES ACT AND GENDER RESPONSIVE POLICIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760026	2024-07-01	16:01:45.9431840	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RRE - TRAINING COURSE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760027	2024-07-01	16:03:58.8220374	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: IN- SERVICE ENHANCEMENT PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760028	2024-07-01	16:06:28.8714395	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RE-TRAINING COURSE CLASS NO.18\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760029	2024-07-01	16:08:49.4382196	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: IN-SERVICE ENHANCEMENT SECURITY TRAINING NO.18\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760030	2024-07-01	16:09:02.8926589	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: ALANGILAN\r\nBasicInformationId: 3602\r\nBirthDate: September 01, 1992\r\nBirthPlace: BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: darrel.bregonia@deped.gov.ph\r\nExtensionName: \r\nFirstName: CHARLES DARRELL\r\nFullName: CHARLES DARRELL G. BREGONIA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005934213\r\nHDMF: \r\nHeight: 5.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BREGONIA\r\nMaidenName: \r\nMiddleName: GUILLO\r\nMobileNumber: 09688715273\r\nNationality: Filipino\r\nPermanentAddress1: A\r\nPermanentAddress2: \r\nPermanentBarangay: BARANGAY 20\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: DELAS ALAS DRIVE TALAMBIRAS\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-250006480-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3809913-3\r\nStreetName: SITIO II B\r\nTIN: 449-876-374-0000\r\nWeight: 91\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: ALANGILAN\r\nBasicInformationId: 3602\r\nBirthDate: September 01, 1992\r\nBirthPlace: BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: darrel.bregonia@deped.gov.ph\r\nExtensionName: \r\nFirstName: CHARLES DARRELL\r\nFullName: CHARLES DARRELL G. BREGONIA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005934213\r\nHDMF: \r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BREGONIA\r\nMaidenName: \r\nMiddleName: GUILLO\r\nMobileNumber: 09688715273\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BARANGAY 20\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: A DELAS ALAS DRIVE TALAMBIRAS\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-250006480-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: 04-3809913-3\r\nStreetName: SITIO II B\r\nTIN: 449-876-374-0000\r\nWeight: 91\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760031	2024-07-01	16:10:41.3265473	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BASIC FIRING PROFICIENCY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760032	2024-07-01	16:13:07.4578182	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3603\r\nEmployeeTrainingId: 0\r\nFromDate: January 11, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: AIM HIGH FIRING RANGE & GUN CLUB INC\r\nStatus: \r\nToDate: January 11, 2023\r\nTrainingId: 15096\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760033	2024-07-01	16:13:07.4623223	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3603\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED - DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15045\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760034	2024-07-01	16:13:07.4663284	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3603\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED - DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760035	2024-07-01	16:13:07.4703285	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3603\r\nEmployeeTrainingId: 0\r\nFromDate: January 04, 2023\r\nHours: 56\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: KADRE  SECURITY TRAINING INSTITUTE INC\r\nStatus: \r\nToDate: January 11, 2023\r\nTrainingId: 15102\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760036	2024-07-01	16:13:07.4753293	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3603\r\nEmployeeTrainingId: 0\r\nFromDate: January 04, 2023\r\nHours: 56\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: KADRE SECURITY TRAINING INSTITUTE INC\r\nStatus: \r\nToDate: January 06, 2023\r\nTrainingId: 15103\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760037	2024-07-01	16:13:07.4793286	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3603\r\nEmployeeTrainingId: 0\r\nFromDate: March 04, 2020\r\nHours: 56\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: B.L.C SECURITY TRAINING INCORPORATED\r\nStatus: \r\nToDate: March 11, 2020\r\nTrainingId: 15104\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760038	2024-07-01	16:13:07.4843287	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3603\r\nEmployeeTrainingId: 0\r\nFromDate: March 02, 2020\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: B.L.C SECURITY TRAINING INCORPORATED\r\nStatus: \r\nToDate: March 04, 2020\r\nTrainingId: 15105\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760039	2024-07-01	16:13:07.4883288	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3603\r\nEmployeeTrainingId: 0\r\nFromDate: March 04, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: COMMANDER SHOOTING RANGE AND  SPORT CLUB, INC\r\nStatus: \r\nToDate: March 04, 2020\r\nTrainingId: 14972\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760056	2024-07-01	16:15:58.5994671	<Undetected>	Update	BasicInformationId: 3605\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3272\r\nExtensionName: \r\nFirstName: VENEDICT\r\nFullName: VENEDICT P MIGUEL\r\nGender: Male\r\nLastName: MIGUEL\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3605\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3272\r\nExtensionName: \r\nFirstName: VENEDICT\r\nFullName: VENEDICT MIGUEL\r\nGender: Male\r\nLastName: MIGUEL\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760057	2024-07-01	16:15:58.6034672	<Undetected>	Update	BasicInformationId: 3605\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3401\r\n	BasicInformationId: 3605\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3401\r\n	admin	Questionnaires	1
760040	2024-07-01	16:13:07.4923288	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 0053\r\nAddress2: \r\nBarangay: BARANGAY 20\r\nBasicInformationId: 3603\r\nBirthDate: August 30, 1997\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: UPOALARIC@GMAIL.COM\r\nExtensionName: \r\nFirstName: PRINCE ALARIC\r\nFullName: PRINCE ALARIC M. UPO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006270221\r\nHDMF: 1211-6813-8947\r\nHeight: 1.79\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7745308\r\nLastName: UPO\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nMobileNumber: 09083719344\r\nNationality: Filipino\r\nPermanentAddress1: 0053\r\nPermanentAddress2: \r\nPermanentBarangay: BARANGAY 20\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: A DELAS ALAS DRIVE\r\nPermanentZipCode: 4200\r\nPhilhealth: 08-051535508-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 34-5841335-6\r\nStreetName: A DELAS ALAS DRIVE\r\nTIN: 720-278-139-0000\r\nWeight: 95\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 0053\r\nAddress2: \r\nBarangay: BARANGAY 20\r\nBasicInformationId: 3603\r\nBirthDate: August 30, 1997\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: UPOALARIC@GMAIL.COM\r\nExtensionName: \r\nFirstName: PRINCE ALARIC\r\nFullName: PRINCE ALARIC M. UPO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006270221\r\nHDMF: 1211-6813-8947\r\nHeight: 1.79\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7745308\r\nLastName: UPO\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nMobileNumber: 09083719344\r\nNationality: Filipino\r\nPermanentAddress1: 0053\r\nPermanentAddress2: \r\nPermanentBarangay: BARANGAY 20\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: A DELAS ALAS DRIVE\r\nPermanentZipCode: 4200\r\nPhilhealth: 08-051535508-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: 34-5841335-6\r\nStreetName: A DELAS ALAS DRIVE\r\nTIN: 720-278-139-0000\r\nWeight: 95\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760041	2024-07-01	16:13:21.5665117	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 0053\r\nAddress2: \r\nBarangay: BARANGAY 20\r\nBasicInformationId: 3603\r\nBirthDate: August 30, 1997\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: UPOALARIC@GMAIL.COM\r\nExtensionName: \r\nFirstName: PRINCE ALARIC\r\nFullName: PRINCE ALARIC M. UPO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006270221\r\nHDMF: 1211-6813-8947\r\nHeight: 1.79\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7745308\r\nLastName: UPO\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nMobileNumber: 09083719344\r\nNationality: Filipino\r\nPermanentAddress1: 0053\r\nPermanentAddress2: \r\nPermanentBarangay: BARANGAY 20\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: A DELAS ALAS DRIVE\r\nPermanentZipCode: 4200\r\nPhilhealth: 08-051535508-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: 34-5841335-6\r\nStreetName: A DELAS ALAS DRIVE\r\nTIN: 720-278-139-0000\r\nWeight: 95\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 0053\r\nAddress2: \r\nBarangay: BARANGAY 20\r\nBasicInformationId: 3603\r\nBirthDate: August 30, 1997\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: UPOALARIC@GMAIL.COM\r\nExtensionName: \r\nFirstName: PRINCE ALARIC\r\nFullName: PRINCE ALARIC M. UPO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006270221\r\nHDMF: 1211-6813-8947\r\nHeight: 1.79\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7745308\r\nLastName: UPO\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nMobileNumber: 09083719344\r\nNationality: Filipino\r\nPermanentAddress1: 0053\r\nPermanentAddress2: \r\nPermanentBarangay: BARANGAY 20\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: A DELAS ALAS DRIVE\r\nPermanentZipCode: 4200\r\nPhilhealth: 08-051535508-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 34-5841335-6\r\nStreetName: A DELAS ALAS DRIVE\r\nTIN: 720-278-139-0000\r\nWeight: 95\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760051	2024-07-01	16:15:58.5724624	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3605\r\nBirthDate: August 22, 1975\r\nBirthPlace: PASIG CITY METRO MANILA\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: VILMAMIGUEL@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: VILMA\r\nFullName: VILMA P. MIGUEL\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MIGUEL\r\nMaidenName: \r\nMiddleName: PAGSUYOIN\r\nMobileNumber: 09567282707\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 68.5\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3605\r\nBirthDate: August 22, 1975\r\nBirthPlace: PASIG CITY METRO MANILA\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: VILMAMIGUEL@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: VILMA\r\nFullName: VILMA P. MIGUEL\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MIGUEL\r\nMaidenName: \r\nMiddleName: PAGSUYOIN\r\nMobileNumber: 09567282707\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 68.5\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760052	2024-07-01	16:15:58.5764619	<Undetected>	Update	BasicInformationId: 3605\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3268\r\nExtensionName: \r\nFirstName: VERGEL\r\nFullName: VERGEL ODERA MIGUEL\r\nGender: Male\r\nLastName: MIGUEL\r\nMaidenName: \r\nMiddleName: ODERA\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3605\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3268\r\nExtensionName: \r\nFirstName: VERGEL\r\nFullName: VERGEL MIGUEL\r\nGender: Male\r\nLastName: MIGUEL\r\nMaidenName: \r\nMiddleName: ODERA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
760053	2024-07-01	16:15:58.5854628	<Undetected>	Update	BasicInformationId: 3605\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3269\r\nExtensionName: \r\nFirstName: SERAPIO\r\nFullName: SERAPIO REYES PAGSUYOIN\r\nGender: Male\r\nLastName: PAGSUYOIN\r\nMaidenName: \r\nMiddleName: REYES\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3605\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3269\r\nExtensionName: \r\nFirstName: SERAPIO\r\nFullName: SERAPIO PAGSUYOIN\r\nGender: Male\r\nLastName: PAGSUYOIN\r\nMaidenName: \r\nMiddleName: REYES\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760054	2024-07-01	16:15:58.5894676	<Undetected>	Update	BasicInformationId: 3605\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3270\r\nExtensionName: \r\nFirstName: VICTORIA\r\nFullName: VICTORIA CLARETE\r\nGender: Male\r\nLastName: CLARETE\r\nMaidenName: AGUILA\r\nMiddleName: \r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3605\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3270\r\nExtensionName: \r\nFirstName: VICTORIA\r\nFullName: VICTORIA CLARETE\r\nGender: Male\r\nLastName: CLARETE\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760055	2024-07-01	16:15:58.5934672	<Undetected>	Update	BasicInformationId: 3605\r\nBirthDate: August 23, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3271\r\nExtensionName: \r\nFirstName: VIVIENNE\r\nFullName: VIVIENNE P MIGUEL\r\nGender: Male\r\nLastName: MIGUEL\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3605\r\nBirthDate: August 23, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3271\r\nExtensionName: \r\nFirstName: VIVIENNE\r\nFullName: VIVIENNE MIGUEL\r\nGender: Male\r\nLastName: MIGUEL\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760042	2024-07-01	16:13:24.0576313	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: ALANGILAN\r\nBasicInformationId: 3602\r\nBirthDate: September 01, 1992\r\nBirthPlace: BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: darrel.bregonia@deped.gov.ph\r\nExtensionName: \r\nFirstName: CHARLES DARRELL\r\nFullName: CHARLES DARRELL G. BREGONIA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005934213\r\nHDMF: \r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BREGONIA\r\nMaidenName: \r\nMiddleName: GUILLO\r\nMobileNumber: 09688715273\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BARANGAY 20\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: A DELAS ALAS DRIVE TALAMBIRAS\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-250006480-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: 04-3809913-3\r\nStreetName: SITIO II B\r\nTIN: 449-876-374-0000\r\nWeight: 91\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: ALANGILAN\r\nBasicInformationId: 3602\r\nBirthDate: September 01, 1992\r\nBirthPlace: BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: darrel.bregonia@deped.gov.ph\r\nExtensionName: \r\nFirstName: CHARLES DARRELL\r\nFullName: CHARLES DARRELL G. BREGONIA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005934213\r\nHDMF: 1211-8247-9702\r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BREGONIA\r\nMaidenName: \r\nMiddleName: GUILLO\r\nMobileNumber: 09688715273\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BARANGAY 20\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: A DELAS ALAS DRIVE TALAMBIRAS\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-250006480-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3809913-3\r\nStreetName: SITIO II B\r\nTIN: 449-876-374-0000\r\nWeight: 91\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760043	2024-07-01	16:13:49.3435868	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BUCAL\r\nBasicInformationId: 3608\r\nBirthDate: June 09, 1989\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: darlenevenus.magnaye@deped.gov.ph\r\nExtensionName: \r\nFirstName: DARLENE VENUS\r\nFullName: DARLENE VENUS DT. MAGNAYE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005153064\r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MAGNAYE\r\nMaidenName: \r\nMiddleName: DE TORRES\r\nMobileNumber: 09077527070\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BUCAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 08-050940817-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: 04-2245291-9\r\nStreetName: \r\nTIN: 291-810-322-0000\r\nWeight: 59.8\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BUCAL\r\nBasicInformationId: 3608\r\nBirthDate: June 09, 1989\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: darlenevenus.magnaye@deped.gov.ph\r\nExtensionName: \r\nFirstName: DARLENE VENUS\r\nFullName: DARLENE VENUS DT. MAGNAYE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005153064\r\nHDMF: 1210-6079-8167\r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MAGNAYE\r\nMaidenName: \r\nMiddleName: DE TORRES\r\nMobileNumber: 09077527070\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BUCAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 08-050940817-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-2245291-9\r\nStreetName: \r\nTIN: 291-810-322-0000\r\nWeight: 59.8\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760044	2024-07-01	16:13:49.3475865	<Undetected>	Update	BasicInformationId: 3608\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3275\r\nExtensionName: \r\nFirstName: JOHN ERWIN\r\nFullName: JOHN ERWIN CONDEZ MAGNAYE\r\nGender: Male\r\nLastName: MAGNAYE\r\nMaidenName: \r\nMiddleName: CONDEZ\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3608\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3275\r\nExtensionName: \r\nFirstName: JOHN ERWIN\r\nFullName: JOHN ERWIN MAGNAYE\r\nGender: Male\r\nLastName: MAGNAYE\r\nMaidenName: \r\nMiddleName: CONDEZ\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
760045	2024-07-01	16:13:49.3565865	<Undetected>	Update	BasicInformationId: 3608\r\nBirthDate: October 26, 2016\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3276\r\nExtensionName: \r\nFirstName: JILLIAN DAYNE\r\nFullName: JILLIAN DAYNE DE TORRES MAGNAYE\r\nGender: Male\r\nLastName: MAGNAYE\r\nMaidenName: \r\nMiddleName: DE TORRES\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3608\r\nBirthDate: October 26, 2016\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3276\r\nExtensionName: \r\nFirstName: JILLIAN DAYNE\r\nFullName: JILLIAN DAYNE MAGNAYE\r\nGender: Male\r\nLastName: MAGNAYE\r\nMaidenName: \r\nMiddleName: DE TORRES\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760046	2024-07-01	16:13:49.3605865	<Undetected>	Update	BasicInformationId: 3608\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3277\r\nExtensionName: \r\nFirstName: PERFECTO\r\nFullName: PERFECTO ABEL DE TORRES\r\nGender: Male\r\nLastName: DE TORRES\r\nMaidenName: \r\nMiddleName: ABEL\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3608\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3277\r\nExtensionName: \r\nFirstName: PERFECTO\r\nFullName: PERFECTO DE TORRES\r\nGender: Male\r\nLastName: DE TORRES\r\nMaidenName: \r\nMiddleName: ABEL\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760047	2024-07-01	16:13:49.3645866	<Undetected>	Update	BasicInformationId: 3608\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3278\r\nExtensionName: \r\nFirstName: LEILANI\r\nFullName: LEILANI MERCADO ILAO\r\nGender: Male\r\nLastName: ILAO\r\nMaidenName: \r\nMiddleName: MERCADO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3608\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3278\r\nExtensionName: \r\nFirstName: LEILANI\r\nFullName: LEILANI ILAO\r\nGender: Male\r\nLastName: ILAO\r\nMaidenName: \r\nMiddleName: MERCADO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760048	2024-07-01	16:14:08.5181901	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: GULOD ITAAS\r\nBasicInformationId: 3604\r\nBirthDate: November 16, 1975\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: reina.perono@deped.gov.ph\r\nExtensionName: \r\nFirstName: REINA\r\nFullName: REINA C. PERONO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005607474\r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PERONO\r\nMaidenName: \r\nMiddleName: CARREON\r\nMobileNumber: 09155592244\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: GULOD ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PULONG IBABA, PUROK 1\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050045394-9\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: 04-3205475-0\r\nStreetName: PULONG IBABA, PUROK 1\r\nTIN: 302-575-536-0000\r\nWeight: 55\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: GULOD ITAAS\r\nBasicInformationId: 3604\r\nBirthDate: November 16, 1975\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: reina.perono@deped.gov.ph\r\nExtensionName: \r\nFirstName: REINA\r\nFullName: REINA C. PERONO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005607474\r\nHDMF: 1490-0006-1004\r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PERONO\r\nMaidenName: \r\nMiddleName: CARREON\r\nMobileNumber: 09155592244\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: GULOD ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PULONG IBABA, PUROK 1\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050045394-9\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3205475-0\r\nStreetName: PULONG IBABA, PUROK 1\r\nTIN: 302-575-536-0000\r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770648	2025-03-17	13:20:07.2138217	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3781\r\nSkillId: 0\r\nSkillName: COMPUTER SKILLS\r\n	admin	Skills	1
760049	2024-07-01	16:14:26.5583746	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: ILAT SOUTH\r\nBasicInformationId: 3607\r\nBirthDate: June 03, 1996\r\nBirthPlace: BAUAN BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: SAN PASCUAL\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rozjellmatira03@gmail.com\r\nExtensionName: \r\nFirstName: ROZ JELL\r\nFullName: ROZ JELL A. MATIRA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006334413\r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MATIRA\r\nMaidenName: \r\nMiddleName: AMADO\r\nMobileNumber: 09287316773\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: ILAT SOUTH\r\nPermanentCity: SAN PASCUAL\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS CITY\r\nPermanentStreetName: \r\nPermanentZipCode: 4204\r\nPhilhealth: 09-025581779-4\r\nProvince: BATANGAS CITY\r\nReligion: \r\nSalutation: \r\nSSS: 04-3934204-1\r\nStreetName: \r\nTIN: 341-456-075-0000\r\nWeight: 55\r\nZipCode: 4204\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: ILAT SOUTH\r\nBasicInformationId: 3607\r\nBirthDate: June 03, 1996\r\nBirthPlace: BAUAN BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: SAN PASCUAL\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rozjellmatira03@gmail.com\r\nExtensionName: \r\nFirstName: ROZ JELL\r\nFullName: ROZ JELL A. MATIRA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006334413\r\nHDMF: 1212-0982-4734\r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MATIRA\r\nMaidenName: \r\nMiddleName: AMADO\r\nMobileNumber: 09287316773\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: ILAT SOUTH\r\nPermanentCity: SAN PASCUAL\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS CITY\r\nPermanentStreetName: \r\nPermanentZipCode: 4204\r\nPhilhealth: 09-025581779-4\r\nProvince: BATANGAS CITY\r\nReligion: \r\nSalutation: \r\nSSS: 04-3934204-1\r\nStreetName: \r\nTIN: 341-456-075-0000\r\nWeight: 55\r\nZipCode: 4204\r\n	admin	BasicInformation	1
760050	2024-07-01	16:14:46.7764337	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: BAGONG POOK\r\nBarangay: BILOGO\r\nBasicInformationId: 3609\r\nBirthDate: July 01, 2024\r\nBirthPlace: \r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RINALYN.SORIANO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RINALYN\r\nFullName: RINALYN S. ZARASPE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 20047090980\r\nHDMF: 1210-2577-9322\r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: SORIANO\r\nMobileNumber: 09273533174\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: BAGONG POOK\r\nPermanentBarangay: BILOGO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050205119-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: 04-1978808-1\r\nStreetName: \r\nTIN: 260-570-088-0000\r\nWeight: 70\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: BAGONG POOK\r\nBarangay: BILOGO\r\nBasicInformationId: 3609\r\nBirthDate: July 01, 2024\r\nBirthPlace: \r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RINALYN.SORIANO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RINALYN\r\nFullName: RINALYN S. ZARASPE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 20047090980\r\nHDMF: 1210-2577-9322\r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: SORIANO\r\nMobileNumber: 09273533174\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: BAGONG POOK\r\nPermanentBarangay: BILOGO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050205119-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1978808-1\r\nStreetName: \r\nTIN: 260-570-088-0000\r\nWeight: 70\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760058	2024-07-01	16:17:36.2622081	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 8TH GAWAD ALA EH\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760059	2024-07-01	16:22:57.1589995	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INSTITUTIONALIZETHE MERITOCRACY AND AND EXCELENCE IN HUMAN RESOURCE MANAGEMENT ( PRIME-HRM)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760060	2024-07-01	16:27:01.3670190	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION MANAGEMENT COMMITTEE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760061	2024-07-01	16:30:56.6693486	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ACTION,IMPACTAD EXCELLENCE : UTILIZING REASEARCH OUTPUTS AND INNOVATIVE PRACTICE FOR MATATAG BASIC EDUCATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760062	2024-07-01	16:35:31.9904089	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 STAKEHOLDER'S DAY: EDUCATION FOR ALL CELABRATING COLLABORATION AND PARTNERSHIP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760063	2024-07-01	16:41:37.7105423	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL CONVENTION OF DEPED SUPPLY OFFICERS 2023:MATATAG SUPPLY OFFICERS TEAM:RESILIENT,EFFICIENT AND TRANSFORMED THROUGH INNOVATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760064	2024-07-01	16:43:47.7662615	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3605\r\nEmployeeTrainingId: 0\r\nFromDate: November 23, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED SDO BATANGAS CITY \r\nStatus: \r\nToDate: November 23, 2023\r\nTrainingId: 15107\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760065	2024-07-01	16:43:47.7722626	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3605\r\nEmployeeTrainingId: 0\r\nFromDate: November 12, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED SDO BATANGAGS CITY\r\nStatus: \r\nToDate: December 12, 2023\r\nTrainingId: 15108\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760066	2024-07-01	16:43:47.7762629	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3605\r\nEmployeeTrainingId: 0\r\nFromDate: July 12, 2023\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPED SDO BATANGAS CITY\r\nStatus: \r\nToDate: July 12, 2023\r\nTrainingId: 15109\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760067	2024-07-01	16:43:47.7812613	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3605\r\nEmployeeTrainingId: 0\r\nFromDate: April 12, 2023\r\nHours: 16\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPED SDO BATANGAS CITY\r\nStatus: \r\nToDate: May 12, 2025\r\nTrainingId: 15110\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760068	2024-07-01	16:43:47.7852622	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3605\r\nEmployeeTrainingId: 0\r\nFromDate: January 12, 2023\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPED SDO BATANGAS CITY \r\nStatus: \r\nToDate: January 12, 2023\r\nTrainingId: 15111\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760069	2024-07-01	16:43:47.7892628	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3605\r\nEmployeeTrainingId: 0\r\nFromDate: November 21, 2023\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPED SDO BATANGAS CITY\r\nStatus: \r\nToDate: November 24, 2023\r\nTrainingId: 15112\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760070	2024-07-01	16:48:58.5466159	<Undetected>	Insert	ApplicationStatus: \r\nApproverBasicInformationId: \r\nBasicInformationId: \r\nDateApproved: \r\nDateCreated: \r\nDateHired: \r\nEffectivityDate: \r\nEmploymentStatusId: \r\nEncoderBasicInformationId: \r\nFromStep: \r\nJobVacancyId: \r\nNonPlantillaRecordId: \r\nPersonnelActionMemoId: \r\nPlantillaRecordId: \r\nPositionId: \r\nPurposeOfMovement: \r\nRateTypeId: \r\nRemarks: \r\nSalaryRate: \r\nStatus: \r\nToStep: \r\nValue: \r\n	ApplicationStatus: Pending\r\nApproverBasicInformationId: 0\r\nBasicInformationId: 3601\r\nDateApproved: January 01, 0001\r\nDateCreated: July 01, 2024\r\nDateHired: January 01, 0001\r\nEffectivityDate: January 01, 0001\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nFromStep: 0\r\nJobVacancyId: 379\r\nNonPlantillaRecordId: 0\r\nPersonnelActionMemoId: 0\r\nPlantillaRecordId: 0\r\nPositionId: 2009\r\nPurposeOfMovement: New Employee\r\nRateTypeId: 2\r\nRemarks: \r\nSalaryRate: 235116.00\r\nStatus: Pending\r\nToStep: 1\r\nValue: 0\r\n	admin	PersonnelActionMemos	1
760071	2024-07-01	16:53:03.7633043	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3601\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
760085	2024-07-02	10:14:53.0935387	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3609\r\nEmployeeTrainingId: 0\r\nFromDate: May 18, 2020\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 18, 2004\r\nTrainingId: 15117\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760296	2024-07-02	14:07:00.9104834	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3606\r\nRecognitionId: 0\r\nRecognitionName: OUTSTANDING DISTRICT OFFICER - LIONS CLUBSW INTERNATIONAL, DISTRICT 301 A2 PHILIPPINES \r\n	admin	Recognitions	1
760072	2024-07-01	16:53:03.7673042	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: Kumintang Ilaya\r\nBasicInformationId: 3601\r\nBirthDate: April 14, 1994\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: Batangas\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: maybellepagcaliwagan@gmail.com\r\nExtensionName: \r\nFirstName: MAYBELLE\r\nFullName: MAYBELLE P. LONTOC\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 151\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437221699\r\nLastName: LONTOC\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nMobileNumber: 09276123447\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: Kumintang Ilaya\r\nPermanentCity: Batangas\r\nPermanentCountry: Philippines\r\nPermanentProvince: Batangas\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: Batangas\r\nReligion: CHRISTIAN\r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 58\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: Kumintang Ilaya\r\nBasicInformationId: 3601\r\nBirthDate: April 14, 1994\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: Batangas\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: maybellepagcaliwagan@gmail.com\r\nExtensionName: \r\nFirstName: MAYBELLE\r\nFullName: MAYBELLE P. LONTOC\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 151\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437221699\r\nLastName: LONTOC\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nMobileNumber: 09276123447\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: Kumintang Ilaya\r\nPermanentCity: Batangas\r\nPermanentCountry: Philippines\r\nPermanentProvince: Batangas\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: Batangas\r\nReligion: CHRISTIAN\r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 58\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760073	2024-07-02	09:01:23.8497555	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION QUALITY MANAGEMENT SYSTEM ( DQMS) JOURNEY TOWARD ONE DEPED, ONE QMS CERTIFICATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760074	2024-07-02	09:05:06.1649422	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING SEMINAR ON GOVERNMENT PROCUREMENT FOR DIVISION OFFICE PERSONNEL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760075	2024-07-02	09:07:59.1251579	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FINALIZATION OF YEAR - END REPORTS AND PERFORMANCE REVIEW FOR FY 2022\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760076	2024-07-02	09:11:43.6055086	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON THE PREPARATION OF FY2023 BUDGET EXECUTION DOCUMENTS CUM ENCODING IN THE UNIFIED REPORTING SYSTEM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760077	2024-07-02	09:14:25.1228642	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WEBINAR ON TRANSITIONING TO THE NEW NORMAL IN SUPPORT TO LEARNING CONTINUITY PLAN\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760078	2024-07-02	09:16:52.9250370	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SEMINAR-WORKSHOP ON THE PREPARATION AND CONSOLIDATION OF CY 2023 YEAR-END FINANCIAL REPORTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760079	2024-07-02	09:17:11.1751866	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PSP WEBINAR: ISO QUALITY MANAGEMENT SYSTEM FOR GOVERNMENT AGENCIES: AN INTRODUCTION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760080	2024-07-02	09:19:17.9644531	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2020 GOVERNMENT SUMMIT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760081	2024-07-02	10:14:53.0755357	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3609\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15045\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760082	2024-07-02	10:14:53.0795357	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3609\r\nEmployeeTrainingId: 0\r\nFromDate: February 20, 2023\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: February 20, 2023\r\nTrainingId: 15114\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760083	2024-07-02	10:14:53.0855359	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3609\r\nEmployeeTrainingId: 0\r\nFromDate: January 17, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: January 17, 2023\r\nTrainingId: 15048\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760084	2024-07-02	10:14:53.0895358	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3609\r\nEmployeeTrainingId: 0\r\nFromDate: November 16, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - REGIONAL OFFICE\r\nStatus: \r\nToDate: November 18, 2022\r\nTrainingId: 15116\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760106	2024-07-02	10:18:13.7765814	<Undetected>	Update	BasicInformationId: 3610\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3407\r\n	BasicInformationId: 3610\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3407\r\n	admin	Questionnaires	1
760086	2024-07-02	10:14:53.0985387	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3609\r\nEmployeeTrainingId: 0\r\nFromDate: September 17, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEVELOPMENT ACADEMY OF THE PHILIPPINES \r\nStatus: \r\nToDate: September 17, 2020\r\nTrainingId: 15119\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760087	2024-07-02	10:14:53.1025386	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3609\r\nEmployeeTrainingId: 0\r\nFromDate: September 03, 2020\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS, INC\r\nStatus: \r\nToDate: September 05, 2020\r\nTrainingId: 15120\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760088	2024-07-02	10:16:39.4456964	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 159B\r\nAddress2: \r\nBarangay: MARILAG\r\nBasicInformationId: 0\r\nBirthDate: May 29, 1997\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: ROSARIO\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: magtibayaubrey@gmail.com\r\nExtensionName: \r\nFirstName: AUBREY\r\nFullName: AUBREY M. MADERAZO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MADERAZO\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nMobileNumber: 09485377758\r\nNationality: Filipino\r\nPermanentAddress1: 159B\r\nPermanentAddress2: \r\nPermanentBarangay: MARILAG\r\nPermanentCity: ROSARIO\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO MAHARLIKA\r\nPermanentZipCode: 4205\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: SITIO MAHARLIKA\r\nTIN: \r\nWeight: 60\r\nZipCode: 4205\r\n	admin	BasicInformation	1
760089	2024-07-02	10:16:39.6907121	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3610\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAINT JOSEPH INSTITUTE\r\nYearGraduated: 2009\r\n	admin	EducationalBackgrounds	1
760090	2024-07-02	10:16:39.6947123	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3610\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2009\r\nDateTo: 2013\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAINT JOSEPH INSTITUTE\r\nYearGraduated: 2013\r\n	admin	EducationalBackgrounds	1
760091	2024-07-02	10:16:39.6987128	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3610\r\nCourse: \r\nCourseId: 1257\r\nCourseOrMajor: \r\nDateFrom: 2013\r\nDateTo: 2017\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY MAIN CAMPUS I\r\nYearGraduated: 2017\r\n	admin	EducationalBackgrounds	1
760092	2024-07-02	10:16:39.7027123	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: GOVERNMENT SCHOLAR\r\nBasicInformationId: 3610\r\nCourse: \r\nCourseId: 1253\r\nCourseOrMajor: \r\nDateFrom: 2019\r\nDateTo: 2022\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2022\r\n	admin	EducationalBackgrounds	1
760093	2024-07-02	10:16:39.7077121	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3610\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GUIDO\r\nFullName: GUIDO TENORIO MADERAZO\r\nGender: Male\r\nLastName: MADERAZO\r\nMaidenName: \r\nMiddleName: TENORIO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760094	2024-07-02	10:16:39.7117122	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3610\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: VICTORIA\r\nFullName: VICTORIA BACULA MAGTIBAY\r\nGender: Male\r\nLastName: MAGTIBAY\r\nMaidenName: \r\nMiddleName: BACULA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760095	2024-07-02	10:16:39.7157122	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3610\r\nEmployeeTrainingId: 0\r\nFromDate: January 16, 2024\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A CALABARZON\r\nStatus: \r\nToDate: January 18, 2024\r\nTrainingId: 15118\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760107	2024-07-02	10:21:30.1095333	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION ROLL -OUT OF DEPED ORDER NO. 029, S2019 PROCEDURAL GUIDELINES ON THE MANAGEMENT OF CASH ADVANCE FOR SCHOOL MOOE AND PROGRAM FUNDS ON NON-lus PURSUANT TO COA, DBM DEPED JC NO. 2019-1\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760372	2024-07-02	14:23:56.8537877	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3614\r\nSkillId: 0\r\nSkillName: ENHANCED FINANCIAL REPORTING SYSTEM (eFRS)\r\n	admin	Skills	1
760096	2024-07-02	10:16:39.7197122	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3610\r\nDateOfExamination: April 17, 2016\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: April 17, 2016\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 81.79%\r\nTitle: CAREER SERVICE PROFESSIONAL EXAMINATION\r\n	admin	Eligibilities	1
760097	2024-07-02	10:16:39.7237122	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3610\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: October 21, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 0.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-1\r\nStatus: Permanent\r\nToDate: July 02, 2024\r\n	admin	Experiences	1
760098	2024-07-02	10:16:39.7277122	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3610\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: March 18, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 0.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 08-1\r\nStatus: Permanent\r\nToDate: October 20, 2022\r\n	admin	Experiences	1
760099	2024-07-02	10:16:39.7327125	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3610\r\nCompanyInstitution: PHILIPPINE HEALTH INSURANCE CORPORATION\r\nExperienceId: 0\r\nFromDate: September 17, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 0.00\r\nPositionHeld: DATA CONTROLLER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 08-1\r\nStatus: Job Order\r\nToDate: August 03, 2019\r\n	admin	Experiences	1
760100	2024-07-02	10:16:39.7367123	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3610\r\nCompanyInstitution: STO. ROSARIO HOSPITAL\r\nExperienceId: 0\r\nFromDate: February 14, 2018\r\nIsGovernmentService: False\r\nMonthlySalary: 9,000.00\r\nPositionHeld: ASSISTANT CASHIER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: September 15, 2018\r\n	admin	Experiences	1
760101	2024-07-02	10:16:39.7397122	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3610\r\nCompanyInstitution: SHALOM MEDICAL DIAGNOSTIC LABORATORY\r\nExperienceId: 0\r\nFromDate: August 15, 2017\r\nIsGovernmentService: False\r\nMonthlySalary: 6,000.00\r\nPositionHeld: ACCOUNTING CLERK\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: September 12, 2017\r\n	admin	Experiences	1
760102	2024-07-02	10:16:39.7447123	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3610\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
760103	2024-07-02	10:18:13.7595818	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 159B\r\nAddress2: \r\nBarangay: MARILAG\r\nBasicInformationId: 3610\r\nBirthDate: May 29, 1997\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: ROSARIO\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: magtibayaubrey@gmail.com\r\nExtensionName: \r\nFirstName: AUBREY\r\nFullName: AUBREY M. MADERAZO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MADERAZO\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nMobileNumber: 09485377758\r\nNationality: Filipino\r\nPermanentAddress1: 159B\r\nPermanentAddress2: \r\nPermanentBarangay: MARILAG\r\nPermanentCity: ROSARIO\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO MAHARLIKA\r\nPermanentZipCode: 4205\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: SITIO MAHARLIKA\r\nTIN: \r\nWeight: 60\r\nZipCode: 4205\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 159B\r\nAddress2: \r\nBarangay: MARILAG\r\nBasicInformationId: 3610\r\nBirthDate: May 29, 1997\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: ROSARIO\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: magtibayaubrey@gmail.com\r\nExtensionName: \r\nFirstName: AUBREY\r\nFullName: AUBREY M. MADERAZO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MADERAZO\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nMobileNumber: 09485377758\r\nNationality: Filipino\r\nPermanentAddress1: 159B\r\nPermanentAddress2: \r\nPermanentBarangay: MARILAG\r\nPermanentCity: ROSARIO\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO MAHARLIKA\r\nPermanentZipCode: 4205\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO MAHARLIKA\r\nTIN: \r\nWeight: 60\r\nZipCode: 4205\r\n	admin	BasicInformation	1
760104	2024-07-02	10:18:13.7635812	<Undetected>	Update	BasicInformationId: 3610\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3284\r\nExtensionName: \r\nFirstName: GUIDO\r\nFullName: GUIDO TENORIO MADERAZO\r\nGender: Male\r\nLastName: MADERAZO\r\nMaidenName: \r\nMiddleName: TENORIO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3610\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3284\r\nExtensionName: \r\nFirstName: GUIDO\r\nFullName: GUIDO MADERAZO\r\nGender: Male\r\nLastName: MADERAZO\r\nMaidenName: \r\nMiddleName: TENORIO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760105	2024-07-02	10:18:13.7675813	<Undetected>	Update	BasicInformationId: 3610\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3285\r\nExtensionName: \r\nFirstName: VICTORIA\r\nFullName: VICTORIA BACULA MAGTIBAY\r\nGender: Male\r\nLastName: MAGTIBAY\r\nMaidenName: \r\nMiddleName: BACULA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3610\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3285\r\nExtensionName: \r\nFirstName: VICTORIA\r\nFullName: VICTORIA MAGTIBAY\r\nGender: Male\r\nLastName: MAGTIBAY\r\nMaidenName: \r\nMiddleName: BACULA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760108	2024-07-02	10:24:16.4591442	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FINALIZATION OF YEAR-END REPORTS AND PERFORMANCE REVIEW FOR FY 2023\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760110	2024-07-02	10:26:05.4758185	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON THE PREPARATION OF FY 2023 BUDGET EXECUTION DOCUMENTS CUM ENCODING IN THE UNIFIED REPORTING SYSTEM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760111	2024-07-02	10:29:02.1230622	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2022 ORIENTATION TRAINING ON QUALITY MANAGEMENT SYSTEM, DEPED MANUAL OF STYLE AND DEPED SERVICE MARKS AND VISUAL IDENTITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760112	2024-07-02	10:30:05.1309616	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2020 GOVERNMENT SUMMIT AND GENERAL MEETING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760113	2024-07-02	10:31:07.0745473	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: HR TRAINING AND DEVELOPMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760116	2024-07-02	10:34:43.6672264	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BOOKKEEPING NCIII\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760120	2024-07-02	10:45:07.4799198	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3610\r\nSkillId: 0\r\nSkillName: MICROSOFT OFFICE-WORD AND EXCEL\r\n	admin	Skills	1
760121	2024-07-02	10:45:07.4839200	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3610\r\nSkillId: 0\r\nSkillName: ENHANCED FINANCIAL REPORTING SYSTEM (eFRS)\r\n	admin	Skills	1
760122	2024-07-02	10:45:07.4879200	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3610\r\nSkillId: 0\r\nSkillName: FINANCIAL DATA ENTRY SYSTEM (FinDes)\r\n	admin	Skills	1
760123	2024-07-02	10:45:07.4919200	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3610\r\nSkillId: 0\r\nSkillName: MOOE-WEB BASED SYSTEM\r\n	admin	Skills	1
760124	2024-07-02	10:45:07.4969202	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3610\r\nRecognitionId: 0\r\nRecognitionName: 2023 CHAIRPERSON- FINANCIAL ADVANCEMENT SKILLS FOR SCHOOL ADMINISTRATORS AND FINANCE AND ADMINISTRATIVE PERSONNEL\r\n	admin	Recognitions	1
760125	2024-07-02	10:45:07.5009200	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3610\r\nRecognitionId: 0\r\nRecognitionName: 2023 FACILITATOR- FINANCIAL ADVANCEMENT SKILLS FOR SCHOOL ADMINISTRATORS AND FINANCE AND ADMINISTRATIVE PERSONNEL\r\n	admin	Recognitions	1
760126	2024-07-02	10:45:07.5049203	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3610\r\nRecognitionId: 0\r\nRecognitionName: 2020 FACILITATOR- TECHNICAL ASSISTANCE CUM WEBINAR ON PREPARATION OF STATEMENT OF BANK RECONCILIATION, PROPER IMPLEMENTATION OF CHECKING\r\n	admin	Recognitions	1
760127	2024-07-02	10:45:07.5089200	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3610\r\nEmployeeTrainingId: 0\r\nFromDate: September 09, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY \r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15113\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760128	2024-07-02	10:45:07.5129199	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3610\r\nEmployeeTrainingId: 0\r\nFromDate: May 15, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: May 17, 2023\r\nTrainingId: 15046\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760129	2024-07-02	10:45:07.5179202	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3610\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760130	2024-07-02	10:45:07.5219201	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3610\r\nEmployeeTrainingId: 0\r\nFromDate: January 17, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: January 17, 2023\r\nTrainingId: 15122\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760131	2024-07-02	10:45:07.5259201	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3610\r\nEmployeeTrainingId: 0\r\nFromDate: November 16, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A CALABARZON\r\nStatus: \r\nToDate: November 18, 2022\r\nTrainingId: 15124\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760132	2024-07-02	10:45:07.5299200	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3610\r\nEmployeeTrainingId: 0\r\nFromDate: January 12, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: January 14, 2022\r\nTrainingId: 15085\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760297	2024-07-02	14:07:00.9144834	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3606\r\nRecognitionId: 0\r\nRecognitionName: LEADERSHIP AWARD - PHILIPPINES INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS  \r\n	admin	Recognitions	1
760109	2024-07-02	10:24:38.1554890	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL SEMINAR- WORKSHOP ON THE PREPARATION AND CONSOLIDATION OF FY 2019 FINANCIAL REPORTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760114	2024-07-02	10:31:17.8194828	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION OF UNIFIED REPORTING SYSTEM ( URS) VERSION 2.0 AND ACTUAL ONLINE ENCODING ACTIVITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760115	2024-07-02	10:33:56.8192137	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING FOR SCHOOLS HEADS AND FINANCIAL STAFF ON THE PROPER UTILIZATION OF MOOE FUNDS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760117	2024-07-02	10:37:04.4122190	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL SEMINAR- WORKSHOP ON THE PREPARATION OF CY 2019 MID-YEAR FINANCIAL REPORTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760118	2024-07-02	10:41:17.8711306	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ISO 19011: 2018 GUIDELINES FOR AUDITING MANAGEMENT SYSTEM TRAINING COURSE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760119	2024-07-02	10:43:48.2189033	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING- WORKSHOP ON BASIC CUSTOMER SERVICE SKILLS FOR FRONT LINERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760142	2024-07-02	10:46:38.2194931	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL SEMINAR - WORKSHOP ON THE PREPARATION AND CONSOLIDATION OF FY2018 YEAR - END FINANCIAL REPORTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760143	2024-07-02	10:49:01.5342023	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING WORKSHOP OF THE DEPED INSPECTORATE TEAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760144	2024-07-02	10:51:31.2673735	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON PROPERTY AND SUPPLY MANAGEMENT SYSTEM AND CAPACITY BUILDING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760145	2024-07-02	10:53:54.3156800	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ISO 9901: 2015 QUALITY MANAGEMENT SYSTEM RISK AND OPPORTUNITY TRAINING AND WORKSHOP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760146	2024-07-02	10:56:38.4518829	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ISO 9001: 2015 QUALITY MANAGEMENT SYSTEM DOCUMENTATION TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760147	2024-07-02	11:01:42.0909712	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL SEMINAR - WORKSHOP ON THE PREPARATION AND CONSOLIDATION OF FY2017 YEAR - END FINANCIAL REPORTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760148	2024-07-02	11:03:56.4318277	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3609\r\nEmployeeTrainingId: 0\r\nFromDate: February 13, 2020\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: February 14, 2020\r\nTrainingId: 15121\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760149	2024-07-02	11:03:56.4363387	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3609\r\nEmployeeTrainingId: 0\r\nFromDate: January 20, 2020\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - REGIONAL OFFICE \r\nStatus: \r\nToDate: January 24, 2020\r\nTrainingId: 15123\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760150	2024-07-02	11:03:56.4403379	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3609\r\nEmployeeTrainingId: 0\r\nFromDate: December 12, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: December 13, 2019\r\nTrainingId: 15095\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760151	2024-07-02	11:03:56.4453389	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3609\r\nEmployeeTrainingId: 0\r\nFromDate: September 03, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - REGIONAL OFFICE \r\nStatus: \r\nToDate: September 04, 2019\r\nTrainingId: 15061\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760152	2024-07-02	11:03:56.4493385	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3609\r\nEmployeeTrainingId: 0\r\nFromDate: July 30, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: July 31, 2019\r\nTrainingId: 15129\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760133	2024-07-02	10:45:07.5339204	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3610\r\nEmployeeTrainingId: 0\r\nFromDate: September 03, 2020\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: PICPA\r\nStatus: \r\nToDate: September 05, 2020\r\nTrainingId: 15126\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760134	2024-07-02	10:45:07.5379191	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3610\r\nEmployeeTrainingId: 0\r\nFromDate: July 17, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: TRENDSTATIC\r\nStatus: \r\nToDate: July 18, 2020\r\nTrainingId: 15127\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760135	2024-07-02	10:45:07.5419199	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3610\r\nEmployeeTrainingId: 0\r\nFromDate: December 12, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: December 13, 2019\r\nTrainingId: 15059\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760136	2024-07-02	10:45:07.5459200	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3610\r\nEmployeeTrainingId: 0\r\nFromDate: July 30, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: July 31, 2019\r\nTrainingId: 15062\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760137	2024-07-02	10:45:07.5509198	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3610\r\nEmployeeTrainingId: 0\r\nFromDate: December 09, 2017\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: CRISTO REY INSTITUTE FOR CAREER DEVELOPMENT\r\nStatus: \r\nToDate: December 09, 2017\r\nTrainingId: 15130\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760138	2024-07-02	10:45:07.5539200	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3610\r\nCharacterReferenceId: 0\r\nCompanyAddress: SDO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 722-0715\r\nExtensionName: \r\nFirstName: MARIA JOSEFINA \r\nLastName: LAGMAN\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760139	2024-07-02	10:45:07.5589202	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3610\r\nCharacterReferenceId: 0\r\nCompanyAddress: PHIC PRO IV-B\r\nCompanyName: \r\nContactNumber: 09957582612\r\nExtensionName: \r\nFirstName: ROCHELLE\r\nLastName: CASALLA\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760140	2024-07-02	10:45:07.5629201	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 159B\r\nAddress2: \r\nBarangay: MARILAG\r\nBasicInformationId: 3610\r\nBirthDate: May 29, 1997\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: ROSARIO\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: magtibayaubrey@gmail.com\r\nExtensionName: \r\nFirstName: AUBREY\r\nFullName: AUBREY M. MADERAZO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MADERAZO\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nMobileNumber: 09485377758\r\nNationality: Filipino\r\nPermanentAddress1: 159B\r\nPermanentAddress2: \r\nPermanentBarangay: MARILAG\r\nPermanentCity: ROSARIO\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO MAHARLIKA\r\nPermanentZipCode: 4205\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO MAHARLIKA\r\nTIN: \r\nWeight: 60\r\nZipCode: 4205\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 159B\r\nAddress2: \r\nBarangay: MARILAG\r\nBasicInformationId: 3610\r\nBirthDate: May 29, 1997\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: ROSARIO\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: magtibayaubrey@gmail.com\r\nExtensionName: \r\nFirstName: AUBREY\r\nFullName: AUBREY M. MADERAZO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005568478\r\nHDMF: 1212-3466-8468\r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MADERAZO\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nMobileNumber: 09485377758\r\nNationality: Filipino\r\nPermanentAddress1: 159B\r\nPermanentAddress2: \r\nPermanentBarangay: MARILAG\r\nPermanentCity: ROSARIO\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO MAHARLIKA\r\nPermanentZipCode: 4205\r\nPhilhealth: 09-250782738-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO MAHARLIKA\r\nTIN: 344-655-305-0000\r\nWeight: 60\r\nZipCode: 4205\r\n	admin	BasicInformation	1
760141	2024-07-02	10:45:07.5669201	<Undetected>	Update	BasicInformationId: 3610\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3407\r\n	BasicInformationId: 3610\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: RESIGNATION\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3407\r\n	admin	Questionnaires	1
760167	2024-07-02	11:26:58.0787305	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SEMINAR WORKSHOP ON THE IMPLEMENTATION OF WEB-BASED MONITORING SYSTEM OF SCHOOL MOOE FUNDS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760170	2024-07-02	11:33:21.2874638	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION SEMINAR ON THE PROCEDURAL GUIDELINES ON THE MANAGEMENT OF CASH ADVANCES FOR SCHOOL MOOE AND PROGRAM FUNDS IMPLEMENTING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760187	2024-07-02	11:48:56.3124818	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3611\r\nEmployeeTrainingId: 0\r\nFromDate: January 17, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DIVISION OFFICE\r\nStatus: \r\nToDate: January 17, 2023\r\nTrainingId: 15048\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760298	2024-07-02	14:07:00.9194820	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3606\r\nRecognitionId: 0\r\nRecognitionName: PLAQUE OF RECOGNITION - GOVERNMENT ASSOCIATION OF CERTIFIED PUBLLIC ACCOUNTANTS\r\n	admin	Recognitions	1
760153	2024-07-02	11:03:56.4533383	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3609\r\nEmployeeTrainingId: 0\r\nFromDate: July 09, 2019\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - REGIONAL OFFICE \r\nStatus: \r\nToDate: July 12, 2019\r\nTrainingId: 15063\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760154	2024-07-02	11:03:56.4583386	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3609\r\nEmployeeTrainingId: 0\r\nFromDate: May 23, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: JBDC OCCUPATIONAL HEALTH, SAFETY AND ENVIRONMENT CONSULTANCY \r\nStatus: \r\nToDate: May 24, 2019\r\nTrainingId: 15132\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760155	2024-07-02	11:03:56.4633367	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3609\r\nEmployeeTrainingId: 0\r\nFromDate: December 27, 2018\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: February 12, 2019\r\nTrainingId: 15133\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760156	2024-07-02	11:03:56.4693387	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3609\r\nEmployeeTrainingId: 0\r\nFromDate: January 15, 2019\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - REGIONAL OFFICE \r\nStatus: \r\nToDate: January 18, 2019\r\nTrainingId: 15134\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760157	2024-07-02	11:03:56.4733388	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3609\r\nEmployeeTrainingId: 0\r\nFromDate: November 20, 2018\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - CENTRAL OFFICE \r\nStatus: \r\nToDate: November 22, 2018\r\nTrainingId: 15135\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760158	2024-07-02	11:03:56.4793377	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3609\r\nEmployeeTrainingId: 0\r\nFromDate: November 11, 2018\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - CENTRAL OFFICE\r\nStatus: \r\nToDate: November 13, 2018\r\nTrainingId: 15136\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760159	2024-07-02	11:03:56.4853367	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3609\r\nEmployeeTrainingId: 0\r\nFromDate: April 18, 2018\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: JCDC OCCUPATIONAL HEALTH, SAFETY AND ENVIRONMENT CONSULTANCY \r\nStatus: \r\nToDate: April 19, 2018\r\nTrainingId: 15137\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760160	2024-07-02	11:03:56.4913371	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3609\r\nEmployeeTrainingId: 0\r\nFromDate: March 22, 2018\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: JCDC OCCUPATIONAL HEALTH, SAFETY AND ENVIRONMENT CONSULTANCY\r\nStatus: \r\nToDate: March 22, 2018\r\nTrainingId: 15138\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760161	2024-07-02	11:03:56.4963387	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3609\r\nEmployeeTrainingId: 0\r\nFromDate: January 16, 2018\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - REGIONAL OFFICE \r\nStatus: \r\nToDate: January 19, 2018\r\nTrainingId: 15139\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760162	2024-07-02	11:03:56.5003385	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: BAGONG POOK\r\nBarangay: BILOGO\r\nBasicInformationId: 3609\r\nBirthDate: July 01, 2024\r\nBirthPlace: \r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RINALYN.SORIANO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RINALYN\r\nFullName: RINALYN S. ZARASPE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 20047090980\r\nHDMF: 1210-2577-9322\r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: SORIANO\r\nMobileNumber: 09273533174\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: BAGONG POOK\r\nPermanentBarangay: BILOGO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050205119-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1978808-1\r\nStreetName: \r\nTIN: 260-570-088-0000\r\nWeight: 70\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: BAGONG POOK\r\nBarangay: BILOGO\r\nBasicInformationId: 3609\r\nBirthDate: July 01, 2024\r\nBirthPlace: \r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RINALYN.SORIANO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RINALYN\r\nFullName: RINALYN S. ZARASPE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 20047090980\r\nHDMF: 1210-2577-9322\r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: SORIANO\r\nMobileNumber: 09273533174\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: BAGONG POOK\r\nPermanentBarangay: BILOGO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050205119-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: 04-1978808-1\r\nStreetName: \r\nTIN: 260-570-088-0000\r\nWeight: 70\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760163	2024-07-02	11:09:59.8241156	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION EDUCATION DEVELOPMENT PLAN ADJUSTMENT CUM POST-PLANNING ACTIVITIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760164	2024-07-02	11:14:29.9202520	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION QUALITY MANAGEMENT SYSTEM(DQMS) JOURNEY TOWARDS ONE DEPED, ONE QMS CERTIFICATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760165	2024-07-02	11:19:29.2056514	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION MANAGEMENT COMMITTEE MEETING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760166	2024-07-02	11:24:18.1861453	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TEACHER'S CONGRESS: BASIC AND ACTION REASERCH PROJECTS FOR CONTINOUS IMPROVEMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760168	2024-07-02	11:27:50.0678326	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FINANCIAL ADVANCEMENT SKILLS FOR SCHOOL ADMINISTRATOR AND FINANCE PERSONNEL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760169	2024-07-02	11:31:20.4183427	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: COORDINATION AND CONSULTATIVE MEETING OFR SDO SUPPLY OFFICERS AND CASHIERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760171	2024-07-02	11:34:10.7945924	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SAFE SPACES ACT AND GENDER - RESPONSIVE POLICY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760172	2024-07-02	11:37:42.7315127	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RESULTS-BASED PERFORMANCE MANAGEMENT SYSTEM: IPCRFS AND OPCRFS RECALIBRATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760173	2024-07-02	11:42:29.6681471	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION AND CAPACITY BUILDING ON LRMDS POLICIES AND GUIDELINES ,ORGANIZATION AND MANAGEMENT OF LRCS CUM CRAFTING OF SCHOOL AND DIVISION LRPLAN SY 2024-2024\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760174	2024-07-02	11:45:43.6486478	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION AND CAPACITY BUILDING ON LRMDS POLICIES AND GUIDELINES ,ORGANIZATION AND MANAGEMENT OF LRS CUM CRAFTING OF SCHOOL AND DIVISION LRPLAN SY 2023-2024\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760175	2024-07-02	11:48:24.6424932	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WE FOR GENDER EQUALITY AND INCLUSIVE SOCIETY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760229	2024-07-02	11:49:53.4583685	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3605\r\nEmployeeTrainingId: 0\r\nFromDate: September 25, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED SDO BATANGAS CITY\r\nStatus: \r\nToDate: September 06, 2023\r\nTrainingId: 15140\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760230	2024-07-02	11:49:53.4634114	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3605\r\nEmployeeTrainingId: 0\r\nFromDate: September 13, 2023\r\nHours: 8\r\nNatureOfParticipation: TECNICAL\r\nSponsoringAgency: DEPED SDO BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15045\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760231	2024-07-02	11:49:53.4694178	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3605\r\nEmployeeTrainingId: 0\r\nFromDate: August 23, 2023\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPED SDO BATANGAS CITY\r\nStatus: \r\nToDate: August 23, 2023\r\nTrainingId: 15142\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760232	2024-07-02	11:49:53.4754122	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3605\r\nEmployeeTrainingId: 0\r\nFromDate: February 08, 2023\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPED SDO BATANGAS CITY\r\nStatus: \r\nToDate: February 08, 2023\r\nTrainingId: 15143\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760233	2024-07-02	11:49:53.4803688	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3605\r\nEmployeeTrainingId: 0\r\nFromDate: May 17, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED SDO BATANGAS CITY\r\nStatus: \r\nToDate: May 17, 2023\r\nTrainingId: 15145\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760234	2024-07-02	11:49:53.4843685	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3605\r\nEmployeeTrainingId: 0\r\nFromDate: April 27, 2023\r\nHours: 16\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPED SDO BATANGAS CITY\r\nStatus: \r\nToDate: April 28, 2023\r\nTrainingId: 15146\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760235	2024-07-02	11:49:53.4893675	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3605\r\nEmployeeTrainingId: 0\r\nFromDate: March 20, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED SDO BATANGAS CITY\r\nStatus: \r\nToDate: March 20, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760236	2024-07-02	11:49:53.4933672	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3605\r\nEmployeeTrainingId: 0\r\nFromDate: March 29, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED SDO BATANGAS CITY\r\nStatus: \r\nToDate: March 29, 2023\r\nTrainingId: 15149\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760299	2024-07-02	14:07:00.9234834	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3606\r\nRecognitionId: 0\r\nRecognitionName: PLAQUE OF RECOGNITION- PHILIPPINE  INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS\r\n	admin	Recognitions	1
760176	2024-07-02	11:48:55.9686622	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK.14 LOT 25\r\nAddress2: MAGNUS VILLE\r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 0\r\nBirthDate: October 29, 1973\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mabell.guinhawa@deped.gov.ph\r\nExtensionName: \r\nFirstName: MABELL\r\nFullName: MABELL D. GUINHAWA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 06003839214\r\nHDMF: 1490-0090-5308\r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437247761\r\nLastName: GUINHAWA\r\nMaidenName: \r\nMiddleName: DRIZ\r\nMobileNumber: 09494000033\r\nNationality: Filipino\r\nPermanentAddress1: BLK.14 LOT 25\r\nPermanentAddress2: MAGNUS VILLE\r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ST. FRANCIS\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-0861067-8\r\nStreetName: ST. FRANCIS\r\nTIN: 160-730-195-0000\r\nWeight: 52\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760177	2024-07-02	11:48:56.2704820	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3611\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1980\r\nDateTo: 1986\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAINT BRIDGETINE COLLEGE\r\nYearGraduated: 1986\r\n	admin	EducationalBackgrounds	1
760178	2024-07-02	11:48:56.2744819	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3611\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1986\r\nDateTo: 1990\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1990\r\n	admin	EducationalBackgrounds	1
760179	2024-07-02	11:48:56.2794820	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3611\r\nCourse: \r\nCourseId: 1250\r\nCourseOrMajor: \r\nDateFrom: 1990\r\nDateTo: 1992\r\nEducationalAttainment: 2ND YEAR/ 103 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: College Under Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
760180	2024-07-02	11:48:56.2824820	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3611\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: JR\r\nFirstName: LORETO\r\nFullName: LORETO MONTALBO GUINHAWA JR\r\nGender: Male\r\nLastName: GUINHAWA\r\nMaidenName: \r\nMiddleName: MONTALBO\r\nOccupation: OFW\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
760181	2024-07-02	11:48:56.2874819	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3611\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: SR\r\nFirstName: FLORENCIO\r\nFullName: FLORENCIO PANGANIBAN DRIZ SR\r\nGender: Male\r\nLastName: DRIZ\r\nMaidenName: \r\nMiddleName: PANGANIBAN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760182	2024-07-02	11:48:56.2914820	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3611\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MILAGROS\r\nFullName: MILAGROS MACARAIG DRIZ\r\nGender: Male\r\nLastName: DRIZ\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760183	2024-07-02	11:48:56.2954819	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3611\r\nBirthDate: May 03, 1992\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MAR LEMUEL\r\nFullName: MAR LEMUEL DRIZ GUINHAWA\r\nGender: Male\r\nLastName: GUINHAWA\r\nMaidenName: \r\nMiddleName: DRIZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760184	2024-07-02	11:48:56.2994819	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3611\r\nBirthDate: May 20, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MIGUEL MICO\r\nFullName: MIGUEL MICO DRIZ GUINHAWA\r\nGender: Male\r\nLastName: GUINHAWA\r\nMaidenName: \r\nMiddleName: DRIZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760185	2024-07-02	11:48:56.3034819	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3611\r\nBirthDate: February 02, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PRECIOUS\r\nFullName: PRECIOUS DRIZ GUINHAWA\r\nGender: Male\r\nLastName: GUINHAWA\r\nMaidenName: \r\nMiddleName: DRIZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760186	2024-07-02	11:48:56.3084819	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3611\r\nEmployeeTrainingId: 0\r\nFromDate: May 15, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DIVISION OFFICE\r\nStatus: \r\nToDate: March 17, 2023\r\nTrainingId: 15046\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760300	2024-07-02	14:07:00.9284833	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3606\r\nRecognitionId: 0\r\nRecognitionName: OUTSTANDING CLUB PRESIDENT - LIONS CLUBS INTERNATIONAL, DISTRICT 301 A2 PHILIPPINES\r\n	admin	Recognitions	1
760188	2024-07-02	11:48:56.3154819	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3611\r\nEmployeeTrainingId: 0\r\nFromDate: April 18, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DIVISION OFFICE\r\nStatus: \r\nToDate: April 18, 2022\r\nTrainingId: 15144\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760189	2024-07-02	11:48:56.3204819	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3611\r\nEmployeeTrainingId: 0\r\nFromDate: March 19, 2021\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DIVISION OFFICE\r\nStatus: \r\nToDate: March 21, 2021\r\nTrainingId: 15090\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760190	2024-07-02	11:48:56.3244819	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3611\r\nEmployeeTrainingId: 0\r\nFromDate: August 17, 2021\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DIVISION OFFICE\r\nStatus: \r\nToDate: August 19, 2022\r\nTrainingId: 15054\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760191	2024-07-02	11:48:56.3284819	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3611\r\nEmployeeTrainingId: 0\r\nFromDate: September 03, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: NATIONAL\r\nStatus: \r\nToDate: September 05, 2023\r\nTrainingId: 15092\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760192	2024-07-02	11:48:56.3324819	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3611\r\nEmployeeTrainingId: 0\r\nFromDate: March 06, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DIVISION OFFICE\r\nStatus: \r\nToDate: March 06, 2020\r\nTrainingId: 15147\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760193	2024-07-02	11:48:56.3364819	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3611\r\nCharacterReferenceId: 0\r\nCompanyAddress: SOROSORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09306998117\r\nExtensionName: \r\nFirstName: MARIA JOSEFINA\r\nLastName: LAGMAN\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760194	2024-07-02	11:48:56.3404818	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3611\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09190814770\r\nExtensionName: \r\nFirstName: EDUARDA\r\nLastName: ALON\r\nMiddleName: U\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760195	2024-07-02	11:48:56.3444819	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3611\r\nCharacterReferenceId: 0\r\nCompanyAddress: ALITAGTAG, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09088937510\r\nExtensionName: \r\nFirstName: LOU\r\nLastName: PANALIGAN\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760196	2024-07-02	11:48:56.3494820	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3611\r\nDateOfExamination: October 14, 2001\r\nDateOfRelease: August 20, 1995\r\nEligibilityDocumentTypeId: 7\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: October 14, 2001\r\nLevelOfEligibility: First Level (Subprofessional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS NATIONAL HIGH SCHOOL\r\nRating: 81.41%\r\nTitle: SUB-PROFESSIONAL EXAM\r\n	admin	Eligibilities	1
760197	2024-07-02	11:48:56.3534818	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3611\r\nCompanyInstitution: SDO-BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 21,388.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: July 02, 2024\r\n	admin	Experiences	1
760198	2024-07-02	11:48:56.3564818	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3611\r\nCompanyInstitution: SDO-BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 20,572.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
760199	2024-07-02	11:48:56.3614818	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3611\r\nCompanyInstitution: SDO-BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 19,757.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
760200	2024-07-02	11:48:56.3654818	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3611\r\nCompanyInstitution: SDO-BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 19,757.00\r\nPositionHeld: ADMINISTRATIVE ASSISTSNAT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
760301	2024-07-02	14:07:00.9324832	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3606\r\nOrganizationId: 0\r\nOrganizationName: PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS - NATIONAL DIRECTOR FOR GOVERNMENT \r\n	admin	Organizations	1
760201	2024-07-02	11:48:56.3694818	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3611\r\nCompanyInstitution: SDO-BATANGAS PROVINCE\r\nExperienceId: 0\r\nFromDate: November 03, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 18,941.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
760202	2024-07-02	11:48:56.3734818	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3611\r\nCompanyInstitution: SDO-BATANGAS PROVINCE\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 18,941.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: November 02, 2020\r\n	admin	Experiences	1
760203	2024-07-02	11:48:56.3774819	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3611\r\nCompanyInstitution: SDO-BATANGAS PROVINCE\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 18,125.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
760204	2024-07-02	11:48:56.3814818	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3611\r\nCompanyInstitution: SDO-BATANGAS PROVINCE\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 17,627.00\r\nPositionHeld: ADIMISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
760205	2024-07-02	11:48:56.3854819	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3611\r\nCompanyInstitution: SDO-BATANGAS PROVINCE\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 17,145.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
760206	2024-07-02	11:48:56.3904818	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3611\r\nCompanyInstitution: SDO-BATANGAS PROVINCE\r\nExperienceId: 0\r\nFromDate: September 10, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 16,512.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: December 30, 2016\r\n	admin	Experiences	1
760207	2024-07-02	11:48:56.3944819	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3611\r\nCompanyInstitution: SDO-BATANGAS PROVINCE\r\nExperienceId: 0\r\nFromDate: January 01, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 11,405.00\r\nPositionHeld: ADMINISTRATIVE AIDE IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: September 09, 2014\r\n	admin	Experiences	1
760208	2024-07-02	11:48:56.3984818	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3611\r\nCompanyInstitution: SDO-BATANGAS PROVINCE\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 11,405.00\r\nPositionHeld: ADMINISTRATIVE AIDE IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: December 31, 2012\r\n	admin	Experiences	1
760209	2024-07-02	11:48:56.4024818	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3611\r\nCompanyInstitution: SDO-BATANGAS PROVINCE\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 10,626.00\r\nPositionHeld: ADMINISTRATIVE AIDE IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
760210	2024-07-02	11:48:56.4064818	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3611\r\nCompanyInstitution: SDO-BATANGAS PROVINCE\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 9,848.00\r\nPositionHeld: CLERK II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
760211	2024-07-02	11:48:56.4104818	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3611\r\nCompanyInstitution: SDO-BATANGAS PROVINCE\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 9,069.00\r\nPositionHeld: CLERK II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
760212	2024-07-02	11:48:56.4144818	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3611\r\nCompanyInstitution: SDO-BATANGAS PROVINCE\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 8,290.00\r\nPositionHeld: CLERK II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
760213	2024-07-02	11:48:56.4184818	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3611\r\nCompanyInstitution: SDO-BATANGAS PROVINCE\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 7,536.00\r\nPositionHeld: CLERK II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
760214	2024-07-02	11:48:56.4224818	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3611\r\nCompanyInstitution: SDO-BATANGAS PROVINCE\r\nExperienceId: 0\r\nFromDate: March 01, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 6,851.00\r\nPositionHeld: CLERK II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
760215	2024-07-02	11:48:56.4264818	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3611\r\nCompanyInstitution: SDO-BATANGAS PROVINCE\r\nExperienceId: 0\r\nFromDate: September 01, 2003\r\nIsGovernmentService: True\r\nMonthlySalary: 6,684.00\r\nPositionHeld: CLERK II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: February 28, 2006\r\n	admin	Experiences	1
760216	2024-07-02	11:48:56.4314817	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3611\r\nCompanyInstitution: SDO-BATANGAS PROVINCE\r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 6,522.00\r\nPositionHeld: CLERK II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: August 31, 2003\r\n	admin	Experiences	1
760217	2024-07-02	11:48:56.4354817	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3611\r\nCompanyInstitution: SDO-BATANGAS PROVINCE\r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 6,211.00\r\nPositionHeld: CLERK II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
760218	2024-07-02	11:48:56.4394819	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3611\r\nCompanyInstitution: SDO-BATANGAS PROVINCE\r\nExperienceId: 0\r\nFromDate: December 10, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 5,646.00\r\nPositionHeld: CLERK II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
760219	2024-07-02	11:48:56.4434817	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3611\r\nRecognitionId: 0\r\nRecognitionName: MERITORIOUS PERFORMANCE AWARD JANUARY 23, 2024\r\n	admin	Recognitions	1
760220	2024-07-02	11:48:56.4474817	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3611\r\nRecognitionId: 0\r\nRecognitionName: FINANCIAL ADVANCEMENT SKILLS FOR SCHOOL ADMINISTRATORS AND FINANCE AND ADMINISTRATIVE PERSONNEL MAY 15-17 2023\r\n	admin	Recognitions	1
760221	2024-07-02	11:48:56.4514818	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3611\r\nRecognitionId: 0\r\nRecognitionName: CAPACITY BUILDING: PROMOTING TRANSPARENCY, ACCOUNTABILITY, AND OPTIMIZED USE OF SCHOOL RESOURCES AUGUST 17-19, 2021\r\n	admin	Recognitions	1
760222	2024-07-02	11:48:56.4554817	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3611\r\nRecognitionId: 0\r\nRecognitionName: CAPACITY BUILDING PROGRAM ON THE FOUNDATION OF ORGANIZATIONAL DEVELOPMENT- CUSTOMER SERVICE- NOVEMBER 16-17, 2017\r\n	admin	Recognitions	1
760223	2024-07-02	11:48:56.4604817	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3611\r\nRecognitionId: 0\r\nRecognitionName: CONTINUOUS IMPROVEMENT PROGRAM (CIP) OF BATANGAS PROVINCE (PROJECT 2EMOOES- EFFECTIVE EVALUATION OF MOOE SUBSIDY) AUGUST 12, 2016\r\n	admin	Recognitions	1
760224	2024-07-02	11:48:56.4634818	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3611\r\nRecognitionId: 0\r\nRecognitionName: DIVISION MANAGEMENT DEVELOPMENT TRAINING FOR ELEMENTARY SCHOOL HEADS HELD AT ROSARIO EAST CENTRAL SCHOOL ON JUNE 4-6 2003\r\n	admin	Recognitions	1
760225	2024-07-02	11:48:56.4674817	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3611\r\nRecognitionId: 0\r\nRecognitionName: DIVISION SEMINAR ON THE UTILIZATION OF LESSON GUIDES HELD AT SAN PASCUAL CENTRAL SCHOOL ON MAY 27-30 2003\r\n	admin	Recognitions	1
760226	2024-07-02	11:48:56.4724817	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3611\r\nRecognitionId: 0\r\nRecognitionName: DIVISION MANAGEMENT DEVELOPMENT TRAINING FOR ELEMENTARY SCHOOLS PRINCIPALS HELD AT STO. TOMAS CENTRAL SCHOOL ON MAY 13-15 2003\r\n	admin	Recognitions	1
760227	2024-07-02	11:48:56.4764818	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3611\r\nOrganizationId: 0\r\nOrganizationName: NATIONAL EMPLOYMENT UNION\r\n	admin	Organizations	1
760228	2024-07-02	11:48:56.4814817	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3611\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
760237	2024-07-02	11:49:53.4973685	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3605\r\nEmployeeTrainingId: 0\r\nFromDate: March 21, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED SDO BATANGAS CITY\r\nStatus: \r\nToDate: March 23, 2023\r\nTrainingId: 15150\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760238	2024-07-02	11:49:53.5034122	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3605\r\nEmployeeTrainingId: 0\r\nFromDate: March 17, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED SDO BATANGAS CITY\r\nStatus: \r\nToDate: March 17, 2023\r\nTrainingId: 15152\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760239	2024-07-02	11:49:53.5094172	<Undetected>	Update	BasicInformationId: 3605\r\nEmployeeTrainingId: 7599\r\nFromDate: November 21, 2023\r\nHours: 8.00\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPED SDO BATANGAS CITY\r\nStatus: \r\nToDate: November 24, 2023\r\nTrainingId: 15112\r\nTrainingPerformanceRate: 0\r\n	BasicInformationId: 3605\r\nEmployeeTrainingId: 7599\r\nFromDate: November 21, 2023\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPED CENTRAL OFFICE\r\nStatus: \r\nToDate: November 24, 2023\r\nTrainingId: 15112\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760240	2024-07-02	12:59:42.1817996	<Undetected>	Update	BasicInformationId: 3611\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3286\r\nExtensionName: JR\r\nFirstName: LORETO\r\nFullName: LORETO MONTALBO GUINHAWA JR\r\nGender: Male\r\nLastName: GUINHAWA\r\nMaidenName: \r\nMiddleName: MONTALBO\r\nOccupation: OFW\r\nRelationship: Husband\r\n	BasicInformationId: 3611\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3286\r\nExtensionName: JR\r\nFirstName: LORETO\r\nFullName: LORETO GUINHAWA JR\r\nGender: Male\r\nLastName: GUINHAWA\r\nMaidenName: \r\nMiddleName: MONTALBO\r\nOccupation: OFW\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
760241	2024-07-02	12:59:42.1867591	<Undetected>	Update	BasicInformationId: 3611\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3287\r\nExtensionName: SR\r\nFirstName: FLORENCIO\r\nFullName: FLORENCIO PANGANIBAN DRIZ SR\r\nGender: Male\r\nLastName: DRIZ\r\nMaidenName: \r\nMiddleName: PANGANIBAN\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3611\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3287\r\nExtensionName: SR\r\nFirstName: FLORENCIO\r\nFullName: FLORENCIO DRIZ SR\r\nGender: Male\r\nLastName: DRIZ\r\nMaidenName: \r\nMiddleName: PANGANIBAN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760242	2024-07-02	12:59:42.1947590	<Undetected>	Update	BasicInformationId: 3611\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3288\r\nExtensionName: \r\nFirstName: MILAGROS\r\nFullName: MILAGROS MACARAIG DRIZ\r\nGender: Male\r\nLastName: DRIZ\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3611\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3288\r\nExtensionName: \r\nFirstName: MILAGROS\r\nFullName: MILAGROS DRIZ\r\nGender: Male\r\nLastName: DRIZ\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760243	2024-07-02	12:59:42.1987590	<Undetected>	Update	BasicInformationId: 3611\r\nBirthDate: May 03, 1992\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3289\r\nExtensionName: \r\nFirstName: MAR LEMUEL\r\nFullName: MAR LEMUEL DRIZ GUINHAWA\r\nGender: Male\r\nLastName: GUINHAWA\r\nMaidenName: \r\nMiddleName: DRIZ\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3611\r\nBirthDate: May 03, 1992\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3289\r\nExtensionName: \r\nFirstName: MAR LEMUEL\r\nFullName: MAR LEMUEL GUINHAWA\r\nGender: Male\r\nLastName: GUINHAWA\r\nMaidenName: \r\nMiddleName: DRIZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760244	2024-07-02	12:59:42.2052633	<Undetected>	Update	BasicInformationId: 3611\r\nBirthDate: May 20, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3290\r\nExtensionName: \r\nFirstName: MIGUEL MICO\r\nFullName: MIGUEL MICO DRIZ GUINHAWA\r\nGender: Male\r\nLastName: GUINHAWA\r\nMaidenName: \r\nMiddleName: DRIZ\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3611\r\nBirthDate: May 20, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3290\r\nExtensionName: \r\nFirstName: MIGUEL MICO\r\nFullName: MIGUEL MICO GUINHAWA\r\nGender: Male\r\nLastName: GUINHAWA\r\nMaidenName: \r\nMiddleName: DRIZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760245	2024-07-02	12:59:42.2092647	<Undetected>	Update	BasicInformationId: 3611\r\nBirthDate: February 02, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3291\r\nExtensionName: \r\nFirstName: PRECIOUS\r\nFullName: PRECIOUS DRIZ GUINHAWA\r\nGender: Male\r\nLastName: GUINHAWA\r\nMaidenName: \r\nMiddleName: DRIZ\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3611\r\nBirthDate: February 02, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3291\r\nExtensionName: \r\nFirstName: PRECIOUS\r\nFullName: PRECIOUS GUINHAWA\r\nGender: Male\r\nLastName: GUINHAWA\r\nMaidenName: \r\nMiddleName: DRIZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760246	2024-07-02	13:08:01.8548245	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BAGO\r\nBasicInformationId: 0\r\nBirthDate: November 15, 1996\r\nBirthPlace: MANILA\r\nBloodType: O\r\nCitizenshipType: \r\nCity: IBAAN\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: psalmguerra21@gmail.com\r\nExtensionName: \r\nFirstName: KRISTOFFER\r\nFullName: KRISTOFFER A. GUERRA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.71\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GUERRA\r\nMaidenName: \r\nMiddleName: ANDAL\r\nMobileNumber: 09276856403\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BAGO\r\nPermanentCity: IBAAN\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4230\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 73\r\nZipCode: 4230\r\n	admin	BasicInformation	1
760373	2024-07-02	14:23:56.8577876	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3614\r\nSkillId: 0\r\nSkillName: FINANCIAL DATA ENTRY SYSTEM (FinDes)\r\n	admin	Skills	1
760247	2024-07-02	13:08:01.8762835	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3612\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LILIANO\r\nFullName: LILIANO GUERRA GUERRA\r\nGender: Male\r\nLastName: GUERRA\r\nMaidenName: \r\nMiddleName: GUERRA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760248	2024-07-02	13:08:01.8762835	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3612\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: AUREA\r\nFullName: AUREA ATIENZA ANDAL\r\nGender: Male\r\nLastName: ANDAL\r\nMaidenName: \r\nMiddleName: ATIENZA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760249	2024-07-02	13:08:01.8762835	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3612\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
760250	2024-07-02	13:08:21.4486182	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TECHNICAL ASSISTANCE TO DIVISION PROPONENTS AND SCHOOL LEADERS ON FY 2024 BUDGET PREPARATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760251	2024-07-02	13:10:39.6874242	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: PIPEFITTING NATIONAL CERTIFICATE II\r\nLevel: Vocational\r\n	admin	Courses	1
760252	2024-07-02	13:16:50.4719102	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: GENERAL INSURANCE FORUM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760253	2024-07-02	13:18:24.6975390	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3605\r\nEmployeeTrainingId: 0\r\nFromDate: February 21, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED SDO BATANGAS CITY \r\nStatus: \r\nToDate: February 23, 2023\r\nTrainingId: 15153\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760254	2024-07-02	13:18:24.7095389	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3605\r\nEmployeeTrainingId: 0\r\nFromDate: February 20, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED CENTRAL OFFICE\r\nStatus: \r\nToDate: February 20, 2023\r\nTrainingId: 15114\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760255	2024-07-02	13:18:24.7135389	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3605\r\nEmployeeTrainingId: 0\r\nFromDate: July 11, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED SDO BATANGAS CITY\r\nStatus: \r\nToDate: July 11, 2022\r\nTrainingId: 15154\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760256	2024-07-02	13:18:24.7195390	<Undetected>	Update	BasicInformationId: 3605\r\nEmployeeTrainingId: 7649\r\nFromDate: March 17, 2023\r\nHours: 8.00\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED SDO BATANGAS CITY\r\nStatus: \r\nToDate: March 17, 2023\r\nTrainingId: 15152\r\nTrainingPerformanceRate: 0\r\n	BasicInformationId: 3605\r\nEmployeeTrainingId: 7649\r\nFromDate: March 17, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED SDO BATANGAS CITY\r\nStatus: \r\nToDate: March 17, 2023\r\nTrainingId: 15152\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760257	2024-07-02	13:21:51.5021957	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON RECONCILIATION ON REPORTED GSIS PREMIUM DEFICIENCIES OF DEPED PERSONNEL (CLUSTER 1- REGIONS IV-A, IV-B AND NCR)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760258	2024-07-02	13:27:05.3046835	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: AGENCY AUTHORIZED OFFICERS (AAOs) AND ELECTRONICE REMITTANCE FILE (ERF) HANDLERS REORIENTATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760259	2024-07-02	13:27:54.5930106	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF SCIENCE IN COMMERCE MAJOR IN ACCOUNTING\r\nLevel: College\r\n	admin	Courses	1
760260	2024-07-02	13:31:32.3758639	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING- WORKSHOP ON QUALITY MANAGEMENT SYSTEMS FOCUSED ON SEVEN S\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760261	2024-07-02	13:34:15.3502640	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FOSTERING EFFECTIVE AND EFFICIENT UTILIZATION OF GOVERNMENT FUNDS: REINFORCING LAWS, REGULATIONS AMIDST CHALLENGING TIMES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760262	2024-07-02	13:43:38.4245445	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3612\r\nSkillId: 0\r\nSkillName: FAMILIARITY IN MS WORD, EXCEL AND POWERPOINT\r\n	admin	Skills	1
760263	2024-07-02	13:43:38.4285446	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3612\r\nSkillId: 0\r\nSkillName: FAMILIARITY IN PHILHEALTH'S ELECTRONIC PREMIUM REMITTANCE SYSTEM (EPRS)\r\n	admin	Skills	1
760264	2024-07-02	13:43:38.4335449	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3612\r\nSkillId: 0\r\nSkillName: FAMILIARITY IN GSIS' ELECTRONIC BILLING AND COLLECTION SYSTEM (EBCS)\r\n	admin	Skills	1
760265	2024-07-02	13:43:38.4375448	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3612\r\nSkillId: 0\r\nSkillName: DRIVING\r\n	admin	Skills	1
760292	2024-07-02	14:07:00.8929697	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3606\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
760266	2024-07-02	13:43:38.4405445	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3612\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAINT JAMES ACADEMY\r\nYearGraduated: 2009\r\n	admin	EducationalBackgrounds	1
760267	2024-07-02	13:43:38.4455448	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3612\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2011\r\nDateTo: 2014\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: OBLATES OF SAINT JOSEPH MINOR SEMINARY\r\nYearGraduated: 2014\r\n	admin	EducationalBackgrounds	1
760268	2024-07-02	13:43:38.4495446	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3612\r\nCourse: \r\nCourseId: 1261\r\nCourseOrMajor: \r\nDateFrom: 2018\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Vocational Graduate\r\nMajor: \r\nSchoolorUniversity: TECHNICAL EDUCATION AND SKILLS DEVELOPMENT AUTHORITY BATANGAS\r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
760269	2024-07-02	13:43:38.4535443	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3612\r\nCourse: \r\nCourseId: 1257\r\nCourseOrMajor: \r\nDateFrom: 2014\r\nDateTo: 2016\r\nEducationalAttainment: 140 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: College Under Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
760270	2024-07-02	13:43:38.4575445	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3612\r\nEmployeeTrainingId: 0\r\nFromDate: January 16, 2024\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: January 19, 2024\r\nTrainingId: 15155\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760271	2024-07-02	13:43:38.4615445	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3612\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760272	2024-07-02	13:43:38.4655445	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3612\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15113\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760273	2024-07-02	13:43:38.4695445	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3612\r\nEmployeeTrainingId: 0\r\nFromDate: August 25, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: GOVERNMENT SERVICE INSURANCE SYSTEM\r\nStatus: \r\nToDate: August 25, 2023\r\nTrainingId: 15156\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760274	2024-07-02	13:43:38.4745446	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3612\r\nEmployeeTrainingId: 0\r\nFromDate: May 15, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: May 17, 2023\r\nTrainingId: 15145\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760275	2024-07-02	13:43:38.4785446	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3612\r\nEmployeeTrainingId: 0\r\nFromDate: May 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: May 30, 2023\r\nTrainingId: 15047\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760276	2024-07-02	13:43:38.4825446	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3612\r\nEmployeeTrainingId: 0\r\nFromDate: January 17, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: January 17, 2023\r\nTrainingId: 15048\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760277	2024-07-02	13:43:38.4865445	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3612\r\nEmployeeTrainingId: 0\r\nFromDate: June 30, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: June 30, 2022\r\nTrainingId: 15157\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760278	2024-07-02	13:43:38.4905445	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3612\r\nEmployeeTrainingId: 0\r\nFromDate: September 03, 2020\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS- SOUTHERN TAGALOG REGION\r\nStatus: \r\nToDate: September 05, 2020\r\nTrainingId: 15158\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760289	2024-07-02	13:43:38.5365930	<Undetected>	Update	BasicInformationId: 3612\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3292\r\nExtensionName: \r\nFirstName: LILIANO\r\nFullName: LILIANO GUERRA GUERRA\r\nGender: Male\r\nLastName: GUERRA\r\nMaidenName: \r\nMiddleName: GUERRA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3612\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3292\r\nExtensionName: \r\nFirstName: LILIANO\r\nFullName: LILIANO GUERRA\r\nGender: Male\r\nLastName: GUERRA\r\nMaidenName: \r\nMiddleName: GUERRA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760279	2024-07-02	13:43:38.4955446	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3612\r\nDateOfExamination: October 18, 2015\r\nDateOfRelease: November 26, 2015\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: October 18, 2015\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 20004151012971801\r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 80.5%\r\nTitle: CAREER SERVICE PROFESSIONAL\r\n	admin	Eligibilities	1
760280	2024-07-02	13:43:38.4985443	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3612\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 21, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 19,744.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 08-1\r\nStatus: Permanent\r\nToDate: July 02, 2024\r\n	admin	Experiences	1
760281	2024-07-02	13:43:38.5025448	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3612\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 08, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 12,790.00\r\nPositionHeld: JOB ORDER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: October 20, 2022\r\n	admin	Experiences	1
760282	2024-07-02	13:43:38.5075445	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3612\r\nCompanyInstitution: WATSONS\r\nExperienceId: 0\r\nFromDate: June 02, 2021\r\nIsGovernmentService: False\r\nMonthlySalary: 9,698.00\r\nPositionHeld: STORE INVENTORY CLERK\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: November 07, 2021\r\n	admin	Experiences	1
760283	2024-07-02	13:43:38.5115446	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3612\r\nCompanyInstitution: SALESFORCE ONE MARKETING\r\nExperienceId: 0\r\nFromDate: December 19, 2020\r\nIsGovernmentService: False\r\nMonthlySalary: 9,698.00\r\nPositionHeld: WAREHOUSE PICKER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: March 08, 2021\r\n	admin	Experiences	1
760284	2024-07-02	13:43:38.5155443	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3612\r\nCompanyInstitution: KALAYAAN ENGINEERING COMPANY, INCORPORATED\r\nExperienceId: 0\r\nFromDate: April 11, 2018\r\nIsGovernmentService: False\r\nMonthlySalary: 13,312.00\r\nPositionHeld: HELPER/ PIPEFITTER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: December 30, 2018\r\n	admin	Experiences	1
760285	2024-07-02	13:43:38.5195444	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3612\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES, SOROSORO ILAYA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09178213626\r\nExtensionName: \r\nFirstName: MARIA JOSEFINA\r\nLastName: LAGMAN\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760286	2024-07-02	13:43:38.5235447	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3612\r\nCharacterReferenceId: 0\r\nCompanyAddress: CALICANTO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09778143411\r\nExtensionName: \r\nFirstName: AREN ROSE\r\nLastName: GALVEZ\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760287	2024-07-02	13:43:38.5275445	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3612\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ISIDRO ITAAS, LEMERY BATANGAS\r\nCompanyName: \r\nContactNumber: 09278359080\r\nExtensionName: \r\nFirstName: JENNY\r\nLastName: ALVAREZ\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760288	2024-07-02	13:43:38.5315447	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BAGO\r\nBasicInformationId: 3612\r\nBirthDate: November 15, 1996\r\nBirthPlace: MANILA\r\nBloodType: O\r\nCitizenshipType: \r\nCity: IBAAN\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: psalmguerra21@gmail.com\r\nExtensionName: \r\nFirstName: KRISTOFFER\r\nFullName: KRISTOFFER A. GUERRA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.71\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GUERRA\r\nMaidenName: \r\nMiddleName: ANDAL\r\nMobileNumber: 09276856403\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BAGO\r\nPermanentCity: IBAAN\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4230\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 73\r\nZipCode: 4230\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BAGO\r\nBasicInformationId: 3612\r\nBirthDate: November 15, 1996\r\nBirthPlace: MANILA\r\nBloodType: O\r\nCitizenshipType: \r\nCity: IBAAN\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: psalmguerra21@gmail.com\r\nExtensionName: \r\nFirstName: KRISTOFFER\r\nFullName: KRISTOFFER A. GUERRA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006155480\r\nHDMF: 1212-2178-7299\r\nHeight: 1.71\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GUERRA\r\nMaidenName: \r\nMiddleName: ANDAL\r\nMobileNumber: 09276856403\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BAGO\r\nPermanentCity: IBAAN\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4230\r\nPhilhealth: 03-250930908-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: 04-4040178-0\r\nStreetName: \r\nTIN: 345-424-552-0000\r\nWeight: 73\r\nZipCode: 4230\r\n	admin	BasicInformation	1
760293	2024-07-02	14:07:00.8979694	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3606\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
760290	2024-07-02	13:43:38.5405896	<Undetected>	Update	BasicInformationId: 3612\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3293\r\nExtensionName: \r\nFirstName: AUREA\r\nFullName: AUREA ATIENZA ANDAL\r\nGender: Male\r\nLastName: ANDAL\r\nMaidenName: \r\nMiddleName: ATIENZA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3612\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3293\r\nExtensionName: \r\nFirstName: AUREA\r\nFullName: AUREA ANDAL\r\nGender: Male\r\nLastName: ANDAL\r\nMaidenName: \r\nMiddleName: ATIENZA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760291	2024-07-02	13:43:38.5445862	<Undetected>	Update	BasicInformationId: 3612\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3409\r\n	BasicInformationId: 3612\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: \r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3409\r\n	admin	Questionnaires	1
760336	2024-07-02	14:08:03.4621686	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING-WORKSHOP ON BASIC CUSTOMER SKILLS FOR FRONTLINERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760344	2024-07-02	14:23:56.5354504	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 159B\r\nAddress2: \r\nBarangay: MARILAG\r\nBasicInformationId: 0\r\nBirthDate: March 05, 1997\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: ROSARIO\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: \r\nExtensionName: \r\nFirstName: ERL JORDAN\r\nFullName: ERL JORDAN L. GONZALES\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005537573\r\nHDMF: 1212-3912-7141\r\nHeight: 1.7\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GONZALES\r\nMaidenName: \r\nMiddleName: LEUTERIO\r\nMobileNumber: 09352179359\r\nNationality: Filipino\r\nPermanentAddress1: 159B\r\nPermanentAddress2: \r\nPermanentBarangay: MARILAG\r\nPermanentCity: ROSARIO\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO MAHARLIKA\r\nPermanentZipCode: 4205\r\nPhilhealth: 09-251903053-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: SITIO MAHARLIKA\r\nTIN: 705-003-027-0000\r\nWeight: 70\r\nZipCode: 4205\r\n	admin	BasicInformation	1
760345	2024-07-02	14:23:56.7447337	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3614\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: LEUTEBORO ELEMENTARY SCHOOL\r\nYearGraduated: 2009\r\n	admin	EducationalBackgrounds	1
760346	2024-07-02	14:23:56.7487334	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3614\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2009\r\nDateTo: 2013\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: LEUTEOBORO NATIONAL HIGH SCHOOL\r\nYearGraduated: 2013\r\n	admin	EducationalBackgrounds	1
760347	2024-07-02	14:23:56.7527336	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3614\r\nCourse: \r\nCourseId: 1257\r\nCourseOrMajor: \r\nDateFrom: 2013\r\nDateTo: 2017\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY MAIN CAMPUS I\r\nYearGraduated: 2017\r\n	admin	EducationalBackgrounds	1
760348	2024-07-02	14:23:56.7567880	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: GOVERNMENT SCHOLAR\r\nBasicInformationId: 3614\r\nCourse: \r\nCourseId: 1253\r\nCourseOrMajor: \r\nDateFrom: 2019\r\nDateTo: 2022\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2022\r\n	admin	EducationalBackgrounds	1
760349	2024-07-02	14:23:56.7607878	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3614\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROSEO\r\nFullName: ROSEO FRIAS GONZALES\r\nGender: Male\r\nLastName: GONZALES\r\nMaidenName: \r\nMiddleName: FRIAS\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760350	2024-07-02	14:23:56.7647877	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3614\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LEABETH\r\nFullName: LEABETH BALITA LEUTERIO\r\nGender: Male\r\nLastName: LEUTERIO\r\nMaidenName: \r\nMiddleName: BALITA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760351	2024-07-02	14:23:56.7687880	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3614\r\nEmployeeTrainingId: 0\r\nFromDate: January 16, 2024\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A CALABARZON\r\nStatus: \r\nToDate: January 18, 2024\r\nTrainingId: 15118\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760352	2024-07-02	14:23:56.7727878	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3614\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- SCHOOL DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15141\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760302	2024-07-02	14:07:00.9364831	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3606\r\nOrganizationId: 0\r\nOrganizationName: GOVERNMENT ASSOCIATION OF CERTIFIED PUBLIC ACCOUNTANT - DIRECTOR FOR LUZON \r\n	admin	Organizations	1
760303	2024-07-02	14:07:00.9414835	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3606\r\nOrganizationId: 0\r\nOrganizationName: LIONS CLUBS INTERNATIONAL \r\n	admin	Organizations	1
760304	2024-07-02	14:07:00.9454835	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3606\r\nOrganizationId: 0\r\nOrganizationName: NATIONAL EMPLOYEES UNION- BOARD OF TRUSTEES \r\n	admin	Organizations	1
760305	2024-07-02	14:07:00.9504839	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3606\r\nOrganizationId: 0\r\nOrganizationName: NATIONAL ASSOCIATION OF DEPED FINANCE PERSONNEL - ASST. SECRETARY \r\n	admin	Organizations	1
760306	2024-07-02	14:07:00.9544836	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3606\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1967\r\nDateTo: 1973\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: ST. THERESA'S ACADEMY ALANGILAN CENTRAL ELEM. SCHOOL \r\nYearGraduated: 1973\r\n	admin	EducationalBackgrounds	1
760307	2024-07-02	14:07:00.9584834	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: 2ND HONORABLE MENTION \r\nBasicInformationId: 3606\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1973\r\nDateTo: 1977\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINES COLLEGES ( NOW UNIVERSITY OF BATANGAS)\r\nYearGraduated: 1977\r\n	admin	EducationalBackgrounds	1
760308	2024-07-02	14:07:00.9624832	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3606\r\nCourse: \r\nCourseId: 1252\r\nCourseOrMajor: \r\nDateFrom: 1977\r\nDateTo: 1981\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: ACCOUNTING\r\nSchoolorUniversity: WESTERN PHILIPPINES COLLEGES ( NOW UNIVERSITY OF BATANGAS)\r\nYearGraduated: 1981\r\n	admin	EducationalBackgrounds	1
760309	2024-07-02	14:07:00.9664819	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: ACADEMIC EXCELLENCE AWARDEE\r\nBasicInformationId: 3606\r\nCourse: \r\nCourseId: 1256\r\nCourseOrMajor: \r\nDateFrom: 1995\r\nDateTo: 2001\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: LYCEUM OF THE PHILIPPINES UNIVERSITY BATANGAS\r\nYearGraduated: 2000\r\n	admin	EducationalBackgrounds	1
760310	2024-07-02	14:07:00.9714837	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: ACADEMIC EXCELLENCE AWARDEE\r\nBasicInformationId: 3606\r\nCourse: \r\nCourseId: 1259\r\nCourseOrMajor: \r\nDateFrom: 2021\r\nDateTo: 2023\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: \r\nSchoolorUniversity: LYCEUM OF THE PHILIPPINES UNIVERSITY BATANGAS\r\nYearGraduated: 2023\r\n	admin	EducationalBackgrounds	1
760311	2024-07-02	14:07:00.9754835	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3606\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: REDENTOR\r\nFullName: REDENTOR VIRAY LAGMAN\r\nGender: Male\r\nLastName: LAGMAN\r\nMaidenName: \r\nMiddleName: VIRAY\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
760312	2024-07-02	14:07:00.9794836	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3606\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FERNANDO\r\nFullName: FERNANDO PASTOR MARANAN\r\nGender: Male\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: PASTOR\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760313	2024-07-02	14:07:00.9834885	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3606\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LEONARDA\r\nFullName: LEONARDA BUAN ALVAREZ\r\nGender: Male\r\nLastName: ALVAREZ\r\nMaidenName: \r\nMiddleName: BUAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760314	2024-07-02	14:07:00.9874886	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3606\r\nBirthDate: November 10, 1986\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: REDELINE JOYCE\r\nFullName: REDELINE JOYCE L CABATAY\r\nGender: Male\r\nLastName: CABATAY\r\nMaidenName: \r\nMiddleName: L\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760315	2024-07-02	14:07:00.9934875	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3606\r\nBirthDate: January 17, 1988\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RAYMOND JASON\r\nFullName: RAYMOND JASON M LAGMAN\r\nGender: Male\r\nLastName: LAGMAN\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760316	2024-07-02	14:07:00.9999946	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3606\r\nBirthDate: June 28, 1994\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RENDELL JASON\r\nFullName: RENDELL JASON M LAGMAN\r\nGender: Male\r\nLastName: LAGMAN\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760317	2024-07-02	14:07:01.0039958	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3606\r\nDateOfExamination: November 09, 1983\r\nDateOfRelease: January 08, 2024\r\nEligibilityDocumentTypeId: 0\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: November 09, 1983\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0056265\r\nPlaceOfExamination: MANILA\r\nRating: 75% \r\nTitle: CPA LICENSURE EXAMINATION \r\n	admin	Eligibilities	1
760318	2024-07-02	14:07:01.0089962	<Undetected>	Insert	BasicInformationId: \r\nCommunityServiceId: \r\nDateFrom: \r\nDateTo: \r\nNumberOfHours: \r\nOrganizationAddress: \r\nOrganizationName: \r\nStatus: \r\n	BasicInformationId: 3606\r\nCommunityServiceId: 0\r\nDateFrom: July 01, 2023\r\nDateTo: June 30, 2024\r\nNumberOfHours: 0\r\nOrganizationAddress: LIONS CLUBS INTERNATIONAL DISTRICT 301 A2 PHILIPPINES\r\nOrganizationName: LIONS CLUBS INTERNATIONAL DISTRICT 301 A2 PHILIPPINES \r\nStatus: DIRECTOR FOR LUZON\r\n	admin	CommunityServices	1
760319	2024-07-02	14:07:01.0139965	<Undetected>	Insert	BasicInformationId: \r\nCommunityServiceId: \r\nDateFrom: \r\nDateTo: \r\nNumberOfHours: \r\nOrganizationAddress: \r\nOrganizationName: \r\nStatus: \r\n	BasicInformationId: 3606\r\nCommunityServiceId: 0\r\nDateFrom: July 01, 2023\r\nDateTo: June 30, 2024\r\nNumberOfHours: 0\r\nOrganizationAddress: BATANGAS CROWN LIONS CLUB, PMJP\r\nOrganizationName: BATANGAS CROWN LIONS CLUB, PMJP\r\nStatus: COMMITTEE CHAIR- SIGHTS FOR KIDS\r\n	admin	CommunityServices	1
760320	2024-07-02	14:07:01.0179961	<Undetected>	Insert	BasicInformationId: \r\nCommunityServiceId: \r\nDateFrom: \r\nDateTo: \r\nNumberOfHours: \r\nOrganizationAddress: \r\nOrganizationName: \r\nStatus: \r\n	BasicInformationId: 3606\r\nCommunityServiceId: 0\r\nDateFrom: July 01, 2023\r\nDateTo: June 30, 2024\r\nNumberOfHours: 0\r\nOrganizationAddress: LIONS CLUBS INTERNATIONAL DISTRICT 301 A2 PHILIPPINES \r\nOrganizationName: LIONS CLUBS INTERNATIONAL DISTRICT 301 A2 PHILIPPINES \r\nStatus: COMMITTEE CHAIR- READING ACTION PROGRAM \r\n	admin	CommunityServices	1
760321	2024-07-02	14:07:01.0219957	<Undetected>	Insert	BasicInformationId: \r\nCommunityServiceId: \r\nDateFrom: \r\nDateTo: \r\nNumberOfHours: \r\nOrganizationAddress: \r\nOrganizationName: \r\nStatus: \r\n	BasicInformationId: 3606\r\nCommunityServiceId: 0\r\nDateFrom: July 01, 2021\r\nDateTo: June 30, 2024\r\nNumberOfHours: 0\r\nOrganizationAddress: GIRL SCOUTS OF THE PHILIPPINES BATANGAS CITY COUNCIL\r\nOrganizationName: GIRL SCOUTS OF THE PHILIPPINES BATANGAS CITY COUNCIL  \r\nStatus: COUNCIL BOARD ( TREASURER )\r\n	admin	CommunityServices	1
760322	2024-07-02	14:07:01.0269963	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3606\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SDO BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: May 25, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 52,847.00\r\nPositionHeld: ACCOUNTANT III \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-3\r\nStatus: Permanent\r\nToDate: May 25, 2015\r\n	admin	Experiences	1
760323	2024-07-02	14:07:01.0309966	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3606\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SDO BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: May 14, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 0.00\r\nPositionHeld: ACCOUNTANT II \r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: May 14, 1999\r\n	admin	Experiences	1
760324	2024-07-02	14:07:01.0349958	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3606\r\nCharacterReferenceId: 0\r\nCompanyAddress: LIPA CITY\r\nCompanyName: \r\nContactNumber: 09989535221\r\nExtensionName: \r\nFirstName: LIZA\r\nLastName: UMALI\r\nMiddleName: V\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760325	2024-07-02	14:07:01.0409944	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3606\r\nCharacterReferenceId: 0\r\nCompanyAddress: BOLBOK, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09228232141\r\nExtensionName: \r\nFirstName: FELISA\r\nLastName: CAMO\r\nMiddleName: Q\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760326	2024-07-02	14:07:01.0469942	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3606\r\nCharacterReferenceId: 0\r\nCompanyAddress: KARANGALAN VILLAGE, QC\r\nCompanyName: \r\nContactNumber: 09178562247\r\nExtensionName: \r\nFirstName: MARITES\r\nLastName: GLORIA\r\nMiddleName: L\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760327	2024-07-02	14:07:01.0529943	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: MERCEDES HOME\r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 3606\r\nBirthDate: July 01, 2024\r\nBirthPlace: \r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: \r\nExtensionName: \r\nFirstName: MARIA JOSEFINA\r\nFullName: MARIA JOSEFINA M. LAGMAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: LAGMAN\r\nMaidenName: \r\nMiddleName: MARANAN\r\nMobileNumber: 09178213626\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: MERCEDES BOULEVARD\r\nTIN: \r\nWeight: 71\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: MERCEDES HOME\r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 3606\r\nBirthDate: July 01, 2024\r\nBirthPlace: \r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: \r\nExtensionName: \r\nFirstName: MARIA JOSEFINA\r\nFullName: MARIA JOSEFINA M. LAGMAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 20028966510\r\nHDMF: 1490-0090-2901\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: LAGMAN\r\nMaidenName: \r\nMiddleName: MARANAN\r\nMobileNumber: 09178213626\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: 09-050039547-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-0521383-2\r\nStreetName: MERCEDES BOULEVARD\r\nTIN: 136-310-653-0000\r\nWeight: 71\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760374	2024-07-02	14:23:56.8627877	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3614\r\nSkillId: 0\r\nSkillName: MOOE-WEB BASED SYSTEM\r\n	admin	Skills	1
760328	2024-07-02	14:07:01.0589937	<Undetected>	Update	BasicInformationId: 3606\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3402\r\n	BasicInformationId: 3606\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: RESIGNATION - I HAVE TO LOOK AFTER MY NEWBORN CHILD\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: Yes\r\nQuestionnaireId: 3402\r\n	admin	Questionnaires	1
760329	2024-07-02	14:07:48.1544258	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: MERCEDES HOME\r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 3606\r\nBirthDate: July 01, 2024\r\nBirthPlace: \r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: \r\nExtensionName: \r\nFirstName: MARIA JOSEFINA\r\nFullName: MARIA JOSEFINA M. LAGMAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 20028966510\r\nHDMF: 1490-0090-2901\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: LAGMAN\r\nMaidenName: \r\nMiddleName: MARANAN\r\nMobileNumber: 09178213626\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: 09-050039547-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-0521383-2\r\nStreetName: MERCEDES BOULEVARD\r\nTIN: 136-310-653-0000\r\nWeight: 71\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: MERCEDES HOME\r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 3606\r\nBirthDate: July 01, 2024\r\nBirthPlace: \r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: \r\nExtensionName: \r\nFirstName: MARIA JOSEFINA\r\nFullName: MARIA JOSEFINA M. LAGMAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 20028966510\r\nHDMF: 1490-0090-2901\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: LAGMAN\r\nMaidenName: \r\nMiddleName: MARANAN\r\nMobileNumber: 09178213626\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: 09-050039547-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: 04-0521383-2\r\nStreetName: MERCEDES BOULEVARD\r\nTIN: 136-310-653-0000\r\nWeight: 71\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760330	2024-07-02	14:07:48.1594255	<Undetected>	Update	BasicInformationId: 3606\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3294\r\nExtensionName: \r\nFirstName: REDENTOR\r\nFullName: REDENTOR VIRAY LAGMAN\r\nGender: Male\r\nLastName: LAGMAN\r\nMaidenName: \r\nMiddleName: VIRAY\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3606\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3294\r\nExtensionName: \r\nFirstName: REDENTOR\r\nFullName: REDENTOR LAGMAN\r\nGender: Male\r\nLastName: LAGMAN\r\nMaidenName: \r\nMiddleName: VIRAY\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
760331	2024-07-02	14:07:48.1714270	<Undetected>	Update	BasicInformationId: 3606\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3295\r\nExtensionName: \r\nFirstName: FERNANDO\r\nFullName: FERNANDO PASTOR MARANAN\r\nGender: Male\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: PASTOR\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3606\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3295\r\nExtensionName: \r\nFirstName: FERNANDO\r\nFullName: FERNANDO MARANAN\r\nGender: Male\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: PASTOR\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760332	2024-07-02	14:07:48.1754265	<Undetected>	Update	BasicInformationId: 3606\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3296\r\nExtensionName: \r\nFirstName: LEONARDA\r\nFullName: LEONARDA BUAN ALVAREZ\r\nGender: Male\r\nLastName: ALVAREZ\r\nMaidenName: \r\nMiddleName: BUAN\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3606\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3296\r\nExtensionName: \r\nFirstName: LEONARDA\r\nFullName: LEONARDA ALVAREZ\r\nGender: Male\r\nLastName: ALVAREZ\r\nMaidenName: \r\nMiddleName: BUAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760333	2024-07-02	14:07:48.1834274	<Undetected>	Update	BasicInformationId: 3606\r\nBirthDate: November 10, 1986\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3297\r\nExtensionName: \r\nFirstName: REDELINE JOYCE\r\nFullName: REDELINE JOYCE L CABATAY\r\nGender: Male\r\nLastName: CABATAY\r\nMaidenName: \r\nMiddleName: L\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3606\r\nBirthDate: November 10, 1986\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3297\r\nExtensionName: \r\nFirstName: REDELINE JOYCE\r\nFullName: REDELINE JOYCE CABATAY\r\nGender: Male\r\nLastName: CABATAY\r\nMaidenName: \r\nMiddleName: L\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760334	2024-07-02	14:07:48.1874265	<Undetected>	Update	BasicInformationId: 3606\r\nBirthDate: January 17, 1988\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3298\r\nExtensionName: \r\nFirstName: RAYMOND JASON\r\nFullName: RAYMOND JASON M LAGMAN\r\nGender: Male\r\nLastName: LAGMAN\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3606\r\nBirthDate: January 17, 1988\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3298\r\nExtensionName: \r\nFirstName: RAYMOND JASON\r\nFullName: RAYMOND JASON LAGMAN\r\nGender: Male\r\nLastName: LAGMAN\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760335	2024-07-02	14:07:48.1914270	<Undetected>	Update	BasicInformationId: 3606\r\nBirthDate: June 28, 1994\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3299\r\nExtensionName: \r\nFirstName: RENDELL JASON\r\nFullName: RENDELL JASON M LAGMAN\r\nGender: Male\r\nLastName: LAGMAN\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3606\r\nBirthDate: June 28, 1994\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3299\r\nExtensionName: \r\nFirstName: RENDELL JASON\r\nFullName: RENDELL JASON LAGMAN\r\nGender: Male\r\nLastName: LAGMAN\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760353	2024-07-02	14:23:56.7767877	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3614\r\nEmployeeTrainingId: 0\r\nFromDate: May 15, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- SCHOOL DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: May 17, 2023\r\nTrainingId: 15046\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760354	2024-07-02	14:23:56.7817878	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3614\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- SCHOOL DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760375	2024-07-02	14:23:56.8667876	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3614\r\nRecognitionId: 0\r\nRecognitionName: 2023 CHAIRPERSON- FINANCIAL ADVANCEMENT SKILLS FOR SCHOOL ADMINISTRATOR AND FINANCE & ADMINISTRATIVE PERSONNEL\r\n	admin	Recognitions	1
760337	2024-07-02	14:08:41.4882656	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: MERCEDES HOME\r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 3606\r\nBirthDate: July 01, 2024\r\nBirthPlace: \r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: \r\nExtensionName: \r\nFirstName: MARIA JOSEFINA\r\nFullName: MARIA JOSEFINA M. LAGMAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 20028966510\r\nHDMF: 1490-0090-2901\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: LAGMAN\r\nMaidenName: \r\nMiddleName: MARANAN\r\nMobileNumber: 09178213626\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: 09-050039547-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: 04-0521383-2\r\nStreetName: MERCEDES BOULEVARD\r\nTIN: 136-310-653-0000\r\nWeight: 71\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: MERCEDES HOME\r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 3606\r\nBirthDate: July 01, 2024\r\nBirthPlace: \r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: \r\nExtensionName: \r\nFirstName: MARIA JOSEFINA\r\nFullName: MARIA JOSEFINA M. LAGMAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 20028966510\r\nHDMF: 1490-0090-2901\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: LAGMAN\r\nMaidenName: \r\nMiddleName: MARANAN\r\nMobileNumber: 09178213626\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: 09-050039547-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-0521383-2\r\nStreetName: MERCEDES BOULEVARD\r\nTIN: 136-310-653-0000\r\nWeight: 71\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760338	2024-07-02	14:18:03.3116169	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 172\r\nAddress2: \r\nBarangay: MUZON\r\nBasicInformationId: 0\r\nBirthDate: November 11, 1990\r\nBirthPlace: SAN LUIS,BATANGAS\r\nBloodType: B\r\nCitizenshipType: \r\nCity: SAN LUIS\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RAYOSLEEZETTE@GMAIL.COM\r\nExtensionName: \r\nFirstName: LEEZETTE\r\nFullName: LEEZETTE M. RAYOS\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09996957877\r\nNationality: Filipino\r\nPermanentAddress1: 172\r\nPermanentAddress2: \r\nPermanentBarangay: MUZON\r\nPermanentCity: SAN LUIS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4210\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 53\r\nZipCode: 4210\r\n	admin	BasicInformation	1
760339	2024-07-02	14:18:03.3256196	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3613\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
760340	2024-07-02	14:20:07.4026332	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: MERCEDES HOME\r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 3606\r\nBirthDate: July 01, 2024\r\nBirthPlace: \r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: \r\nExtensionName: \r\nFirstName: MARIA JOSEFINA\r\nFullName: MARIA JOSEFINA M. LAGMAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 20028966510\r\nHDMF: 1490-0090-2901\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: LAGMAN\r\nMaidenName: \r\nMiddleName: MARANAN\r\nMobileNumber: 09178213626\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: 09-050039547-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-0521383-2\r\nStreetName: MERCEDES BOULEVARD\r\nTIN: 136-310-653-0000\r\nWeight: 71\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: MERCEDES HOME\r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 3606\r\nBirthDate: July 01, 2024\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: \r\nExtensionName: \r\nFirstName: MARIA JOSEFINA\r\nFullName: MARIA JOSEFINA M. LAGMAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 20028966510\r\nHDMF: 1490-0090-2901\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: LAGMAN\r\nMaidenName: \r\nMiddleName: MARANAN\r\nMobileNumber: 09178213626\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: MERCEDES HOME\r\nPermanentBarangay: SOROSORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: MERCEDES BOULEVARD\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050039547-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-0521383-2\r\nStreetName: MERCEDES BOULEVARD\r\nTIN: 136-310-653-0000\r\nWeight: 71\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760355	2024-07-02	14:23:56.7847878	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3614\r\nEmployeeTrainingId: 0\r\nFromDate: January 17, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- SCHOOL DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: January 17, 2023\r\nTrainingId: 15122\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760356	2024-07-02	14:23:56.7887877	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3614\r\nEmployeeTrainingId: 0\r\nFromDate: November 16, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A CALABARZON\r\nStatus: \r\nToDate: November 18, 2022\r\nTrainingId: 15124\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760357	2024-07-02	14:23:56.7937878	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3614\r\nEmployeeTrainingId: 0\r\nFromDate: September 03, 2020\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: PICPA\r\nStatus: \r\nToDate: September 05, 2020\r\nTrainingId: 15126\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760341	2024-07-02	14:20:47.3721800	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 172\r\nAddress2: \r\nBarangay: MUZON\r\nBasicInformationId: 3613\r\nBirthDate: November 11, 1990\r\nBirthPlace: SAN LUIS,BATANGAS\r\nBloodType: B\r\nCitizenshipType: \r\nCity: SAN LUIS\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RAYOSLEEZETTE@GMAIL.COM\r\nExtensionName: \r\nFirstName: LEEZETTE\r\nFullName: LEEZETTE M. RAYOS\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09996957877\r\nNationality: Filipino\r\nPermanentAddress1: 172\r\nPermanentAddress2: \r\nPermanentBarangay: MUZON\r\nPermanentCity: SAN LUIS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4210\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 53\r\nZipCode: 4210\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 172\r\nAddress2: \r\nBarangay: MUZON\r\nBasicInformationId: 3613\r\nBirthDate: November 11, 1990\r\nBirthPlace: SAN LUIS,BATANGAS\r\nBloodType: B\r\nCitizenshipType: \r\nCity: SAN LUIS\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RAYOSLEEZETTE@GMAIL.COM\r\nExtensionName: \r\nFirstName: LEEZETTE\r\nFullName: LEEZETTE M. RAYOS\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09996957877\r\nNationality: Filipino\r\nPermanentAddress1: 172\r\nPermanentAddress2: \r\nPermanentBarangay: MUZON\r\nPermanentCity: SAN LUIS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4210\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 53\r\nZipCode: 4210\r\n	admin	BasicInformation	1
760342	2024-07-02	14:20:47.3771799	<Undetected>	Update	BasicInformationId: 3613\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3410\r\n	BasicInformationId: 3613\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3410\r\n	admin	Questionnaires	1
760343	2024-07-02	14:23:23.6720107	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: BAGONG POOK\r\nBarangay: BILOGO\r\nBasicInformationId: 3609\r\nBirthDate: July 01, 2024\r\nBirthPlace: \r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RINALYN.SORIANO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RINALYN\r\nFullName: RINALYN S. ZARASPE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 20047090980\r\nHDMF: 1210-2577-9322\r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: SORIANO\r\nMobileNumber: 09273533174\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: BAGONG POOK\r\nPermanentBarangay: BILOGO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050205119-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: 04-1978808-1\r\nStreetName: \r\nTIN: 260-570-088-0000\r\nWeight: 70\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: BAGONG POOK\r\nBarangay: BILOGO\r\nBasicInformationId: 3609\r\nBirthDate: July 06, 1988\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RINALYN.SORIANO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RINALYN\r\nFullName: RINALYN S. ZARASPE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 20047090980\r\nHDMF: 1210-2577-9322\r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: SORIANO\r\nMobileNumber: 09273533174\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: BAGONG POOK\r\nPermanentBarangay: BILOGO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050205119-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1978808-1\r\nStreetName: \r\nTIN: 260-570-088-0000\r\nWeight: 70\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760379	2024-07-02	14:24:26.0609196	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: MERCEDES HOME\r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 3606\r\nBirthDate: July 01, 2024\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: \r\nExtensionName: \r\nFirstName: MARIA JOSEFINA\r\nFullName: MARIA JOSEFINA M. LAGMAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 20028966510\r\nHDMF: 1490-0090-2901\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: LAGMAN\r\nMaidenName: \r\nMiddleName: MARANAN\r\nMobileNumber: 09178213626\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: MERCEDES HOME\r\nPermanentBarangay: SOROSORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: MERCEDES BOULEVARD\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050039547-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-0521383-2\r\nStreetName: MERCEDES BOULEVARD\r\nTIN: 136-310-653-0000\r\nWeight: 71\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: MERCEDES HOME\r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 3606\r\nBirthDate: January 08, 1961\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: \r\nExtensionName: \r\nFirstName: MARIA JOSEFINA\r\nFullName: MARIA JOSEFINA M. LAGMAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 20028966510\r\nHDMF: 1490-0090-2901\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: LAGMAN\r\nMaidenName: \r\nMiddleName: MARANAN\r\nMobileNumber: 09178213626\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: MERCEDES HOME\r\nPermanentBarangay: SOROSORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: MERCEDES BOULEVARD\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050039547-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: 04-0521383-2\r\nStreetName: MERCEDES BOULEVARD\r\nTIN: 136-310-653-0000\r\nWeight: 71\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760358	2024-07-02	14:23:56.7967877	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3614\r\nEmployeeTrainingId: 0\r\nFromDate: July 17, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: TRENDSTATIC\r\nStatus: \r\nToDate: July 18, 2020\r\nTrainingId: 15127\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760359	2024-07-02	14:23:56.8017878	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3614\r\nEmployeeTrainingId: 0\r\nFromDate: December 12, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- SCHOOL DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: December 13, 2019\r\nTrainingId: 15095\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760360	2024-07-02	14:23:56.8057878	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3614\r\nEmployeeTrainingId: 0\r\nFromDate: July 30, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- SCHOOL DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 31, 2019\r\nTrainingId: 15129\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760361	2024-07-02	14:23:56.8097879	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3614\r\nEmployeeTrainingId: 0\r\nFromDate: December 09, 2017\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: CRISTO REY INSTITUTE FOR CAREER DEVELOPMENT\r\nStatus: \r\nToDate: December 09, 2017\r\nTrainingId: 15130\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760362	2024-07-02	14:23:56.8137879	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3614\r\nCharacterReferenceId: 0\r\nCompanyAddress: SDO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 722-0715\r\nExtensionName: \r\nFirstName: MARIA JOSEFINA\r\nLastName: LAGMAN\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760363	2024-07-02	14:23:56.8177878	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3614\r\nCharacterReferenceId: 0\r\nCompanyAddress: COA- CITY GOVERNMENT OF BATANGAS\r\nCompanyName: \r\nContactNumber: 723-307\r\nExtensionName: \r\nFirstName: DOREMIDANTE\r\nLastName: CAY\r\nMiddleName: F\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760364	2024-07-02	14:23:56.8217876	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3614\r\nDateOfExamination: March 12, 2017\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: March 12, 2017\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 82.39%\r\nTitle: CAREER SERVICE PROFESSIONAL EXAMINATION\r\n	admin	Eligibilities	1
760365	2024-07-02	14:23:56.8257877	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3614\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: October 27, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 0.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-1\r\nStatus: Permanent\r\nToDate: July 02, 2024\r\n	admin	Experiences	1
760366	2024-07-02	14:23:56.8297878	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3614\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: December 03, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 0.00\r\nPositionHeld: ADMINISTRATIVE AIDE VI\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 06-1\r\nStatus: Permanent\r\nToDate: October 26, 2020\r\n	admin	Experiences	1
760367	2024-07-02	14:23:56.8337876	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3614\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: September 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 0.00\r\nPositionHeld: CONTRACT OF SERVICE (OFFICE CLERK)\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: November 30, 2018\r\n	admin	Experiences	1
760368	2024-07-02	14:23:56.8377876	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3614\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: November 13, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 0.00\r\nPositionHeld: JOB ORDER (OFFICE CLERK)\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: August 31, 2018\r\n	admin	Experiences	1
760369	2024-07-02	14:23:56.8417876	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3614\r\nCompanyInstitution: CITY GOVERNMENT OF BATANGAS\r\nExperienceId: 0\r\nFromDate: July 03, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 0.00\r\nPositionHeld: ADMINISTRATIVE AIDE III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: November 10, 2017\r\n	admin	Experiences	1
760370	2024-07-02	14:23:56.8457876	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3614\r\nSkillId: 0\r\nSkillName: MICROSOFT OFFICE- WORK & EXCEL \r\n	admin	Skills	1
760371	2024-07-02	14:23:56.8497878	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3614\r\nSkillId: 0\r\nSkillName: MICROSOFT OFFICE - WORD & EXCEL\r\n	admin	Skills	1
760376	2024-07-02	14:23:56.8707876	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3614\r\nRecognitionId: 0\r\nRecognitionName: 2023 FACILITATORS- FINANCIAL ADVANCEMENT SKILLS FOR SCHOOL ADMINISTRATORS AND FINANCE & ADMINISTRATIVE PERSONNEL\r\n	admin	Recognitions	1
760377	2024-07-02	14:23:56.8747878	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3614\r\nRecognitionId: 0\r\nRecognitionName: 2020 FACILITATORS- TECHNICAL ASSISTANCE CUM WEBINAR ON PREPARATION OF STATEMENT OF BANK RECONCILIATION, PROPER IMPLEMENTATION OF CHECKING\r\n	admin	Recognitions	1
760378	2024-07-02	14:23:56.8787877	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3614\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: RESIGNATION\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
760380	2024-07-02	14:31:38.5010345	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: NC III BOOKKEEPING\r\nLevel: Vocational\r\n	admin	Courses	1
760381	2024-07-02	14:51:18.3145684	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: VALEDICTORIAN\r\nBasicInformationId: 3613\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 2003\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: MUZON ELEMENTARY SCHOOL\r\nYearGraduated: 2003\r\n	admin	EducationalBackgrounds	1
760382	2024-07-02	14:51:18.3226092	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: WITH HONORS\r\nBasicInformationId: 3613\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: RIZAL COLLEGE OF TAAL\r\nYearGraduated: 2007\r\n	admin	EducationalBackgrounds	1
760383	2024-07-02	14:51:18.3266147	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3613\r\nCourse: \r\nCourseId: 1263\r\nCourseOrMajor: \r\nDateFrom: 2012\r\nDateTo: 2017\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Vocational Graduate\r\nMajor: \r\nSchoolorUniversity: TESDA\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
760384	2024-07-02	14:51:18.3306092	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3613\r\nCourse: \r\nCourseId: 1252\r\nCourseOrMajor: \r\nDateFrom: 2007\r\nDateTo: 2012\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: ACCOUNTING\r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 2012\r\n	admin	EducationalBackgrounds	1
760385	2024-07-02	14:51:18.3355686	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3613\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EMMA\r\nFullName: EMMA MARASIGAN MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760386	2024-07-02	14:51:18.3395726	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3613\r\nDateOfExamination: August 07, 2022\r\nDateOfRelease: October 10, 2022\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 07, 2022\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 206242\r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 83.4\r\nTitle: CAREER CIVIL SERVICE PROFESSIONAL \r\n	admin	Eligibilities	1
760387	2024-07-02	14:51:18.3445726	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3613\r\nCompanyInstitution: DEPARTMENT OF EDUCATION -SDO BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 06, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 21,211.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: July 02, 2024\r\n	admin	Experiences	1
760388	2024-07-02	14:51:18.3485727	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3613\r\nCompanyInstitution: ROSALINA IRINEO ,CPA ACCOUNTING OFFICE \r\nExperienceId: 0\r\nFromDate: June 01, 2014\r\nIsGovernmentService: False\r\nMonthlySalary: 19,000.00\r\nPositionHeld: SENIOR ACCOUNTING ASSOCIATE \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: May 30, 2023\r\n	admin	Experiences	1
760389	2024-07-02	14:51:18.3526142	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3613\r\nCompanyInstitution: ORIX METRO LEASING AND FINANCE CORP.\r\nExperienceId: 0\r\nFromDate: February 06, 2013\r\nIsGovernmentService: False\r\nMonthlySalary: 12,200.00\r\nPositionHeld: POOL SALES ADMIN\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: December 31, 2013\r\n	admin	Experiences	1
760399	2024-07-02	14:55:40.7652555	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3615\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: HILARION\r\nFullName: HILARION CABRAL RAMORIZ\r\nGender: Male\r\nLastName: RAMORIZ\r\nMaidenName: \r\nMiddleName: CABRAL\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
764023	2024-07-09	11:10:09.8152293	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3671\r\nOrganizationId: 0\r\nOrganizationName: ASSOCIATION OF LEARNING LEADERS\r\n	admin	Organizations	1
760390	2024-07-02	14:53:43.4499622	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: MERCEDES HOME\r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 3606\r\nBirthDate: January 08, 1961\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: \r\nExtensionName: \r\nFirstName: MARIA JOSEFINA\r\nFullName: MARIA JOSEFINA M. LAGMAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 20028966510\r\nHDMF: 1490-0090-2901\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: LAGMAN\r\nMaidenName: \r\nMiddleName: MARANAN\r\nMobileNumber: 09178213626\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: MERCEDES HOME\r\nPermanentBarangay: SOROSORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: MERCEDES BOULEVARD\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050039547-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: 04-0521383-2\r\nStreetName: MERCEDES BOULEVARD\r\nTIN: 136-310-653-0000\r\nWeight: 71\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: MERCEDES HOME\r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 3606\r\nBirthDate: January 08, 1961\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: \r\nExtensionName: \r\nFirstName: MARIA JOSEFINA\r\nFullName: MARIA JOSEFINA M. LAGMAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 20028966510\r\nHDMF: 1490-0090-2901\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: LAGMAN\r\nMaidenName: \r\nMiddleName: MARANAN\r\nMobileNumber: 09178213626\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: MERCEDES HOME\r\nPermanentBarangay: SOROSORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: MERCEDES BOULEVARD\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050039547-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-0521383-2\r\nStreetName: MERCEDES BOULEVARD\r\nTIN: 136-310-653-0000\r\nWeight: 71\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760391	2024-07-02	14:53:43.4559637	<Undetected>	Update	BasicInformationId: 3606\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SDO BATANGAS CITY\r\nExperienceId: 10062\r\nFromDate: May 25, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 52,847.00\r\nPositionHeld: ACCOUNTANT III \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-3\r\nStatus: Permanent\r\nToDate: May 25, 2015\r\n	BasicInformationId: 3606\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SDO BATANGAS CITY\r\nExperienceId: 10062\r\nFromDate: May 25, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 52,847.00\r\nPositionHeld: ACCOUNTANT III \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-3\r\nStatus: Permanent\r\nToDate: July 02, 2024\r\n	admin	Experiences	1
760392	2024-07-02	14:53:43.4629621	<Undetected>	Update	BasicInformationId: 3606\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SDO BATANGAS CITY\r\nExperienceId: 10063\r\nFromDate: May 14, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 0.00\r\nPositionHeld: ACCOUNTANT II \r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: May 14, 1999\r\n	BasicInformationId: 3606\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SDO BATANGAS CITY\r\nExperienceId: 10063\r\nFromDate: May 14, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 0.00\r\nPositionHeld: ACCOUNTANT II \r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: July 02, 2024\r\n	admin	Experiences	1
760393	2024-07-02	14:55:40.7484022	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK. 6 LOT 11\r\nAddress2: BLOOMFIELD HOMES\r\nBarangay: BALIMBING\r\nBasicInformationId: 0\r\nBirthDate: March 07, 1987\r\nBirthPlace: TINGLOY, BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: SAN PASCUAL\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rosal.dimaala@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROSAL\r\nFullName: ROSAL R. DIMAALA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DIMAALA\r\nMaidenName: \r\nMiddleName: RAMORIZ\r\nMobileNumber: 09157450085\r\nNationality: Filipino\r\nPermanentAddress1: BLK. 6 LOT 11\r\nPermanentAddress2: BLOOMFIELD HOMES\r\nPermanentBarangay: BALIMBING\r\nPermanentCity: SAN PASCUAL\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4204\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 74\r\nZipCode: 4204\r\n	admin	BasicInformation	1
760394	2024-07-02	14:55:40.7652555	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: 2ND HONORABLE MENTION\r\nBasicInformationId: 3615\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 2000\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: GAMAW ELEMENTARY SCHOOL\r\nYearGraduated: 2000\r\n	admin	EducationalBackgrounds	1
760395	2024-07-02	14:55:40.7652555	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3615\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2000\r\nDateTo: 2004\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: TINGLOY NATIONAL HIGH SCHOOL\r\nYearGraduated: 2004\r\n	admin	EducationalBackgrounds	1
760396	2024-07-02	14:55:40.7652555	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: DEAN'S LISTER\r\nBasicInformationId: 3615\r\nCourse: \r\nCourseId: 1252\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2010\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: BUSINESS MANAGEMENT\r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 2010\r\n	admin	EducationalBackgrounds	1
760397	2024-07-02	14:55:40.7652555	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: GOVERNMENT SCHOLAR\r\nBasicInformationId: 3615\r\nCourse: \r\nCourseId: 1253\r\nCourseOrMajor: \r\nDateFrom: 2019\r\nDateTo: 2022\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2022\r\n	admin	EducationalBackgrounds	1
760398	2024-07-02	14:55:40.7652555	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3615\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FROILAN\r\nFullName: FROILAN LUZON DIMAALA\r\nGender: Male\r\nLastName: DIMAALA\r\nMaidenName: \r\nMiddleName: LUZON\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
760400	2024-07-02	14:55:40.7662553	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3615\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ANATOLIA\r\nFullName: ANATOLIA DE CHAVEZ BACSA\r\nGender: Male\r\nLastName: BACSA\r\nMaidenName: \r\nMiddleName: DE CHAVEZ\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760401	2024-07-02	14:55:40.7662553	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3615\r\nDateOfExamination: August 17, 2017\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 17, 2017\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 81.64%\r\nTitle: CAREER SERVICE PROFESSIONAL \r\n	admin	Eligibilities	1
760402	2024-07-02	14:55:40.7662553	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3615\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: August 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: PROJECT DEVELOPMENT OFFICER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: July 02, 2024\r\n	admin	Experiences	1
760403	2024-07-02	14:55:40.7662553	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3615\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 21,388.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-2\r\nStatus: Permanent\r\nToDate: July 01, 2023\r\n	admin	Experiences	1
760404	2024-07-02	14:55:40.7662553	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3615\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: March 25, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 22,072.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-2\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
760405	2024-07-02	14:55:40.7662553	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3615\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 20,402.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-1\r\nStatus: Permanent\r\nToDate: March 24, 2022\r\n	admin	Experiences	1
760406	2024-07-02	14:55:40.7662553	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3615\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 19,593.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
760407	2024-07-02	14:55:40.7662553	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3615\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 18,784.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
760408	2024-07-02	14:55:40.7662553	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3615\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: March 25, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 17,975.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
760409	2024-07-02	14:55:40.7662553	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3615\r\nCompanyInstitution: AMA COMPUTER COLLEGE- BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: March 22, 2019\r\nIsGovernmentService: False\r\nMonthlySalary: 9,000.00\r\nPositionHeld: CASHIER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: October 27, 2021\r\n	admin	Experiences	1
760410	2024-07-02	14:55:40.7662553	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3615\r\nCompanyInstitution: KHORKALBA MARINE SERVICES\r\nExperienceId: 0\r\nFromDate: March 14, 2012\r\nIsGovernmentService: False\r\nMonthlySalary: 42,000.00\r\nPositionHeld: ACCOUNTS ASSISTANT GENERAL\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: December 21, 2016\r\n	admin	Experiences	1
760428	2024-07-02	15:10:15.3938144	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PRODUCTIVITY AND QUALITY IMPROVEMENT APPROACHES IN PUBLIC SECTOR WEBINAR SERIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760411	2024-07-02	14:55:40.7672550	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3615\r\nCompanyInstitution: MBC PAWNSHOP\r\nExperienceId: 0\r\nFromDate: January 08, 2011\r\nIsGovernmentService: False\r\nMonthlySalary: 8,000.00\r\nPositionHeld: ACCOUNTING STAFF\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Probationary\r\nToDate: February 28, 2012\r\n	admin	Experiences	1
760412	2024-07-02	14:55:40.7672550	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3615\r\nCompanyInstitution: STAFF ALLIANCE INC. - BDO UNIBANK\r\nExperienceId: 0\r\nFromDate: August 07, 2011\r\nIsGovernmentService: False\r\nMonthlySalary: 8,000.00\r\nPositionHeld: MARKETING STAFF\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: September 02, 2011\r\n	admin	Experiences	1
760413	2024-07-02	14:55:40.7672550	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3615\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
760414	2024-07-02	14:57:26.0506266	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING-WORKSHOP ON BASIC CUSTOMER SERVICE SKILLS FOR FRONTLINERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760415	2024-07-02	15:00:13.4906047	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3614\r\nEmployeeTrainingId: 0\r\nFromDate: December 27, 2018\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: December 28, 2018\r\nTrainingId: 15160\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760416	2024-07-02	15:00:13.4946047	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3614\r\nEmployeeTrainingId: 0\r\nFromDate: February 12, 2019\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: February 14, 2019\r\nTrainingId: 15160\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760417	2024-07-02	15:00:13.5046046	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 159B\r\nAddress2: \r\nBarangay: MARILAG\r\nBasicInformationId: 3614\r\nBirthDate: March 05, 1997\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: ROSARIO\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: \r\nExtensionName: \r\nFirstName: ERL JORDAN\r\nFullName: ERL JORDAN L. GONZALES\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005537573\r\nHDMF: 1212-3912-7141\r\nHeight: 1.7\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GONZALES\r\nMaidenName: \r\nMiddleName: LEUTERIO\r\nMobileNumber: 09352179359\r\nNationality: Filipino\r\nPermanentAddress1: 159B\r\nPermanentAddress2: \r\nPermanentBarangay: MARILAG\r\nPermanentCity: ROSARIO\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO MAHARLIKA\r\nPermanentZipCode: 4205\r\nPhilhealth: 09-251903053-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: SITIO MAHARLIKA\r\nTIN: 705-003-027-0000\r\nWeight: 70\r\nZipCode: 4205\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 159B\r\nAddress2: \r\nBarangay: MARILAG\r\nBasicInformationId: 3614\r\nBirthDate: March 05, 1997\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: ROSARIO\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: \r\nExtensionName: \r\nFirstName: ERL JORDAN\r\nFullName: ERL JORDAN L. GONZALES\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005537573\r\nHDMF: 1212-3912-7141\r\nHeight: 1.7\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GONZALES\r\nMaidenName: \r\nMiddleName: LEUTERIO\r\nMobileNumber: 0\r\nNationality: Filipino\r\nPermanentAddress1: 159B\r\nPermanentAddress2: \r\nPermanentBarangay: MARILAG\r\nPermanentCity: ROSARIO\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO MAHARLIKA\r\nPermanentZipCode: 4205\r\nPhilhealth: 09-251903053-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO MAHARLIKA\r\nTIN: 705-003-027-0000\r\nWeight: 70\r\nZipCode: 4205\r\n	admin	BasicInformation	1
760418	2024-07-02	15:00:13.5086047	<Undetected>	Update	BasicInformationId: 3614\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3300\r\nExtensionName: \r\nFirstName: ROSEO\r\nFullName: ROSEO FRIAS GONZALES\r\nGender: Male\r\nLastName: GONZALES\r\nMaidenName: \r\nMiddleName: FRIAS\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3614\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3300\r\nExtensionName: \r\nFirstName: ROSEO\r\nFullName: ROSEO GONZALES\r\nGender: Male\r\nLastName: GONZALES\r\nMaidenName: \r\nMiddleName: FRIAS\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760419	2024-07-02	15:00:13.5136046	<Undetected>	Update	BasicInformationId: 3614\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3301\r\nExtensionName: \r\nFirstName: LEABETH\r\nFullName: LEABETH BALITA LEUTERIO\r\nGender: Male\r\nLastName: LEUTERIO\r\nMaidenName: \r\nMiddleName: BALITA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3614\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3301\r\nExtensionName: \r\nFirstName: LEABETH\r\nFullName: LEABETH LEUTERIO\r\nGender: Male\r\nLastName: LEUTERIO\r\nMaidenName: \r\nMiddleName: BALITA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760420	2024-07-02	15:01:15.7213562	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INTERNATIONAL LEADERSHIP AND ORGANIZATIONAL BEHAVIOR\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760425	2024-07-02	15:05:08.2504335	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BRIGADA ESKWELA KICK-OFF CEREMONY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760427	2024-07-02	15:08:44.8935125	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PUBLIC SECTOR PRODUCTIVITY WEBINAR SERIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766964	2024-07-12	15:43:59.1862908	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3707\r\nSkillId: 0\r\nSkillName: COMMUNICATE WELL IN ORAL AND WRITTEN BOTH ENGLISH AND FILIPINO\r\n	admin	Skills	1
760421	2024-07-02	15:04:15.2576517	<Undetected>	Insert	BasicInformationId: \r\nCommunityServiceId: \r\nDateFrom: \r\nDateTo: \r\nNumberOfHours: \r\nOrganizationAddress: \r\nOrganizationName: \r\nStatus: \r\n	BasicInformationId: 3613\r\nCommunityServiceId: 0\r\nDateFrom: September 01, 2016\r\nDateTo: December 31, 2022\r\nNumberOfHours: 0\r\nOrganizationAddress: BATANGAS CITY\r\nOrganizationName: CONNECT CHURCH DISCIPLINING SERVANTLEADERS,INC.-BATANGAS CITY\r\nStatus: ACCOUNTING ASSOCIATE (VOLUNTEER)\r\n	admin	CommunityServices	1
760422	2024-07-02	15:04:15.2616516	<Undetected>	Insert	BasicInformationId: \r\nCommunityServiceId: \r\nDateFrom: \r\nDateTo: \r\nNumberOfHours: \r\nOrganizationAddress: \r\nOrganizationName: \r\nStatus: \r\n	BasicInformationId: 3613\r\nCommunityServiceId: 0\r\nDateFrom: September 01, 2012\r\nDateTo: June 30, 2014\r\nNumberOfHours: 0\r\nOrganizationAddress: BATANGAS CITY\r\nOrganizationName: COMMON GROUND PHILS.INC\r\nStatus: BOARD OF TRUSTEES (AUDITOR)\r\n	admin	CommunityServices	1
760423	2024-07-02	15:04:15.2656519	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3613\r\nCompanyInstitution: ROSALINA IRINEO, CPA ACCOUNTING OFFICE \r\nExperienceId: 0\r\nFromDate: May 01, 2012\r\nIsGovernmentService: False\r\nMonthlySalary: 7,500.00\r\nPositionHeld: ACCOUNTING ASSOCIATE\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: January 31, 2013\r\n	admin	Experiences	1
760424	2024-07-02	15:04:15.2726989	<Undetected>	Update	BasicInformationId: 3613\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3302\r\nExtensionName: \r\nFirstName: EMMA\r\nFullName: EMMA MARASIGAN MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3613\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3302\r\nExtensionName: \r\nFirstName: EMMA\r\nFullName: EMMA MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760426	2024-07-02	15:08:38.1435953	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SEMINAR WORKSHOP ON THE PREPARATION AND CONSOLIDATION OF CY 2023 YEAR END REPORTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760429	2024-07-02	15:12:09.7013680	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: VAW FREE SDO AND GENDER- FAIR LANGUAGE ADVOCACY IN THE WORKPLACE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760431	2024-07-02	15:15:53.1342348	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION QUALITY MANAGEMENT SYSTEM (DQMS JOURNEY TOWARDS ONE DEPED ONE QMS CERTIFICATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760432	2024-07-02	15:17:36.7658183	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAIN LAW SEMINAR\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760433	2024-07-02	15:20:36.5013115	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TAXPAYER SEGMENTATION FORUM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760434	2024-07-02	15:22:12.5655983	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BOOKKEEPING TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760462	2024-07-02	15:42:05.5562442	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3613\r\nRecognitionId: 0\r\nRecognitionName: MERITORIOUS PERFORMANCE AWARDS\r\n	admin	Recognitions	1
760463	2024-07-02	15:42:05.5612441	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3613\r\nRecognitionId: 0\r\nRecognitionName: DEALT ( DEDICATED EMPLOYEES WITHOUT ABSENCES, LEAVES AND TARDINESS) AWARDEE FOR THE MONTH OF SEPTEMBER 2023 \r\n	admin	Recognitions	1
760464	2024-07-02	15:42:05.5652450	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3613\r\nRecognitionId: 0\r\nRecognitionName: TIME MARCHES ON YOUR HEART -POLYTECHNIC UNIVERSITY OF THE PHILIPPINES (RESOURCE SPEAKER IN CHARACTER DEVELOPMENT SEMINAR)\r\n	admin	Recognitions	1
760465	2024-07-02	15:42:05.5702478	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3613\r\nRecognitionId: 0\r\nRecognitionName: SIX (6)  YEARSC OF EXCEPTIONAL VOLUNTARY SERVICE TO CONNECT CHURCH DSL, INC. AS CORPORATE ACCOUNTING ASSOCIATE \r\n	admin	Recognitions	1
760466	2024-07-02	15:42:05.5742478	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3613\r\nRecognitionId: 0\r\nRecognitionName: SIX (6)  YEARSC OF EXCEPTIONAL VOLUNTARY SERVICE TO CONNECT CHURCH DSL, INC. AS CORPORATE ACCOUNTING ASSOCIATE \r\n	admin	Recognitions	1
760467	2024-07-02	15:42:05.5782478	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3613\r\nEmployeeTrainingId: 0\r\nFromDate: January 16, 2024\r\nHours: 36\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED REGIONAL OFFICE\r\nStatus: \r\nToDate: January 18, 2024\r\nTrainingId: 15118\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760468	2024-07-02	15:42:05.5827546	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3613\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760469	2024-07-02	15:42:05.5867543	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3613\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15045\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760430	2024-07-02	15:12:52.2577022	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SUCCESSFUL CAREER DEVELOPMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760435	2024-07-02	15:25:15.8060999	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3615\r\nSkillId: 0\r\nSkillName: MICROSOFT OFFICE- WORD, EXCEL AND POWERPOINT\r\n	admin	Skills	1
760436	2024-07-02	15:25:15.8100998	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3615\r\nSkillId: 0\r\nSkillName: ENHANCED FINANCIAL REPORTING SYSTEM (eFRS)\r\n	admin	Skills	1
760437	2024-07-02	15:25:15.8140998	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3615\r\nRecognitionId: 0\r\nRecognitionName: 2023- RESOURCE SPEAKER- DIVISION LEVEL AND SCHOOL LEVEL \r\n	admin	Recognitions	1
760438	2024-07-02	15:25:15.8180998	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3615\r\nRecognitionId: 0\r\nRecognitionName: 2022- RESOURCE SPEAKER- DIVISION LEVEL AND SCHOOL LEVEL\r\n	admin	Recognitions	1
760439	2024-07-02	15:25:15.8230999	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3615\r\nRecognitionId: 0\r\nRecognitionName: 2021- CO-CHAIRMAN- DIVISION ROLL-OUT OF DEPED ORDER NO.029 S. 2019 RE: PROCEDURAL GUIDELINES ON THE MANAGEMENT OF CASH ADVANCES \r\n	admin	Recognitions	1
760440	2024-07-02	15:25:15.8270999	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3615\r\nRecognitionId: 0\r\nRecognitionName: 2020- FACILITATOR- TECHNICAL ASSISTANCE CUM WEBINAR ON PREPARATION OF STATEMENT OF BANK RECONCILIATION\r\n	admin	Recognitions	1
760441	2024-07-02	15:25:15.8310998	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3615\r\nRecognitionId: 0\r\nRecognitionName: 2019- CAPACITY BUILDING FOR SCHOOL HEADS AND FINANCIAL STAFF ON THE PROPER UTILIZATION OF MOOE FUNDS\r\n	admin	Recognitions	1
760442	2024-07-02	15:25:15.8350998	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3615\r\nEmployeeTrainingId: 0\r\nFromDate: October 26, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: UNIVERSITA COMMERICIALE LUIGI BOCCONIVIALE BLIGNY MILAN, ITALY\r\nStatus: \r\nToDate: October 27, 2023\r\nTrainingId: 15161\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760443	2024-07-02	15:25:15.8390999	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3615\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15113\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760444	2024-07-02	15:25:15.8430998	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3615\r\nEmployeeTrainingId: 0\r\nFromDate: November 08, 2023\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 08, 2023\r\nTrainingId: 15162\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760445	2024-07-02	15:25:15.8470998	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3615\r\nEmployeeTrainingId: 0\r\nFromDate: May 15, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: May 17, 2023\r\nTrainingId: 15046\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760446	2024-07-02	15:25:15.8510998	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3615\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760447	2024-07-02	15:25:15.8560998	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3615\r\nEmployeeTrainingId: 0\r\nFromDate: February 20, 2023\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: February 20, 2023\r\nTrainingId: 15114\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760448	2024-07-02	15:25:15.8600998	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3615\r\nEmployeeTrainingId: 0\r\nFromDate: August 17, 2021\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 19, 2021\r\nTrainingId: 15054\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760449	2024-07-02	15:25:15.8640997	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3615\r\nEmployeeTrainingId: 0\r\nFromDate: November 23, 2020\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEVELOPMENT ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 25, 2020\r\nTrainingId: 15164\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760450	2024-07-02	15:25:15.8680997	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3615\r\nEmployeeTrainingId: 0\r\nFromDate: October 21, 2020\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: October 23, 2020\r\nTrainingId: 15165\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760451	2024-07-02	15:25:15.8730999	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3615\r\nEmployeeTrainingId: 0\r\nFromDate: September 03, 2020\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS INC.\r\nStatus: \r\nToDate: September 05, 2020\r\nTrainingId: 15120\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760452	2024-07-02	15:25:15.8770997	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3615\r\nEmployeeTrainingId: 0\r\nFromDate: July 18, 2020\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: KENNESAW STATE UNIVERSITY- UNIVERSITY SYSTEM GEORGIA- GEORGIA, USA\r\nStatus: \r\nToDate: July 19, 2020\r\nTrainingId: 15167\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760453	2024-07-02	15:25:15.8800997	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3615\r\nCharacterReferenceId: 0\r\nCompanyAddress: BILOGO, BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09182398826\r\nExtensionName: \r\nFirstName: RINALYN\r\nLastName: ZARASPE\r\nMiddleName: S\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760454	2024-07-02	15:25:15.8850998	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3615\r\nCharacterReferenceId: 0\r\nCompanyAddress: STA. RITA KARSADA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09167153738\r\nExtensionName: \r\nFirstName: SHIELA\r\nLastName: COMIA\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760455	2024-07-02	15:25:15.8890997	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLK. 6 LOT 11\r\nAddress2: BLOOMFIELD HOMES\r\nBarangay: BALIMBING\r\nBasicInformationId: 3615\r\nBirthDate: March 07, 1987\r\nBirthPlace: TINGLOY, BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: SAN PASCUAL\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rosal.dimaala@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROSAL\r\nFullName: ROSAL R. DIMAALA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DIMAALA\r\nMaidenName: \r\nMiddleName: RAMORIZ\r\nMobileNumber: 09157450085\r\nNationality: Filipino\r\nPermanentAddress1: BLK. 6 LOT 11\r\nPermanentAddress2: BLOOMFIELD HOMES\r\nPermanentBarangay: BALIMBING\r\nPermanentCity: SAN PASCUAL\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4204\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 74\r\nZipCode: 4204\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK. 6 LOT 11\r\nAddress2: BLOOMFIELD HOMES\r\nBarangay: BALIMBING\r\nBasicInformationId: 3615\r\nBirthDate: March 07, 1987\r\nBirthPlace: TINGLOY, BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: SAN PASCUAL\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rosal.dimaala@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROSAL\r\nFullName: ROSAL R. DIMAALA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005572546\r\nHDMF: 1210-2391-8732\r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DIMAALA\r\nMaidenName: \r\nMiddleName: RAMORIZ\r\nMobileNumber: 09157450085\r\nNationality: Filipino\r\nPermanentAddress1: BLK. 6 LOT 11\r\nPermanentAddress2: BLOOMFIELD HOMES\r\nPermanentBarangay: BALIMBING\r\nPermanentCity: SAN PASCUAL\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4204\r\nPhilhealth: 01-051197583-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: 04-2335364-8\r\nStreetName: \r\nTIN: 498-482-854-0000\r\nWeight: 74\r\nZipCode: 4204\r\n	admin	BasicInformation	1
760456	2024-07-02	15:25:15.8940998	<Undetected>	Update	BasicInformationId: 3615\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3303\r\nExtensionName: \r\nFirstName: FROILAN\r\nFullName: FROILAN LUZON DIMAALA\r\nGender: Male\r\nLastName: DIMAALA\r\nMaidenName: \r\nMiddleName: LUZON\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3615\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3303\r\nExtensionName: \r\nFirstName: FROILAN\r\nFullName: FROILAN DIMAALA\r\nGender: Male\r\nLastName: DIMAALA\r\nMaidenName: \r\nMiddleName: LUZON\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
760457	2024-07-02	15:25:15.8980997	<Undetected>	Update	BasicInformationId: 3615\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3304\r\nExtensionName: \r\nFirstName: HILARION\r\nFullName: HILARION CABRAL RAMORIZ\r\nGender: Male\r\nLastName: RAMORIZ\r\nMaidenName: \r\nMiddleName: CABRAL\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3615\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3304\r\nExtensionName: \r\nFirstName: HILARION\r\nFullName: HILARION RAMORIZ\r\nGender: Male\r\nLastName: RAMORIZ\r\nMaidenName: \r\nMiddleName: CABRAL\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760458	2024-07-02	15:25:15.9020997	<Undetected>	Update	BasicInformationId: 3615\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3305\r\nExtensionName: \r\nFirstName: ANATOLIA\r\nFullName: ANATOLIA DE CHAVEZ BACSA\r\nGender: Male\r\nLastName: BACSA\r\nMaidenName: \r\nMiddleName: DE CHAVEZ\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3615\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3305\r\nExtensionName: \r\nFirstName: ANATOLIA\r\nFullName: ANATOLIA BACSA\r\nGender: Male\r\nLastName: BACSA\r\nMaidenName: \r\nMiddleName: DE CHAVEZ\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760459	2024-07-02	15:25:15.9060997	<Undetected>	Update	BasicInformationId: 3615\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3412\r\n	BasicInformationId: 3615\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: RESIGNATION\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3412\r\n	admin	Questionnaires	1
760460	2024-07-02	15:34:15.5424450	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: COBOL\r\nLevel: Vocational\r\n	admin	Courses	1
760461	2024-07-02	15:35:27.9824303	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF SCIENCE IN MANAGEMENT\r\nLevel: College\r\n	admin	Courses	1
760481	2024-07-02	15:47:46.0419917	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TEACHERS CONGRESS: BASIC ACTION RESEARCH PROJECT FOR CONTINUOUS IMPROVEMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760482	2024-07-02	15:49:38.5439644	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION IN RECRUITMENT, SELECTION AND APPOINTMENT (RSA) GUIDELINES IN THE DEPARTMENT OF EDUCATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760483	2024-07-02	15:52:33.2544353	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PROVISION OF TECHNICAL ASSISTANCE ON PLANNING AND MANAGING RESOURCES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760484	2024-07-02	15:54:19.0477468	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPABILITY BUILDING ON CAREER DEVELOPMENT AND SUCCESSION MANAGEMENT CUM FINANCILA LITERACY MANAGEMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760470	2024-07-02	15:42:05.5917551	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3613\r\nEmployeeTrainingId: 0\r\nFromDate: February 22, 2018\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BUREAU OF INTERNAL REVENUE\r\nStatus: \r\nToDate: February 22, 2018\r\nTrainingId: 15169\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760471	2024-07-02	15:42:05.5957550	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3613\r\nEmployeeTrainingId: 0\r\nFromDate: November 07, 2017\r\nHours: 6\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BUREAU OF INTERNAL REVENEU\r\nStatus: \r\nToDate: November 07, 2017\r\nTrainingId: 15170\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760472	2024-07-02	15:42:05.6018003	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3613\r\nEmployeeTrainingId: 0\r\nFromDate: January 28, 2012\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: ST. JAMES VOCATIONAL AND TRAINING SCHOOL \r\nStatus: \r\nToDate: January 28, 2018\r\nTrainingId: 15171\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760473	2024-07-02	15:42:05.6078052	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3613\r\nCharacterReferenceId: 0\r\nCompanyAddress: 453 BALAGTAS, BATANGAS \r\nCompanyName: \r\nContactNumber: 09293553160\r\nExtensionName: \r\nFirstName: KENNETH \r\nLastName: PANGANIBAN\r\nMiddleName: G\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760474	2024-07-02	15:42:05.6137555	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3613\r\nCharacterReferenceId: 0\r\nCompanyAddress: ROSARIO, BATANGAS\r\nCompanyName: \r\nContactNumber: 09165527713\r\nExtensionName: CPA\r\nFirstName: RHEA\r\nLastName: MORALES\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760475	2024-07-02	15:42:05.6207536	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3613\r\nCharacterReferenceId: 0\r\nCompanyAddress: ALANGILAN,BATANGAS\r\nCompanyName: \r\nContactNumber: 09178572603\r\nExtensionName: CPA\r\nFirstName: ROSALINA \r\nLastName: IRINEO \r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760476	2024-07-02	15:42:05.6267537	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 172\r\nAddress2: \r\nBarangay: MUZON\r\nBasicInformationId: 3613\r\nBirthDate: November 11, 1990\r\nBirthPlace: SAN LUIS,BATANGAS\r\nBloodType: B\r\nCitizenshipType: \r\nCity: SAN LUIS\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RAYOSLEEZETTE@GMAIL.COM\r\nExtensionName: \r\nFirstName: LEEZETTE\r\nFullName: LEEZETTE M. RAYOS\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09996957877\r\nNationality: Filipino\r\nPermanentAddress1: 172\r\nPermanentAddress2: \r\nPermanentBarangay: MUZON\r\nPermanentCity: SAN LUIS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4210\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 53\r\nZipCode: 4210\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 172\r\nAddress2: \r\nBarangay: MUZON\r\nBasicInformationId: 3613\r\nBirthDate: November 11, 1990\r\nBirthPlace: SAN LUIS,BATANGAS\r\nBloodType: B\r\nCitizenshipType: \r\nCity: SAN LUIS\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RAYOSLEEZETTE@GMAIL.COM\r\nExtensionName: \r\nFirstName: LEEZETTE\r\nFullName: LEEZETTE M. RAYOS\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 20063343730\r\nHDMF: 1210-7973-2501\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09996957877\r\nNationality: Filipino\r\nPermanentAddress1: 172\r\nPermanentAddress2: \r\nPermanentBarangay: MUZON\r\nPermanentCity: SAN LUIS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4210\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 53\r\nZipCode: 4210\r\n	admin	BasicInformation	1
760477	2024-07-02	15:42:05.6317541	<Undetected>	Update	BasicInformationId: 3613\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3410\r\n	BasicInformationId: 3613\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: \r\nQ37a: RESIGNATION\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3410\r\n	admin	Questionnaires	1
760478	2024-07-02	15:43:44.3527678	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: MERCEDES HOME\r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 3606\r\nBirthDate: January 08, 1961\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: \r\nExtensionName: \r\nFirstName: MARIA JOSEFINA\r\nFullName: MARIA JOSEFINA M. LAGMAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 20028966510\r\nHDMF: 1490-0090-2901\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: LAGMAN\r\nMaidenName: \r\nMiddleName: MARANAN\r\nMobileNumber: 09178213626\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: MERCEDES HOME\r\nPermanentBarangay: SOROSORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: MERCEDES BOULEVARD\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050039547-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-0521383-2\r\nStreetName: MERCEDES BOULEVARD\r\nTIN: 136-310-653-0000\r\nWeight: 71\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: MERCEDES HOME\r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 3606\r\nBirthDate: January 08, 1961\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: \r\nExtensionName: \r\nFirstName: MARIA JOSEFINA\r\nFullName: MARIA JOSEFINA M. LAGMAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02002896651\r\nHDMF: 1490-0090-2901\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: LAGMAN\r\nMaidenName: \r\nMiddleName: MARANAN\r\nMobileNumber: 09178213626\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: MERCEDES HOME\r\nPermanentBarangay: SOROSORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: MERCEDES BOULEVARD\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050039547-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-0521383-2\r\nStreetName: MERCEDES BOULEVARD\r\nTIN: 136-310-653-0000\r\nWeight: 71\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760485	2024-07-02	15:56:00.1018785	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2ND NATIONAL CONFERENCE OF PERSONNEL IN THE ADMINISTRATIVE SERVICE (NCPAS) OF DEPED\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760486	2024-07-02	15:58:12.9188798	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: THE ROLE OF MANAGEMENT AND DEPED NEU IN THE CONDUCT OF RESPONSIBLE PUBLIC SECTOR UNIONISM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760479	2024-07-02	15:44:16.6818089	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: BAGONG POOK\r\nBarangay: BILOGO\r\nBasicInformationId: 3609\r\nBirthDate: July 06, 1988\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RINALYN.SORIANO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RINALYN\r\nFullName: RINALYN S. ZARASPE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 20047090980\r\nHDMF: 1210-2577-9322\r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: SORIANO\r\nMobileNumber: 09273533174\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: BAGONG POOK\r\nPermanentBarangay: BILOGO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050205119-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1978808-1\r\nStreetName: \r\nTIN: 260-570-088-0000\r\nWeight: 70\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: BAGONG POOK\r\nBarangay: BILOGO\r\nBasicInformationId: 3609\r\nBirthDate: July 06, 1988\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RINALYN.SORIANO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RINALYN\r\nFullName: RINALYN S. ZARASPE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02004709098\r\nHDMF: 1210-2577-9322\r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: SORIANO\r\nMobileNumber: 09273533174\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: BAGONG POOK\r\nPermanentBarangay: BILOGO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050205119-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1978808-1\r\nStreetName: \r\nTIN: 260-570-088-0000\r\nWeight: 70\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760480	2024-07-02	15:46:45.0737116	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 172\r\nAddress2: \r\nBarangay: MUZON\r\nBasicInformationId: 3613\r\nBirthDate: November 11, 1990\r\nBirthPlace: SAN LUIS,BATANGAS\r\nBloodType: B\r\nCitizenshipType: \r\nCity: SAN LUIS\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RAYOSLEEZETTE@GMAIL.COM\r\nExtensionName: \r\nFirstName: LEEZETTE\r\nFullName: LEEZETTE M. RAYOS\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 20063343730\r\nHDMF: 1210-7973-2501\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09996957877\r\nNationality: Filipino\r\nPermanentAddress1: 172\r\nPermanentAddress2: \r\nPermanentBarangay: MUZON\r\nPermanentCity: SAN LUIS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4210\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 53\r\nZipCode: 4210\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 172\r\nAddress2: \r\nBarangay: MUZON\r\nBasicInformationId: 3613\r\nBirthDate: November 11, 1990\r\nBirthPlace: SAN LUIS,BATANGAS\r\nBloodType: B\r\nCitizenshipType: \r\nCity: SAN LUIS\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RAYOSLEEZETTE@GMAIL.COM\r\nExtensionName: \r\nFirstName: LEEZETTE\r\nFullName: LEEZETTE M. RAYOS\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006334373\r\nHDMF: 1210-7973-2501\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09996957877\r\nNationality: Filipino\r\nPermanentAddress1: 172\r\nPermanentAddress2: \r\nPermanentBarangay: MUZON\r\nPermanentCity: SAN LUIS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4210\r\nPhilhealth: 01-051625321-0\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-2569126-9\r\nStreetName: \r\nTIN: 426-627-242-0000\r\nWeight: 53\r\nZipCode: 4210\r\n	admin	BasicInformation	1
760487	2024-07-02	16:04:53.6291832	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: VAW FREE SDO AND GENDER - FAIR LANGUAGE ADVOCACY IN THE WORKPLACE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760488	2024-07-02	16:05:52.8763784	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: KUMINTANG IBABA\r\nBasicInformationId: 0\r\nBirthDate: June 06, 1966\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lsmaligalig@yahoo.com\r\nExtensionName: \r\nFirstName: LUIS\r\nFullName: LUIS P. MALIGALIG\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.75\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MALIGALIG\r\nMaidenName: \r\nMiddleName: PEREZ\r\nMobileNumber: 09494419567\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: KUMINTANG IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 84\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760489	2024-07-02	16:05:53.1011148	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3616\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1972\r\nDateTo: 1979\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS CITY EAST ELEMENTARY SCHOOL\r\nYearGraduated: 1979\r\n	admin	EducationalBackgrounds	1
760490	2024-07-02	16:05:53.1061149	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3616\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1980\r\nDateTo: 1984\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES \r\nYearGraduated: 1984\r\n	admin	EducationalBackgrounds	1
760491	2024-07-02	16:05:53.1101148	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3616\r\nCourse: \r\nCourseId: 1264\r\nCourseOrMajor: \r\nDateFrom: 1985\r\nDateTo: 1985\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Vocational Graduate\r\nMajor: \r\nSchoolorUniversity: COMPUTER INFORMATION SERVICES CENTER\r\nYearGraduated: 1985\r\n	admin	EducationalBackgrounds	1
760492	2024-07-02	16:05:53.1141148	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3616\r\nCourse: \r\nCourseId: 1265\r\nCourseOrMajor: \r\nDateFrom: 1985\r\nDateTo: 1989\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: LYCEUM OF THE PHILIPPINES UNIVERSITY BATANGAS\r\nYearGraduated: 1989\r\n	admin	EducationalBackgrounds	1
760493	2024-07-02	16:05:53.1181148	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3616\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARIBEL\r\nFullName: MARIBEL DELA PEÑA MALIGALIG\r\nGender: Male\r\nLastName: MALIGALIG\r\nMaidenName: \r\nMiddleName: DELA PEÑA\r\nOccupation: \r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
760494	2024-07-02	16:05:53.1221149	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3616\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LORENZO\r\nFullName: LORENZO MAZA MALIGALIG\r\nGender: Male\r\nLastName: MALIGALIG\r\nMaidenName: \r\nMiddleName: MAZA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760495	2024-07-02	16:05:53.1261148	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3616\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LUISA\r\nFullName: LUISA FRAGO PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: FRAGO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760496	2024-07-02	16:05:53.1301150	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3616\r\nBirthDate: December 29, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: KIM CAROL\r\nFullName: KIM CAROL D MALIGALIG\r\nGender: Male\r\nLastName: MALIGALIG\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760497	2024-07-02	16:05:53.1341148	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3616\r\nBirthDate: August 13, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: KRISTINE\r\nFullName: KRISTINE D MALIGALIG\r\nGender: Male\r\nLastName: MALIGALIG\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760498	2024-07-02	16:05:53.1391149	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3616\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760499	2024-07-02	16:05:53.1431149	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3616\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15113\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760500	2024-07-02	16:05:53.1481148	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3616\r\nEmployeeTrainingId: 0\r\nFromDate: August 02, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: August 02, 2023\r\nTrainingId: 15143\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760501	2024-07-02	16:05:53.1511148	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3616\r\nEmployeeTrainingId: 0\r\nFromDate: May 10, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: May 11, 2023\r\nTrainingId: 15173\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760502	2024-07-02	16:05:53.1561148	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3616\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760503	2024-07-02	16:05:53.1601147	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3616\r\nEmployeeTrainingId: 0\r\nFromDate: February 20, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: February 20, 2023\r\nTrainingId: 15114\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760504	2024-07-02	16:05:53.1641148	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3616\r\nEmployeeTrainingId: 0\r\nFromDate: September 07, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: September 07, 2022\r\nTrainingId: 15174\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760505	2024-07-02	16:05:53.1681148	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3616\r\nEmployeeTrainingId: 0\r\nFromDate: December 12, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: December 13, 2019\r\nTrainingId: 15060\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760506	2024-07-02	16:05:53.1721149	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3616\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15176\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760507	2024-07-02	16:05:53.1771148	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3616\r\nEmployeeTrainingId: 0\r\nFromDate: July 23, 2023\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: July 25, 2023\r\nTrainingId: 15177\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760508	2024-07-02	16:05:53.1811147	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3616\r\nDateOfExamination: October 17, 1993\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: October 17, 1993\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS NATIONAL HIGH SCHOOL\r\nRating: 80.5%\r\nTitle: CAREER SERVICE PROFESSIONAL\r\n	admin	Eligibilities	1
760509	2024-07-02	16:05:53.1851147	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3616\r\nCompanyInstitution: SDO BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: May 25, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 18,907.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 07-2\r\nStatus: Permanent\r\nToDate: July 02, 2024\r\n	admin	Experiences	1
760510	2024-07-02	16:05:53.1891147	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3616\r\nCompanyInstitution: SDO BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: March 01, 2004\r\nIsGovernmentService: True\r\nMonthlySalary: 11,635.00\r\nPositionHeld: ADMINISTRATIVE AIDE IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 06-4\r\nStatus: Permanent\r\nToDate: May 24, 2015\r\n	admin	Experiences	1
760511	2024-07-02	16:05:53.1931148	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3616\r\nCompanyInstitution: SDO BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 13, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 6,582.00\r\nPositionHeld: CLERK II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: February 29, 2004\r\n	admin	Experiences	1
761860	2024-07-05	08:59:15.0718798	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3642\r\nRecognitionId: 0\r\nRecognitionName: INFORMATION COMMUNICATION TECHNOLOGY SUPPORT\r\n	admin	Recognitions	1
760512	2024-07-02	16:05:53.1971148	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3616\r\nCompanyInstitution: SDO BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 04, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 5,751.00\r\nPositionHeld: CLERK I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: June 12, 2001\r\n	admin	Experiences	1
760513	2024-07-02	16:05:53.2011147	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3616\r\nCompanyInstitution: SDO BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: April 01, 1987\r\nIsGovernmentService: True\r\nMonthlySalary: 2,000.00\r\nPositionHeld: UTILITY WORKER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: July 03, 1994\r\n	admin	Experiences	1
760514	2024-07-02	16:05:53.2051148	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3616\r\nCompanyInstitution: SDO BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: October 20, 1986\r\nIsGovernmentService: True\r\nMonthlySalary: 489.72\r\nPositionHeld: LABORER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: March 03, 1987\r\n	admin	Experiences	1
760515	2024-07-02	16:05:53.2101148	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3616\r\nSkillId: 0\r\nSkillName: TEAM PLAYER\r\n	admin	Skills	1
760516	2024-07-02	16:05:53.2141148	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3616\r\nSkillId: 0\r\nSkillName: HARDWORKING\r\n	admin	Skills	1
760517	2024-07-02	16:05:53.2181147	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3616\r\nSkillId: 0\r\nSkillName: DETAIL-ORIENTED\r\n	admin	Skills	1
760518	2024-07-02	16:05:53.2221148	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3616\r\nSkillId: 0\r\nSkillName: RECORDS MANAGEMENT\r\n	admin	Skills	1
760519	2024-07-02	16:05:53.2261149	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3616\r\nSkillId: 0\r\nSkillName: WRITTEN AND ORAL COMMUNICATION\r\n	admin	Skills	1
760520	2024-07-02	16:05:53.2301147	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3616\r\nSkillId: 0\r\nSkillName: DRIVING\r\n	admin	Skills	1
760521	2024-07-02	16:05:53.2341147	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3616\r\nRecognitionId: 0\r\nRecognitionName: GAWAD KAWANI: CUSTOMER-FRIENDLY PUBLIC SERVANT (2023)\r\n	admin	Recognitions	1
760522	2024-07-02	16:05:53.2391147	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3616\r\nRecognitionId: 0\r\nRecognitionName: CERTIFICATE OF RECOGNITION: FOR COMMITTMENT, DELIGENT WORK, PROMPTNESS TO ADDRESS SERVICE WITH FLEXIBILITY AND RESPONSIBILITY (2023)\r\n	admin	Recognitions	1
760523	2024-07-02	16:05:53.2431148	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3616\r\nRecognitionId: 0\r\nRecognitionName: CERTIFICATE OF RECOGNITION: INVALUABLE SERVICE RENDERED AS FINANCE OFFICER/PROCUREMENT OF MEALS (2023)\r\n	admin	Recognitions	1
760524	2024-07-02	16:05:53.2471146	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3616\r\nRecognitionId: 0\r\nRecognitionName: CERTIFICATE OF RECOGNITION: INVALUABLE SERVICE RENDERED AS TWG MEMBER - FOOD PROCUREMENT 2022\r\n	admin	Recognitions	1
760525	2024-07-02	16:05:53.2511146	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3616\r\nRecognitionId: 0\r\nRecognitionName: CERTIFICATE OF RECOGNITION: INVALUABLE SERVICE RENDERED AS CO-CHAIRPERSON - PROCUREMENT (2022)\r\n	admin	Recognitions	1
760526	2024-07-02	16:05:53.2551146	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3616\r\nRecognitionId: 0\r\nRecognitionName: CERTIFICATE OF RECOGNITION: EXEMPLARY PERFORMANCE AS SDO PERSONNEL (2019)\r\n	admin	Recognitions	1
760527	2024-07-02	16:05:53.2591148	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3616\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
760528	2024-07-02	16:10:21.9806344	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: COUNCIL STAFF TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760529	2024-07-02	16:12:42.1508548	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3616\r\nOrganizationId: 0\r\nOrganizationName: NATIONAL EMPLOYEES UNION OF SDO BATANGAS CITY- VICE PRESIDENT\r\n	admin	Organizations	1
760530	2024-07-02	16:12:42.1548547	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3616\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09567282707\r\nExtensionName: \r\nFirstName: VILMA\r\nLastName: MIGUEL\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760531	2024-07-02	16:12:42.1608548	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3616\r\nCharacterReferenceId: 0\r\nCompanyAddress: PADRE GARCIA\r\nCompanyName: \r\nContactNumber: 09778341123\r\nExtensionName: \r\nFirstName: RIZALDY\r\nLastName: BOLAÑOS\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760532	2024-07-02	16:12:42.1648546	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3616\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09178247370\r\nExtensionName: \r\nFirstName: ARMANDO\r\nLastName: FARAL\r\nMiddleName: V\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761571	2024-07-04	15:19:33.6713867	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3639\r\nRecognitionId: 0\r\nRecognitionName: RESOURCE SPEAKER- CAPACITY BUILDING: PROMOTING TRANSPARENCY, ACCOUNTABILITY AND OPTIMIZED USE OF SCHOOL RESOURCES- AUGUST 17-18,2021\r\n	admin	Recognitions	1
760533	2024-07-02	16:12:42.1708548	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: KUMINTANG IBABA\r\nBasicInformationId: 3616\r\nBirthDate: June 06, 1966\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lsmaligalig@yahoo.com\r\nExtensionName: \r\nFirstName: LUIS\r\nFullName: LUIS P. MALIGALIG\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.75\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MALIGALIG\r\nMaidenName: \r\nMiddleName: PEREZ\r\nMobileNumber: 09494419567\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: KUMINTANG IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 84\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: KUMINTANG IBABA\r\nBasicInformationId: 3616\r\nBirthDate: June 06, 1966\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lsmaligalig@yahoo.com\r\nExtensionName: \r\nFirstName: LUIS\r\nFullName: LUIS P. MALIGALIG\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 66060600172\r\nHDMF: \r\nHeight: 1.75\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MALIGALIG\r\nMaidenName: \r\nMiddleName: PEREZ\r\nMobileNumber: 09494419567\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: KUMINTANG IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000010275-9\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 124-513-954-0000\r\nWeight: 84\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760534	2024-07-02	16:12:42.1748547	<Undetected>	Update	BasicInformationId: 3616\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3306\r\nExtensionName: \r\nFirstName: MARIBEL\r\nFullName: MARIBEL DELA PEÑA MALIGALIG\r\nGender: Male\r\nLastName: MALIGALIG\r\nMaidenName: \r\nMiddleName: DELA PEÑA\r\nOccupation: \r\nRelationship: Wife\r\n	BasicInformationId: 3616\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3306\r\nExtensionName: \r\nFirstName: MARIBEL\r\nFullName: MARIBEL MALIGALIG\r\nGender: Male\r\nLastName: MALIGALIG\r\nMaidenName: \r\nMiddleName: DELA PEÑA\r\nOccupation: \r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
760535	2024-07-02	16:12:42.1788546	<Undetected>	Update	BasicInformationId: 3616\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3307\r\nExtensionName: \r\nFirstName: LORENZO\r\nFullName: LORENZO MAZA MALIGALIG\r\nGender: Male\r\nLastName: MALIGALIG\r\nMaidenName: \r\nMiddleName: MAZA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3616\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3307\r\nExtensionName: \r\nFirstName: LORENZO\r\nFullName: LORENZO MALIGALIG\r\nGender: Male\r\nLastName: MALIGALIG\r\nMaidenName: \r\nMiddleName: MAZA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760536	2024-07-02	16:12:42.1829075	<Undetected>	Update	BasicInformationId: 3616\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3308\r\nExtensionName: \r\nFirstName: LUISA\r\nFullName: LUISA FRAGO PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: FRAGO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3616\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3308\r\nExtensionName: \r\nFirstName: LUISA\r\nFullName: LUISA PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: FRAGO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760537	2024-07-02	16:12:42.1869075	<Undetected>	Update	BasicInformationId: 3616\r\nBirthDate: December 29, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3309\r\nExtensionName: \r\nFirstName: KIM CAROL\r\nFullName: KIM CAROL D MALIGALIG\r\nGender: Male\r\nLastName: MALIGALIG\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3616\r\nBirthDate: December 29, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3309\r\nExtensionName: \r\nFirstName: KIM CAROL\r\nFullName: KIM CAROL MALIGALIG\r\nGender: Male\r\nLastName: MALIGALIG\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760538	2024-07-02	16:12:42.1909074	<Undetected>	Update	BasicInformationId: 3616\r\nBirthDate: August 13, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3310\r\nExtensionName: \r\nFirstName: KRISTINE\r\nFullName: KRISTINE D MALIGALIG\r\nGender: Male\r\nLastName: MALIGALIG\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3616\r\nBirthDate: August 13, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3310\r\nExtensionName: \r\nFirstName: KRISTINE\r\nFullName: KRISTINE MALIGALIG\r\nGender: Male\r\nLastName: MALIGALIG\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760539	2024-07-02	16:12:42.1949074	<Undetected>	Update	BasicInformationId: 3616\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3413\r\n	BasicInformationId: 3616\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3413\r\n	admin	Questionnaires	1
760540	2024-07-02	16:20:24.4032842	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: TECHNICAL EDUCATION- TECHNICAL ELECTRICITY\r\nLevel: College\r\n	admin	Courses	1
760565	2024-07-02	16:23:28.2616574	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: GAWAD KAWANI\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760566	2024-07-02	16:26:04.7723802	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ATTENDING PHYSICAL WELLNESS ACTIVITIES FOR EMPLOYEES WELLFARE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760567	2024-07-02	16:27:43.5405172	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MEETING WITH THE ADMINISTRATIVE AIDES I\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760580	2024-07-02	16:35:22.7159098	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3618\r\nEmployeeTrainingId: 0\r\nFromDate: December 11, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: December 12, 2023\r\nTrainingId: 15180\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760762	2024-07-03	09:50:30.7136872	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MICROSOFT OFFICE 2021/ 365 ESSENTIALS BUNDLE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760541	2024-07-02	16:20:40.8915764	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BRGY. 4 POBLACION\r\nBasicInformationId: 0\r\nBirthDate: April 09, 1978\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: JOEL.ARCARDO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: JOEL\r\nFullName: JOEL M. ARCARDO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006270219\r\nHDMF: 1211-1215-6584\r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ARCARDO\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nMobileNumber: 09954442478\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BRGY. 4 POBLACION\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: P.HERRERA ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025151402-9\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: 04-1754829-4\r\nStreetName: P.HERRERA ST.\r\nTIN: 404-757-185-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760542	2024-07-02	16:20:41.0632418	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3617\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1985\r\nDateTo: 2005\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS CITY EAST ELEMENTARY SCHOOL/ NON FORMAL ACCREDITATION AND EQUIVALENCY TEST \r\nYearGraduated: 2005\r\n	admin	EducationalBackgrounds	1
760543	2024-07-02	16:20:41.0672401	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: 2011\r\nBasicInformationId: 3617\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL / UNIVERSITY OF BATANGAS \r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
760544	2024-07-02	16:20:41.0712401	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3617\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JUANITO\r\nFullName: JUANITO DELA CRUZ ARCARDO\r\nGender: Male\r\nLastName: ARCARDO\r\nMaidenName: \r\nMiddleName: DELA CRUZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760545	2024-07-02	16:20:41.0762400	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3617\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LUCITA\r\nFullName: LUCITA DE CASTRO MACARAIG\r\nGender: Male\r\nLastName: MACARAIG\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760546	2024-07-02	16:20:41.0802401	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3617\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY \r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760547	2024-07-02	16:20:41.0842010	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3617\r\nEmployeeTrainingId: 0\r\nFromDate: November 09, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY \r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15079\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760548	2024-07-02	16:20:41.0891989	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3617\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY \r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760549	2024-07-02	16:20:41.0931988	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3617\r\nEmployeeTrainingId: 0\r\nFromDate: September 04, 2012\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: BATANGAS CITY GIRL SCOUT COUNCIL \r\nStatus: \r\nToDate: July 04, 2012\r\nTrainingId: 15179\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760550	2024-07-02	16:20:41.0971994	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3617\r\nCharacterReferenceId: 0\r\nCompanyAddress: BUCAL, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09754235341\r\nExtensionName: \r\nFirstName: ANA MARIE\r\nLastName: DE CASTRO\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760551	2024-07-02	16:20:41.1011987	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3617\r\nCharacterReferenceId: 0\r\nCompanyAddress: BALAGTAS, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09459913823\r\nExtensionName: \r\nFirstName: INGRID\r\nLastName: ATIVO\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760552	2024-07-02	16:20:41.1061990	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3617\r\nCharacterReferenceId: 0\r\nCompanyAddress: TULO II, BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09279152090\r\nExtensionName: \r\nFirstName: ELPIDIA\r\nLastName: GARCIA\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760553	2024-07-02	16:20:41.1101988	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3617\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 03, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 13,000.00\r\nPositionHeld: ADMINISTRATIVE AIDE I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 0-1\r\nStatus: Permanent\r\nToDate: July 02, 2024\r\n	admin	Experiences	1
760554	2024-07-02	16:20:41.1141988	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3617\r\nCompanyInstitution: BATANGAS CITY GIRL SCOUT COUNCIL \r\nExperienceId: 0\r\nFromDate: October 10, 2009\r\nIsGovernmentService: False\r\nMonthlySalary: 9,000.00\r\nPositionHeld: JANITOR / MESSENGER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: February 28, 2023\r\n	admin	Experiences	1
760555	2024-07-02	16:20:41.1191997	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3617\r\nCompanyInstitution: BATANGAS CITY EAST ELEMENTARY SCHOOL \r\nExperienceId: 0\r\nFromDate: January 06, 2009\r\nIsGovernmentService: False\r\nMonthlySalary: 4,000.00\r\nPositionHeld: JANITOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: October 10, 2009\r\n	admin	Experiences	1
760556	2024-07-02	16:20:41.1232027	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3617\r\nSkillId: 0\r\nSkillName: ADMINISTRATIVE SUPPORT\r\n	admin	Skills	1
760557	2024-07-02	16:20:41.1282031	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3617\r\nSkillId: 0\r\nSkillName: CLEANING\r\n	admin	Skills	1
760558	2024-07-02	16:20:41.1342019	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3617\r\nSkillId: 0\r\nSkillName: PAINTING\r\n	admin	Skills	1
760559	2024-07-02	16:20:41.1407091	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3617\r\nSkillId: 0\r\nSkillName: RECEIVING AND RELEASING DOCUMENTS\r\n	admin	Skills	1
760560	2024-07-02	16:20:41.1477091	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3617\r\nSkillId: 0\r\nSkillName: GARDENING\r\n	admin	Skills	1
760561	2024-07-02	16:20:41.1537082	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3617\r\nSkillId: 0\r\nSkillName: ELECTRICAL SUPPORT\r\n	admin	Skills	1
760562	2024-07-02	16:20:41.1597088	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3617\r\nSkillId: 0\r\nSkillName: REPAIR AND MAINTENANCE\r\n	admin	Skills	1
760563	2024-07-02	16:20:41.1637076	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3617\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY GIRL SCOUT COUNCIL\r\n	admin	Organizations	1
760564	2024-07-02	16:20:41.1677085	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3617\r\nQ34a: No\r\nQ34b: No\r\nQ35a: \r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
760568	2024-07-02	16:33:11.3147109	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BS IN COMPUTER ENGINEERING\r\nLevel: College\r\n	admin	Courses	1
760596	2024-07-02	16:49:03.3886402	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING ON SAFE SPACES ACT AND GENDER- RESPONSIVE POLICIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760597	2024-07-02	16:52:01.2394966	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STA. RITA KARSADA\r\nBasicInformationId: 0\r\nBirthDate: July 26, 1979\r\nBirthPlace: STA.RITA BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RFCOMIA26@GMAIL.COM\r\nExtensionName: \r\nFirstName: RANDY\r\nFullName: RANDY F. COMIA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.56\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: FURTO\r\nMobileNumber: 09454614111\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STA. RITA KARSADA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: TAMBOBONG STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: TAMBOBONG STREET\r\nTIN: \r\nWeight: 75\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760598	2024-07-02	16:52:01.3620092	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3619\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1986\r\nDateTo: 1992\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: STA, RITA ELEMENTARY SCHOOL\r\nYearGraduated: 1992\r\n	admin	EducationalBackgrounds	1
760599	2024-07-02	16:52:01.3660092	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3619\r\nCourse: \r\nCourseId: 1267\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 2001\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: AMA COMPUTER COLLEGE\r\nYearGraduated: 2001\r\n	admin	EducationalBackgrounds	1
760627	2024-07-03	08:18:51.2481291	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TULONG-TULONG SA PAGBANGON. KAPIT-KAMAY SA PAG AHON. NUWIS NA WASTO, ALAY PARA SA PILIPINO\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760569	2024-07-02	16:35:22.5108220	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SOROSORO KARSADA\r\nBasicInformationId: 0\r\nBirthDate: November 01, 1973\r\nBirthPlace: BATANGAS CITY\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: cris.barte@deped.gov.ph\r\nExtensionName: \r\nFirstName: CRIS\r\nFullName: CRIS A. BARTE\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006334414\r\nHDMF: 1400-0074-1009\r\nHeight: 1.68\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: ARDID\r\nMobileNumber: 09512323956\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SOROSORO KARSADA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-200628005-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-0854088-7\r\nStreetName: \r\nTIN: 303-414-980-0000\r\nWeight: 57\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760570	2024-07-02	16:35:22.6739098	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3618\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1980\r\nDateTo: 1986\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SOROSORO ELEMENTARY SCHOOL\r\nYearGraduated: 1986\r\n	admin	EducationalBackgrounds	1
760571	2024-07-02	16:35:22.6789099	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3618\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1988\r\nDateTo: 1992\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1992\r\n	admin	EducationalBackgrounds	1
760572	2024-07-02	16:35:22.6829098	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3618\r\nCourse: \r\nCourseId: 1266\r\nCourseOrMajor: \r\nDateFrom: 1992\r\nDateTo: 1995\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 1995\r\n	admin	EducationalBackgrounds	1
760573	2024-07-02	16:35:22.6869097	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3618\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARILOU\r\nFullName: MARILOU LONTOC BARTE\r\nGender: Male\r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: LONTOC\r\nOccupation: \r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
760574	2024-07-02	16:35:22.6909098	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3618\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: OSIAS\r\nFullName: OSIAS ARDID BARTE\r\nGender: Male\r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: ARDID\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760575	2024-07-02	16:35:22.6949098	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3618\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CHINITA\r\nFullName: CHINITA DIMAANO ARDID\r\nGender: Male\r\nLastName: ARDID\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760576	2024-07-02	16:35:22.6999098	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3618\r\nBirthDate: June 03, 1998\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: KIM VINCENT\r\nFullName: KIM VINCENT LONTOK BARTE\r\nGender: Male\r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: LONTOK\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760577	2024-07-02	16:35:22.7039098	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3618\r\nBirthDate: September 23, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: KRISTINE MARIELLE\r\nFullName: KRISTINE MARIELLE LONTOC BARTE\r\nGender: Male\r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: LONTOC\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760578	2024-07-02	16:35:22.7069098	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3618\r\nBirthDate: October 23, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SHEENA FLORENCE\r\nFullName: SHEENA FLORENCE LONTOC BARTE\r\nGender: Male\r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: LONTOC\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760579	2024-07-02	16:35:22.7119097	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3618\r\nBirthDate: November 30, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EZEKIEL JONH\r\nFullName: EZEKIEL JONH LONTOC BARTE\r\nGender: Male\r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: LONTOC\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761572	2024-07-04	15:19:33.6763701	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3639\r\nRecognitionId: 0\r\nRecognitionName: MEMBER OF 7S COMMITTEE DURING THE 2ND SURVEILLANCE AUDITY BY THE TUV NORD- DECEMBER 4, 2020\r\n	admin	Recognitions	1
760581	2024-07-02	16:35:22.7199099	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3618\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760582	2024-07-02	16:35:22.7239097	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3618\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15113\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760583	2024-07-02	16:35:22.7279097	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3618\r\nEmployeeTrainingId: 0\r\nFromDate: August 24, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BATANGAS CITY INTEGRATED HIGH SCHOOL\r\nStatus: \r\nToDate: August 24, 2023\r\nTrainingId: 15181\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760584	2024-07-02	16:35:22.7329097	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3618\r\nEmployeeTrainingId: 0\r\nFromDate: July 05, 2023\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 05, 2023\r\nTrainingId: 15182\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760585	2024-07-02	16:35:22.7359097	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3618\r\nCharacterReferenceId: 0\r\nCompanyAddress: SOROSORO KARSADA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09085751598\r\nExtensionName: \r\nFirstName: ENRIQUIE\r\nLastName: GUINHAWA\r\nMiddleName: F\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760586	2024-07-02	16:35:22.7409098	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3618\r\nCharacterReferenceId: 0\r\nCompanyAddress: SOROSORO KARSADA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09169515787\r\nExtensionName: \r\nFirstName: EDMUNDO\r\nLastName: DIMAANO\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760587	2024-07-02	16:35:22.7449098	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3618\r\nCharacterReferenceId: 0\r\nCompanyAddress: SOROSORO KARSADA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09287863758\r\nExtensionName: \r\nFirstName: MARY GRACE\r\nLastName: BUENSALIDA\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760588	2024-07-02	16:35:22.7489097	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3618\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 13,000.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-1\r\nStatus: Permanent\r\nToDate: July 02, 2024\r\n	admin	Experiences	1
760589	2024-07-02	16:35:22.7529098	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3618\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 03, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 13,000.00\r\nPositionHeld: ADMINISTRATIVE AIDE 1\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
760590	2024-07-02	16:35:22.7569097	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3618\r\nSkillId: 0\r\nSkillName: DRIVING\r\n	admin	Skills	1
760591	2024-07-02	16:35:22.7619098	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3618\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
760592	2024-07-02	16:35:22.7649097	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3618\r\nSkillId: 0\r\nSkillName: ELECTRICIAN\r\n	admin	Skills	1
760593	2024-07-02	16:35:22.7699096	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3618\r\nSkillId: 0\r\nSkillName: PLUMBER\r\n	admin	Skills	1
760594	2024-07-02	16:35:22.7739097	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3618\r\nSkillId: 0\r\nSkillName: DRIVER\r\n	admin	Skills	1
760595	2024-07-02	16:35:22.7779097	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3618\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
760600	2024-07-02	16:52:01.3710092	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3619\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1992\r\nDateTo: 1996\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 1992\r\n	admin	EducationalBackgrounds	1
760601	2024-07-02	16:52:01.3755152	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3619\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RICARDO\r\nFullName: RICARDO AGUADO COMIA\r\nGender: Male\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: AGUADO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760602	2024-07-02	16:52:01.3795152	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3619\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RESTITA\r\nFullName: RESTITA FURTO COMIA\r\nGender: Male\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: FURTO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760603	2024-07-02	16:52:01.3845153	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3619\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15183\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760604	2024-07-02	16:52:01.3885152	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3619\r\nCompanyInstitution: DEPED \r\nExperienceId: 0\r\nFromDate: March 21, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 13,000.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: July 02, 2024\r\n	admin	Experiences	1
760605	2024-07-02	16:52:01.3925152	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3619\r\nCompanyInstitution: CITY MAYOR'S OFFICE\r\nExperienceId: 0\r\nFromDate: January 17, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 8,000.00\r\nPositionHeld: ADMININISTRATIVE AIDE III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: March 19, 2022\r\n	admin	Experiences	1
760606	2024-07-02	16:52:01.3975156	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3619\r\nCompanyInstitution: ACE INTERNATIONAL CONSULTING ENGINEERS (UAE) \r\nExperienceId: 0\r\nFromDate: August 18, 2015\r\nIsGovernmentService: False\r\nMonthlySalary: 30,000.00\r\nPositionHeld: OFFICE BOY\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: March 16, 2021\r\n	admin	Experiences	1
760607	2024-07-02	16:52:01.4015151	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3619\r\nCompanyInstitution: CITY MAYOR'S OFFICE \r\nExperienceId: 0\r\nFromDate: January 05, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 7,000.00\r\nPositionHeld: BOOKBINDER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: December 31, 2013\r\n	admin	Experiences	1
760608	2024-07-02	16:52:01.4075151	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3619\r\nCompanyInstitution: CITY MAYOR'S OFFICE\r\nExperienceId: 0\r\nFromDate: January 18, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 5,000.00\r\nPositionHeld: BOOKBINDER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: December 31, 2010\r\n	admin	Experiences	1
760609	2024-07-02	16:52:01.4125152	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3619\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
760610	2024-07-03	08:05:57.2818304	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: VILLA PRECY\r\nBarangay: KUMINTANG ILAYA\r\nBasicInformationId: 0\r\nBirthDate: May 15, 1994\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ALYANNA.ALBURO@GMAIL.COM\r\nExtensionName: \r\nFirstName: ALYANNA\r\nFullName: ALYANNA L. ALBURO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.68\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALBURO\r\nMaidenName: \r\nMiddleName: LACSAMANA\r\nMobileNumber: 09291691465\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: VILLA PRECY\r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 63\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760628	2024-07-03	08:20:22.8242657	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: "ANO NGA BA ANG LATEST MARITESS?- ANNUAL TAX AND FS FILING REMINDERS AND UPDATES- PART 1 & 2"\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760611	2024-07-03	08:05:57.3201086	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3620\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PEDRO\r\nFullName: PEDRO YBAÑEZ ALBURO\r\nGender: Male\r\nLastName: ALBURO\r\nMaidenName: \r\nMiddleName: YBAÑEZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760612	2024-07-03	08:05:57.3211086	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3620\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LAURA\r\nFullName: LAURA BERANIA LACSAMANA\r\nGender: Male\r\nLastName: LACSAMANA\r\nMaidenName: \r\nMiddleName: BERANIA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760613	2024-07-03	08:05:57.3211086	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3620\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
760614	2024-07-03	08:11:32.5316991	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISIONS TRAINING VAW FREE SDO AND GENDER- FAIR LANGUAGE ADVOCACY IN THE WORKPLACE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760615	2024-07-03	08:16:30.8698045	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BRIEFING ON ETRA FOR NGAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760616	2024-07-03	08:17:52.8345309	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3619\r\nSkillId: 0\r\nSkillName: ENCODING\r\n	admin	Skills	1
760617	2024-07-03	08:17:52.8380430	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3619\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
760618	2024-07-03	08:17:52.8420429	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3619\r\nSkillId: 0\r\nSkillName: GOOD COMMUNICATION SKILLS\r\n	admin	Skills	1
760619	2024-07-03	08:17:52.8470428	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3619\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 20\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15045\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760620	2024-07-03	08:17:52.8510428	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3619\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED\r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15184\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760621	2024-07-03	08:17:52.8560434	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3619\r\nCharacterReferenceId: 0\r\nCompanyAddress: ALANGILAN, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09306135020\r\nExtensionName: \r\nFirstName: FATIMA LLANA\r\nLastName: ANTE\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760622	2024-07-03	08:17:52.8600431	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3619\r\nCharacterReferenceId: 0\r\nCompanyAddress: BOLBOK, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: AREN ROSE\r\nLastName: GALVEZ\r\nMiddleName: E\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760623	2024-07-03	08:17:52.8650440	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STA. RITA KARSADA\r\nBasicInformationId: 3619\r\nBirthDate: July 26, 1979\r\nBirthPlace: STA.RITA BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RFCOMIA26@GMAIL.COM\r\nExtensionName: \r\nFirstName: RANDY\r\nFullName: RANDY F. COMIA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.56\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: FURTO\r\nMobileNumber: 09454614111\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STA. RITA KARSADA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: TAMBOBONG STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: TAMBOBONG STREET\r\nTIN: \r\nWeight: 75\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STA. RITA KARSADA\r\nBasicInformationId: 3619\r\nBirthDate: July 26, 1979\r\nBirthPlace: STA.RITA BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RFCOMIA26@GMAIL.COM\r\nExtensionName: \r\nFirstName: RANDY\r\nFullName: RANDY F. COMIA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: 1211-8743-7150\r\nHeight: 1.56\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: FURTO\r\nMobileNumber: 09454614111\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STA. RITA KARSADA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: TAMBOBONG STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025013880-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3469337-1\r\nStreetName: TAMBOBONG STREET\r\nTIN: 921-094-645-0000\r\nWeight: 75\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760624	2024-07-03	08:17:52.8690434	<Undetected>	Update	BasicInformationId: 3619\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3320\r\nExtensionName: \r\nFirstName: RICARDO\r\nFullName: RICARDO AGUADO COMIA\r\nGender: Male\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: AGUADO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3619\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3320\r\nExtensionName: \r\nFirstName: RICARDO\r\nFullName: RICARDO COMIA\r\nGender: Male\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: AGUADO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
766034	2024-07-11	16:10:24.8053683	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3695\r\nRecognitionId: 0\r\nRecognitionName: 2022 OUTSTANDING EDUCATOR- INTERNATIONAL \r\n	admin	Recognitions	1
760625	2024-07-03	08:17:52.8730432	<Undetected>	Update	BasicInformationId: 3619\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3321\r\nExtensionName: \r\nFirstName: RESTITA\r\nFullName: RESTITA FURTO COMIA\r\nGender: Male\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: FURTO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3619\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3321\r\nExtensionName: \r\nFirstName: RESTITA\r\nFullName: RESTITA COMIA\r\nGender: Male\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: FURTO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760626	2024-07-03	08:17:52.8770428	<Undetected>	Update	BasicInformationId: 3619\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3416\r\n	BasicInformationId: 3619\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3416\r\n	admin	Questionnaires	1
760629	2024-07-03	08:21:51.6743851	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF SCIENCE IN INFORMATION TECHNOLOGY \r\nLevel: College\r\n	admin	Courses	1
760632	2024-07-03	08:33:02.9224777	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: GOVERNMENT SERVICE INSURANCE SYSTEM GENERAL INSURANCE FORUM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760633	2024-07-03	08:37:52.5701927	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INVENTORY MANAGEMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760634	2024-07-03	08:39:24.9708607	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PROCUREMENT MANAGEMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760635	2024-07-03	08:40:48.4507419	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INTRODUCTION TO FRONT OFFICE SERVICES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760674	2024-07-03	08:43:56.7786869	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MICROSOFT DIGITAL LITERACY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760675	2024-07-03	08:45:13.7138925	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PARTICIPATING IN WORKPLACE COMMUNICATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760630	2024-07-03	08:21:58.8323461	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BSP INFORMATION CARAVAN IN BATANGAS- KNOW YOUR MONEY, THE POLYMER BANK NOTE AND FRAUD AND SCAMS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760631	2024-07-03	08:25:40.5112131	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BUREAU OF THE TREASURY- ONLINE FIDELITY BONDING SYSTEM VIRTUAL ORIENTATION (LUZON CLUSTER)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760636	2024-07-03	08:43:19.6165507	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: ANTIDO BLANCO COMPOUND\r\nBarangay: BALETE\r\nBasicInformationId: 0\r\nBirthDate: February 02, 1993\r\nBirthPlace: ANGELES CITY, PAMPANGA\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lesliejoy.patio@deped.gov.ph\r\nExtensionName: \r\nFirstName: LESLIE JOY\r\nFullName: LESLIE JOY A. PATIO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005607475\r\nHDMF: 1212-4981-4365\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PATIO\r\nMaidenName: \r\nMiddleName: ANTIDO\r\nMobileNumber: 09656156500\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: ANTIDO BLANCO COMPOUND\r\nPermanentBarangay: BALETE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO 5\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025668988-9\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO 5\r\nTIN: 497-407-691-0000\r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760637	2024-07-03	08:43:19.8575291	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: VALEDICTORIAN\r\nBasicInformationId: 3621\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2000\r\nDateTo: 2006\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BALETE ELEMENTARY SCHOOL\r\nYearGraduated: 2006\r\n	admin	EducationalBackgrounds	1
760638	2024-07-03	08:43:19.8615156	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: ACHIEVER\r\nBasicInformationId: 3621\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2006\r\nDateTo: 2010\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: CASA DEL BAMBINO EMMANUEL MONTESSORI\r\nYearGraduated: 2010\r\n	admin	EducationalBackgrounds	1
760639	2024-07-03	08:43:19.8664990	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3621\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LEONIDES\r\nFullName: LEONIDES NAGUIT PATIO\r\nGender: Male\r\nLastName: PATIO\r\nMaidenName: \r\nMiddleName: NAGUIT\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760640	2024-07-03	08:43:19.8704856	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3621\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARITES\r\nFullName: MARITES BLANCO ANTIDO\r\nGender: Male\r\nLastName: ANTIDO\r\nMaidenName: \r\nMiddleName: BLANCO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760641	2024-07-03	08:43:19.8744723	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3621\r\nEmployeeTrainingId: 0\r\nFromDate: July 27, 2023\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BUREAU OF INTERNAL REVENUE- 058\r\nStatus: \r\nToDate: July 27, 2023\r\nTrainingId: 15185\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760642	2024-07-03	08:43:19.8794555	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3621\r\nEmployeeTrainingId: 0\r\nFromDate: March 03, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BUREAU OF INTERNAL REVENUE- 058\r\nStatus: \r\nToDate: March 03, 2023\r\nTrainingId: 15186\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760643	2024-07-03	08:43:19.8834422	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3621\r\nEmployeeTrainingId: 0\r\nFromDate: March 03, 2022\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: PICPA\r\nStatus: \r\nToDate: March 03, 2022\r\nTrainingId: 15187\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760644	2024-07-03	08:43:19.8874289	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3621\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2022\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BANKO SENTRAL NG PILIPINAS\r\nStatus: \r\nToDate: November 22, 2022\r\nTrainingId: 15188\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760645	2024-07-03	08:43:19.8914156	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3621\r\nEmployeeTrainingId: 0\r\nFromDate: March 24, 2021\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: PICPA\r\nStatus: \r\nToDate: March 25, 2021\r\nTrainingId: 15089\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760704	2024-07-03	09:00:03.7971012	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PERSONALITY DEVELOPMENT AND ETHICS IN THE WORKPLACE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760646	2024-07-03	08:43:19.8954023	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3621\r\nEmployeeTrainingId: 0\r\nFromDate: April 12, 2021\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BUREAU OF TREASURY- LUZON CLUSTER\r\nStatus: \r\nToDate: April 12, 2021\r\nTrainingId: 15189\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760647	2024-07-03	08:43:19.9003856	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3621\r\nEmployeeTrainingId: 0\r\nFromDate: September 03, 2020\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: PICPA- SOUTHERN TAGALOG\r\nStatus: \r\nToDate: September 05, 2020\r\nTrainingId: 15120\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760648	2024-07-03	08:43:19.9043722	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3621\r\nCharacterReferenceId: 0\r\nCompanyAddress: VERGARA ST., BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09274093944\r\nExtensionName: \r\nFirstName: MA. AURA VERONICA\r\nLastName: LAT\r\nMiddleName: G\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760649	2024-07-03	08:43:19.9083588	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3621\r\nCharacterReferenceId: 0\r\nCompanyAddress: VILLA CRISTINA, ARCE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09163718082\r\nExtensionName: \r\nFirstName: REV. GEOVANI \r\nLastName: HUSMILLO\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760650	2024-07-03	08:43:19.9123455	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3621\r\nCharacterReferenceId: 0\r\nCompanyAddress: ILAT NORTH, SAN PASCUAL, BATANGAS\r\nCompanyName: \r\nContactNumber: 09272054718\r\nExtensionName: \r\nFirstName: STEWARD GLEN\r\nLastName: NO\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760651	2024-07-03	08:43:19.9163322	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3621\r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS NATIONAL HIGH SCHOOL\r\nRating: \r\nTitle: CAREER SERVICE- PROFESSIONAL CIVIL SERVICE\r\n	admin	Eligibilities	1
760652	2024-07-03	08:43:19.9213155	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3621\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 21,388.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-2\r\nStatus: Permanent\r\nToDate: July 03, 2024\r\n	admin	Experiences	1
760653	2024-07-03	08:43:19.9253022	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3621\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 21,388.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-2\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
760654	2024-07-03	08:43:19.9302856	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3621\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 03, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 20,572.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-2\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
760655	2024-07-03	08:43:19.9332755	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3621\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 20,402.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-1\r\nStatus: Permanent\r\nToDate: June 02, 2022\r\n	admin	Experiences	1
760656	2024-07-03	08:43:19.9372621	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3621\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 19,593.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
760657	2024-07-03	08:43:19.9422456	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3621\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 18,784.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
760705	2024-07-03	09:01:34.3086345	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EDUCATIONAL SPRINGBOARD TO SUCCESS GATEWAY TO FUTURE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760658	2024-07-03	08:43:19.9462322	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3621\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 03, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 17,975.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
760659	2024-07-03	08:43:19.9512155	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3621\r\nCompanyInstitution: DEPARTMENT OF EDUCATION III\r\nExperienceId: 0\r\nFromDate: July 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 7,700.00\r\nPositionHeld: JOB ORDER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: May 01, 2019\r\n	admin	Experiences	1
760660	2024-07-03	08:43:19.9552021	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3621\r\nSkillId: 0\r\nSkillName: EXPERT IN THE ENHANCED FINANCIAL REPORTING SYSTEM (eFRS)\r\n	admin	Skills	1
760661	2024-07-03	08:43:19.9591888	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3621\r\nSkillId: 0\r\nSkillName: EXPERT IN MS WORD, EXCEL AND POWERPOINT\r\n	admin	Skills	1
760662	2024-07-03	08:43:19.9641721	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3621\r\nSkillId: 0\r\nSkillName: HOBBIES INCLUDE MUSICALLY INCLINED, ARTS AND SCIENCES\r\n	admin	Skills	1
760663	2024-07-03	08:43:19.9681588	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3621\r\nRecognitionId: 0\r\nRecognitionName: GRADUATE OF BS THEOLOGY 2022\r\n	admin	Recognitions	1
760664	2024-07-03	08:43:19.9721456	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3621\r\nRecognitionId: 0\r\nRecognitionName: MERITORIOUS PERFORMANCE AWARD- DEPED SCHOOLS DIVISION OF BATANGAS CITY 2023\r\n	admin	Recognitions	1
760665	2024-07-03	08:43:19.9761322	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3621\r\nRecognitionId: 0\r\nRecognitionName: CHAMPION- 2023 SDO BATANGAS CITY INTERCOLORS SPORT COMPETITION BADMINTON DOUBLES, VOLLEYBALL, BASKETBALL COMPETITION\r\n	admin	Recognitions	1
760666	2024-07-03	08:43:19.9801189	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3621\r\nRecognitionId: 0\r\nRecognitionName: RESOURCE SPEAKER- CAPACITY BUILDING FOR SCHOOL HEADS AND FINANCIAL STAFF ON THE PROPER UTILIZATION OF MOOE FUNDS 2019\r\n	admin	Recognitions	1
760667	2024-07-03	08:43:19.9851021	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3621\r\nRecognitionId: 0\r\nRecognitionName: TWG MEMBER- IMPLEMENTATION OF WEB-BASED MONITORING SYSTEM OF SCHOOL MOOE FUNDS 2022\r\n	admin	Recognitions	1
760668	2024-07-03	08:43:19.9890888	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3621\r\nRecognitionId: 0\r\nRecognitionName: RESOURCE SPEAKER & TWG MODERATOR- FINANCIAL ADVANCEMENT SKILLS FOR SCHOOL ADMINISTRATORS AND FINANCE AND ADMINISTRATIVE PERSONNEL\r\n	admin	Recognitions	1
760669	2024-07-03	08:43:19.9940722	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3621\r\nOrganizationId: 0\r\nOrganizationName: MEMBER- 7S COMMITTE SCHHOLS DIVISION BATANGAS CITY\r\n	admin	Organizations	1
760670	2024-07-03	08:43:19.9980588	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3621\r\nOrganizationId: 0\r\nOrganizationName: MEMBER- 7S COMMITTE SCHOOLS DIVISION OF BATANGAS CITY\r\n	admin	Organizations	1
760671	2024-07-03	08:43:20.0020455	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3621\r\nOrganizationId: 0\r\nOrganizationName: OVERALL CHAIRMAN- THE SOCIETY CHRISTIAN CAMPUS ORGANIZATION\r\n	admin	Organizations	1
760672	2024-07-03	08:43:20.0070288	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3621\r\nOrganizationId: 0\r\nOrganizationName: MEMBER- EMPLOYEES UNION\r\n	admin	Organizations	1
760673	2024-07-03	08:43:20.0110155	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3621\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
760676	2024-07-03	08:52:58.9251212	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: PIPEFITTING\r\nLevel: Vocational\r\n	admin	Courses	1
760677	2024-07-03	08:54:15.4366191	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF SECONDARY EDUCATION\r\nLevel: College\r\n	admin	Courses	1
760678	2024-07-03	08:56:12.2884771	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3620\r\nSkillId: 0\r\nSkillName: COMPUTER LITERACY \r\n	admin	Skills	1
760679	2024-07-03	08:56:12.2924779	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3620\r\nSkillId: 0\r\nSkillName: GOOD COMMUNICATION SKILLS \r\n	admin	Skills	1
760680	2024-07-03	08:56:12.2974783	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3620\r\nSkillId: 0\r\nSkillName: PLAYING VOLLEYBALL \r\n	admin	Skills	1
760681	2024-07-03	08:56:12.3014782	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3620\r\nRecognitionId: 0\r\nRecognitionName: OUTSTANDING DEPENDABILITY AWARD \r\n	admin	Recognitions	1
760682	2024-07-03	08:56:12.3064841	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3620\r\nRecognitionId: 0\r\nRecognitionName: DEDICATED EMPLOYEE WITHOUT ABSENCE, LEAVE AND TARDINESS - MONTH OF SEPTEMBER\r\n	admin	Recognitions	1
760683	2024-07-03	08:56:12.3104835	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3620\r\nRecognitionId: 0\r\nRecognitionName: OUTSTANDING EMPLOYEE WITHOUT ABSENCE, LEAVES AND TARDINESS - MONTH OF OCTOBER\r\n	admin	Recognitions	1
760684	2024-07-03	08:56:12.3144841	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3620\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2006\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: JULIAN A. PASTOR MEMORIAL ELEMENTARY SCHOOL \r\nYearGraduated: 2006\r\n	admin	EducationalBackgrounds	1
760685	2024-07-03	08:56:12.3184834	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3620\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2006\r\nDateTo: 2010\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL \r\nYearGraduated: 2010\r\n	admin	EducationalBackgrounds	1
760686	2024-07-03	08:56:12.3229970	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3620\r\nCourse: \r\nCourseId: 1268\r\nCourseOrMajor: \r\nDateFrom: 2010\r\nDateTo: 2013\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY \r\nYearGraduated: 2013\r\n	admin	EducationalBackgrounds	1
760687	2024-07-03	08:56:12.3269967	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3620\r\nEmployeeTrainingId: 0\r\nFromDate: December 07, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: GOVERNMENT SERVICE INSURANCE SYSTEM \r\nStatus: \r\nToDate: December 07, 2023\r\nTrainingId: 15190\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760688	2024-07-03	08:56:12.3309967	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3620\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION ( SCHOOLS DIVISION OF BATANGAS)\r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760689	2024-07-03	08:56:12.3349968	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3620\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION ( SCHOOLS DIVISION OF BATANGAS)\r\nStatus: \r\nToDate: September 11, 2023\r\nTrainingId: 15141\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760690	2024-07-03	08:56:12.3399971	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3620\r\nEmployeeTrainingId: 0\r\nFromDate: June 24, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: GREAT LEARNING ACADEMY\r\nStatus: \r\nToDate: June 24, 2023\r\nTrainingId: 15191\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760691	2024-07-03	08:56:12.3439971	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3620\r\nEmployeeTrainingId: 0\r\nFromDate: June 17, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: GREAT LEARNING ACADEMY\r\nStatus: \r\nToDate: June 17, 2023\r\nTrainingId: 15192\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760692	2024-07-03	08:56:12.3479962	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3620\r\nEmployeeTrainingId: 0\r\nFromDate: February 11, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: TECHNICAL  EDUCATION AND SKILLS DEVELOPMENT AUTHORITY\r\nStatus: \r\nToDate: February 11, 2023\r\nTrainingId: 15193\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760693	2024-07-03	08:56:12.3529971	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3620\r\nEmployeeTrainingId: 0\r\nFromDate: February 09, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: TECHNICAL  EDUCATION AND SKILLS DEVELOPMENT AUTHORITY\r\nStatus: \r\nToDate: February 09, 2023\r\nTrainingId: 15194\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760694	2024-07-03	08:56:12.3569970	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3620\r\nEmployeeTrainingId: 0\r\nFromDate: January 09, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: TECHNICAL EDUCATION AND SKILLS DEVELOPMENT AUTHORITY\r\nStatus: \r\nToDate: January 09, 2023\r\nTrainingId: 15195\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760695	2024-07-03	08:56:12.3609968	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3620\r\nDateOfExamination: August 04, 2019\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 7\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 04, 2019\r\nLevelOfEligibility: First Level (Subprofessional)\r\nLicenseNumber: \r\nPlaceOfExamination: CALAPAN CITY, ORIENTAL MINDORO \r\nRating: 81.6\r\nTitle: CAREER SERVICE SUB- PROFESIONAL \r\n	admin	Eligibilities	1
760696	2024-07-03	08:56:12.3649967	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3620\r\nCompanyInstitution: DEPARTMENT OF EDUCATION ( SCHOOLS DIVISION OF BATANGAS CITY) \r\nExperienceId: 0\r\nFromDate: August 14, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 17,553.00\r\nPositionHeld: ADMINISTRATIVE AIDE IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 6-\r\nStatus: Permanent\r\nToDate: July 03, 2024\r\n	admin	Experiences	1
760697	2024-07-03	08:56:12.3699974	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3620\r\nCompanyInstitution: BATANGAS CITY INTEGRATED HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: April 03, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 14,678.00\r\nPositionHeld: ADMINISTRATIVE AIDE III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 3-\r\nStatus: Job Order\r\nToDate: August 13, 2023\r\n	admin	Experiences	1
760698	2024-07-03	08:56:12.3739972	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3620\r\nCompanyInstitution: MAPTAN CONSTRUCTION AND LOGISTICS INC\r\nExperienceId: 0\r\nFromDate: September 06, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 11,154.00\r\nPositionHeld: MONITORING CLERK\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: April 28, 2023\r\n	admin	Experiences	1
760699	2024-07-03	08:56:12.3779973	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3620\r\nCharacterReferenceId: 0\r\nCompanyAddress: ALANGILAN, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09177044783\r\nExtensionName: \r\nFirstName: AMIR \r\nLastName: DE VILLA \r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760700	2024-07-03	08:56:12.3819968	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: VILLA PRECY\r\nBarangay: KUMINTANG ILAYA\r\nBasicInformationId: 3620\r\nBirthDate: May 15, 1994\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ALYANNA.ALBURO@GMAIL.COM\r\nExtensionName: \r\nFirstName: ALYANNA\r\nFullName: ALYANNA L. ALBURO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.68\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALBURO\r\nMaidenName: \r\nMiddleName: LACSAMANA\r\nMobileNumber: 09291691465\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: VILLA PRECY\r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 63\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: VILLA PRECY\r\nBarangay: KUMINTANG ILAYA\r\nBasicInformationId: 3620\r\nBirthDate: May 15, 1994\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ALYANNA.ALBURO@GMAIL.COM\r\nExtensionName: \r\nFirstName: ALYANNA\r\nFullName: ALYANNA L. ALBURO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006352335\r\nHDMF: 1211-1541-4009\r\nHeight: 1.68\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALBURO\r\nMaidenName: \r\nMiddleName: LACSAMANA\r\nMobileNumber: 09291691465\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: VILLA PRECY\r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050413465-1\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-2869127-9\r\nStreetName: \r\nTIN: 447-948-665-0000\r\nWeight: 63\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760701	2024-07-03	08:56:12.3859964	<Undetected>	Update	BasicInformationId: 3620\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3322\r\nExtensionName: \r\nFirstName: PEDRO\r\nFullName: PEDRO YBAÑEZ ALBURO\r\nGender: Male\r\nLastName: ALBURO\r\nMaidenName: \r\nMiddleName: YBAÑEZ\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3620\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3322\r\nExtensionName: \r\nFirstName: PEDRO\r\nFullName: PEDRO ALBURO\r\nGender: Male\r\nLastName: ALBURO\r\nMaidenName: \r\nMiddleName: YBAÑEZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760702	2024-07-03	08:56:12.3909973	<Undetected>	Update	BasicInformationId: 3620\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3323\r\nExtensionName: \r\nFirstName: LAURA\r\nFullName: LAURA BERANIA LACSAMANA\r\nGender: Male\r\nLastName: LACSAMANA\r\nMaidenName: \r\nMiddleName: BERANIA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3620\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3323\r\nExtensionName: \r\nFirstName: LAURA\r\nFullName: LAURA LACSAMANA\r\nGender: Male\r\nLastName: LACSAMANA\r\nMaidenName: \r\nMiddleName: BERANIA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760703	2024-07-03	08:56:12.3949970	<Undetected>	Update	BasicInformationId: 3620\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3417\r\n	BasicInformationId: 3620\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: RESIGNATION\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3417\r\n	admin	Questionnaires	1
760706	2024-07-03	09:03:32.3095141	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PHILIPPINE PROFESSIONAL STANDARD FOR TEACHER FOR CATHOLIC TEACHER AND ETHICS FOR PROFESSIONAL TEACHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760707	2024-07-03	09:05:39.4140061	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FACILITATING STUDENT LEARNING IN THE NEW NORMAL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760708	2024-07-03	09:06:34.6055084	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: THE ART OF TEACHING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760709	2024-07-03	09:07:43.6211740	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EDUCATORS ADVOCATE OF POSITIVE SCHOOL ENVIRONMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760710	2024-07-03	09:08:52.9797008	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CHILD PROTECTION AND SAFE ENVIRONEMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760711	2024-07-03	09:09:50.6286312	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PLANNING AND ASSESMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760712	2024-07-03	09:10:49.7672138	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ANNUAL HEALTH AND SAFETY TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760713	2024-07-03	09:12:18.8530833	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FIRE AND SAFETY TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760714	2024-07-03	09:23:43.3726608	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO LAGUNDI\r\nBarangay: BANABA WEST\r\nBasicInformationId: 0\r\nBirthDate: May 13, 1978\r\nBirthPlace: ORIENTAL MINDORO\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mseco13.ms@gmail.com\r\nExtensionName: \r\nFirstName: MAR\r\nFullName: MAR S. SECO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.7\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SECO\r\nMaidenName: \r\nMiddleName: SAEL\r\nMobileNumber: 09996995307\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO LAGUNDI\r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760715	2024-07-03	09:23:43.5702401	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3622\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1986\r\nDateTo: 1991\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: STA. CLARA ELEMENTARY SCHOOL\r\nYearGraduated: 1991\r\n	admin	EducationalBackgrounds	1
760716	2024-07-03	09:23:43.5742269	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3622\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1991\r\nDateTo: 1995\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1995\r\n	admin	EducationalBackgrounds	1
760717	2024-07-03	09:23:43.5792102	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: DODO MANDANAS SCHOLARSHIP\r\nBasicInformationId: 3622\r\nCourse: \r\nCourseId: 1269\r\nCourseOrMajor: \r\nDateFrom: 2009\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Vocational Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS MANPOWER TRAINING CENTER, INC.\r\nYearGraduated: 2009\r\n	admin	EducationalBackgrounds	1
760718	2024-07-03	09:23:43.5831967	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: EBD SCHOLARSHIP PROGRAM\r\nBasicInformationId: 3622\r\nCourse: \r\nCourseId: 1270\r\nCourseOrMajor: \r\nDateFrom: 2019\r\nDateTo: 2023\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: SOCIAL STUDIES\r\nSchoolorUniversity: ST. BRIGDET COLLEGE\r\nYearGraduated: 2023\r\n	admin	EducationalBackgrounds	1
760733	2024-07-03	09:23:43.6470361	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3622\r\nCharacterReferenceId: 0\r\nCompanyAddress: TALUMPOK, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09971892566\r\nExtensionName: \r\nFirstName: SACORO\r\nLastName: COMIA\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760719	2024-07-03	09:23:43.5871835	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3622\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LEILA\r\nFullName: LEILA MARANAN\r\nGender: Female\r\nLastName: SECO\r\nMaidenName: \r\nMiddleName: MARANAN\r\nOccupation: DEPED SURPERVISOR\r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
760720	2024-07-03	09:23:43.5921657	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3622\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: TANTING\r\nFullName: TANTING SECO\r\nGender: Male\r\nLastName: SECO\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760721	2024-07-03	09:23:43.5971504	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3622\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LUZVIMINDA\r\nFullName: LUZVIMINDA SAEL\r\nGender: Female\r\nLastName: SAEL\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760722	2024-07-03	09:23:43.6021334	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3622\r\nBirthDate: February 13, 2016\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LEE MARREON\r\nFullName: LEE MARREON M SECO\r\nGender: Male\r\nLastName: SECO\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760723	2024-07-03	09:23:43.6061201	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3622\r\nEmployeeTrainingId: 0\r\nFromDate: February 16, 2023\r\nHours: 8\r\nNatureOfParticipation: PROFESSIONAL DEVELOPMENT\r\nSponsoringAgency: ST. BRIDGET COLLEGE\r\nStatus: \r\nToDate: February 16, 2023\r\nTrainingId: 15196\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760724	2024-07-03	09:23:43.6101066	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3622\r\nEmployeeTrainingId: 0\r\nFromDate: February 17, 2023\r\nHours: 8\r\nNatureOfParticipation: PROFESSIONAL DEVELOPMENT\r\nSponsoringAgency: ST. BRIDGET COLLEGE\r\nStatus: \r\nToDate: February 17, 2023\r\nTrainingId: 15197\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760725	2024-07-03	09:23:43.6140934	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3622\r\nEmployeeTrainingId: 0\r\nFromDate: February 20, 2023\r\nHours: 8\r\nNatureOfParticipation: PROFESSIONAL DEVELOPMENT\r\nSponsoringAgency: ST, BRIDGET COLLEGE\r\nStatus: \r\nToDate: February 20, 2023\r\nTrainingId: 15198\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760726	2024-07-03	09:23:43.6180803	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3622\r\nEmployeeTrainingId: 0\r\nFromDate: February 21, 2023\r\nHours: 4\r\nNatureOfParticipation: PROFESSIONAL DEVELOPMENT\r\nSponsoringAgency: ST. BRIDGET COLLEGE\r\nStatus: \r\nToDate: February 21, 2023\r\nTrainingId: 15199\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760727	2024-07-03	09:23:43.6220669	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3622\r\nEmployeeTrainingId: 0\r\nFromDate: February 21, 2023\r\nHours: 4\r\nNatureOfParticipation: PROFESSIONAL DEVELOPMENT\r\nSponsoringAgency: ST. BRIDGET COLLEGE\r\nStatus: \r\nToDate: February 21, 2023\r\nTrainingId: 15200\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760728	2024-07-03	09:23:43.6260533	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3622\r\nEmployeeTrainingId: 0\r\nFromDate: February 27, 2023\r\nHours: 2\r\nNatureOfParticipation: PROFESSIONAL DEVELOPMENT\r\nSponsoringAgency: ST. BRIDGET COLLEGE\r\nStatus: \r\nToDate: February 27, 2023\r\nTrainingId: 15201\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760729	2024-07-03	09:23:43.6310367	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3622\r\nEmployeeTrainingId: 0\r\nFromDate: February 27, 2023\r\nHours: 3\r\nNatureOfParticipation: PROFESSIONAL DEVELOPMENT\r\nSponsoringAgency: ST. BRIDGET COLLEGE\r\nStatus: \r\nToDate: February 27, 2023\r\nTrainingId: 15202\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760730	2024-07-03	09:23:43.6350234	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3622\r\nEmployeeTrainingId: 0\r\nFromDate: February 27, 2023\r\nHours: 3\r\nNatureOfParticipation: PROFESSIONAL DEVELOPMENT\r\nSponsoringAgency: ST. BRIDGET COLLEGE\r\nStatus: \r\nToDate: February 27, 2023\r\nTrainingId: 15203\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760731	2024-07-03	09:23:43.6390100	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3622\r\nEmployeeTrainingId: 0\r\nFromDate: January 01, 2012\r\nHours: 36\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: NATIONAL OIWELL VARCO GRANT PRIDECO\r\nStatus: \r\nToDate: January 01, 2015\r\nTrainingId: 15204\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760732	2024-07-03	09:23:43.6430497	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3622\r\nEmployeeTrainingId: 0\r\nFromDate: January 01, 2012\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: NATIONAL OIWELL VARCO GRANT PRIDECO\r\nStatus: \r\nToDate: January 02, 2012\r\nTrainingId: 15205\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770649	2025-03-17	13:20:07.2178217	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3781\r\nSkillId: 0\r\nSkillName: DRIVING SKILLS\r\n	admin	Skills	1
760734	2024-07-03	09:23:43.6520592	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3622\r\nCharacterReferenceId: 0\r\nCompanyAddress: BANABA CENTER, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09295320442\r\nExtensionName: \r\nFirstName: DEMETRIO\r\nLastName: BAUTISTA\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760735	2024-07-03	09:23:43.6560468	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3622\r\nCharacterReferenceId: 0\r\nCompanyAddress: TINGA LABAC, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09989700743\r\nExtensionName: \r\nFirstName: HERMAN\r\nLastName: CATAPANG\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760736	2024-07-03	09:23:43.6599929	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3622\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 17, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 0.00\r\nPositionHeld: JOB ORDER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: July 03, 2024\r\n	admin	Experiences	1
760737	2024-07-03	09:23:43.6639794	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3622\r\nCompanyInstitution: NATIONAL OIWELL VARCO GRANT PRIDECO-ABU DHABI UAE\r\nExperienceId: 0\r\nFromDate: January 01, 2012\r\nIsGovernmentService: False\r\nMonthlySalary: 0.00\r\nPositionHeld: WELDLINE OPERATOR, CNC LATHE OPERATOR, STRESS RELLIEF OPERATOR, AUSTENIZING\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
760738	2024-07-03	09:23:43.6679660	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3622\r\nCompanyInstitution: JAYHAWK SECURITY AGENCY- TRITAN, JAM TERMINAL\r\nExperienceId: 0\r\nFromDate: January 01, 2009\r\nIsGovernmentService: False\r\nMonthlySalary: 0.00\r\nPositionHeld: SECURITY OFFICER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: December 31, 2009\r\n	admin	Experiences	1
760739	2024-07-03	09:23:43.6729901	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3622\r\nSkillId: 0\r\nSkillName: COMPUTER SKILLS\r\n	admin	Skills	1
760740	2024-07-03	09:23:43.6769768	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3622\r\nSkillId: 0\r\nSkillName: DRIVING\r\n	admin	Skills	1
760741	2024-07-03	09:23:43.6809651	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3622\r\nSkillId: 0\r\nSkillName: WELDING\r\n	admin	Skills	1
760742	2024-07-03	09:23:43.6849491	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3622\r\nSkillId: 0\r\nSkillName: WOODWORKING\r\n	admin	Skills	1
760743	2024-07-03	09:23:43.6889366	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3622\r\nSkillId: 0\r\nSkillName: READING\r\n	admin	Skills	1
760744	2024-07-03	09:23:43.6938796	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3622\r\nRecognitionId: 0\r\nRecognitionName: HEALTH AND SAFETY AWARD ( GIVEN BY NATIONAL OIWELL VARCO ON DECEMBER 3, 2014)\r\n	admin	Recognitions	1
760745	2024-07-03	09:23:43.6978658	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3622\r\nOrganizationId: 0\r\nOrganizationName: INTERNATIONAL LITERACY ASSOCIATION\r\n	admin	Organizations	1
760746	2024-07-03	09:23:43.7018917	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3622\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: \r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
760747	2024-07-03	09:27:25.7374579	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO LAGUNDI\r\nBarangay: BANABA WEST\r\nBasicInformationId: 3622\r\nBirthDate: May 13, 1978\r\nBirthPlace: ORIENTAL MINDORO\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mseco13.ms@gmail.com\r\nExtensionName: \r\nFirstName: MAR\r\nFullName: MAR S. SECO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.7\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SECO\r\nMaidenName: \r\nMiddleName: SAEL\r\nMobileNumber: 09996995307\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO LAGUNDI\r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO LAGUNDI\r\nBarangay: BANABA WEST\r\nBasicInformationId: 3622\r\nBirthDate: May 13, 1978\r\nBirthPlace: ORIENTAL MINDORO\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mseco13.ms@gmail.com\r\nExtensionName: \r\nFirstName: MAR\r\nFullName: MAR S. SECO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: 1210-8546-2082\r\nHeight: 1.7\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SECO\r\nMaidenName: \r\nMiddleName: SAEL\r\nMobileNumber: 09996995307\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO LAGUNDI\r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 19-089347407-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-0956111-1\r\nStreetName: \r\nTIN: 275-937-271-0000\r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760748	2024-07-03	09:27:25.7474250	<Undetected>	Update	BasicInformationId: 3622\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3326\r\nExtensionName: \r\nFirstName: LEILA\r\nFullName: LEILA MARANAN\r\nGender: Female\r\nLastName: SECO\r\nMaidenName: \r\nMiddleName: MARANAN\r\nOccupation: DEPED SURPERVISOR\r\nRelationship: Wife\r\n	BasicInformationId: 3622\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3326\r\nExtensionName: \r\nFirstName: LEILA\r\nFullName: LEILA SECO\r\nGender: Female\r\nLastName: SECO\r\nMaidenName: \r\nMiddleName: MARANAN\r\nOccupation: DEPED SURPERVISOR\r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
770650	2025-03-17	13:20:07.2268222	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3781\r\nSkillId: 0\r\nSkillName: RESILIENT\r\n	admin	Skills	1
760749	2024-07-03	09:27:25.7514116	<Undetected>	Update	BasicInformationId: 3622\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3327\r\nExtensionName: \r\nFirstName: TANTING\r\nFullName: TANTING SECO\r\nGender: Male\r\nLastName: SECO\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3622\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3327\r\nExtensionName: \r\nFirstName: TANTING\r\nFullName: TANTING SECO\r\nGender: Male\r\nLastName: SECO\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760750	2024-07-03	09:27:25.7553985	<Undetected>	Update	BasicInformationId: 3622\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3328\r\nExtensionName: \r\nFirstName: LUZVIMINDA\r\nFullName: LUZVIMINDA SAEL\r\nGender: Female\r\nLastName: SAEL\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3622\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3328\r\nExtensionName: \r\nFirstName: LUZVIMINDA\r\nFullName: LUZVIMINDA SAEL\r\nGender: Female\r\nLastName: SAEL\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760751	2024-07-03	09:27:25.7623749	<Undetected>	Update	BasicInformationId: 3622\r\nBirthDate: February 13, 2016\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3329\r\nExtensionName: \r\nFirstName: LEE MARREON\r\nFullName: LEE MARREON M SECO\r\nGender: Male\r\nLastName: SECO\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3622\r\nBirthDate: February 13, 2016\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3329\r\nExtensionName: \r\nFirstName: LEE MARREON\r\nFullName: LEE MARREON SECO\r\nGender: Male\r\nLastName: SECO\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760752	2024-07-03	09:29:31.8453835	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: #067\r\nAddress2: \r\nBarangay: TULO II\r\nBasicInformationId: 0\r\nBirthDate: February 14, 1993\r\nBirthPlace: BATANGAS CITY\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: EVANGELINE.LEIS@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: EVANGELINE\r\nFullName: EVANGELINE L. SALAZAR\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.05\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SALAZAR\r\nMaidenName: \r\nMiddleName: LEIS\r\nMobileNumber: 09959763336\r\nNationality: Filipino\r\nPermanentAddress1: #067\r\nPermanentAddress2: \r\nPermanentBarangay: TULO II\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: PROVINCE\r\nPermanentStreetName: SITIO KANLURAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: PROVINCE\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: SITIO KANLURAN\r\nTIN: \r\nWeight: 45\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760753	2024-07-03	09:29:31.8732397	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3623\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1999\r\nDateTo: 2005\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAN ISIDRO ELEMENTARY SCHOOL \r\nYearGraduated: 2005\r\n	admin	EducationalBackgrounds	1
760754	2024-07-03	09:29:31.8732397	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3623\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY \r\nYearGraduated: 2009\r\n	admin	EducationalBackgrounds	1
760755	2024-07-03	09:29:31.8732397	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3623\r\nCourse: \r\nCourseId: 1257\r\nCourseOrMajor: \r\nDateFrom: 2009\r\nDateTo: 2013\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY \r\nYearGraduated: 2013\r\n	admin	EducationalBackgrounds	1
760756	2024-07-03	09:29:31.8742399	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3623\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALEX\r\nFullName: ALEX DE CHAVEZ SALAZAR\r\nGender: Male\r\nLastName: SALAZAR\r\nMaidenName: \r\nMiddleName: DE CHAVEZ\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
760757	2024-07-03	09:29:31.8742399	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3623\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ARMANDO\r\nFullName: ARMANDO CRUZ LEIS\r\nGender: Male\r\nLastName: LEIS\r\nMaidenName: \r\nMiddleName: CRUZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760758	2024-07-03	09:29:31.8742399	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3623\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PACITA\r\nFullName: PACITA BORBON MANGUERRA\r\nGender: Male\r\nLastName: MANGUERRA\r\nMaidenName: \r\nMiddleName: BORBON\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760759	2024-07-03	09:29:31.8752403	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3623\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
760760	2024-07-03	09:33:56.6908274	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF SCIENCE IN PSYCHOLOGY\r\nLevel: College\r\n	admin	Courses	1
760761	2024-07-03	09:34:55.3379628	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER OF ARTS IN PSYCHOLOGY\r\nLevel: Master's\r\n	admin	Courses	1
760763	2024-07-03	09:52:43.1012574	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3623\r\nDateOfExamination: October 23, 2016\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: October 23, 2016\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS NATIONAL HIGH SCHOOL \r\nRating: 82.15\r\nTitle: CAREER SERVICE PROFESSIONAL \r\n	admin	Eligibilities	1
760764	2024-07-03	09:52:43.1063083	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3623\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 08, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: ADMINISTRATIVE OFFICER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: July 03, 2024\r\n	admin	Experiences	1
760765	2024-07-03	09:52:43.1102614	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3623\r\nCompanyInstitution: PERSONNEL UNIT / DEPARTMENT OF EDUCATION BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 21,211.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-1\r\nStatus: Permanent\r\nToDate: January 07, 2024\r\n	admin	Experiences	1
760766	2024-07-03	09:52:43.1152594	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3623\r\nCompanyInstitution: PERSONNEL UNIT / DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 21,211.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
760767	2024-07-03	09:52:43.1192591	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3623\r\nCompanyInstitution: PERSONNEL UNIT / DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 20,402.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
760768	2024-07-03	09:52:43.1237652	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3623\r\nCompanyInstitution: PERSONNEL UNIT / DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: November 23, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 19,593.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
760769	2024-07-03	09:52:43.1287665	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3623\r\nCompanyInstitution: ACCOUNTING / BATANGAS STATE UNIVERSITY \r\nExperienceId: 0\r\nFromDate: August 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 21,901.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 8-1\r\nStatus: Job Order\r\nToDate: November 19, 2021\r\n	admin	Experiences	1
760770	2024-07-03	09:52:43.1327661	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3623\r\nCompanyInstitution: ACCOUNTING / BATANGAS STATE UNIVERSITY\r\nExperienceId: 0\r\nFromDate: January 04, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 19,439.00\r\nPositionHeld: ADMINISTRATIVE AIDE VI\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 6-1\r\nStatus: Job Order\r\nToDate: July 31, 2021\r\n	admin	Experiences	1
760771	2024-07-03	09:52:43.1367653	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3623\r\nCompanyInstitution: ACCOUNTING / BATANGAS STATE UNIVERSITY\r\nExperienceId: 0\r\nFromDate: January 02, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 18,629.00\r\nPositionHeld: ADMINISTRATIVE AIDE VI \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 6-1\r\nStatus: Job Order\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
760772	2024-07-03	09:52:43.1407654	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3623\r\nCompanyInstitution: ACCOUNTING / BATANGAS STATE UNIVERSITY\r\nExperienceId: 0\r\nFromDate: January 03, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 17,816.00\r\nPositionHeld: ADMINISTRATIVE AIDE VI \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 6-1\r\nStatus: Job Order\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
760773	2024-07-03	09:52:43.1457667	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3623\r\nCompanyInstitution: ACCOUNTING / BATANGAS STATE UNIVERSITY\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 14,340.00\r\nPositionHeld: ADMINISTRATIVE AIDE VI \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 6-1\r\nStatus: Job Order\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
771102	2025-03-17	16:00:28.7743757	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3795\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
760774	2024-07-03	09:52:43.1507662	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3623\r\nCompanyInstitution: ACCOUNTING / BATANGAS STATE UNIVERSITY\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 14,000.00\r\nPositionHeld: ADMINISTRATIVE AIDE VI \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 6-1\r\nStatus: Job Order\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
760775	2024-07-03	09:52:43.1547659	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3623\r\nCompanyInstitution: ACCOUNTING / BATANGAS STATE UNIVERSITY\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 13,000.00\r\nPositionHeld: ADMINISTRATIVE AIDE VI \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 6-1\r\nStatus: Job Order\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
760776	2024-07-03	09:52:43.1587657	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3623\r\nCompanyInstitution: ACCOUNTING / BATANGAS STATE UNIVERSITY\r\nExperienceId: 0\r\nFromDate: May 27, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 12,000.00\r\nPositionHeld: ADMINISTRATIVE AIDE VI \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 6-1\r\nStatus: Job Order\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
760777	2024-07-03	09:52:43.1637664	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: #067\r\nAddress2: \r\nBarangay: TULO II\r\nBasicInformationId: 3623\r\nBirthDate: February 14, 1993\r\nBirthPlace: BATANGAS CITY\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: EVANGELINE.LEIS@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: EVANGELINE\r\nFullName: EVANGELINE L. SALAZAR\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.05\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SALAZAR\r\nMaidenName: \r\nMiddleName: LEIS\r\nMobileNumber: 09959763336\r\nNationality: Filipino\r\nPermanentAddress1: #067\r\nPermanentAddress2: \r\nPermanentBarangay: TULO II\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: PROVINCE\r\nPermanentStreetName: SITIO KANLURAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: PROVINCE\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: SITIO KANLURAN\r\nTIN: \r\nWeight: 45\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: #067\r\nAddress2: \r\nBarangay: TULO II\r\nBasicInformationId: 3623\r\nBirthDate: February 14, 1993\r\nBirthPlace: BATANGAS CITY\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: EVANGELINE.LEIS@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: EVANGELINE\r\nFullName: EVANGELINE L. SALAZAR\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.05\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SALAZAR\r\nMaidenName: \r\nMiddleName: LEIS\r\nMobileNumber: 09959763336\r\nNationality: Filipino\r\nPermanentAddress1: #067\r\nPermanentAddress2: \r\nPermanentBarangay: TULO II\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: PROVINCE\r\nPermanentStreetName: SITIO KANLURAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: PROVINCE\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO KANLURAN\r\nTIN: \r\nWeight: 45\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760778	2024-07-03	09:52:43.1677658	<Undetected>	Update	BasicInformationId: 3623\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3330\r\nExtensionName: \r\nFirstName: ALEX\r\nFullName: ALEX DE CHAVEZ SALAZAR\r\nGender: Male\r\nLastName: SALAZAR\r\nMaidenName: \r\nMiddleName: DE CHAVEZ\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3623\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3330\r\nExtensionName: \r\nFirstName: ALEX\r\nFullName: ALEX SALAZAR\r\nGender: Male\r\nLastName: SALAZAR\r\nMaidenName: \r\nMiddleName: DE CHAVEZ\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
760779	2024-07-03	09:52:43.1727662	<Undetected>	Update	BasicInformationId: 3623\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3331\r\nExtensionName: \r\nFirstName: ARMANDO\r\nFullName: ARMANDO CRUZ LEIS\r\nGender: Male\r\nLastName: LEIS\r\nMaidenName: \r\nMiddleName: CRUZ\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3623\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3331\r\nExtensionName: \r\nFirstName: ARMANDO\r\nFullName: ARMANDO LEIS\r\nGender: Male\r\nLastName: LEIS\r\nMaidenName: \r\nMiddleName: CRUZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760780	2024-07-03	09:52:43.1767679	<Undetected>	Update	BasicInformationId: 3623\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3332\r\nExtensionName: \r\nFirstName: PACITA\r\nFullName: PACITA BORBON MANGUERRA\r\nGender: Male\r\nLastName: MANGUERRA\r\nMaidenName: \r\nMiddleName: BORBON\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3623\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3332\r\nExtensionName: \r\nFirstName: PACITA\r\nFullName: PACITA MANGUERRA\r\nGender: Male\r\nLastName: MANGUERRA\r\nMaidenName: \r\nMiddleName: BORBON\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760781	2024-07-03	09:52:43.1817664	<Undetected>	Update	BasicInformationId: 3623\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3420\r\n	BasicInformationId: 3623\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3420\r\n	admin	Questionnaires	1
760784	2024-07-03	09:56:41.3824714	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CLUSTER 3- TRAINING OF TRAINERS ON THE PAYROLL POCESSES, PROCEDURES AND POLICIES FOR THE DOWNLOADING PAYROLLS TO SCHOOLS DIVISION OFFICES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760785	2024-07-03	09:59:42.5850323	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PRACTICING COVID- 19 PREVENTIVE MEASURES IN THE WORKPLACE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760786	2024-07-03	10:01:35.3529750	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WEBINAR ON DATA SECURITY AND PROTECTION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760787	2024-07-03	10:04:24.1370221	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: COMPLETED STAFF WORK\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760782	2024-07-03	09:52:54.2420879	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: THE CHANGING LANDSCAPE OF FILIPINO COUNSELLING AND PSYCHOTHERAPY: KEY ISSUES AND NEXT STEPS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760783	2024-07-03	09:56:22.3209961	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INTERNATIONAL SEMINAR WORKSHOP ON CONTINUOUS BUILDING COMPETENCE FOR NON-TEACHING PERSONNEL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760789	2024-07-03	10:07:06.4748020	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 116\r\nAddress2: TWINVILLA\r\nBarangay: KUMINTANG ILAYA\r\nBasicInformationId: 0\r\nBirthDate: March 15, 1998\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: angelo.briones@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANGELO\r\nFullName: ANGELO B. BRIONES\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005866454\r\nHDMF: 1212-4125-8236\r\nHeight: 174\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BRIONES\r\nMaidenName: \r\nMiddleName: BABAO\r\nMobileNumber: 09175026303\r\nNationality: Filipino\r\nPermanentAddress1: 116\r\nPermanentAddress2: TWINVILLA\r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ARGON\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-250002652-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-4173007-8\r\nStreetName: ARGON\r\nTIN: 736-700-137-0000\r\nWeight: 91\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760790	2024-07-03	10:07:06.6811883	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3624\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2002\r\nDateTo: 2010\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: KUMINTANG CENTRAL ELEMENTARY SCHOOL\r\nYearGraduated: 2010\r\n	admin	EducationalBackgrounds	1
760791	2024-07-03	10:07:06.6851749	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3624\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2010\r\nDateTo: 2014\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAINT BRIDGET  COLLEGE\r\nYearGraduated: 2014\r\n	admin	EducationalBackgrounds	1
760792	2024-07-03	10:07:06.6891605	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3624\r\nCourse: \r\nCourseId: 1271\r\nCourseOrMajor: \r\nDateFrom: 2014\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
760793	2024-07-03	10:07:06.6931469	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3624\r\nCourse: \r\nCourseId: 1260\r\nCourseOrMajor: \r\nDateFrom: 2020\r\nDateTo: 2024\r\nEducationalAttainment: 30 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
760794	2024-07-03	10:07:06.6971335	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3624\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SERGIO\r\nFullName: SERGIO MAGTIBAY BRIONES\r\nGender: Male\r\nLastName: BRIONES\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760795	2024-07-03	10:07:06.7021172	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3624\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EDELYN\r\nFullName: EDELYN BOONGALING BABAO\r\nGender: Female\r\nLastName: BABAO\r\nMaidenName: \r\nMiddleName: BOONGALING\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760796	2024-07-03	10:07:06.7061450	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3624\r\nEmployeeTrainingId: 0\r\nFromDate: October 13, 2023\r\nHours: 50\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: UDEMY/SIMON SEZ\r\nStatus: \r\nToDate: November 05, 2023\r\nTrainingId: 15206\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760797	2024-07-03	10:07:06.7101350	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3624\r\nEmployeeTrainingId: 0\r\nFromDate: October 07, 2023\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: PSYCHOLOGICAL ASSOCIATION OF THE PHILIPPINES\r\nStatus: \r\nToDate: October 07, 2023\r\nTrainingId: 15207\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760798	2024-07-03	10:07:06.7141233	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3624\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOL DIVISION OFFICE OF BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15113\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771103	2025-03-17	16:00:28.7793754	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3795\r\nSkillId: 0\r\nSkillName: DESIGNING\r\n	admin	Skills	1
760788	2024-07-03	10:06:52.9990487	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: LAWS AND RULES ON GOVERNMENT EXPENDITURES ( LARGE ) WITH ACCOUNTABILITY AND RESPONSIBILITY OVER GOVERNMENT FUNDS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760821	2024-07-03	10:08:35.0485312	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CORPORATE COMPETENCE MANAGEMENT COMMUNICATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760822	2024-07-03	10:11:14.4320490	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ISO 9001: 2015 QUALITY MANAGEMENT SYSTEM ( QMS) AWARENESS SEMINAR\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760823	2024-07-03	10:13:08.1279797	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SEMINAR WORKSHOP ON 5S OF GOOD HOUSEKEEPING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760824	2024-07-03	10:15:24.7709636	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3623\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OFFICE BATANGAS CITY \r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15141\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760825	2024-07-03	10:15:24.7749626	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3623\r\nEmployeeTrainingId: 0\r\nFromDate: May 23, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION CENTRAL OFFICE \r\nStatus: \r\nToDate: May 25, 2023\r\nTrainingId: 15209\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760826	2024-07-03	10:15:24.7799607	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3623\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OFFICE OF BATANGAS  CITY \r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15047\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760827	2024-07-03	10:15:24.7839610	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3623\r\nEmployeeTrainingId: 0\r\nFromDate: June 05, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: TECHNICAL EDUCATION AND SKILLS DEVELOPMENT AUTHORITY \r\nStatus: \r\nToDate: June 05, 2022\r\nTrainingId: 15210\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760828	2024-07-03	10:15:24.7889610	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3623\r\nEmployeeTrainingId: 0\r\nFromDate: September 02, 2020\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: BATANGAS STATE UNIVERSITY\r\nStatus: \r\nToDate: September 02, 2020\r\nTrainingId: 15211\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760829	2024-07-03	10:15:24.7929627	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3623\r\nEmployeeTrainingId: 0\r\nFromDate: July 18, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: BATANGAS STATE UNIVERSITY\r\nStatus: \r\nToDate: July 19, 2019\r\nTrainingId: 15212\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760830	2024-07-03	10:15:24.7969608	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3623\r\nEmployeeTrainingId: 0\r\nFromDate: August 01, 2018\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: BATANGAS STATE UNIVERSITY\r\nStatus: \r\nToDate: August 03, 2018\r\nTrainingId: 15213\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760831	2024-07-03	10:15:24.8009607	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3623\r\nEmployeeTrainingId: 0\r\nFromDate: May 29, 2018\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: BATANGAS STATE UNIVERSITY \r\nStatus: \r\nToDate: May 30, 2018\r\nTrainingId: 15214\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760832	2024-07-03	10:15:24.8059607	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3623\r\nEmployeeTrainingId: 0\r\nFromDate: May 24, 2018\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: BATANGAS STATE UNIVERSITY \r\nStatus: \r\nToDate: May 24, 2018\r\nTrainingId: 15215\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760833	2024-07-03	10:15:24.8099621	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3623\r\nEmployeeTrainingId: 0\r\nFromDate: February 14, 2018\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: BATANGAS STATE UNIVERSITY \r\nStatus: \r\nToDate: February 14, 2018\r\nTrainingId: 15216\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760836	2024-07-03	10:24:50.5735427	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3623\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS STATE UNIVERSITY\r\nCompanyName: \r\nContactNumber: 980-0385 loc. 1911\r\nExtensionName: \r\nFirstName: KATHLEEN \r\nLastName: FANOJA\r\nMiddleName: F\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760901	2024-07-03	10:56:59.8505498	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3627\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
760799	2024-07-03	10:07:06.7181049	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3624\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOL DIVISION OFFICE OF BATANGAS CITY\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760800	2024-07-03	10:07:06.7220907	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3624\r\nEmployeeTrainingId: 0\r\nFromDate: March 18, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: CENTER FOR HUMAN RESEARCH AND DEVELOPMENT FOUNDATION, INC.\r\nStatus: \r\nToDate: March 25, 2023\r\nTrainingId: 15208\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760801	2024-07-03	10:07:06.7260371	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3624\r\nEmployeeTrainingId: 0\r\nFromDate: February 20, 2023\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOL DIVISION OFFICE OF BATANGAS CITY\r\nStatus: \r\nToDate: February 20, 2023\r\nTrainingId: 15114\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760802	2024-07-03	10:07:06.7310207	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3624\r\nCharacterReferenceId: 0\r\nCompanyAddress: KUMINTANG IBABA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09213916440\r\nExtensionName: \r\nFirstName: FRANCIS ALBERT\r\nLastName: TAMAYO\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760803	2024-07-03	10:07:06.7350070	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3624\r\nCharacterReferenceId: 0\r\nCompanyAddress: MATALA, IBAAN BATANGAS\r\nCompanyName: \r\nContactNumber: 09486200370\r\nExtensionName: \r\nFirstName: JOSHUA MARI\r\nLastName: LAPERA\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760804	2024-07-03	10:07:06.7389937	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3624\r\nCharacterReferenceId: 0\r\nCompanyAddress: TAYSAN, BATANGAS\r\nCompanyName: \r\nContactNumber: 09272140670\r\nExtensionName: \r\nFirstName: SHEENA WELLA \r\nLastName: ARGUELLES\r\nMiddleName: G\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760805	2024-07-03	10:07:06.7429804	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3624\r\nDateOfExamination: March 18, 2018\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: March 18, 2018\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS STATE UNIVERSITY\r\nRating: 80.5%\r\nTitle: CAREER SERVICE PROFESSIONAL\r\n	admin	Eligibilities	1
760806	2024-07-03	10:07:06.7469671	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3624\r\nDateOfExamination: November 14, 2019\r\nDateOfRelease: March 15, 2022\r\nEligibilityDocumentTypeId: 0\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: November 14, 2019\r\nLevelOfEligibility: \r\nLicenseNumber: 018843\r\nPlaceOfExamination: PROFESSIONAL REGULATION COMMISSION\r\nRating: 77.4%\r\nTitle: REGISTERED PSYCHOMETRICIAN\r\n	admin	Eligibilities	1
760807	2024-07-03	10:07:06.7509544	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3624\r\nCompanyInstitution: ALANGILAN CENTRAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 08, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: PROJECT DEVELOPMENT OFFICER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: July 03, 2024\r\n	admin	Experiences	1
760808	2024-07-03	10:07:06.7549412	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3624\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: December 05, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 17,553.00\r\nPositionHeld: ADMINISTRATIVE AIDE VI\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 6-1\r\nStatus: Permanent\r\nToDate: January 07, 2024\r\n	admin	Experiences	1
760809	2024-07-03	10:07:06.7589280	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3624\r\nCompanyInstitution: BATANGAS CITY INTEGRATED HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: February 08, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 13,572.00\r\nPositionHeld: ADMINISTRATIVE AIDE III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 3-1\r\nStatus: Permanent\r\nToDate: December 04, 2022\r\n	admin	Experiences	1
760810	2024-07-03	10:07:06.7639105	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3624\r\nCompanyInstitution: BATANGAS MEDICAL CENTER/PROCUREMENT SECTION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 17,505.00\r\nPositionHeld: ADMINISTRATIVE ASSSISTANT II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 8-1\r\nStatus: Contractual\r\nToDate: January 31, 2021\r\n	admin	Experiences	1
760911	2024-07-03	11:03:17.1496917	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3627\r\nSkillId: 0\r\nSkillName: HOUSEKEEPING\r\n	admin	Skills	1
760811	2024-07-03	10:07:06.7678971	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3624\r\nCompanyInstitution: BATANGAS MEDICAL CENTER/ PROCUREMENT SECTION\r\nExperienceId: 0\r\nFromDate: December 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 17,505.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 8-1\r\nStatus: Contractual\r\nToDate: December 21, 2020\r\n	admin	Experiences	1
760812	2024-07-03	10:07:06.7718848	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3624\r\nCompanyInstitution: BATANGAS MEDICAL CENTER/ PROCUREMENT SECTION\r\nExperienceId: 0\r\nFromDate: September 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 17,505.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 8-1\r\nStatus: Contractual\r\nToDate: November 30, 2020\r\n	admin	Experiences	1
760813	2024-07-03	10:07:06.7758713	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3624\r\nCompanyInstitution: BATANGAS MEDICAL CENTER/ PROCUREMENT SECTION\r\nExperienceId: 0\r\nFromDate: June 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 13,807.00\r\nPositionHeld: ADMINISTRATIVE AIDE IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-1\r\nStatus: Contractual\r\nToDate: August 31, 2020\r\n	admin	Experiences	1
760814	2024-07-03	10:07:06.7798580	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3624\r\nCompanyInstitution: CASTORAMA MANINVEST SERVICES SPECIALIST INCORPORATED\r\nExperienceId: 0\r\nFromDate: May 06, 2019\r\nIsGovernmentService: False\r\nMonthlySalary: 12,000.00\r\nPositionHeld: HUMAN RESOURCE ASSISTANT\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: January 31, 2020\r\n	admin	Experiences	1
760815	2024-07-03	10:07:06.7848417	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3624\r\nCompanyInstitution: CASTORAMA MANINVEST SERVICES SPECIALIST INCORPORATED\r\nExperienceId: 0\r\nFromDate: February 06, 2019\r\nIsGovernmentService: False\r\nMonthlySalary: 10,000.00\r\nPositionHeld: HUMAN RESOURCE STAFF\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Probationary\r\nToDate: May 06, 2019\r\n	admin	Experiences	1
760816	2024-07-03	10:07:06.7888281	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3624\r\nSkillId: 0\r\nSkillName: ADOBE PHOTOSHOP\r\n	admin	Skills	1
760817	2024-07-03	10:07:06.7928147	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3624\r\nRecognitionId: 0\r\nRecognitionName: BEST RESEARCH PAPER- SOCIAL SCIENCES CATEGORY (BATANGAS STATE UNIVERSITY 11TH COLLEGE OF ARTS AND SCIENCES STUDENT RESEARCH FORUM)\r\n	admin	Recognitions	1
760818	2024-07-03	10:07:06.7968013	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3624\r\nRecognitionId: 0\r\nRecognitionName: PAPER PRESENTER- 57TH ANNUAL NATIONAL PSYCHOLOGICAL ASSOCIATION OF THE PHILIPPINES CONVENTION\r\n	admin	Recognitions	1
760819	2024-07-03	10:07:06.8017848	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3624\r\nOrganizationId: 0\r\nOrganizationName: PSYCHOLOGICAL ASSOCIATION OF THE PHILIPPINES\r\n	admin	Organizations	1
760820	2024-07-03	10:07:06.8057715	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3624\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
760834	2024-07-03	10:20:38.6567972	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CONDUCT OF FIRST GAWAD KAWANI\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760835	2024-07-03	10:23:51.4716646	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ATTENDING PHYSICAL WELLNESS ACTIVITIES FOR EMPLOYEES WELFARE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760837	2024-07-03	10:24:50.5775392	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3623\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS STATE UNIVERSITY \r\nCompanyName: \r\nContactNumber: 980-0385 loc. 1988\r\nExtensionName: \r\nFirstName: RICHELL \r\nLastName: CASAO\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760838	2024-07-03	10:24:50.5840415	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3623\r\nCharacterReferenceId: 0\r\nCompanyAddress: DEPED BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 702- 2094 loc. 101\r\nExtensionName: \r\nFirstName: LEAH \r\nLastName: CELEMIN  \r\nMiddleName: M \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760839	2024-07-03	10:24:50.5890443	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: #067\r\nAddress2: \r\nBarangay: TULO II\r\nBasicInformationId: 3623\r\nBirthDate: February 14, 1993\r\nBirthPlace: BATANGAS CITY\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: EVANGELINE.LEIS@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: EVANGELINE\r\nFullName: EVANGELINE L. SALAZAR\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.05\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SALAZAR\r\nMaidenName: \r\nMiddleName: LEIS\r\nMobileNumber: 09959763336\r\nNationality: Filipino\r\nPermanentAddress1: #067\r\nPermanentAddress2: \r\nPermanentBarangay: TULO II\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: PROVINCE\r\nPermanentStreetName: SITIO KANLURAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: PROVINCE\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO KANLURAN\r\nTIN: \r\nWeight: 45\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: #067\r\nAddress2: \r\nBarangay: TULO II\r\nBasicInformationId: 3623\r\nBirthDate: February 14, 1993\r\nBirthPlace: BATANGAS CITY\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: EVANGELINE.LEIS@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: EVANGELINE\r\nFullName: EVANGELINE L. SALAZAR\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005979456\r\nHDMF: 1210-9831-9572\r\nHeight: 1.05\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SALAZAR\r\nMaidenName: \r\nMiddleName: LEIS\r\nMobileNumber: 09959763336\r\nNationality: Filipino\r\nPermanentAddress1: #067\r\nPermanentAddress2: \r\nPermanentBarangay: TULO II\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: PROVINCE\r\nPermanentStreetName: SITIO KANLURAN\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050381590-6\r\nProvince: PROVINCE\r\nReligion: \r\nSalutation: \r\nSSS: 04-2733275-9\r\nStreetName: SITIO KANLURAN\r\nTIN: 440-210-107-0000\r\nWeight: 45\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760840	2024-07-03	10:24:50.5930456	<Undetected>	Update	BasicInformationId: 3623\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3420\r\n	BasicInformationId: 3623\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3420\r\n	admin	Questionnaires	1
760841	2024-07-03	10:28:56.7767390	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING-WORKSHOP ON QUALITY MANAGEMENT SYSTEM FOCUSED ON SEVEN S (7S)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760842	2024-07-03	10:30:11.9922963	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ROVER ORIENTATION, VIGIL AND INVESTITURE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760843	2024-07-03	10:34:40.8026981	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: ALANGILAN\r\nBasicInformationId: 0\r\nBirthDate: December 12, 1995\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: JEFFERSON.MARANAN@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: JEFFERSON\r\nFullName: JEFFERSON DC. MARANAN\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.68\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nMobileNumber: 09684929538\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: LABAC\r\nTIN: \r\nWeight: 58\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760844	2024-07-03	10:34:40.8168268	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3625\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: TERESA\r\nFullName: TERESA SANDOVAL MARANAN\r\nGender: Male\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: SANDOVAL\r\nOccupation: \r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
760845	2024-07-03	10:34:40.8168268	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3625\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ARNEL\r\nFullName: ARNEL NOBLEJAS MARANAN\r\nGender: Male\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: NOBLEJAS\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760862	2024-07-03	10:38:30.7996506	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3626\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760846	2024-07-03	10:34:40.8168268	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3625\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: AGNES\r\nFullName: AGNES ALVAREZ DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: ALVAREZ\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760847	2024-07-03	10:34:40.8168268	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3625\r\nBirthDate: April 01, 2020\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JAN JESTER\r\nFullName: JAN JESTER S MARANAN\r\nGender: Male\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760848	2024-07-03	10:34:40.8168268	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3625\r\nBirthDate: February 22, 2022\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: YNAH\r\nFullName: YNAH S MARANAN\r\nGender: Male\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760849	2024-07-03	10:34:40.8168268	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3625\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
760850	2024-07-03	10:38:30.5606486	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: CUTA\r\nBasicInformationId: 0\r\nBirthDate: June 01, 1985\r\nBirthPlace: CUTA BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: michelledayao06@gmail.com\r\nExtensionName: \r\nFirstName: MICHELLE\r\nFullName: MICHELLE S. DAYAO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006270120\r\nHDMF: 1212-6093-4264\r\nHeight: 1.4\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DAYAO\r\nMaidenName: \r\nMiddleName: SANCHEZ\r\nMobileNumber: 09661725485\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: CUTA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO MALIGAYA\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025298000-1\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO MALIGAYA\r\nTIN: 480-819-212-0000\r\nWeight: 56\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760851	2024-07-03	10:38:30.7548009	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3626\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1990\r\nDateTo: 1997\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: JULIAN A. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nYearGraduated: 1997\r\n	admin	EducationalBackgrounds	1
760852	2024-07-03	10:38:30.7587874	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3626\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2018\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS CITY EAST ELEMENTARY SCHOOL\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
760853	2024-07-03	10:38:30.7627741	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3626\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOEL\r\nFullName: JOEL ACLAN DAYAO\r\nGender: Male\r\nLastName: DAYAO\r\nMaidenName: \r\nMiddleName: ACLAN\r\nOccupation: MASON\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
760854	2024-07-03	10:38:30.7667606	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3626\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PAQUITO\r\nFullName: PAQUITO BEPINOSO SANCHEZ\r\nGender: Male\r\nLastName: SANCHEZ\r\nMaidenName: \r\nMiddleName: BEPINOSO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760855	2024-07-03	10:38:30.7707471	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3626\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ZENAIDA\r\nFullName: ZENAIDA PESTAÑO LANOT\r\nGender: Female\r\nLastName: LANOT\r\nMaidenName: \r\nMiddleName: PESTAÑO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760856	2024-07-03	10:38:30.7757310	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3626\r\nBirthDate: August 04, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOHN MICHAEL\r\nFullName: JOHN MICHAEL SANCHEZ DAYAO\r\nGender: Male\r\nLastName: DAYAO\r\nMaidenName: \r\nMiddleName: SANCHEZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760857	2024-07-03	10:38:30.7797177	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3626\r\nEmployeeTrainingId: 0\r\nFromDate: December 11, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: December 12, 2023\r\nTrainingId: 15217\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760858	2024-07-03	10:38:30.7837039	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3626\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BULWAGANG ALA-EH, SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760859	2024-07-03	10:38:30.7876906	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3626\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15113\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760860	2024-07-03	10:38:30.7916775	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3626\r\nEmployeeTrainingId: 0\r\nFromDate: August 24, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: BATANGAS CITY INTEGRATED HIGH SCHOOL\r\nStatus: \r\nToDate: August 24, 2023\r\nTrainingId: 15218\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760861	2024-07-03	10:38:30.7956639	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3626\r\nEmployeeTrainingId: 0\r\nFromDate: July 05, 2023\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 05, 2023\r\nTrainingId: 15182\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760863	2024-07-03	10:38:30.8046345	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3626\r\nEmployeeTrainingId: 0\r\nFromDate: June 30, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: June 30, 2022\r\nTrainingId: 15050\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760864	2024-07-03	10:38:30.8086209	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3626\r\nEmployeeTrainingId: 0\r\nFromDate: March 31, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BOY SCOUT OF THE PHILIPPINES\r\nStatus: \r\nToDate: March 31, 2022\r\nTrainingId: 15220\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760865	2024-07-03	10:38:30.8126073	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3626\r\nEmployeeTrainingId: 0\r\nFromDate: December 12, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: December 13, 2019\r\nTrainingId: 15059\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760866	2024-07-03	10:38:30.8165953	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3626\r\nEmployeeTrainingId: 0\r\nFromDate: December 27, 2018\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: February 14, 2019\r\nTrainingId: 15160\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760867	2024-07-03	10:38:30.8205819	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3626\r\nCharacterReferenceId: 0\r\nCompanyAddress: MAHABANG PARANG, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09333174959\r\nExtensionName: \r\nFirstName: DELMAR\r\nLastName: RAMOS\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760868	2024-07-03	10:38:30.8255643	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3626\r\nCharacterReferenceId: 0\r\nCompanyAddress: CALICANTO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09178552388\r\nExtensionName: \r\nFirstName: LOURDES\r\nLastName: ZARASPE\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760869	2024-07-03	10:38:30.8295508	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3626\r\nCharacterReferenceId: 0\r\nCompanyAddress: TULO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09999445028\r\nExtensionName: \r\nFirstName: RICHELLE\r\nLastName: DELA CRUZ\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760870	2024-07-03	10:38:30.8335373	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3626\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: March 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 13,000.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-1\r\nStatus: Permanent\r\nToDate: July 03, 2024\r\n	admin	Experiences	1
760871	2024-07-03	10:38:30.8375691	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3626\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: False\r\nMonthlySalary: 12,034.00\r\nPositionHeld: ADMINISTRTAIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: February 28, 2023\r\n	admin	Experiences	1
760872	2024-07-03	10:38:30.8415574	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3626\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: False\r\nMonthlySalary: 12,034.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
760873	2024-07-03	10:38:30.8464941	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3626\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: False\r\nMonthlySalary: 12,034.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
760874	2024-07-03	10:38:30.8504808	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3626\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: False\r\nMonthlySalary: 450.00\r\nPositionHeld: ADMINISTRATIVE AIDE\r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
760875	2024-07-03	10:38:30.8544680	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3626\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: False\r\nMonthlySalary: 450.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
760912	2024-07-03	11:03:17.1536783	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3627\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
760876	2024-07-03	10:38:30.8584949	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3626\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: False\r\nMonthlySalary: 350.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
760877	2024-07-03	10:38:30.8624815	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3626\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: False\r\nMonthlySalary: 350.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
760878	2024-07-03	10:38:30.8674640	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3626\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 11, 2016\r\nIsGovernmentService: False\r\nMonthlySalary: 350.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
760879	2024-07-03	10:38:30.8714581	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3626\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
760880	2024-07-03	10:38:30.8753972	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3626\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
760881	2024-07-03	10:50:52.8450315	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 DIVISION WOMEN'S MONTH CELEBRATION- JINGLE MAKING CONTEST\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760882	2024-07-03	10:53:21.8764500	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PHYSICAL WELLNESS ACTIVITIES FOR EMPLOYEES WELFARE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760883	2024-07-03	10:56:59.6550429	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: HALIGUE KANLURAN\r\nBasicInformationId: 0\r\nBirthDate: December 26, 1980\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: maryann.mangubat@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARY ANN\r\nFullName: MARY ANN A. MANGUBAT\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MANGUBAT\r\nMaidenName: \r\nMiddleName: ACUNA\r\nMobileNumber: 09057744816\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: HALIGUE KANLURAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760884	2024-07-03	10:56:59.7797864	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3627\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1987\r\nDateTo: 1994\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: ILIJAN ELEMENTARY SCHOOL\r\nYearGraduated: 1994\r\n	admin	EducationalBackgrounds	1
760885	2024-07-03	10:56:59.7837731	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3627\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 1998\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: STO. NINO NATIONAL HIGH SCHOOL\r\nYearGraduated: 1998\r\n	admin	EducationalBackgrounds	1
760886	2024-07-03	10:56:59.7887566	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3627\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PELAGIA\r\nFullName: PELAGIA BAJA SANCHEZ\r\nGender: Female\r\nLastName: SANCHEZ\r\nMaidenName: \r\nMiddleName: BAJA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760887	2024-07-03	10:56:59.7927433	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3627\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GORGONIO\r\nFullName: GORGONIO MANALO ACUNA\r\nGender: Male\r\nLastName: ACUNA\r\nMaidenName: \r\nMiddleName: MANALO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760888	2024-07-03	10:56:59.7967299	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3627\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PELAGIA\r\nFullName: PELAGIA BAJA SANCHEZ\r\nGender: Female\r\nLastName: SANCHEZ\r\nMaidenName: \r\nMiddleName: BAJA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760889	2024-07-03	10:56:59.8007165	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3627\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JAYSON\r\nFullName: JAYSON OLOTEO MANGUBAT\r\nGender: Male\r\nLastName: MANGUBAT\r\nMaidenName: \r\nMiddleName: OLOTEO\r\nOccupation: UTILITY\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
760890	2024-07-03	10:56:59.8047031	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3627\r\nBirthDate: May 09, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SKARLETTE\r\nFullName: SKARLETTE ACUNA MANGUBAT\r\nGender: Female\r\nLastName: MANGUBAT\r\nMaidenName: \r\nMiddleName: ACUNA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760891	2024-07-03	10:56:59.8096867	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3627\r\nBirthDate: April 20, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CLARISSE\r\nFullName: CLARISSE ACUNA MANGUBAT\r\nGender: Female\r\nLastName: MANGUBAT\r\nMaidenName: \r\nMiddleName: ACUNA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760892	2024-07-03	10:56:59.8136732	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3627\r\nBirthDate: August 17, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CYRUZ\r\nFullName: CYRUZ ACUNA MANGUBAT\r\nGender: Male\r\nLastName: MANGUBAT\r\nMaidenName: \r\nMiddleName: ACUNA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760893	2024-07-03	10:56:59.8176597	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3627\r\nBirthDate: April 10, 2010\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JAY\r\nFullName: JAY ACUNA MANGUBAT\r\nGender: Male\r\nLastName: MANGUBAT\r\nMaidenName: \r\nMiddleName: ACUNA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760894	2024-07-03	10:56:59.8216467	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3627\r\nBirthDate: February 02, 2021\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: IVAN\r\nFullName: IVAN ACUNA ASCAN\r\nGender: Male\r\nLastName: ASCAN\r\nMaidenName: \r\nMiddleName: ACUNA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760895	2024-07-03	10:56:59.8256331	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3627\r\nEmployeeTrainingId: 0\r\nFromDate: March 13, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: March 13, 2023\r\nTrainingId: 15221\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760896	2024-07-03	10:56:59.8296198	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3627\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760897	2024-07-03	10:56:59.8336064	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3627\r\nEmployeeTrainingId: 0\r\nFromDate: August 24, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: August 24, 2023\r\nTrainingId: 15222\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760898	2024-07-03	10:56:59.8375930	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3627\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15113\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760899	2024-07-03	10:56:59.8426151	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3627\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 13,000.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-1\r\nStatus: Permanent\r\nToDate: July 03, 2024\r\n	admin	Experiences	1
760900	2024-07-03	10:56:59.8466026	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3627\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: March 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 13,000.00\r\nPositionHeld: ADMINITRATIVE AIDE 1\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
760913	2024-07-03	11:03:17.1576653	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3627\r\nSkillId: 0\r\nSkillName: PHOTOCOPY OPERATOR\r\n	admin	Skills	1
760902	2024-07-03	10:57:07.9318309	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3625\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 13,000.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-1\r\nStatus: Permanent\r\nToDate: July 03, 2024\r\n	admin	Experiences	1
760903	2024-07-03	10:57:07.9428308	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3625\r\nCompanyInstitution: DEPARMNT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 13,000.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
760904	2024-07-03	10:57:07.9478297	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: ALANGILAN\r\nBasicInformationId: 3625\r\nBirthDate: December 12, 1995\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: JEFFERSON.MARANAN@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: JEFFERSON\r\nFullName: JEFFERSON DC. MARANAN\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.68\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nMobileNumber: 09684929538\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: LABAC\r\nTIN: \r\nWeight: 58\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: ALANGILAN\r\nBasicInformationId: 3625\r\nBirthDate: December 12, 1995\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: JEFFERSON.MARANAN@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: JEFFERSON\r\nFullName: JEFFERSON DC. MARANAN\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.68\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nMobileNumber: 09684929538\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LABAC\r\nTIN: \r\nWeight: 58\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760905	2024-07-03	10:57:07.9568312	<Undetected>	Update	BasicInformationId: 3625\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3335\r\nExtensionName: \r\nFirstName: TERESA\r\nFullName: TERESA SANDOVAL MARANAN\r\nGender: Male\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: SANDOVAL\r\nOccupation: \r\nRelationship: Wife\r\n	BasicInformationId: 3625\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3335\r\nExtensionName: \r\nFirstName: TERESA\r\nFullName: TERESA MARANAN\r\nGender: Male\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: SANDOVAL\r\nOccupation: \r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
760906	2024-07-03	10:57:07.9608304	<Undetected>	Update	BasicInformationId: 3625\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3336\r\nExtensionName: \r\nFirstName: ARNEL\r\nFullName: ARNEL NOBLEJAS MARANAN\r\nGender: Male\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: NOBLEJAS\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3625\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3336\r\nExtensionName: \r\nFirstName: ARNEL\r\nFullName: ARNEL MARANAN\r\nGender: Male\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: NOBLEJAS\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760907	2024-07-03	10:57:07.9658307	<Undetected>	Update	BasicInformationId: 3625\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3337\r\nExtensionName: \r\nFirstName: AGNES\r\nFullName: AGNES ALVAREZ DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: ALVAREZ\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3625\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3337\r\nExtensionName: \r\nFirstName: AGNES\r\nFullName: AGNES DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: ALVAREZ\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760908	2024-07-03	10:57:07.9718308	<Undetected>	Update	BasicInformationId: 3625\r\nBirthDate: April 01, 2020\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3338\r\nExtensionName: \r\nFirstName: JAN JESTER\r\nFullName: JAN JESTER S MARANAN\r\nGender: Male\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3625\r\nBirthDate: April 01, 2020\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3338\r\nExtensionName: \r\nFirstName: JAN JESTER\r\nFullName: JAN JESTER MARANAN\r\nGender: Male\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760909	2024-07-03	10:57:07.9758301	<Undetected>	Update	BasicInformationId: 3625\r\nBirthDate: February 22, 2022\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3339\r\nExtensionName: \r\nFirstName: YNAH\r\nFullName: YNAH S MARANAN\r\nGender: Male\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3625\r\nBirthDate: February 22, 2022\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3339\r\nExtensionName: \r\nFirstName: YNAH\r\nFullName: YNAH MARANAN\r\nGender: Male\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760910	2024-07-03	10:57:07.9808307	<Undetected>	Update	BasicInformationId: 3625\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3422\r\n	BasicInformationId: 3625\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3422\r\n	admin	Questionnaires	1
760929	2024-07-03	11:05:10.4123302	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3625\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 12,034.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
760999	2024-07-03	11:33:21.0778564	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING ON CAREER DEVELOPMENT & SUCCESSION MANAGEMENT COM FINANCIAL LITER\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760914	2024-07-03	11:03:17.1626483	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3627\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760915	2024-07-03	11:03:17.1656381	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3627\r\nCharacterReferenceId: 0\r\nCompanyAddress: MAHABANG PARANG, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09333174955\r\nExtensionName: \r\nFirstName: DELMAR\r\nLastName: RAMOS\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760916	2024-07-03	11:03:17.1706216	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3627\r\nCharacterReferenceId: 0\r\nCompanyAddress: LIBJO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 0919109899\r\nExtensionName: \r\nFirstName: MARJORIE\r\nLastName: BURI\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760917	2024-07-03	11:03:17.1746082	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3627\r\nCharacterReferenceId: 0\r\nCompanyAddress: ALANGILAN, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175018522\r\nExtensionName: \r\nFirstName: CHARLES DARREL \r\nLastName: BREGONIA\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760918	2024-07-03	11:03:17.1795919	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: HALIGUE KANLURAN\r\nBasicInformationId: 3627\r\nBirthDate: December 26, 1980\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: maryann.mangubat@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARY ANN\r\nFullName: MARY ANN A. MANGUBAT\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MANGUBAT\r\nMaidenName: \r\nMiddleName: ACUNA\r\nMobileNumber: 09057744816\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: HALIGUE KANLURAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: HALIGUE KANLURAN\r\nBasicInformationId: 3627\r\nBirthDate: December 26, 1980\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: maryann.mangubat@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARY ANN\r\nFullName: MARY ANN A. MANGUBAT\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006270126\r\nHDMF: 1212-3374-4313\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MANGUBAT\r\nMaidenName: \r\nMiddleName: ACUNA\r\nMobileNumber: 09057744816\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: HALIGUE KANLURAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-250811598-0\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-4130649-9\r\nStreetName: \r\nTIN: 372-853-883-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760919	2024-07-03	11:03:17.1835782	<Undetected>	Update	BasicInformationId: 3627\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3344\r\nExtensionName: \r\nFirstName: PELAGIA\r\nFullName: PELAGIA BAJA SANCHEZ\r\nGender: Female\r\nLastName: SANCHEZ\r\nMaidenName: \r\nMiddleName: BAJA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3627\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3344\r\nExtensionName: \r\nFirstName: PELAGIA\r\nFullName: PELAGIA SANCHEZ\r\nGender: Female\r\nLastName: SANCHEZ\r\nMaidenName: \r\nMiddleName: BAJA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760920	2024-07-03	11:03:17.1875649	<Undetected>	Update	BasicInformationId: 3627\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3345\r\nExtensionName: \r\nFirstName: GORGONIO\r\nFullName: GORGONIO MANALO ACUNA\r\nGender: Male\r\nLastName: ACUNA\r\nMaidenName: \r\nMiddleName: MANALO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3627\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3345\r\nExtensionName: \r\nFirstName: GORGONIO\r\nFullName: GORGONIO ACUNA\r\nGender: Male\r\nLastName: ACUNA\r\nMaidenName: \r\nMiddleName: MANALO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760921	2024-07-03	11:03:17.1925483	<Undetected>	Update	BasicInformationId: 3627\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3346\r\nExtensionName: \r\nFirstName: PELAGIA\r\nFullName: PELAGIA BAJA SANCHEZ\r\nGender: Female\r\nLastName: SANCHEZ\r\nMaidenName: \r\nMiddleName: BAJA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3627\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3346\r\nExtensionName: \r\nFirstName: PELAGIA\r\nFullName: PELAGIA SANCHEZ\r\nGender: Female\r\nLastName: SANCHEZ\r\nMaidenName: \r\nMiddleName: BAJA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760922	2024-07-03	11:03:17.1965350	<Undetected>	Update	BasicInformationId: 3627\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3347\r\nExtensionName: \r\nFirstName: JAYSON\r\nFullName: JAYSON OLOTEO MANGUBAT\r\nGender: Male\r\nLastName: MANGUBAT\r\nMaidenName: \r\nMiddleName: OLOTEO\r\nOccupation: UTILITY\r\nRelationship: Husband\r\n	BasicInformationId: 3627\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3347\r\nExtensionName: \r\nFirstName: JAYSON\r\nFullName: JAYSON MANGUBAT\r\nGender: Male\r\nLastName: MANGUBAT\r\nMaidenName: \r\nMiddleName: OLOTEO\r\nOccupation: UTILITY\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
760923	2024-07-03	11:03:17.2005216	<Undetected>	Update	BasicInformationId: 3627\r\nBirthDate: May 09, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3348\r\nExtensionName: \r\nFirstName: SKARLETTE\r\nFullName: SKARLETTE ACUNA MANGUBAT\r\nGender: Female\r\nLastName: MANGUBAT\r\nMaidenName: \r\nMiddleName: ACUNA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3627\r\nBirthDate: May 09, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3348\r\nExtensionName: \r\nFirstName: SKARLETTE\r\nFullName: SKARLETTE MANGUBAT\r\nGender: Female\r\nLastName: MANGUBAT\r\nMaidenName: \r\nMiddleName: ACUNA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761047	2024-07-03	11:48:30.8585849	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3625\r\nCharacterReferenceId: 0\r\nCompanyAddress: MAHABANG DAHILIG, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09333174959\r\nExtensionName: \r\nFirstName: DELMAR\r\nLastName: RAMOS\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760924	2024-07-03	11:03:17.2045083	<Undetected>	Update	BasicInformationId: 3627\r\nBirthDate: April 20, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3349\r\nExtensionName: \r\nFirstName: CLARISSE\r\nFullName: CLARISSE ACUNA MANGUBAT\r\nGender: Female\r\nLastName: MANGUBAT\r\nMaidenName: \r\nMiddleName: ACUNA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3627\r\nBirthDate: April 20, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3349\r\nExtensionName: \r\nFirstName: CLARISSE\r\nFullName: CLARISSE MANGUBAT\r\nGender: Female\r\nLastName: MANGUBAT\r\nMaidenName: \r\nMiddleName: ACUNA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760925	2024-07-03	11:03:17.2084948	<Undetected>	Update	BasicInformationId: 3627\r\nBirthDate: August 17, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3350\r\nExtensionName: \r\nFirstName: CYRUZ\r\nFullName: CYRUZ ACUNA MANGUBAT\r\nGender: Male\r\nLastName: MANGUBAT\r\nMaidenName: \r\nMiddleName: ACUNA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3627\r\nBirthDate: August 17, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3350\r\nExtensionName: \r\nFirstName: CYRUZ\r\nFullName: CYRUZ MANGUBAT\r\nGender: Male\r\nLastName: MANGUBAT\r\nMaidenName: \r\nMiddleName: ACUNA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760926	2024-07-03	11:03:17.2134784	<Undetected>	Update	BasicInformationId: 3627\r\nBirthDate: April 10, 2010\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3351\r\nExtensionName: \r\nFirstName: JAY\r\nFullName: JAY ACUNA MANGUBAT\r\nGender: Male\r\nLastName: MANGUBAT\r\nMaidenName: \r\nMiddleName: ACUNA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3627\r\nBirthDate: April 10, 2010\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3351\r\nExtensionName: \r\nFirstName: JAY\r\nFullName: JAY MANGUBAT\r\nGender: Male\r\nLastName: MANGUBAT\r\nMaidenName: \r\nMiddleName: ACUNA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760927	2024-07-03	11:03:17.2174648	<Undetected>	Update	BasicInformationId: 3627\r\nBirthDate: February 02, 2021\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3352\r\nExtensionName: \r\nFirstName: IVAN\r\nFullName: IVAN ACUNA ASCAN\r\nGender: Male\r\nLastName: ASCAN\r\nMaidenName: \r\nMiddleName: ACUNA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3627\r\nBirthDate: February 02, 2021\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3352\r\nExtensionName: \r\nFirstName: IVAN\r\nFullName: IVAN ASCAN\r\nGender: Male\r\nLastName: ASCAN\r\nMaidenName: \r\nMiddleName: ACUNA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760928	2024-07-03	11:03:17.2224483	<Undetected>	Update	BasicInformationId: 3627\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3424\r\n	BasicInformationId: 3627\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3424\r\n	admin	Questionnaires	1
760939	2024-07-03	11:14:15.2193958	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: ELECTRONICS SERVICEMAN TV AND RADIO RECEIVER\r\nLevel: Vocational\r\n	admin	Courses	1
760943	2024-07-03	11:28:04.3737358	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: TINGA ITAAS\r\nBasicInformationId: 0\r\nBirthDate: May 14, 1974\r\nBirthPlace: SILAY CITY, NEGROS OCCIDENTAL\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ronald.tugado@deped.gov.ph\r\nExtensionName: \r\nFirstName: RONALD\r\nFullName: RONALD L. TUGADO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006272583\r\nHDMF: 1213-1687-0831\r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: TUGADO\r\nMaidenName: \r\nMiddleName: LIMA\r\nMobileNumber: 09184446308\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: TINGA ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO ILAYA, PUROK 5\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025149211-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: 07-1587882-7\r\nStreetName: SITIO ILAYA, PUROK 5\r\nTIN: 623-754-011-0000\r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760944	2024-07-03	11:28:04.5480153	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3628\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1982\r\nDateTo: 1988\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SILAY ELEMENTARY SCHOOL\r\nYearGraduated: 1988\r\n	admin	EducationalBackgrounds	1
760945	2024-07-03	11:28:04.5520020	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3628\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1988\r\nDateTo: 1992\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SILAY INSTITUTE\r\nYearGraduated: 1992\r\n	admin	EducationalBackgrounds	1
760946	2024-07-03	11:28:04.5569857	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3628\r\nCourse: \r\nCourseId: 1273\r\nCourseOrMajor: \r\nDateFrom: 1993\r\nDateTo: 1993\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Vocational Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN TECHNICAL INSTITUTE OF ELECTRONICS\r\nYearGraduated: 1993\r\n	admin	EducationalBackgrounds	1
760947	2024-07-03	11:28:04.5609723	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3628\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RUBILYN\r\nFullName: RUBILYN UNTIVEROS TUGADO\r\nGender: Female\r\nLastName: TUGADO\r\nMaidenName: \r\nMiddleName: UNTIVEROS\r\nOccupation: FISH VENDOR\r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
760948	2024-07-03	11:28:04.5649587	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3628\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARCELINO\r\nFullName: MARCELINO GRANTOS TUGADO\r\nGender: Male\r\nLastName: TUGADO\r\nMaidenName: \r\nMiddleName: GRANTOS\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760930	2024-07-03	11:05:10.4163300	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3625\r\nCompanyInstitution: DEPARMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 31, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 12,034.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
760931	2024-07-03	11:05:10.4223325	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3625\r\nCompanyInstitution: DEPARMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 450.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
760932	2024-07-03	11:05:10.4263338	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3625\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 450.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
760933	2024-07-03	11:05:10.4313325	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3625\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 450.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
760934	2024-07-03	11:05:10.4353325	<Undetected>	Update	BasicInformationId: 3625\r\nCompanyInstitution: DEPARMNT OF EDUCATION\r\nExperienceId: 10148\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 13,000.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	BasicInformationId: 3625\r\nCompanyInstitution: DEPARMNT OF EDUCATION\r\nExperienceId: 10148\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 13,000.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-1\r\nStatus: Permanent\r\nToDate: February 28, 2023\r\n	admin	Experiences	1
760935	2024-07-03	11:10:49.2083660	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3625\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 350.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
760936	2024-07-03	11:10:49.2133652	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3625\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 350.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
760937	2024-07-03	11:10:49.2173653	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3625\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 11, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 350.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
760938	2024-07-03	11:10:49.2223652	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3625\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: March 15, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 350.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
760940	2024-07-03	11:20:06.7071538	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ATTENDING PHYSICAL WELLNESS ACTIVITIES FOR EMPLOYEE'S WELFARE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760941	2024-07-03	11:24:21.7354110	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MEETING WITH ADMINISTRATIVE AIDES I\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760942	2024-07-03	11:27:44.5354024	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING- WORKSHOP ON QUALITY MANAGEMENT SYSTEM FOCUSED ON SEVEN S (S7)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760978	2024-07-03	11:29:33.6773958	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ROVER ORIENTATION,VIGIL AND INVESTITURE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761573	2024-07-04	15:19:33.6803561	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3639\r\nRecognitionId: 0\r\nRecognitionName: MEMBER- DOCUMENT CUSTODIAN COMMITTEE (DCC)- ISO 9001:2015 QUALITY  MANAGEMENT SYSTEM CERTIFICATION- JANUARY 30,2019\r\n	admin	Recognitions	1
760949	2024-07-03	11:28:04.5689453	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3628\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PATERNA\r\nFullName: PATERNA MENDOZA LIMA\r\nGender: Female\r\nLastName: LIMA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760950	2024-07-03	11:28:04.5729320	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3628\r\nBirthDate: January 27, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: KURT DANNIEL\r\nFullName: KURT DANNIEL U TUGADO\r\nGender: Male\r\nLastName: TUGADO\r\nMaidenName: \r\nMiddleName: U\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760951	2024-07-03	11:28:04.5779155	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3628\r\nBirthDate: August 10, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: KENNIEL DRAKE\r\nFullName: KENNIEL DRAKE U TUGADO\r\nGender: Male\r\nLastName: TUGADO\r\nMaidenName: \r\nMiddleName: U\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760952	2024-07-03	11:28:04.5819021	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3628\r\nBirthDate: May 07, 2010\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RONNELYN\r\nFullName: RONNELYN U TUGADO\r\nGender: Female\r\nLastName: TUGADO\r\nMaidenName: \r\nMiddleName: U\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760953	2024-07-03	11:28:04.5858888	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3628\r\nBirthDate: September 18, 2012\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: KIER PATRICK\r\nFullName: KIER PATRICK U TUGADO\r\nGender: Male\r\nLastName: TUGADO\r\nMaidenName: \r\nMiddleName: U\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760954	2024-07-03	11:28:04.5898752	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3628\r\nEmployeeTrainingId: 0\r\nFromDate: December 11, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: December 12, 2023\r\nTrainingId: 15180\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760955	2024-07-03	11:28:04.5938619	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3628\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BULWAGANG ALA-EH, SCHOOL DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760956	2024-07-03	11:28:04.5988455	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3628\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15113\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760957	2024-07-03	11:28:04.6028320	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3628\r\nEmployeeTrainingId: 0\r\nFromDate: August 24, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BATANGAS CITY INTEGRATED HIGH SCHOOL\r\nStatus: \r\nToDate: August 24, 2023\r\nTrainingId: 15218\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760958	2024-07-03	11:28:04.6078155	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3628\r\nEmployeeTrainingId: 0\r\nFromDate: July 05, 2023\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 05, 2023\r\nTrainingId: 15182\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760959	2024-07-03	11:28:04.6118021	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3628\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
760960	2024-07-03	11:28:04.6157886	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3628\r\nCharacterReferenceId: 0\r\nCompanyAddress: TINGA ITAAS, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 0966444852\r\nExtensionName: \r\nFirstName: JULIA \r\nLastName: LIZADA\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760961	2024-07-03	11:28:04.6197751	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3628\r\nCharacterReferenceId: 0\r\nCompanyAddress: TINGA ITAAS, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09263098391\r\nExtensionName: \r\nFirstName: MARTIN\r\nLastName: BAGUI\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
760962	2024-07-03	11:28:04.6237608	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3628\r\nCharacterReferenceId: 0\r\nCompanyAddress: TINGA ITAAS, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 0919065351\r\nExtensionName: \r\nFirstName: VICTORIANO\r\nLastName: GUICO\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771104	2025-03-17	16:00:28.7833753	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3795\r\nSkillId: 0\r\nSkillName: READING\r\n	admin	Skills	1
760963	2024-07-03	11:28:04.6287455	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3628\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 13,000.00\r\nPositionHeld: ADMINISTRATIVE AIDE 1\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-1\r\nStatus: Permanent\r\nToDate: July 03, 2024\r\n	admin	Experiences	1
760964	2024-07-03	11:28:04.6327324	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3628\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: March 20, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 13,000.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
760965	2024-07-03	11:28:04.6367176	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3628\r\nCompanyInstitution: TINGA ITAAS RURAL WATERWORKS AND SANITATION ASSOCIATION\r\nExperienceId: 0\r\nFromDate: May 02, 2006\r\nIsGovernmentService: False\r\nMonthlySalary: 4,000.00\r\nPositionHeld: MAINTENANCE\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: February 28, 2023\r\n	admin	Experiences	1
760966	2024-07-03	11:28:04.6407052	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3628\r\nSkillId: 0\r\nSkillName: CAPENTRY/MANSORY\r\n	admin	Skills	1
760967	2024-07-03	11:28:04.6446919	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3628\r\nSkillId: 0\r\nSkillName: WELDER\r\n	admin	Skills	1
760968	2024-07-03	11:28:04.6497154	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3628\r\nSkillId: 0\r\nSkillName: ELECTRICIAN\r\n	admin	Skills	1
760969	2024-07-03	11:28:04.6537046	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3628\r\nSkillId: 0\r\nSkillName: PLUMBER\r\n	admin	Skills	1
760970	2024-07-03	11:28:04.6576489	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3628\r\nSkillId: 0\r\nSkillName: DRIVER\r\n	admin	Skills	1
760971	2024-07-03	11:28:04.6616352	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3628\r\nSkillId: 0\r\nSkillName: BARBER\r\n	admin	Skills	1
760972	2024-07-03	11:28:04.6658017	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3628\r\nSkillId: 0\r\nSkillName: TILE SETTER\r\n	admin	Skills	1
760973	2024-07-03	11:28:04.6708254	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3628\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
760974	2024-07-03	11:28:31.5705563	<Undetected>	Update	BasicInformationId: 3620\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3323\r\nExtensionName: \r\nFirstName: LAURA\r\nFullName: LAURA LACSAMANA\r\nGender: Male\r\nLastName: LACSAMANA\r\nMaidenName: \r\nMiddleName: BERANIA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3620\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3323\r\nExtensionName: \r\nFirstName: LAURA\r\nFullName: LAURA BERANIA LACSAMANA\r\nGender: Female\r\nLastName: LACSAMANA\r\nMaidenName: \r\nMiddleName: BERANIA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760975	2024-07-03	11:28:52.1320863	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BRGY. 4 POBLACION\r\nBasicInformationId: 3617\r\nBirthDate: April 09, 1978\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: JOEL.ARCARDO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: JOEL\r\nFullName: JOEL M. ARCARDO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006270219\r\nHDMF: 1211-1215-6584\r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ARCARDO\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nMobileNumber: 09954442478\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BRGY. 4 POBLACION\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: P.HERRERA ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025151402-9\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: 04-1754829-4\r\nStreetName: P.HERRERA ST.\r\nTIN: 404-757-185-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BRGY. 4 POBLACION\r\nBasicInformationId: 3617\r\nBirthDate: April 09, 1978\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: JOEL.ARCARDO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: JOEL\r\nFullName: JOEL M. ARCARDO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006270219\r\nHDMF: 1211-1215-6584\r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ARCARDO\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nMobileNumber: 09954442478\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BRGY. 4 POBLACION\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: P.HERRERA ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025151402-9\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1754829-4\r\nStreetName: P.HERRERA ST.\r\nTIN: 404-757-185-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
760976	2024-07-03	11:28:52.1360737	<Undetected>	Update	BasicInformationId: 3617\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3311\r\nExtensionName: \r\nFirstName: JUANITO\r\nFullName: JUANITO DELA CRUZ ARCARDO\r\nGender: Male\r\nLastName: ARCARDO\r\nMaidenName: \r\nMiddleName: DELA CRUZ\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3617\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3311\r\nExtensionName: \r\nFirstName: JUANITO\r\nFullName: JUANITO ARCARDO\r\nGender: Male\r\nLastName: ARCARDO\r\nMaidenName: \r\nMiddleName: DELA CRUZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760977	2024-07-03	11:28:52.1480335	<Undetected>	Update	BasicInformationId: 3617\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3312\r\nExtensionName: \r\nFirstName: LUCITA\r\nFullName: LUCITA DE CASTRO MACARAIG\r\nGender: Male\r\nLastName: MACARAIG\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3617\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3312\r\nExtensionName: \r\nFirstName: LUCITA\r\nFullName: LUCITA DE CASTRO MACARAIG\r\nGender: Female\r\nLastName: MACARAIG\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761574	2024-07-04	15:19:33.6853402	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3639\r\nOrganizationId: 0\r\nOrganizationName: NATIONAL EMPLOYEES UNION (NEU)\r\n	admin	Organizations	1
760979	2024-07-03	11:29:46.0760763	<Undetected>	Update	BasicInformationId: 3618\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3313\r\nExtensionName: \r\nFirstName: MARILOU\r\nFullName: MARILOU LONTOC BARTE\r\nGender: Male\r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: LONTOC\r\nOccupation: \r\nRelationship: Wife\r\n	BasicInformationId: 3618\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3313\r\nExtensionName: \r\nFirstName: MARILOU\r\nFullName: MARILOU LONTOC BARTE\r\nGender: Female\r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: LONTOC\r\nOccupation: \r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
760980	2024-07-03	11:29:46.0800630	<Undetected>	Update	BasicInformationId: 3618\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3314\r\nExtensionName: \r\nFirstName: OSIAS\r\nFullName: OSIAS ARDID BARTE\r\nGender: Male\r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: ARDID\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3618\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3314\r\nExtensionName: \r\nFirstName: OSIAS\r\nFullName: OSIAS BARTE\r\nGender: Male\r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: ARDID\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760981	2024-07-03	11:29:46.0840497	<Undetected>	Update	BasicInformationId: 3618\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3315\r\nExtensionName: \r\nFirstName: CHINITA\r\nFullName: CHINITA DIMAANO ARDID\r\nGender: Male\r\nLastName: ARDID\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3618\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3315\r\nExtensionName: \r\nFirstName: CHINITA\r\nFullName: CHINITA DIMAANO ARDID\r\nGender: Female\r\nLastName: ARDID\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760982	2024-07-03	11:29:46.0930197	<Undetected>	Update	BasicInformationId: 3618\r\nBirthDate: June 03, 1998\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3316\r\nExtensionName: \r\nFirstName: KIM VINCENT\r\nFullName: KIM VINCENT LONTOK BARTE\r\nGender: Male\r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: LONTOK\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3618\r\nBirthDate: June 03, 1998\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3316\r\nExtensionName: \r\nFirstName: KIM VINCENT\r\nFullName: KIM VINCENT BARTE\r\nGender: Male\r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: LONTOK\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760983	2024-07-03	11:29:46.0970067	<Undetected>	Update	BasicInformationId: 3618\r\nBirthDate: September 23, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3317\r\nExtensionName: \r\nFirstName: KRISTINE MARIELLE\r\nFullName: KRISTINE MARIELLE LONTOC BARTE\r\nGender: Male\r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: LONTOC\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3618\r\nBirthDate: September 23, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3317\r\nExtensionName: \r\nFirstName: KRISTINE MARIELLE\r\nFullName: KRISTINE MARIELLE LONTOC BARTE\r\nGender: Female\r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: LONTOC\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760984	2024-07-03	11:29:46.1029864	<Undetected>	Update	BasicInformationId: 3618\r\nBirthDate: October 23, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3318\r\nExtensionName: \r\nFirstName: SHEENA FLORENCE\r\nFullName: SHEENA FLORENCE LONTOC BARTE\r\nGender: Male\r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: LONTOC\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3618\r\nBirthDate: October 23, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3318\r\nExtensionName: \r\nFirstName: SHEENA FLORENCE\r\nFullName: SHEENA FLORENCE LONTOC BARTE\r\nGender: Female\r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: LONTOC\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760985	2024-07-03	11:29:46.1069730	<Undetected>	Update	BasicInformationId: 3618\r\nBirthDate: November 30, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3319\r\nExtensionName: \r\nFirstName: EZEKIEL JONH\r\nFullName: EZEKIEL JONH LONTOC BARTE\r\nGender: Male\r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: LONTOC\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3618\r\nBirthDate: November 30, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3319\r\nExtensionName: \r\nFirstName: EZEKIEL JONH\r\nFullName: EZEKIEL JONH BARTE\r\nGender: Male\r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: LONTOC\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760986	2024-07-03	11:30:31.3479327	<Undetected>	Update	BasicInformationId: 3602\r\nBirthDate: October 15, 2020\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3261\r\nExtensionName: \r\nFirstName: CHANCE GABRIEL\r\nFullName: CHANCE GABRIEL BREGONIA\r\nGender: Male\r\nLastName: BREGONIA\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3602\r\nBirthDate: October 15, 2020\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3261\r\nExtensionName: \r\nFirstName: CHANCE GABRIEL\r\nFullName: CHANCE GABRIEL B BREGONIA\r\nGender: Male\r\nLastName: BREGONIA\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760987	2024-07-03	11:30:31.3578988	<Undetected>	Update	BasicInformationId: 3602\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3265\r\nExtensionName: \r\nFirstName: LOLITA\r\nFullName: LOLITA GUILLO\r\nGender: Male\r\nLastName: GUILLO\r\nMaidenName: \r\nMiddleName: VILLA-REAL\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3602\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3265\r\nExtensionName: \r\nFirstName: LOLITA\r\nFullName: LOLITA VILLA-REAL GUILLO\r\nGender: Female\r\nLastName: GUILLO\r\nMaidenName: \r\nMiddleName: VILLA-REAL\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760988	2024-07-03	11:30:46.4588176	<Undetected>	Update	BasicInformationId: 3624\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3333\r\nExtensionName: \r\nFirstName: SERGIO\r\nFullName: SERGIO MAGTIBAY BRIONES\r\nGender: Male\r\nLastName: BRIONES\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3624\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3333\r\nExtensionName: \r\nFirstName: SERGIO\r\nFullName: SERGIO BRIONES\r\nGender: Male\r\nLastName: BRIONES\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
760989	2024-07-03	11:31:02.6146337	<Undetected>	Update	BasicInformationId: 3619\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3321\r\nExtensionName: \r\nFirstName: RESTITA\r\nFullName: RESTITA COMIA\r\nGender: Male\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: FURTO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3619\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3321\r\nExtensionName: \r\nFirstName: RESTITA\r\nFullName: RESTITA FURTO COMIA\r\nGender: Female\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: FURTO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761184	2024-07-04	10:59:31.5629010	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING WORKSHOP ON THE PAYROLL PROCESSES, PROCEDURES AND FOR THE DOWNLOADING OF PAYROLLS TO THE SCHOOLS DIVISION OFFICES (SDOs) BATCH 1\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
760990	2024-07-03	11:31:29.6988587	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLK. 6 LOT 11\r\nAddress2: BLOOMFIELD HOMES\r\nBarangay: BALIMBING\r\nBasicInformationId: 3615\r\nBirthDate: March 07, 1987\r\nBirthPlace: TINGLOY, BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: SAN PASCUAL\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rosal.dimaala@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROSAL\r\nFullName: ROSAL R. DIMAALA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005572546\r\nHDMF: 1210-2391-8732\r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DIMAALA\r\nMaidenName: \r\nMiddleName: RAMORIZ\r\nMobileNumber: 09157450085\r\nNationality: Filipino\r\nPermanentAddress1: BLK. 6 LOT 11\r\nPermanentAddress2: BLOOMFIELD HOMES\r\nPermanentBarangay: BALIMBING\r\nPermanentCity: SAN PASCUAL\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4204\r\nPhilhealth: 01-051197583-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: 04-2335364-8\r\nStreetName: \r\nTIN: 498-482-854-0000\r\nWeight: 74\r\nZipCode: 4204\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK. 6 LOT 11\r\nAddress2: BLOOMFIELD HOMES\r\nBarangay: BALIMBING\r\nBasicInformationId: 3615\r\nBirthDate: March 07, 1987\r\nBirthPlace: TINGLOY, BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: SAN PASCUAL\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rosal.dimaala@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROSAL\r\nFullName: ROSAL R. DIMAALA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005572546\r\nHDMF: 1210-2391-8732\r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DIMAALA\r\nMaidenName: \r\nMiddleName: RAMORIZ\r\nMobileNumber: 09157450085\r\nNationality: Filipino\r\nPermanentAddress1: BLK. 6 LOT 11\r\nPermanentAddress2: BLOOMFIELD HOMES\r\nPermanentBarangay: BALIMBING\r\nPermanentCity: SAN PASCUAL\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4204\r\nPhilhealth: 01-051197583-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-2335364-8\r\nStreetName: \r\nTIN: 498-482-854-0000\r\nWeight: 74\r\nZipCode: 4204\r\n	admin	BasicInformation	1
760991	2024-07-03	11:31:29.7028451	<Undetected>	Update	BasicInformationId: 3615\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3305\r\nExtensionName: \r\nFirstName: ANATOLIA\r\nFullName: ANATOLIA BACSA\r\nGender: Male\r\nLastName: BACSA\r\nMaidenName: \r\nMiddleName: DE CHAVEZ\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3615\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3305\r\nExtensionName: \r\nFirstName: ANATOLIA\r\nFullName: ANATOLIA DE CHAVEZ BACSA\r\nGender: Female\r\nLastName: BACSA\r\nMaidenName: \r\nMiddleName: DE CHAVEZ\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760992	2024-07-03	11:31:49.7334016	<Undetected>	Update	BasicInformationId: 3614\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3301\r\nExtensionName: \r\nFirstName: LEABETH\r\nFullName: LEABETH LEUTERIO\r\nGender: Male\r\nLastName: LEUTERIO\r\nMaidenName: \r\nMiddleName: BALITA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3614\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3301\r\nExtensionName: \r\nFirstName: LEABETH\r\nFullName: LEABETH BALITA LEUTERIO\r\nGender: Female\r\nLastName: LEUTERIO\r\nMaidenName: \r\nMiddleName: BALITA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760993	2024-07-03	11:32:06.1421992	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BAGO\r\nBasicInformationId: 3612\r\nBirthDate: November 15, 1996\r\nBirthPlace: MANILA\r\nBloodType: O\r\nCitizenshipType: \r\nCity: IBAAN\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: psalmguerra21@gmail.com\r\nExtensionName: \r\nFirstName: KRISTOFFER\r\nFullName: KRISTOFFER A. GUERRA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006155480\r\nHDMF: 1212-2178-7299\r\nHeight: 1.71\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GUERRA\r\nMaidenName: \r\nMiddleName: ANDAL\r\nMobileNumber: 09276856403\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BAGO\r\nPermanentCity: IBAAN\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4230\r\nPhilhealth: 03-250930908-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: 04-4040178-0\r\nStreetName: \r\nTIN: 345-424-552-0000\r\nWeight: 73\r\nZipCode: 4230\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BAGO\r\nBasicInformationId: 3612\r\nBirthDate: November 15, 1996\r\nBirthPlace: MANILA\r\nBloodType: O\r\nCitizenshipType: \r\nCity: IBAAN\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: psalmguerra21@gmail.com\r\nExtensionName: \r\nFirstName: KRISTOFFER\r\nFullName: KRISTOFFER A. GUERRA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006155480\r\nHDMF: 1212-2178-7299\r\nHeight: 1.71\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GUERRA\r\nMaidenName: \r\nMiddleName: ANDAL\r\nMobileNumber: 09276856403\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BAGO\r\nPermanentCity: IBAAN\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4230\r\nPhilhealth: 03-250930908-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-4040178-0\r\nStreetName: \r\nTIN: 345-424-552-0000\r\nWeight: 73\r\nZipCode: 4230\r\n	admin	BasicInformation	1
760994	2024-07-03	11:32:06.1461857	<Undetected>	Update	BasicInformationId: 3612\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3293\r\nExtensionName: \r\nFirstName: AUREA\r\nFullName: AUREA ANDAL\r\nGender: Male\r\nLastName: ANDAL\r\nMaidenName: \r\nMiddleName: ATIENZA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3612\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3293\r\nExtensionName: \r\nFirstName: AUREA\r\nFullName: AUREA ATIENZA ANDAL\r\nGender: Female\r\nLastName: ANDAL\r\nMaidenName: \r\nMiddleName: ATIENZA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760995	2024-07-03	11:32:31.3228910	<Undetected>	Update	BasicInformationId: 3611\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3288\r\nExtensionName: \r\nFirstName: MILAGROS\r\nFullName: MILAGROS DRIZ\r\nGender: Male\r\nLastName: DRIZ\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3611\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3288\r\nExtensionName: \r\nFirstName: MILAGROS\r\nFullName: MILAGROS MACARAIG DRIZ\r\nGender: Female\r\nLastName: DRIZ\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
760996	2024-07-03	11:32:31.3268776	<Undetected>	Update	BasicInformationId: 3611\r\nBirthDate: February 02, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3291\r\nExtensionName: \r\nFirstName: PRECIOUS\r\nFullName: PRECIOUS GUINHAWA\r\nGender: Male\r\nLastName: GUINHAWA\r\nMaidenName: \r\nMiddleName: DRIZ\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3611\r\nBirthDate: February 02, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3291\r\nExtensionName: \r\nFirstName: PRECIOUS\r\nFullName: PRECIOUS DRIZ GUINHAWA\r\nGender: Female\r\nLastName: GUINHAWA\r\nMaidenName: \r\nMiddleName: DRIZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
760997	2024-07-03	11:33:01.6282132	<Undetected>	Update	BasicInformationId: 3606\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3296\r\nExtensionName: \r\nFirstName: LEONARDA\r\nFullName: LEONARDA ALVAREZ\r\nGender: Male\r\nLastName: ALVAREZ\r\nMaidenName: \r\nMiddleName: BUAN\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3606\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3296\r\nExtensionName: \r\nFirstName: LEONARDA\r\nFullName: LEONARDA BUAN ALVAREZ\r\nGender: Female\r\nLastName: ALVAREZ\r\nMaidenName: \r\nMiddleName: BUAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
771117	2025-03-17	16:01:47.4541952	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3794\r\nSkillId: 0\r\nSkillName: READING\r\n	admin	Skills	1
760998	2024-07-03	11:33:01.6391768	<Undetected>	Update	BasicInformationId: 3606\r\nBirthDate: November 10, 1986\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3297\r\nExtensionName: \r\nFirstName: REDELINE JOYCE\r\nFullName: REDELINE JOYCE CABATAY\r\nGender: Male\r\nLastName: CABATAY\r\nMaidenName: \r\nMiddleName: L\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3606\r\nBirthDate: November 10, 1986\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3297\r\nExtensionName: \r\nFirstName: REDELINE JOYCE\r\nFullName: REDELINE JOYCE L CABATAY\r\nGender: Female\r\nLastName: CABATAY\r\nMaidenName: \r\nMiddleName: L\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761000	2024-07-03	11:33:19.8357533	<Undetected>	Update	BasicInformationId: 3610\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3285\r\nExtensionName: \r\nFirstName: VICTORIA\r\nFullName: VICTORIA MAGTIBAY\r\nGender: Male\r\nLastName: MAGTIBAY\r\nMaidenName: \r\nMiddleName: BACULA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3610\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3285\r\nExtensionName: \r\nFirstName: VICTORIA\r\nFullName: VICTORIA BACULA MAGTIBAY\r\nGender: Female\r\nLastName: MAGTIBAY\r\nMaidenName: \r\nMiddleName: BACULA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761001	2024-07-03	11:33:45.2421126	<Undetected>	Update	BasicInformationId: 3608\r\nBirthDate: October 26, 2016\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3276\r\nExtensionName: \r\nFirstName: JILLIAN DAYNE\r\nFullName: JILLIAN DAYNE MAGNAYE\r\nGender: Male\r\nLastName: MAGNAYE\r\nMaidenName: \r\nMiddleName: DE TORRES\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3608\r\nBirthDate: October 26, 2016\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3276\r\nExtensionName: \r\nFirstName: JILLIAN DAYNE\r\nFullName: JILLIAN DAYNE DE TORRES MAGNAYE\r\nGender: Female\r\nLastName: MAGNAYE\r\nMaidenName: \r\nMiddleName: DE TORRES\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761002	2024-07-03	11:33:45.2530759	<Undetected>	Update	BasicInformationId: 3608\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3278\r\nExtensionName: \r\nFirstName: LEILANI\r\nFullName: LEILANI ILAO\r\nGender: Male\r\nLastName: ILAO\r\nMaidenName: \r\nMiddleName: MERCADO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3608\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3278\r\nExtensionName: \r\nFirstName: LEILANI\r\nFullName: LEILANI MERCADO ILAO\r\nGender: Female\r\nLastName: ILAO\r\nMaidenName: \r\nMiddleName: MERCADO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761003	2024-07-03	11:34:23.1762836	<Undetected>	Update	BasicInformationId: 3616\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3306\r\nExtensionName: \r\nFirstName: MARIBEL\r\nFullName: MARIBEL MALIGALIG\r\nGender: Male\r\nLastName: MALIGALIG\r\nMaidenName: \r\nMiddleName: DELA PEÑA\r\nOccupation: \r\nRelationship: Wife\r\n	BasicInformationId: 3616\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3306\r\nExtensionName: \r\nFirstName: MARIBEL\r\nFullName: MARIBEL DELA PEÑA MALIGALIG\r\nGender: Female\r\nLastName: MALIGALIG\r\nMaidenName: \r\nMiddleName: DELA PEÑA\r\nOccupation: \r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
761004	2024-07-03	11:34:23.1812661	<Undetected>	Update	BasicInformationId: 3616\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3308\r\nExtensionName: \r\nFirstName: LUISA\r\nFullName: LUISA PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: FRAGO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3616\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3308\r\nExtensionName: \r\nFirstName: LUISA\r\nFullName: LUISA FRAGO PEREZ\r\nGender: Female\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: FRAGO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761005	2024-07-03	11:34:23.1922298	<Undetected>	Update	BasicInformationId: 3616\r\nBirthDate: December 29, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3309\r\nExtensionName: \r\nFirstName: KIM CAROL\r\nFullName: KIM CAROL MALIGALIG\r\nGender: Male\r\nLastName: MALIGALIG\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3616\r\nBirthDate: December 29, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3309\r\nExtensionName: \r\nFirstName: KIM CAROL\r\nFullName: KIM CAROL D MALIGALIG\r\nGender: Female\r\nLastName: MALIGALIG\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761006	2024-07-03	11:34:23.1962158	<Undetected>	Update	BasicInformationId: 3616\r\nBirthDate: August 13, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3310\r\nExtensionName: \r\nFirstName: KRISTINE\r\nFullName: KRISTINE MALIGALIG\r\nGender: Male\r\nLastName: MALIGALIG\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3616\r\nBirthDate: August 13, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3310\r\nExtensionName: \r\nFirstName: KRISTINE\r\nFullName: KRISTINE D MALIGALIG\r\nGender: Female\r\nLastName: MALIGALIG\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761007	2024-07-03	11:34:43.1899757	<Undetected>	Update	BasicInformationId: 3627\r\nBirthDate: April 20, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3349\r\nExtensionName: \r\nFirstName: CLARISSE\r\nFullName: CLARISSE MANGUBAT\r\nGender: Female\r\nLastName: MANGUBAT\r\nMaidenName: \r\nMiddleName: ACUNA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3627\r\nBirthDate: April 20, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3349\r\nExtensionName: \r\nFirstName: CLARISSE\r\nFullName: CLARISSE ACUNA MANGUBAT\r\nGender: Female\r\nLastName: MANGUBAT\r\nMaidenName: \r\nMiddleName: ACUNA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761017	2024-07-03	11:35:41.6549445	<Undetected>	Update	BasicInformationId: 3625\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3335\r\nExtensionName: \r\nFirstName: TERESA\r\nFullName: TERESA MARANAN\r\nGender: Male\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: SANDOVAL\r\nOccupation: \r\nRelationship: Wife\r\n	BasicInformationId: 3625\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3335\r\nExtensionName: \r\nFirstName: TERESA\r\nFullName: TERESA SANDOVAL MARANAN\r\nGender: Female\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: SANDOVAL\r\nOccupation: \r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
761018	2024-07-03	11:35:41.6589311	<Undetected>	Update	BasicInformationId: 3625\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3337\r\nExtensionName: \r\nFirstName: AGNES\r\nFullName: AGNES DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: ALVAREZ\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3625\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3337\r\nExtensionName: \r\nFirstName: AGNES\r\nFullName: AGNES ALVAREZ DE CASTRO\r\nGender: Female\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: ALVAREZ\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761186	2024-07-04	11:04:08.8043412	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ENHANCING THE CAPABILITY OF SCHOOL HEADS AND TEACHERS IN THE IMPLEMENTATION OF PROFESSIONAL PROGRAM VIA SCHOOL LEARNING ACTION CELL BATCH 2- CLUSTER 3 (DISTRICT 7)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761008	2024-07-03	11:35:18.2676473	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3625\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BULWAGANG ALA EH,SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761009	2024-07-03	11:35:18.2726481	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3625\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15141\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761010	2024-07-03	11:35:18.2776459	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3625\r\nEmployeeTrainingId: 0\r\nFromDate: August 24, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BATANGAS CITY INTEGRATED HIGH SCHOOL\r\nStatus: \r\nToDate: August 24, 2023\r\nTrainingId: 15223\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761011	2024-07-03	11:35:18.2816455	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3625\r\nEmployeeTrainingId: 0\r\nFromDate: December 11, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: December 12, 2023\r\nTrainingId: 15180\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761012	2024-07-03	11:35:18.2866460	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3625\r\nEmployeeTrainingId: 0\r\nFromDate: July 05, 2023\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 05, 2023\r\nTrainingId: 15182\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761013	2024-07-03	11:35:18.2916462	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3625\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15047\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761014	2024-07-03	11:35:18.2956479	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3625\r\nEmployeeTrainingId: 0\r\nFromDate: June 30, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: June 30, 2022\r\nTrainingId: 15225\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761015	2024-07-03	11:35:18.3006485	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3625\r\nEmployeeTrainingId: 0\r\nFromDate: March 31, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BOY SCOUT OF THE PHILIPPINES \r\nStatus: \r\nToDate: March 31, 2022\r\nTrainingId: 15220\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761016	2024-07-03	11:35:18.3046487	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3625\r\nEmployeeTrainingId: 0\r\nFromDate: December 12, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: December 13, 2019\r\nTrainingId: 15059\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761019	2024-07-03	11:35:41.6688979	<Undetected>	Update	BasicInformationId: 3625\r\nBirthDate: April 01, 2020\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3338\r\nExtensionName: \r\nFirstName: JAN JESTER\r\nFullName: JAN JESTER MARANAN\r\nGender: Male\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3625\r\nBirthDate: April 01, 2020\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3338\r\nExtensionName: \r\nFirstName: JAN JESTER\r\nFullName: JAN JESTER S MARANAN\r\nGender: Male\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761020	2024-07-03	11:35:41.6728843	<Undetected>	Update	BasicInformationId: 3625\r\nBirthDate: February 22, 2022\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3339\r\nExtensionName: \r\nFirstName: YNAH\r\nFullName: YNAH MARANAN\r\nGender: Male\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3625\r\nBirthDate: February 22, 2022\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3339\r\nExtensionName: \r\nFirstName: YNAH\r\nFullName: YNAH S MARANAN\r\nGender: Female\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761021	2024-07-03	11:35:55.0668072	<Undetected>	Update	BasicInformationId: 3607\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3274\r\nExtensionName: \r\nFirstName: LUISA\r\nFullName: LUISA AMADO\r\nGender: Male\r\nLastName: AMADO\r\nMaidenName: \r\nMiddleName: MADLANGBAYAN\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3607\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3274\r\nExtensionName: \r\nFirstName: LUISA\r\nFullName: LUISA MADLANGBAYAN AMADO\r\nGender: Female\r\nLastName: AMADO\r\nMaidenName: \r\nMiddleName: MADLANGBAYAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761022	2024-07-03	11:36:55.8795284	<Undetected>	Update	BasicInformationId: 3605\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3269\r\nExtensionName: \r\nFirstName: SERAPIO\r\nFullName: SERAPIO PAGSUYOIN\r\nGender: Male\r\nLastName: PAGSUYOIN\r\nMaidenName: \r\nMiddleName: REYES\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3605\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3269\r\nExtensionName: \r\nFirstName: SERAPIO\r\nFullName: SERAPIO REYES PAGSUYOIN\r\nGender: Male\r\nLastName: PAGSUYOIN\r\nMaidenName: \r\nMiddleName: REYES\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
761023	2024-07-03	11:36:55.8835146	<Undetected>	Update	BasicInformationId: 3605\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3270\r\nExtensionName: \r\nFirstName: VICTORIA\r\nFullName: VICTORIA CLARETE\r\nGender: Male\r\nLastName: CLARETE\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3605\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3270\r\nExtensionName: \r\nFirstName: VICTORIA\r\nFullName: VICTORIA CLARETE\r\nGender: Female\r\nLastName: CLARETE\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761024	2024-07-03	11:36:55.8875015	<Undetected>	Update	BasicInformationId: 3605\r\nBirthDate: August 23, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3271\r\nExtensionName: \r\nFirstName: VIVIENNE\r\nFullName: VIVIENNE MIGUEL\r\nGender: Male\r\nLastName: MIGUEL\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3605\r\nBirthDate: August 23, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3271\r\nExtensionName: \r\nFirstName: VIVIENNE\r\nFullName: VIVIENNE P MIGUEL\r\nGender: Female\r\nLastName: MIGUEL\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761025	2024-07-03	11:37:14.1177559	<Undetected>	Update	BasicInformationId: 3621\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3324\r\nExtensionName: \r\nFirstName: LEONIDES\r\nFullName: LEONIDES NAGUIT PATIO\r\nGender: Male\r\nLastName: PATIO\r\nMaidenName: \r\nMiddleName: NAGUIT\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3621\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3324\r\nExtensionName: \r\nFirstName: LEONIDES\r\nFullName: LEONIDES PATIO\r\nGender: Male\r\nLastName: PATIO\r\nMaidenName: \r\nMiddleName: NAGUIT\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
761026	2024-07-03	11:37:14.1217426	<Undetected>	Update	BasicInformationId: 3621\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3325\r\nExtensionName: \r\nFirstName: MARITES\r\nFullName: MARITES BLANCO ANTIDO\r\nGender: Male\r\nLastName: ANTIDO\r\nMaidenName: \r\nMiddleName: BLANCO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3621\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3325\r\nExtensionName: \r\nFirstName: MARITES\r\nFullName: MARITES BLANCO ANTIDO\r\nGender: Female\r\nLastName: ANTIDO\r\nMaidenName: \r\nMiddleName: BLANCO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761027	2024-07-03	11:37:32.0835273	<Undetected>	Update	BasicInformationId: 3604\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3267\r\nExtensionName: \r\nFirstName: FELICIDAD\r\nFullName: FELICIDAD PERONO\r\nGender: Male\r\nLastName: PERONO\r\nMaidenName: \r\nMiddleName: CARREON\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3604\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3267\r\nExtensionName: \r\nFirstName: FELICIDAD\r\nFullName: FELICIDAD CARREON PERONO\r\nGender: Female\r\nLastName: PERONO\r\nMaidenName: \r\nMiddleName: CARREON\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761028	2024-07-03	11:37:46.1559714	<Undetected>	Update	BasicInformationId: 3613\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3302\r\nExtensionName: \r\nFirstName: EMMA\r\nFullName: EMMA MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3613\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3302\r\nExtensionName: \r\nFirstName: EMMA\r\nFullName: EMMA MARASIGAN MENDOZA\r\nGender: Female\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761029	2024-07-03	11:38:03.8423504	<Undetected>	Update	BasicInformationId: 3623\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3332\r\nExtensionName: \r\nFirstName: PACITA\r\nFullName: PACITA MANGUERRA\r\nGender: Male\r\nLastName: MANGUERRA\r\nMaidenName: \r\nMiddleName: BORBON\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3623\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3332\r\nExtensionName: \r\nFirstName: PACITA\r\nFullName: PACITA BORBON MANGUERRA\r\nGender: Female\r\nLastName: MANGUERRA\r\nMaidenName: \r\nMiddleName: BORBON\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761048	2024-07-03	11:48:30.8625842	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3625\r\nCharacterReferenceId: 0\r\nCompanyAddress: CALICANTO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09178552388\r\nExtensionName: \r\nFirstName: LOURDES \r\nLastName: ZARASPE\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761030	2024-07-03	11:38:18.1996975	<Undetected>	Update	BasicInformationId: 3622\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3326\r\nExtensionName: \r\nFirstName: LEILA\r\nFullName: LEILA SECO\r\nGender: Female\r\nLastName: SECO\r\nMaidenName: \r\nMiddleName: MARANAN\r\nOccupation: DEPED SURPERVISOR\r\nRelationship: Wife\r\n	BasicInformationId: 3622\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3326\r\nExtensionName: \r\nFirstName: LEILA\r\nFullName: LEILA MARANAN\r\nGender: Female\r\nLastName: SECO\r\nMaidenName: \r\nMiddleName: MARANAN\r\nOccupation: DEPED SURPERVISOR\r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
761031	2024-07-03	11:38:34.9253821	<Undetected>	Update	BasicInformationId: 3603\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3263\r\nExtensionName: \r\nFirstName: LIBERTY\r\nFullName: LIBERTY MACARAIG\r\nGender: Male\r\nLastName: MACARAIG\r\nMaidenName: \r\nMiddleName: ACOSTA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3603\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3263\r\nExtensionName: \r\nFirstName: LIBERTY\r\nFullName: LIBERTY ACOSTA MACARAIG\r\nGender: Female\r\nLastName: MACARAIG\r\nMaidenName: \r\nMiddleName: ACOSTA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761032	2024-07-03	11:38:56.2685468	<Undetected>	Update	BasicInformationId: 3609\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3281\r\nExtensionName: \r\nFirstName: ROSSINI\r\nFullName: ROSSINI MAGADIA\r\nGender: Male\r\nLastName: MAGADIA\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3609\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3281\r\nExtensionName: \r\nFirstName: ROSSINI\r\nFullName: ROSSINI GUTIERREZ MAGADIA\r\nGender: Female\r\nLastName: MAGADIA\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761033	2024-07-03	11:39:16.3971979	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING WORKSHOP ON BASIC CUSTOMER SERVICES SKILLS FOR FRONTLINE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761034	2024-07-03	11:44:18.3001828	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3625\r\nSkillId: 0\r\nSkillName: BASIC CARPENTRY\r\n	admin	Skills	1
761035	2024-07-03	11:44:18.3041829	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3625\r\nSkillId: 0\r\nSkillName: BASIC PLUMBING\r\n	admin	Skills	1
761036	2024-07-03	11:44:18.3141832	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3625\r\nSkillId: 0\r\nSkillName: PHOTOCOPIER OPERATOR\r\n	admin	Skills	1
761037	2024-07-03	11:44:18.3181828	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3625\r\nSkillId: 0\r\nSkillName: BOOK BINDING\r\n	admin	Skills	1
761038	2024-07-03	11:44:18.3221827	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3625\r\nSkillId: 0\r\nSkillName: LAMINATE\r\n	admin	Skills	1
761039	2024-07-03	11:44:18.3281829	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3625\r\nSkillId: 0\r\nSkillName: BASIC ELECTICIAN\r\n	admin	Skills	1
761040	2024-07-03	11:44:18.3321828	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3625\r\nSkillId: 0\r\nSkillName: PAINTER\r\n	admin	Skills	1
761041	2024-07-03	11:44:18.3371828	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3625\r\nEmployeeTrainingId: 0\r\nFromDate: December 27, 2018\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: February 14, 2019\r\nTrainingId: 15228\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761042	2024-07-03	11:44:18.3421861	<Undetected>	Update	BasicInformationId: 3625\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3335\r\nExtensionName: \r\nFirstName: TERESA\r\nFullName: TERESA SANDOVAL MARANAN\r\nGender: Female\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: SANDOVAL\r\nOccupation: \r\nRelationship: Wife\r\n	BasicInformationId: 3625\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3335\r\nExtensionName: \r\nFirstName: TERESA\r\nFullName: TERESA SANDOVAL\r\nGender: Female\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: SANDOVAL\r\nOccupation: \r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
761043	2024-07-03	11:44:18.3461827	<Undetected>	Update	BasicInformationId: 3625\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3336\r\nExtensionName: \r\nFirstName: ARNEL\r\nFullName: ARNEL MARANAN\r\nGender: Male\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: NOBLEJAS\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3625\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3336\r\nExtensionName: \r\nFirstName: ARNEL\r\nFullName: ARNEL NOBLEJAS MARANAN\r\nGender: Male\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: NOBLEJAS\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
761044	2024-07-03	11:44:18.3511859	<Undetected>	Update	BasicInformationId: 3625\r\nBirthDate: April 01, 2020\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3338\r\nExtensionName: \r\nFirstName: JAN JESTER\r\nFullName: JAN JESTER S MARANAN\r\nGender: Male\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3625\r\nBirthDate: April 01, 2020\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3338\r\nExtensionName: \r\nFirstName: JAN JESTER\r\nFullName: JAN JESTER S MARANAN\r\nGender: Male\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761045	2024-07-03	11:44:18.3551860	<Undetected>	Update	BasicInformationId: 3625\r\nBirthDate: February 22, 2022\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3339\r\nExtensionName: \r\nFirstName: YNAH\r\nFullName: YNAH S MARANAN\r\nGender: Female\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3625\r\nBirthDate: February 22, 2022\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3339\r\nExtensionName: \r\nFirstName: YNAH\r\nFullName: YNAH S MARANAN\r\nGender: Female\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761046	2024-07-03	11:44:18.3611860	<Undetected>	Update	BasicInformationId: 3625\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3422\r\n	BasicInformationId: 3625\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3422\r\n	admin	Questionnaires	1
761057	2024-07-03	11:52:24.3489363	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3629\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
761049	2024-07-03	11:48:30.8670907	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3625\r\nCharacterReferenceId: 0\r\nCompanyAddress: SORO-SORO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: MARIA JOSEFINA \r\nLastName: LAGMAN\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761050	2024-07-03	11:48:30.8720898	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: ALANGILAN\r\nBasicInformationId: 3625\r\nBirthDate: December 12, 1995\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: JEFFERSON.MARANAN@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: JEFFERSON\r\nFullName: JEFFERSON DC. MARANAN\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.68\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nMobileNumber: 09684929538\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LABAC\r\nTIN: \r\nWeight: 58\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: ALANGILAN\r\nBasicInformationId: 3625\r\nBirthDate: December 12, 1995\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: JEFFERSON.MARANAN@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: JEFFERSON\r\nFullName: JEFFERSON DC. MARANAN\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006270204\r\nHDMF: 1212-6096-5682\r\nHeight: 1.68\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nMobileNumber: 09684929538\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: 09-202188321-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LABAC\r\nTIN: 466-351-256-0000\r\nWeight: 58\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761051	2024-07-03	11:48:30.8770903	<Undetected>	Update	BasicInformationId: 3625\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3337\r\nExtensionName: \r\nFirstName: AGNES\r\nFullName: AGNES ALVAREZ DE CASTRO\r\nGender: Female\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: ALVAREZ\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3625\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3337\r\nExtensionName: \r\nFirstName: AGNES\r\nFullName: AGNES DE CASTRO\r\nGender: Female\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: ALVAREZ\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761052	2024-07-03	11:48:30.8820907	<Undetected>	Update	BasicInformationId: 3625\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3335\r\nExtensionName: \r\nFirstName: TERESA\r\nFullName: TERESA SANDOVAL\r\nGender: Female\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: SANDOVAL\r\nOccupation: \r\nRelationship: Wife\r\n	BasicInformationId: 3625\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3335\r\nExtensionName: \r\nFirstName: TERESA\r\nFullName: TERESA MARANAN\r\nGender: Female\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: SANDOVAL\r\nOccupation: \r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
761053	2024-07-03	11:48:30.8860905	<Undetected>	Update	BasicInformationId: 3625\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3336\r\nExtensionName: \r\nFirstName: ARNEL\r\nFullName: ARNEL NOBLEJAS MARANAN\r\nGender: Male\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: NOBLEJAS\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3625\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3336\r\nExtensionName: \r\nFirstName: ARNEL\r\nFullName: ARNEL MARANAN\r\nGender: Male\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: NOBLEJAS\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
761054	2024-07-03	11:48:30.8900899	<Undetected>	Update	BasicInformationId: 3625\r\nBirthDate: April 01, 2020\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3338\r\nExtensionName: \r\nFirstName: JAN JESTER\r\nFullName: JAN JESTER S MARANAN\r\nGender: Male\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3625\r\nBirthDate: April 01, 2020\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3338\r\nExtensionName: \r\nFirstName: JAN JESTER\r\nFullName: JAN JESTER MARANAN\r\nGender: Male\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761055	2024-07-03	11:48:30.8950899	<Undetected>	Update	BasicInformationId: 3625\r\nBirthDate: February 22, 2022\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3339\r\nExtensionName: \r\nFirstName: YNAH\r\nFullName: YNAH S MARANAN\r\nGender: Female\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3625\r\nBirthDate: February 22, 2022\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3339\r\nExtensionName: \r\nFirstName: YNAH\r\nFullName: YNAH MARANAN\r\nGender: Female\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761056	2024-07-03	11:52:24.3348988	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: 0\r\nBirthDate: January 06, 1981\r\nBirthPlace: LOBO BATANGAS\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MAGELYN.RAMIREZ@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: MAGELYN\r\nFullName: MAGELYN B. RAMIREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.59\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: BABAO\r\nMobileNumber: 09368602346\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 50\r\nZipCode: \r\n	admin	BasicInformation	1
771118	2025-03-17	16:01:47.4591786	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3794\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
761058	2024-07-03	12:55:35.7343077	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3629\r\nBirthDate: January 31, 2008\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CELESTE\r\nFullName: CELESTE B RAMIREZ\r\nGender: Female\r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761059	2024-07-03	12:55:35.7393107	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3629\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EUFROSINO\r\nFullName: EUFROSINO BOONGALING BABAO\r\nGender: Male\r\nLastName: BABAO\r\nMaidenName: \r\nMiddleName: BOONGALING\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
761060	2024-07-03	12:55:35.7493298	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3629\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: BENITA\r\nFullName: BENITA CANDOR\r\nGender: Female\r\nLastName: UMALI\r\nMaidenName: \r\nMiddleName: CANDOR\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761061	2024-07-03	12:55:35.7593301	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3629\r\nBirthDate: August 11, 2006\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RODGIE\r\nFullName: RODGIE B RAMIREZ\r\nGender: Male\r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761062	2024-07-03	12:55:35.7783913	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3629\r\nBirthDate: January 31, 2008\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CELESTE\r\nFullName: CELESTE B RAMIREZ\r\nGender: Female\r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761063	2024-07-03	12:55:35.7924586	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3629\r\nBirthDate: February 28, 2009\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RAM ANDREW\r\nFullName: RAM ANDREW B RAMIREZ\r\nGender: Male\r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761064	2024-07-03	12:55:35.7964600	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: 3629\r\nBirthDate: January 06, 1981\r\nBirthPlace: LOBO BATANGAS\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MAGELYN.RAMIREZ@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: MAGELYN\r\nFullName: MAGELYN B. RAMIREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.59\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: BABAO\r\nMobileNumber: 09368602346\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 50\r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: TALUMPOK WEST\r\nBasicInformationId: 3629\r\nBirthDate: January 06, 1981\r\nBirthPlace: LOBO BATANGAS\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MAGELYN.RAMIREZ@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: MAGELYN\r\nFullName: MAGELYN B. RAMIREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.59\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: BABAO\r\nMobileNumber: 09368602346\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: TALUMPOK WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: GUINTO\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: GUINTO\r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761065	2024-07-03	12:55:35.8014607	<Undetected>	Update	BasicInformationId: 3629\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3426\r\n	BasicInformationId: 3629\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3426\r\n	admin	Questionnaires	1
761066	2024-07-03	12:57:11.9254262	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: ACHIEVER\r\nBasicInformationId: 3629\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2012\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BALATBAT ELEMENTARY \r\nYearGraduated: 2012\r\n	admin	EducationalBackgrounds	1
761067	2024-07-03	12:57:11.9354257	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: ACHIEVER \r\nBasicInformationId: 3629\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2012\r\nDateTo: 2014\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: LOBO INSTITUTE\r\nYearGraduated: 2014\r\n	admin	EducationalBackgrounds	1
761068	2024-07-03	12:57:11.9404260	<Undetected>	Update	BasicInformationId: 3629\r\nBirthDate: January 31, 2008\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3360\r\nExtensionName: \r\nFirstName: CELESTE\r\nFullName: CELESTE B RAMIREZ\r\nGender: Female\r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3629\r\nBirthDate: January 31, 2008\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3360\r\nExtensionName: \r\nFirstName: CELESTE\r\nFullName: CELESTE RAMIREZ\r\nGender: Female\r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762054	2024-07-05	10:14:49.0904314	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3644\r\nRecognitionId: 0\r\nRecognitionName: RESOURCE SPEAKER - ORIENTATION ON LEARNER INFORMATION SYSTEM ( LIS) ENCODING  \r\n	admin	Recognitions	1
761069	2024-07-03	12:57:11.9494261	<Undetected>	Update	BasicInformationId: 3629\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3361\r\nExtensionName: \r\nFirstName: EUFROSINO\r\nFullName: EUFROSINO BOONGALING BABAO\r\nGender: Male\r\nLastName: BABAO\r\nMaidenName: \r\nMiddleName: BOONGALING\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3629\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3361\r\nExtensionName: \r\nFirstName: EUFROSINO\r\nFullName: EUFROSINO BABAO\r\nGender: Male\r\nLastName: BABAO\r\nMaidenName: \r\nMiddleName: BOONGALING\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
761070	2024-07-03	12:57:11.9534265	<Undetected>	Update	BasicInformationId: 3629\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3362\r\nExtensionName: \r\nFirstName: BENITA\r\nFullName: BENITA CANDOR\r\nGender: Female\r\nLastName: UMALI\r\nMaidenName: \r\nMiddleName: CANDOR\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3629\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3362\r\nExtensionName: \r\nFirstName: BENITA\r\nFullName: BENITA UMALI\r\nGender: Female\r\nLastName: UMALI\r\nMaidenName: \r\nMiddleName: CANDOR\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761071	2024-07-03	12:57:11.9584256	<Undetected>	Update	BasicInformationId: 3629\r\nBirthDate: August 11, 2006\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3363\r\nExtensionName: \r\nFirstName: RODGIE\r\nFullName: RODGIE B RAMIREZ\r\nGender: Male\r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3629\r\nBirthDate: August 11, 2006\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3363\r\nExtensionName: \r\nFirstName: RODGIE\r\nFullName: RODGIE RAMIREZ\r\nGender: Male\r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761072	2024-07-03	12:57:11.9634263	<Undetected>	Update	BasicInformationId: 3629\r\nBirthDate: January 31, 2008\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3364\r\nExtensionName: \r\nFirstName: CELESTE\r\nFullName: CELESTE B RAMIREZ\r\nGender: Female\r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3629\r\nBirthDate: January 31, 2008\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3364\r\nExtensionName: \r\nFirstName: CELESTE\r\nFullName: CELESTE RAMIREZ\r\nGender: Female\r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761073	2024-07-03	12:57:11.9674266	<Undetected>	Update	BasicInformationId: 3629\r\nBirthDate: February 28, 2009\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3365\r\nExtensionName: \r\nFirstName: RAM ANDREW\r\nFullName: RAM ANDREW B RAMIREZ\r\nGender: Male\r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3629\r\nBirthDate: February 28, 2009\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3365\r\nExtensionName: \r\nFirstName: RAM ANDREW\r\nFullName: RAM ANDREW RAMIREZ\r\nGender: Male\r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761074	2024-07-03	12:58:17.3456245	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: PROFESSIONAL TEACHER \r\nLevel: College\r\n	admin	Courses	1
761075	2024-07-03	12:59:54.3971130	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF SCIENCE IN BUSINESS \r\nLevel: College\r\n	admin	Courses	1
761076	2024-07-03	13:04:48.7382410	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: PROFESSIONAL TEACHER\r\nLevel: Master's\r\n	admin	Courses	1
761077	2024-07-03	13:11:25.2296266	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: ACHIEVER\r\nBasicInformationId: 3629\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2012\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BALATBAT ELEMENTARY \r\nYearGraduated: 2012\r\n	admin	EducationalBackgrounds	1
761078	2024-07-03	13:11:25.2336268	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3629\r\nCourse: \r\nCourseId: 1276\r\nCourseOrMajor: \r\nDateFrom: 2021\r\nDateTo: 2022\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES \r\nYearGraduated: 2022\r\n	admin	EducationalBackgrounds	1
761079	2024-07-03	13:11:25.2396267	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3629\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 13,000.00\r\nPositionHeld: ADMINISTRATIVE AIDE I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-1\r\nStatus: Permanent\r\nToDate: July 03, 2024\r\n	admin	Experiences	1
761080	2024-07-03	13:11:25.2436279	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3629\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: March 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 13,000.00\r\nPositionHeld: ADMINISTRATIVE AIDE I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
761081	2024-07-03	13:11:25.2486269	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3629\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 12,034.00\r\nPositionHeld: ADMINISTRATIVE AIDE I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: February 28, 2023\r\n	admin	Experiences	1
761082	2024-07-03	13:11:25.2526271	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3629\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 12,034.00\r\nPositionHeld: ADMINISTRATIVE AIDE I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
761083	2024-07-03	13:11:25.2566266	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3629\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: False\r\nMonthlySalary: 0.00\r\nPositionHeld: ADMINISTRATIVE AIDE I \r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: July 03, 2024\r\n	admin	Experiences	1
761084	2024-07-03	13:11:25.2616265	<Undetected>	Update	Awards: ACHIEVER\r\nBasicInformationId: 3629\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2012\r\nEducationalAttainment: \r\nEducationalBackgroundId: 13596\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BALATBAT ELEMENTARY \r\nYearGraduated: 2012\r\n	Awards: \r\nBasicInformationId: 3629\r\nCourse: \r\nCourseId: 1275\r\nCourseOrMajor: \r\nDateFrom: 2017\r\nDateTo: 2021\r\nEducationalAttainment: \r\nEducationalBackgroundId: 13596\r\nLevel: College Graduate\r\nMajor: MARKETING MANAGEMENT \r\nSchoolorUniversity: COLEGIO NG LUNGSOD NG BATANGAS \r\nYearGraduated: 2021\r\n	admin	EducationalBackgrounds	1
761085	2024-07-03	13:19:22.4372454	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3629\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 450.00\r\nPositionHeld: ADMINISTRATIVE AIDE I \r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
761086	2024-07-03	13:19:22.4422444	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3629\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 450.00\r\nPositionHeld: ADMINISTRATIVE AIDE I \r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
761087	2024-07-03	13:19:22.4472444	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3629\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 350.00\r\nPositionHeld: ADMINISTRATIVE AIDE I \r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
761088	2024-07-03	13:19:22.4512445	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3629\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 350.00\r\nPositionHeld: ADMINISTRATIVE AIDE I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
761089	2024-07-03	13:19:22.4562449	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3629\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 350.00\r\nPositionHeld: ADMINISTRATIVE AIDE I \r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
761090	2024-07-03	13:19:22.4602444	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3629\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: March 15, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 350.00\r\nPositionHeld: ADMINISTRATIVE AIDE I \r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
761091	2024-07-03	13:19:22.4652444	<Undetected>	Update	BasicInformationId: 3629\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 10165\r\nFromDate: January 01, 2024\r\nIsGovernmentService: False\r\nMonthlySalary: 0.00\r\nPositionHeld: ADMINISTRATIVE AIDE I \r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: July 03, 2024\r\n	BasicInformationId: 3629\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 10165\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 12,034.00\r\nPositionHeld: ADMINISTRATIVE AIDE I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
761092	2024-07-03	13:31:49.8466473	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3629\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: BULWAGANG ALA EH, SCHOOLS DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761093	2024-07-03	13:31:49.8516472	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3629\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15141\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761094	2024-07-03	13:31:49.8556494	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3629\r\nEmployeeTrainingId: 0\r\nFromDate: August 24, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: BATANGAS CITY INTEGRATED HIGH SCHOOL \r\nStatus: \r\nToDate: August 24, 2023\r\nTrainingId: 15223\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771119	2025-03-17	16:01:47.4681484	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3794\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
761095	2024-07-03	13:31:49.8606471	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3629\r\nEmployeeTrainingId: 0\r\nFromDate: July 05, 2023\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: July 05, 2023\r\nTrainingId: 15182\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761096	2024-07-03	13:31:49.8656472	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3629\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15047\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761097	2024-07-03	13:31:49.8696493	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3629\r\nEmployeeTrainingId: 0\r\nFromDate: June 30, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: June 30, 2022\r\nTrainingId: 15225\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761098	2024-07-03	13:31:49.8746472	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3629\r\nEmployeeTrainingId: 0\r\nFromDate: March 31, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: BOY SCOUTS OF THE PHILIPPINES \r\nStatus: \r\nToDate: March 31, 2022\r\nTrainingId: 15220\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761099	2024-07-03	13:31:49.8786472	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3629\r\nEmployeeTrainingId: 0\r\nFromDate: December 12, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: December 13, 2019\r\nTrainingId: 15227\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761100	2024-07-03	13:31:49.8826472	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3629\r\nEmployeeTrainingId: 0\r\nFromDate: December 27, 2018\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: February 14, 2019\r\nTrainingId: 15228\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761101	2024-07-03	13:32:09.4844745	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3629\r\nSkillId: 0\r\nSkillName: SINGING \r\n	admin	Skills	1
761102	2024-07-04	09:20:42.1298635	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3629\r\nCharacterReferenceId: 0\r\nCompanyAddress: TALUMPOK  WEST BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09171892566\r\nExtensionName: \r\nFirstName: SACORO  \r\nLastName: COMIA\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761103	2024-07-04	09:20:42.1408644	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3629\r\nCharacterReferenceId: 0\r\nCompanyAddress: CALICANTO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09178552388\r\nExtensionName: \r\nFirstName: LOURDES\r\nLastName: ZARASPE\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761104	2024-07-04	09:20:42.1458635	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3629\r\nCharacterReferenceId: 0\r\nCompanyAddress: TALUMPOK WEST BATANGAS CITY\r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: ISAGANI\r\nLastName: LONTOC\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761105	2024-07-04	09:27:14.8290235	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: TALUMPOK WEST\r\nBasicInformationId: 3629\r\nBirthDate: January 06, 1981\r\nBirthPlace: LOBO BATANGAS\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MAGELYN.RAMIREZ@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: MAGELYN\r\nFullName: MAGELYN B. RAMIREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.59\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: BABAO\r\nMobileNumber: 09368602346\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: TALUMPOK WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: GUINTO\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: GUINTO\r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: TALUMPOK WEST\r\nBasicInformationId: 3629\r\nBirthDate: January 06, 1981\r\nBirthPlace: LOBO BATANGAS\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MAGELYN.RAMIREZ@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: MAGELYN\r\nFullName: MAGELYN B. RAMIREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006270211\r\nHDMF: 1212-6098-6330\r\nHeight: 1.59\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: BABAO\r\nMobileNumber: 09368602346\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: TALUMPOK WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: GUINTO\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-250110207-1\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 33-6189507-4\r\nStreetName: GUINTO\r\nTIN: 325-138-348-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761116	2024-07-04	09:59:59.3605193	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3630\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: February 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 12,756.00\r\nPositionHeld: ADMINISTRATIVE AIDE I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-7\r\nStatus: Permanent\r\nToDate: January 31, 2022\r\n	admin	Experiences	1
762055	2024-07-05	10:14:49.0944314	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3644\r\nRecognitionId: 0\r\nRecognitionName: FACILATOR- DIVISION FY 2019 BUDGET PREPARATION FOR NON- IMPLEMENTING UNITS \r\n	admin	Recognitions	1
761106	2024-07-04	09:27:57.2586821	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: TALUMPOK WEST\r\nBasicInformationId: 3629\r\nBirthDate: January 06, 1981\r\nBirthPlace: LOBO BATANGAS\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MAGELYN.RAMIREZ@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: MAGELYN\r\nFullName: MAGELYN B. RAMIREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006270211\r\nHDMF: 1212-6098-6330\r\nHeight: 1.59\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: BABAO\r\nMobileNumber: 09368602346\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: TALUMPOK WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: GUINTO\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-250110207-1\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 33-6189507-4\r\nStreetName: GUINTO\r\nTIN: 325-138-348-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: TALUMPOK WEST\r\nBasicInformationId: 3629\r\nBirthDate: January 06, 1981\r\nBirthPlace: LOBO BATANGAS\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MAGELYN.RAMIREZ@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: MAGELYN\r\nFullName: MAGELYN B. RAMIREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006270211\r\nHDMF: 1212-6098-6330\r\nHeight: 1.59\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: BABAO\r\nMobileNumber: 09368602346\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: TALUMPOK WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: GUINTO\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-250110207-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 33-6189507-4\r\nStreetName: GUINTO\r\nTIN: 325-138-348-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761107	2024-07-04	09:37:40.4145561	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: 6\r\nBasicInformationId: 0\r\nBirthDate: June 29, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: DONNA.ITURRALDE@DEPED. GOV.PH\r\nExtensionName: \r\nFirstName: DONNA\r\nFullName: DONNA G. ITURRALDE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ITURRALDE\r\nMaidenName: \r\nMiddleName: GARCIA\r\nMobileNumber: 09052881709\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: 6\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: 64, NOBLE STREET, BATANGAS CITY\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: 64, NOBLE STREET, BATANGAS CITY\r\nTIN: \r\nWeight: 68\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761108	2024-07-04	09:37:40.5030677	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3630\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1984\r\nDateTo: 1990\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS CITY EAST ELEMENTARY SCHOOL \r\nYearGraduated: 1990\r\n	admin	EducationalBackgrounds	1
761109	2024-07-04	09:37:40.5030677	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3630\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1990\r\nDateTo: 1994\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES \r\nYearGraduated: 1994\r\n	admin	EducationalBackgrounds	1
761110	2024-07-04	09:37:40.5030677	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3630\r\nCourse: \r\nCourseId: 1252\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 1998\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES \r\nYearGraduated: 1998\r\n	admin	EducationalBackgrounds	1
761111	2024-07-04	09:37:40.5030677	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3630\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: NESTOR\r\nFullName: NESTOR RAYOS ITURRALDE\r\nGender: Male\r\nLastName: ITURRALDE\r\nMaidenName: \r\nMiddleName: RAYOS\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
761112	2024-07-04	09:37:40.5030677	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3630\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ELVIRA\r\nFullName: ELVIRA GARCIA CAPULI\r\nGender: Male\r\nLastName: CAPULI\r\nMaidenName: \r\nMiddleName: GARCIA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761113	2024-07-04	09:37:40.5030677	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3630\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
761114	2024-07-04	09:59:59.3495199	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3630\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 13,780.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-8\r\nStatus: Permanent\r\nToDate: July 04, 2024\r\n	admin	Experiences	1
761115	2024-07-04	09:59:59.3545185	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3630\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: February 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 13,268.00\r\nPositionHeld: ADMINISTRATIVE AIDE I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-8\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
761117	2024-07-04	09:59:59.3655188	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3630\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: March 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 12,244.00\r\nPositionHeld: ADMINISTRATIVE AIDE I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-7\r\nStatus: Permanent\r\nToDate: January 31, 2021\r\n	admin	Experiences	1
761118	2024-07-04	09:59:59.3705205	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3630\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: December 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 11,732.00\r\nPositionHeld: ADMINISTRATIVE AIDE I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-7\r\nStatus: Permanent\r\nToDate: February 29, 2020\r\n	admin	Experiences	1
761119	2024-07-04	09:59:59.3755199	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3630\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT \r\nExperienceId: 0\r\nFromDate: May 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 11,635.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-7\r\nStatus: Permanent\r\nToDate: November 30, 2019\r\n	admin	Experiences	1
761120	2024-07-04	09:59:59.3795219	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3630\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 11,076.00\r\nPositionHeld: ADMINISTRATIVE AIDE I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-7\r\nStatus: Permanent\r\nToDate: April 30, 2019\r\n	admin	Experiences	1
761121	2024-07-04	09:59:59.3845207	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3630\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 11,076.00\r\nPositionHeld: ADMINISTRATIVE AIDE I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-7\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
761122	2024-07-04	09:59:59.3895595	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3630\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 10,543.00\r\nPositionHeld: ADMINISTRATIVE AIDE I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-7\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
761123	2024-07-04	09:59:59.3935188	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3630\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: March 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 9,949.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-6\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
761124	2024-07-04	09:59:59.3985194	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3630\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 9,459.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-6\r\nStatus: Permanent\r\nToDate: February 29, 2016\r\n	admin	Experiences	1
761125	2024-07-04	09:59:59.4035199	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3630\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 9,365.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-5\r\nStatus: Permanent\r\nToDate: December 31, 2013\r\n	admin	Experiences	1
761126	2024-07-04	09:59:59.4085189	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3630\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 8,721.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-5\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
761127	2024-07-04	09:59:59.4125190	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3630\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: December 02, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 8,077.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-5\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
762056	2024-07-05	10:14:49.1004316	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3644\r\nRecognitionId: 0\r\nRecognitionName: TECHNICAL WORKING GROUP- CAPACITY BUILDING FOR SCHOOL HEADS AND FINANCIAL STAFF ON THE PROPER UTILIZATION OF MOOE FUNDS\r\n	admin	Recognitions	1
761128	2024-07-04	09:59:59.4175190	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3630\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: April 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 7,947.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-4\r\nStatus: Permanent\r\nToDate: December 01, 2010\r\n	admin	Experiences	1
761129	2024-07-04	09:59:59.4225197	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3630\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 7,285.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-4\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
761130	2024-07-04	09:59:59.4265186	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: 6\r\nBasicInformationId: 3630\r\nBirthDate: June 29, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: DONNA.ITURRALDE@DEPED. GOV.PH\r\nExtensionName: \r\nFirstName: DONNA\r\nFullName: DONNA G. ITURRALDE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ITURRALDE\r\nMaidenName: \r\nMiddleName: GARCIA\r\nMobileNumber: 09052881709\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: 6\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: 64, NOBLE STREET, BATANGAS CITY\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: 64, NOBLE STREET, BATANGAS CITY\r\nTIN: \r\nWeight: 68\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: 6\r\nBasicInformationId: 3630\r\nBirthDate: June 29, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: DONNA.ITURRALDE@DEPED. GOV.PH\r\nExtensionName: \r\nFirstName: DONNA\r\nFullName: DONNA G. ITURRALDE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ITURRALDE\r\nMaidenName: \r\nMiddleName: GARCIA\r\nMobileNumber: 09052881709\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: 6\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: 64, NOBLE STREET, BATANGAS CITY\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: 64, NOBLE STREET, BATANGAS CITY\r\nTIN: \r\nWeight: 68\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761131	2024-07-04	09:59:59.4325186	<Undetected>	Update	BasicInformationId: 3630\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3366\r\nExtensionName: \r\nFirstName: NESTOR\r\nFullName: NESTOR RAYOS ITURRALDE\r\nGender: Male\r\nLastName: ITURRALDE\r\nMaidenName: \r\nMiddleName: RAYOS\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3630\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3366\r\nExtensionName: \r\nFirstName: NESTOR\r\nFullName: NESTOR ITURRALDE\r\nGender: Male\r\nLastName: ITURRALDE\r\nMaidenName: \r\nMiddleName: RAYOS\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
761132	2024-07-04	09:59:59.4365227	<Undetected>	Update	BasicInformationId: 3630\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3367\r\nExtensionName: \r\nFirstName: ELVIRA\r\nFullName: ELVIRA GARCIA CAPULI\r\nGender: Male\r\nLastName: CAPULI\r\nMaidenName: \r\nMiddleName: GARCIA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3630\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3367\r\nExtensionName: \r\nFirstName: ELVIRA\r\nFullName: ELVIRA CAPULI\r\nGender: Male\r\nLastName: CAPULI\r\nMaidenName: \r\nMiddleName: GARCIA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761133	2024-07-04	09:59:59.4405215	<Undetected>	Update	BasicInformationId: 3630\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3427\r\n	BasicInformationId: 3630\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3427\r\n	admin	Questionnaires	1
761134	2024-07-04	10:10:52.9319564	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3630\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 6,622.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-4\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
761135	2024-07-04	10:10:52.9369572	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3630\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 6,020.00\r\nPositionHeld: UTILITY WORKER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-4\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
761136	2024-07-04	10:10:52.9409559	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3630\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 5,873.00\r\nPositionHeld: UTILITY WORKER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-3\r\nStatus: Permanent\r\nToDate: December 31, 2007\r\n	admin	Experiences	1
761137	2024-07-04	10:10:52.9459568	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3630\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 5,339.00\r\nPositionHeld: UTILITY WORKER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-3\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
771120	2025-03-17	16:01:47.4731320	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3794\r\nSkillId: 0\r\nSkillName: DRAWING\r\n	admin	Skills	1
761138	2024-07-04	10:10:52.9509571	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3630\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: March 01, 2004\r\nIsGovernmentService: True\r\nMonthlySalary: 5,209.00\r\nPositionHeld: UTILITY WORKER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-2\r\nStatus: Permanent\r\nToDate: December 31, 2004\r\n	admin	Experiences	1
761139	2024-07-04	10:10:52.9559562	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3630\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 5,209.00\r\nPositionHeld: UTILITY WORKER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-2\r\nStatus: Permanent\r\nToDate: February 29, 2004\r\n	admin	Experiences	1
761140	2024-07-04	10:10:52.9599561	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3630\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 5,082.00\r\nPositionHeld: UTILITY WORKER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-1\r\nStatus: Permanent\r\nToDate: December 31, 2001\r\n	admin	Experiences	1
761141	2024-07-04	10:10:52.9659568	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3630\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 4,840.00\r\nPositionHeld: UTILITY WORKER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-1\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
761142	2024-07-04	10:10:52.9709559	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3630\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: December 01, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 4,400.00\r\nPositionHeld: UTILITY WORKER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-1\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
761143	2024-07-04	10:13:54.9677676	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION QUALITY MANAGEMENT SYSTEM ( DQMS)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761144	2024-07-04	10:18:38.3882800	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING WORKSHOP ON SEVEN ( 7S) FOR SCHOOLS LEADERS, ADMINISTRATIVE AIDES AND ADMINISTRATIVE OFFICERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761145	2024-07-04	10:20:47.3827824	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING- WORKSHOP ON QUALITY MANAGEMENT SYSTEM FOCUSED ON SEVEN (7S)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761146	2024-07-04	10:21:37.5035435	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3630\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION- SCHOOLS DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761147	2024-07-04	10:21:37.5075414	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3630\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION- SCHOOLS DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15229\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761148	2024-07-04	10:21:37.5125421	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3630\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION- SCHOOLS DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761149	2024-07-04	10:21:37.5175414	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3630\r\nEmployeeTrainingId: 0\r\nFromDate: February 20, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION- SCHOOLS DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: February 20, 2023\r\nTrainingId: 15114\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761150	2024-07-04	10:21:37.5215417	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3630\r\nEmployeeTrainingId: 0\r\nFromDate: December 14, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION- SCHOOLS DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: December 14, 2022\r\nTrainingId: 15230\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761183	2024-07-04	10:56:43.7643322	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING ON AUDIT MANAGEMENT SYSTEM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761151	2024-07-04	10:21:37.5265464	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3630\r\nEmployeeTrainingId: 0\r\nFromDate: June 30, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- SCHOOLS DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: June 30, 2022\r\nTrainingId: 15225\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761152	2024-07-04	10:23:47.3655097	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3630\r\nSkillId: 0\r\nSkillName: BASIC COMPUTER SKILL\r\n	admin	Skills	1
761153	2024-07-04	10:23:47.3705081	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3630\r\nSkillId: 0\r\nSkillName: SINGING \r\n	admin	Skills	1
761154	2024-07-04	10:23:47.3745117	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3630\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY PUBLIC SCHOOL TEACHERS AND EMPLOYEE ASSOCIATION \r\n	admin	Organizations	1
761155	2024-07-04	10:23:47.3835111	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3630\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY PUBLIC SCHOOL TEACHERS AND EMPLOYEES CREDIT COOPERATIVE \r\n	admin	Organizations	1
761156	2024-07-04	10:30:09.9980845	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3630\r\nCharacterReferenceId: 0\r\nCompanyAddress: GULOD LABAC, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 702-2094\r\nExtensionName: \r\nFirstName: LEAH \r\nLastName: CELEMIN \r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761157	2024-07-04	10:30:10.0031244	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3630\r\nCharacterReferenceId: 0\r\nCompanyAddress: MONTALBO ROAD, BOLBOK BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09171428944\r\nExtensionName: \r\nFirstName: LEA\r\nLastName: AQUINO\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761158	2024-07-04	10:30:10.0110845	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3630\r\nCharacterReferenceId: 0\r\nCompanyAddress: DUMANTAY BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09971284850\r\nExtensionName: \r\nFirstName: MARIA ROSEL \r\nLastName: ISLETA\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761159	2024-07-04	10:30:10.0150835	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: 6\r\nBasicInformationId: 3630\r\nBirthDate: June 29, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: DONNA.ITURRALDE@DEPED. GOV.PH\r\nExtensionName: \r\nFirstName: DONNA\r\nFullName: DONNA G. ITURRALDE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ITURRALDE\r\nMaidenName: \r\nMiddleName: GARCIA\r\nMobileNumber: 09052881709\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: 6\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: 64, NOBLE STREET, BATANGAS CITY\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: 64, NOBLE STREET, BATANGAS CITY\r\nTIN: \r\nWeight: 68\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: 6\r\nBasicInformationId: 3630\r\nBirthDate: June 29, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: DONNA.ITURRALDE@DEPED. GOV.PH\r\nExtensionName: \r\nFirstName: DONNA\r\nFullName: DONNA G. ITURRALDE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02002996055\r\nHDMF: 1490-0090-0837\r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ITURRALDE\r\nMaidenName: \r\nMiddleName: GARCIA\r\nMobileNumber: 09052881709\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: 6\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: 64, NOBLE STREET, BATANGAS CITY\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000008391-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: 64, NOBLE STREET, BATANGAS CITY\r\nTIN: 915-190-651-0000\r\nWeight: 68\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761160	2024-07-04	10:30:10.0200842	<Undetected>	Update	BasicInformationId: 3630\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3427\r\n	BasicInformationId: 3630\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3427\r\n	admin	Questionnaires	1
761161	2024-07-04	10:35:39.9406833	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: ANALYN\r\nBarangay: ALANGILAN\r\nBasicInformationId: 0\r\nBirthDate: January 19, 1981\r\nBirthPlace: CORCUERA ROMBLOM\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: \r\nExtensionName: \r\nFirstName: GINALYN\r\nFullName: GINALYN F. FABREQUER\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: 1213-1392-6745\r\nHeight: 165\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: FABREQUER\r\nMaidenName: \r\nMiddleName: FAJICULAY\r\nMobileNumber: 09508636263\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: ANALYN\r\nPermanentBarangay: ALANGILAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-254104835-0\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: 04-4461344-8\r\nStreetName: \r\nTIN: 445-112-735-0000\r\nWeight: 52\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761162	2024-07-04	10:35:40.0997754	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3631\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1985\r\nDateTo: 1994\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SUGOD ELEMENTARY SCHOOL\r\nYearGraduated: 1994\r\n	admin	EducationalBackgrounds	1
775149	2025-03-24	16:24:47.1037208	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3917\r\nSkillId: 0\r\nSkillName: SEWING\r\n	admin	Skills	1
761163	2024-07-04	10:35:40.1037616	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3631\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 1998\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: ODIONGAN NATIONAL HIGH SCHOOL\r\nYearGraduated: 1998\r\n	admin	EducationalBackgrounds	1
761164	2024-07-04	10:35:40.1087451	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3631\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09691293710\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RENE\r\nFullName: RENE FALLAN FABREQUER\r\nGender: Male\r\nLastName: FABREQUER\r\nMaidenName: \r\nMiddleName: FALLAN\r\nOccupation: DRIVER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
761165	2024-07-04	10:35:40.1127317	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3631\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROGELIO\r\nFullName: ROGELIO FRUELDA FAJICULAY\r\nGender: Male\r\nLastName: FAJICULAY\r\nMaidenName: \r\nMiddleName: FRUELDA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
761166	2024-07-04	10:35:40.1167183	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3631\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROSALINDA\r\nFullName: ROSALINDA MADERA FAJICULAY\r\nGender: Female\r\nLastName: FAJICULAY\r\nMaidenName: \r\nMiddleName: MADERA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761167	2024-07-04	10:35:40.1217018	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3631\r\nBirthDate: March 20, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: REGIE\r\nFullName: REGIE FABREQUER\r\nGender: Female\r\nLastName: FABREQUER\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761168	2024-07-04	10:35:40.1256885	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3631\r\nBirthDate: March 01, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RENIER\r\nFullName: RENIER FABREQUER\r\nGender: Male\r\nLastName: FABREQUER\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761169	2024-07-04	10:35:40.1296752	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3631\r\nBirthDate: June 25, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GALE NICOLE\r\nFullName: GALE NICOLE FABREQUER\r\nGender: Male\r\nLastName: FABREQUER\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761170	2024-07-04	10:35:40.1336617	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3631\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OFFICE BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15113\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761171	2024-07-04	10:35:40.1376485	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3631\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OFFICE BATANGAS CITY\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761172	2024-07-04	10:35:40.1416351	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3631\r\nCharacterReferenceId: 0\r\nCompanyAddress: ALANGILAN BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09817234326\r\nExtensionName: \r\nFirstName: GERALYN\r\nLastName: FAMPO\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761173	2024-07-04	10:35:40.1456217	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3631\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: March 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 13,000.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: July 04, 2024\r\n	admin	Experiences	1
761174	2024-07-04	10:35:40.1496084	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3631\r\nCompanyInstitution: AGP SALES & BUILDING SERVICES INCORPORATION \r\nExperienceId: 0\r\nFromDate: September 01, 2022\r\nIsGovernmentService: False\r\nMonthlySalary: 373.00\r\nPositionHeld: HOUSEKEEPER\r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: February 28, 2023\r\n	admin	Experiences	1
761175	2024-07-04	10:35:40.1545921	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3631\r\nSkillId: 0\r\nSkillName: HOUSE KEEPING\r\n	admin	Skills	1
761176	2024-07-04	10:35:40.1585784	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3631\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
761177	2024-07-04	10:35:40.1635620	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3631\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
761178	2024-07-04	10:39:57.4974967	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: MALITAM\r\nBasicInformationId: 0\r\nBirthDate: December 12, 1990\r\nBirthPlace: ROSARIO,BATANGAS\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: SARAHJANE.GONZALEZ.@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: SARAH JANE\r\nFullName: SARAH JANE T. GONZALES\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.71\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GONZALES\r\nMaidenName: \r\nMiddleName: TUNGOL\r\nMobileNumber: 09369553720\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: MALITAM\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ILANG ILANG\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: ILANG ILANG\r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761179	2024-07-04	10:39:57.5097697	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3632\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROCKY EARVIN\r\nFullName: ROCKY EARVIN MACATANGAY GONZALES\r\nGender: Male\r\nLastName: GONZALES\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: TEACHER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
761180	2024-07-04	10:39:57.5097697	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3632\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ANGELO\r\nFullName: ANGELO SIGUA TUNGOL\r\nGender: Male\r\nLastName: TUNGOL\r\nMaidenName: \r\nMiddleName: SIGUA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
761181	2024-07-04	10:39:57.5097697	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3632\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ANACLETA\r\nFullName: ANACLETA MAGTIBAY AGUADO\r\nGender: Male\r\nLastName: AGUADO\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761182	2024-07-04	10:39:57.5097697	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3632\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
761185	2024-07-04	11:00:39.2538007	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING ON SAFE SPACES ACT AND GENDER- RESPONSIVE POLICIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761187	2024-07-04	11:05:49.0886173	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: HONORABLE MENTION\r\nBasicInformationId: 3632\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1997\r\nDateTo: 2003\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: MANGHINAO ELEMENTARY SCHOOL\r\nYearGraduated: 2003\r\n	admin	EducationalBackgrounds	1
761188	2024-07-04	11:05:49.0926229	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3632\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BAUAN TECHNICAL HIGH SCHOOL\r\nYearGraduated: 2007\r\n	admin	EducationalBackgrounds	1
761189	2024-07-04	11:05:49.0965705	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3632\r\nCourse: \r\nCourseId: 1250\r\nCourseOrMajor: \r\nDateFrom: 2008\r\nDateTo: 2012\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: WESTMEAD INTERNATIONAL SCHOOL \r\nYearGraduated: 2012\r\n	admin	EducationalBackgrounds	1
761190	2024-07-04	11:05:49.1005701	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3632\r\nCourse: \r\nCourseId: 1253\r\nCourseOrMajor: \r\nDateFrom: 2019\r\nDateTo: 2021\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2021\r\n	admin	EducationalBackgrounds	1
761191	2024-07-04	11:05:49.1055701	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3632\r\nEmployeeTrainingId: 0\r\nFromDate: November 12, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 12, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761192	2024-07-04	11:05:49.1095702	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3632\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 11, 2023\r\nTrainingId: 15045\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766035	2024-07-11	16:10:24.8124003	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3695\r\nRecognitionId: 0\r\nRecognitionName: 2021 OUTSTANDING EDUCATION PROGRAM SUPERVISOR\r\n	admin	Recognitions	1
761193	2024-07-04	11:05:49.1135702	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3632\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15234\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761194	2024-07-04	11:05:49.1185707	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3632\r\nEmployeeTrainingId: 0\r\nFromDate: February 20, 2023\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: February 20, 2023\r\nTrainingId: 15114\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761195	2024-07-04	11:05:49.1225711	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3632\r\nDateOfExamination: March 12, 2017\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: March 12, 2017\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS STATE UNIVERSITY\r\nRating: 81.19\r\nTitle: CAEER SERVICE PROFESSIONAL ELIGIBILITY\r\n	admin	Eligibilities	1
761196	2024-07-04	11:05:49.1265701	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3632\r\nCompanyInstitution: DEPED - DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: March 25, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,388.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: July 04, 2024\r\n	admin	Experiences	1
761197	2024-07-04	11:05:49.1305708	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3632\r\nCompanyInstitution: SANTIS DELICATESSEN\r\nExperienceId: 0\r\nFromDate: February 03, 2015\r\nIsGovernmentService: False\r\nMonthlySalary: 20,889.16\r\nPositionHeld: ACCOUNTING STAFF\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: March 28, 2019\r\n	admin	Experiences	1
761198	2024-07-04	11:05:49.1355702	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3632\r\nCompanyInstitution: BNC MACHINERY CORPORATION\r\nExperienceId: 0\r\nFromDate: August 04, 2014\r\nIsGovernmentService: False\r\nMonthlySalary: 18,000.00\r\nPositionHeld: SALES COORDINATOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Probationary\r\nToDate: January 26, 2015\r\n	admin	Experiences	1
761199	2024-07-04	11:05:49.1395702	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3632\r\nCompanyInstitution: AUSX SERVICES (PHIL) LIMITED COMPANY\r\nExperienceId: 0\r\nFromDate: November 12, 2012\r\nIsGovernmentService: False\r\nMonthlySalary: 20,000.00\r\nPositionHeld: ACCOUNTING ADMINISTRATOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: July 15, 2014\r\n	admin	Experiences	1
761200	2024-07-04	11:05:49.1435701	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: MALITAM\r\nBasicInformationId: 3632\r\nBirthDate: December 12, 1990\r\nBirthPlace: ROSARIO,BATANGAS\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: SARAHJANE.GONZALEZ.@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: SARAH JANE\r\nFullName: SARAH JANE T. GONZALES\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.71\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GONZALES\r\nMaidenName: \r\nMiddleName: TUNGOL\r\nMobileNumber: 09369553720\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: MALITAM\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ILANG ILANG\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: ILANG ILANG\r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: MALITAM\r\nBasicInformationId: 3632\r\nBirthDate: December 12, 1990\r\nBirthPlace: ROSARIO,BATANGAS\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: SARAHJANE.GONZALEZ.@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: SARAH JANE\r\nFullName: SARAH JANE T. GONZALES\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.71\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GONZALES\r\nMaidenName: \r\nMiddleName: TUNGOL\r\nMobileNumber: 09369553720\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: MALITAM\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ILANG ILANG\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ILANG ILANG\r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761201	2024-07-04	11:05:49.1475702	<Undetected>	Update	BasicInformationId: 3632\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3374\r\nExtensionName: \r\nFirstName: ROCKY EARVIN\r\nFullName: ROCKY EARVIN MACATANGAY GONZALES\r\nGender: Male\r\nLastName: GONZALES\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: TEACHER\r\nRelationship: Husband\r\n	BasicInformationId: 3632\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3374\r\nExtensionName: \r\nFirstName: ROCKY EARVIN\r\nFullName: ROCKY EARVIN GONZALES\r\nGender: Male\r\nLastName: GONZALES\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: TEACHER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
761202	2024-07-04	11:05:49.1525702	<Undetected>	Update	BasicInformationId: 3632\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3375\r\nExtensionName: \r\nFirstName: ANGELO\r\nFullName: ANGELO SIGUA TUNGOL\r\nGender: Male\r\nLastName: TUNGOL\r\nMaidenName: \r\nMiddleName: SIGUA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3632\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3375\r\nExtensionName: \r\nFirstName: ANGELO\r\nFullName: ANGELO TUNGOL\r\nGender: Male\r\nLastName: TUNGOL\r\nMaidenName: \r\nMiddleName: SIGUA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
761203	2024-07-04	11:05:49.1565701	<Undetected>	Update	BasicInformationId: 3632\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3376\r\nExtensionName: \r\nFirstName: ANACLETA\r\nFullName: ANACLETA MAGTIBAY AGUADO\r\nGender: Male\r\nLastName: AGUADO\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3632\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3376\r\nExtensionName: \r\nFirstName: ANACLETA\r\nFullName: ANACLETA AGUADO\r\nGender: Male\r\nLastName: AGUADO\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761204	2024-07-04	11:05:49.1605702	<Undetected>	Update	BasicInformationId: 3632\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3429\r\n	BasicInformationId: 3632\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3429\r\n	admin	Questionnaires	1
761206	2024-07-04	11:06:56.6302973	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MASTER MICROSOFT POWERPOINT 2016 THE EASY WAY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761208	2024-07-04	11:11:12.5322637	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: HOW TO DEVELOP EMOTIONAL RESILIENCE TO MANAGE STREES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761209	2024-07-04	11:12:11.4780917	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: HOW TO DEVELOP EMOTIONAL RESILIENCE TO MANAGE STRESS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761211	2024-07-04	11:14:34.8463766	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ACCOUNTING & FINANCIAL STATEMENT ANALYSIS : COMPLETE TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761212	2024-07-04	11:17:17.9271734	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MASTERING COLLABORATION ; WORK TOGETHER FOR THE BEST RESULTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761213	2024-07-04	11:19:02.3487489	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MICROSOFT ACCESS 2016 MASTER CLASS : BEGINNER TO ADVANCED\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761251	2024-07-04	11:20:18.0853660	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ACORNS' GUIDE TO PERSONAL FINANCE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761252	2024-07-04	11:21:49.6772800	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MICROSOFT EXCEL- EXCEL FROM BEGINNER TO ADVANCED\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761253	2024-07-04	11:24:29.4133933	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2022 ORIENTATION TRAINING ON QUALITY MANAGEMENT SYSTEM. DEPED MANUAL OF STYLE AND DEPED SERVICE MARKS AND VISUAL IDENTITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761254	2024-07-04	11:28:18.5089321	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: VIRTUAL TRAINING FOR THE NEWLY HIRED OR APPOINTED ADMINISTRATIVE ASSISTANT ( ADAS) II AND III, ADMINISTRATIVE OFFICER II ( HRMO I ) ON WORK ORIENTATION, JOB\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761256	2024-07-04	11:32:12.3587385	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION ROLL -OUT OF DEPED ORDER NO. 029, S.2019: RE PROCEDURAL GUIDELINES ON THE MANAGEMENT CASH ADVANCES FOR SCHOOL MOOE AND PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761257	2024-07-04	11:35:42.9007901	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SEMINAR- WORKSHOP ON THE CONDUCT OF FY 2020 BUDGET EXECUTION DOCUMENTS ( BEDS )\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761258	2024-07-04	11:38:21.3637254	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION OF UNIFIED REPORTING ( URS ) VERSION 2.0 AND ACTUAL ONLINE ENCODING ACTIVITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761259	2024-07-04	11:40:03.3183228	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3632\r\nEmployeeTrainingId: 0\r\nFromDate: August 11, 2022\r\nHours: 7\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: UDEMY\r\nStatus: \r\nToDate: August 11, 2022\r\nTrainingId: 15237\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761260	2024-07-04	11:40:03.3223210	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3632\r\nEmployeeTrainingId: 0\r\nFromDate: June 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: June 30, 2023\r\nTrainingId: 15225\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761606	2024-07-04	15:27:01.5858217	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 SCIENCE AND TECHNOLOGY FAIR\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761205	2024-07-04	11:05:53.9875907	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CONDUCT OF THE REGIONAL SEMINAR-WORKSHOP ON THE CONSOLIDATION AND FINALIZATION OF FY 2023 BUDGET PROPOSAL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761207	2024-07-04	11:09:14.0122876	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING OF TRAINERS FOR THE PROCEDURAL GUIDELINES ON THE MANAGEMENT OF CASH ADVANCES FOR SCHOOL MOOE AND PROGRAM FUNDS OF NON-IMPLEMENTING UNITS PURSUANT TO COA, DBM AND DEPED JOINT CIRCULAR O.2019-1\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761210	2024-07-04	11:12:37.0698248	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PROGRAM MANAGEMENT INFORMATION SYSTEM (PMIS) REGIONAL ROLL OUT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761214	2024-07-04	11:19:40.8093737	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: #1038\r\nAddress2: \r\nBarangay: KUMINTANG IBABA\r\nBasicInformationId: 0\r\nBirthDate: March 10, 1988\r\nBirthPlace: BATANGAS REGIONAL HOSPITAL\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: kristel.conti@deped.gov.ph\r\nExtensionName: \r\nFirstName: KRISTEL\r\nFullName: KRISTEL C. QUIZON\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02004790908\r\nHDMF: 1210-0680-9185\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: QUIZON\r\nMaidenName: \r\nMiddleName: CONTI\r\nMobileNumber: 09433122627\r\nNationality: Filipino\r\nPermanentAddress1: #1038\r\nPermanentAddress2: \r\nPermanentBarangay: KUMINTANG IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: BIHI ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050229172-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: 04-2084369-8\r\nStreetName: BIHI ROAD\r\nTIN: 307-764-167-0000\r\nWeight: 49\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761215	2024-07-04	11:19:41.0232641	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3633\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1995\r\nDateTo: 2001\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS  \r\nYearGraduated: 2001\r\n	admin	EducationalBackgrounds	1
761216	2024-07-04	11:19:41.0272507	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3633\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2005\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 2005\r\n	admin	EducationalBackgrounds	1
761217	2024-07-04	11:19:41.0312372	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3633\r\nCourse: \r\nCourseId: 1252\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: ACCOUNTING MANAGEMENT\r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 2009\r\n	admin	EducationalBackgrounds	1
761218	2024-07-04	11:19:41.0352238	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3633\r\nCourse: \r\nCourseId: 1256\r\nCourseOrMajor: \r\nDateFrom: 2009\r\nDateTo: 2013\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2013\r\n	admin	EducationalBackgrounds	1
761219	2024-07-04	11:19:41.0392104	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3633\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EFREN\r\nFullName: EFREN PANGANIBAN CONTI\r\nGender: Male\r\nLastName: CONTI\r\nMaidenName: \r\nMiddleName: PANGANIBAN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
761220	2024-07-04	11:19:41.0441941	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3633\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EFREN\r\nFullName: EFREN PANGANIBAN CONTI\r\nGender: Male\r\nLastName: CONTI\r\nMaidenName: \r\nMiddleName: PANGANIBAN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
761221	2024-07-04	11:19:41.0481807	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3633\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALEJANDRA\r\nFullName: ALEJANDRA DELICA CONTI\r\nGender: Female\r\nLastName: CONTI\r\nMaidenName: \r\nMiddleName: DELICA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761222	2024-07-04	11:19:41.0521672	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3633\r\nBirthDate: August 25, 2018\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: KRISHA ALTHEA\r\nFullName: KRISHA ALTHEA CONTI QUIZON\r\nGender: Female\r\nLastName: QUIZON\r\nMaidenName: \r\nMiddleName: CONTI\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761223	2024-07-04	11:19:41.0561541	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3633\r\nBirthDate: November 10, 2021\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: KRISHA FRENDA\r\nFullName: KRISHA FRENDA CONTI QUIZON\r\nGender: Female\r\nLastName: QUIZON\r\nMaidenName: \r\nMiddleName: CONTI\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761224	2024-07-04	11:19:41.0601818	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3633\r\nEmployeeTrainingId: 0\r\nFromDate: January 11, 2024\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: January 12, 2024\r\nTrainingId: 15232\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761225	2024-07-04	11:19:41.0651650	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3633\r\nEmployeeTrainingId: 0\r\nFromDate: September 19, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION (REGIONAL OFFICE)\r\nStatus: \r\nToDate: September 20, 2023\r\nTrainingId: 15233\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761226	2024-07-04	11:19:41.0691518	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3633\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15113\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761227	2024-07-04	11:19:41.0741344	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3633\r\nEmployeeTrainingId: 0\r\nFromDate: May 23, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION (CENTRAL OFFICE)\r\nStatus: \r\nToDate: May 25, 2023\r\nTrainingId: 15080\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761228	2024-07-04	11:19:41.0781210	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3633\r\nEmployeeTrainingId: 0\r\nFromDate: August 12, 2022\r\nHours: 56\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 22, 2022\r\nTrainingId: 15235\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761229	2024-07-04	11:19:41.0820674	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3633\r\nEmployeeTrainingId: 0\r\nFromDate: March 09, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION (REGIONAL OFFICE)\r\nStatus: \r\nToDate: March 11, 2022\r\nTrainingId: 15236\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761230	2024-07-04	11:19:41.0860541	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3633\r\nEmployeeTrainingId: 0\r\nFromDate: November 05, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION ( CENTRAL OFFICE)\r\nStatus: \r\nToDate: November 06, 2019\r\nTrainingId: 15238\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761231	2024-07-04	11:19:41.0900407	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3633\r\nEmployeeTrainingId: 0\r\nFromDate: May 23, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: JBDC OCCUPATIONAL HEALTH, SAFETY AND ENVIRONMENT CONSULTANCY\r\nStatus: \r\nToDate: May 24, 2019\r\nTrainingId: 15064\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761232	2024-07-04	11:19:41.0950241	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3633\r\nEmployeeTrainingId: 0\r\nFromDate: February 05, 2019\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION (REGIONAL OFFICE)\r\nStatus: \r\nToDate: February 08, 2019\r\nTrainingId: 15241\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761233	2024-07-04	11:19:41.0990109	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3633\r\nCharacterReferenceId: 0\r\nCompanyAddress: SOROSORO ILAYA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 723-7319\r\nExtensionName: \r\nFirstName: MARIA JOSEFINA\r\nLastName: LAGMAN\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761234	2024-07-04	11:19:41.1029974	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3633\r\nCharacterReferenceId: 0\r\nCompanyAddress: GULOD ITAAS, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 702-2094\r\nExtensionName: \r\nFirstName: LEAH\r\nLastName: CELEMIN\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761235	2024-07-04	11:19:41.1069841	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3633\r\nCharacterReferenceId: 0\r\nCompanyAddress: TABANGAO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 723-6847\r\nExtensionName: \r\nFirstName: SHIRLEY\r\nLastName: JARDIN\r\nMiddleName: Z\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761236	2024-07-04	11:19:41.1109707	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3633\r\nDateOfExamination: October 28, 2007\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 7\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: October 28, 2007\r\nLevelOfEligibility: First Level (Subprofessional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS CITY BATANGAS\r\nRating: 83.33%\r\nTitle: CAREER SERVICE SUB- PROFESSIONAL\r\n	admin	Eligibilities	1
761237	2024-07-04	11:19:41.1159542	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3633\r\nDateOfExamination: March 20, 2016\r\nDateOfRelease: June 14, 2016\r\nEligibilityDocumentTypeId: 0\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: March 20, 2016\r\nLevelOfEligibility: First Level (Subprofessional)\r\nLicenseNumber: 1462366\r\nPlaceOfExamination: LUCENA CITY, QUEZON\r\nRating: 81.60%\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
761238	2024-07-04	11:19:41.1199409	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3633\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: February 03, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: ADMINISTRATIVE OFFICER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: July 04, 2024\r\n	admin	Experiences	1
761239	2024-07-04	11:19:41.1239274	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3633\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: February 03, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 25,439.00\r\nPositionHeld: ADMINISTRATIVE OFFICER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: February 02, 2023\r\n	admin	Experiences	1
761240	2024-07-04	11:19:41.1279141	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3633\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: December 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 18,128.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-2\r\nStatus: Permanent\r\nToDate: February 02, 2020\r\n	admin	Experiences	1
761241	2024-07-04	11:19:41.1319008	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3633\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 01, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 15,368.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 08-1\r\nStatus: Permanent\r\nToDate: November 30, 2016\r\n	admin	Experiences	1
761242	2024-07-04	11:19:41.1368842	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3633\r\nCompanyInstitution: GRANDIOSE FOOD SERVICES INC.\r\nExperienceId: 0\r\nFromDate: July 25, 2013\r\nIsGovernmentService: False\r\nMonthlySalary: 12,000.00\r\nPositionHeld: ADMINISTRATIVE ACCOUNTANT \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: May 29, 2015\r\n	admin	Experiences	1
761243	2024-07-04	11:19:41.1408711	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3633\r\nCompanyInstitution: CDO, FOODSPHERE INC.\r\nExperienceId: 0\r\nFromDate: January 06, 2011\r\nIsGovernmentService: False\r\nMonthlySalary: 9,000.00\r\nPositionHeld: PAYROLL STAFF\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: July 24, 2013\r\n	admin	Experiences	1
761244	2024-07-04	11:19:41.1448575	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3633\r\nCompanyInstitution: PASCAR CREDIT CORPORATION\r\nExperienceId: 0\r\nFromDate: July 15, 2009\r\nIsGovernmentService: False\r\nMonthlySalary: 6,534.00\r\nPositionHeld: BOOKKEEPER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: October 15, 2010\r\n	admin	Experiences	1
761245	2024-07-04	11:19:41.1488441	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3633\r\nCompanyInstitution: MADISON SHOPPING PLAZA, INC.\r\nExperienceId: 0\r\nFromDate: April 13, 2009\r\nIsGovernmentService: False\r\nMonthlySalary: 6,996.00\r\nPositionHeld: CASHIER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: July 09, 2009\r\n	admin	Experiences	1
761246	2024-07-04	11:19:41.1528308	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3633\r\nSkillId: 0\r\nSkillName: SAP SYSTEM KNOWLEDGEABLE\r\n	admin	Skills	1
761247	2024-07-04	11:19:41.1578144	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3633\r\nSkillId: 0\r\nSkillName: MICROSOFT OFFICE KNOWLEDGEABLE\r\n	admin	Skills	1
761248	2024-07-04	11:19:41.1618008	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3633\r\nRecognitionId: 0\r\nRecognitionName: FACILITATOR \r\n	admin	Recognitions	1
761249	2024-07-04	11:19:41.1657876	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3633\r\nRecognitionId: 0\r\nRecognitionName: LOYALTY AWARD\r\n	admin	Recognitions	1
761250	2024-07-04	11:19:41.1697742	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3633\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: RESIGNATION\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
761255	2024-07-04	11:29:20.3336382	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: ASSOCIATE IN COMPUTER TECHNOLOGY\r\nLevel: College\r\n	admin	Courses	1
775150	2025-03-24	16:24:47.1147206	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3917\r\nSkillId: 0\r\nSkillName: GARDENING\r\n	admin	Skills	1
761261	2024-07-04	11:40:03.3273233	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3632\r\nEmployeeTrainingId: 0\r\nFromDate: June 28, 2022\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: UDEMY\r\nStatus: \r\nToDate: June 28, 2022\r\nTrainingId: 15240\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761262	2024-07-04	11:40:03.3313226	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3632\r\nEmployeeTrainingId: 0\r\nFromDate: June 22, 2022\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: UDEMY\r\nStatus: \r\nToDate: June 22, 2022\r\nTrainingId: 15242\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761263	2024-07-04	11:40:03.3353225	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3632\r\nEmployeeTrainingId: 0\r\nFromDate: June 22, 2023\r\nHours: 1\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: UDEMY\r\nStatus: \r\nToDate: June 22, 2023\r\nTrainingId: 15243\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761264	2024-07-04	11:40:03.3393227	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3632\r\nEmployeeTrainingId: 0\r\nFromDate: May 18, 2022\r\nHours: 7\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: UDEMY\r\nStatus: \r\nToDate: May 18, 2022\r\nTrainingId: 15244\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761265	2024-07-04	11:40:03.3443225	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3632\r\nEmployeeTrainingId: 0\r\nFromDate: March 21, 2022\r\nHours: 1\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: UDEMY\r\nStatus: \r\nToDate: March 21, 2022\r\nTrainingId: 15245\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761266	2024-07-04	11:40:03.3483225	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3632\r\nEmployeeTrainingId: 0\r\nFromDate: February 28, 2022\r\nHours: 18\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: UDEMY\r\nStatus: \r\nToDate: March 01, 2022\r\nTrainingId: 15246\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761267	2024-07-04	11:40:03.3533224	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3632\r\nEmployeeTrainingId: 0\r\nFromDate: January 12, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: January 14, 2022\r\nTrainingId: 15247\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761268	2024-07-04	11:40:03.3573230	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3632\r\nEmployeeTrainingId: 0\r\nFromDate: January 21, 2022\r\nHours: 12\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED REGION IV - A CALABARZON \r\nStatus: \r\nToDate: January 22, 2022\r\nTrainingId: 15248\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761269	2024-07-04	11:40:03.3613287	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3632\r\nEmployeeTrainingId: 0\r\nFromDate: February 13, 2022\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: February 14, 2022\r\nTrainingId: 15249\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761270	2024-07-04	11:40:03.3653281	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3632\r\nEmployeeTrainingId: 0\r\nFromDate: December 12, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: December 13, 2019\r\nTrainingId: 15059\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761271	2024-07-04	11:40:03.3703285	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3632\r\nEmployeeTrainingId: 0\r\nFromDate: November 18, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 19, 2019\r\nTrainingId: 15250\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761272	2024-07-04	11:40:03.3743283	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3632\r\nEmployeeTrainingId: 0\r\nFromDate: August 29, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED REGION IV - A CALABARZON \r\nStatus: \r\nToDate: August 30, 2019\r\nTrainingId: 15128\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761275	2024-07-04	11:46:15.0997704	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3632\r\nCharacterReferenceId: 0\r\nCompanyAddress: DEPED DIVISION OF BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 740-8687\r\nExtensionName: \r\nFirstName: RODELIA\r\nLastName: MACALALAD\r\nMiddleName: G\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761276	2024-07-04	11:46:15.1037701	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3632\r\nCharacterReferenceId: 0\r\nCompanyAddress: SANTIS DELICATESSEN\r\nCompanyName: \r\nContactNumber: 840-3771 LOC. 125\r\nExtensionName: \r\nFirstName: MARIETTA\r\nLastName: CATINAN\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761277	2024-07-04	11:46:15.1107708	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3632\r\nCharacterReferenceId: 0\r\nCompanyAddress: BNC INGREDIENTS CORPORATION\r\nCompanyName: \r\nContactNumber: 09178868116\r\nExtensionName: \r\nFirstName: AIVY\r\nLastName: NG\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761273	2024-07-04	11:43:38.1994147	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 28TH CONFERENCE OF THE REGIONAL COUNCIL OF HUMAN RESOURCE MANAGEMENT PRACTITIONERS "PATRIOTISM AND INTEGRITY: THE HEART OF PUBLIC SERVICE"\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761274	2024-07-04	11:44:55.9438621	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTANCE LEARNING PROGRAM (DLP)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761280	2024-07-04	11:46:30.4959534	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RESEARCH BASED PLANNING: ECENTER MAKING IT HAPPEN\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761281	2024-07-04	11:48:09.7023879	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAREER OPPORTUNITIES IN THE IT-BPM SECTOR\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761282	2024-07-04	11:48:49.7273037	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIGITAL PHILIPPINES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761283	2024-07-04	11:49:49.7200473	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAREER OPPORTUNITIES IN THE GLOBAL- IN HOUSE CENTER SECTOR\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761293	2024-07-04	11:56:46.5923983	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 269\r\nAddress2: \r\nBarangay: TINGGA LABAC\r\nBasicInformationId: 0\r\nBirthDate: November 03, 1991\r\nBirthPlace: OZAMIZ CITY, MISAMIS OCCIDENTAL\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: analy.bentulan20@gmail.com\r\nExtensionName: \r\nFirstName: ANALY\r\nFullName: ANALY BENTULAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005982653\r\nHDMF: 1210-7565-2285\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BENTULAN\r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: 09302404291\r\nNationality: Filipino\r\nPermanentAddress1: 269\r\nPermanentAddress2: \r\nPermanentBarangay: TINGGA LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ROAD 3 BAYANIHAN\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025322311-0\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-2652600-3\r\nStreetName: ROAD 3 BAYANIHAN\r\nTIN: 430-282-911-0000\r\nWeight: 43\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761294	2024-07-04	11:56:46.7792518	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3635\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1999\r\nDateTo: 2002\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: ALANGILAN CENTRAL ELEMENTARY SCHOOL\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
761295	2024-07-04	11:56:46.7842353	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: 5TH HONORABLE MENTION\r\nBasicInformationId: 3635\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2002\r\nDateTo: 2005\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: MISAMIS ANNEX ELEMENTARY SCHOOL\r\nYearGraduated: 2005\r\n	admin	EducationalBackgrounds	1
761296	2024-07-04	11:56:46.7882220	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: 7TH HONORABLE MENTION\r\nBasicInformationId: 3635\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: OZAMIZ CITY NATIONAL HIGH SCHOOL\r\nYearGraduated: 2009\r\n	admin	EducationalBackgrounds	1
761297	2024-07-04	11:56:46.7932056	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3635\r\nCourse: \r\nCourseId: 1277\r\nCourseOrMajor: \r\nDateFrom: 2009\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS \r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
761298	2024-07-04	11:56:46.7971922	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3635\r\nCourse: \r\nCourseId: 1268\r\nCourseOrMajor: \r\nDateFrom: 2013\r\nDateTo: 2015\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 2015\r\n	admin	EducationalBackgrounds	1
761299	2024-07-04	11:56:46.8011787	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3635\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GIL\r\nFullName: GIL VILLACAMPA JUMAWAN\r\nGender: Male\r\nLastName: JUMAWAN\r\nMaidenName: \r\nMiddleName: VILLACAMPA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
763051	2024-07-08	11:14:20.5127880	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3658\r\nOrganizationId: 0\r\nOrganizationName: WEST DISTRICT TEACHERS AND EMPLOYEES CREDIT COOPEARATIVE (WEDTEMCO)\r\n	admin	Organizations	1
761278	2024-07-04	11:46:15.1147707	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: MALITAM\r\nBasicInformationId: 3632\r\nBirthDate: December 12, 1990\r\nBirthPlace: ROSARIO,BATANGAS\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: SARAHJANE.GONZALEZ.@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: SARAH JANE\r\nFullName: SARAH JANE T. GONZALES\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.71\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GONZALES\r\nMaidenName: \r\nMiddleName: TUNGOL\r\nMobileNumber: 09369553720\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: MALITAM\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ILANG ILANG\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ILANG ILANG\r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: MALITAM\r\nBasicInformationId: 3632\r\nBirthDate: December 12, 1990\r\nBirthPlace: ROSARIO,BATANGAS\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: SARAHJANE.GONZALEZ.@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: SARAH JANE\r\nFullName: SARAH JANE T. GONZALES\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005568475\r\nHDMF: 1210-6971-5651\r\nHeight: 1.71\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GONZALES\r\nMaidenName: \r\nMiddleName: TUNGOL\r\nMobileNumber: 09369553720\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: MALITAM\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ILANG ILANG\r\nPermanentZipCode: 4200\r\nPhilhealth: 01-051506286-1\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 34-3538056-7\r\nStreetName: ILANG ILANG\r\nTIN: 428-879-082-0000\r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761279	2024-07-04	11:46:15.1187695	<Undetected>	Update	BasicInformationId: 3632\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3429\r\n	BasicInformationId: 3632\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: RESIGNATION\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3429\r\n	admin	Questionnaires	1
761284	2024-07-04	11:53:18.9594914	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: P1-104\r\nAddress2: \r\nBarangay: STA.RITA KARSADA\r\nBasicInformationId: 0\r\nBirthDate: March 18, 1988\r\nBirthPlace: BUHANGIN NAUJAN ORIENTAL MINDORO\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: CLIFF.ATIENZA@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: CLIFF\r\nFullName: CLIFF B. ATIENZA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.07\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ATIENZA\r\nMaidenName: \r\nMiddleName: BUENO\r\nMobileNumber: 09338269038\r\nNationality: Filipino\r\nPermanentAddress1: P1-104\r\nPermanentAddress2: \r\nPermanentBarangay: STA.RITA KARSADA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761285	2024-07-04	11:53:18.9785862	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3634\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 2000\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BUHANGIN ELEMENTARY SCHOOL\r\nYearGraduated: 2000\r\n	admin	EducationalBackgrounds	1
761286	2024-07-04	11:53:18.9785862	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3634\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JUANITO\r\nFullName: JUANITO CULLA ATIENZA\r\nGender: Male\r\nLastName: ATIENZA\r\nMaidenName: \r\nMiddleName: CULLA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761287	2024-07-04	11:53:18.9785862	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3634\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EMMA\r\nFullName: EMMA HULGADO\r\nGender: Female\r\nLastName: BUENO\r\nMaidenName: \r\nMiddleName: HULGADO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761288	2024-07-04	11:53:18.9785862	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3634\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
761300	2024-07-04	11:56:46.8051652	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3635\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALMA\r\nFullName: ALMA SABAYTON BENTULAN\r\nGender: Female\r\nLastName: BENTULAN\r\nMaidenName: \r\nMiddleName: SABAYTON\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761301	2024-07-04	11:56:46.8091518	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3635\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OFFICE BATANGAS CITY \r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15113\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761302	2024-07-04	11:56:46.8141355	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3635\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OFFICE BATANGAS CITY \r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761289	2024-07-04	11:55:05.8822808	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: P1-104\r\nAddress2: \r\nBarangay: STA.RITA KARSADA\r\nBasicInformationId: 3634\r\nBirthDate: March 18, 1988\r\nBirthPlace: BUHANGIN NAUJAN ORIENTAL MINDORO\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: CLIFF.ATIENZA@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: CLIFF\r\nFullName: CLIFF B. ATIENZA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.07\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ATIENZA\r\nMaidenName: \r\nMiddleName: BUENO\r\nMobileNumber: 09338269038\r\nNationality: Filipino\r\nPermanentAddress1: P1-104\r\nPermanentAddress2: \r\nPermanentBarangay: STA.RITA KARSADA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: P1-104\r\nAddress2: \r\nBarangay: STA.RITA KARSADA\r\nBasicInformationId: 3634\r\nBirthDate: March 18, 1988\r\nBirthPlace: BUHANGIN NAUJAN ORIENTAL MINDORO\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: CLIFF.ATIENZA@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: CLIFF\r\nFullName: CLIFF B. ATIENZA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.07\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ATIENZA\r\nMaidenName: \r\nMiddleName: BUENO\r\nMobileNumber: 09338269038\r\nNationality: Filipino\r\nPermanentAddress1: P1-104\r\nPermanentAddress2: \r\nPermanentBarangay: STA.RITA KARSADA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761290	2024-07-04	11:55:05.8862807	<Undetected>	Update	BasicInformationId: 3634\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3382\r\nExtensionName: \r\nFirstName: JUANITO\r\nFullName: JUANITO CULLA ATIENZA\r\nGender: Male\r\nLastName: ATIENZA\r\nMaidenName: \r\nMiddleName: CULLA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3634\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3382\r\nExtensionName: \r\nFirstName: JUANITO\r\nFullName: JUANITO ATIENZA\r\nGender: Male\r\nLastName: ATIENZA\r\nMaidenName: \r\nMiddleName: CULLA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761291	2024-07-04	11:55:05.8972817	<Undetected>	Update	BasicInformationId: 3634\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3383\r\nExtensionName: \r\nFirstName: EMMA\r\nFullName: EMMA HULGADO\r\nGender: Female\r\nLastName: BUENO\r\nMaidenName: \r\nMiddleName: HULGADO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3634\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3383\r\nExtensionName: \r\nFirstName: EMMA\r\nFullName: EMMA BUENO\r\nGender: Female\r\nLastName: BUENO\r\nMaidenName: \r\nMiddleName: HULGADO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761292	2024-07-04	11:55:05.9012832	<Undetected>	Update	BasicInformationId: 3634\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3431\r\n	BasicInformationId: 3634\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3431\r\n	admin	Questionnaires	1
761303	2024-07-04	11:56:46.8181222	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3635\r\nEmployeeTrainingId: 0\r\nFromDate: February 14, 2022\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: CIVIL SERVICE COMMISSION REGIONAL OFFICE IV\r\nStatus: \r\nToDate: February 18, 2022\r\nTrainingId: 15252\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761304	2024-07-04	11:56:46.8221087	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3635\r\nEmployeeTrainingId: 0\r\nFromDate: January 11, 2021\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: CIVIL SERVICE COMMISSION REGIONAL OFFICE IV\r\nStatus: \r\nToDate: January 11, 2021\r\nTrainingId: 15253\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761305	2024-07-04	11:56:46.8260952	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3635\r\nEmployeeTrainingId: 0\r\nFromDate: August 27, 2020\r\nHours: 2\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY\r\nStatus: \r\nToDate: August 27, 2020\r\nTrainingId: 15254\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761306	2024-07-04	11:56:46.8300819	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3635\r\nEmployeeTrainingId: 0\r\nFromDate: August 26, 2020\r\nHours: 2\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY\r\nStatus: \r\nToDate: August 26, 2020\r\nTrainingId: 15255\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761307	2024-07-04	11:56:46.8350656	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3635\r\nEmployeeTrainingId: 0\r\nFromDate: August 20, 2020\r\nHours: 2\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY\r\nStatus: \r\nToDate: August 20, 2020\r\nTrainingId: 15256\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761308	2024-07-04	11:56:46.8390521	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3635\r\nEmployeeTrainingId: 0\r\nFromDate: July 29, 2020\r\nHours: 2\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY\r\nStatus: \r\nToDate: July 29, 2020\r\nTrainingId: 15257\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761309	2024-07-04	11:56:46.8430386	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3635\r\nCharacterReferenceId: 0\r\nCompanyAddress: CSC FIELD OFFICE BATANGAS\r\nCompanyName: \r\nContactNumber: (043) 724-5494\r\nExtensionName: \r\nFirstName: LILY BETH\r\nLastName: MAJOMOT\r\nMiddleName: L\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761310	2024-07-04	11:56:46.8470252	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3635\r\nCharacterReferenceId: 0\r\nCompanyAddress: BULACAN\r\nCompanyName: \r\nContactNumber: 09298060778\r\nExtensionName: \r\nFirstName: ALLAN POE\r\nLastName: CARMONA\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761311	2024-07-04	11:56:46.8520090	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3635\r\nCharacterReferenceId: 0\r\nCompanyAddress: CSC FIELD OFFICE BATANGAS\r\nCompanyName: \r\nContactNumber: (043)724-5494\r\nExtensionName: \r\nFirstName: NORMA\r\nLastName: ABU\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761312	2024-07-04	11:56:46.8559952	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3635\r\nDateOfExamination: March 18, 2018\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 7\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: March 18, 2018\r\nLevelOfEligibility: First Level (Subprofessional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS STATE UNIVERSITY- ALANGILAN\r\nRating: 81.34%\r\nTitle: CAREER SERVICE SUB PROFESSIONAL ELIGIBILITY\r\n	admin	Eligibilities	1
761313	2024-07-04	11:56:46.8599820	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3635\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: March 20, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 17,553.00\r\nPositionHeld: ADMINISTRTAIVE AIDE VI\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 6-\r\nStatus: Permanent\r\nToDate: July 04, 2024\r\n	admin	Experiences	1
761314	2024-07-04	11:56:46.8649668	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3635\r\nCompanyInstitution: PROVINCIAL HUMAN RESOURCE MANAGEMENT OFFICE- DETAILED IN CIVIL SERVICE COMMISSION FIELD OFFICE BATANGAS\r\nExperienceId: 0\r\nFromDate: July 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 681.50\r\nPositionHeld: ADMINISTRATIVE AIDE IV (BOOKBINDER II) \r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-\r\nStatus: Casual\r\nToDate: March 19, 2023\r\n	admin	Experiences	1
761315	2024-07-04	11:56:46.8689522	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3635\r\nCompanyInstitution: PROVINCIAL HUMAN RESOURCE MANAGEMENT OFFICE- DETAILED IN CIVIL SERVICE COMMISSION FIELD OFFICE BATANGAS\r\nExperienceId: 0\r\nFromDate: January 03, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 681.50\r\nPositionHeld: ADMINISTRATIVE AIDE IV (BOOKBINDER II)\r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-\r\nStatus: Casual\r\nToDate: June 30, 2023\r\n	admin	Experiences	1
761316	2024-07-04	11:56:46.8729388	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3635\r\nCompanyInstitution: PROVINCIAL HUMAN RESOURCE MANAGEMENT OFFICE- DETAILED IN CIVIL SERVICE COMMISSION FIELD OFFICE BATANGAS\r\nExperienceId: 0\r\nFromDate: November 16, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 654.00\r\nPositionHeld: ADMINISTRATIVE AIDE IV (BOOKBINDER II)\r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-\r\nStatus: Casual\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
761317	2024-07-04	11:56:46.8779223	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3635\r\nCompanyInstitution: BATANGAS STATE UNIVERSITY\r\nExperienceId: 0\r\nFromDate: September 28, 2017\r\nIsGovernmentService: False\r\nMonthlySalary: 17,816.40\r\nPositionHeld: ADMINISTRATIVE AIDE VI\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 6-\r\nStatus: Job Order\r\nToDate: November 15, 2021\r\n	admin	Experiences	1
761318	2024-07-04	11:56:46.8819084	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3635\r\nCompanyInstitution: AMA COMPUTER LEARNING CENTER- BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 13, 2016\r\nIsGovernmentService: False\r\nMonthlySalary: 100.00\r\nPositionHeld: INSTRUCTOR\r\nRateTypeName: Hourly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: April 04, 2017\r\n	admin	Experiences	1
761319	2024-07-04	11:56:46.8859391	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3635\r\nCompanyInstitution: SUPER SHOPPING MARKET, INC. (SM) HYPERMARKET- BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: February 06, 2013\r\nIsGovernmentService: False\r\nMonthlySalary: 335.00\r\nPositionHeld: CASHIER\r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: June 09, 2013\r\n	admin	Experiences	1
761320	2024-07-04	11:56:46.8899224	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3635\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
761321	2024-07-04	11:56:46.8948667	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3635\r\nSkillId: 0\r\nSkillName: WATCHING MOVIES\r\n	admin	Skills	1
761322	2024-07-04	11:56:46.8988533	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3635\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
761323	2024-07-04	11:56:46.9028399	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3635\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: RESIGNATION\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
761324	2024-07-04	13:14:23.7836487	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3634\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 2000\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: PORFIRIO G. COMIA MEMORIAL NHS\r\nYearGraduated: 2000\r\n	admin	EducationalBackgrounds	1
761325	2024-07-04	13:14:23.7881628	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3634\r\nCourse: \r\nCourseId: 1277\r\nCourseOrMajor: \r\nDateFrom: 2017\r\nDateTo: 2019\r\nEducationalAttainment: 41 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: College Under Graduate\r\nMajor: \r\nSchoolorUniversity: ST AGUSTINE SCHOOL OF NURSING \r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
761326	2024-07-04	13:14:23.7931635	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3634\r\nDateOfExamination: June 19, 2022\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 7\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: June 19, 2022\r\nLevelOfEligibility: First Level (Subprofessional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS CITY \r\nRating: 80.0\r\nTitle: CAREER SERVICE SUBPROFESSIONAL ELIGIBILITY\r\n	admin	Eligibilities	1
761327	2024-07-04	13:14:23.7971605	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3634\r\nCompanyInstitution: SDO- BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 15,586.00\r\nPositionHeld: ADMINISTRATIVE AIDE IV \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-1\r\nStatus: Permanent\r\nToDate: July 04, 2024\r\n	admin	Experiences	1
761328	2024-07-04	13:14:23.8012028	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3634\r\nCompanyInstitution: SDO- BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 15,586.00\r\nPositionHeld: ADMINISTRATIVE AIDE IV \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
761329	2024-07-04	13:14:23.8062142	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3634\r\nCompanyInstitution: SDO- BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 14,993.00\r\nPositionHeld: ADMINISTRATIVE AIDE IV \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
761330	2024-07-04	13:14:23.8102035	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3634\r\nCompanyInstitution: SDO- BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: May 18, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 14,400.00\r\nPositionHeld: ADMINISTRATIVE AIDE IV \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
761331	2024-07-04	13:14:23.8152044	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3634\r\nCompanyInstitution: BATANGAS NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 12,236.00\r\nPositionHeld: ADMINISTRATIVE AIDE I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-3\r\nStatus: Permanent\r\nToDate: May 17, 2021\r\n	admin	Experiences	1
761332	2024-07-04	13:14:23.8191593	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3634\r\nCompanyInstitution: BATANGAS NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 11,647.00\r\nPositionHeld: ADMINISTRATIVE AIDE I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-2\r\nStatus: Permanent\r\nToDate: May 17, 2021\r\n	admin	Experiences	1
761333	2024-07-04	13:14:23.8231593	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3634\r\nCompanyInstitution: BATANGAS NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 11,160.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-2\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
761334	2024-07-04	13:14:23.8281600	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3634\r\nCompanyInstitution: BATANGAS NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 10,602.00\r\nPositionHeld: ADMINISTRATIVE AIDE I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-2\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
761335	2024-07-04	13:14:23.8321597	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3634\r\nCompanyInstitution: BATANGAS NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 9,981.00\r\nPositionHeld: ADMINISTRATIVE AIDE I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
761336	2024-07-04	13:14:23.8371593	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3634\r\nCompanyInstitution: BATANGAS NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 9,478.00\r\nPositionHeld: ADMINISTRATIVE AIDE I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
761337	2024-07-04	13:14:23.8411593	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3634\r\nCompanyInstitution: BATANGAS NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 21, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 9,000.00\r\nPositionHeld: ADMINISTRATIVE AIDE I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
761338	2024-07-04	13:16:15.6953251	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: KUMINTANG IBABA\r\nBasicInformationId: 0\r\nBirthDate: July 22, 1998\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jemalyn.decastro@deped.gov.ph\r\nExtensionName: \r\nFirstName: JEMALYN\r\nFullName: JEMALYN A. DE CASTRO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: ABRACOSA\r\nMobileNumber: 09490489333\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: KUMINTANG IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO FERRY\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO FERRY\r\nTIN: \r\nWeight: 47\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761339	2024-07-04	13:16:15.8147313	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3636\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS CITY EAST ELEMENTARY SCHOOL\r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
761357	2024-07-04	13:31:02.3996154	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2ND STAR GOVERNMENT SUMMIT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761340	2024-07-04	13:16:15.8207114	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3636\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2011\r\nDateTo: 2015\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2015\r\n	admin	EducationalBackgrounds	1
761341	2024-07-04	13:16:15.8246979	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: EBD/ VAD SCHOLAR\r\nBasicInformationId: 3636\r\nCourse: \r\nCourseId: 1257\r\nCourseOrMajor: \r\nDateFrom: 2015\r\nDateTo: 2019\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2019\r\n	admin	EducationalBackgrounds	1
761342	2024-07-04	13:16:15.8296813	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3636\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARIO\r\nFullName: MARIO ILAGAN DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: ILAGAN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
761343	2024-07-04	13:16:15.8336680	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3636\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SONIA\r\nFullName: SONIA REYES ABRACOSA\r\nGender: Female\r\nLastName: ABRACOSA\r\nMaidenName: \r\nMiddleName: REYES\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761344	2024-07-04	13:16:15.8376547	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3636\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761345	2024-07-04	13:16:15.8426380	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3636\r\nDateOfExamination: April 08, 2019\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: April 08, 2019\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS STATE UNIVERSITY\r\nRating: 80.28%\r\nTitle: CAREER SERVICE PROFESSIONAL ELIGIBILITY\r\n	admin	Eligibilities	1
761346	2024-07-04	13:16:15.8466246	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3636\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY- BIDS AND AWARD COMMITTEE \r\nExperienceId: 0\r\nFromDate: January 08, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 19,923.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 8-2\r\nStatus: Permanent\r\nToDate: July 04, 2024\r\n	admin	Experiences	1
761347	2024-07-04	13:16:15.8506116	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3636\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY- CASH UNIT \r\nExperienceId: 0\r\nFromDate: August 11, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 19,923.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 8-2\r\nStatus: Permanent\r\nToDate: May 01, 2024\r\n	admin	Experiences	1
761348	2024-07-04	13:16:15.8545980	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3636\r\nCompanyInstitution: TINGGA SOROSORO INTEGRATED SCHOOL\r\nExperienceId: 0\r\nFromDate: October 27, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 18,251.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 8-1\r\nStatus: Permanent\r\nToDate: May 11, 2021\r\n	admin	Experiences	1
761349	2024-07-04	13:16:15.8585847	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3636\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY- SUPPLY UNIT\r\nExperienceId: 0\r\nFromDate: January 07, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 12,000.00\r\nPositionHeld: JOB ORDER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: October 26, 2020\r\n	admin	Experiences	1
761350	2024-07-04	13:16:15.8635680	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3636\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
761351	2024-07-04	13:25:57.5254233	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CONDUCT OF FY 2023 DIVISION BUDGET PREPARATION FORUM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761356	2024-07-04	13:29:40.3115659	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TOPIC: FOSTERING EFFECTIVE AND EFFICIENT UTILIZATION OF SCHOOL RESOURCES THROUGH THE IMPLEMENTATION OF FINANCIAL MANAGEMENT OPERATION MANUAL FOR IUS AND SELECTED SECONDARY NON-IUS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761352	2024-07-04	13:28:59.2220488	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 517\r\nAddress2: \r\nBarangay: ILIJAN\r\nBasicInformationId: 0\r\nBirthDate: December 09, 1994\r\nBirthPlace: ILIJAN, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: LUCYKAREN.ANDES@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: LUCY KAREN\r\nFullName: LUCY KAREN A. ANDES\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ANDES\r\nMaidenName: \r\nMiddleName: AGULO\r\nMobileNumber: 09684929492\r\nNationality: Filipino\r\nPermanentAddress1: 517\r\nPermanentAddress2: \r\nPermanentBarangay: ILIJAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: HULONG SILANGAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: HULONG SILANGAN\r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761353	2024-07-04	13:28:59.3146222	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3637\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: VALENTINA BELEN\r\nFullName: VALENTINA BELEN SILANG\r\nGender: Female\r\nLastName: AGULO\r\nMaidenName: \r\nMiddleName: SILANG\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761354	2024-07-04	13:28:59.3146222	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3637\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: VALENTINA BELEN\r\nFullName: VALENTINA BELEN SILANG\r\nGender: Female\r\nLastName: AGULO\r\nMaidenName: \r\nMiddleName: SILANG\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761355	2024-07-04	13:28:59.3156213	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3637\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
761358	2024-07-04	13:32:57.4961024	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: TERTIARY/DIPLOMA IN INFORMATION AND COMMUNICATIONS TECHNOLOGY\r\nLevel: College\r\n	admin	Courses	1
761369	2024-07-04	13:52:58.9251709	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3637\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: ILIJAN ELEMENTARY SCHOOL\r\nYearGraduated: 2007\r\n	admin	EducationalBackgrounds	1
761370	2024-07-04	13:52:58.9301714	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3637\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2007\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: PEDRO S. TOLENTINO MEMORIAL NATIONAL HIGH SCHOOL \r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
761371	2024-07-04	13:52:58.9341713	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3637\r\nCourse: \r\nCourseId: 1278\r\nCourseOrMajor: \r\nDateFrom: 2014\r\nDateTo: 2016\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: COLEGIO NG LUNGSOD NG BATANGAS\r\nYearGraduated: 2016\r\n	admin	EducationalBackgrounds	1
761372	2024-07-04	13:52:58.9381711	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3637\r\nDateOfExamination: June 19, 2022\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: June 19, 2022\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS CITY INTEGRATED HIGH SCHOOL \r\nRating: 80.00\r\nTitle: CSE -PROFESSIONAL LEVEL \r\n	admin	Eligibilities	1
761373	2024-07-04	13:52:58.9421711	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3637\r\nDateOfExamination: August 12, 2018\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 7\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 12, 2018\r\nLevelOfEligibility: First Level (Subprofessional)\r\nLicenseNumber: \r\nPlaceOfExamination: BSU -ALANGILAN\r\nRating: 81.66\r\nTitle: CSE - SUB PROFESSIONAL LEVEL\r\n	admin	Eligibilities	1
761374	2024-07-04	13:52:58.9461711	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3637\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 17,688.00\r\nPositionHeld: ADMINISTRATIVE AIDE VI \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 6-2\r\nStatus: Permanent\r\nToDate: July 04, 2024\r\n	admin	Experiences	1
761563	2024-07-04	15:17:15.4910120	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3640\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
761359	2024-07-04	13:37:19.3601092	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON DEPED ORDER N.16,S.2017 RESEARCH MANAGEMENT GUIDELINES FOR SCHOOLS DIVISION RESEARCH COMMITTEE (SDRC) CUM FIRST DIVISION RESEARCH O'CLOCK\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761366	2024-07-04	13:38:59.3672136	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ON THE JOB TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761382	2024-07-04	13:54:48.4253222	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: CAREGIVER COURSE\r\nLevel: Vocational\r\n	admin	Courses	1
761383	2024-07-04	13:55:59.6088614	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF SCIENCE IN BUSINESS ADMINISTRATION\r\nLevel: College\r\n	admin	Courses	1
761384	2024-07-04	13:56:53.0960338	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: PROFESSIONAL EDUCATION\r\nLevel: Master's\r\n	admin	Courses	1
761385	2024-07-04	14:04:09.7469717	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DEALT AWARD (DEDICATED EMPLOYEES WITHOUT ABSENCES, LEAVES AND TARDINESS) SEPTEMBER, OCTOBER AND NOVEMBER\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761386	2024-07-04	14:06:01.6114902	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: LGU- PTA SYNERGY EXCELLENCE IN EDUCATION AND AWARDING OF BRIGADA ESKWELA EXCELLENCE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761388	2024-07-04	14:09:26.0037149	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PHYSICAL WELLNESS ACTIVITIES FOR EMPLOYEES WELFARE (TWG-DAMA)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761390	2024-07-04	14:11:25.0520927	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BASIC COMPUTER LITERACY (ELTECH LEARNING HUB)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761404	2024-07-04	14:15:32.4723189	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: LIFE SKILLS TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761410	2024-07-04	14:22:31.6728205	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: CRISTINA COMPOUND\r\nAddress2: \r\nBarangay: KUMINTANG IBABA\r\nBasicInformationId: 0\r\nBirthDate: April 18, 1979\r\nBirthPlace: NAUJAN, ORIENTAL MINDORO\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: gladysorejudoz7901@gmail.com\r\nExtensionName: \r\nFirstName: GLADYS\r\nFullName: GLADYS B. OREJUDOZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006270213\r\nHDMF: 1211-1727-5501\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: OREJUDOZ\r\nMaidenName: \r\nMiddleName: BALBACAL\r\nMobileNumber: 09081349144\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BARCENADA\r\nPermanentCity: NAUJAN\r\nPermanentCountry: Philippines\r\nPermanentProvince: ORIENTAL MINDORO\r\nPermanentStreetName: \r\nPermanentZipCode: 5204\r\nPhilhealth: 09-201237752-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO FERRY\r\nTIN: 329-411-599-0000\r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761411	2024-07-04	14:22:31.8391629	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3638\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1986\r\nDateTo: 1992\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BARCENAGA CENTRAL SCHOOL\r\nYearGraduated: 1992\r\n	admin	EducationalBackgrounds	1
761412	2024-07-04	14:22:31.8441929	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3638\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1992\r\nDateTo: 1996\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAINT FRANCIS ACADEMY\r\nYearGraduated: 1996\r\n	admin	EducationalBackgrounds	1
761413	2024-07-04	14:22:31.8481337	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3638\r\nCourse: \r\nCourseId: 1279\r\nCourseOrMajor: \r\nDateFrom: 2002\r\nDateTo: 2003\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Vocational Graduate\r\nMajor: \r\nSchoolorUniversity: FAITH CAREGIVER INC\r\nYearGraduated: 2003\r\n	admin	EducationalBackgrounds	1
761414	2024-07-04	14:22:31.8521200	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3638\r\nCourse: \r\nCourseId: 1280\r\nCourseOrMajor: \r\nDateFrom: 2017\r\nDateTo: 2021\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: COLEGIO NG LUNGSOD NG BATANGAS\r\nYearGraduated: 2021\r\n	admin	EducationalBackgrounds	1
761564	2024-07-04	15:19:33.6414856	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3639\r\nSkillId: 0\r\nSkillName: EXPERT IN ENHANCED FINANCIAL REPORTING SYSTEM (Efrs)\r\n	admin	Skills	1
761615	2024-07-04	15:30:44.7562435	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER IN EDUCATION\r\nLevel: Master's\r\n	admin	Courses	1
761360	2024-07-04	13:38:39.7120532	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3634\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 15, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 7,000.00\r\nPositionHeld: JOB ORDER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: January 20, 2015\r\n	admin	Experiences	1
761361	2024-07-04	13:38:39.7170532	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3634\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - BATANGAS PROVINCE  \r\nExperienceId: 0\r\nFromDate: December 23, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 7,500.00\r\nPositionHeld: JOB ORDER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: January 14, 2014\r\n	admin	Experiences	1
761362	2024-07-04	13:38:39.7210534	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3634\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- PUERTO PRINCESA CITY\r\nExperienceId: 0\r\nFromDate: June 15, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 5,500.00\r\nPositionHeld: JOB ORDER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: December 22, 2010\r\n	admin	Experiences	1
761363	2024-07-04	13:38:39.7250529	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3634\r\nCompanyInstitution: JOSE J. LEIDO JR MNHS\r\nExperienceId: 0\r\nFromDate: May 09, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 3,500.00\r\nPositionHeld: JOB ORDER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: June 14, 2010\r\n	admin	Experiences	1
761364	2024-07-04	13:38:39.7300536	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3634\r\nCompanyInstitution: KFC\r\nExperienceId: 0\r\nFromDate: June 15, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 9,000.00\r\nPositionHeld: RESTAURANT TEAM MEMBER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: June 15, 2006\r\n	admin	Experiences	1
761365	2024-07-04	13:38:39.7340531	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3634\r\nCompanyInstitution: JOLLIBEE\r\nExperienceId: 0\r\nFromDate: March 16, 2005\r\nIsGovernmentService: False\r\nMonthlySalary: 9,000.00\r\nPositionHeld: SERVICE CREW\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: May 16, 2005\r\n	admin	Experiences	1
761367	2024-07-04	13:40:03.8371178	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RE-ORIENTATION ON THE ROLES AND FUNCTIONS OF THE SDO RATIONALIZED STRUCTURE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761368	2024-07-04	13:42:54.6215720	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON WRITING QUALITATIVE RESEARCH\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761391	2024-07-04	14:11:49.8528258	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING WORKSHOP ON ENHANCEMENT OF JOB SKILLS FOR ADMINISTRATIVE AIDE I\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761392	2024-07-04	14:13:34.0134293	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DRIVING COURSE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761403	2024-07-04	14:15:39.6603958	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ISO 9001: 2015 QUALITY MANAGEMENT SYSTEM AWARENESS TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761407	2024-07-04	14:19:30.2766518	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ISO 9001: 2015 QUALITY MANAGEMENT SYSTEM 7S- PRINCIPLES OF GOOD HOUSEKEEPING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761409	2024-07-04	14:22:41.6851646	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING ON STRENGTHENING THE IMPLEMENTATION ON ENVIRONMENTAL PROJECTS ( PROJECT SIEP)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761438	2024-07-04	14:26:44.2764115	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING - WORKSHOP ON BASIC CUSTOMER SERVICE SKILLS FOR FRONTLINERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761440	2024-07-04	14:31:02.6196065	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: UPHOLDING DIGITAL LEARNING AND WORK EXPERIENCES IN THE NEW NORMAL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761565	2024-07-04	15:19:33.6454734	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3639\r\nSkillId: 0\r\nSkillName: FAMILIARITY IN MS APPLICATIONS SUCH AS WORD, EXCEL AND POWERPOINT\r\n	admin	Skills	1
761375	2024-07-04	13:52:58.9501711	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3637\r\nCompanyInstitution: DEPED BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: October 21, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 17,688.00\r\nPositionHeld: ADMINISTRATIVE AIDE VI\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 6-2\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
761376	2024-07-04	13:52:58.9531708	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3637\r\nCompanyInstitution: DEPED CITY BATANGAS \r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 17,553.00\r\nPositionHeld: ADMINISTRATIVE VI\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 6-1\r\nStatus: Permanent\r\nToDate: October 20, 2023\r\n	admin	Experiences	1
761377	2024-07-04	13:52:58.9571708	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3637\r\nCompanyInstitution: DEPED BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 16,877.00\r\nPositionHeld: ADMINISTRATIVE VI\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 6-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
761378	2024-07-04	13:52:58.9621709	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 517\r\nAddress2: \r\nBarangay: ILIJAN\r\nBasicInformationId: 3637\r\nBirthDate: December 09, 1994\r\nBirthPlace: ILIJAN, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: LUCYKAREN.ANDES@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: LUCY KAREN\r\nFullName: LUCY KAREN A. ANDES\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ANDES\r\nMaidenName: \r\nMiddleName: AGULO\r\nMobileNumber: 09684929492\r\nNationality: Filipino\r\nPermanentAddress1: 517\r\nPermanentAddress2: \r\nPermanentBarangay: ILIJAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: HULONG SILANGAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: HULONG SILANGAN\r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 517\r\nAddress2: \r\nBarangay: ILIJAN\r\nBasicInformationId: 3637\r\nBirthDate: December 09, 1994\r\nBirthPlace: ILIJAN, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: LUCYKAREN.ANDES@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: LUCY KAREN\r\nFullName: LUCY KAREN A. ANDES\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ANDES\r\nMaidenName: \r\nMiddleName: AGULO\r\nMobileNumber: 09684929492\r\nNationality: Filipino\r\nPermanentAddress1: 517\r\nPermanentAddress2: \r\nPermanentBarangay: ILIJAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: HULONG SILANGAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: HULONG SILANGAN\r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761379	2024-07-04	13:52:58.9661709	<Undetected>	Update	BasicInformationId: 3637\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3388\r\nExtensionName: \r\nFirstName: VALENTINA BELEN\r\nFullName: VALENTINA BELEN SILANG\r\nGender: Female\r\nLastName: AGULO\r\nMaidenName: \r\nMiddleName: SILANG\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3637\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3388\r\nExtensionName: \r\nFirstName: VALENTINA BELEN\r\nFullName: VALENTINA BELEN AGULO\r\nGender: Female\r\nLastName: AGULO\r\nMaidenName: \r\nMiddleName: SILANG\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761380	2024-07-04	13:52:58.9701709	<Undetected>	Update	BasicInformationId: 3637\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3389\r\nExtensionName: \r\nFirstName: VALENTINA BELEN\r\nFullName: VALENTINA BELEN SILANG\r\nGender: Female\r\nLastName: AGULO\r\nMaidenName: \r\nMiddleName: SILANG\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3637\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3389\r\nExtensionName: \r\nFirstName: VALENTINA BELEN\r\nFullName: VALENTINA BELEN AGULO\r\nGender: Female\r\nLastName: AGULO\r\nMaidenName: \r\nMiddleName: SILANG\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761381	2024-07-04	13:52:58.9741710	<Undetected>	Update	BasicInformationId: 3637\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3434\r\n	BasicInformationId: 3637\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3434\r\n	admin	Questionnaires	1
761387	2024-07-04	14:08:23.1332435	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CYBERCRIME: EFFECTIVE REPUTATION MANAGEMENT TECHNIQUES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761389	2024-07-04	14:11:11.9580420	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CALABARZON CYBERTALKS WITH LGU'S\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761393	2024-07-04	14:13:40.7461998	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: #FRIDAY FOCUS ON SEASON 3: IOT DEMYSTEFIED UNVEILING THE WONDERS OF CONNECTED WORLD\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761394	2024-07-04	14:14:57.6221374	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3637\r\nEmployeeTrainingId: 0\r\nFromDate: October 23, 2023\r\nHours: 20\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DICT REGION IV-A CALABARZON\r\nStatus: \r\nToDate: October 27, 2023\r\nTrainingId: 15267\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761395	2024-07-04	14:14:57.6271376	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3637\r\nEmployeeTrainingId: 0\r\nFromDate: October 26, 2023\r\nHours: 2\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DICT REGION IV-A CALABARZON\r\nStatus: \r\nToDate: January 01, 1900\r\nTrainingId: 15269\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761396	2024-07-04	14:14:57.6301373	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3637\r\nEmployeeTrainingId: 0\r\nFromDate: October 20, 2023\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DICT REGION IV-A CALABARZON\r\nStatus: \r\nToDate: January 01, 1900\r\nTrainingId: 15273\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761397	2024-07-04	14:14:57.6351373	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3637\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 16,200.00\r\nPositionHeld: ADMINISTRATIVE VI\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 6-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
761398	2024-07-04	14:14:57.6391365	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3637\r\nCompanyInstitution: DEPED BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: False\r\nMonthlySalary: 15,578.00\r\nPositionHeld: ADMINISTRATIVE VI\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 6-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
761399	2024-07-04	14:14:57.6451370	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3637\r\nCompanyInstitution: PEDRO S. TOLENTINO MEMORIAL INTEGRATEDL  SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 8,200.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: June 30, 2020\r\n	admin	Experiences	1
761400	2024-07-04	14:14:57.6491373	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3637\r\nCompanyInstitution: PEDRO S. TOLENTINO MEMORIAL INTEGRATEDL  SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 8,000.00\r\nPositionHeld: ADMINISTATIVE AIDE I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
761401	2024-07-04	14:14:57.6531373	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3637\r\nCompanyInstitution: PEDRO S. TOLENTINO MEMORIAL INTEGRATEDL  SCHOO\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 7,000.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
761402	2024-07-04	14:14:57.6571373	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3637\r\nCompanyInstitution: PEDRO S. TOLENTINO MEMORIAL INTEGRATEDL  SCHOO\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 7,000.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
761405	2024-07-04	14:16:17.5194889	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: GETTING STARTED WITH VIDEO EDITING USING ADOBE PREMIERE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761406	2024-07-04	14:18:53.4641897	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: GETTING STARTED VECTOR DRAWING WITH ADOBE ILLUSTRATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761408	2024-07-04	14:20:12.8414102	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: GETTING STARTED VECTOR DRAWING WITH ADOBE ILLUSTRATOR\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761437	2024-07-04	14:23:02.7291464	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TECHTALKS - TECH4ED DIGITAL CONFERENCE 2023 REGIONS IV-A AND IV-B\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761439	2024-07-04	14:28:27.1914640	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: GENDER AND DEVELOPMENT TRAINING ON SAFE SPACES ACT AND GENDER RESPONSIVE POLICIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761441	2024-07-04	14:33:24.9510966	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING SEMINAR ON GOVERNMENT PROCUREMENT FOR DIVISION PERSONNEL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761454	2024-07-04	14:36:12.9908521	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BUSINESS COMMUNICATION SKILLS: WRITING GRAMMAR\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761457	2024-07-04	14:38:16.3648504	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BEST PRACTICES IN DOCUMENT MANAGEMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761415	2024-07-04	14:22:31.8571033	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3638\r\nCourse: \r\nCourseId: 1281\r\nCourseOrMajor: \r\nDateFrom: 2021\r\nDateTo: 2022\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2022\r\n	admin	EducationalBackgrounds	1
761416	2024-07-04	14:22:31.8610900	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3638\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALFREDO\r\nFullName: ALFREDO VIADO OREJUDOZ\r\nGender: Male\r\nLastName: OREJUDOZ\r\nMaidenName: \r\nMiddleName: VIADO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
761417	2024-07-04	14:22:31.8660735	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3638\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ELENA\r\nFullName: ELENA MARANAN BALBACAL\r\nGender: Female\r\nLastName: BALBACAL\r\nMaidenName: \r\nMiddleName: MARANAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761418	2024-07-04	14:22:31.8700604	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3638\r\nBirthDate: May 30, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALYZA NICOLE\r\nFullName: ALYZA NICOLE OREJUDOZ\r\nGender: Male\r\nLastName: OREJUDOZ\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761419	2024-07-04	14:22:31.8740467	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3638\r\nEmployeeTrainingId: 0\r\nFromDate: December 11, 2023\r\nHours: 8\r\nNatureOfParticipation: AWARD\r\nSponsoringAgency: SCHOOL DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: December 11, 2023\r\nTrainingId: 15265\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761420	2024-07-04	14:22:31.8780343	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3638\r\nEmployeeTrainingId: 0\r\nFromDate: November 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOL DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 30, 2023\r\nTrainingId: 15266\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761421	2024-07-04	14:22:31.8820210	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3638\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOL DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761422	2024-07-04	14:22:31.8870034	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3638\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOL DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15113\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761423	2024-07-04	14:22:31.8909897	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3638\r\nEmployeeTrainingId: 0\r\nFromDate: August 24, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOL DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 24, 2023\r\nTrainingId: 15268\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761424	2024-07-04	14:22:31.8960156	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3638\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761425	2024-07-04	14:22:31.9000015	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3638\r\nEmployeeTrainingId: 0\r\nFromDate: January 11, 2023\r\nHours: 80\r\nNatureOfParticipation: PARTICIPANTS\r\nSponsoringAgency: UPLAND, POBLACION, DANAO CITY, CEBU 6004\r\nStatus: \r\nToDate: January 22, 2023\r\nTrainingId: 15270\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761426	2024-07-04	14:22:31.9039889	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3638\r\nEmployeeTrainingId: 0\r\nFromDate: June 30, 2022\r\nHours: 8\r\nNatureOfParticipation: PARTICIPANTS\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: June 30, 2022\r\nTrainingId: 15231\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761427	2024-07-04	14:22:31.9079337	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3638\r\nEmployeeTrainingId: 0\r\nFromDate: December 30, 2022\r\nHours: 8\r\nNatureOfParticipation: PARTICIPANTS\r\nSponsoringAgency: TECHNICAL EDUCATION AND SKILLS DEVELOPMENT AUTHORITY\r\nStatus: \r\nToDate: December 30, 2022\r\nTrainingId: 15195\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761428	2024-07-04	14:22:31.9119199	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3638\r\nEmployeeTrainingId: 0\r\nFromDate: December 30, 2022\r\nHours: 8\r\nNatureOfParticipation: PARTICIPANTS\r\nSponsoringAgency: TECHNICAL EDUCATION AND SKILLS DEVELOPMENT AUTHORITY\r\nStatus: \r\nToDate: December 30, 2022\r\nTrainingId: 15275\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761429	2024-07-04	14:22:31.9169464	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3638\r\nEmployeeTrainingId: 0\r\nFromDate: December 30, 2022\r\nHours: 8\r\nNatureOfParticipation: PARTICIPANTS\r\nSponsoringAgency: TECHNICAL EDUCATION AND SKILLS DEVELOPMENT AUTHORITY\r\nStatus: \r\nToDate: December 30, 2022\r\nTrainingId: 15194\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761430	2024-07-04	14:22:31.9209307	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3638\r\nEmployeeTrainingId: 0\r\nFromDate: April 30, 2022\r\nHours: 8\r\nNatureOfParticipation: PARTICIPANTS\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: April 30, 2022\r\nTrainingId: 15220\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761431	2024-07-04	14:22:31.9258734	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3638\r\nCharacterReferenceId: 0\r\nCompanyAddress: MAHABANG PARANG, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 0933174459\r\nExtensionName: \r\nFirstName: DELMAR\r\nLastName: RAMOS\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761432	2024-07-04	14:22:31.9299039	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3638\r\nCharacterReferenceId: 0\r\nCompanyAddress: BAUAN BATANGAS\r\nCompanyName: \r\nContactNumber: 09393665149\r\nExtensionName: \r\nFirstName: MADONNA\r\nLastName: ABRUGENA\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761433	2024-07-04	14:22:31.9338873	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3638\r\nDateOfExamination: October 02, 2022\r\nDateOfRelease: April 18, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: October 02, 2022\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 2004932\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 76.6%\r\nTitle: LICENSE PROFESSIONAL TEACHER\r\n	admin	Eligibilities	1
761434	2024-07-04	14:22:31.9378332	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3638\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: April 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 547.00\r\nPositionHeld: ADMINISTRATIVE AIDE \r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: July 04, 2024\r\n	admin	Experiences	1
761435	2024-07-04	14:22:31.9418200	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3638\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 13,000.00\r\nPositionHeld: ADMINISTRATIVE AIDE \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: March 28, 2023\r\n	admin	Experiences	1
761436	2024-07-04	14:22:31.9468531	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3638\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: 093-040\r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
761478	2024-07-04	14:52:06.2082467	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SEMINAR-WORKSHOP ON THE PREPARATION AND CONSOLIDATION 0F FY 2022 YEAR-END FINANCIAL REPORTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761480	2024-07-04	14:54:27.6102573	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: COMPETENCY ENHANCEMENT COURSES (UDEMY E-LEARNING SOLUTIONS)- VARIOUS COURSES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761490	2024-07-04	14:59:34.5852363	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION ORIENTATION-WORKSHOP ON PROGRAM MANAGEMENT INFORMATION SYSTEM (PMIS) FOR SDO PROGRAM PROPONENTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761491	2024-07-04	15:00:57.2563826	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 322\r\nAddress2: \r\nBarangay: MALITAM\r\nBasicInformationId: 0\r\nBirthDate: August 27, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: monica.abellera@deped.gov.ph\r\nExtensionName: \r\nFirstName: MONICA\r\nFullName: MONICA M. ABELLERA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ABELLERA\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nMobileNumber: 09976022070\r\nNationality: Filipino\r\nPermanentAddress1: 322\r\nPermanentAddress2: \r\nPermanentBarangay: MALITAM\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ILANG-ILANG STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ILANG-ILANG STREET\r\nTIN: \r\nWeight: 53\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761566	2024-07-04	15:19:33.6494599	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3639\r\nSkillId: 0\r\nSkillName: FAMILIARITY IN PROVIDENT FUND LOAN PROCESSING\r\n	admin	Skills	1
761442	2024-07-04	14:35:27.1423001	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3634\r\nEmployeeTrainingId: 0\r\nFromDate: April 03, 2015\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY \r\nStatus: \r\nToDate: May 03, 2015\r\nTrainingId: 15263\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761443	2024-07-04	14:35:27.1472991	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3634\r\nEmployeeTrainingId: 0\r\nFromDate: April 25, 2017\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY \r\nStatus: \r\nToDate: April 26, 2017\r\nTrainingId: 15264\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761444	2024-07-04	14:35:27.1512997	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3634\r\nEmployeeTrainingId: 0\r\nFromDate: April 27, 2017\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY \r\nStatus: \r\nToDate: April 28, 2017\r\nTrainingId: 15271\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761445	2024-07-04	14:35:27.1563002	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3634\r\nEmployeeTrainingId: 0\r\nFromDate: January 03, 2018\r\nHours: 56\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: RAZVILL DRIVING ACADEMY \r\nStatus: \r\nToDate: July 03, 2018\r\nTrainingId: 15272\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761446	2024-07-04	14:35:27.1612997	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3634\r\nEmployeeTrainingId: 0\r\nFromDate: March 21, 2018\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY \r\nStatus: \r\nToDate: March 21, 2018\r\nTrainingId: 15274\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761447	2024-07-04	14:35:27.1653002	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3634\r\nEmployeeTrainingId: 0\r\nFromDate: February 04, 2018\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT  OF EDUCATION BATANGAS CITY \r\nStatus: \r\nToDate: February 04, 2018\r\nTrainingId: 15278\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761448	2024-07-04	14:35:27.1703000	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3634\r\nEmployeeTrainingId: 0\r\nFromDate: October 29, 2018\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY \r\nStatus: \r\nToDate: October 29, 2018\r\nTrainingId: 15280\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761449	2024-07-04	14:35:27.1743002	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3634\r\nEmployeeTrainingId: 0\r\nFromDate: December 27, 2018\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY \r\nStatus: \r\nToDate: December 28, 2018\r\nTrainingId: 15160\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761450	2024-07-04	14:35:27.1783001	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3634\r\nEmployeeTrainingId: 0\r\nFromDate: December 02, 2019\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY \r\nStatus: \r\nToDate: February 14, 2019\r\nTrainingId: 15160\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761451	2024-07-04	14:35:27.1833060	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3634\r\nEmployeeTrainingId: 0\r\nFromDate: December 15, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY  \r\nStatus: \r\nToDate: December 15, 2020\r\nTrainingId: 15284\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761452	2024-07-04	14:35:27.1873056	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3634\r\nEmployeeTrainingId: 0\r\nFromDate: February 20, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY \r\nStatus: \r\nToDate: February 20, 2023\r\nTrainingId: 15114\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761453	2024-07-04	14:35:27.1923052	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3634\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY \r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15047\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761455	2024-07-04	14:37:37.3661858	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3634\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY \r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15168\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761456	2024-07-04	14:37:37.3701844	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3634\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY \r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761468	2024-07-04	14:47:39.6217571	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3634\r\nSkillId: 0\r\nSkillName: DRIVING\r\n	admin	Skills	1
761469	2024-07-04	14:47:39.6307574	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3634\r\nRecognitionId: 0\r\nRecognitionName: DEALT AWARD \r\n	admin	Recognitions	1
761458	2024-07-04	14:40:00.0416163	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3637\r\nEmployeeTrainingId: 0\r\nFromDate: October 19, 2023\r\nHours: 2\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DICT REGION V-A CAMARINES SUR\r\nStatus: \r\nToDate: January 01, 1900\r\nTrainingId: 15276\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761459	2024-07-04	14:40:00.0456163	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3637\r\nEmployeeTrainingId: 0\r\nFromDate: October 19, 2023\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DICT REGION IV-A CALABARZON\r\nStatus: \r\nToDate: January 01, 1900\r\nTrainingId: 15279\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761460	2024-07-04	14:40:00.0496163	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3637\r\nEmployeeTrainingId: 0\r\nFromDate: June 23, 2023\r\nHours: 7\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DICT REGION IV-A CALABARZON/IV-B MIMAROPA\r\nStatus: \r\nToDate: January 01, 1900\r\nTrainingId: 15281\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761461	2024-07-04	14:40:00.0536163	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3637\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: January 01, 1900\r\nTrainingId: 15283\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761462	2024-07-04	14:40:00.0576163	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3637\r\nEmployeeTrainingId: 0\r\nFromDate: February 20, 2023\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: January 01, 1900\r\nTrainingId: 15285\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761463	2024-07-04	14:40:00.0616163	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3637\r\nEmployeeTrainingId: 0\r\nFromDate: October 02, 2022\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: UDEMY - SDO BATANGAS CITY\r\nStatus: \r\nToDate: October 03, 2022\r\nTrainingId: 15286\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761464	2024-07-04	14:40:00.0646163	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3637\r\nEmployeeTrainingId: 0\r\nFromDate: August 23, 2022\r\nHours: 2\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: UDEMY - SDO BATANGAS CITY\r\nStatus: \r\nToDate: January 01, 1900\r\nTrainingId: 15287\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761465	2024-07-04	14:41:35.4952454	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MANAGE WORKPLACE STRESS AND STRIKE A BALANCE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761466	2024-07-04	14:42:26.3707732	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING WORKSHOP ON QUALITY MANAGMENT SYSTEM FOCUSED ON SEVEN S (7S)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761467	2024-07-04	14:45:06.9735311	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EMAIL ETIQUETTE: WRITE MORE EFFECTIVE EMAILS AT WORK\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761475	2024-07-04	14:47:50.2445234	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EMOTIONAL INTELLIGENCE: MASTER ANXIETY,FEAR AND EMOTION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761476	2024-07-04	14:50:41.2336277	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MICROSOFT EXCEL - EXCEL FROM BEGINNER TO ADVANCED\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761477	2024-07-04	14:51:30.5314426	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION ROLL-OUT OF DEPED ORDER NO. 029 S. 2019 RE: PROCEDURAL GUIDELINES ON THE MANAGEMENT OF CASH ADVANCE FOR SCHOOL MOOE OF NON-IUS PURSUANT TO COA, DBM, DEPED JC NO. 2019-1\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761479	2024-07-04	14:53:02.2359393	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: COMUPUTER ORORGANIZATION ANDHOW TO ORGANIZE COMPUTER FILES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761481	2024-07-04	14:55:10.7928684	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: COMPUTER ORGANIZATION AND HOW TO ORGANIZE ORGANIZATION FILES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761482	2024-07-04	14:58:04.5792203	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2022 ORIENTATION TRAINING ON QUALITY MANAGEMENT SYSTEM ,DEPED MANUAL OF STYLE AND DEPED SERVICE MARKS AND VISUAL IDENTITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761567	2024-07-04	15:19:33.6544436	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3639\r\nSkillId: 0\r\nSkillName: FAMILIARITY IN PAG-IBIG FUND REMITTANCE PROCESSING\r\n	admin	Skills	1
761568	2024-07-04	15:19:33.6584300	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3639\r\nSkillId: 0\r\nSkillName: CUSTOMER- ORIENTED PERSON\r\n	admin	Skills	1
761470	2024-07-04	14:47:39.6357577	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3634\r\nCharacterReferenceId: 0\r\nCompanyAddress: NAUJAN ORIENTAL MINDORO \r\nCompanyName: \r\nContactNumber: 09175620438\r\nExtensionName: \r\nFirstName: DR. DONATO \r\nLastName: BUENO\r\nMiddleName: G\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761471	2024-07-04	14:47:39.6407575	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3634\r\nCharacterReferenceId: 0\r\nCompanyAddress: DEPED- DIVISION OF BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 043-702-2094\r\nExtensionName: \r\nFirstName: ARMANDO \r\nLastName: FARAL \r\nMiddleName: V\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761472	2024-07-04	14:47:39.6447575	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3634\r\nCharacterReferenceId: 0\r\nCompanyAddress: DEPED- DIVISION OF BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 043-702-2094\r\nExtensionName: \r\nFirstName: MIKKO PAOLO \r\nLastName: PEREZ\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761473	2024-07-04	14:47:39.6487571	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: P1-104\r\nAddress2: \r\nBarangay: STA.RITA KARSADA\r\nBasicInformationId: 3634\r\nBirthDate: March 18, 1988\r\nBirthPlace: BUHANGIN NAUJAN ORIENTAL MINDORO\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: CLIFF.ATIENZA@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: CLIFF\r\nFullName: CLIFF B. ATIENZA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.07\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ATIENZA\r\nMaidenName: \r\nMiddleName: BUENO\r\nMobileNumber: 09338269038\r\nNationality: Filipino\r\nPermanentAddress1: P1-104\r\nPermanentAddress2: \r\nPermanentBarangay: STA.RITA KARSADA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: P1-104\r\nAddress2: \r\nBarangay: STA.RITA KARSADA\r\nBasicInformationId: 3634\r\nBirthDate: March 18, 1988\r\nBirthPlace: BUHANGIN NAUJAN ORIENTAL MINDORO\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: CLIFF.ATIENZA@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: CLIFF\r\nFullName: CLIFF B. ATIENZA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02004670054\r\nHDMF: 1211-3597-5607\r\nHeight: 1.07\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ATIENZA\r\nMaidenName: \r\nMiddleName: BUENO\r\nMobileNumber: 09338269038\r\nNationality: Filipino\r\nPermanentAddress1: P1-104\r\nPermanentAddress2: \r\nPermanentBarangay: STA.RITA KARSADA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025313837-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 33-9365660-5\r\nStreetName: \r\nTIN: 239-607-066-0000\r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761474	2024-07-04	14:47:39.6537572	<Undetected>	Update	BasicInformationId: 3634\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3431\r\n	BasicInformationId: 3634\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3431\r\n	admin	Questionnaires	1
761483	2024-07-04	14:59:00.3316449	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF INDUSTRIAL TECHNOLOGY \r\nLevel: College\r\n	admin	Courses	1
761546	2024-07-04	15:17:15.4750968	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 2005\r\nAddress2: \r\nBarangay: CALICANTO\r\nBasicInformationId: 0\r\nBirthDate: April 28, 1992\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATTANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RALPHKEVIN.MACALALAD@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RALPH KEVIN\r\nFullName: RALPH KEVIN G. MACALALAD\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.68\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MACALALAD\r\nMaidenName: \r\nMiddleName: GARCIA\r\nMobileNumber: 09369437941\r\nNationality: Filipino\r\nPermanentAddress1: 2005\r\nPermanentAddress2: \r\nPermanentBarangay: CALICANTO\r\nPermanentCity: BATTANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 6\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: PUROK 6\r\nTIN: \r\nWeight: 99\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761547	2024-07-04	15:17:15.4900162	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3640\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1998\r\nDateTo: 2004\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: CALICANTO ELEMENTARY SCHOOL \r\nYearGraduated: 2004\r\n	admin	EducationalBackgrounds	1
761548	2024-07-04	15:17:15.4900162	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3640\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2004\r\nDateTo: 2008\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS \r\nYearGraduated: 2008\r\n	admin	EducationalBackgrounds	1
761549	2024-07-04	15:17:15.4900162	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3640\r\nCourse: \r\nCourseId: 1282\r\nCourseOrMajor: \r\nDateFrom: 2008\r\nDateTo: 2012\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: INSTRUMENTATION AND CONTROL TECHNOLOGY \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY \r\nYearGraduated: 2012\r\n	admin	EducationalBackgrounds	1
761550	2024-07-04	15:17:15.4900162	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3640\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: BAILON\r\nFullName: BAILON VILLAMOR MACALALAD\r\nGender: Male\r\nLastName: MACALALAD\r\nMaidenName: \r\nMiddleName: VILLAMOR\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
761484	2024-07-04	14:59:36.9664354	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3637\r\nEmployeeTrainingId: 0\r\nFromDate: August 22, 2022\r\nHours: 1\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: UDEMY - SDO BATANGAS CITY\r\nStatus: \r\nToDate: January 01, 1900\r\nTrainingId: 15288\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761485	2024-07-04	14:59:36.9704356	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3637\r\nEmployeeTrainingId: 0\r\nFromDate: August 22, 2022\r\nHours: 1\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: UDEMY - SDO BATANGAS CITY\r\nStatus: \r\nToDate: January 01, 1900\r\nTrainingId: 15290\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761486	2024-07-04	14:59:36.9734357	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3637\r\nEmployeeTrainingId: 0\r\nFromDate: August 19, 2022\r\nHours: 7\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: UDEMY - SDO BATANGAS CITY\r\nStatus: \r\nToDate: January 01, 1900\r\nTrainingId: 15291\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761487	2024-07-04	14:59:36.9784355	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3637\r\nEmployeeTrainingId: 0\r\nFromDate: August 14, 2022\r\nHours: 21\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: UDEMY - SDO BATANGAS CITY\r\nStatus: \r\nToDate: August 16, 2022\r\nTrainingId: 15246\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761488	2024-07-04	14:59:36.9824355	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3637\r\nEmployeeTrainingId: 0\r\nFromDate: July 17, 2022\r\nHours: 2\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: UDEMY - SDO BATANGAS CITY\r\nStatus: \r\nToDate: January 01, 1900\r\nTrainingId: 15297\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761489	2024-07-04	14:59:36.9864355	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3637\r\nEmployeeTrainingId: 0\r\nFromDate: January 12, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: January 14, 2022\r\nTrainingId: 15085\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761543	2024-07-04	15:03:33.3616838	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WEBINAR ON THE EFFICIENT AND EXPEDIENT MANAGE OF ADMINISTRATIVE CASES AND THE PROPER AND SAFE HANDLING OF CASE RECORDS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761545	2024-07-04	15:10:55.8906950	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WEBINAR THE EFFICIENT AND EXPEDIENT MANAGEMENT OF ADMINISTRATIVE CASES AND THE PROPER AND SAFE HANDLING OF CASE RECORDS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761492	2024-07-04	15:00:57.4428348	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3639\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1984\r\nDateTo: 1990\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAN FRANCISCO ELEMENTARY SCHOOL\r\nYearGraduated: 1990\r\n	admin	EducationalBackgrounds	1
761493	2024-07-04	15:00:57.4468202	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3639\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1990\r\nDateTo: 1994\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: JUDGE JUAN LUNA HIGH SCHOOL\r\nYearGraduated: 1994\r\n	admin	EducationalBackgrounds	1
761494	2024-07-04	15:00:57.4508069	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3639\r\nCourse: \r\nCourseId: 1252\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 1999\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MAJOR IN MANAGAMENT\r\nSchoolorUniversity: SAINT BRIDGET COLLEGE\r\nYearGraduated: 1999\r\n	admin	EducationalBackgrounds	1
761495	2024-07-04	15:00:57.4557902	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3639\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JULES EDSEL\r\nFullName: JULES EDSEL MANALO ABELLERA\r\nGender: Male\r\nLastName: ABELLERA\r\nMaidenName: \r\nMiddleName: MANALO\r\nOccupation: ADMINISTRATIVE AIDE III\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
761496	2024-07-04	15:00:57.4597770	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3639\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PEDRO\r\nFullName: PEDRO CANTOS MARASIGAN\r\nGender: Male\r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
761497	2024-07-04	15:00:57.4647604	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3639\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: TEOFILA\r\nFullName: TEOFILA OXILLO PATULAY\r\nGender: Female\r\nLastName: PATULAY\r\nMaidenName: \r\nMiddleName: OXILLO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761498	2024-07-04	15:00:57.4687466	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3639\r\nBirthDate: May 02, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JULS MARCUS\r\nFullName: JULS MARCUS M ABALLERA\r\nGender: Male\r\nLastName: ABALLERA\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761499	2024-07-04	15:00:57.4727337	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3639\r\nBirthDate: August 29, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MONINA JEAN\r\nFullName: MONINA JEAN M ABELLERA\r\nGender: Female\r\nLastName: ABELLERA\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761500	2024-07-04	15:00:57.4767202	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3639\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15045\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761501	2024-07-04	15:00:57.4807070	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3639\r\nEmployeeTrainingId: 0\r\nFromDate: May 15, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: May 17, 2023\r\nTrainingId: 15046\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761502	2024-07-04	15:00:57.4856903	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3639\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761503	2024-07-04	15:00:57.4896769	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3639\r\nEmployeeTrainingId: 0\r\nFromDate: January 17, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: January 17, 2023\r\nTrainingId: 15048\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761504	2024-07-04	15:00:57.4936636	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3639\r\nEmployeeTrainingId: 0\r\nFromDate: January 09, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A CALABARZON\r\nStatus: \r\nToDate: January 13, 2023\r\nTrainingId: 15294\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761569	2024-07-04	15:19:33.6634136	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3639\r\nRecognitionId: 0\r\nRecognitionName: TECHNICAL/ SUPPORT STAFF-BASKETBALL: PHYSICAL WELLNESS ACTIVITIES FOR EMPLOYEES WELFARE- AUGUST 24,2023\r\n	admin	Recognitions	1
761505	2024-07-04	15:00:57.4976503	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3639\r\nEmployeeTrainingId: 0\r\nFromDate: July 25, 2022\r\nHours: 29\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: October 04, 2022\r\nTrainingId: 15296\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761506	2024-07-04	15:00:57.5016370	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3639\r\nEmployeeTrainingId: 0\r\nFromDate: June 30, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: June 30, 2022\r\nTrainingId: 15219\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761507	2024-07-04	15:00:57.5066204	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3639\r\nEmployeeTrainingId: 0\r\nFromDate: January 12, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: January 14, 2022\r\nTrainingId: 15085\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761508	2024-07-04	15:00:57.5106070	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3639\r\nEmployeeTrainingId: 0\r\nFromDate: August 17, 2021\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 19, 2021\r\nTrainingId: 15054\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761509	2024-07-04	15:00:57.5145939	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3639\r\nEmployeeTrainingId: 0\r\nFromDate: January 29, 2020\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: January 31, 2020\r\nTrainingId: 15299\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761510	2024-07-04	15:00:57.5185803	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3639\r\nDateOfExamination: March 26, 2000\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: March 26, 2000\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS NATIONAL HIGH SCHOOL\r\nRating: 80.81%\r\nTitle: CAREER SERVICE PROFESSIONAL \r\n	admin	Eligibilities	1
761511	2024-07-04	15:00:57.5225670	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3639\r\nCompanyInstitution: OFFICE OF THE SCHOOLS DIVISION SUPERINTENDENT- FINANCE ACCOUNTING\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 21,211.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-1\r\nStatus: Permanent\r\nToDate: July 04, 2024\r\n	admin	Experiences	1
761512	2024-07-04	15:00:57.5275513	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3639\r\nCompanyInstitution: OFFICE OF THE SCHOOLS DIVISION SUPERINTENDENT- FINANCE ACCOUNTING\r\nExperienceId: 0\r\nFromDate: October 03, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 20,402.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-1\r\nStatus: Permanent\r\nToDate: December 21, 2023\r\n	admin	Experiences	1
761513	2024-07-04	15:00:57.5315377	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3639\r\nCompanyInstitution: OFFICE OF THE SCHOOLS DIVISION SUPERINTENDENT- FINANCE ACCOUNTING\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 18,998.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 08-1\r\nStatus: Permanent\r\nToDate: October 02, 2022\r\n	admin	Experiences	1
761514	2024-07-04	15:00:57.5365206	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3639\r\nCompanyInstitution: OFFICE OF THE SCHOOLS DIVISION SUPERINTENDENT- FINANCE (ACCOUNTING)\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 18,251.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 08-1\r\nStatus: Permanent\r\nToDate: January 31, 2021\r\n	admin	Experiences	1
761515	2024-07-04	15:00:57.5405069	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3639\r\nCompanyInstitution: OFFICE OF THE SCHOOLS DIVISION SUPERINTENDENT- FINANCE ACCOUNTING\r\nExperienceId: 0\r\nFromDate: October 21, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 17,505.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 08-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
761516	2024-07-04	15:00:57.5444938	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3639\r\nCompanyInstitution: CURRICULUM IMPLEMENTATION DIVISION- DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 15,524.00\r\nPositionHeld: ADMINISTRATIVE AIDE VI\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 06-1\r\nStatus: Permanent\r\nToDate: October 20, 2020\r\n	admin	Experiences	1
761517	2024-07-04	15:00:57.5494782	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3639\r\nCompanyInstitution: CURRICULUM IMPLEMENTATION DIVISION- DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 14,847.00\r\nPositionHeld: ADMINISTRATIVE AIDE VI\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 06-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
761518	2024-07-04	15:00:57.5534649	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3639\r\nCompanyInstitution: CURRICULUM IMPLEMENTATION DIVISION- DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: December 31, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 14,340.00\r\nPositionHeld: ADMINISTRATIVE AIDE VI\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 06-1\r\nStatus: Permanent\r\nToDate: December 03, 2019\r\n	admin	Experiences	1
761519	2024-07-04	15:00:57.5574502	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3639\r\nCompanyInstitution: CURRICULUM IMPLEMENTATION DIVISION- DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 05, 2017\r\nIsGovernmentService: False\r\nMonthlySalary: 9,134.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: December 02, 2018\r\n	admin	Experiences	1
761520	2024-07-04	15:00:57.5614370	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3639\r\nCompanyInstitution: JPT CENTRAL CORPORATE HOLDINGS AND MANAGEMENT CORPORATION\r\nExperienceId: 0\r\nFromDate: October 15, 2002\r\nIsGovernmentService: False\r\nMonthlySalary: 7,000.00\r\nPositionHeld: GENERAL ACCOUNTING BOOKKEEPER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: January 02, 2003\r\n	admin	Experiences	1
761521	2024-07-04	15:00:57.5664704	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3639\r\nCompanyInstitution: SOUTH SUPERMARKET ALABANG \r\nExperienceId: 0\r\nFromDate: March 10, 2001\r\nIsGovernmentService: False\r\nMonthlySalary: 6,000.00\r\nPositionHeld: CASHIER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: August 19, 2001\r\n	admin	Experiences	1
761522	2024-07-04	15:00:57.5704519	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3639\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
761544	2024-07-04	15:04:19.3434515	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BASIC ACCOUNTING FOR NON-ACCOUNTANT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761523	2024-07-04	15:01:21.8132175	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3636\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANAGS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15113\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761524	2024-07-04	15:01:21.8172000	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3636\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANAGS CITY\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761525	2024-07-04	15:01:21.8211460	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3636\r\nEmployeeTrainingId: 0\r\nFromDate: February 21, 2023\r\nHours: 6\r\nNatureOfParticipation: PARTCIPANT \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANAGS CITY\r\nStatus: \r\nToDate: February 21, 2023\r\nTrainingId: 15153\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761526	2024-07-04	15:01:21.8261294	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3636\r\nEmployeeTrainingId: 0\r\nFromDate: March 06, 2022\r\nHours: 8\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANAGS CITY\r\nStatus: \r\nToDate: June 03, 2022\r\nTrainingId: 15289\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761527	2024-07-04	15:01:21.8301162	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3636\r\nEmployeeTrainingId: 0\r\nFromDate: March 04, 2022\r\nHours: 12\r\nNatureOfParticipation: PARTCIPANT\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANAGS CITY\r\nStatus: \r\nToDate: March 07, 2022\r\nTrainingId: 15258\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761528	2024-07-04	15:01:21.8341027	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3636\r\nEmployeeTrainingId: 0\r\nFromDate: August 17, 2021\r\nHours: 24\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANAGS CITY\r\nStatus: \r\nToDate: August 19, 2021\r\nTrainingId: 15054\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761529	2024-07-04	15:01:21.8380894	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3636\r\nEmployeeTrainingId: 0\r\nFromDate: April 19, 2021\r\nHours: 24\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANAGS CITY\r\nStatus: \r\nToDate: April 21, 2021\r\nTrainingId: 15259\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761530	2024-07-04	15:01:21.8430727	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3636\r\nEmployeeTrainingId: 0\r\nFromDate: March 24, 2021\r\nHours: 13\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS\r\nStatus: \r\nToDate: March 25, 2021\r\nTrainingId: 15260\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761531	2024-07-04	15:01:21.8470595	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3636\r\nEmployeeTrainingId: 0\r\nFromDate: September 06, 2020\r\nHours: 21\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS\r\nStatus: \r\nToDate: September 05, 2020\r\nTrainingId: 15120\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761532	2024-07-04	15:01:21.8520427	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3636\r\nEmployeeTrainingId: 0\r\nFromDate: February 13, 2020\r\nHours: 16\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: February 14, 2020\r\nTrainingId: 15293\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761533	2024-07-04	15:01:21.8560294	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3636\r\nEmployeeTrainingId: 0\r\nFromDate: December 12, 2019\r\nHours: 16\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: December 13, 2019\r\nTrainingId: 15059\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761534	2024-07-04	15:01:21.8600159	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3636\r\nEmployeeTrainingId: 0\r\nFromDate: November 26, 2019\r\nHours: 8\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 26, 2016\r\nTrainingId: 15261\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761535	2024-07-04	15:01:21.8640027	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3636\r\nEmployeeTrainingId: 0\r\nFromDate: January 14, 2019\r\nHours: 600\r\nNatureOfParticipation: CLERICAL\r\nSponsoringAgency: BATANGAS STATE UNIVERSITY\r\nStatus: \r\nToDate: October 05, 2019\r\nTrainingId: 3859\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761536	2024-07-04	15:01:21.8679894	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3636\r\nCharacterReferenceId: 0\r\nCompanyAddress: CITY OF SAN JOSE DEL MONTE, BULACAN\r\nCompanyName: \r\nContactNumber: 09457003166\r\nExtensionName: \r\nFirstName: JAN JUAN\r\nLastName: SESCON\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761570	2024-07-04	15:19:33.6674002	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3639\r\nRecognitionId: 0\r\nRecognitionName: RESOURCE SPEAKER- FINANCIAL ADVANCEMENT SKILLS FOR SCHOOL ADMINISTRATORS AND FINANCE AND ADMINISTRATIVE PERSONNEL- MAY 15-17, 2023\r\n	admin	Recognitions	1
761537	2024-07-04	15:01:21.8729727	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3636\r\nCharacterReferenceId: 0\r\nCompanyAddress: IBAAN, BATANGAS\r\nCompanyName: \r\nContactNumber: 09351496809\r\nExtensionName: \r\nFirstName: DANNALYN\r\nLastName: MALABANAN\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761538	2024-07-04	15:01:21.8769594	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3636\r\nCharacterReferenceId: 0\r\nCompanyAddress: BALAGTAS, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09508708842\r\nExtensionName: \r\nFirstName: LOREN\r\nLastName: YAPE\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761539	2024-07-04	15:01:21.8819429	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: KUMINTANG IBABA\r\nBasicInformationId: 3636\r\nBirthDate: July 22, 1998\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jemalyn.decastro@deped.gov.ph\r\nExtensionName: \r\nFirstName: JEMALYN\r\nFullName: JEMALYN A. DE CASTRO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: ABRACOSA\r\nMobileNumber: 09490489333\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: KUMINTANG IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO FERRY\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO FERRY\r\nTIN: \r\nWeight: 47\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: KUMINTANG IBABA\r\nBasicInformationId: 3636\r\nBirthDate: July 22, 1998\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jemalyn.decastro@deped.gov.ph\r\nExtensionName: \r\nFirstName: JEMALYN\r\nFullName: JEMALYN A. DE CASTRO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005825721\r\nHDMF: 1212-5341-4399\r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: ABRACOSA\r\nMobileNumber: 09490489333\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: KUMINTANG IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO FERRY\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025684430-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO FERRY\r\nTIN: 748-709-583-0000\r\nWeight: 47\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761540	2024-07-04	15:01:21.8859294	<Undetected>	Update	BasicInformationId: 3636\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3386\r\nExtensionName: \r\nFirstName: MARIO\r\nFullName: MARIO ILAGAN DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: ILAGAN\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3636\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3386\r\nExtensionName: \r\nFirstName: MARIO\r\nFullName: MARIO DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: ILAGAN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
761541	2024-07-04	15:01:21.8899161	<Undetected>	Update	BasicInformationId: 3636\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3387\r\nExtensionName: \r\nFirstName: SONIA\r\nFullName: SONIA REYES ABRACOSA\r\nGender: Female\r\nLastName: ABRACOSA\r\nMaidenName: \r\nMiddleName: REYES\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3636\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3387\r\nExtensionName: \r\nFirstName: SONIA\r\nFullName: SONIA ABRACOSA\r\nGender: Female\r\nLastName: ABRACOSA\r\nMaidenName: \r\nMiddleName: REYES\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761542	2024-07-04	15:01:21.8939027	<Undetected>	Update	BasicInformationId: 3636\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3433\r\n	BasicInformationId: 3636\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3433\r\n	admin	Questionnaires	1
761551	2024-07-04	15:17:15.4900162	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3640\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: BAILON\r\nFullName: BAILON VILLAMOR MACALALAD\r\nGender: Male\r\nLastName: MACALALAD\r\nMaidenName: \r\nMiddleName: VILLAMOR\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
761552	2024-07-04	15:17:15.4900162	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3640\r\nBirthDate: January 01, 0001\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RODELIA\r\nFullName: RODELIA AMUL GARCIA\r\nGender: Female\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: AMUL\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761553	2024-07-04	15:17:15.4900162	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3640\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 0437417182\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LORRAINE\r\nFullName: LORRAINE AGUDA\r\nGender: Female\r\nLastName: MACALALAD\r\nMaidenName: \r\nMiddleName: AGUDA\r\nOccupation: SCHOOL NURSE \r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
761554	2024-07-04	15:17:15.4910120	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3640\r\nBirthDate: January 13, 2022\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LEBRON JEREMIAS\r\nFullName: LEBRON JEREMIAS A MACALALAD\r\nGender: Male\r\nLastName: MACALALAD\r\nMaidenName: \r\nMiddleName: A\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761555	2024-07-04	15:17:15.4910120	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3640\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: March 07, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 13,000.00\r\nPositionHeld: ADMINISTRATIVE AIDE I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: July 04, 2024\r\n	admin	Experiences	1
761556	2024-07-04	15:17:15.4910120	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3640\r\nCompanyInstitution: SEABRIDGE PORT AGENCIES CORP. \r\nExperienceId: 0\r\nFromDate: November 22, 2021\r\nIsGovernmentService: False\r\nMonthlySalary: 14,800.00\r\nPositionHeld: OPERATIONS ASSISTANT \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: June 30, 2023\r\n	admin	Experiences	1
761557	2024-07-04	15:17:15.4910120	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3640\r\nCompanyInstitution: SOROSORO IBABA DEEVELOPMENT COOPERATIVE \r\nExperienceId: 0\r\nFromDate: May 06, 2017\r\nIsGovernmentService: False\r\nMonthlySalary: 9,900.00\r\nPositionHeld: FIBER TV TEAM LEAD TECHNICIAN \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: November 11, 2021\r\n	admin	Experiences	1
761558	2024-07-04	15:17:15.4910120	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3640\r\nCompanyInstitution: ATLATIC GULF & PACIFIC ( AG&P / ICHTHYS PROJECT )  \r\nExperienceId: 0\r\nFromDate: November 26, 2015\r\nIsGovernmentService: False\r\nMonthlySalary: 15,000.00\r\nPositionHeld: ELECTRICIAN \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: April 30, 2016\r\n	admin	Experiences	1
761559	2024-07-04	15:17:15.4910120	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3640\r\nCompanyInstitution: ATLATIC GULF & PACIFIC ( AG&P / ICHTHYS PROJECT )  \r\nExperienceId: 0\r\nFromDate: July 08, 2015\r\nIsGovernmentService: False\r\nMonthlySalary: 15,000.00\r\nPositionHeld: ELECTRICIAN \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: November 23, 2015\r\n	admin	Experiences	1
761560	2024-07-04	15:17:15.4910120	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3640\r\nCompanyInstitution: ASIAN MARINE TRANSPORT ( SUPER SHUTTLE ) \r\nExperienceId: 0\r\nFromDate: November 08, 2014\r\nIsGovernmentService: False\r\nMonthlySalary: 9,800.00\r\nPositionHeld: CHECKER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: January 06, 2015\r\n	admin	Experiences	1
761561	2024-07-04	15:17:15.4910120	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3640\r\nCompanyInstitution: ARKITEL TRADING & SERVICES ( GLOBE ACCREDITEDI CONTRACTOR ) \r\nExperienceId: 0\r\nFromDate: August 15, 2013\r\nIsGovernmentService: False\r\nMonthlySalary: 9,000.00\r\nPositionHeld: TELECOM TECHNICIAN \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: December 20, 2013\r\n	admin	Experiences	1
761562	2024-07-04	15:17:15.4910120	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3640\r\nCompanyInstitution: GINAZEL HOTEL RESTAURANT AND CATERING SERVICES \r\nExperienceId: 0\r\nFromDate: January 08, 2012\r\nIsGovernmentService: False\r\nMonthlySalary: 9,500.00\r\nPositionHeld: COMPANY MESSENGER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: July 08, 2013\r\n	admin	Experiences	1
761575	2024-07-04	15:19:33.6893267	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3639\r\nEmployeeTrainingId: 0\r\nFromDate: December 12, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: December 12, 2019\r\nTrainingId: 15175\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761576	2024-07-04	15:19:33.6943103	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3639\r\nEmployeeTrainingId: 0\r\nFromDate: February 12, 2019\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: February 14, 2019\r\nTrainingId: 15228\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761577	2024-07-04	15:19:33.6982971	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3639\r\nEmployeeTrainingId: 0\r\nFromDate: December 27, 2018\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: December 28, 2018\r\nTrainingId: 15160\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761578	2024-07-04	15:19:33.7022831	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3639\r\nEmployeeTrainingId: 0\r\nFromDate: August 07, 2018\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: COOPERATIVE UNION OF BATANGAS\r\nStatus: \r\nToDate: August 08, 2018\r\nTrainingId: 15301\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761579	2024-07-04	15:19:33.7072668	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3639\r\nCharacterReferenceId: 0\r\nCompanyAddress: SDO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09172753556\r\nExtensionName: \r\nFirstName: SACORO\r\nLastName: COMIA\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761580	2024-07-04	15:19:33.7112534	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3639\r\nCharacterReferenceId: 0\r\nCompanyAddress: SDO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09295320442\r\nExtensionName: \r\nFirstName: DEMETRIO \r\nLastName: BAUTISTA\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761581	2024-07-04	15:19:33.7162372	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3639\r\nCharacterReferenceId: 0\r\nCompanyAddress: SDO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09171328890\r\nExtensionName: \r\nFirstName: MENIANO\r\nLastName: EBORA\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761582	2024-07-04	15:19:33.7202235	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 322\r\nAddress2: \r\nBarangay: MALITAM\r\nBasicInformationId: 3639\r\nBirthDate: August 27, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: monica.abellera@deped.gov.ph\r\nExtensionName: \r\nFirstName: MONICA\r\nFullName: MONICA M. ABELLERA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ABELLERA\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nMobileNumber: 09976022070\r\nNationality: Filipino\r\nPermanentAddress1: 322\r\nPermanentAddress2: \r\nPermanentBarangay: MALITAM\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ILANG-ILANG STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ILANG-ILANG STREET\r\nTIN: \r\nWeight: 53\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 322\r\nAddress2: \r\nBarangay: MALITAM\r\nBasicInformationId: 3639\r\nBirthDate: August 27, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: monica.abellera@deped.gov.ph\r\nExtensionName: \r\nFirstName: MONICA\r\nFullName: MONICA M. ABELLERA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005546367\r\nHDMF: 1210-3898-1412\r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ABELLERA\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nMobileNumber: 09976022070\r\nNationality: Filipino\r\nPermanentAddress1: 322\r\nPermanentAddress2: \r\nPermanentBarangay: MALITAM\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ILANG-ILANG STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025110354-1\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3345828-7\r\nStreetName: ILANG-ILANG STREET\r\nTIN: 918-809-341-0000\r\nWeight: 53\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761583	2024-07-04	15:19:33.7242104	<Undetected>	Update	BasicInformationId: 3639\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3393\r\nExtensionName: \r\nFirstName: JULES EDSEL\r\nFullName: JULES EDSEL MANALO ABELLERA\r\nGender: Male\r\nLastName: ABELLERA\r\nMaidenName: \r\nMiddleName: MANALO\r\nOccupation: ADMINISTRATIVE AIDE III\r\nRelationship: Husband\r\n	BasicInformationId: 3639\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3393\r\nExtensionName: \r\nFirstName: JULES EDSEL\r\nFullName: JULES EDSEL ABELLERA\r\nGender: Male\r\nLastName: ABELLERA\r\nMaidenName: \r\nMiddleName: MANALO\r\nOccupation: ADMINISTRATIVE AIDE III\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
761584	2024-07-04	15:19:33.7291934	<Undetected>	Update	BasicInformationId: 3639\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3394\r\nExtensionName: \r\nFirstName: PEDRO\r\nFullName: PEDRO CANTOS MARASIGAN\r\nGender: Male\r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3639\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3394\r\nExtensionName: \r\nFirstName: PEDRO\r\nFullName: PEDRO MARASIGAN\r\nGender: Male\r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
761585	2024-07-04	15:19:33.7331803	<Undetected>	Update	BasicInformationId: 3639\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3395\r\nExtensionName: \r\nFirstName: TEOFILA\r\nFullName: TEOFILA OXILLO PATULAY\r\nGender: Female\r\nLastName: PATULAY\r\nMaidenName: \r\nMiddleName: OXILLO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3639\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3395\r\nExtensionName: \r\nFirstName: TEOFILA\r\nFullName: TEOFILA PATULAY\r\nGender: Female\r\nLastName: PATULAY\r\nMaidenName: \r\nMiddleName: OXILLO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761586	2024-07-04	15:19:33.7381636	<Undetected>	Update	BasicInformationId: 3639\r\nBirthDate: May 02, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3396\r\nExtensionName: \r\nFirstName: JULS MARCUS\r\nFullName: JULS MARCUS M ABALLERA\r\nGender: Male\r\nLastName: ABALLERA\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3639\r\nBirthDate: May 02, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3396\r\nExtensionName: \r\nFirstName: JULS MARCUS\r\nFullName: JULS MARCUS ABALLERA\r\nGender: Male\r\nLastName: ABALLERA\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761587	2024-07-04	15:19:33.7421502	<Undetected>	Update	BasicInformationId: 3639\r\nBirthDate: August 29, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3397\r\nExtensionName: \r\nFirstName: MONINA JEAN\r\nFullName: MONINA JEAN M ABELLERA\r\nGender: Female\r\nLastName: ABELLERA\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3639\r\nBirthDate: August 29, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3397\r\nExtensionName: \r\nFirstName: MONINA JEAN\r\nFullName: MONINA JEAN ABELLERA\r\nGender: Female\r\nLastName: ABELLERA\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761588	2024-07-04	15:19:33.7461368	<Undetected>	Update	BasicInformationId: 3639\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3436\r\n	BasicInformationId: 3639\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3436\r\n	admin	Questionnaires	1
761589	2024-07-04	15:20:10.6120670	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FINAL QUALITY ASSURANCE / WORKSHOP OF CONTEXTUALIZED AND LOCALIZED MATERIALS IN ALL LEARNING AREAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761590	2024-07-04	15:21:21.7354383	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BASIC ACCOUNTING FOR NON - ACCOUNTANT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761591	2024-07-04	15:23:45.2117483	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3637\r\nOrganizationId: 0\r\nOrganizationName: DEPED - NATIONAL EMPLOYEES UNION\r\n	admin	Organizations	1
761592	2024-07-04	15:23:45.2197917	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3637\r\nEmployeeTrainingId: 0\r\nFromDate: October 13, 2021\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED LEGAL AFFAIRS (NATIONAL)\r\nStatus: \r\nToDate: October 15, 2021\r\nTrainingId: 15300\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761593	2024-07-04	15:23:45.2237908	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3637\r\nEmployeeTrainingId: 0\r\nFromDate: February 11, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: COOPERATIVE UNION OF BATANGAS\r\nStatus: \r\nToDate: February 11, 2020\r\nTrainingId: 15304\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761594	2024-07-04	15:23:45.2277476	<Undetected>	Update	BasicInformationId: 3637\r\nEmployeeTrainingId: 7840\r\nFromDate: October 26, 2023\r\nHours: 2.00\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DICT REGION IV-A CALABARZON\r\nStatus: \r\nToDate: January 01, 1900\r\nTrainingId: 15269\r\nTrainingPerformanceRate: 0\r\n	BasicInformationId: 3637\r\nEmployeeTrainingId: 7840\r\nFromDate: October 26, 2023\r\nHours: 2\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DICT REGION IV-A CALABARZON\r\nStatus: \r\nToDate: October 26, 2023\r\nTrainingId: 15269\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761595	2024-07-04	15:23:45.2317473	<Undetected>	Update	BasicInformationId: 3637\r\nEmployeeTrainingId: 7841\r\nFromDate: October 20, 2023\r\nHours: 3.00\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DICT REGION IV-A CALABARZON\r\nStatus: \r\nToDate: January 01, 1900\r\nTrainingId: 15273\r\nTrainingPerformanceRate: 0\r\n	BasicInformationId: 3637\r\nEmployeeTrainingId: 7841\r\nFromDate: October 20, 2023\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DICT REGION IV-A CALABARZON\r\nStatus: \r\nToDate: October 20, 2023\r\nTrainingId: 15273\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761596	2024-07-04	15:23:45.2357474	<Undetected>	Update	BasicInformationId: 3637\r\nEmployeeTrainingId: 7868\r\nFromDate: October 19, 2023\r\nHours: 2.00\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DICT REGION V-A CAMARINES SUR\r\nStatus: \r\nToDate: January 01, 1900\r\nTrainingId: 15276\r\nTrainingPerformanceRate: 0\r\n	BasicInformationId: 3637\r\nEmployeeTrainingId: 7868\r\nFromDate: October 19, 2023\r\nHours: 2\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DICT REGION V-A CAMARINES SUR\r\nStatus: \r\nToDate: October 19, 2023\r\nTrainingId: 15276\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761597	2024-07-04	15:23:45.2397474	<Undetected>	Update	BasicInformationId: 3637\r\nEmployeeTrainingId: 7869\r\nFromDate: October 19, 2023\r\nHours: 3.00\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DICT REGION IV-A CALABARZON\r\nStatus: \r\nToDate: January 01, 1900\r\nTrainingId: 15279\r\nTrainingPerformanceRate: 0\r\n	BasicInformationId: 3637\r\nEmployeeTrainingId: 7869\r\nFromDate: October 19, 2023\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DICT REGION IV-A CALABARZON\r\nStatus: \r\nToDate: October 19, 2023\r\nTrainingId: 15279\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761598	2024-07-04	15:23:45.2447478	<Undetected>	Update	BasicInformationId: 3637\r\nEmployeeTrainingId: 7870\r\nFromDate: June 23, 2023\r\nHours: 7.00\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DICT REGION IV-A CALABARZON/IV-B MIMAROPA\r\nStatus: \r\nToDate: January 01, 1900\r\nTrainingId: 15281\r\nTrainingPerformanceRate: 0\r\n	BasicInformationId: 3637\r\nEmployeeTrainingId: 7870\r\nFromDate: June 23, 2023\r\nHours: 7\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DICT REGION IV-A CALABARZON/IV-B MIMAROPA\r\nStatus: \r\nToDate: June 23, 2023\r\nTrainingId: 15281\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761599	2024-07-04	15:23:45.2527472	<Undetected>	Update	BasicInformationId: 3637\r\nEmployeeTrainingId: 7871\r\nFromDate: March 30, 2023\r\nHours: 8.00\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: January 01, 1900\r\nTrainingId: 15283\r\nTrainingPerformanceRate: 0\r\n	BasicInformationId: 3637\r\nEmployeeTrainingId: 7871\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15283\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761609	2024-07-04	15:28:49.0417458	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: RELIGIOUS EDUCATION\r\nLevel: Vocational\r\n	admin	Courses	1
761600	2024-07-04	15:23:45.2597491	<Undetected>	Update	BasicInformationId: 3637\r\nEmployeeTrainingId: 7872\r\nFromDate: February 20, 2023\r\nHours: 3.00\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: January 01, 1900\r\nTrainingId: 15285\r\nTrainingPerformanceRate: 0\r\n	BasicInformationId: 3637\r\nEmployeeTrainingId: 7872\r\nFromDate: February 20, 2023\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: February 20, 2023\r\nTrainingId: 15285\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761601	2024-07-04	15:23:45.2647480	<Undetected>	Update	BasicInformationId: 3637\r\nEmployeeTrainingId: 7874\r\nFromDate: August 23, 2022\r\nHours: 2.00\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: UDEMY - SDO BATANGAS CITY\r\nStatus: \r\nToDate: January 01, 1900\r\nTrainingId: 15287\r\nTrainingPerformanceRate: 0\r\n	BasicInformationId: 3637\r\nEmployeeTrainingId: 7874\r\nFromDate: August 23, 2022\r\nHours: 2\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: UDEMY - SDO BATANGAS CITY\r\nStatus: \r\nToDate: August 23, 2022\r\nTrainingId: 15287\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761602	2024-07-04	15:23:45.2707472	<Undetected>	Update	BasicInformationId: 3637\r\nEmployeeTrainingId: 7875\r\nFromDate: August 22, 2022\r\nHours: 1.00\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: UDEMY - SDO BATANGAS CITY\r\nStatus: \r\nToDate: January 01, 1900\r\nTrainingId: 15288\r\nTrainingPerformanceRate: 0\r\n	BasicInformationId: 3637\r\nEmployeeTrainingId: 7875\r\nFromDate: August 22, 2022\r\nHours: 1\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: UDEMY - SDO BATANGAS CITY\r\nStatus: \r\nToDate: August 22, 2022\r\nTrainingId: 15288\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761603	2024-07-04	15:23:45.2757469	<Undetected>	Update	BasicInformationId: 3637\r\nEmployeeTrainingId: 7876\r\nFromDate: August 22, 2022\r\nHours: 1.00\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: UDEMY - SDO BATANGAS CITY\r\nStatus: \r\nToDate: January 01, 1900\r\nTrainingId: 15290\r\nTrainingPerformanceRate: 0\r\n	BasicInformationId: 3637\r\nEmployeeTrainingId: 7876\r\nFromDate: August 22, 2022\r\nHours: 1\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: UDEMY - SDO BATANGAS CITY\r\nStatus: \r\nToDate: August 22, 2022\r\nTrainingId: 15290\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761604	2024-07-04	15:23:45.2817478	<Undetected>	Update	BasicInformationId: 3637\r\nEmployeeTrainingId: 7877\r\nFromDate: August 19, 2022\r\nHours: 7.00\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: UDEMY - SDO BATANGAS CITY\r\nStatus: \r\nToDate: January 01, 1900\r\nTrainingId: 15291\r\nTrainingPerformanceRate: 0\r\n	BasicInformationId: 3637\r\nEmployeeTrainingId: 7877\r\nFromDate: August 19, 2022\r\nHours: 7\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: UDEMY - SDO BATANGAS CITY\r\nStatus: \r\nToDate: August 19, 2022\r\nTrainingId: 15291\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761605	2024-07-04	15:23:45.2867483	<Undetected>	Update	BasicInformationId: 3637\r\nEmployeeTrainingId: 7879\r\nFromDate: July 17, 2022\r\nHours: 2.00\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: UDEMY - SDO BATANGAS CITY\r\nStatus: \r\nToDate: January 01, 1900\r\nTrainingId: 15297\r\nTrainingPerformanceRate: 0\r\n	BasicInformationId: 3637\r\nEmployeeTrainingId: 7879\r\nFromDate: July 17, 2022\r\nHours: 2\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: UDEMY - SDO BATANGAS CITY\r\nStatus: \r\nToDate: July 17, 2022\r\nTrainingId: 15297\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761607	2024-07-04	15:28:27.1004889	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING-WORKSHOP ON FOUR CORE AREAS TO INSTITUTIONALIZE MERITOCRACY AND EXCELLENCE IN HUMAN RESOURCE MANAGEMENT (PRIME HRM)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761610	2024-07-04	15:30:14.5313379	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3637\r\nCharacterReferenceId: 0\r\nCompanyAddress: DUMANTAY, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09971264850\r\nExtensionName: \r\nFirstName: MARIA ROSEL \r\nLastName: ISLETA\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761611	2024-07-04	15:30:14.5383375	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3637\r\nCharacterReferenceId: 0\r\nCompanyAddress: KUMINTANG IBABA,BATANGAS CTY\r\nCompanyName: \r\nContactNumber: 09494419567\r\nExtensionName: \r\nFirstName: LUIS\r\nLastName: MALIGALIG\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761612	2024-07-04	15:30:14.5423379	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3637\r\nCharacterReferenceId: 0\r\nCompanyAddress: TALUMPOK WEST ,BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09368602346\r\nExtensionName: \r\nFirstName: MAGELYN\r\nLastName: RAMIREZ\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761613	2024-07-04	15:30:14.5463376	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 517\r\nAddress2: \r\nBarangay: ILIJAN\r\nBasicInformationId: 3637\r\nBirthDate: December 09, 1994\r\nBirthPlace: ILIJAN, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: LUCYKAREN.ANDES@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: LUCY KAREN\r\nFullName: LUCY KAREN A. ANDES\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ANDES\r\nMaidenName: \r\nMiddleName: AGULO\r\nMobileNumber: 09684929492\r\nNationality: Filipino\r\nPermanentAddress1: 517\r\nPermanentAddress2: \r\nPermanentBarangay: ILIJAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: HULONG SILANGAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: HULONG SILANGAN\r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 517\r\nAddress2: \r\nBarangay: ILIJAN\r\nBasicInformationId: 3637\r\nBirthDate: December 09, 1994\r\nBirthPlace: ILIJAN, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: LUCYKAREN.ANDES@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: LUCY KAREN\r\nFullName: LUCY KAREN A. ANDES\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005825728\r\nHDMF: 1211-7277-8266\r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ANDES\r\nMaidenName: \r\nMiddleName: AGULO\r\nMobileNumber: 09684929492\r\nNationality: Filipino\r\nPermanentAddress1: 517\r\nPermanentAddress2: \r\nPermanentBarangay: ILIJAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: HULONG SILANGAN\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025361056-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-2754502-5\r\nStreetName: HULONG SILANGAN\r\nTIN: 332-166-853-0000\r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761734	2024-07-04	15:53:10.8865219	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3643\r\nRecognitionId: 0\r\nRecognitionName: TOP PERFORMER CAREER LEVEL 3- 1ST QUARTER F.Y. 2018\r\n	admin	Recognitions	1
761608	2024-07-04	15:28:44.4196611	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 DIVISION STORYBOOK WRITING WORKSHOP AND COMPETITION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761616	2024-07-04	15:33:30.3364656	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPACITY BUILDING OF IDENTIFIED/ VOLUNTEER TEACHERS ON THE IMPLEMENTATION OF NATIONAL LEARNING CAMP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761618	2024-07-04	15:34:44.7955825	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CYBER SMART ONLINE CARAVAN\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761619	2024-07-04	15:36:05.6835205	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DATA PRIVACY ACT : HOW TO USE FACEBOOK PRIVACY SETTING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761621	2024-07-04	15:37:45.6591033	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INTERMEDIATE WEB DEVELOPMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761623	2024-07-04	15:39:04.9641045	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DICT LC2 ONLINE TRAINING : VIDEO EDITING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761625	2024-07-04	15:40:45.3952270	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: GETTING STARTED WITH GOOGLE FOR EDUCATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761627	2024-07-04	15:41:56.6044720	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SAFETY COURSE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761628	2024-07-04	15:44:01.1878442	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: LEVEL 1 TRAINING ( SUBSCRIBER LINE INSTALLATION AND REPAIR, BASIC CUSTOMER SERVICE & SAFETY )\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761637	2024-07-04	15:45:44.5282459	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FLOW AND TEMPERATURE MEASUREMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761638	2024-07-04	15:47:13.2595540	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PRESSURE AND LEVEL MEASUREMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761639	2024-07-04	15:48:31.0375989	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ON- THE- JOB TRAINING ( PLDT BATANGAS CITY )\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761641	2024-07-04	15:49:29.2102064	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3640\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION OF BATANGAS CITY \r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761642	2024-07-04	15:49:29.2152064	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3640\r\nEmployeeTrainingId: 0\r\nFromDate: November 20, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 20, 2023\r\nTrainingId: 15303\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761643	2024-07-04	15:49:29.2192064	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3640\r\nEmployeeTrainingId: 0\r\nFromDate: November 17, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 17, 2023\r\nTrainingId: 15303\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761644	2024-07-04	15:49:29.2242071	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3640\r\nEmployeeTrainingId: 0\r\nFromDate: October 19, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION OF BATANGAS CITY\r\nStatus: \r\nToDate: October 20, 2023\r\nTrainingId: 15305\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761645	2024-07-04	15:49:29.2282064	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3640\r\nEmployeeTrainingId: 0\r\nFromDate: September 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 22, 2023\r\nTrainingId: 15307\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761646	2024-07-04	15:49:29.2332063	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3640\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15168\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761614	2024-07-04	15:30:14.5503375	<Undetected>	Update	BasicInformationId: 3637\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3434\r\n	BasicInformationId: 3637\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3434\r\n	admin	Questionnaires	1
761626	2024-07-04	15:41:05.6496997	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BSC -MANAGEMENT OF FINANCIAL INSTITUTION\r\nLevel: College\r\n	admin	Courses	1
761629	2024-07-04	15:45:05.2614325	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 0973\r\nAddress2: \r\nBarangay: BOLBOK\r\nBasicInformationId: 0\r\nBirthDate: August 28, 1988\r\nBirthPlace: BATANGAS CUTY,BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: TONIMARGARET.DEJESUS@YAHOO.COM\r\nExtensionName: \r\nFirstName: TONI MARGARET\r\nFullName: TONI MARGARET M. DE JESUS\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DE JESUS\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nMobileNumber: 09272000638\r\nNationality: Filipino\r\nPermanentAddress1: 0973\r\nPermanentAddress2: \r\nPermanentBarangay: BOLBOK\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 58\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761630	2024-07-04	15:45:05.2768720	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3641\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1995\r\nDateTo: 2001\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAINT BRIDGET COLLEGE\r\nYearGraduated: 2001\r\n	admin	EducationalBackgrounds	1
761631	2024-07-04	15:45:05.2768720	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: WITH HONORS\r\nBasicInformationId: 3641\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2005\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAINT BRIDGET COLLEGE\r\nYearGraduated: 2005\r\n	admin	EducationalBackgrounds	1
761632	2024-07-04	15:45:05.2778740	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: DEAN'S LIST (TWICE)\r\nBasicInformationId: 3641\r\nCourse: \r\nCourseId: 1285\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: DE LA SALLE UNIVERSITY - MANILA\r\nYearGraduated: 2009\r\n	admin	EducationalBackgrounds	1
761633	2024-07-04	15:45:05.2778740	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3641\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: TONY\r\nFullName: TONY REDUBLO DE JESUS\r\nGender: Male\r\nLastName: DE JESUS\r\nMaidenName: \r\nMiddleName: REDUBLO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
761634	2024-07-04	15:45:05.2778740	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3641\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DAISY\r\nFullName: DAISY AGUADO MACATANGAY\r\nGender: Female\r\nLastName: DE JESUS\r\nMaidenName: AGUADO\r\nMiddleName: MACATANGAY\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761635	2024-07-04	15:45:05.2778740	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3641\r\nDateOfExamination: October 21, 2012\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: October 21, 2012\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS NATIONAL HIGH SCHOOL\r\nRating: 82.9\r\nTitle: CAREER SERVICE PROFESSIONAL\r\n	admin	Eligibilities	1
761636	2024-07-04	15:45:05.2778740	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3641\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
761665	2024-07-04	15:51:56.2015707	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3641\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 18, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 19,923.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 8-2\r\nStatus: Permanent\r\nToDate: July 04, 2024\r\n	admin	Experiences	1
761666	2024-07-04	15:51:56.2075706	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3641\r\nCompanyInstitution: UNIVESITY OF BATANGAS\r\nExperienceId: 0\r\nFromDate: April 25, 2014\r\nIsGovernmentService: False\r\nMonthlySalary: 14,124.14\r\nPositionHeld: CLERK II/ TELLER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: June 17, 2019\r\n	admin	Experiences	1
761617	2024-07-04	15:34:45.3166225	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING WORKSHOP ON UPDATING LEARNERS AND SCHOOLS' PROFILE IN THE LEARNER INFORMATION SYSTEM AND ENHANCEDE BASIC EDUCATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761620	2024-07-04	15:37:19.1006523	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING WORKSHOP ON UPDATING LEARNERS AND SCHOOLS' PROFILE IN THE LEARNER INFORMATION SYSTEM AND ENHANCED BASIC EDUCATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761622	2024-07-04	15:38:15.7321033	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BASIC LIFE SUPPORT PROVIDERS' TRAINING FOR SCHOOL DRRM COORDINATORS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761624	2024-07-04	15:40:29.1965269	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION ORIENTATION ON IPCRF-RPMS DATA COLLECTION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761697	2024-07-04	15:53:10.4539808	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 301\r\nAddress2: \r\nBarangay: MATAAS NA LUPA\r\nBasicInformationId: 0\r\nBirthDate: October 15, 1996\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: SAN PASCUAL\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: kriziamagbojos@gmail.com\r\nExtensionName: \r\nFirstName: KRIZIA MAE\r\nFullName: KRIZIA MAE A. MAGBOJOS\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005568473\r\nHDMF: 1212-0638-0814\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MAGBOJOS\r\nMaidenName: \r\nMiddleName: ABUZMAN\r\nMobileNumber: 09772133865\r\nNationality: Filipino\r\nPermanentAddress1: 301\r\nPermanentAddress2: \r\nPermanentBarangay: MATAAS NA LUPA\r\nPermanentCity: SAN PASCUAL\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4204\r\nPhilhealth: 02-252937070-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: 34-6976269-8\r\nStreetName: \r\nTIN: 341-485-914-0000\r\nWeight: 73\r\nZipCode: 4204\r\n	admin	BasicInformation	1
761698	2024-07-04	15:53:10.7310428	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3643\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: MATAAS NA LUPA- PALSAHINGIN ELEMENTARY SCHOOL\r\nYearGraduated: 2009\r\n	admin	EducationalBackgrounds	1
761699	2024-07-04	15:53:10.7350294	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3643\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2009\r\nDateTo: 2013\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: STA. TERESA COLLEGE\r\nYearGraduated: 2013\r\n	admin	EducationalBackgrounds	1
761700	2024-07-04	15:53:10.7390162	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3643\r\nCourse: \r\nCourseId: 1280\r\nCourseOrMajor: \r\nDateFrom: 2013\r\nDateTo: 2017\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MAJOR IN FINANCIAL MANAGEMENT\r\nSchoolorUniversity: DE LA SALLE LIPA\r\nYearGraduated: 2017\r\n	admin	EducationalBackgrounds	1
761701	2024-07-04	15:53:10.7430026	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3643\r\nCourse: \r\nCourseId: 1253\r\nCourseOrMajor: \r\nDateFrom: 2019\r\nDateTo: 2021\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGHES\r\nYearGraduated: 2021\r\n	admin	EducationalBackgrounds	1
761702	2024-07-04	15:53:10.7469893	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3643\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CONRADO\r\nFullName: CONRADO TUMAMBING MAGBOJOS\r\nGender: Male\r\nLastName: MAGBOJOS\r\nMaidenName: \r\nMiddleName: TUMAMBING\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
761703	2024-07-04	15:53:10.7519726	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3643\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ANITA\r\nFullName: ANITA JUSI ABUZMAN\r\nGender: Female\r\nLastName: ABUZMAN\r\nMaidenName: \r\nMiddleName: JUSI\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761704	2024-07-04	15:53:10.7559593	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3643\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761735	2024-07-04	15:53:10.8905084	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3643\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
761640	2024-07-04	15:49:12.3988593	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING OF TRAINERS FOR EXAINERS AND IT SUPPORT TEAMS ON THE ONLINE SYSTEM FOR THE FY 2023 NATIONAL QUALIFYING EXAMINATION FOR SCHOOL HEADS (NQESH)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761672	2024-07-04	15:52:20.8282184	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SOROSORO KARSADA\r\nBasicInformationId: 0\r\nBirthDate: January 29, 1971\r\nBirthPlace: ISLA VERDE, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: damdy.ebora@deped.gov.ph\r\nExtensionName: \r\nFirstName: DANDY\r\nFullName: DANDY G. EBORA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nMobileNumber: 09912436989\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANTONIO, ISLA VERDE\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 71\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761673	2024-07-04	15:52:20.9888175	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: 1ST HONORABLE MENTION\r\nBasicInformationId: 3642\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1978\r\nDateTo: 1984\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: MATISAY ELEMENTARY SCHOOL\r\nYearGraduated: 1984\r\n	admin	EducationalBackgrounds	1
761674	2024-07-04	15:52:20.9928042	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3642\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1985\r\nDateTo: 1989\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: ISLA VERDE CATHLIC HIGH SCHOOL\r\nYearGraduated: 1989\r\n	admin	EducationalBackgrounds	1
761675	2024-07-04	15:52:20.9967909	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3642\r\nCourse: \r\nCourseId: 1283\r\nCourseOrMajor: \r\nDateFrom: 1991\r\nDateTo: 1993\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Vocational Graduate\r\nMajor: \r\nSchoolorUniversity: SACRED HEART INFORMATION CENTER FOR RELIGIOUS EDUCATION\r\nYearGraduated: 1993\r\n	admin	EducationalBackgrounds	1
761676	2024-07-04	15:52:21.0007777	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3642\r\nCourse: \r\nCourseId: 1270\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 1999\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MATHEMATICS\r\nSchoolorUniversity: RIZAL COLLEGE OF TAAL \r\nYearGraduated: 1999\r\n	admin	EducationalBackgrounds	1
761677	2024-07-04	15:52:21.0057608	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3642\r\nCourse: \r\nCourseId: 1284\r\nCourseOrMajor: \r\nDateFrom: 2010\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: RIZAL COLLEGE OF TAAL \r\nYearGraduated: 2000\r\n	admin	EducationalBackgrounds	1
761678	2024-07-04	15:52:21.0097476	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3642\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DOMINGO\r\nFullName: DOMINGO CALAHATI EBORA\r\nGender: Male\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: CALAHATI\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
761679	2024-07-04	15:52:21.0137344	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3642\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LOLITA\r\nFullName: LOLITA PENTINIO GUTIERREZ\r\nGender: Female\r\nLastName: GUTIERREZ\r\nMaidenName: \r\nMiddleName: PENTINIO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761680	2024-07-04	15:52:21.0187176	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3642\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 14\r\nNatureOfParticipation: PARTICIPANT \r\nSponsoringAgency: BUREAU OF HUMAN RESOURCE ORGANIZATION DIVISION\r\nStatus: \r\nToDate: January 26, 2024\r\nTrainingId: 15323\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761681	2024-07-04	15:52:21.0227043	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3642\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: DEPARTMENT IF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761755	2024-07-04	16:11:32.1783695	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF SCIENCE IN APPLIED ECONOMICS\r\nLevel: College\r\n	admin	Courses	1
761647	2024-07-04	15:49:29.2372063	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3640\r\nEmployeeTrainingId: 0\r\nFromDate: July 21, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 22, 2023\r\nTrainingId: 15308\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761648	2024-07-04	15:49:29.2422065	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3640\r\nEmployeeTrainingId: 0\r\nFromDate: September 09, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: SMART \r\nStatus: \r\nToDate: September 09, 2020\r\nTrainingId: 15310\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761649	2024-07-04	15:49:29.2462093	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3640\r\nEmployeeTrainingId: 0\r\nFromDate: July 31, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY \r\nStatus: \r\nToDate: July 31, 2020\r\nTrainingId: 15311\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761650	2024-07-04	15:49:29.2502091	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3640\r\nEmployeeTrainingId: 0\r\nFromDate: September 06, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: ERYUTECH\r\nStatus: \r\nToDate: September 06, 2020\r\nTrainingId: 15313\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761651	2024-07-04	15:49:29.2552095	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3640\r\nEmployeeTrainingId: 0\r\nFromDate: April 24, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY \r\nStatus: \r\nToDate: April 24, 2020\r\nTrainingId: 15315\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761652	2024-07-04	15:49:29.2593901	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3640\r\nEmployeeTrainingId: 0\r\nFromDate: October 21, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: GOOGLE\r\nStatus: \r\nToDate: October 21, 2022\r\nTrainingId: 15317\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761653	2024-07-04	15:49:29.2633901	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3640\r\nEmployeeTrainingId: 0\r\nFromDate: July 14, 2014\r\nHours: 80\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: AIMEDA FOUNDATION \r\nStatus: \r\nToDate: August 14, 2014\r\nTrainingId: 15318\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761654	2024-07-04	15:49:29.2683900	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3640\r\nEmployeeTrainingId: 0\r\nFromDate: April 09, 2013\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: GLOBE BATANGAS CITY \r\nStatus: \r\nToDate: April 09, 2013\r\nTrainingId: 15319\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761655	2024-07-04	15:49:29.2723906	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3640\r\nEmployeeTrainingId: 0\r\nFromDate: August 23, 2011\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: BATANGAS STATE UNIVERSITY \r\nStatus: \r\nToDate: August 23, 2011\r\nTrainingId: 15320\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761656	2024-07-04	15:49:29.2773904	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3640\r\nEmployeeTrainingId: 0\r\nFromDate: August 16, 2011\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: BATANGAS STATE UNIVERSITY \r\nStatus: \r\nToDate: August 16, 2011\r\nTrainingId: 15321\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761657	2024-07-04	15:49:29.2813908	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3640\r\nEmployeeTrainingId: 0\r\nFromDate: October 01, 2009\r\nHours: 1000\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: BATANGAS STATE UNIVERSITY \r\nStatus: \r\nToDate: October 31, 2010\r\nTrainingId: 15322\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761658	2024-07-04	15:49:29.2863905	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 2005\r\nAddress2: \r\nBarangay: CALICANTO\r\nBasicInformationId: 3640\r\nBirthDate: April 28, 1992\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATTANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RALPHKEVIN.MACALALAD@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RALPH KEVIN\r\nFullName: RALPH KEVIN G. MACALALAD\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.68\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MACALALAD\r\nMaidenName: \r\nMiddleName: GARCIA\r\nMobileNumber: 09369437941\r\nNationality: Filipino\r\nPermanentAddress1: 2005\r\nPermanentAddress2: \r\nPermanentBarangay: CALICANTO\r\nPermanentCity: BATTANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 6\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: PUROK 6\r\nTIN: \r\nWeight: 99\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 2005\r\nAddress2: \r\nBarangay: CALICANTO\r\nBasicInformationId: 3640\r\nBirthDate: April 28, 1992\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATTANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RALPHKEVIN.MACALALAD@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RALPH KEVIN\r\nFullName: RALPH KEVIN G. MACALALAD\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.68\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MACALALAD\r\nMaidenName: \r\nMiddleName: GARCIA\r\nMobileNumber: 09369437941\r\nNationality: Filipino\r\nPermanentAddress1: 2005\r\nPermanentAddress2: \r\nPermanentBarangay: CALICANTO\r\nPermanentCity: BATTANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 6\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 6\r\nTIN: \r\nWeight: 99\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761659	2024-07-04	15:49:29.2903901	<Undetected>	Update	BasicInformationId: 3640\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3398\r\nExtensionName: \r\nFirstName: BAILON\r\nFullName: BAILON VILLAMOR MACALALAD\r\nGender: Male\r\nLastName: MACALALAD\r\nMaidenName: \r\nMiddleName: VILLAMOR\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3640\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3398\r\nExtensionName: \r\nFirstName: BAILON\r\nFullName: BAILON MACALALAD\r\nGender: Male\r\nLastName: MACALALAD\r\nMaidenName: \r\nMiddleName: VILLAMOR\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
761660	2024-07-04	15:49:29.2953923	<Undetected>	Update	BasicInformationId: 3640\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3399\r\nExtensionName: \r\nFirstName: BAILON\r\nFullName: BAILON VILLAMOR MACALALAD\r\nGender: Male\r\nLastName: MACALALAD\r\nMaidenName: \r\nMiddleName: VILLAMOR\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3640\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3399\r\nExtensionName: \r\nFirstName: BAILON\r\nFullName: BAILON MACALALAD\r\nGender: Male\r\nLastName: MACALALAD\r\nMaidenName: \r\nMiddleName: VILLAMOR\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
761661	2024-07-04	15:49:29.2993921	<Undetected>	Update	BasicInformationId: 3640\r\nBirthDate: January 01, 0001\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3400\r\nExtensionName: \r\nFirstName: RODELIA\r\nFullName: RODELIA AMUL GARCIA\r\nGender: Female\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: AMUL\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3640\r\nBirthDate: January 01, 0001\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3400\r\nExtensionName: \r\nFirstName: RODELIA\r\nFullName: RODELIA GARCIA\r\nGender: Female\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: AMUL\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761662	2024-07-04	15:49:29.3043935	<Undetected>	Update	BasicInformationId: 3640\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 0437417182\r\nEmployeeRelativeId: 3401\r\nExtensionName: \r\nFirstName: LORRAINE\r\nFullName: LORRAINE AGUDA\r\nGender: Female\r\nLastName: MACALALAD\r\nMaidenName: \r\nMiddleName: AGUDA\r\nOccupation: SCHOOL NURSE \r\nRelationship: Wife\r\n	BasicInformationId: 3640\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 0437417182\r\nEmployeeRelativeId: 3401\r\nExtensionName: \r\nFirstName: LORRAINE\r\nFullName: LORRAINE MACALALAD\r\nGender: Female\r\nLastName: MACALALAD\r\nMaidenName: \r\nMiddleName: AGUDA\r\nOccupation: SCHOOL NURSE \r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
761663	2024-07-04	15:49:29.3094333	<Undetected>	Update	BasicInformationId: 3640\r\nBirthDate: January 13, 2022\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3402\r\nExtensionName: \r\nFirstName: LEBRON JEREMIAS\r\nFullName: LEBRON JEREMIAS A MACALALAD\r\nGender: Male\r\nLastName: MACALALAD\r\nMaidenName: \r\nMiddleName: A\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3640\r\nBirthDate: January 13, 2022\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3402\r\nExtensionName: \r\nFirstName: LEBRON JEREMIAS\r\nFullName: LEBRON JEREMIAS MACALALAD\r\nGender: Male\r\nLastName: MACALALAD\r\nMaidenName: \r\nMiddleName: A\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761664	2024-07-04	15:49:29.3134408	<Undetected>	Update	BasicInformationId: 3640\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3437\r\n	BasicInformationId: 3640\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3437\r\n	admin	Questionnaires	1
761737	2024-07-04	15:57:09.9319968	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3640\r\nSkillId: 0\r\nSkillName: SPORTS ACTIVITIES \r\n	admin	Skills	1
761738	2024-07-04	15:57:09.9395094	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3640\r\nSkillId: 0\r\nSkillName: ELECTRICAL SUPPORT\r\n	admin	Skills	1
761739	2024-07-04	15:57:09.9435080	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3640\r\nSkillId: 0\r\nSkillName: DRIVING\r\n	admin	Skills	1
761740	2024-07-04	15:57:09.9475082	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3640\r\nRecognitionId: 0\r\nRecognitionName: SOFTBALL/ BASKETBALL/ COACHING\r\n	admin	Recognitions	1
761741	2024-07-04	15:57:09.9525081	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3640\r\nRecognitionId: 0\r\nRecognitionName: ICT TECHNICAL OFFICER\r\n	admin	Recognitions	1
761742	2024-07-04	15:57:09.9575079	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3640\r\nCharacterReferenceId: 0\r\nCompanyAddress: CALICANTO BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 9800371\r\nExtensionName: \r\nFirstName: MARITES \r\nLastName: HARELL\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761743	2024-07-04	15:57:09.9615501	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3640\r\nCharacterReferenceId: 0\r\nCompanyAddress: STA CLARA PIER BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09178770109\r\nExtensionName: \r\nFirstName: MA .JEAN\r\nLastName: BIDON\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761744	2024-07-04	15:57:09.9665485	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3640\r\nCharacterReferenceId: 0\r\nCompanyAddress: ROXAS BLVD MALATE MANILA \r\nCompanyName: \r\nContactNumber: 09063749536\r\nExtensionName: \r\nFirstName: ARNEL \r\nLastName: QUIBAEL\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761764	2024-07-04	16:20:57.0339375	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DEPED TAYO AND SOCIAL MEDIA FOR GOVERNANCE WORKSHOP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761771	2024-07-04	16:21:21.3864148	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3644\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: WENONA\r\nFullName: WENONA CAPUNO\r\nGender: Female\r\nLastName: BARAIRO\r\nMaidenName: \r\nMiddleName: CAPUNO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761780	2024-07-04	16:22:52.5058342	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING FOR REGIONAL AND DIVISION INFORMATION TECHNOLOGY OFFICERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761667	2024-07-04	15:51:56.2105702	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3641\r\nCompanyInstitution: METROPOLITAN BANK AND TRUST COMPANY\r\nExperienceId: 0\r\nFromDate: January 16, 2010\r\nIsGovernmentService: False\r\nMonthlySalary: 13,000.00\r\nPositionHeld: TELLER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: October 05, 2012\r\n	admin	Experiences	1
761668	2024-07-04	15:51:56.2195707	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 0973\r\nAddress2: \r\nBarangay: BOLBOK\r\nBasicInformationId: 3641\r\nBirthDate: August 28, 1988\r\nBirthPlace: BATANGAS CUTY,BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: TONIMARGARET.DEJESUS@YAHOO.COM\r\nExtensionName: \r\nFirstName: TONI MARGARET\r\nFullName: TONI MARGARET M. DE JESUS\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DE JESUS\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nMobileNumber: 09272000638\r\nNationality: Filipino\r\nPermanentAddress1: 0973\r\nPermanentAddress2: \r\nPermanentBarangay: BOLBOK\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 58\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 0973\r\nAddress2: \r\nBarangay: BOLBOK\r\nBasicInformationId: 3641\r\nBirthDate: August 28, 1988\r\nBirthPlace: BATANGAS CUTY,BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: TONIMARGARET.DEJESUS@YAHOO.COM\r\nExtensionName: \r\nFirstName: TONI MARGARET\r\nFullName: TONI MARGARET M. DE JESUS\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DE JESUS\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nMobileNumber: 09272000638\r\nNationality: Filipino\r\nPermanentAddress1: 0973\r\nPermanentAddress2: \r\nPermanentBarangay: BOLBOK\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 58\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761669	2024-07-04	15:51:56.2225703	<Undetected>	Update	BasicInformationId: 3641\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3403\r\nExtensionName: \r\nFirstName: TONY\r\nFullName: TONY REDUBLO DE JESUS\r\nGender: Male\r\nLastName: DE JESUS\r\nMaidenName: \r\nMiddleName: REDUBLO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3641\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3403\r\nExtensionName: \r\nFirstName: TONY\r\nFullName: TONY DE JESUS\r\nGender: Male\r\nLastName: DE JESUS\r\nMaidenName: \r\nMiddleName: REDUBLO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
761670	2024-07-04	15:51:56.2275714	<Undetected>	Update	BasicInformationId: 3641\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3404\r\nExtensionName: \r\nFirstName: DAISY\r\nFullName: DAISY AGUADO MACATANGAY\r\nGender: Female\r\nLastName: DE JESUS\r\nMaidenName: AGUADO\r\nMiddleName: MACATANGAY\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3641\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3404\r\nExtensionName: \r\nFirstName: DAISY\r\nFullName: DAISY DE JESUS\r\nGender: Female\r\nLastName: DE JESUS\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761671	2024-07-04	15:51:56.2315702	<Undetected>	Update	BasicInformationId: 3641\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3438\r\n	BasicInformationId: 3641\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3438\r\n	admin	Questionnaires	1
761736	2024-07-04	15:54:46.9705474	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING FOR SCHOOL HEADS AND FINANCIAL STAFF ON THE PROPER UTILIZATION OF MOOE FUNDS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761749	2024-07-04	16:04:09.5449257	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING ON CAREER DEVELOPMENT & SUCCESSION MANAGE CUM FINACIAL LIT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761758	2024-07-04	16:14:01.3550501	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PICPA 2020 GOVERNMENT SUMMIT & GENERAL MEMBERSHIP BUILDING -FOSTERING EFFECTIVE AND EFFICIENT UTILIZATION OF GOVERNMENT FUNDS: REINFORCING THE LAW ,REGULATIONS AMIDST CHALLEGING TIMES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761779	2024-07-04	16:22:16.4558954	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRANSERVE UDEMY GOVERNMENT E -LEARNING PLATFORM FOR NON -TEACHING PERSONNL OF SCHOOL DIVISION OFFICES AND REGIONAL OFFICE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761783	2024-07-04	16:27:46.9385924	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3641\r\nEmployeeTrainingId: 0\r\nFromDate: July 30, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 31, 2019\r\nTrainingId: 15324\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761784	2024-07-04	16:27:46.9425926	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3641\r\nEmployeeTrainingId: 0\r\nFromDate: December 12, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: December 13, 2019\r\nTrainingId: 15060\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761785	2024-07-04	16:27:46.9455924	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3641\r\nEmployeeTrainingId: 0\r\nFromDate: February 13, 2020\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: February 14, 2020\r\nTrainingId: 15293\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761682	2024-07-04	15:52:21.0266909	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3642\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15045\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761683	2024-07-04	15:52:21.0306776	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3642\r\nDateOfExamination: August 08, 1999\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 08, 1999\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0592653\r\nPlaceOfExamination: UE RECTOR\r\nRating: 75.0\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
761684	2024-07-04	15:52:21.0356610	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3642\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 16, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 52,847.00\r\nPositionHeld: INFORMATION TECHNOLOGY OFFICER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-3\r\nStatus: Permanent\r\nToDate: July 04, 2024\r\n	admin	Experiences	1
761685	2024-07-04	15:52:21.0396476	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3642\r\nCompanyInstitution: SAN ANTONIO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 22,564.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: June 15, 2016\r\n	admin	Experiences	1
761686	2024-07-04	15:52:21.0436345	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3642\r\nCompanyInstitution: SAN ANTONIO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: August 22, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 21,650.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER IIII\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
761687	2024-07-04	15:52:21.0486176	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3642\r\nCompanyInstitution: SAN ANTONIO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 21,436.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: August 21, 2014\r\n	admin	Experiences	1
761688	2024-07-04	15:52:21.0526043	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3642\r\nCompanyInstitution: SAN ANTONIO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: August 22, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 19,658.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
761689	2024-07-04	15:52:21.0565909	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3642\r\nCompanyInstitution: SAN ANTONIO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 17,540.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: August 21, 2011\r\n	admin	Experiences	1
761690	2024-07-04	15:52:21.0605776	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3642\r\nCompanyInstitution: SAN ANTONIO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 16,157.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
761691	2024-07-04	15:52:21.0655610	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3642\r\nCompanyInstitution: SAN ANTONIO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 14,198.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
761692	2024-07-04	15:52:21.0695477	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3642\r\nCompanyInstitution: SAN ANTONIO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,026.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
761781	2024-07-04	16:25:18.1780362	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION OF IPCRF-RPMS DATA COLLECTION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761693	2024-07-04	15:52:21.0745311	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3642\r\nCompanyInstitution: SAN ANTONIO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,933.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
761694	2024-07-04	15:52:21.0785177	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3642\r\nCompanyInstitution: SAN ANTONIO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: February 01, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
761695	2024-07-04	15:52:21.0815077	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3642\r\nCompanyInstitution: SAN ANTONIO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: July 02, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: January 31, 2006\r\n	admin	Experiences	1
761696	2024-07-04	15:52:21.0864910	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3642\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
761747	2024-07-04	15:58:41.0070286	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RESULT-BASED PERFORMANCE MANAGEMENT SYSTEM, INDIVIDUAL PERFORMANCE COMMITMENT AND REVIEW FORMS (IPCRF) AND OFFICE PERFORMANCE COMMITMENT REVIEW FORM (OPCRF) RECALIBRATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761748	2024-07-04	16:03:43.7597866	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ASSESMENT AND CAPACITY BUILDING OF REGIONAL AND DIVISION INFORMATION TECHNOLOGY OFFICERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761750	2024-07-04	16:05:34.7038639	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: COMPUTER SCIENCE 101: MASTER THE THEORY BEHIND PROGRAMMING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761751	2024-07-04	16:06:47.3204828	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: JAVA PROGRAMMING FOR COMPLETE BEGINNERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761752	2024-07-04	16:08:08.4728666	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CYBER SECURITY OPERATIONS AND TECHNOLOGY SOLUTIONS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761753	2024-07-04	16:09:36.1942337	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: THE BEGINNERS 2022 CYBER SECURITY AWARENESS TRAINING COURSE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761754	2024-07-04	16:11:01.2567749	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RISK MANAGEMENT FOR CYBERSECURITY AND IT MANAGERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761756	2024-07-04	16:12:26.6570197	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: THE ABSOLUTE BEGINNERS GUIDE TO CYBER SECURITY 2022- PART 1\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761759	2024-07-04	16:14:02.7203980	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: THE COMPLETE CYBER SECURIT COURSE: NETWORK AND SECURITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761760	2024-07-04	16:14:23.2649417	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PLETE CYBER SECURITY COURSE: NETWORK AND SECURITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761761	2024-07-04	16:15:49.4173668	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: THE COMPLETE CYBER SECURITY COURSE: NETWORK SECURITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761762	2024-07-04	16:17:46.6256059	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: THE COMPLETE CYBER SECURITY COURSE: HACKERS EXPOSED\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761763	2024-07-04	16:19:22.2574522	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION PROGRAM ON STRENGTHENING DEPED CORE VALUES IN DAILY LIFE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761841	2024-07-05	08:58:32.7132688	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3641\r\nSkillId: 0\r\nSkillName: ARTS\r\n	admin	Skills	1
761705	2024-07-04	15:53:10.7609427	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3643\r\nEmployeeTrainingId: 0\r\nFromDate: September 19, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- REGIONAL OFFICE\r\nStatus: \r\nToDate: September 20, 2023\r\nTrainingId: 15233\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761706	2024-07-04	15:53:10.7649286	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3643\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15113\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761707	2024-07-04	15:53:10.7689151	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3643\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761708	2024-07-04	15:53:10.7738987	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3643\r\nEmployeeTrainingId: 0\r\nFromDate: July 27, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 27, 2022\r\nTrainingId: 15306\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761709	2024-07-04	15:53:10.7778853	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3643\r\nEmployeeTrainingId: 0\r\nFromDate: June 30, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: June 30, 2022\r\nTrainingId: 15219\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761710	2024-07-04	15:53:10.7818718	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3643\r\nEmployeeTrainingId: 0\r\nFromDate: December 15, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: December 15, 2020\r\nTrainingId: 15284\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761711	2024-07-04	15:53:10.7858584	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3643\r\nEmployeeTrainingId: 0\r\nFromDate: May 18, 2020\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: May 18, 2020\r\nTrainingId: 15117\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761712	2024-07-04	15:53:10.7908419	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3643\r\nEmployeeTrainingId: 0\r\nFromDate: September 02, 2019\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 02, 2019\r\nTrainingId: 15309\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761713	2024-07-04	15:53:10.7948285	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3643\r\nEmployeeTrainingId: 0\r\nFromDate: August 30, 2019\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 30, 2019\r\nTrainingId: 15312\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761714	2024-07-04	15:53:10.7988151	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3643\r\nEmployeeTrainingId: 0\r\nFromDate: August 06, 2019\r\nHours: 64\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DIVISION TRAINING WORKSHOP ON UPDATING LEARNERS AND SCHOOLS' PROFILE IN THE LEARNER INFORMATION SYSTEM AND ENHANCED BASIC EDUCATION\r\nStatus: \r\nToDate: August 23, 2019\r\nTrainingId: 15314\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761715	2024-07-04	15:53:10.8037986	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3643\r\nEmployeeTrainingId: 0\r\nFromDate: August 08, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 09, 2019\r\nTrainingId: 15316\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761716	2024-07-04	15:53:10.8077852	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3643\r\nCharacterReferenceId: 0\r\nCompanyAddress: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09778307399\r\nExtensionName: \r\nFirstName: LEAH\r\nLastName: CELEMIN\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761717	2024-07-04	15:53:10.8117718	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3643\r\nCharacterReferenceId: 0\r\nCompanyAddress: LANDBANK OF THE PHILIPPINES\r\nCompanyName: \r\nContactNumber: 09508778844\r\nExtensionName: \r\nFirstName: RENA JANNINE \r\nLastName: DE LOS REYES\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761718	2024-07-04	15:53:10.8167553	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3643\r\nCharacterReferenceId: 0\r\nCompanyAddress: ACCENTURE\r\nCompanyName: \r\nContactNumber: 09159377383\r\nExtensionName: \r\nFirstName: MA. VANESSA\r\nLastName: SORIANO\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761842	2024-07-05	08:58:32.7212690	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3641\r\nSkillId: 0\r\nSkillName: PHOTOGRAPHY\r\n	admin	Skills	1
761719	2024-07-04	15:53:10.8207420	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3643\r\nDateOfExamination: August 06, 2017\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 06, 2017\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 80.7\r\nTitle: CAREER SERVICE PROFESSIONAL\r\n	admin	Eligibilities	1
761720	2024-07-04	15:53:10.8247285	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3643\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 21,211.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANTT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-2\r\nStatus: Permanent\r\nToDate: July 04, 2024\r\n	admin	Experiences	1
761721	2024-07-04	15:53:10.8287151	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3643\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 21,211.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-2\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
761722	2024-07-04	15:53:10.8336984	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3643\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: March 25, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 20,572.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-2\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
761723	2024-07-04	15:53:10.8376851	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3643\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 20,402.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-1\r\nStatus: Permanent\r\nToDate: March 24, 2022\r\n	admin	Experiences	1
761724	2024-07-04	15:53:10.8416718	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3643\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 19,593.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
761725	2024-07-04	15:53:10.8466552	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3643\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 18,784.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
761726	2024-07-04	15:53:10.8506418	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3643\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: March 25, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 17,975.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-1\r\nStatus: Permanent\r\nToDate: December 21, 2019\r\n	admin	Experiences	1
761727	2024-07-04	15:53:10.8556253	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3643\r\nCompanyInstitution: ACCENTURE\r\nExperienceId: 0\r\nFromDate: August 25, 2017\r\nIsGovernmentService: False\r\nMonthlySalary: 17,116.00\r\nPositionHeld: TRANSACTION PROCESSING NEW ASSOCIATE\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: March 14, 2019\r\n	admin	Experiences	1
761728	2024-07-04	15:53:10.8596119	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3643\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
761729	2024-07-04	15:53:10.8645957	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3643\r\nSkillId: 0\r\nSkillName: KNOWLEDGE IN SYSTEM, APPLICATIONS & PRODUCTS (SAP) SOFTWARE\r\n	admin	Skills	1
761730	2024-07-04	15:53:10.8685818	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3643\r\nRecognitionId: 0\r\nRecognitionName: DOCUMENTER- 1ST GAWAD KAWANI 2023\r\n	admin	Recognitions	1
761731	2024-07-04	15:53:10.8725685	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3643\r\nRecognitionId: 0\r\nRecognitionName: VALIDATOR- GAWAD ALA EH 2022\r\n	admin	Recognitions	1
761732	2024-07-04	15:53:10.8775518	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3643\r\nRecognitionId: 0\r\nRecognitionName: POSITIVE PARTICIPATOR AWARD- SGOD DEPED BATANGAS CITY\r\n	admin	Recognitions	1
761733	2024-07-04	15:53:10.8815385	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3643\r\nRecognitionId: 0\r\nRecognitionName: TOP PERFORMER CAREER LEVEL 3- 1ST QUARTER F.Y. 2019\r\n	admin	Recognitions	1
761745	2024-07-04	15:57:09.9705485	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 2005\r\nAddress2: \r\nBarangay: CALICANTO\r\nBasicInformationId: 3640\r\nBirthDate: April 28, 1992\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATTANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RALPHKEVIN.MACALALAD@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RALPH KEVIN\r\nFullName: RALPH KEVIN G. MACALALAD\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.68\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MACALALAD\r\nMaidenName: \r\nMiddleName: GARCIA\r\nMobileNumber: 09369437941\r\nNationality: Filipino\r\nPermanentAddress1: 2005\r\nPermanentAddress2: \r\nPermanentBarangay: CALICANTO\r\nPermanentCity: BATTANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 6\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 6\r\nTIN: \r\nWeight: 99\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 2005\r\nAddress2: \r\nBarangay: CALICANTO\r\nBasicInformationId: 3640\r\nBirthDate: April 28, 1992\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATTANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RALPHKEVIN.MACALALAD@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RALPH KEVIN\r\nFullName: RALPH KEVIN G. MACALALAD\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006334350\r\nHDMF: 1210-6471-6662\r\nHeight: 1.68\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MACALALAD\r\nMaidenName: \r\nMiddleName: GARCIA\r\nMobileNumber: 09369437941\r\nNationality: Filipino\r\nPermanentAddress1: 2005\r\nPermanentAddress2: \r\nPermanentBarangay: CALICANTO\r\nPermanentCity: BATTANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 6\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050339866-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-2609282-5\r\nStreetName: PUROK 6\r\nTIN: 270-361-169-0000\r\nWeight: 99\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761746	2024-07-04	15:57:09.9755502	<Undetected>	Update	BasicInformationId: 3640\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3437\r\n	BasicInformationId: 3640\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3437\r\n	admin	Questionnaires	1
761757	2024-07-04	16:12:58.9129341	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BS COMMERCE \r\nLevel: College\r\n	admin	Courses	1
761765	2024-07-04	16:21:21.3680277	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: #73\r\nAddress2: \r\nBarangay: BALETE\r\nBasicInformationId: 0\r\nBirthDate: May 06, 1986\r\nBirthPlace: SAN NICOLAS, BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: SAN NICOLAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ALGENE.BARAIRO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ALGENE\r\nFullName: ALGENE C. BARAIRO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BARAIRO\r\nMaidenName: \r\nMiddleName: CAPUNO\r\nMobileNumber: 09567931169\r\nNationality: Filipino\r\nPermanentAddress1: #73\r\nPermanentAddress2: \r\nPermanentBarangay: BALETE\r\nPermanentCity: SAN NICOLAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4207\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 65\r\nZipCode: 4207\r\n	admin	BasicInformation	1
761766	2024-07-04	16:21:21.3854166	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: SALUTATORIAN \r\nBasicInformationId: 3644\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1992\r\nDateTo: 1999\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BALETE ELEMENTARY SCHOOL \r\nYearGraduated: 1999\r\n	admin	EducationalBackgrounds	1
761767	2024-07-04	16:21:21.3854166	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3644\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1999\r\nDateTo: 2003\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: OUR LADY OF CAYSASAY ACADEMY \r\nYearGraduated: 2003\r\n	admin	EducationalBackgrounds	1
761768	2024-07-04	16:21:21.3854166	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3644\r\nCourse: \r\nCourseId: 1287\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor:  FINANCIAL AND MANAGEMENT ACCOUNTING \r\nSchoolorUniversity: LYCEUM OF THE PHILIPPINES UNIVERSITY- BATANGAS\r\nYearGraduated: 2009\r\n	admin	EducationalBackgrounds	1
761769	2024-07-04	16:21:21.3864148	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3644\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09159073145\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARIA CZARINA\r\nFullName: MARIA CZARINA VILLAMAR\r\nGender: Female\r\nLastName: BARAIRO\r\nMaidenName: \r\nMiddleName: VILLAMAR\r\nOccupation: PUBLIC TEACHER \r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
761770	2024-07-04	16:21:21.3864148	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3644\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FELIXBERTO\r\nFullName: FELIXBERTO CACAO BARAIRO\r\nGender: Male\r\nLastName: BARAIRO\r\nMaidenName: \r\nMiddleName: CACAO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
761843	2024-07-05	08:58:32.7252687	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3641\r\nSkillId: 0\r\nSkillName: READING BOOKS\r\n	admin	Skills	1
761772	2024-07-04	16:21:21.3864148	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3644\r\nBirthDate: November 23, 2020\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALINA MAXINE\r\nFullName: ALINA MAXINE V BARAIRO\r\nGender: Male\r\nLastName: BARAIRO\r\nMaidenName: \r\nMiddleName: V\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761773	2024-07-04	16:21:21.3864148	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3644\r\nDateOfExamination: October 18, 2015\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 7\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: October 18, 2015\r\nLevelOfEligibility: First Level (Subprofessional)\r\nLicenseNumber: 661396\r\nPlaceOfExamination: BATANGAS STATE UNIVERSITY- ALANGILAN CAMPUS \r\nRating: 82.05 % \r\nTitle: SUB-PROFESSIONAL EXAM \r\n	admin	Eligibilities	1
761774	2024-07-04	16:21:21.3864148	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3644\r\nCompanyInstitution: SDO- BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: May 02, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 20,104.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 8-3\r\nStatus: Permanent\r\nToDate: July 04, 2024\r\n	admin	Experiences	1
761775	2024-07-04	16:21:21.3864148	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3644\r\nCompanyInstitution: SDO- BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 19,923.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 8-2\r\nStatus: Job Order\r\nToDate: May 01, 2023\r\n	admin	Experiences	1
761776	2024-07-04	16:21:21.3864148	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3644\r\nCompanyInstitution: SDO- BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 19,171.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II \r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 8-2\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
761777	2024-07-04	16:21:21.3864148	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3644\r\nCompanyInstitution: SDO- BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 18,417.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 8-2\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
761778	2024-07-04	16:21:21.3874142	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3644\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
761782	2024-07-04	16:27:34.6905013	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: STRENGTHENING EDUCATORS WITH COLLABORATION AND PRODUCTIVITY TOOLS (MICROSOFT 0365)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761786	2024-07-04	16:27:46.9505926	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3641\r\nEmployeeTrainingId: 0\r\nFromDate: July 13, 2020\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 15, 2020\r\nTrainingId: 15093\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761787	2024-07-04	16:27:46.9535924	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3641\r\nEmployeeTrainingId: 0\r\nFromDate: September 03, 2020\r\nHours: 23\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS -SIUTHERN TAGALOG REGION\r\nStatus: \r\nToDate: September 05, 2020\r\nTrainingId: 15334\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761788	2024-07-04	16:27:46.9585927	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3641\r\nEmployeeTrainingId: 0\r\nFromDate: August 17, 2021\r\nHours: 21\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 19, 2021\r\nTrainingId: 15054\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761789	2024-07-04	16:27:46.9615923	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3641\r\nEmployeeTrainingId: 0\r\nFromDate: October 08, 2021\r\nHours: 2900\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED REGION IV -A / DEPED SERVICE PROVIDER /NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES /ASEA METRICS HR SOLUTIONS. INC.\r\nStatus: \r\nToDate: October 04, 2022\r\nTrainingId: 15341\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761790	2024-07-05	08:10:25.0937640	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO PULO\r\nBarangay: TINGGA ITAAS\r\nBasicInformationId: 0\r\nBirthDate: June 03, 1982\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: kristina.rivera@deped.gov.ph\r\nExtensionName: \r\nFirstName: KRISTINA\r\nFullName: KRISTINA M. RIVERA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RIVERA\r\nMaidenName: \r\nMiddleName: MEMBROT\r\nMobileNumber: 09770017241\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO PULO\r\nPermanentBarangay: TINGGA ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 7\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 7\r\nTIN: \r\nWeight: 84\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761791	2024-07-05	08:10:25.3879653	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3645\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1988\r\nDateTo: 1995\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS SOUTH ELEMENTARY SCHOOL\r\nYearGraduated: 1995\r\n	admin	EducationalBackgrounds	1
761792	2024-07-05	08:10:25.3879653	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3645\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1995\r\nDateTo: 1999\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1999\r\n	admin	EducationalBackgrounds	1
761793	2024-07-05	08:10:25.3879653	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3645\r\nCourse: \r\nCourseId: 1286\r\nCourseOrMajor: \r\nDateFrom: 1999\r\nDateTo: 2003\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2003\r\n	admin	EducationalBackgrounds	1
761794	2024-07-05	08:10:25.3879653	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3645\r\nCourse: \r\nCourseId: 1256\r\nCourseOrMajor: \r\nDateFrom: 2022\r\nDateTo: 2024\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2024\r\n	admin	EducationalBackgrounds	1
761795	2024-07-05	08:10:25.3889614	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3645\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: WILSON\r\nFullName: WILSON DIMAANO RIVERA\r\nGender: Male\r\nLastName: RIVERA\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
761796	2024-07-05	08:10:25.3889614	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3645\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DANTE\r\nFullName: DANTE SARABIA MEMBROT\r\nGender: Male\r\nLastName: MEMBROT\r\nMaidenName: \r\nMiddleName: SARABIA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
761844	2024-07-05	08:58:32.7292687	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3641\r\nSkillId: 0\r\nSkillName: GAMING\r\n	admin	Skills	1
761845	2024-07-05	08:58:32.7332688	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3641\r\nSkillId: 0\r\nSkillName: MULTITASKING\r\n	admin	Skills	1
761797	2024-07-05	08:10:25.3889614	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3645\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: TERESITA\r\nFullName: TERESITA DE OCAMPO DELA CRUZ\r\nGender: Female\r\nLastName: DELA CRUZ\r\nMaidenName: \r\nMiddleName: DE OCAMPO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761798	2024-07-05	08:10:25.3889614	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3645\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CAITLIN\r\nFullName: CAITLIN M RIVERA\r\nGender: Female\r\nLastName: RIVERA\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761799	2024-07-05	08:10:25.3899576	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3645\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
761800	2024-07-05	08:31:58.0655892	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3645\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
761801	2024-07-05	08:31:58.0705725	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3645\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
761802	2024-07-05	08:31:58.0745592	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3645\r\nRecognitionId: 0\r\nRecognitionName: EMPLOYEE OF THE YEAR (PILIPINAS MAKRO, INC. BATANGAS BRANCH- DECEMBER 2004)\r\n	admin	Recognitions	1
761803	2024-07-05	08:31:58.0795424	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3645\r\nOrganizationId: 0\r\nOrganizationName: THE DEPARTMENT OF EDUCATION NATIONAL EMPLOYEES UNION\r\n	admin	Organizations	1
761804	2024-07-05	08:31:58.0835291	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3645\r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 0\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: PD 907\r\n	admin	Eligibilities	1
761805	2024-07-05	08:31:58.0875156	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3645\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 21,388.00\r\nPositionHeld:  ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-2\r\nStatus: Permanent\r\nToDate: July 05, 2024\r\n	admin	Experiences	1
761806	2024-07-05	08:31:58.0915022	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3645\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: October 24, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 20,572.00\r\nPositionHeld:  ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-2\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
761807	2024-07-05	08:31:58.0964859	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3645\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 20,402.00\r\nPositionHeld:  ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-1\r\nStatus: Permanent\r\nToDate: October 23, 2022\r\n	admin	Experiences	1
761808	2024-07-05	08:31:58.1004723	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3645\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 19,593.00\r\nPositionHeld:  ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
761809	2024-07-05	08:31:58.1044589	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3645\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 18,784.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
761810	2024-07-05	08:31:58.1094423	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3645\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: July 10, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 17,975.00\r\nPositionHeld:  ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
761846	2024-07-05	08:58:32.7382688	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3641\r\nRecognitionId: 0\r\nRecognitionName: CAPACITY BUILDING FOR SCHOOL HEADS AND FINANCIAL STAFF ON THE PROPER UTILIZATION MOOE FUNDS TWG- MEMBER\r\n	admin	Recognitions	1
763052	2024-07-08	11:14:20.5167745	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3658\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY PUBLIC SCHOOL HEADS ASSOCIATION (BCPSHA)\r\n	admin	Organizations	1
761811	2024-07-05	08:31:58.1134290	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3645\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 16,910.00\r\nPositionHeld:  ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 08-2\r\nStatus: Permanent\r\nToDate: July 09, 2019\r\n	admin	Experiences	1
761812	2024-07-05	08:31:58.1174157	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3645\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 16,433.00\r\nPositionHeld:  ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 08-2\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
761813	2024-07-05	08:31:58.1214025	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3645\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: July 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 15,969.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 08-2\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
761814	2024-07-05	08:31:58.1253889	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3645\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 15,818.00\r\nPositionHeld:  ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 08-1\r\nStatus: Permanent\r\nToDate: June 30, 2017\r\n	admin	Experiences	1
761815	2024-07-05	08:31:58.1303724	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3645\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 15,368.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 08-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
761816	2024-07-05	08:31:58.1343590	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3645\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: July 01, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 14,931.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 08-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
761817	2024-07-05	08:31:58.1383456	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3645\r\nCompanyInstitution: ARABIAN EXCHANGE CO. WLL, DOHA- QATAR\r\nExperienceId: 0\r\nFromDate: August 09, 2005\r\nIsGovernmentService: False\r\nMonthlySalary: 36,000.00\r\nPositionHeld: OFFICE ASSISTANT CUM TELLER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: January 03, 2011\r\n	admin	Experiences	1
761818	2024-07-05	08:31:58.1423322	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3645\r\nCompanyInstitution: PILIPINAS MAKRO, INC., BATANGAS BRANCH\r\nExperienceId: 0\r\nFromDate: June 29, 2003\r\nIsGovernmentService: False\r\nMonthlySalary: 6,200.00\r\nPositionHeld: SENIOR CUSTOMER RELATION ASSISTANT\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: June 23, 2005\r\n	admin	Experiences	1
761819	2024-07-05	08:31:58.1473159	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3645\r\nCharacterReferenceId: 0\r\nCompanyAddress: MALALIM, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09369249796\r\nExtensionName: \r\nFirstName: MADONNA \r\nLastName: EBORA\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761820	2024-07-05	08:31:58.1513024	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3645\r\nCharacterReferenceId: 0\r\nCompanyAddress: SORO SORO ILAYA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09178213626\r\nExtensionName: \r\nFirstName: MARIA JOSEFINA\r\nLastName: LAGMAN\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761821	2024-07-05	08:31:58.1552879	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3645\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN PASCUAL, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09292930064\r\nExtensionName: \r\nFirstName: ELVIE\r\nLastName: AGUADO\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761822	2024-07-05	08:31:58.1602714	<Undetected>	Update	BasicInformationId: 3645\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3413\r\nExtensionName: \r\nFirstName: WILSON\r\nFullName: WILSON DIMAANO RIVERA\r\nGender: Male\r\nLastName: RIVERA\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3645\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3413\r\nExtensionName: \r\nFirstName: WILSON\r\nFullName: WILSON RIVERA\r\nGender: Male\r\nLastName: RIVERA\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
761858	2024-07-05	08:59:15.0629105	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3642\r\nSkillId: 0\r\nSkillName: DRIVING\r\n	admin	Skills	1
761823	2024-07-05	08:31:58.1642579	<Undetected>	Update	BasicInformationId: 3645\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3414\r\nExtensionName: \r\nFirstName: DANTE\r\nFullName: DANTE SARABIA MEMBROT\r\nGender: Male\r\nLastName: MEMBROT\r\nMaidenName: \r\nMiddleName: SARABIA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3645\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3414\r\nExtensionName: \r\nFirstName: DANTE\r\nFullName: DANTE MEMBROT\r\nGender: Male\r\nLastName: MEMBROT\r\nMaidenName: \r\nMiddleName: SARABIA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
761824	2024-07-05	08:31:58.1682444	<Undetected>	Update	BasicInformationId: 3645\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3415\r\nExtensionName: \r\nFirstName: TERESITA\r\nFullName: TERESITA DE OCAMPO DELA CRUZ\r\nGender: Female\r\nLastName: DELA CRUZ\r\nMaidenName: \r\nMiddleName: DE OCAMPO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3645\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3415\r\nExtensionName: \r\nFirstName: TERESITA\r\nFullName: TERESITA DELA CRUZ\r\nGender: Female\r\nLastName: DELA CRUZ\r\nMaidenName: \r\nMiddleName: DE OCAMPO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761825	2024-07-05	08:31:58.1722310	<Undetected>	Update	BasicInformationId: 3645\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3416\r\nExtensionName: \r\nFirstName: CAITLIN\r\nFullName: CAITLIN M RIVERA\r\nGender: Female\r\nLastName: RIVERA\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3645\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3416\r\nExtensionName: \r\nFirstName: CAITLIN\r\nFullName: CAITLIN RIVERA\r\nGender: Female\r\nLastName: RIVERA\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761826	2024-07-05	08:31:58.1772145	<Undetected>	Update	BasicInformationId: 3645\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3442\r\n	BasicInformationId: 3645\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3442\r\n	admin	Questionnaires	1
761827	2024-07-05	08:35:45.4818368	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RESULT-BASED PERFORMANCE MANAGEMENT SYSTEM, INDIVIDUAL PERFORMANCE COMMITMENT AND REVIEW FORMS (IPCRF) AND OFFICE PERFORMANCE COMMITMENT AND REVIEW FORM (OPCRF) RECALIBRATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761828	2024-07-05	08:37:17.8891022	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3641\r\nEmployeeTrainingId: 0\r\nFromDate: June 30, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: June 22, 2022\r\nTrainingId: 15050\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761829	2024-07-05	08:37:17.8948759	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3641\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 30, 2022\r\nTrainingId: 15047\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761830	2024-07-05	08:37:17.8988793	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3641\r\nEmployeeTrainingId: 0\r\nFromDate: May 15, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: May 17, 2023\r\nTrainingId: 15046\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761831	2024-07-05	08:37:17.9028726	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3641\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15079\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761832	2024-07-05	08:37:17.9068733	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3641\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2022\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761833	2024-07-05	08:40:19.0335944	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SOROSORO KARSADA\r\nBasicInformationId: 3642\r\nBirthDate: January 29, 1971\r\nBirthPlace: ISLA VERDE, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: damdy.ebora@deped.gov.ph\r\nExtensionName: \r\nFirstName: DANDY\r\nFullName: DANDY G. EBORA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nMobileNumber: 09912436989\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANTONIO, ISLA VERDE\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 71\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SOROSORO KARSADA\r\nBasicInformationId: 3642\r\nBirthDate: January 29, 1971\r\nBirthPlace: ISLA VERDE, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: damdy.ebora@deped.gov.ph\r\nExtensionName: \r\nFirstName: DANDY\r\nFullName: DANDY G. EBORA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nMobileNumber: 09912436989\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANTONIO, ISLA VERDE\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: Roman Catholic\r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 71\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761839	2024-07-05	08:58:32.7052689	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3641\r\nSkillId: 0\r\nSkillName: STORY WRITING\r\n	admin	Skills	1
761840	2024-07-05	08:58:32.7092688	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3641\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
761834	2024-07-05	08:40:19.0487784	<Undetected>	Update	BasicInformationId: 3642\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3405\r\nExtensionName: \r\nFirstName: DOMINGO\r\nFullName: DOMINGO CALAHATI EBORA\r\nGender: Male\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: CALAHATI\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3642\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3405\r\nExtensionName: \r\nFirstName: DOMINGO\r\nFullName: DOMINGO EBORA\r\nGender: Male\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: CALAHATI\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
761835	2024-07-05	08:40:19.0557598	<Undetected>	Update	BasicInformationId: 3642\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3406\r\nExtensionName: \r\nFirstName: LOLITA\r\nFullName: LOLITA PENTINIO GUTIERREZ\r\nGender: Female\r\nLastName: GUTIERREZ\r\nMaidenName: \r\nMiddleName: PENTINIO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3642\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3406\r\nExtensionName: \r\nFirstName: LOLITA\r\nFullName: LOLITA GUTIERREZ\r\nGender: Female\r\nLastName: GUTIERREZ\r\nMaidenName: \r\nMiddleName: PENTINIO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761836	2024-07-05	08:40:19.0677278	<Undetected>	Update	BasicInformationId: 3642\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3439\r\n	BasicInformationId: 3642\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3439\r\n	admin	Questionnaires	1
761837	2024-07-05	08:46:07.0596372	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 SEMINAR IN GOVERNMENTAL MANAGEMENT " FOSTERING TRANSPARENCY, ACCOUNTABILITY, AND RESILIENT ECONOMIES: A PATH TO GOOD GOVERNANCE AND ECONOMIC SUSTAINABILITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761838	2024-07-05	08:48:47.9283851	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 11TH ENTREPRENEURIAL FORM "UNLEASHING SUCCESS- LEARN, LAUNCH, LEAD!"\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761857	2024-07-05	08:58:37.4056274	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MASTER MICROSOFT WORD BEGINNER TO ADVANCED\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761883	2024-07-05	09:01:21.2051246	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INTRODUCTION TO FINANCIAL MODELING FOR BEGINNERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761889	2024-07-05	09:06:13.4053499	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SEMINAR-WORKSHOP ON THE IMPLEMENTATION OF WEB-BASED MONITORING SYSTEM OF SCHOOL MOOE FUNDS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761890	2024-07-05	09:10:56.1903261	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CONDUCT OF FY 2023 DIVISION BUDGET PREPARATION FORUM (FOR SCHOOL HEADS AND SDO PERSONNEL)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761891	2024-07-05	09:14:37.9895089	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON THE GUIDELINES OF E-LEARNING PLATFORM AND ITS REQUIRED COURSES FOR NON-TECAHING PERSONNEL OF SCHOOL DIVISION OFFICES AND REGIONAL OFFICE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761892	2024-07-05	09:16:52.3797515	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3645\r\nEmployeeTrainingId: 0\r\nFromDate: January 16, 2024\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A CALABARZON\r\nStatus: \r\nToDate: January 18, 2024\r\nTrainingId: 15118\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761893	2024-07-05	09:16:52.3837382	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3645\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761894	2024-07-05	09:16:52.3887217	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3645\r\nEmployeeTrainingId: 0\r\nFromDate: November 16, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A CALABARZON\r\nStatus: \r\nToDate: November 18, 2023\r\nTrainingId: 15124\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761895	2024-07-05	09:16:52.3927084	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3645\r\nEmployeeTrainingId: 0\r\nFromDate: November 11, 2023\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: GOLDEN GATE COLLEGES/ GRADUATE SCHOOL DEPARTMENT\r\nStatus: \r\nToDate: November 11, 2023\r\nTrainingId: 15346\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761896	2024-07-05	09:16:52.3966949	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3645\r\nEmployeeTrainingId: 0\r\nFromDate: October 25, 2021\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: GOLDEN GATE COLLEGES/ GRADUATE SCHOOL DEPARTMENT\r\nStatus: \r\nToDate: October 29, 2021\r\nTrainingId: 15347\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761969	2024-07-05	09:33:31.1567842	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3646\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
761847	2024-07-05	08:58:32.7422687	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3641\r\nRecognitionId: 0\r\nRecognitionName: DIVISION ROLL -OUT OF ORDER  NO. 029,s 2019 : RE PROCEDURAL GUIDELINES ON THE MANAGEMENT OF CASH ADVANCES FOR SCHOOL MOOE AND PROGRAM FUNDS OF NON - IUs PURSUANT TO COA, DBM ,DEPED JC NO. 2019- 1 TWG -MEMBER\r\n	admin	Recognitions	1
761848	2024-07-05	08:58:32.7462687	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3641\r\nRecognitionId: 0\r\nRecognitionName: 2020 DIVISION  GAWAD ALA EH - MEMBER OF 7S COMMITTEE\r\n	admin	Recognitions	1
761849	2024-07-05	08:58:32.7502687	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3641\r\nRecognitionId: 0\r\nRecognitionName: 2022 DIVISION GAWAD ALA EH CUM EDUCATION WEEKS CELEBRATION TWG - MEMBER -USHERETTES\r\n	admin	Recognitions	1
761850	2024-07-05	08:58:32.7542686	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3641\r\nRecognitionId: 0\r\nRecognitionName: SAFE SPACES ACT AND GENDER POLICIES TWG - DOCUMENTATION  COMMITTEE \r\n	admin	Recognitions	1
761851	2024-07-05	08:58:32.7582686	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3641\r\nRecognitionId: 0\r\nRecognitionName: FINANCIAL ADVANCEMENT SKILLS FOR SCHOOL ADMINISTRATORS AND FINANCE AND ADMINISTRATIVE PERSONNEL TWG - PROGRAM COMMITTEE\r\n	admin	Recognitions	1
761852	2024-07-05	08:58:32.7622686	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3641\r\nRecognitionId: 0\r\nRecognitionName: PHYSICAL WELLNESS ACTIVITIES FOR EMPLOYEES' WELFARE -TECHICAL/SUPPORT STAFF -MOBILE LEGENDS \r\n	admin	Recognitions	1
761853	2024-07-05	08:58:32.7662686	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3641\r\nRecognitionId: 0\r\nRecognitionName: DEPED 12 DAYS OF CHRISTMAS LOGISTICS OFFICER - CHAIR ( REGISTRATION & ATTENDANCE) \r\n	admin	Recognitions	1
761854	2024-07-05	08:58:32.7702687	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3641\r\nRecognitionId: 0\r\nRecognitionName: 1ST GAWAD KAWANI - MEMBER IN REWARDS & RECOGNITION ( R & R ) \r\n	admin	Recognitions	1
761855	2024-07-05	08:58:32.7742686	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3641\r\nRecognitionId: 0\r\nRecognitionName: MERITORIOUS PERFORMANCE AWARDS\r\n	admin	Recognitions	1
761856	2024-07-05	08:58:32.7782686	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3641\r\nOrganizationId: 0\r\nOrganizationName: DEPED - NATIONAL EMPLOYEES UNION \r\n	admin	Organizations	1
761884	2024-07-05	09:04:41.5401701	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3641\r\nCharacterReferenceId: 0\r\nCompanyAddress: SORO -SORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 722-0715\r\nExtensionName: \r\nFirstName: MARIA JOSEFINA\r\nLastName: LAGMAN\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761885	2024-07-05	09:04:41.5441701	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3641\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN PASCUAL, BATANGAS\r\nCompanyName: \r\nContactNumber: 09157450085\r\nExtensionName: \r\nFirstName: ROSAL\r\nLastName: DIMAALA\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761886	2024-07-05	09:04:41.5501700	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3641\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN LUIS, BATANGAS\r\nCompanyName: \r\nContactNumber: 723-1446 LOC. 208\r\nExtensionName: \r\nFirstName: CHRISTINE\r\nLastName: MAGSOMBOL\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761887	2024-07-05	09:04:41.5551698	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 0973\r\nAddress2: \r\nBarangay: BOLBOK\r\nBasicInformationId: 3641\r\nBirthDate: August 28, 1988\r\nBirthPlace: BATANGAS CUTY,BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: TONIMARGARET.DEJESUS@YAHOO.COM\r\nExtensionName: \r\nFirstName: TONI MARGARET\r\nFullName: TONI MARGARET M. DE JESUS\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DE JESUS\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nMobileNumber: 09272000638\r\nNationality: Filipino\r\nPermanentAddress1: 0973\r\nPermanentAddress2: \r\nPermanentBarangay: BOLBOK\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 58\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 0973\r\nAddress2: \r\nBarangay: BOLBOK\r\nBasicInformationId: 3641\r\nBirthDate: August 28, 1988\r\nBirthPlace: BATANGAS CUTY,BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: TONIMARGARET.DEJESUS@YAHOO.COM\r\nExtensionName: \r\nFirstName: TONI MARGARET\r\nFullName: TONI MARGARET M. DE JESUS\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005605258\r\nHDMF: 1210-2842-2580\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DE JESUS\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nMobileNumber: 09272000638\r\nNationality: Filipino\r\nPermanentAddress1: 0973\r\nPermanentAddress2: \r\nPermanentBarangay: BOLBOK\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 01-051020737-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-2185422-0\r\nStreetName: \r\nTIN: 288-103-320-0000\r\nWeight: 58\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761888	2024-07-05	09:04:41.5591700	<Undetected>	Update	BasicInformationId: 3641\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3438\r\n	BasicInformationId: 3641\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: I PERSONALLY FILED FOR RESIGNATION\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3438\r\n	admin	Questionnaires	1
761916	2024-07-05	09:25:02.1006051	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3644\r\nCompanyInstitution: SDO - BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: December 04, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 17,663.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 8-2\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
763053	2024-07-08	11:14:20.5217579	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3658\r\nOrganizationId: 0\r\nOrganizationName: PHILIPPINE ELEMENTARY SCHOOL PRINCIPALS ASSOCIATION (PESPA)\r\n	admin	Organizations	1
761861	2024-07-05	08:59:15.0758665	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3642\r\nEmployeeTrainingId: 0\r\nFromDate: March 29, 2023\r\nHours: 8\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: March 29, 2023\r\nTrainingId: 15345\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761862	2024-07-05	08:59:15.0808502	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3642\r\nEmployeeTrainingId: 0\r\nFromDate: February 21, 2023\r\nHours: 6\r\nNatureOfParticipation: PARTCIPANT\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: February 21, 2023\r\nTrainingId: 15153\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761863	2024-07-05	08:59:15.0848357	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3642\r\nEmployeeTrainingId: 0\r\nFromDate: January 30, 2023\r\nHours: 40\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: DEPARTMENT OF EDUCATION INFORMATION AND COMMUNICATION TECHNOLOGY SERVICE\r\nStatus: \r\nToDate: February 03, 2023\r\nTrainingId: 15326\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761864	2024-07-05	08:59:15.0898198	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3642\r\nEmployeeTrainingId: 0\r\nFromDate: October 04, 2022\r\nHours: 11\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: UDEMY \r\nStatus: \r\nToDate: October 04, 2022\r\nTrainingId: 15328\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761865	2024-07-05	08:59:15.0938066	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3642\r\nEmployeeTrainingId: 0\r\nFromDate: October 01, 2022\r\nHours: 31\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: UDEMY\r\nStatus: \r\nToDate: October 04, 2022\r\nTrainingId: 15329\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761866	2024-07-05	08:59:15.0987900	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3642\r\nEmployeeTrainingId: 0\r\nFromDate: August 01, 2022\r\nHours: 4\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: UDEMY \r\nStatus: \r\nToDate: August 01, 2022\r\nTrainingId: 15330\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761867	2024-07-05	08:59:15.1027764	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3642\r\nEmployeeTrainingId: 0\r\nFromDate: July 26, 2022\r\nHours: 4\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: UDEMY \r\nStatus: \r\nToDate: July 26, 2022\r\nTrainingId: 15331\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761868	2024-07-05	08:59:15.1067631	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3642\r\nEmployeeTrainingId: 0\r\nFromDate: July 26, 2022\r\nHours: 3\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: UDEMY \r\nStatus: \r\nToDate: July 26, 2022\r\nTrainingId: 15332\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761869	2024-07-05	08:59:15.1117465	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3642\r\nEmployeeTrainingId: 0\r\nFromDate: July 22, 2022\r\nHours: 4\r\nNatureOfParticipation: PARTICIPANT \r\nSponsoringAgency: UDEMY \r\nStatus: \r\nToDate: July 22, 2022\r\nTrainingId: 15333\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761870	2024-07-05	08:59:15.1157336	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3642\r\nEmployeeTrainingId: 0\r\nFromDate: July 20, 2022\r\nHours: 13\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: UDEMY \r\nStatus: \r\nToDate: July 20, 2022\r\nTrainingId: 15335\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761871	2024-07-05	08:59:15.1197198	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3642\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2022\r\nHours: 12\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: UDEMY \r\nStatus: \r\nToDate: July 15, 2022\r\nTrainingId: 15338\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761872	2024-07-05	08:59:15.1247031	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3642\r\nEmployeeTrainingId: 0\r\nFromDate: May 27, 2022\r\nHours: 8\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY \r\nStatus: \r\nToDate: May 27, 2022\r\nTrainingId: 15339\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761873	2024-07-05	08:59:15.1286900	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3642\r\nEmployeeTrainingId: 0\r\nFromDate: October 13, 2019\r\nHours: 32\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: October 16, 2019\r\nTrainingId: 15340\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761874	2024-07-05	08:59:15.1326762	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3642\r\nEmployeeTrainingId: 0\r\nFromDate: September 30, 2019\r\nHours: 40\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: INFORMATION AND COMMUNICATION TECHNOLOGY SERVICE TECHNOLOGY INFRASTRACTURE DIVISION\r\nStatus: \r\nToDate: October 04, 2019\r\nTrainingId: 15342\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761875	2024-07-05	08:59:15.1366631	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3642\r\nEmployeeTrainingId: 0\r\nFromDate: August 01, 2019\r\nHours: 16\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A\r\nStatus: \r\nToDate: August 02, 2019\r\nTrainingId: 15343\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761876	2024-07-05	08:59:15.1416467	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3642\r\nEmployeeTrainingId: 0\r\nFromDate: June 26, 2019\r\nHours: 24\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- INFORMATION AND COMMUNICATION TECHNOLOGY SERVICE\r\nStatus: \r\nToDate: June 28, 2019\r\nTrainingId: 15344\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761877	2024-07-05	08:59:15.1456330	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3642\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN JUAN, BATANGAS\r\nCompanyName: \r\nContactNumber: 09985142515\r\nExtensionName: \r\nFirstName: JOEPI\r\nLastName: FALQUEZA\r\nMiddleName: F\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761878	2024-07-05	08:59:15.1506165	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3642\r\nCharacterReferenceId: 0\r\nCompanyAddress: PADRE GARCIA, BATANGAS\r\nCompanyName: \r\nContactNumber: 09778341123\r\nExtensionName: \r\nFirstName: FELIZARDO\r\nLastName: BOLAÑOS\r\nMiddleName: O\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761879	2024-07-05	08:59:15.1546030	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3642\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175017184\r\nExtensionName: \r\nFirstName: MIKKO PAOLO\r\nLastName: PEREZ\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
761880	2024-07-05	08:59:15.1585896	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SOROSORO KARSADA\r\nBasicInformationId: 3642\r\nBirthDate: January 29, 1971\r\nBirthPlace: ISLA VERDE, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: damdy.ebora@deped.gov.ph\r\nExtensionName: \r\nFirstName: DANDY\r\nFullName: DANDY G. EBORA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nMobileNumber: 09912436989\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANTONIO, ISLA VERDE\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: Roman Catholic\r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 71\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SOROSORO KARSADA\r\nBasicInformationId: 3642\r\nBirthDate: January 29, 1971\r\nBirthPlace: ISLA VERDE, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: dandy.ebora@deped.gov.ph\r\nExtensionName: \r\nFirstName: DANDY\r\nFullName: DANDY G. EBORA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02002927539\r\nHDMF: 1490-0101-0718\r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nMobileNumber: 09912436989\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANTONIO, ISLA VERDE\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: 19-089068289-1\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 203-143-016-0000\r\nWeight: 71\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761881	2024-07-05	08:59:15.1625763	<Undetected>	Update	BasicInformationId: 3642\r\nEmployeeTrainingId: 7927\r\nFromDate: January 24, 2024\r\nHours: 14.00\r\nNatureOfParticipation: PARTICIPANT \r\nSponsoringAgency: BUREAU OF HUMAN RESOURCE ORGANIZATION DIVISION\r\nStatus: \r\nToDate: January 26, 2024\r\nTrainingId: 15323\r\nTrainingPerformanceRate: 0\r\n	BasicInformationId: 3642\r\nEmployeeTrainingId: 7927\r\nFromDate: January 24, 2024\r\nHours: 16\r\nNatureOfParticipation: PARTICIPANT \r\nSponsoringAgency: BUREAU OF HUMAN RESOURCE ORGANIZATION DIVISION\r\nStatus: \r\nToDate: January 26, 2024\r\nTrainingId: 15323\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761882	2024-07-05	08:59:15.1675596	<Undetected>	Update	BasicInformationId: 3642\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3439\r\n	BasicInformationId: 3642\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3439\r\n	admin	Questionnaires	1
761913	2024-07-05	09:20:51.6779506	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: OFFICE SYSTEM MANAGEMENT INTERNATIONAL SEMINAR\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761914	2024-07-05	09:22:27.0618285	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAREER DEVELOPMENT ONLINE SEMINAR\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761915	2024-07-05	09:24:34.9651880	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INTERNATIONAL SEMINAR ON LEADERSHIP AND OFFICE ADMINISTRATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761938	2024-07-05	09:26:26.2368979	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EMPLOYEES COMPENSATION PROGRAM WEBINAR\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761940	2024-07-05	09:28:02.2613019	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INTERNATIONAL LEADERSHIP TRAINING IN DIGITAL WORKPLACE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761942	2024-07-05	09:29:48.2209863	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SOCIAL MEDIA RECRUITMENT FOR HUMAN RESOURCE PROFESSIONALS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761943	2024-07-05	09:31:05.1206961	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: THE RISE OF AI-ENHANCED LEARNING DEVELOPMENT IN HR\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761897	2024-07-05	09:16:52.4016783	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3645\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15113\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761898	2024-07-05	09:16:52.4056650	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3645\r\nEmployeeTrainingId: 0\r\nFromDate: May 23, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION CENTRAL OFFICE\r\nStatus: \r\nToDate: May 25, 2023\r\nTrainingId: 15209\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761899	2024-07-05	09:16:52.4106477	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3645\r\nEmployeeTrainingId: 0\r\nFromDate: May 15, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY\r\nStatus: \r\nToDate: May 17, 2023\r\nTrainingId: 15046\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761900	2024-07-05	09:16:52.4146341	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3645\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761901	2024-07-05	09:16:52.4196178	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3645\r\nEmployeeTrainingId: 0\r\nFromDate: February 21, 2023\r\nHours: 18\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY\r\nStatus: \r\nToDate: February 23, 2023\r\nTrainingId: 15153\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761902	2024-07-05	09:16:52.4236042	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3645\r\nEmployeeTrainingId: 0\r\nFromDate: January 17, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY\r\nStatus: \r\nToDate: January 17, 2023\r\nTrainingId: 15048\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761903	2024-07-05	09:16:52.4275906	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3645\r\nEmployeeTrainingId: 0\r\nFromDate: November 09, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A CALABARZON\r\nStatus: \r\nToDate: November 11, 2022\r\nTrainingId: 15082\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761904	2024-07-05	09:16:52.4325742	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3645\r\nEmployeeTrainingId: 0\r\nFromDate: August 22, 2022\r\nHours: 7\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: UDEMY\r\nStatus: \r\nToDate: August 22, 2022\r\nTrainingId: 15348\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761905	2024-07-05	09:16:52.4375579	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3645\r\nEmployeeTrainingId: 0\r\nFromDate: June 30, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY\r\nStatus: \r\nToDate: June 30, 2022\r\nTrainingId: 15219\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761906	2024-07-05	09:16:52.4425410	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3645\r\nEmployeeTrainingId: 0\r\nFromDate: June 02, 2022\r\nHours: 7\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: UDEMY\r\nStatus: \r\nToDate: June 02, 2022\r\nTrainingId: 15349\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761907	2024-07-05	09:16:52.4465274	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3645\r\nEmployeeTrainingId: 0\r\nFromDate: April 18, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY\r\nStatus: \r\nToDate: April 18, 2022\r\nTrainingId: 15350\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761908	2024-07-05	09:16:52.4515107	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3645\r\nEmployeeTrainingId: 0\r\nFromDate: April 12, 2022\r\nHours: 6\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: UDEMY\r\nStatus: \r\nToDate: April 12, 2022\r\nTrainingId: 15192\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761909	2024-07-05	09:16:52.4554973	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3645\r\nEmployeeTrainingId: 0\r\nFromDate: March 09, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A CALABARZON\r\nStatus: \r\nToDate: March 11, 2022\r\nTrainingId: 15236\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761910	2024-07-05	09:16:52.4594840	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3645\r\nEmployeeTrainingId: 0\r\nFromDate: March 04, 2022\r\nHours: 12\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY\r\nStatus: \r\nToDate: March 07, 2022\r\nTrainingId: 15351\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761944	2024-07-05	09:31:54.9432539	<Undetected>	Insert	BasicInformationId: \r\nCommunityServiceId: \r\nDateFrom: \r\nDateTo: \r\nNumberOfHours: \r\nOrganizationAddress: \r\nOrganizationName: \r\nStatus: \r\n	BasicInformationId: 3644\r\nCommunityServiceId: 0\r\nDateFrom: April 01, 2005\r\nDateTo: March 31, 2006\r\nNumberOfHours: 0\r\nOrganizationAddress: UNITED  HEARTS CLUB \r\nOrganizationName: UNITED  HEARTS CLUB \r\nStatus: PRESIDENT \r\n	admin	CommunityServices	1
761911	2024-07-05	09:16:52.4644673	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3645\r\nEmployeeTrainingId: 0\r\nFromDate: February 02, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGIONAL IV-A CALABARZON\r\nStatus: \r\nToDate: February 02, 2022\r\nTrainingId: 15352\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761912	2024-07-05	09:16:52.4684540	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3645\r\nEmployeeTrainingId: 0\r\nFromDate: January 10, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A\r\nStatus: \r\nToDate: January 14, 2022\r\nTrainingId: 15052\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761939	2024-07-05	09:27:15.6683469	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SEMINAR-WORKSHOP ON THE RECONCILIATION OF PSI-POP AND PAYROLL DISBURSEMENT VERSUS THE FY 2022 NATIONAL EXPENDITURE PROGRAM (NEP)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761941	2024-07-05	09:29:35.4826870	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 36TH NATIONAL WEBINAR/WORKSHOP ON THE PREPARATION OF CY 2021 MID-YEAR FINANCIAL REPORTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761917	2024-07-05	09:25:02.1046052	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3644\r\nCompanyInstitution: SDO- BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 17,505.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 8-1\r\nStatus: Permanent\r\nToDate: December 03, 2020\r\n	admin	Experiences	1
761918	2024-07-05	09:25:02.1086052	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3644\r\nCompanyInstitution: SDO- BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 16,758.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 8-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
761919	2024-07-05	09:25:02.1126051	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3644\r\nCompanyInstitution: SDO- BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 16,282.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 8-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
761920	2024-07-05	09:25:02.1176052	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3644\r\nCompanyInstitution: SDO- BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: December 04, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 15,818.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 8-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
761921	2024-07-05	09:25:02.1206052	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3644\r\nCompanyInstitution: CONDE LABAC NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 15,818.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 8-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
761922	2024-07-05	09:25:02.1246050	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3644\r\nCompanyInstitution: CONDE LABAC NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: September 15, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 15,368.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 8-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
761923	2024-07-05	09:25:02.1296050	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3644\r\nCompanyInstitution: LYCEUM OF THE PHILIPPINES UNIVERSITY- BATANGAS HIGH SCHOOL DEPARTMENT \r\nExperienceId: 0\r\nFromDate: August 01, 2016\r\nIsGovernmentService: False\r\nMonthlySalary: 12,000.00\r\nPositionHeld: LPU HIGH SCHOOL LIAISON OFFICER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: August 15, 2016\r\n	admin	Experiences	1
761924	2024-07-05	09:25:02.1326050	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3644\r\nCompanyInstitution: LYCEUM OF THE PHILIPPINES UNIVERSITY- BATANGAS HIGH SCHOOL DEPARTMENT\r\nExperienceId: 0\r\nFromDate: July 01, 2016\r\nIsGovernmentService: False\r\nMonthlySalary: 12,000.00\r\nPositionHeld: INTERNAL AND EXTERNAL COORDINATOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: July 31, 2016\r\n	admin	Experiences	1
761925	2024-07-05	09:25:02.1376050	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3644\r\nCompanyInstitution: LYCEUM OF THE PHILIPPINES UNIVERSITY- BATANGAS HIGH SCHOOL DEPARTMENT\r\nExperienceId: 0\r\nFromDate: June 01, 2016\r\nIsGovernmentService: False\r\nMonthlySalary: 12,000.00\r\nPositionHeld: QUALITY ASSURANCE COORDINATOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: June 30, 2016\r\n	admin	Experiences	1
761926	2024-07-05	09:25:02.1416050	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3644\r\nCompanyInstitution: LYCEUM OF THE PHILIPPINES UNIVERSITY- BATANGAS HIGH SCHOOL DEPARTMENT\r\nExperienceId: 0\r\nFromDate: April 01, 2016\r\nIsGovernmentService: False\r\nMonthlySalary: 12,000.00\r\nPositionHeld: DEPED AND PEAC COORDINATOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: May 31, 2016\r\n	admin	Experiences	1
761927	2024-07-05	09:25:02.1446050	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3644\r\nCompanyInstitution: LYCEUM OF THE PHILIPPINES UNIVERSITY- BATANGAS HIGH SCHOOL DEPARTMENT\r\nExperienceId: 0\r\nFromDate: February 01, 2016\r\nIsGovernmentService: False\r\nMonthlySalary: 12,000.00\r\nPositionHeld: SENIOR HIGH AND JUNIOR HIGH SCHOOL COORDINATOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: March 31, 2016\r\n	admin	Experiences	1
762057	2024-07-05	10:14:49.1044314	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3644\r\nRecognitionId: 0\r\nRecognitionName: FACILITATOR- ORIENTATION ON THE UPLOADING AND  VALIDATION OF DATA IN BASIC EDUCATION INFORMATION SYSTEM ( BEIS) \r\n	admin	Recognitions	1
761928	2024-07-05	09:25:02.1496050	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3644\r\nCompanyInstitution: LYCEUM OF THE PHILIPPINES UNIVERSITY- BATANGAS HIGH SCHOOL DEPARTMENT\r\nExperienceId: 0\r\nFromDate: March 30, 2015\r\nIsGovernmentService: False\r\nMonthlySalary: 11,000.00\r\nPositionHeld: REGISTRAR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: January 31, 2016\r\n	admin	Experiences	1
761929	2024-07-05	09:25:02.1536049	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3644\r\nCompanyInstitution: LYCEUM OF THE PHILIPPINES UNIVERSITY- BATANGAS HIGH SCHOOL DEPARTMENT\r\nExperienceId: 0\r\nFromDate: March 30, 2015\r\nIsGovernmentService: False\r\nMonthlySalary: 10,000.00\r\nPositionHeld: SECRETARY \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: January 31, 2016\r\n	admin	Experiences	1
761930	2024-07-05	09:25:02.1576049	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3644\r\nCompanyInstitution: SDO- BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 30, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 12,000.00\r\nPositionHeld: ACCOUNTING CLERK \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: December 31, 2013\r\n	admin	Experiences	1
761931	2024-07-05	09:25:02.1616049	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: #73\r\nAddress2: \r\nBarangay: BALETE\r\nBasicInformationId: 3644\r\nBirthDate: May 06, 1986\r\nBirthPlace: SAN NICOLAS, BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: SAN NICOLAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ALGENE.BARAIRO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ALGENE\r\nFullName: ALGENE C. BARAIRO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BARAIRO\r\nMaidenName: \r\nMiddleName: CAPUNO\r\nMobileNumber: 09567931169\r\nNationality: Filipino\r\nPermanentAddress1: #73\r\nPermanentAddress2: \r\nPermanentBarangay: BALETE\r\nPermanentCity: SAN NICOLAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4207\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 65\r\nZipCode: 4207\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: #73\r\nAddress2: \r\nBarangay: BALETE\r\nBasicInformationId: 3644\r\nBirthDate: May 06, 1986\r\nBirthPlace: SAN NICOLAS, BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: SAN NICOLAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ALGENE.BARAIRO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ALGENE\r\nFullName: ALGENE C. BARAIRO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BARAIRO\r\nMaidenName: \r\nMiddleName: CAPUNO\r\nMobileNumber: 09567931169\r\nNationality: Filipino\r\nPermanentAddress1: #73\r\nPermanentAddress2: \r\nPermanentBarangay: BALETE\r\nPermanentCity: SAN NICOLAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4207\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 65\r\nZipCode: 4207\r\n	admin	BasicInformation	1
761932	2024-07-05	09:25:02.1656051	<Undetected>	Update	BasicInformationId: 3644\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09159073145\r\nEmployeeRelativeId: 3409\r\nExtensionName: \r\nFirstName: MARIA CZARINA\r\nFullName: MARIA CZARINA VILLAMAR\r\nGender: Female\r\nLastName: BARAIRO\r\nMaidenName: \r\nMiddleName: VILLAMAR\r\nOccupation: PUBLIC TEACHER \r\nRelationship: Wife\r\n	BasicInformationId: 3644\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09159073145\r\nEmployeeRelativeId: 3409\r\nExtensionName: \r\nFirstName: MARIA CZARINA\r\nFullName: MARIA CZARINA BARAIRO\r\nGender: Female\r\nLastName: BARAIRO\r\nMaidenName: \r\nMiddleName: VILLAMAR\r\nOccupation: PUBLIC TEACHER \r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
761933	2024-07-05	09:25:02.1696049	<Undetected>	Update	BasicInformationId: 3644\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3410\r\nExtensionName: \r\nFirstName: FELIXBERTO\r\nFullName: FELIXBERTO CACAO BARAIRO\r\nGender: Male\r\nLastName: BARAIRO\r\nMaidenName: \r\nMiddleName: CACAO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3644\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3410\r\nExtensionName: \r\nFirstName: FELIXBERTO\r\nFullName: FELIXBERTO BARAIRO\r\nGender: Male\r\nLastName: BARAIRO\r\nMaidenName: \r\nMiddleName: CACAO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
761934	2024-07-05	09:25:02.1736049	<Undetected>	Update	BasicInformationId: 3644\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3411\r\nExtensionName: \r\nFirstName: WENONA\r\nFullName: WENONA CAPUNO\r\nGender: Female\r\nLastName: BARAIRO\r\nMaidenName: \r\nMiddleName: CAPUNO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3644\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3411\r\nExtensionName: \r\nFirstName: WENONA\r\nFullName: WENONA BARAIRO\r\nGender: Female\r\nLastName: BARAIRO\r\nMaidenName: \r\nMiddleName: CAPUNO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761935	2024-07-05	09:25:02.1776050	<Undetected>	Update	BasicInformationId: 3644\r\nBirthDate: November 23, 2020\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3412\r\nExtensionName: \r\nFirstName: ALINA MAXINE\r\nFullName: ALINA MAXINE V BARAIRO\r\nGender: Male\r\nLastName: BARAIRO\r\nMaidenName: \r\nMiddleName: V\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3644\r\nBirthDate: November 23, 2020\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3412\r\nExtensionName: \r\nFirstName: ALINA MAXINE\r\nFullName: ALINA MAXINE BARAIRO\r\nGender: Male\r\nLastName: BARAIRO\r\nMaidenName: \r\nMiddleName: V\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
761936	2024-07-05	09:25:02.1816049	<Undetected>	Update	BasicInformationId: 3644\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3441\r\n	BasicInformationId: 3644\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3441\r\n	admin	Questionnaires	1
761937	2024-07-05	09:25:02.1856049	<Undetected>	Update	BasicInformationId: 3644\r\nCompanyInstitution: SDO- BATANGAS CITY \r\nExperienceId: 10294\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 19,923.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 8-2\r\nStatus: Job Order\r\nToDate: May 01, 2023\r\n	BasicInformationId: 3644\r\nCompanyInstitution: SDO- BATANGAS CITY \r\nExperienceId: 10294\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 19,923.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 8-2\r\nStatus: Permanent\r\nToDate: May 01, 2023\r\n	admin	Experiences	1
761945	2024-07-05	09:31:54.9522544	<Undetected>	Insert	BasicInformationId: \r\nCommunityServiceId: \r\nDateFrom: \r\nDateTo: \r\nNumberOfHours: \r\nOrganizationAddress: \r\nOrganizationName: \r\nStatus: \r\n	BasicInformationId: 3644\r\nCommunityServiceId: 0\r\nDateFrom: April 01, 2010\r\nDateTo: March 31, 2011\r\nNumberOfHours: 0\r\nOrganizationAddress: SILAHIS NG PAGKAKAISA \r\nOrganizationName: SILAHIS NG PAGKAKAISA \r\nStatus: ADVISER \r\n	admin	CommunityServices	1
761946	2024-07-05	09:31:54.9552540	<Undetected>	Insert	BasicInformationId: \r\nCommunityServiceId: \r\nDateFrom: \r\nDateTo: \r\nNumberOfHours: \r\nOrganizationAddress: \r\nOrganizationName: \r\nStatus: \r\n	BasicInformationId: 3644\r\nCommunityServiceId: 0\r\nDateFrom: January 01, 2005\r\nDateTo: December 31, 2005\r\nNumberOfHours: 0\r\nOrganizationAddress: BATANGAS VARSITARIAN \r\nOrganizationName: BATANGAS VARSITARIAN \r\nStatus: PRESIDENT \r\n	admin	CommunityServices	1
761947	2024-07-05	09:33:30.8983434	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 22 LOT 14 16\r\nAddress2: MERCEDES HOMES\r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 0\r\nBirthDate: April 01, 1995\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: christine.marasigan001@deped.gov.ph\r\nExtensionName: \r\nFirstName: CHRISTINE\r\nFullName: CHRISTINE M. ABAG\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ABAG\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nMobileNumber: 09171887095\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: GULOD LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761948	2024-07-05	09:33:31.0660876	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3646\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: GULOD ELEMENTARY SCHOOL\r\nYearGraduated: 2007\r\n	admin	EducationalBackgrounds	1
761949	2024-07-05	09:33:31.0710711	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: 3RD HONORABLE MENTION\r\nBasicInformationId: 3646\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2007\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: WESTMEAD INTERNATIONAL SCHOOL \r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
761950	2024-07-05	09:33:31.0750577	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: EBD SCHOLARSHIP\r\nBasicInformationId: 3646\r\nCourse: \r\nCourseId: 1280\r\nCourseOrMajor: \r\nDateFrom: 2011\r\nDateTo: 2015\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MAJOR IN HUMAN RESOURCE AND DEVELOPMENT MANAGEMENT \r\nSchoolorUniversity: ST. BRIDGET COLLEGE\r\nYearGraduated: 2015\r\n	admin	EducationalBackgrounds	1
761951	2024-07-05	09:33:31.0790443	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3646\r\nCourse: \r\nCourseId: 1256\r\nCourseOrMajor: \r\nDateFrom: 2017\r\nDateTo: 2018\r\nEducationalAttainment: 18 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
761952	2024-07-05	09:33:31.0840277	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3646\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GENE KARLO\r\nFullName: GENE KARLO DISTOR ABAG\r\nGender: Male\r\nLastName: ABAG\r\nMaidenName: \r\nMiddleName: DISTOR\r\nOccupation: NURSE II- GOVERNMENT EMPLOYEE\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
761953	2024-07-05	09:33:31.0880143	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3646\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CRISANTO\r\nFullName: CRISANTO AFRICA MARASIGAN\r\nGender: Male\r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: AFRICA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
761954	2024-07-05	09:33:31.0920011	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3646\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ZENAIDA\r\nFullName: ZENAIDA UNTALAN HERNANDEZ\r\nGender: Female\r\nLastName: HERNANDEZ\r\nMaidenName: \r\nMiddleName: UNTALAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
761955	2024-07-05	09:33:31.0959877	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3646\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OV BATANGAS CITY\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15047\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761956	2024-07-05	09:33:31.0999743	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3646\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2023\r\nHours: 80\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: CPDCFT TRAINING CENTER\r\nStatus: \r\nToDate: July 24, 2023\r\nTrainingId: 15353\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761957	2024-07-05	09:33:31.1049576	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3646\r\nEmployeeTrainingId: 0\r\nFromDate: August 01, 2023\r\nHours: 80\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: CPDCFT TRAINING CENTER\r\nStatus: \r\nToDate: August 10, 2023\r\nTrainingId: 15354\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761958	2024-07-05	09:33:31.1089443	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3646\r\nEmployeeTrainingId: 0\r\nFromDate: August 15, 2023\r\nHours: 80\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: CPDCFT TRAINING CENTER\r\nStatus: \r\nToDate: August 24, 2023\r\nTrainingId: 15355\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761959	2024-07-05	09:33:31.1139277	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3646\r\nEmployeeTrainingId: 0\r\nFromDate: September 13, 2023\r\nHours: 2\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: EMPLOYEES COMPENSATION COMMISSION\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15356\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761960	2024-07-05	09:33:31.1179143	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3646\r\nEmployeeTrainingId: 0\r\nFromDate: September 19, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: SOUTHEAST ASIAN INSTITUTE OF EDUCATIONAL TRAINING, INC.\r\nStatus: \r\nToDate: September 21, 2023\r\nTrainingId: 15358\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761961	2024-07-05	09:33:31.1228976	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3646\r\nEmployeeTrainingId: 0\r\nFromDate: September 23, 2023\r\nHours: 6\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: UDEMY \r\nStatus: \r\nToDate: September 23, 2023\r\nTrainingId: 15360\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761962	2024-07-05	09:33:31.1268842	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3646\r\nEmployeeTrainingId: 0\r\nFromDate: September 23, 2023\r\nHours: 2\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: HR CALABARZON GROUP \r\nStatus: \r\nToDate: September 23, 2023\r\nTrainingId: 15361\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761963	2024-07-05	09:33:31.1308709	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3646\r\nDateOfExamination: April 17, 2016\r\nDateOfRelease: October 21, 2016\r\nEligibilityDocumentTypeId: 7\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: April 17, 2016\r\nLevelOfEligibility: First Level (Subprofessional)\r\nLicenseNumber: 660220\r\nPlaceOfExamination: BATANGAS STATE UNIVERSITY- ALANGILAN CAMPUS\r\nRating: 84.13%\r\nTitle: CAREER SERVICE SUB PROFESSIONAL \r\n	admin	Eligibilities	1
761964	2024-07-05	09:33:31.1348577	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3646\r\nDateOfExamination: January 30, 2022\r\nDateOfRelease: May 04, 2022\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: January 30, 2022\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1907865\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 86.00%\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS- RA 1080\r\n	admin	Eligibilities	1
761965	2024-07-05	09:33:31.1388442	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3646\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 08, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: ADMINISTRATIVE OFFICER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: July 05, 2024\r\n	admin	Experiences	1
761966	2024-07-05	09:33:31.1438276	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3646\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: December 05, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 18,998.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 08-1\r\nStatus: Permanent\r\nToDate: January 07, 2024\r\n	admin	Experiences	1
761967	2024-07-05	09:33:31.1478142	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3646\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: December 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 17,007.00\r\nPositionHeld: ADMINISTRATIVE AIDE VI\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 06-2\r\nStatus: Permanent\r\nToDate: December 04, 2022\r\n	admin	Experiences	1
761968	2024-07-05	09:33:31.1527979	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3646\r\nCompanyInstitution: CIVIL SERVICE COMMISSION- BATANGAS FIELD OFFICE\r\nExperienceId: 0\r\nFromDate: April 06, 2015\r\nIsGovernmentService: False\r\nMonthlySalary: 10,582.00\r\nPositionHeld: JOB ORDER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: November 30, 2016\r\n	admin	Experiences	1
761970	2024-07-05	09:35:06.8824072	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CONDUCT OF ONLINE SUBMISSION OF BUDGET PROPOSAL (OSBP) VERSION 2.0 FOR FY 2022\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761972	2024-07-05	09:37:01.4595973	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WEBINAR ON MENTAL HEALTH AND PSYCHOSOCIAL SUPPORT IN THE NEW NORMAL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761987	2024-07-05	09:44:10.5028069	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3645\r\nEmployeeTrainingId: 0\r\nFromDate: November 15, 2021\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A CALABARZON\r\nStatus: \r\nToDate: November 19, 2021\r\nTrainingId: 15053\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761988	2024-07-05	09:44:10.5067933	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3645\r\nEmployeeTrainingId: 0\r\nFromDate: October 25, 2021\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A CALABARZON\r\nStatus: \r\nToDate: October 29, 2021\r\nTrainingId: 15357\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761989	2024-07-05	09:44:10.5117767	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3645\r\nEmployeeTrainingId: 0\r\nFromDate: July 28, 2021\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A CALABARZON\r\nStatus: \r\nToDate: July 31, 2021\r\nTrainingId: 15359\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761990	2024-07-05	09:44:10.5167602	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3645\r\nEmployeeTrainingId: 0\r\nFromDate: July 12, 2021\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A CALABARZON\r\nStatus: \r\nToDate: July 16, 2021\r\nTrainingId: 15055\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761991	2024-07-05	09:44:10.5207468	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3645\r\nEmployeeTrainingId: 0\r\nFromDate: May 31, 2021\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A CALABARZON\r\nStatus: \r\nToDate: June 04, 2021\r\nTrainingId: 15362\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761992	2024-07-05	09:44:10.5257302	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3645\r\nEmployeeTrainingId: 0\r\nFromDate: July 27, 2020\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY\r\nStatus: \r\nToDate: July 28, 2020\r\nTrainingId: 15364\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761993	2024-07-05	09:44:10.5297167	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO PULO\r\nBarangay: TINGGA ITAAS\r\nBasicInformationId: 3645\r\nBirthDate: June 03, 1982\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: kristina.rivera@deped.gov.ph\r\nExtensionName: \r\nFirstName: KRISTINA\r\nFullName: KRISTINA M. RIVERA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RIVERA\r\nMaidenName: \r\nMiddleName: MEMBROT\r\nMobileNumber: 09770017241\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO PULO\r\nPermanentBarangay: TINGGA ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 7\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 7\r\nTIN: \r\nWeight: 84\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO PULO\r\nBarangay: TINGGA ITAAS\r\nBasicInformationId: 3645\r\nBirthDate: June 03, 1982\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: kristina.rivera@deped.gov.ph\r\nExtensionName: \r\nFirstName: KRISTINA\r\nFullName: KRISTINA M. RIVERA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02004561135\r\nHDMF: 1211-2016-8871\r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RIVERA\r\nMaidenName: \r\nMiddleName: MEMBROT\r\nMobileNumber: 09770017241\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO PULO\r\nPermanentBarangay: TINGGA ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 7\r\nPermanentZipCode: 4200\r\nPhilhealth: 19-026772641-1\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 7\r\nTIN: 453-461-632-0000\r\nWeight: 84\r\nZipCode: 4200\r\n	admin	BasicInformation	1
761994	2024-07-05	09:44:10.5347001	<Undetected>	Update	BasicInformationId: 3645\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3442\r\n	BasicInformationId: 3645\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3442\r\n	admin	Questionnaires	1
762038	2024-07-05	10:12:56.7712053	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3646\r\nEmployeeTrainingId: 0\r\nFromDate: October 12, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY-  ICT LITERACY AND COMPETENCY DEVELOPMENT BUREAU\r\nStatus: \r\nToDate: October 12, 2023\r\nTrainingId: 15379\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762039	2024-07-05	10:12:56.7761885	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3646\r\nEmployeeTrainingId: 0\r\nFromDate: October 14, 2023\r\nHours: 2\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: PHILIPPINE ASSOCIATION FOR TEACHERS AND EDUCATORS (PAFTE) INC. \r\nStatus: \r\nToDate: October 14, 2023\r\nTrainingId: 15381\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766036	2024-07-11	16:10:24.8173837	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3695\r\nRecognitionId: 0\r\nRecognitionName: 2018 OUTSTANDING EDUCATION PROGRAM SUPERVISOR \r\n	admin	Recognitions	1
761971	2024-07-05	09:35:20.5240708	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FOUNDATION OF COMPUTER EMEGERNCY RESPONSE TEAM (CERT) OPERATIONS AND PNPKI\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761973	2024-07-05	09:38:53.8733535	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EMPLOOYES COMPENSATION PROGRAM SEMINAR\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761974	2024-07-05	09:39:05.2543681	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: IMPLEMENTATION OF WEB-BASED MONITORING SYSTEM OF SCHOOL MOOE FUND\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761975	2024-07-05	09:39:37.2040684	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EMPLOYEES COMPENSATION PROGRAM SEMINAR\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761976	2024-07-05	09:40:41.0114475	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ACCOUNTING FOR NON- ACCOUNTANTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761977	2024-07-05	09:40:52.3355674	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FY 2020 BUDGET EXECUTION DOCUMENTS ( BEDS)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761978	2024-07-05	09:42:54.8916597	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PREPARATION & SUBMISSION OF INVENTORY OF DEPED PERSONNEL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761979	2024-07-05	09:43:30.9481110	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTING ONESELF TO ENVIRONMENTALLY SUSTAINABLE WORK STANDARDS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761980	2024-07-05	09:43:54.6204823	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3644\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DIVISION OFFICE \r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15079\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761981	2024-07-05	09:43:54.6254821	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3644\r\nEmployeeTrainingId: 0\r\nFromDate: May 23, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: NATIONAL \r\nStatus: \r\nToDate: May 25, 2023\r\nTrainingId: 15209\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761982	2024-07-05	09:43:54.6294817	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3644\r\nEmployeeTrainingId: 0\r\nFromDate: May 15, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DIVISION OFFICE \r\nStatus: \r\nToDate: May 17, 2023\r\nTrainingId: 15081\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761983	2024-07-05	09:43:54.6334817	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3644\r\nEmployeeTrainingId: 0\r\nFromDate: January 17, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DIVISION OFFICE \r\nStatus: \r\nToDate: January 17, 2023\r\nTrainingId: 15048\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761984	2024-07-05	09:43:54.6374817	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3644\r\nEmployeeTrainingId: 0\r\nFromDate: April 18, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DIVISION OFFICE \r\nStatus: \r\nToDate: April 18, 2022\r\nTrainingId: 15366\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761985	2024-07-05	09:43:54.6414817	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3644\r\nEmployeeTrainingId: 0\r\nFromDate: November 18, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: REGIONAL \r\nStatus: \r\nToDate: November 19, 2019\r\nTrainingId: 15369\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761986	2024-07-05	09:43:54.6454817	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3644\r\nEmployeeTrainingId: 0\r\nFromDate: September 26, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: NATIONAL \r\nStatus: \r\nToDate: September 27, 2019\r\nTrainingId: 15370\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761995	2024-07-05	09:45:04.1051583	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING - WORKING ON BASIC CUSTOMER SERVICE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761996	2024-07-05	09:45:18.5060111	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CALABARZON CYBER TALKS WITH GOVERNMENT AGENCIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761997	2024-07-05	09:47:21.3241811	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKPLACE EMAILS MADE EASY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
761998	2024-07-05	09:47:53.5377034	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ISO 9001: 2015 QUALITY MANAGEMENT SYSTEM INTERNAL AUDIT COURSE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762001	2024-07-05	09:52:52.9379615	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION OF THE IMPLEMENTATION OF FINANCIAL MANAGEMENT OPERATIONS MANUAL ( FMOM)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762003	2024-07-05	09:54:46.6181636	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON THE IMPLEMENTATION OF FINANCIAL MANAGEMENT OPERATIONS MANUAL ( FMOM)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762005	2024-07-05	09:56:51.8512106	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3644\r\nEmployeeTrainingId: 0\r\nFromDate: February 12, 2019\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DIVISION OFFICE \r\nStatus: \r\nToDate: February 14, 2019\r\nTrainingId: 15372\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762006	2024-07-05	09:56:51.8582104	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3644\r\nEmployeeTrainingId: 0\r\nFromDate: July 05, 2018\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DIVISION OFFICE \r\nStatus: \r\nToDate: July 06, 2018\r\nTrainingId: 15375\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762007	2024-07-05	09:56:51.8622105	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3644\r\nEmployeeTrainingId: 0\r\nFromDate: March 22, 2018\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DIVISION OFFICE \r\nStatus: \r\nToDate: March 22, 2018\r\nTrainingId: 15138\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762008	2024-07-05	09:56:51.8682105	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3644\r\nEmployeeTrainingId: 0\r\nFromDate: December 10, 2017\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DIVISION OFFICE \r\nStatus: \r\nToDate: December 11, 2017\r\nTrainingId: 15380\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762009	2024-07-05	09:57:47.4649675	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FY 2017 BUDGET EXECUTION DOCUMENTS ( BEDS)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762011	2024-07-05	09:59:40.0894422	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CASH MANAGEMENT AND CONTROL SYSTEM TRAINING WORKSHOP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762013	2024-07-05	10:01:56.6003942	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: " SEC AND PHILHEALTH UPDATES " " TAX UPDATES " " PERS UPDATES " DURING THE SOUTHERN TAGALOG REGIONAL CONFERENCE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762014	2024-07-05	10:03:02.7036041	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3644\r\nEmployeeTrainingId: 0\r\nFromDate: November 07, 2016\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: REGIONAL \r\nStatus: \r\nToDate: November 11, 2016\r\nTrainingId: 15382\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762015	2024-07-05	10:03:02.7076040	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3644\r\nEmployeeTrainingId: 0\r\nFromDate: April 27, 2013\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: REGIONAL \r\nStatus: \r\nToDate: April 27, 2013\r\nTrainingId: 15384\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762016	2024-07-05	10:03:02.7116048	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3644\r\nEmployeeTrainingId: 0\r\nFromDate: October 20, 2012\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: PICPA\r\nStatus: \r\nToDate: October 22, 2012\r\nTrainingId: 15386\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
761999	2024-07-05	09:49:52.8493628	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIGITAL CITIZENSHP AND CIVILITY IN THE WORKPLACE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762000	2024-07-05	09:51:53.8883297	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EXERCISING SUSTAINABLE DEVELOPMENT IN THE WORKPLACE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762002	2024-07-05	09:53:28.0513295	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INTRODUCTION TO DATA PRIVACY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762004	2024-07-05	09:55:46.5851561	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PERSONAL FINANCE AND ENTRELEADERSHIP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762010	2024-07-05	09:57:58.6427830	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SOCIAL-EMOTIONAL LEARNING INTEGRATION IN THE CLASSROOM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762012	2024-07-05	09:59:46.1068923	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIGITAL INNOVATION IN GOVERNMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762027	2024-07-05	10:12:56.7233654	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3646\r\nRecognitionId: 0\r\nRecognitionName: MEMBER- DOCUMENT CUSTODIAN COMMITTEE (DCC)- ISO 9001-2015 QUALITY MANAGEMENT SYSTEM\r\n	admin	Recognitions	1
762028	2024-07-05	10:12:56.7283486	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3646\r\nOrganizationId: 0\r\nOrganizationName: DEPARTMENT OF EDUCATION- NATIONAL EMPLOYEES UNION\r\n	admin	Organizations	1
762029	2024-07-05	10:12:56.7323354	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3646\r\nOrganizationId: 0\r\nOrganizationName: SOUTHEAST ASIAN INSTITUTE OF EDUCATIONAL TRAINING INC.\r\n	admin	Organizations	1
762030	2024-07-05	10:12:56.7363220	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3646\r\nEmployeeTrainingId: 0\r\nFromDate: September 25, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY- ICT LITERACY AND COMPETENCY DEVELOPMENT BUREAU- REGION 2\r\nStatus: \r\nToDate: September 26, 2023\r\nTrainingId: 15363\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762031	2024-07-05	10:12:56.7413053	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3646\r\nEmployeeTrainingId: 0\r\nFromDate: September 27, 2023\r\nHours: 2\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: EMPLOYEES COMPENSATION COMMISSION\r\nStatus: \r\nToDate: September 27, 2023\r\nTrainingId: 15367\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762032	2024-07-05	10:12:56.7452919	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3646\r\nEmployeeTrainingId: 0\r\nFromDate: September 28, 2023\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF TRADE AND INDUSTRY NATIONAL CAPITAL REGIONAL OFFICE\r\nStatus: \r\nToDate: September 28, 2023\r\nTrainingId: 15368\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762033	2024-07-05	10:12:56.7492786	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3646\r\nEmployeeTrainingId: 0\r\nFromDate: October 04, 2023\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: TECHNICAL EDUCATION AND SKILLS DEVELOPMENT AUTHORITY- ONLINE PROGRAM\r\nStatus: \r\nToDate: October 04, 2023\r\nTrainingId: 15371\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762034	2024-07-05	10:12:56.7542620	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3646\r\nEmployeeTrainingId: 0\r\nFromDate: October 05, 2023\r\nHours: 2\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY REGION IV-A CYBERSECURITY BUREAU\r\nStatus: \r\nToDate: October 05, 2023\r\nTrainingId: 15373\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762035	2024-07-05	10:12:56.7582486	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3646\r\nEmployeeTrainingId: 0\r\nFromDate: October 07, 2023\r\nHours: 6\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY-  ICT LITERACY AND COMPETENCY DEVELOPMENT BUREAU\r\nStatus: \r\nToDate: October 07, 2023\r\nTrainingId: 15374\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762036	2024-07-05	10:12:56.7632320	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3646\r\nEmployeeTrainingId: 0\r\nFromDate: October 09, 2023\r\nHours: 6\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY- ICT LITERACY AND COMPETENCY DEVELOPMENT BUREAU\r\nStatus: \r\nToDate: October 09, 2023\r\nTrainingId: 15376\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762037	2024-07-05	10:12:56.7672187	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3646\r\nEmployeeTrainingId: 0\r\nFromDate: October 10, 2023\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: TECHNICAL EDUCATION SKILLS DEVELOPMENT AUTHORITY- ONLINE PROGRAM\r\nStatus: \r\nToDate: October 10, 2023\r\nTrainingId: 15377\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762017	2024-07-05	10:11:40.2004732	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO BULIHAN\r\nBarangay: AMBULONG\r\nBasicInformationId: 0\r\nBirthDate: June 04, 1987\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: josephine.catapang@deped.gov.ph\r\nExtensionName: \r\nFirstName: JOSEPHINE\r\nFullName: JOSEPHINE DL. CATAPANG\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CATAPANG\r\nMaidenName: \r\nMiddleName: DE LEON\r\nMobileNumber: 09778363510\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO BULIHAN\r\nPermanentBarangay: AMBULONG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 57\r\nZipCode: 4200\r\n	admin	BasicInformation	1
762018	2024-07-05	10:11:40.2215890	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: 8TH PLACER\r\nBasicInformationId: 3647\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 2000\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: AMBULONG ELEMENTARY SCHOOL\r\nYearGraduated: 2000\r\n	admin	EducationalBackgrounds	1
762019	2024-07-05	10:11:40.2215890	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: SCIENCE CLASS B\r\nBasicInformationId: 3647\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2000\r\nDateTo: 2004\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2004\r\n	admin	EducationalBackgrounds	1
762020	2024-07-05	10:11:40.2215890	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: UNIVERSITY SCHOLAR/ 3RD BEST FEASIBILITY STUDY\r\nBasicInformationId: 3647\r\nCourse: \r\nCourseId: 1257\r\nCourseOrMajor: \r\nDateFrom: 2004\r\nDateTo: 2008\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY (FORMER PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY)\r\nYearGraduated: 2008\r\n	admin	EducationalBackgrounds	1
762021	2024-07-05	10:11:40.2215890	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3647\r\nCourse: \r\nCourseId: 1253\r\nCourseOrMajor: \r\nDateFrom: 2023\r\nDateTo: 2024\r\nEducationalAttainment: UNDERGRADUATE (PRESENT)\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
762022	2024-07-05	10:11:40.2215890	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3647\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FERDINAND\r\nFullName: FERDINAND BEREDO CATAPANG\r\nGender: Male\r\nLastName: CATAPANG\r\nMaidenName: \r\nMiddleName: BEREDO\r\nOccupation: OFW- METAL MACHINIST\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
762023	2024-07-05	10:11:40.2225853	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3647\r\nBirthDate: June 28, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ARCHIE\r\nFullName: ARCHIE DE LEON CATAPANG\r\nGender: Male\r\nLastName: CATAPANG\r\nMaidenName: \r\nMiddleName: DE LEON\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762024	2024-07-05	10:11:40.2225853	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3647\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SINFROSO\r\nFullName: SINFROSO ARCEGA DE LEON\r\nGender: Male\r\nLastName: DE LEON\r\nMaidenName: \r\nMiddleName: ARCEGA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
762025	2024-07-05	10:11:40.2225853	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3647\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARIA MELINDA\r\nFullName: MARIA MELINDA LAYUSA ESPETIRO\r\nGender: Female\r\nLastName: ESPETIRO\r\nMaidenName: \r\nMiddleName: LAYUSA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
762026	2024-07-05	10:11:40.2225853	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3647\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
762040	2024-07-05	10:12:56.7801752	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3646\r\nEmployeeTrainingId: 0\r\nFromDate: October 14, 2023\r\nHours: 2\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: PHILIPPINE ASSOCIATION FOR TEACHERS AND EDUCATORS (PAFTE) INC. \r\nStatus: \r\nToDate: October 14, 2023\r\nTrainingId: 15383\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762041	2024-07-05	10:12:56.7841619	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3646\r\nEmployeeTrainingId: 0\r\nFromDate: October 15, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF IFORMATION AND COMMUNICATIONS TECHNOLOGY -ICT LITERACY AND COMPETENCY DEVELOPMENT BUREAU\r\nStatus: \r\nToDate: October 15, 2023\r\nTrainingId: 15385\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762042	2024-07-05	10:12:56.7891452	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3646\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS STATE UNIVERSITY- MAIN CAMPUS\r\nCompanyName: \r\nContactNumber: 0935616936\r\nExtensionName: \r\nFirstName: RANDY\r\nLastName: BAJA\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762043	2024-07-05	10:12:56.7931319	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3646\r\nCharacterReferenceId: 0\r\nCompanyAddress: CIVIL SERVICE COMMISSION FIELD OFFICE- CAVITE \r\nCompanyName: \r\nContactNumber: (046) 419- 2534\r\nExtensionName: \r\nFirstName: MARIA THERESA \r\nLastName: POBLADOR\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762044	2024-07-05	10:12:56.7971187	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3646\r\nCharacterReferenceId: 0\r\nCompanyAddress: DEPARTMENT OF EDUCATION\r\nCompanyName: \r\nContactNumber: 702-2094\r\nExtensionName: \r\nFirstName: LEAH\r\nLastName: CELEMIN\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762045	2024-07-05	10:12:56.8021019	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 22 LOT 14 16\r\nAddress2: MERCEDES HOMES\r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 3646\r\nBirthDate: April 01, 1995\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: christine.marasigan001@deped.gov.ph\r\nExtensionName: \r\nFirstName: CHRISTINE\r\nFullName: CHRISTINE M. ABAG\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ABAG\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nMobileNumber: 09171887095\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: GULOD LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 22 LOT 14 16\r\nAddress2: MERCEDES HOMES\r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 3646\r\nBirthDate: April 01, 1995\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: christine.marasigan001@deped.gov.ph\r\nExtensionName: \r\nFirstName: CHRISTINE\r\nFullName: CHRISTINE M. ABAG\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005120802\r\nHDMF: 1211-8707-2504\r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ABAG\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nMobileNumber: 09171887095\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: GULOD LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-250123145-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: 04-3653930-7\r\nStreetName: \r\nTIN: 466-839-798-0000\r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
762046	2024-07-05	10:12:56.8060885	<Undetected>	Update	BasicInformationId: 3646\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3417\r\nExtensionName: \r\nFirstName: GENE KARLO\r\nFullName: GENE KARLO DISTOR ABAG\r\nGender: Male\r\nLastName: ABAG\r\nMaidenName: \r\nMiddleName: DISTOR\r\nOccupation: NURSE II- GOVERNMENT EMPLOYEE\r\nRelationship: Husband\r\n	BasicInformationId: 3646\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3417\r\nExtensionName: \r\nFirstName: GENE KARLO\r\nFullName: GENE KARLO ABAG\r\nGender: Male\r\nLastName: ABAG\r\nMaidenName: \r\nMiddleName: DISTOR\r\nOccupation: NURSE II- GOVERNMENT EMPLOYEE\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
762047	2024-07-05	10:12:56.8100753	<Undetected>	Update	BasicInformationId: 3646\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3418\r\nExtensionName: \r\nFirstName: CRISANTO\r\nFullName: CRISANTO AFRICA MARASIGAN\r\nGender: Male\r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: AFRICA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3646\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3418\r\nExtensionName: \r\nFirstName: CRISANTO\r\nFullName: CRISANTO MARASIGAN\r\nGender: Male\r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: AFRICA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
762048	2024-07-05	10:12:56.8150586	<Undetected>	Update	BasicInformationId: 3646\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3419\r\nExtensionName: \r\nFirstName: ZENAIDA\r\nFullName: ZENAIDA UNTALAN HERNANDEZ\r\nGender: Female\r\nLastName: HERNANDEZ\r\nMaidenName: \r\nMiddleName: UNTALAN\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3646\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3419\r\nExtensionName: \r\nFirstName: ZENAIDA\r\nFullName: ZENAIDA HERNANDEZ\r\nGender: Female\r\nLastName: HERNANDEZ\r\nMaidenName: \r\nMiddleName: UNTALAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
762049	2024-07-05	10:12:56.8190453	<Undetected>	Update	BasicInformationId: 3646\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3443\r\n	BasicInformationId: 3646\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3443\r\n	admin	Questionnaires	1
762050	2024-07-05	10:14:49.0664316	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3644\r\nSkillId: 0\r\nSkillName: DANCING, SINGING, PLAYING COMPUTER GAMES \r\n	admin	Skills	1
762051	2024-07-05	10:14:49.0704315	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3644\r\nSkillId: 0\r\nSkillName: PLAYING BADMINTON, BASKETBALL\r\n	admin	Skills	1
762052	2024-07-05	10:14:49.0804315	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3644\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
762053	2024-07-05	10:14:49.0844314	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3644\r\nRecognitionId: 0\r\nRecognitionName: MERITORIOUS PERFORMANCE AWARD JANUARY 23, 2024\r\n	admin	Recognitions	1
762058	2024-07-05	10:14:49.1074313	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3644\r\nRecognitionId: 0\r\nRecognitionName: TWG MEMBER- SEMINAR WORKSHOP ON THE IMPLEMENTATION OF WEB - BASED MONITORING SYSTEM OF SCHOOL MOOE FUNDS \r\n	admin	Recognitions	1
762059	2024-07-05	10:14:49.1124315	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3644\r\nRecognitionId: 0\r\nRecognitionName: TECHNICAL WORKING GROUP- FINANCIAL ADVANCEMENT SKILLS FOR SCHOOL ADMINISTRATORS AND FINANCE & ADMINISTRATIVE PERSONNEL \r\n	admin	Recognitions	1
762060	2024-07-05	10:14:49.1164313	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3644\r\nRecognitionId: 0\r\nRecognitionName: OUTSTANDING MEMBER SILAHIS NG PAGKAKAISA \r\n	admin	Recognitions	1
762061	2024-07-05	10:14:49.1204315	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3644\r\nOrganizationId: 0\r\nOrganizationName: NATIONAL EMPLOYMENT UNION \r\n	admin	Organizations	1
762062	2024-07-05	10:14:49.1244313	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3644\r\nOrganizationId: 0\r\nOrganizationName: UNITED  HEART"S CLUB\r\n	admin	Organizations	1
762063	2024-07-05	10:14:49.1294316	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3644\r\nOrganizationId: 0\r\nOrganizationName: SILAHIS NG PAGKAKAISA \r\n	admin	Organizations	1
762064	2024-07-05	10:14:49.1324313	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3644\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS VARSITARIAN \r\n	admin	Organizations	1
762065	2024-07-05	10:21:29.5827571	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3644\r\nCharacterReferenceId: 0\r\nCompanyAddress: DEPED BATANGAS CITY ACCOUNTING UNIT \r\nCompanyName: \r\nContactNumber: 702-70940 LOC. 1025 \r\nExtensionName: \r\nFirstName: MARIA JOSEFINA \r\nLastName: LAGMAN \r\nMiddleName: M \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762066	2024-07-05	10:21:29.5877165	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3644\r\nCharacterReferenceId: 0\r\nCompanyAddress: LYCEUM OF THE PHILIPPINES UNIVERSITY -  BATANGAS HS DEPARTMENT \r\nCompanyName: \r\nContactNumber: 09194417861\r\nExtensionName: \r\nFirstName: VIVAN \r\nLastName: PEREZ  \r\nMiddleName: A \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762067	2024-07-05	10:21:29.5937159	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3644\r\nCharacterReferenceId: 0\r\nCompanyAddress: NAUHAN ORIENTAL MINDORO \r\nCompanyName: \r\nContactNumber: 09175620438\r\nExtensionName: \r\nFirstName: DONATO \r\nLastName: BUENO \r\nMiddleName: G \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762068	2024-07-05	10:21:29.5977159	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: #73\r\nAddress2: \r\nBarangay: BALETE\r\nBasicInformationId: 3644\r\nBirthDate: May 06, 1986\r\nBirthPlace: SAN NICOLAS, BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: SAN NICOLAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ALGENE.BARAIRO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ALGENE\r\nFullName: ALGENE C. BARAIRO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BARAIRO\r\nMaidenName: \r\nMiddleName: CAPUNO\r\nMobileNumber: 09567931169\r\nNationality: Filipino\r\nPermanentAddress1: #73\r\nPermanentAddress2: \r\nPermanentBarangay: BALETE\r\nPermanentCity: SAN NICOLAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4207\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 65\r\nZipCode: 4207\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: #73\r\nAddress2: \r\nBarangay: BALETE\r\nBasicInformationId: 3644\r\nBirthDate: May 06, 1986\r\nBirthPlace: SAN NICOLAS, BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: SAN NICOLAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ALGENE.BARAIRO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ALGENE\r\nFullName: ALGENE C. BARAIRO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005059726\r\nHDMF: 1211-3714-6568\r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BARAIRO\r\nMaidenName: \r\nMiddleName: CAPUNO\r\nMobileNumber: 09567931169\r\nNationality: Filipino\r\nPermanentAddress1: #73\r\nPermanentAddress2: \r\nPermanentBarangay: BALETE\r\nPermanentCity: SAN NICOLAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4207\r\nPhilhealth: 09-025353483-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3506177-9\r\nStreetName: \r\nTIN: 407-242-105-0000\r\nWeight: 65\r\nZipCode: 4207\r\n	admin	BasicInformation	1
762069	2024-07-05	10:21:29.6037159	<Undetected>	Update	BasicInformationId: 3644\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3441\r\n	BasicInformationId: 3644\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3441\r\n	admin	Questionnaires	1
762070	2024-07-05	10:28:43.9624115	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: #73\r\nAddress2: \r\nBarangay: BALETE\r\nBasicInformationId: 3644\r\nBirthDate: May 06, 1986\r\nBirthPlace: SAN NICOLAS, BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: SAN NICOLAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ALGENE.BARAIRO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ALGENE\r\nFullName: ALGENE C. BARAIRO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005059726\r\nHDMF: 1211-3714-6568\r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BARAIRO\r\nMaidenName: \r\nMiddleName: CAPUNO\r\nMobileNumber: 09567931169\r\nNationality: Filipino\r\nPermanentAddress1: #73\r\nPermanentAddress2: \r\nPermanentBarangay: BALETE\r\nPermanentCity: SAN NICOLAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4207\r\nPhilhealth: 09-025353483-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3506177-9\r\nStreetName: \r\nTIN: 407-242-105-0000\r\nWeight: 65\r\nZipCode: 4207\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: #73\r\nAddress2: \r\nBarangay: BALETE\r\nBasicInformationId: 3644\r\nBirthDate: May 06, 1986\r\nBirthPlace: SAN NICOLAS, BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: SAN NICOLAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ALGENE.BARAIRO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ALGENE\r\nFullName: ALGENE C. BARAIRO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005059726\r\nHDMF: 1211-3714-6568\r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BARAIRO\r\nMaidenName: \r\nMiddleName: CAPUNO\r\nMobileNumber: 09567931169\r\nNationality: Filipino\r\nPermanentAddress1: #73\r\nPermanentAddress2: \r\nPermanentBarangay: BALETE\r\nPermanentCity: SAN NICOLAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4207\r\nPhilhealth: 09-025353483-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: 04-3506177-9\r\nStreetName: \r\nTIN: 407-242-105-0000\r\nWeight: 65\r\nZipCode: 4207\r\n	admin	BasicInformation	1
762071	2024-07-05	10:30:32.6413723	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3647\r\nDateOfExamination: October 23, 2016\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: October 23, 2016\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: EBD 5 BUILDING, BATANGAS NATIONAL HIGH SCHOOL\r\nRating: 80.4%\r\nTitle: CAREER SERVICE PROFESSIONAL ELIGIBILITY\r\n	admin	Eligibilities	1
762072	2024-07-05	10:30:32.6453589	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3647\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 08, 2021\r\nIsGovernmentService: False\r\nMonthlySalary: 23,211.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-1\r\nStatus: Permanent\r\nToDate: July 05, 2024\r\n	admin	Experiences	1
762073	2024-07-05	10:30:32.6523362	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3647\r\nCompanyInstitution: AMBULONG RURAL WATERWORKS AND SANITARY ASSOCIATION\r\nExperienceId: 0\r\nFromDate: March 15, 2020\r\nIsGovernmentService: False\r\nMonthlySalary: 4,000.00\r\nPositionHeld: CHAIRMAN, COMMITTEE ON AUDIT\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: March 31, 2023\r\n	admin	Experiences	1
762074	2024-07-05	10:30:32.6563220	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3647\r\nCompanyInstitution: BANK OF COMMERCE\r\nExperienceId: 0\r\nFromDate: February 03, 2009\r\nIsGovernmentService: False\r\nMonthlySalary: 26,000.00\r\nPositionHeld: BRANCH CONTROL ASSISTANT VI\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: March 28, 2017\r\n	admin	Experiences	1
762075	2024-07-05	10:30:32.6613056	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3647\r\nCompanyInstitution: COMMISSION ON AUDIT- BATANGAS STATE UNIVERSITY\r\nExperienceId: 0\r\nFromDate: August 19, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 7,500.00\r\nPositionHeld: ADMINISTRATIVE AIDE III/ AUDIT STAFF\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-1\r\nStatus: Job Order\r\nToDate: January 30, 2009\r\n	admin	Experiences	1
762076	2024-07-05	10:30:32.6652921	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3647\r\nCompanyInstitution: BANK OF COMMERCE \r\nExperienceId: 0\r\nFromDate: May 12, 2008\r\nIsGovernmentService: False\r\nMonthlySalary: 9,200.00\r\nPositionHeld: ACCOUNT UTILIZATION STAFF\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-1\r\nStatus: Contractual\r\nToDate: August 17, 2008\r\n	admin	Experiences	1
762077	2024-07-05	10:30:32.6692789	<Undetected>	Update	BasicInformationId: 3647\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3420\r\nExtensionName: \r\nFirstName: FERDINAND\r\nFullName: FERDINAND BEREDO CATAPANG\r\nGender: Male\r\nLastName: CATAPANG\r\nMaidenName: \r\nMiddleName: BEREDO\r\nOccupation: OFW- METAL MACHINIST\r\nRelationship: Husband\r\n	BasicInformationId: 3647\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3420\r\nExtensionName: \r\nFirstName: FERDINAND\r\nFullName: FERDINAND CATAPANG\r\nGender: Male\r\nLastName: CATAPANG\r\nMaidenName: \r\nMiddleName: BEREDO\r\nOccupation: OFW- METAL MACHINIST\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
762078	2024-07-05	10:30:32.6742620	<Undetected>	Update	BasicInformationId: 3647\r\nBirthDate: June 28, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3421\r\nExtensionName: \r\nFirstName: ARCHIE\r\nFullName: ARCHIE DE LEON CATAPANG\r\nGender: Male\r\nLastName: CATAPANG\r\nMaidenName: \r\nMiddleName: DE LEON\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3647\r\nBirthDate: June 28, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3421\r\nExtensionName: \r\nFirstName: ARCHIE\r\nFullName: ARCHIE CATAPANG\r\nGender: Male\r\nLastName: CATAPANG\r\nMaidenName: \r\nMiddleName: DE LEON\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762079	2024-07-05	10:30:32.6782488	<Undetected>	Update	BasicInformationId: 3647\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3422\r\nExtensionName: \r\nFirstName: SINFROSO\r\nFullName: SINFROSO ARCEGA DE LEON\r\nGender: Male\r\nLastName: DE LEON\r\nMaidenName: \r\nMiddleName: ARCEGA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3647\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3422\r\nExtensionName: \r\nFirstName: SINFROSO\r\nFullName: SINFROSO DE LEON\r\nGender: Male\r\nLastName: DE LEON\r\nMaidenName: \r\nMiddleName: ARCEGA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
762080	2024-07-05	10:30:32.6832321	<Undetected>	Update	BasicInformationId: 3647\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3423\r\nExtensionName: \r\nFirstName: MARIA MELINDA\r\nFullName: MARIA MELINDA LAYUSA ESPETIRO\r\nGender: Female\r\nLastName: ESPETIRO\r\nMaidenName: \r\nMiddleName: LAYUSA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3647\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3423\r\nExtensionName: \r\nFirstName: MARIA MELINDA\r\nFullName: MARIA MELINDA ESPETIRO\r\nGender: Female\r\nLastName: ESPETIRO\r\nMaidenName: \r\nMiddleName: LAYUSA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
762081	2024-07-05	10:30:32.6872187	<Undetected>	Update	BasicInformationId: 3647\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3444\r\n	BasicInformationId: 3647\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3444\r\n	admin	Questionnaires	1
762128	2024-07-05	11:00:40.7485719	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: LEDEARSHIP/ CAPACITY DEVELOPMENT TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762082	2024-07-05	10:33:12.2690601	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 82\r\nAddress2: \r\nBarangay: POBLACION 5\r\nBasicInformationId: 0\r\nBirthDate: June 28, 1988\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MIKKOPAOLOPEREZ@GMAIL.COM\r\nExtensionName: \r\nFirstName: MICKO PAOLO\r\nFullName: MICKO PAOLO A. PEREZ\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437029344\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: ABANTE\r\nMobileNumber: 09175017184\r\nNationality: Filipino\r\nPermanentAddress1: 82\r\nPermanentAddress2: \r\nPermanentBarangay: POBLACION 5\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: P. HERRERA\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: P. HERRERA\r\nTIN: \r\nWeight: 59\r\nZipCode: 4200\r\n	admin	BasicInformation	1
762083	2024-07-05	10:33:12.2826913	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3648\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
762084	2024-07-05	10:34:30.3849684	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK 8 LOT 20\r\nAddress2: TIERRA VERDE SUBD.\r\nBarangay: PALOOCAN WEST\r\nBasicInformationId: 0\r\nBirthDate: July 08, 1962\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: maisabel.magpantay001@deped.gov.ph\r\nExtensionName: \r\nFirstName: MA. ISABEL\r\nFullName: MA. ISABEL B. MAGPANTAY\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MAGPANTAY\r\nMaidenName: \r\nMiddleName: BARZA\r\nMobileNumber: 06684929508\r\nNationality: Filipino\r\nPermanentAddress1: BLK 8 LOT 20\r\nPermanentAddress2: TIERRA VERDE SUBD.\r\nPermanentBarangay: PALOOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ST. PAUL STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ST. PAUL STREET\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
762085	2024-07-05	10:34:30.4120745	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3649\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1969\r\nDateTo: 1975\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NORTH ELEMENTARY SCHOOL\r\nYearGraduated: 1975\r\n	admin	EducationalBackgrounds	1
762086	2024-07-05	10:34:30.4120745	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3649\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1975\r\nDateTo: 1979\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1979\r\n	admin	EducationalBackgrounds	1
762087	2024-07-05	10:34:30.4120745	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3649\r\nCourse: \r\nCourseId: 1252\r\nCourseOrMajor: \r\nDateFrom: 1979\r\nDateTo: 1987\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS (FORMER WPC)\r\nYearGraduated: 1987\r\n	admin	EducationalBackgrounds	1
762088	2024-07-05	10:34:30.4120745	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3649\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PABLO\r\nFullName: PABLO TOLENTINO MAGPANTAY\r\nGender: Male\r\nLastName: MAGPANTAY\r\nMaidenName: \r\nMiddleName: TOLENTINO\r\nOccupation: OFW\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
762089	2024-07-05	10:34:30.4120745	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3649\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: NEMESIO\r\nFullName: NEMESIO MUÑOZ BARZA\r\nGender: Male\r\nLastName: BARZA\r\nMaidenName: \r\nMiddleName: MUÑOZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
762090	2024-07-05	10:34:30.4120745	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3649\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: TERISITA ROSARIO\r\nFullName: TERISITA ROSARIO DE CASTRO MATIRA\r\nGender: Female\r\nLastName: MATIRA\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
762091	2024-07-05	10:34:30.4120745	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3649\r\nBirthDate: September 10, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ANGEL THERESA\r\nFullName: ANGEL THERESA B MAGPANTAY\r\nGender: Female\r\nLastName: MAGPANTAY\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762092	2024-07-05	10:34:30.4120745	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3649\r\nDateOfExamination: December 07, 1980\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 7\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: December 07, 1980\r\nLevelOfEligibility: First Level (Subprofessional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 74.7%\r\nTitle: CAREER SERVICE SUB PROFESSIONAL \r\n	admin	Eligibilities	1
762093	2024-07-05	10:34:30.4130715	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 21,567.00\r\nPositionHeld: ADMINISTRATIVE ASSITANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-3\r\nStatus: Permanent\r\nToDate: July 05, 2024\r\n	admin	Experiences	1
762094	2024-07-05	10:34:30.4130715	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 21,567.00\r\nPositionHeld: ADMINISTRATIVE ASSITANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-3\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
762095	2024-07-05	10:34:30.4130715	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 20,745.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-3\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
762096	2024-07-05	10:34:30.4130715	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: May 25, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 19,922.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-2\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
762097	2024-07-05	10:34:30.4130715	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 19,757.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-2\r\nStatus: Permanent\r\nToDate: May 24, 2021\r\n	admin	Experiences	1
762098	2024-07-05	10:34:30.4130715	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 18,941.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-2\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
762099	2024-07-05	10:34:30.4130715	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 18,125.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-2\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
762100	2024-07-05	10:34:30.4130715	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: May 25, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 17,627.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
762101	2024-07-05	10:34:30.4130715	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 17,473.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-1\r\nStatus: Permanent\r\nToDate: May 24, 2018\r\n	admin	Experiences	1
762102	2024-07-05	10:34:30.4130715	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3649\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
762129	2024-07-05	11:01:07.9800638	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: LEADERSHIP/ CAPACITY DEVELOPMENT TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762103	2024-07-05	10:38:28.6763621	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 16,986.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
762104	2024-07-05	10:38:28.6843356	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 16,512.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
762105	2024-07-05	10:38:28.6893188	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: May 25, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 16,051.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
762106	2024-07-05	10:38:28.6933054	<Undetected>	Update	BasicInformationId: 3649\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3424\r\nExtensionName: \r\nFirstName: PABLO\r\nFullName: PABLO TOLENTINO MAGPANTAY\r\nGender: Male\r\nLastName: MAGPANTAY\r\nMaidenName: \r\nMiddleName: TOLENTINO\r\nOccupation: OFW\r\nRelationship: Husband\r\n	BasicInformationId: 3649\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3424\r\nExtensionName: \r\nFirstName: PABLO\r\nFullName: PABLO MAGPANTAY\r\nGender: Male\r\nLastName: MAGPANTAY\r\nMaidenName: \r\nMiddleName: TOLENTINO\r\nOccupation: OFW\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
762107	2024-07-05	10:38:28.6982888	<Undetected>	Update	BasicInformationId: 3649\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3425\r\nExtensionName: \r\nFirstName: NEMESIO\r\nFullName: NEMESIO MUÑOZ BARZA\r\nGender: Male\r\nLastName: BARZA\r\nMaidenName: \r\nMiddleName: MUÑOZ\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3649\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3425\r\nExtensionName: \r\nFirstName: NEMESIO\r\nFullName: NEMESIO BARZA\r\nGender: Male\r\nLastName: BARZA\r\nMaidenName: \r\nMiddleName: MUÑOZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
762108	2024-07-05	10:38:28.7022753	<Undetected>	Update	BasicInformationId: 3649\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3426\r\nExtensionName: \r\nFirstName: TERISITA ROSARIO\r\nFullName: TERISITA ROSARIO DE CASTRO MATIRA\r\nGender: Female\r\nLastName: MATIRA\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3649\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3426\r\nExtensionName: \r\nFirstName: TERISITA ROSARIO\r\nFullName: TERISITA ROSARIO MATIRA\r\nGender: Female\r\nLastName: MATIRA\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
762109	2024-07-05	10:38:28.7072587	<Undetected>	Update	BasicInformationId: 3649\r\nBirthDate: September 10, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3427\r\nExtensionName: \r\nFirstName: ANGEL THERESA\r\nFullName: ANGEL THERESA B MAGPANTAY\r\nGender: Female\r\nLastName: MAGPANTAY\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3649\r\nBirthDate: September 10, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3427\r\nExtensionName: \r\nFirstName: ANGEL THERESA\r\nFullName: ANGEL THERESA MAGPANTAY\r\nGender: Female\r\nLastName: MAGPANTAY\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762110	2024-07-05	10:38:28.7112453	<Undetected>	Update	BasicInformationId: 3649\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3446\r\n	BasicInformationId: 3649\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3446\r\n	admin	Questionnaires	1
762156	2024-07-05	11:19:33.1481595	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING WORKSHOP ON CUSTOMER SATISFACTION (FACILITATOR AND PARTICIPANT)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762158	2024-07-05	11:21:18.9158380	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: HANDS ON TRAINING ON BASIC COMPUTER OPERATIONS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762162	2024-07-05	11:23:09.0863044	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: GUNG HO BASED COMPTENCE ENHANCEMENT PROGRAM FOR DEPED NON- TEACHING PERSONNEL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762176	2024-07-05	11:24:58.3719478	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING OF THE DEPED RATIONALIZATION PROGRAM HELP DESK TEAM (SDO)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762178	2024-07-05	11:26:24.6593807	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING ON GENDER AND DEVELOPMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762195	2024-07-05	11:34:24.8280230	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3649\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
762196	2024-07-05	11:34:24.8330062	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3649\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
766037	2024-07-11	16:10:24.8253570	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3695\r\nRecognitionId: 0\r\nRecognitionName: 2017 OUTSTANDING EDUCATION PROGRAM SUPERVISOR \r\n	admin	Recognitions	1
762111	2024-07-05	10:48:53.2642373	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3648\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1995\r\nDateTo: 2001\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAINT BRIDGET COLLEGE \r\nYearGraduated: 2001\r\n	admin	EducationalBackgrounds	1
762112	2024-07-05	10:48:53.2682380	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3648\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RAMON\r\nFullName: RAMON POZON PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: POZON\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
762113	2024-07-05	10:48:53.2772369	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3648\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RAMON\r\nFullName: RAMON POZON PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: POZON\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
762114	2024-07-05	10:48:53.2812369	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3648\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SIMEONA SUSAN\r\nFullName: SIMEONA SUSAN MEDINA ABANTE\r\nGender: Female\r\nLastName: ABANTE\r\nMaidenName: \r\nMiddleName: MEDINA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
762115	2024-07-05	10:48:53.2852772	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3648\r\nBirthDate: March 01, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RAMON ALFREDO\r\nFullName: RAMON ALFREDO R PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: R\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762116	2024-07-05	10:48:53.2932797	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3648\r\nBirthDate: March 29, 2018\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DIEGO ANTONIO\r\nFullName: DIEGO ANTONIO R PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: R\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762117	2024-07-05	10:48:53.2962780	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 82\r\nAddress2: \r\nBarangay: POBLACION 5\r\nBasicInformationId: 3648\r\nBirthDate: June 28, 1988\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MIKKOPAOLOPEREZ@GMAIL.COM\r\nExtensionName: \r\nFirstName: MICKO PAOLO\r\nFullName: MICKO PAOLO A. PEREZ\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437029344\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: ABANTE\r\nMobileNumber: 09175017184\r\nNationality: Filipino\r\nPermanentAddress1: 82\r\nPermanentAddress2: \r\nPermanentBarangay: POBLACION 5\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: P. HERRERA\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: P. HERRERA\r\nTIN: \r\nWeight: 59\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 82\r\nAddress2: \r\nBarangay: POBLACION 5\r\nBasicInformationId: 3648\r\nBirthDate: June 28, 1988\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MIKKOPAOLOPEREZ@GMAIL.COM\r\nExtensionName: \r\nFirstName: MICKO PAOLO\r\nFullName: MICKO PAOLO A. PEREZ\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437029344\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: ABANTE\r\nMobileNumber: 09175017184\r\nNationality: Filipino\r\nPermanentAddress1: 82\r\nPermanentAddress2: \r\nPermanentBarangay: POBLACION 5\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: P. HERRERA\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: P. HERRERA\r\nTIN: \r\nWeight: 59\r\nZipCode: 4200\r\n	admin	BasicInformation	1
762118	2024-07-05	10:48:53.3022780	<Undetected>	Update	BasicInformationId: 3648\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3445\r\n	BasicInformationId: 3648\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3445\r\n	admin	Questionnaires	1
762119	2024-07-05	10:53:17.2878155	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: JURIS DOCTOR\r\nLevel: College\r\n	admin	Courses	1
762120	2024-07-05	10:55:18.5321415	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3648\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2005\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAINT BRIDGET COLLEGE\r\nYearGraduated: 2005\r\n	admin	EducationalBackgrounds	1
762121	2024-07-05	10:55:18.5361417	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3648\r\nCourse: \r\nCourseId: 1287\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: BUSINESS MANAGEMENT\r\nSchoolorUniversity: DE LA SALLE LIPA \r\nYearGraduated: 2009\r\n	admin	EducationalBackgrounds	1
762122	2024-07-05	10:55:18.5451823	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3648\r\nCourse: \r\nCourseId: 1259\r\nCourseOrMajor: \r\nDateFrom: 2009\r\nDateTo: 2014\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS \r\nYearGraduated: 2014\r\n	admin	EducationalBackgrounds	1
762123	2024-07-05	10:55:18.5491873	<Undetected>	Update	BasicInformationId: 3648\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3428\r\nExtensionName: \r\nFirstName: RAMON\r\nFullName: RAMON POZON PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: POZON\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3648\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3428\r\nExtensionName: \r\nFirstName: RAMON\r\nFullName: RAMON PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: POZON\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
762124	2024-07-05	10:55:18.5531882	<Undetected>	Update	BasicInformationId: 3648\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3429\r\nExtensionName: \r\nFirstName: RAMON\r\nFullName: RAMON POZON PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: POZON\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3648\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3429\r\nExtensionName: \r\nFirstName: RAMON\r\nFullName: RAMON PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: POZON\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
762125	2024-07-05	10:55:18.5591816	<Undetected>	Update	BasicInformationId: 3648\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3430\r\nExtensionName: \r\nFirstName: SIMEONA SUSAN\r\nFullName: SIMEONA SUSAN MEDINA ABANTE\r\nGender: Female\r\nLastName: ABANTE\r\nMaidenName: \r\nMiddleName: MEDINA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3648\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3430\r\nExtensionName: \r\nFirstName: SIMEONA SUSAN\r\nFullName: SIMEONA SUSAN ABANTE\r\nGender: Female\r\nLastName: ABANTE\r\nMaidenName: \r\nMiddleName: MEDINA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
762126	2024-07-05	10:55:18.5631415	<Undetected>	Update	BasicInformationId: 3648\r\nBirthDate: March 01, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3431\r\nExtensionName: \r\nFirstName: RAMON ALFREDO\r\nFullName: RAMON ALFREDO R PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: R\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3648\r\nBirthDate: March 01, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3431\r\nExtensionName: \r\nFirstName: RAMON ALFREDO\r\nFullName: RAMON ALFREDO PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: R\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762127	2024-07-05	10:55:18.5701415	<Undetected>	Update	BasicInformationId: 3648\r\nBirthDate: March 29, 2018\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3432\r\nExtensionName: \r\nFirstName: DIEGO ANTONIO\r\nFullName: DIEGO ANTONIO R PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: R\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3648\r\nBirthDate: March 29, 2018\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3432\r\nExtensionName: \r\nFirstName: DIEGO ANTONIO\r\nFullName: DIEGO ANTONIO PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: R\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762130	2024-07-05	11:02:25.6587046	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING WORK ON RESOLUTON AND WRITING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762131	2024-07-05	11:04:28.2678404	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MANDATORY CONTINUING LEGAL EDUCATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762133	2024-07-05	11:05:47.2189122	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DEPED PROCUREMENT PROFESSIONALIZATION PROGRAM ( 3 PRO)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762145	2024-07-05	11:07:32.8786731	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING WORKSHOP FOR ONLINE SAFETY FOR CHILDREN AND POSITIVE DISCIPLINE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762146	2024-07-05	11:10:14.0142741	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING WORKSHOP ON RESOLUTION WRITING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762148	2024-07-05	11:13:12.1739681	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SEMINAR ON THE DIFFERENT PROCEDURE IN SCHOOL SITES ACQUISITION & DOCUMENTATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762150	2024-07-05	11:14:51.9278868	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: YEAR - END WORKSHOP ON RESOLUTION WRITING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762152	2024-07-05	11:16:24.6217536	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING WORK FOR MEMBERS OF THE RO AND SDO COMPLIANCE TEAM ON DATA PRIVACY ACT OF 2012\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762155	2024-07-05	11:19:07.9517410	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ISO 19011: GUIDELINES FOR AUDITING MANAGEMENT SYSTEM TRAINING COURSE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762159	2024-07-05	11:21:44.3185604	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ISO 9001 : 2015 QMS RISK AND OPPORTUNITY TRAINING AND WORKSHOP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762161	2024-07-05	11:23:16.4760714	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ISO 9001 : 2015 QMS DOCUMENTATION TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762132	2024-07-05	11:05:17.4663268	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FIVE DAY NATIONAL TRAINING-WORKSHOP ON BASIC ACCOUNTING AND BOOKKEEPING FOR NON-ACCOUNTANTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762134	2024-07-05	11:07:32.3475554	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3647\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS\r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762135	2024-07-05	11:07:32.3515420	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3647\r\nEmployeeTrainingId: 0\r\nFromDate: November 11, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: GOLDEN GATE COLLEGES- GRADUATE SCHOOL\r\nStatus: \r\nToDate: November 11, 2023\r\nTrainingId: 15346\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762136	2024-07-05	11:07:32.3565255	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3647\r\nEmployeeTrainingId: 0\r\nFromDate: October 28, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: GOLDEN GATE COLLEGES- GRADUATE SCHOOL\r\nStatus: \r\nToDate: October 28, 2023\r\nTrainingId: 15347\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762137	2024-07-05	11:07:32.3605119	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3647\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-SDO BATANGAS\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15113\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762138	2024-07-05	11:07:32.3644984	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3647\r\nEmployeeTrainingId: 0\r\nFromDate: May 15, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-SDO BATANGAS\r\nStatus: \r\nToDate: May 17, 2023\r\nTrainingId: 15046\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762139	2024-07-05	11:07:32.3694814	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3647\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-SDO BATANGAS\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762140	2024-07-05	11:07:32.3734685	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3647\r\nEmployeeTrainingId: 0\r\nFromDate: January 17, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-SDO BATANGAS\r\nStatus: \r\nToDate: January 14, 2023\r\nTrainingId: 15048\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762141	2024-07-05	11:07:32.3784520	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3647\r\nEmployeeTrainingId: 0\r\nFromDate: June 20, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-SDO BATANGAS\r\nStatus: \r\nToDate: June 20, 2022\r\nTrainingId: 15083\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762142	2024-07-05	11:07:32.3824384	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3647\r\nEmployeeTrainingId: 0\r\nFromDate: June 12, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BATANGAS CITY PLANNING AND DEVELOPMENTAL OFFICE\r\nStatus: \r\nToDate: June 12, 2022\r\nTrainingId: 15388\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762143	2024-07-05	11:07:32.3874220	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3647\r\nEmployeeTrainingId: 0\r\nFromDate: April 18, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-SDO BATANGAS\r\nStatus: \r\nToDate: April 18, 2022\r\nTrainingId: 15144\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762144	2024-07-05	11:07:32.3914086	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3647\r\nEmployeeTrainingId: 0\r\nFromDate: August 18, 2021\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: ACE IT UP CENTER FOR LEARNING AND DEVELOPMENT (UNDER SELF-DIRECTED TRACK)\r\nStatus: \r\nToDate: August 22, 2021\r\nTrainingId: 15391\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762147	2024-07-05	11:11:54.8993515	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ONLINE BOOKKEEPING WITH QUICKBOOKS ONLINE AND XERO\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762149	2024-07-05	11:14:46.7875578	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SERVICE SUPERIORITY WORKSHOP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762151	2024-07-05	11:15:56.4514277	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: COUNTERFEIT MONEY DETECTION SEMINAR\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762153	2024-07-05	11:17:36.7409363	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SIGNATURE IDENTIFICATION AND FRAUD DETECTION SEMINAR\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762154	2024-07-05	11:18:59.8919900	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION PROGRAM FOR NEW HIRES: ANTI MONEY LAUDERING MODULE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762157	2024-07-05	11:20:21.4917974	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DEVELOPING A T.E.A.M\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762160	2024-07-05	11:23:03.7002905	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAMP CONFERENCE OF ASPIRING MARKETING PROFESSIONALS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762180	2024-07-05	11:31:10.7711147	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CURRENT DEVELOPMENT IN ACCOUNTANCY PROFESSION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762183	2024-07-05	11:32:25.7687226	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3647\r\nEmployeeTrainingId: 0\r\nFromDate: August 06, 2021\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: FILIPINO VIRTUAL BOOKKEEPERS (VIA ZOOM)\r\nStatus: \r\nToDate: August 09, 2021\r\nTrainingId: 15395\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762184	2024-07-05	11:32:25.7727092	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3647\r\nEmployeeTrainingId: 0\r\nFromDate: September 03, 2020\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: PICPA, SOUTHERN TAGALOG (VIA ZOOM)\r\nStatus: \r\nToDate: September 05, 2020\r\nTrainingId: 15120\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762185	2024-07-05	11:32:25.7776928	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3647\r\nEmployeeTrainingId: 0\r\nFromDate: April 11, 2016\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BANK COMMERCE- MAIN OFFICE\r\nStatus: \r\nToDate: April 13, 2016\r\nTrainingId: 15397\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762186	2024-07-05	11:32:25.7816792	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3647\r\nEmployeeTrainingId: 0\r\nFromDate: May 09, 2009\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BANK OF COMMERCE- MAIN OFFICE\r\nStatus: \r\nToDate: May 09, 2009\r\nTrainingId: 15399\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762187	2024-07-05	11:32:25.7856658	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3647\r\nEmployeeTrainingId: 0\r\nFromDate: April 25, 2009\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BANK OF COMMERCE- MAIN OFFICE\r\nStatus: \r\nToDate: April 25, 2009\r\nTrainingId: 15401\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762188	2024-07-05	11:32:25.7906493	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3647\r\nEmployeeTrainingId: 0\r\nFromDate: February 03, 2009\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BANK OF COMMERCE- BATANGAS P. BURGOS BRANCH\r\nStatus: \r\nToDate: February 03, 2009\r\nTrainingId: 15402\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762189	2024-07-05	11:32:25.7946358	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3647\r\nEmployeeTrainingId: 0\r\nFromDate: October 10, 2008\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BATANGAS STATE UNIVERSITY- OFFICE OF THE ADMINISTRATION SERVICES TRAINING AND DEVELOPMENT OFFICE\r\nStatus: \r\nToDate: October 11, 2008\r\nTrainingId: 15405\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762190	2024-07-05	11:32:25.7996193	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3647\r\nEmployeeTrainingId: 0\r\nFromDate: February 08, 2008\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: AME ASSOCIATION OF MARKETING EDUCATORS OF THE PHILIPPINES, INC.\r\nStatus: \r\nToDate: February 08, 2008\r\nTrainingId: 15408\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762191	2024-07-05	11:32:25.8036058	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3647\r\nEmployeeTrainingId: 0\r\nFromDate: April 28, 2007\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: JCI JUNIOR CHAMBER INTERNATIONAL PHILIPPINES\r\nStatus: \r\nToDate: April 28, 2007\r\nTrainingId: 14811\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762192	2024-07-05	11:32:25.8085895	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3647\r\nEmployeeTrainingId: 0\r\nFromDate: November 06, 2006\r\nHours: 600\r\nNatureOfParticipation: OJT\r\nSponsoringAgency: COMMISSION ON AUDIT (COA)- GOVERNMENT SERVICE INSURANCE SYSTEM (GSIS) BATANGAS BRANCH OFFICE\r\nStatus: \r\nToDate: March 09, 2007\r\nTrainingId: 14928\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762193	2024-07-05	11:32:25.8125760	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3647\r\nEmployeeTrainingId: 0\r\nFromDate: November 06, 2006\r\nHours: 600\r\nNatureOfParticipation: OJT\r\nSponsoringAgency: GOVERNMENT SERVICE INSURANCE SYSTEM, (GSIS) BATANGAS BRANCH OFFICE \r\nStatus: \r\nToDate: March 09, 2007\r\nTrainingId: 3859\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764024	2024-07-09	11:10:09.8192159	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3671\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY PUBLIC SCHOOL TEACHERS AND EMPLOYEES ASSOCIATION\r\n	admin	Organizations	1
762163	2024-07-05	11:24:11.3520388	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3648\r\nEmployeeTrainingId: 0\r\nFromDate: January 16, 2023\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION IV -A CALABARZON\r\nStatus: \r\nToDate: January 20, 2023\r\nTrainingId: 15389\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762164	2024-07-05	11:24:11.3560388	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3648\r\nEmployeeTrainingId: 0\r\nFromDate: December 03, 2021\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SUPREME COURT OF THE PHILIPPINES - MCLE OFFICE\r\nStatus: \r\nToDate: December 05, 2021\r\nTrainingId: 15392\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762165	2024-07-05	11:24:11.3600389	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3648\r\nEmployeeTrainingId: 0\r\nFromDate: May 19, 2021\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV - A CALABARZON\r\nStatus: \r\nToDate: May 21, 2021\r\nTrainingId: 15393\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762166	2024-07-05	11:24:11.3640388	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3648\r\nEmployeeTrainingId: 0\r\nFromDate: December 09, 2019\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV - A CALABARZON\r\nStatus: \r\nToDate: December 13, 2019\r\nTrainingId: 15394\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762167	2024-07-05	11:24:11.3680387	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3648\r\nEmployeeTrainingId: 0\r\nFromDate: October 01, 2019\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: October 03, 2019\r\nTrainingId: 15396\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762168	2024-07-05	11:24:11.3720387	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3648\r\nEmployeeTrainingId: 0\r\nFromDate: January 22, 2019\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV - A CALABARZON\r\nStatus: \r\nToDate: January 24, 2019\r\nTrainingId: 15398\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762169	2024-07-05	11:24:11.3760383	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3648\r\nEmployeeTrainingId: 0\r\nFromDate: June 19, 2018\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV - A CALABARZON\r\nStatus: \r\nToDate: June 21, 2018\r\nTrainingId: 15400\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762170	2024-07-05	11:24:11.3800387	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3648\r\nEmployeeTrainingId: 0\r\nFromDate: May 23, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: JBDC OCCUPATIONAL HEALTH, SAFETY AND ENVIRONMENT CONSULTANCY\r\nStatus: \r\nToDate: May 24, 2019\r\nTrainingId: 15132\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762171	2024-07-05	11:24:11.3850390	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3648\r\nEmployeeTrainingId: 0\r\nFromDate: April 18, 2018\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: JBDC OCCUPATIONAL HEALTH, SAFETY AND ENVIRONMENT CONSULTANCY\r\nStatus: \r\nToDate: April 18, 2018\r\nTrainingId: 15407\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762172	2024-07-05	11:24:11.3890387	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3648\r\nEmployeeTrainingId: 0\r\nFromDate: March 22, 2018\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: JBDC OCCUPATIONAL HEALTH, SAFETY AND ENVIRONMENT CONSULTANCY\r\nStatus: \r\nToDate: March 22, 2018\r\nTrainingId: 15409\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762173	2024-07-05	11:24:11.3920387	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3648\r\nDateOfExamination: April 28, 2014\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: April 28, 2014\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 64383\r\nPlaceOfExamination: SUPREME COURT OF THE PHILIPPINES - MANILA\r\nRating: PASSED\r\nTitle: RA 1080 -BAR\r\n	admin	Eligibilities	1
762174	2024-07-05	11:24:11.3970387	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3648\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 04, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 0.00\r\nPositionHeld: ATTORNEY III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 21-2\r\nStatus: Casual\r\nToDate: July 05, 2024\r\n	admin	Experiences	1
762175	2024-07-05	11:25:04.6306351	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ISO 9001 : 2015 QMS AWARENESS TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762177	2024-07-05	11:26:23.9574494	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAININ WORKSHOP ON INVESTIGATION, INTELLIGENCE , APPRECIATION OF EVIDENCE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762179	2024-07-05	11:28:51.5407513	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING WORKSHOP ON INVESTIGATION , INTELLIGENCE , APPRECIATION OF EVIDENCE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762181	2024-07-05	11:31:38.6387168	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3648\r\nEmployeeTrainingId: 0\r\nFromDate: March 21, 2018\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: JBDC OCCUPATIONAL HEALTH, SAFETY AND ENVIRONMENT CONSULTANCY\r\nStatus: \r\nToDate: March 21, 2018\r\nTrainingId: 15411\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762182	2024-07-05	11:31:38.6467169	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3648\r\nEmployeeTrainingId: 0\r\nFromDate: January 23, 2017\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: JBDC OCCUPATIONAL HEALTH, SAFETY AND ENVIRONMENT CONSULTANCY\r\nStatus: \r\nToDate: January 27, 2017\r\nTrainingId: 15415\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762234	2024-07-05	11:37:22.5311160	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3648\r\nOrganizationId: 0\r\nOrganizationName: INTEGRATED BAR OF THE PHILIPPINES BATANGAS CHAPTER\r\n	admin	Organizations	1
762235	2024-07-05	11:37:22.5401156	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3648\r\nCharacterReferenceId: 0\r\nCompanyAddress: CUENCA, BATANGAS\r\nCompanyName: \r\nContactNumber: (43) 723 3586\r\nExtensionName: CESO V\r\nFirstName: HERMOGENES\r\nLastName: PANGANIBAN\r\nMiddleName:  M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762236	2024-07-05	11:37:22.5441159	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3648\r\nCharacterReferenceId: 0\r\nCompanyAddress: PADRE GARCIA, BATANGAS\r\nCompanyName: \r\nContactNumber: (43) 727 5506\r\nExtensionName: CESO V\r\nFirstName: FELIZARDO\r\nLastName: BOLANOS\r\nMiddleName: O\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762237	2024-07-05	11:37:22.5491158	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3648\r\nCharacterReferenceId: 0\r\nCompanyAddress: NAUJAN, ORIENTAL MINDORO\r\nCompanyName: \r\nContactNumber: 09175620438\r\nExtensionName: EDD\r\nFirstName: DONATO\r\nLastName: BUENO\r\nMiddleName: G\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762238	2024-07-05	11:37:22.5531160	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 82\r\nAddress2: \r\nBarangay: POBLACION 5\r\nBasicInformationId: 3648\r\nBirthDate: June 28, 1988\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MIKKOPAOLOPEREZ@GMAIL.COM\r\nExtensionName: \r\nFirstName: MICKO PAOLO\r\nFullName: MICKO PAOLO A. PEREZ\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437029344\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: ABANTE\r\nMobileNumber: 09175017184\r\nNationality: Filipino\r\nPermanentAddress1: 82\r\nPermanentAddress2: \r\nPermanentBarangay: POBLACION 5\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: P. HERRERA\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: P. HERRERA\r\nTIN: \r\nWeight: 59\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 82\r\nAddress2: \r\nBarangay: POBLACION 5\r\nBasicInformationId: 3648\r\nBirthDate: June 28, 1988\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MIKKOPAOLOPEREZ@GMAIL.COM\r\nExtensionName: \r\nFirstName: MICKO PAOLO\r\nFullName: MICKO PAOLO A. PEREZ\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: 1211-5492-4438\r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437029344\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: ABANTE\r\nMobileNumber: 09175017184\r\nNationality: Filipino\r\nPermanentAddress1: 82\r\nPermanentAddress2: \r\nPermanentBarangay: POBLACION 5\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: P. HERRERA\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025240759-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: P. HERRERA\r\nTIN: 277-633-295-0000\r\nWeight: 59\r\nZipCode: 4200\r\n	admin	BasicInformation	1
762239	2024-07-05	11:37:22.5571157	<Undetected>	Update	BasicInformationId: 3648\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3445\r\n	BasicInformationId: 3648\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: \r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3445\r\n	admin	Questionnaires	1
762257	2024-07-05	11:55:08.2827422	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 53 LOT 19\r\nAddress2: EL SITIO SUBDIVISION\r\nBarangay: DUMANTAY\r\nBasicInformationId: 0\r\nBirthDate: October 23, 1973\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MARIAROSEL.ISLETA@DEPED. GOV.PH\r\nExtensionName: \r\nFirstName: MARIA ROSEL\r\nFullName: MARIA ROSEL D. ISLETA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ISLETA\r\nMaidenName: \r\nMiddleName: DRIZ\r\nMobileNumber: 09971284850\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 53 LOT 19\r\nPermanentAddress2: EL SITIO SUBDIVISION\r\nPermanentBarangay: DUMANTAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: THIRD STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: THIRD STREET\r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
762366	2024-07-05	13:46:52.7091016	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3653\r\nEmployeeTrainingId: 0\r\nFromDate: November 12, 2023\r\nHours: 16\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: CITY TRAVEL HOTEL KISAD ROAD, BAGUIO CITY\r\nStatus: \r\nToDate: December 12, 2023\r\nTrainingId: 15418\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762194	2024-07-05	11:32:25.8165626	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3647\r\nEmployeeTrainingId: 0\r\nFromDate: August 24, 2006\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: JUNIOR PHILIPPINES INSTITUTE OF ACCOUNTANTS\r\nStatus: \r\nToDate: August 24, 2006\r\nTrainingId: 15416\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762240	2024-07-05	11:48:32.7527983	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3647\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE AND SKILLS IN RESEARCH WORK\r\n	admin	Skills	1
762241	2024-07-05	11:48:32.7597745	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3647\r\nSkillId: 0\r\nSkillName: GOOD COMMUNICATION FACILITY\r\n	admin	Skills	1
762242	2024-07-05	11:48:32.7637612	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3647\r\nSkillId: 0\r\nSkillName: WITH CIVIL SERVICE PROFESSIONAL ELIGIBILITY\r\n	admin	Skills	1
762243	2024-07-05	11:48:32.7727313	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3647\r\nRecognitionId: 0\r\nRecognitionName: MERITORIOUS PERFORMANCE AWARD- DEPED SDO BATANGAS CITY\r\n	admin	Recognitions	1
762244	2024-07-05	11:48:32.7767178	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3647\r\nRecognitionId: 0\r\nRecognitionName: DOCUMENTER- 1ST GAWAD KAWANI- - DEPED SDO BATANGAS CITY\r\n	admin	Recognitions	1
762245	2024-07-05	11:48:32.7807045	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3647\r\nRecognitionId: 0\r\nRecognitionName: DEDICATED EMPLOYEES WITHOUT ABSENCES, LEAVING AND TARDINESS OCTOBER 2023 - DEPED SDO BATANGAS CITY\r\n	admin	Recognitions	1
762246	2024-07-05	11:48:32.7856872	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3647\r\nOrganizationId: 0\r\nOrganizationName: MEMBER- RISKY MANAGEMENT TEAM- DEPED SDO BATANGAS CITY\r\n	admin	Organizations	1
762247	2024-07-05	11:48:32.7906707	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3647\r\nOrganizationId: 0\r\nOrganizationName: MEMBER- LEARNING AND DEVELOPMENT OF PRIME HRM - DEPED SDO BATANGAS CITY\r\n	admin	Organizations	1
762248	2024-07-05	11:48:32.7946570	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3647\r\nOrganizationId: 0\r\nOrganizationName: MEMBER- LEARNING AND DEVELOPMENT OF PRIME HRM MATURITY LEVEL 2 - DEPED SDO BATANGAS CITY\r\n	admin	Organizations	1
762249	2024-07-05	11:48:32.7996406	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3647\r\nOrganizationId: 0\r\nOrganizationName: CHAIRMAN, COMMITTEE ONN AUDIT- AMBULONG RURAL WORKS AND SANITATION ASSOCIATION\r\n	admin	Organizations	1
762250	2024-07-05	11:48:32.8046248	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3647\r\nCharacterReferenceId: 0\r\nCompanyAddress:  DEPED SDO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: (043) 722-0715\r\nExtensionName: \r\nFirstName: MARIA JOSEFINA\r\nLastName: LAGMAN\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762251	2024-07-05	11:48:32.8086114	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3647\r\nCharacterReferenceId: 0\r\nCompanyAddress:  DEPED SDO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: (043) 723-3586\r\nExtensionName: \r\nFirstName: HERMOGENES \r\nLastName: PANGANIBAN\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762252	2024-07-05	11:48:32.8125979	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3647\r\nCharacterReferenceId: 0\r\nCompanyAddress:  DEPED SDO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: (043) 723-8687\r\nExtensionName: \r\nFirstName: RODELIA\r\nLastName: MACALALAD\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762253	2024-07-05	11:48:32.8175814	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO BULIHAN\r\nBarangay: AMBULONG\r\nBasicInformationId: 3647\r\nBirthDate: June 04, 1987\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: josephine.catapang@deped.gov.ph\r\nExtensionName: \r\nFirstName: JOSEPHINE\r\nFullName: JOSEPHINE DL. CATAPANG\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CATAPANG\r\nMaidenName: \r\nMiddleName: DE LEON\r\nMobileNumber: 09778363510\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO BULIHAN\r\nPermanentBarangay: AMBULONG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 57\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO BULIHAN\r\nBarangay: AMBULONG\r\nBasicInformationId: 3647\r\nBirthDate: June 04, 1987\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: josephine.catapang@deped.gov.ph\r\nExtensionName: \r\nFirstName: JOSEPHINE\r\nFullName: JOSEPHINE DL. CATAPANG\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: 1210-5823-5216\r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CATAPANG\r\nMaidenName: \r\nMiddleName: DE LEON\r\nMobileNumber: 09778363510\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO BULIHAN\r\nPermanentBarangay: AMBULONG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 06-050113707-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1968268-2\r\nStreetName: \r\nTIN: 278-329-970-0000\r\nWeight: 57\r\nZipCode: 4200\r\n	admin	BasicInformation	1
762254	2024-07-05	11:48:32.8215681	<Undetected>	Update	BasicInformationId: 3647\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3444\r\n	BasicInformationId: 3647\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: RESIGNATION- BANK OF COMMERCE\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3444\r\n	admin	Questionnaires	1
762258	2024-07-05	11:55:08.2967417	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3650\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1980\r\nDateTo: 1986\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS CITY SOUTH ELEMENTARY SCHOOL \r\nYearGraduated: 1986\r\n	admin	EducationalBackgrounds	1
762197	2024-07-05	11:34:24.8369929	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3649\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15045\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762198	2024-07-05	11:34:24.8409797	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3649\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762199	2024-07-05	11:34:24.8459629	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3649\r\nEmployeeTrainingId: 0\r\nFromDate: December 10, 2014\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A \r\nStatus: \r\nToDate: December 10, 2014\r\nTrainingId: 15404\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762200	2024-07-05	11:34:24.8499496	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3649\r\nEmployeeTrainingId: 0\r\nFromDate: November 26, 2014\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 28, 2014\r\nTrainingId: 15406\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762201	2024-07-05	11:34:24.8539362	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3649\r\nEmployeeTrainingId: 0\r\nFromDate: October 08, 2014\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: October 09, 2014\r\nTrainingId: 15410\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762202	2024-07-05	11:34:24.8589196	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3649\r\nEmployeeTrainingId: 0\r\nFromDate: December 05, 2013\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A\r\nStatus: \r\nToDate: December 06, 2013\r\nTrainingId: 15412\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762203	2024-07-05	11:34:24.8629062	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3649\r\nEmployeeTrainingId: 0\r\nFromDate: June 28, 2013\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: June 28, 2013\r\nTrainingId: 15414\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762204	2024-07-05	11:34:24.8678896	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: September 02, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 11,987.00\r\nPositionHeld: ADMINISTRATIVE AIDE IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-8\r\nStatus: Permanent\r\nToDate: May 24, 2015\r\n	admin	Experiences	1
762205	2024-07-05	11:34:24.8718763	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 11,869.00\r\nPositionHeld: ADMINISTRATIVE AIDE IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-7\r\nStatus: Permanent\r\nToDate: September 01, 2014\r\n	admin	Experiences	1
762206	2024-07-05	11:34:24.8758629	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: September 02, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 11,189.00\r\nPositionHeld: ADMINISTRATIVE AIDE IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-7\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
762207	2024-07-05	11:34:24.8808461	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 11,045.00\r\nPositionHeld: ADMINISTRATIVE AIDE IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-6\r\nStatus: Permanent\r\nToDate: September 01, 2011\r\n	admin	Experiences	1
762208	2024-07-05	11:34:24.8848329	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 10,339.00\r\nPositionHeld: ADMINISTRATIVE AIDE IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-6\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
762209	2024-07-05	11:34:24.8898162	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 9,634.00\r\nPositionHeld: ADMINISTRATIVE AIDE IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-6\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
762210	2024-07-05	11:34:24.8938030	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: September 02, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 8,928.00\r\nPositionHeld: ADMINISTRATIVE AIDE IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-6\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
762211	2024-07-05	11:34:24.8987862	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 8,710.00\r\nPositionHeld: ADMINISTRATIVE AIDE IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-5\r\nStatus: Permanent\r\nToDate: September 01, 2008\r\n	admin	Experiences	1
762212	2024-07-05	11:34:24.9027729	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 30, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 7,918.00\r\nPositionHeld: ADMINISTRATIVE AIDE IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-5\r\nStatus: Permanent\r\nToDate: July 01, 2007\r\n	admin	Experiences	1
762213	2024-07-05	11:34:24.9067596	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 7,198.00\r\nPositionHeld: ADMINISTRATIVE AIDE IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-5\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
762214	2024-07-05	11:34:24.9117428	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: March 01, 2004\r\nIsGovernmentService: True\r\nMonthlySalary: 7,022.00\r\nPositionHeld: CLERK II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-4\r\nStatus: Permanent\r\nToDate: December 31, 2005\r\n	admin	Experiences	1
762215	2024-07-05	11:34:24.9167261	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2003\r\nIsGovernmentService: True\r\nMonthlySalary: 7,022.00\r\nPositionHeld: CLERK II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-4\r\nStatus: Permanent\r\nToDate: February 29, 2004\r\n	admin	Experiences	1
762216	2024-07-05	11:34:24.9217095	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 6,851.00\r\nPositionHeld: CLERK II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-3\r\nStatus: Permanent\r\nToDate: December 31, 2002\r\n	admin	Experiences	1
762217	2024-07-05	11:34:24.9256961	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 07, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 6,522.00\r\nPositionHeld: CLERK II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-1\r\nStatus: Permanent\r\nToDate: December 31, 2001\r\n	admin	Experiences	1
762218	2024-07-05	11:34:24.9296829	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 6,211.00\r\nPositionHeld: CLERK II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-1\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
762219	2024-07-05	11:34:24.9346661	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 5,656.00\r\nPositionHeld: CLERK II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-1\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
762220	2024-07-05	11:34:24.9386528	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 5,646.00\r\nPositionHeld: CLERK II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-1\r\nStatus: Permanent\r\nToDate: December 31, 1998\r\n	admin	Experiences	1
762439	2024-07-05	14:25:58.6682669	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP FOR THE CONSOLIDATION OF FY 2011 YEAR END FINANCIAL STATEMENTS AND TRAINING NEW FINANCIAL STAFF ON THE USAGE OF BMS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762221	2024-07-05	11:34:24.9426394	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: November 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 5,646.00\r\nPositionHeld: CLERK II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-1\r\nStatus: Permanent\r\nToDate: December 31, 1997\r\n	admin	Experiences	1
762222	2024-07-05	11:34:24.9476229	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 5,646.00\r\nPositionHeld: CLERK II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-1\r\nStatus: Permanent\r\nToDate: October 31, 1997\r\n	admin	Experiences	1
762223	2024-07-05	11:34:24.9516094	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 5,050.00\r\nPositionHeld: CLERK II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-1\r\nStatus: Permanent\r\nToDate: December 31, 1996\r\n	admin	Experiences	1
762224	2024-07-05	11:34:24.9555961	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 4,050.00\r\nPositionHeld: CLERK II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-1\r\nStatus: Permanent\r\nToDate: December 31, 1995\r\n	admin	Experiences	1
762225	2024-07-05	11:34:24.9605796	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 3,050.00\r\nPositionHeld: CLERK II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-1\r\nStatus: Permanent\r\nToDate: December 31, 1994\r\n	admin	Experiences	1
762226	2024-07-05	11:34:24.9645660	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: September 01, 1993\r\nIsGovernmentService: True\r\nMonthlySalary: 2,250.00\r\nPositionHeld: CLERK II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-1\r\nStatus: Permanent\r\nToDate: December 31, 1993\r\n	admin	Experiences	1
762227	2024-07-05	11:34:24.9685527	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 05, 1989\r\nIsGovernmentService: True\r\nMonthlySalary: 2,156.00\r\nPositionHeld: CLERK I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-1\r\nStatus: Permanent\r\nToDate: August 31, 1993\r\n	admin	Experiences	1
762228	2024-07-05	11:34:24.9735360	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3649\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 01, 1989\r\nIsGovernmentService: True\r\nMonthlySalary: 2,156.00\r\nPositionHeld: CLERICAL AIDE \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-1\r\nStatus: Permanent\r\nToDate: July 04, 1989\r\n	admin	Experiences	1
762229	2024-07-05	11:34:24.9775229	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3649\r\nCharacterReferenceId: 0\r\nCompanyAddress: NAUJAN, ORIENTAL MINDORO\r\nCompanyName: \r\nContactNumber: 09175620438\r\nExtensionName: \r\nFirstName: DONATO\r\nLastName: BUENO\r\nMiddleName: G\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762230	2024-07-05	11:34:24.9825061	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3649\r\nCharacterReferenceId: 0\r\nCompanyAddress: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 043-702-2094\r\nExtensionName: \r\nFirstName: LOURDES\r\nLastName: ZARASAPE\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762231	2024-07-05	11:34:24.9864927	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3649\r\nCharacterReferenceId: 0\r\nCompanyAddress: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 043-702-2094\r\nExtensionName: \r\nFirstName: MIKKO PAOLO\r\nLastName: PEREZ\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762259	2024-07-05	11:55:08.2967417	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3650\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1986\r\nDateTo: 1990\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL \r\nYearGraduated: 1990\r\n	admin	EducationalBackgrounds	1
763666	2024-07-09	08:39:27.9395828	<Undetected>	Delete	BasicInformationId: 0\r\nCustomEmployeeGroupId: 0\r\nDisplayName: MAYBELLE P. LONTOC\r\nEmployeeGroupId: 1\r\nId: 35\r\nPassword: ***\r\nUsername: XNZWCZ7F\r\n	BasicInformationId: \r\nCustomEmployeeGroupId: \r\nDisplayName: \r\nEmployeeGroupId: \r\nId: \r\nPassword: \r\nUsername: \r\n	admin	Users	1
762232	2024-07-05	11:34:24.9914761	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLK 8 LOT 20\r\nAddress2: TIERRA VERDE SUBD.\r\nBarangay: PALOOCAN WEST\r\nBasicInformationId: 3649\r\nBirthDate: July 08, 1962\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: maisabel.magpantay001@deped.gov.ph\r\nExtensionName: \r\nFirstName: MA. ISABEL\r\nFullName: MA. ISABEL B. MAGPANTAY\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MAGPANTAY\r\nMaidenName: \r\nMiddleName: BARZA\r\nMobileNumber: 06684929508\r\nNationality: Filipino\r\nPermanentAddress1: BLK 8 LOT 20\r\nPermanentAddress2: TIERRA VERDE SUBD.\r\nPermanentBarangay: PALOOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ST. PAUL STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ST. PAUL STREET\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK 8 LOT 20\r\nAddress2: TIERRA VERDE SUBD.\r\nBarangay: PALOOCAN WEST\r\nBasicInformationId: 3649\r\nBirthDate: July 08, 1962\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: maisabel.magpantay001@deped.gov.ph\r\nExtensionName: \r\nFirstName: MA. ISABEL\r\nFullName: MA. ISABEL B. MAGPANTAY\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02002896624\r\nHDMF: 1490-0086-8488\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MAGPANTAY\r\nMaidenName: \r\nMiddleName: BARZA\r\nMobileNumber: 06684929508\r\nNationality: Filipino\r\nPermanentAddress1: BLK 8 LOT 20\r\nPermanentAddress2: TIERRA VERDE SUBD.\r\nPermanentBarangay: PALOOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ST. PAUL STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000010247-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: ST. PAUL STREET\r\nTIN: 124-513-759-0000\r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
762233	2024-07-05	11:34:24.9954627	<Undetected>	Update	BasicInformationId: 3649\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3446\r\n	BasicInformationId: 3649\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3446\r\n	admin	Questionnaires	1
762255	2024-07-05	11:51:30.0874801	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF SCIENCE IN FINANCIAL MANAGEMENT\r\nLevel: College\r\n	admin	Courses	1
762279	2024-07-05	11:57:31.9107994	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BARANGAY MALALIM\r\nBasicInformationId: 0\r\nBirthDate: September 15, 1983\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: madonna.ebora@deped.gov.ph\r\nExtensionName: \r\nFirstName: MADONNA\r\nFullName: MADONNA M. EBORA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09369249796\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BARANGAY MALALIM\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO IBABA\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO IBABA\r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
762280	2024-07-05	11:57:31.9282289	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3651\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1991\r\nDateTo: 1996\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES\r\nYearGraduated: 1996\r\n	admin	EducationalBackgrounds	1
762281	2024-07-05	11:57:31.9282289	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3651\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 2000\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY \r\nYearGraduated: 2000\r\n	admin	EducationalBackgrounds	1
762282	2024-07-05	11:57:31.9282289	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3651\r\nCourse: \r\nCourseId: 1289\r\nCourseOrMajor: \r\nDateFrom: 2000\r\nDateTo: 2004\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2004\r\n	admin	EducationalBackgrounds	1
762283	2024-07-05	11:57:31.9282289	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3651\r\nCourse: \r\nCourseId: 1256\r\nCourseOrMajor: \r\nDateFrom: 2022\r\nDateTo: 2024\r\nEducationalAttainment: 27\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
762284	2024-07-05	11:57:31.9292270	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3651\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DOMINGO\r\nFullName: DOMINGO EBORA EBORA\r\nGender: Male\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: OFW\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
762285	2024-07-05	11:57:31.9292270	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3651\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FLORENTINO\r\nFullName: FLORENTINO EBORA MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
762442	2024-07-05	14:29:17.2871402	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL WORKSHOP ONTHE PREPARATION OF FY 2013 BUDGET ESTIMATES AT TAGAYTAY INTERNATIONAL CONVENTION CENTER\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762256	2024-07-05	11:55:07.7049552	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO PULO\r\nBarangay: TINGGA ITAAS\r\nBasicInformationId: 3645\r\nBirthDate: June 03, 1982\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: kristina.rivera@deped.gov.ph\r\nExtensionName: \r\nFirstName: KRISTINA\r\nFullName: KRISTINA M. RIVERA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02004561135\r\nHDMF: 1211-2016-8871\r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RIVERA\r\nMaidenName: \r\nMiddleName: MEMBROT\r\nMobileNumber: 09770017241\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO PULO\r\nPermanentBarangay: TINGGA ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 7\r\nPermanentZipCode: 4200\r\nPhilhealth: 19-026772641-1\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 7\r\nTIN: 453-461-632-0000\r\nWeight: 84\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO PULO\r\nBarangay: TINGGA ITAAS\r\nBasicInformationId: 3645\r\nBirthDate: June 03, 1982\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: kristina.rivera@deped.gov.ph\r\nExtensionName: \r\nFirstName: KRISTINA\r\nFullName: KRISTINA M. RIVERA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02004561135\r\nHDMF: 1211-2016-8871\r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RIVERA\r\nMaidenName: \r\nMiddleName: MEMBROT\r\nMobileNumber: 09770017241\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO PULO\r\nPermanentBarangay: TINGGA ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 7\r\nPermanentZipCode: 4200\r\nPhilhealth: 19-026772641-1\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1371000-0\r\nStreetName: PUROK 7\r\nTIN: 453-461-632-0000\r\nWeight: 84\r\nZipCode: 4200\r\n	admin	BasicInformation	1
762260	2024-07-05	11:55:08.2967417	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3650\r\nCourse: \r\nCourseId: 1250\r\nCourseOrMajor: \r\nDateFrom: 1990\r\nDateTo: 1994\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: LYCEUM OF THE PHILIPPINES UNIVERSITY- BATANGAS ( FORMER LYCEUM OF BATANGAS )\r\nYearGraduated: 1994\r\n	admin	EducationalBackgrounds	1
762261	2024-07-05	11:55:08.2977416	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3650\r\nBirthDate: June 08, 1999\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JEROME TRISTAN\r\nFullName: JEROME TRISTAN D ISLETA\r\nGender: Female\r\nLastName: ISLETA\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762262	2024-07-05	11:55:08.2977416	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3650\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JULIO EFREN\r\nFullName: JULIO EFREN CUETO DRIZ\r\nGender: Male\r\nLastName: DRIZ\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
762263	2024-07-05	11:55:08.2977416	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3650\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: AMELIA\r\nFullName: AMELIA AGLERON DELGADO\r\nGender: Male\r\nLastName: DELGADO\r\nMaidenName: \r\nMiddleName: AGLERON\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
762264	2024-07-05	11:55:08.2977416	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3650\r\nBirthDate: October 28, 1996\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RAZELLE GAE\r\nFullName: RAZELLE GAE D ISLETA\r\nGender: Male\r\nLastName: ISLETA\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762265	2024-07-05	11:55:08.2977416	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3650\r\nBirthDate: June 08, 1999\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JEROME TRISTAN\r\nFullName: JEROME TRISTAN D ISLETA\r\nGender: Female\r\nLastName: ISLETA\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762266	2024-07-05	11:55:08.2977416	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3650\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GARIZALDY\r\nFullName: GARIZALDY AVERION ISLETA\r\nGender: Male\r\nLastName: ISLETA\r\nMaidenName: \r\nMiddleName: AVERION\r\nOccupation: GOVERNMENT EMPLOYEE \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
762267	2024-07-05	11:55:08.2977416	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3650\r\nBirthDate: January 18, 2007\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GABRIEL BRIAN\r\nFullName: GABRIEL BRIAN D ISLETA\r\nGender: Male\r\nLastName: ISLETA\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762268	2024-07-05	11:55:08.2977416	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3650\r\nDateOfExamination: February 25, 1995\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: February 25, 1995\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS NATIONAL HIGH  SCHOOL \r\nRating: 83.51% \r\nTitle: CAREER SERVICE PROFESSIONAL  \r\n	admin	Eligibilities	1
762269	2024-07-05	11:55:08.2987411	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3650\r\nCompanyInstitution:  DEPARTMENT OF EDUCATION- SDO BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 37,380.00\r\nPositionHeld: ADMINISTRATIVE OFFICER IV \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-3\r\nStatus: Permanent\r\nToDate: July 05, 2024\r\n	admin	Experiences	1
762270	2024-07-05	11:55:08.2987411	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3650\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
762286	2024-07-05	11:57:31.9292270	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3651\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: QUINTINA\r\nFullName: QUINTINA EBORA PANGANIBAN\r\nGender: Female\r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
762367	2024-07-05	13:46:52.7130883	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3653\r\nEmployeeTrainingId: 0\r\nFromDate: November 23, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BATANGAS CITY SPORTS COLISEUM\r\nStatus: \r\nToDate: November 23, 2023\r\nTrainingId: 15107\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762271	2024-07-05	11:57:04.0659869	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 53 LOT 19\r\nAddress2: EL SITIO SUBDIVISION\r\nBarangay: DUMANTAY\r\nBasicInformationId: 3650\r\nBirthDate: October 23, 1973\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MARIAROSEL.ISLETA@DEPED. GOV.PH\r\nExtensionName: \r\nFirstName: MARIA ROSEL\r\nFullName: MARIA ROSEL D. ISLETA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ISLETA\r\nMaidenName: \r\nMiddleName: DRIZ\r\nMobileNumber: 09971284850\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 53 LOT 19\r\nPermanentAddress2: EL SITIO SUBDIVISION\r\nPermanentBarangay: DUMANTAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: THIRD STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: THIRD STREET\r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 53 LOT 19\r\nAddress2: EL SITIO SUBDIVISION\r\nBarangay: DUMANTAY\r\nBasicInformationId: 3650\r\nBirthDate: October 23, 1973\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MARIAROSEL.ISLETA@DEPED. GOV.PH\r\nExtensionName: \r\nFirstName: MARIA ROSEL\r\nFullName: MARIA ROSEL D. ISLETA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ISLETA\r\nMaidenName: \r\nMiddleName: DRIZ\r\nMobileNumber: 09971284850\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 53 LOT 19\r\nPermanentAddress2: EL SITIO SUBDIVISION\r\nPermanentBarangay: DUMANTAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: THIRD STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: THIRD STREET\r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
762272	2024-07-05	11:57:04.0689870	<Undetected>	Update	BasicInformationId: 3650\r\nBirthDate: June 08, 1999\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3433\r\nExtensionName: \r\nFirstName: JEROME TRISTAN\r\nFullName: JEROME TRISTAN D ISLETA\r\nGender: Female\r\nLastName: ISLETA\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3650\r\nBirthDate: June 08, 1999\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3433\r\nExtensionName: \r\nFirstName: JEROME TRISTAN\r\nFullName: JEROME TRISTAN ISLETA\r\nGender: Female\r\nLastName: ISLETA\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762273	2024-07-05	11:57:04.0729869	<Undetected>	Update	BasicInformationId: 3650\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3434\r\nExtensionName: \r\nFirstName: JULIO EFREN\r\nFullName: JULIO EFREN CUETO DRIZ\r\nGender: Male\r\nLastName: DRIZ\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3650\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3434\r\nExtensionName: \r\nFirstName: JULIO EFREN\r\nFullName: JULIO EFREN DRIZ\r\nGender: Male\r\nLastName: DRIZ\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
762274	2024-07-05	11:57:04.0819870	<Undetected>	Update	BasicInformationId: 3650\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3435\r\nExtensionName: \r\nFirstName: AMELIA\r\nFullName: AMELIA AGLERON DELGADO\r\nGender: Male\r\nLastName: DELGADO\r\nMaidenName: \r\nMiddleName: AGLERON\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3650\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3435\r\nExtensionName: \r\nFirstName: AMELIA\r\nFullName: AMELIA DELGADO\r\nGender: Male\r\nLastName: DELGADO\r\nMaidenName: \r\nMiddleName: AGLERON\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
762275	2024-07-05	11:57:04.0859869	<Undetected>	Update	BasicInformationId: 3650\r\nBirthDate: October 28, 1996\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3436\r\nExtensionName: \r\nFirstName: RAZELLE GAE\r\nFullName: RAZELLE GAE D ISLETA\r\nGender: Male\r\nLastName: ISLETA\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3650\r\nBirthDate: October 28, 1996\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3436\r\nExtensionName: \r\nFirstName: RAZELLE GAE\r\nFullName: RAZELLE GAE ISLETA\r\nGender: Male\r\nLastName: ISLETA\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762276	2024-07-05	11:57:04.0919869	<Undetected>	Update	BasicInformationId: 3650\r\nBirthDate: January 18, 2007\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3439\r\nExtensionName: \r\nFirstName: GABRIEL BRIAN\r\nFullName: GABRIEL BRIAN D ISLETA\r\nGender: Male\r\nLastName: ISLETA\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3650\r\nBirthDate: January 18, 2007\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3439\r\nExtensionName: \r\nFirstName: GABRIEL BRIAN\r\nFullName: GABRIEL BRIAN ISLETA\r\nGender: Male\r\nLastName: ISLETA\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762277	2024-07-05	11:57:04.0959869	<Undetected>	Update	BasicInformationId: 3650\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3447\r\n	BasicInformationId: 3650\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3447\r\n	admin	Questionnaires	1
762278	2024-07-05	11:57:04.1009870	<Undetected>	Delete	BasicInformationId: 3650\r\nBirthDate: June 08, 1999\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3437\r\nExtensionName: \r\nFirstName: JEROME TRISTAN\r\nFullName: JEROME TRISTAN D ISLETA\r\nGender: Female\r\nLastName: ISLETA\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	admin	EmployeeRelatives	1
762291	2024-07-05	11:57:43.7384214	<Undetected>	Update	BasicInformationId: 3650\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3438\r\nExtensionName: \r\nFirstName: GARIZALDY\r\nFullName: GARIZALDY AVERION ISLETA\r\nGender: Male\r\nLastName: ISLETA\r\nMaidenName: \r\nMiddleName: AVERION\r\nOccupation: GOVERNMENT EMPLOYEE \r\nRelationship: Husband\r\n	BasicInformationId: 3650\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3438\r\nExtensionName: \r\nFirstName: GARIZALDY\r\nFullName: GARIZALDY ISLETA\r\nGender: Male\r\nLastName: ISLETA\r\nMaidenName: \r\nMiddleName: AVERION\r\nOccupation: GOVERNMENT EMPLOYEE \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
762308	2024-07-05	13:24:13.0828453	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3650\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - SDO BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 27,566.00\r\nPositionHeld: ADMINISTRATIVE OFFICER IV \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
762368	2024-07-05	13:46:52.7180719	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3653\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BULWAGANG ALA EH, SDO BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762287	2024-07-05	11:57:31.9292270	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3651\r\nBirthDate: April 23, 2012\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DAWN\r\nFullName: DAWN M EBORA\r\nGender: Female\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762288	2024-07-05	11:57:31.9292270	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3651\r\nDateOfExamination: October 17, 2004\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: October 17, 2004\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS NATIONAL HIGH SCHOOL\r\nRating: 80.5%\r\nTitle: CAREER SERVICE PROFESSIONAL EXAMINATION\r\n	admin	Eligibilities	1
762289	2024-07-05	11:57:31.9292270	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3651\r\nDateOfExamination: October 20, 2002\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 7\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: October 20, 2002\r\nLevelOfEligibility: First Level (Subprofessional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS NATIONAL HIGH SCHOOL\r\nRating: 84.8%\r\nTitle: CAREER SERVICE SUB PROFESSIONAL EXAMINATION\r\n	admin	Eligibilities	1
762290	2024-07-05	11:57:31.9292270	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3651\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
762301	2024-07-05	13:24:13.0519486	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3650\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - SDO BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 35,858.00\r\nPositionHeld: ADMINISTRATIVE OFFICER  IV \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-3\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
762302	2024-07-05	13:24:13.0559356	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3650\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - SDO BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: May 25, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 34,336.00\r\nPositionHeld: ADMINISTRATIVE OFFICER IV \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-3\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
762303	2024-07-05	13:24:13.0599222	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3650\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - SDO BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 33,953.00\r\nPositionHeld: ADMINISTRATIVE OFFICER IV \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-2\r\nStatus: Permanent\r\nToDate: May 24, 2021\r\n	admin	Experiences	1
762304	2024-07-05	13:24:13.0659023	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3650\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - SDO BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 32,431.00\r\nPositionHeld: ADMINISTRATIVE OFFICER IV \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-2\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
762305	2024-07-05	13:24:13.0698888	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3650\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - SDO BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 30,909.00\r\nPositionHeld: ADMINISTRATIVE OFFICER IV \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-2\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
762306	2024-07-05	13:24:13.0748722	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3650\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - SDO BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: May 25, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 29,359.00\r\nPositionHeld: ADMINISTRATIVE OFFICER IV \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-2\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
762307	2024-07-05	13:24:13.0788588	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3650\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - SDO BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 29,010.00\r\nPositionHeld: ADMINSTRATIVE OFFICER IV \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-1\r\nStatus: Permanent\r\nToDate: May 24, 2018\r\n	admin	Experiences	1
762394	2024-07-05	14:05:18.1023628	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: UDEMY- MICROSOFT ACCESS 2016 MASTER CLASS: BEGINNER TO ADVANCED\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762292	2024-07-05	13:08:20.2320500	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 142-C\r\nAddress2: \r\nBarangay: TULO\r\nBasicInformationId: 0\r\nBirthDate: January 05, 1986\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSEANNEALYSSA.GABIA@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSE ANNE ALYSSA\r\nFullName: ROSE ANNE ALYSSA F. GABIA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.66\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GABIA\r\nMaidenName: \r\nMiddleName: FARAON\r\nMobileNumber: 09156422436\r\nNationality: Filipino\r\nPermanentAddress1: 142-C\r\nPermanentAddress2: \r\nPermanentBarangay: TULO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO MANGGAHAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: SITIO MANGGAHAN\r\nTIN: \r\nWeight: 57\r\nZipCode: 4200\r\n	admin	BasicInformation	1
762293	2024-07-05	13:08:20.2443085	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3652\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 0437237319\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CARLO\r\nFullName: CARLO LONTOC GABIA\r\nGender: Male\r\nLastName: GABIA\r\nMaidenName: \r\nMiddleName: LONTOC\r\nOccupation: ADMINISTRATIVE ASSISTANT III\r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
762294	2024-07-05	13:08:20.2443085	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3652\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: TEOFILO\r\nFullName: TEOFILO ESPINO FARAON\r\nGender: Male\r\nLastName: FARAON\r\nMaidenName: \r\nMiddleName: ESPINO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
762295	2024-07-05	13:08:20.2443085	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3652\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: TESSIE\r\nFullName: TESSIE FALCESO FARAON\r\nGender: Female\r\nLastName: FARAON\r\nMaidenName: FALLURIN\r\nMiddleName: FALCESO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
762296	2024-07-05	13:08:20.2443085	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3652\r\nBirthDate: March 18, 2012\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CARLEEN AIESHA\r\nFullName: CARLEEN AIESHA F GABIA\r\nGender: Female\r\nLastName: GABIA\r\nMaidenName: \r\nMiddleName: F\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762297	2024-07-05	13:08:20.2443085	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3652\r\nBirthDate: August 10, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALYXANDRE\r\nFullName: ALYXANDRE F GABIA\r\nGender: Male\r\nLastName: GABIA\r\nMaidenName: \r\nMiddleName: F\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762298	2024-07-05	13:08:20.2443085	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3652\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
762299	2024-07-05	13:21:21.8526951	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CURRICULUM IMPLEMENTATION DIVISION YEAR END PERFORMANCE REVIEW AND PLANNING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762300	2024-07-05	13:22:53.1007178	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CONDUCT OF FIRST GAWAD KAWANI AWARDEE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762326	2024-07-05	13:31:49.1589006	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 DIVISION ORIENTATION OF THE KEY LEADERS ON THE IMPLEMENTATION OF NATIONAL LEARNING CAMP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762327	2024-07-05	13:34:57.8124730	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CID FIRST QUARTER PROGRAM IMPLEMENTATION REVIEW PERFORMANCE PLANNNING AND COMMITTMENT AND PERFORMANCE, MONITORING AND COACHING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762331	2024-07-05	13:44:25.0650252	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3652\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1993\r\nDateTo: 1999\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: CALICANTO ELEMENTARY SCHOOL\r\nYearGraduated: 1999\r\n	admin	EducationalBackgrounds	1
762332	2024-07-05	13:44:25.0690250	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3652\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1999\r\nDateTo: 2003\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL \r\nYearGraduated: 2003\r\n	admin	EducationalBackgrounds	1
762309	2024-07-05	13:24:13.0868321	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3650\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - SDO BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 26,192.00\r\nPositionHeld: ADMINISTRATIVE OFFICER IV \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
762310	2024-07-05	13:24:13.0918155	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3650\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - SDO BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: May 25, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 24,887.00\r\nPositionHeld: ADMINISTRATIVE OFFICER IV \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
762311	2024-07-05	13:24:13.0958020	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3650\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: July 03, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 10,716.00\r\nPositionHeld: CLERK I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 3-4\r\nStatus: Permanent\r\nToDate: May 24, 2015\r\n	admin	Experiences	1
762312	2024-07-05	13:24:13.0997886	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3650\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 10,610.00\r\nPositionHeld: CLERK I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 3-3\r\nStatus: Permanent\r\nToDate: July 02, 2013\r\n	admin	Experiences	1
762313	2024-07-05	13:24:13.1047722	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3650\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 03, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 9,142.00\r\nPositionHeld: CLERK I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 3-3\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
762314	2024-07-05	13:24:13.1087586	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3650\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 9,876.00\r\nPositionHeld: CLERK I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 3-3\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
762315	2024-07-05	13:24:13.1137420	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3650\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 8,997.00\r\nPositionHeld: CLERK I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 3-2\r\nStatus: Permanent\r\nToDate: July 02, 2010\r\n	admin	Experiences	1
762316	2024-07-05	13:24:13.1177288	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3650\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 8,243.00\r\nPositionHeld: CLERK I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 3-2\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
762317	2024-07-05	13:24:13.1217150	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3650\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 7,489.00\r\nPositionHeld: CLERK I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 3-2\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
762318	2024-07-05	13:24:13.1266988	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3650\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 6,808.00\r\nPositionHeld: CLERK I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 3-2\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
762319	2024-07-05	13:24:13.1306854	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3650\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 6,643.00\r\nPositionHeld: CLERK I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 3-1\r\nStatus: Permanent\r\nToDate: December 31, 2007\r\n	admin	Experiences	1
762365	2024-07-05	13:46:52.7051153	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3653\r\nEmployeeTrainingId: 0\r\nFromDate: September 12, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: THE ONLY PLACE RESTAURANT\r\nStatus: \r\nToDate: September 12, 2023\r\nTrainingId: 15417\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762320	2024-07-05	13:24:13.1346720	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3650\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 02, 2004\r\nIsGovernmentService: True\r\nMonthlySalary: 6,039.00\r\nPositionHeld: CLERK I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 3-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
762321	2024-07-05	13:24:13.1396556	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3650\r\nCompanyInstitution: PERFECT PLUS, INC. ( DUNKIN DONUTS) \r\nExperienceId: 0\r\nFromDate: March 08, 2002\r\nIsGovernmentService: False\r\nMonthlySalary: 5,520.00\r\nPositionHeld: ACCOUNTING STAFF \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: May 05, 2004\r\n	admin	Experiences	1
762322	2024-07-05	13:24:13.1436418	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3650\r\nCompanyInstitution: LANDBANK OF THE PHILIPPINES \r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 9,500.00\r\nPositionHeld: BOOKKEEPER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: January 31, 2001\r\n	admin	Experiences	1
762323	2024-07-05	13:24:13.1476286	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3650\r\nCompanyInstitution: LANDBANK OF THE PHILIPPINES\r\nExperienceId: 0\r\nFromDate: July 16, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 8,500.00\r\nPositionHeld: BOOKKEEPER \r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
762324	2024-07-05	13:24:13.1526118	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3650\r\nCompanyInstitution: LANDBANK OF THE PHILIPPINES ( DBPSC) \r\nExperienceId: 0\r\nFromDate: February 20, 1997\r\nIsGovernmentService: False\r\nMonthlySalary: 5,650.00\r\nPositionHeld: NEW ACCOUNTS CLERK \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: July 15, 1999\r\n	admin	Experiences	1
762325	2024-07-05	13:28:29.3465597	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION EDUCATION DEVELOPMENT PLAN ADJUSTMENT CUM POST - PLANNING ACTIVITIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762328	2024-07-05	13:35:11.3931094	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CALABARZON CYBER TALKS WITH THE GOVERNMENT AGENCIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762329	2024-07-05	13:37:44.3527384	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BEST PRACTICES IN FILE NAMING IN LIBRARIES AND ARCHIVES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762330	2024-07-05	13:41:52.0085674	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RESULTS BASED PERFORMANCE MANAGEMENT SYSTEM OPCRF/ IPCRF RECALIBRATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762356	2024-07-05	13:44:15.3922095	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 DIVISION WOMEN'S MONTH CELEBRATION- WE FOR GENDER QUALITY & INCLUSIVE SOCIETY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762333	2024-07-05	13:44:25.0740252	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3652\r\nCourse: \r\nCourseId: 1252\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: FINANCIAL MANAGEMENT  ACCOUNTING\r\nSchoolorUniversity: LYCEUM OF THE PHILIPPINES FORMERLY LYCEUM OF BATANGAS\r\nYearGraduated: 2007\r\n	admin	EducationalBackgrounds	1
762334	2024-07-05	13:44:25.0780251	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3652\r\nCourse: \r\nCourseId: 1253\r\nCourseOrMajor: \r\nDateFrom: 2016\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: PHILIPPINE CHRISTIAN UNIVERSITY \r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
762335	2024-07-05	13:44:25.0820252	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3652\r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 7\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: First Level (Subprofessional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS STATE UNIVERSITY\r\nRating: 80.45%\r\nTitle: CAREER SERVICE SUB - PROFESSIONAL  EO132/790 - VETERAN REFERENCE RATING\r\n	admin	Eligibilities	1
762336	2024-07-05	13:44:25.0860251	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3652\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: April 07, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 21,929.00\r\nPositionHeld: SENIOR BOOKEEPER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-4\r\nStatus: Permanent\r\nToDate: July 05, 2024\r\n	admin	Experiences	1
762337	2024-07-05	13:44:25.0900249	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3652\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 21,747.00\r\nPositionHeld: SENIOR BOOKEEPER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-4\r\nStatus: Permanent\r\nToDate: April 06, 2023\r\n	admin	Experiences	1
762338	2024-07-05	13:44:25.0940249	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3652\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 20,918.00\r\nPositionHeld: SENIOR BOOKEEPER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-4\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
762339	2024-07-05	13:44:25.0980251	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3652\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 02, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 20,089.00\r\nPositionHeld: SENIOR BOOKEEPER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-4\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
762340	2024-07-05	13:44:25.1030250	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3652\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 19,922.00\r\nPositionHeld: SENIOR BOOKEEPER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-4\r\nStatus: Permanent\r\nToDate: January 01, 2021\r\n	admin	Experiences	1
762341	2024-07-05	13:44:25.1060248	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3652\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 19,100.00\r\nPositionHeld: SENIOR BOOKEEPING\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-3\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
762342	2024-07-05	13:44:25.1110250	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3652\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 18,941.00\r\nPositionHeld: SENIOR BOOKEEPING\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-3\r\nStatus: Permanent\r\nToDate: June 30, 2020\r\n	admin	Experiences	1
762343	2024-07-05	13:44:25.1150250	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3652\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 18,125.00\r\nPositionHeld: SENIOR BOOKEEPING\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-3\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
762405	2024-07-05	14:06:54.9325858	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: UDEMY - COMPUTER ORGANIZATION AND HOW TO ORGANIZE COMPUTER FILES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762344	2024-07-05	13:44:25.1190248	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3652\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 17,627.00\r\nPositionHeld: SENIOR BOOKEEPING\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-3\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
762345	2024-07-05	13:44:25.1230247	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3652\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 17,142.00\r\nPositionHeld: SENIOR BOOKEEPING\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-3\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
762346	2024-07-05	13:44:25.1270248	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3652\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 16,986.00\r\nPositionHeld: SENIOR BOOKEPING\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-2\r\nStatus: Permanent\r\nToDate: June 30, 2017\r\n	admin	Experiences	1
762347	2024-07-05	13:44:25.1310247	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3652\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 16,512.00\r\nPositionHeld: SENIOR BOOKEEPING\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-2\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
762348	2024-07-05	13:44:25.1350247	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3652\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 01, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 16,051.00\r\nPositionHeld: SENIOR BOOKEEPING\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
762349	2024-07-05	13:44:25.1400248	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 142-C\r\nAddress2: \r\nBarangay: TULO\r\nBasicInformationId: 3652\r\nBirthDate: January 05, 1986\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSEANNEALYSSA.GABIA@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSE ANNE ALYSSA\r\nFullName: ROSE ANNE ALYSSA F. GABIA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.66\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GABIA\r\nMaidenName: \r\nMiddleName: FARAON\r\nMobileNumber: 09156422436\r\nNationality: Filipino\r\nPermanentAddress1: 142-C\r\nPermanentAddress2: \r\nPermanentBarangay: TULO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO MANGGAHAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: SITIO MANGGAHAN\r\nTIN: \r\nWeight: 57\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 142-C\r\nAddress2: \r\nBarangay: TULO\r\nBasicInformationId: 3652\r\nBirthDate: January 05, 1986\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSEANNEALYSSA.GABIA@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSE ANNE ALYSSA\r\nFullName: ROSE ANNE ALYSSA F. GABIA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.66\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GABIA\r\nMaidenName: \r\nMiddleName: FARAON\r\nMobileNumber: 09156422436\r\nNationality: Filipino\r\nPermanentAddress1: 142-C\r\nPermanentAddress2: \r\nPermanentBarangay: TULO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO MANGGAHAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO MANGGAHAN\r\nTIN: \r\nWeight: 57\r\nZipCode: 4200\r\n	admin	BasicInformation	1
762350	2024-07-05	13:44:25.1430247	<Undetected>	Update	BasicInformationId: 3652\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 0437237319\r\nEmployeeRelativeId: 3444\r\nExtensionName: \r\nFirstName: CARLO\r\nFullName: CARLO LONTOC GABIA\r\nGender: Male\r\nLastName: GABIA\r\nMaidenName: \r\nMiddleName: LONTOC\r\nOccupation: ADMINISTRATIVE ASSISTANT III\r\nRelationship: Wife\r\n	BasicInformationId: 3652\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 0437237319\r\nEmployeeRelativeId: 3444\r\nExtensionName: \r\nFirstName: CARLO\r\nFullName: CARLO GABIA\r\nGender: Male\r\nLastName: GABIA\r\nMaidenName: \r\nMiddleName: LONTOC\r\nOccupation: ADMINISTRATIVE ASSISTANT III\r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
762351	2024-07-05	13:44:25.1470247	<Undetected>	Update	BasicInformationId: 3652\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3445\r\nExtensionName: \r\nFirstName: TEOFILO\r\nFullName: TEOFILO ESPINO FARAON\r\nGender: Male\r\nLastName: FARAON\r\nMaidenName: \r\nMiddleName: ESPINO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3652\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3445\r\nExtensionName: \r\nFirstName: TEOFILO\r\nFullName: TEOFILO FARAON\r\nGender: Male\r\nLastName: FARAON\r\nMaidenName: \r\nMiddleName: ESPINO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
762352	2024-07-05	13:44:25.1520248	<Undetected>	Update	BasicInformationId: 3652\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3446\r\nExtensionName: \r\nFirstName: TESSIE\r\nFullName: TESSIE FALCESO FARAON\r\nGender: Female\r\nLastName: FARAON\r\nMaidenName: FALLURIN\r\nMiddleName: FALCESO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3652\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3446\r\nExtensionName: \r\nFirstName: TESSIE\r\nFullName: TESSIE FARAON\r\nGender: Female\r\nLastName: FARAON\r\nMaidenName: \r\nMiddleName: FALCESO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
762408	2024-07-05	14:10:16.3780612	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: UDEMY: BEST PRACTICES IN DOCUMENT MANAGEMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762353	2024-07-05	13:44:25.1560247	<Undetected>	Update	BasicInformationId: 3652\r\nBirthDate: March 18, 2012\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3447\r\nExtensionName: \r\nFirstName: CARLEEN AIESHA\r\nFullName: CARLEEN AIESHA F GABIA\r\nGender: Female\r\nLastName: GABIA\r\nMaidenName: \r\nMiddleName: F\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3652\r\nBirthDate: March 18, 2012\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3447\r\nExtensionName: \r\nFirstName: CARLEEN AIESHA\r\nFullName: CARLEEN AIESHA GABIA\r\nGender: Female\r\nLastName: GABIA\r\nMaidenName: \r\nMiddleName: F\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762354	2024-07-05	13:44:25.1600248	<Undetected>	Update	BasicInformationId: 3652\r\nBirthDate: August 10, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3448\r\nExtensionName: \r\nFirstName: ALYXANDRE\r\nFullName: ALYXANDRE F GABIA\r\nGender: Male\r\nLastName: GABIA\r\nMaidenName: \r\nMiddleName: F\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3652\r\nBirthDate: August 10, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3448\r\nExtensionName: \r\nFirstName: ALYXANDRE\r\nFullName: ALYXANDRE GABIA\r\nGender: Male\r\nLastName: GABIA\r\nMaidenName: \r\nMiddleName: F\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762355	2024-07-05	13:44:25.1640248	<Undetected>	Update	BasicInformationId: 3652\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3449\r\n	BasicInformationId: 3652\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3449\r\n	admin	Questionnaires	1
762357	2024-07-05	13:46:52.5083911	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: PERLAS COMPOUND\r\nBarangay: KUMINTANG ILAYA\r\nBasicInformationId: 0\r\nBirthDate: March 10, 1969\r\nBirthPlace: STA. MARIA PINAMALAYAN, ORIENTAL MINDORO\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mariloulusterio041@gmail.com\r\nExtensionName: \r\nFirstName: MARILOU\r\nFullName: MARILOU C. LUSTERIO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: 1212-6100-8628\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: LUSTERIO\r\nMaidenName: \r\nMiddleName: CORTAZ\r\nMobileNumber: 09083605019\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: PERLAS COMPOUND\r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025105233-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 325-873-402-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
762358	2024-07-05	13:46:52.6742188	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3653\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1981\r\nDateTo: 1982\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: MABUHAY 1 SOCORO ORIENTAL MINDORO\r\nYearGraduated: 1982\r\n	admin	EducationalBackgrounds	1
762359	2024-07-05	13:46:52.6792017	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3653\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1983\r\nDateTo: 1984\r\nEducationalAttainment: THIRD YEAR\r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: PAMBISAN NATIONAL HIGH SCHOOL\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
762360	2024-07-05	13:46:52.6831885	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3653\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RODRIGO\r\nFullName: RODRIGO SOLAMO LUSTERIO\r\nGender: Male\r\nLastName: LUSTERIO\r\nMaidenName: \r\nMiddleName: SOLAMO\r\nOccupation: FARMER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
762361	2024-07-05	13:46:52.6871752	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3653\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FAUSTINO\r\nFullName: FAUSTINO PANALIGAN CORTAZ\r\nGender: Male\r\nLastName: CORTAZ\r\nMaidenName: \r\nMiddleName: PANALIGAN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
762362	2024-07-05	13:46:52.6921585	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3653\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LOLINE\r\nFullName: LOLINE MAGCAMIT NAPOLITANO\r\nGender: Female\r\nLastName: NAPOLITANO\r\nMaidenName: \r\nMiddleName: MAGCAMIT\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
762363	2024-07-05	13:46:52.6961451	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3653\r\nBirthDate: September 02, 1986\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MA. BERNADETTE\r\nFullName: MA. BERNADETTE L SOLIVERES\r\nGender: Female\r\nLastName: SOLIVERES\r\nMaidenName: \r\nMiddleName: L\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762364	2024-07-05	13:46:52.7001316	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3653\r\nBirthDate: February 06, 1969\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ERIC\r\nFullName: ERIC C LUSTERIO\r\nGender: Male\r\nLastName: LUSTERIO\r\nMaidenName: \r\nMiddleName: C\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764534	2024-07-09	16:25:56.3833302	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3678\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY ASSOCIATION OF ELEMENTARY AND SECONDARY SCHOOL PAPER ADVISERS\r\n	admin	Organizations	1
762369	2024-07-05	13:46:52.7220580	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3653\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: M.I. SEVILLA'S RESORT, LUCENA CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15113\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762370	2024-07-05	13:46:52.7260449	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3653\r\nEmployeeTrainingId: 0\r\nFromDate: July 21, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BULWAGANG ALA EH, SDO BATANGAS CITY\r\nStatus: \r\nToDate: July 22, 2023\r\nTrainingId: 15308\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762371	2024-07-05	13:46:52.7310287	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3653\r\nEmployeeTrainingId: 0\r\nFromDate: July 06, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BULWAGANG ALA EH, SDO BATANGAS CITY\r\nStatus: \r\nToDate: July 06, 2023\r\nTrainingId: 15420\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762372	2024-07-05	13:46:52.7350150	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3653\r\nEmployeeTrainingId: 0\r\nFromDate: May 19, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO BATANGAS CITY, LIBRARY HUB\r\nStatus: \r\nToDate: May 19, 2023\r\nTrainingId: 15421\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762373	2024-07-05	13:46:52.7399984	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3653\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BATIS ARAMIN, RESORT AND HOTEL, LUCBAN QUEZON\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762374	2024-07-05	13:46:52.7439849	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3653\r\nCharacterReferenceId: 0\r\nCompanyAddress: KUMINTANG ILAYA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09298912310\r\nExtensionName: \r\nFirstName: NERMA\r\nLastName: BUSTOS\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762375	2024-07-05	13:46:52.7479716	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3653\r\nCharacterReferenceId: 0\r\nCompanyAddress: KUMINTANG ILAYA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09298912310\r\nExtensionName: \r\nFirstName: KEY ANN\r\nLastName: BUENVIAJE\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762376	2024-07-05	13:46:52.7529554	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3653\r\nCharacterReferenceId: 0\r\nCompanyAddress: KUMINTANG ILYA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175921892\r\nExtensionName: \r\nFirstName: EMELY \r\nLastName: DELOS REYES\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762377	2024-07-05	13:46:52.7569415	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3653\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: March 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 13,000.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: July 05, 2024\r\n	admin	Experiences	1
762378	2024-07-05	13:46:52.7619250	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3653\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
762379	2024-07-05	13:51:12.4232417	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: UDEMY - BOOST YOUR PRODUCTIVITY: ADAPT, IMPROVE, DO!\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762380	2024-07-05	13:53:04.2872468	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: UDEMY - MASTER MICROSOFT WORD BEGINNER TO ADVANCED\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762381	2024-07-05	13:54:24.0552683	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: UDEMY- LEADERSHIP MASTERCLASS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762382	2024-07-05	13:57:50.4940078	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION MANAGEMENT COMMITTEE MEETING CUM PROGRAM IMPLEMENTATION REVIEW ( PIR)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762383	2024-07-05	14:02:57.1665743	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: UDEMY- THE ABSOLUTE BEGINNERS GUIDE TO CYBER SECURITY 2022- PART 1\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762384	2024-07-05	14:03:13.0196184	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR IN ELEMENTARY EDUCATION\r\nLevel: College\r\n	admin	Courses	1
762385	2024-07-05	14:05:00.7544060	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER OF ARTS IN EDUCATION\r\nLevel: Master's\r\n	admin	Courses	1
762386	2024-07-05	14:05:12.9035894	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3652\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 16,051.00\r\nPositionHeld: SENIOR BOOKEEPING\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-1\r\nStatus: Permanent\r\nToDate: June 30, 2012\r\n	admin	Experiences	1
762387	2024-07-05	14:05:12.9075893	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3652\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 14,857.00\r\nPositionHeld: SENIOR BOOKEEPING\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
762388	2024-07-05	14:05:12.9115895	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3652\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: April 07, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 13,663.00\r\nPositionHeld: SENIOR BOOKEEPING\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-1\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
762389	2024-07-05	14:05:12.9155893	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3652\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: August 17, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 8,712.00\r\nPositionHeld: ADMINISTRATIVE AIDE VI\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-1\r\nStatus: Contractual\r\nToDate: January 30, 2011\r\n	admin	Experiences	1
762390	2024-07-05	14:05:12.9205892	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3652\r\nCompanyInstitution: CITIMART GROUP OF COMPANIES \r\nExperienceId: 0\r\nFromDate: November 08, 2008\r\nIsGovernmentService: False\r\nMonthlySalary: 8,060.00\r\nPositionHeld: AUDIT STAFF\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: August 15, 2009\r\n	admin	Experiences	1
762391	2024-07-05	14:05:12.9245892	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3652\r\nCompanyInstitution: SM APPLIANCE CENTER\r\nExperienceId: 0\r\nFromDate: April 03, 2007\r\nIsGovernmentService: False\r\nMonthlySalary: 7,280.00\r\nPositionHeld: CASHIER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: September 22, 2007\r\n	admin	Experiences	1
762392	2024-07-05	14:05:12.9285895	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3652\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: October 02, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 8,000.00\r\nPositionHeld: ADMISRATIVE AIDE VI\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-1\r\nStatus: Contractual\r\nToDate: October 08, 2008\r\n	admin	Experiences	1
762393	2024-07-05	14:05:12.9325894	<Undetected>	Update	BasicInformationId: 3652\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY\r\nExperienceId: 10410\r\nFromDate: July 01, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 16,051.00\r\nPositionHeld: SENIOR BOOKEEPING\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	BasicInformationId: 3652\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY\r\nExperienceId: 10410\r\nFromDate: July 01, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 16,051.00\r\nPositionHeld: SENIOR BOOKEEPING\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-2\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
762406	2024-07-05	14:07:42.2391151	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON THE TRAINING OF DIVISION OFFICE/AUTONOMOUS HIGH SCHOOL PERSONNEL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762407	2024-07-05	14:09:29.9507025	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SEMINAR WORKSHOP ON THE TRAINING OF DIVISION OFFICE/AUTONOMOUS HIGH SCHOOL PERSONNEL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762431	2024-07-05	14:13:21.7097368	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL WORKSHOP FOR THE CONSOLIDATION OF FY 2009 YEAR END FINANCIAL STATEMENTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762433	2024-07-05	14:15:48.5174828	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REINAL WORKSHOP FOR THE CONSOLIDATION OF FY 2010 YEAR END FINANCIAL STATEMENTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762435	2024-07-05	14:19:20.0374160	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL WORKSHOP FOR THE CONSOLIDATION OF FY 2010 YEAR END FINANCIAL STATEMENTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764961	2024-07-10	14:06:55.0502342	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3680\r\nOrganizationId: 0\r\nOrganizationName: ASCENDENS ASIA INTERNATIONAL RESEARCH CLUB ( JUNIOR MEMBERSHIP) \r\n	admin	Organizations	1
762395	2024-07-05	14:06:46.9922207	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK. 4 LOT 21\r\nAddress2: MERCEDES HOMES\r\nBarangay: SORO SORO ILAYA\r\nBasicInformationId: 0\r\nBirthDate: July 10, 1972\r\nBirthPlace: ROXAS, ORIENTAL MINDORO\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: elizabeth.alea@deped.gov.ph\r\nExtensionName: \r\nFirstName: ELIZABETH\r\nFullName: ELIZABETH M. ALEA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.48\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALEA\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nMobileNumber: 09090620196\r\nNationality: Filipino\r\nPermanentAddress1: BLK. 4 LOT 21\r\nPermanentAddress2: MERCEDES HOMES\r\nPermanentBarangay: SORO SORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ARGUILLA\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ARGUILLA\r\nTIN: \r\nWeight: 48\r\nZipCode: 4200\r\n	admin	BasicInformation	1
762396	2024-07-05	14:06:47.0055640	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3654\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1979\r\nDateTo: 1985\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: STA. BRIGADA ELEMENTARY SCHOOL\r\nYearGraduated: 1985\r\n	admin	EducationalBackgrounds	1
762397	2024-07-05	14:06:47.0055640	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3654\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1985\r\nDateTo: 1989\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: STO. NINO HIGH SCHOOL\r\nYearGraduated: 1989\r\n	admin	EducationalBackgrounds	1
762398	2024-07-05	14:06:47.0055640	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3654\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1990\r\nDateTo: 1995\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES \r\nYearGraduated: 1995\r\n	admin	EducationalBackgrounds	1
762399	2024-07-05	14:06:47.0055640	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3654\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 1997\r\nDateTo: 2000\r\nEducationalAttainment: 45 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEB GATE OLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
762400	2024-07-05	14:06:47.0065638	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3654\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DANIEL\r\nFullName: DANIEL ALEA\r\nGender: Male\r\nLastName: ALEA\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
762401	2024-07-05	14:06:47.0065638	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3654\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FEDERICO\r\nFullName: FEDERICO LIWAG MACARAIG\r\nGender: Male\r\nLastName: MACARAIG\r\nMaidenName: \r\nMiddleName: LIWAG\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
762402	2024-07-05	14:06:47.0065638	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3654\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARIETA\r\nFullName: MARIETA CATAPANG GUTIERREZ\r\nGender: Female\r\nLastName: GUTIERREZ\r\nMaidenName: \r\nMiddleName: CATAPANG\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
762403	2024-07-05	14:06:47.0065638	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3654\r\nBirthDate: July 31, 2015\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PRECIOUS THEA\r\nFullName: PRECIOUS THEA MACARAIG CARILLAGA\r\nGender: Female\r\nLastName: CARILLAGA\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762404	2024-07-05	14:06:47.0065638	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3654\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
762481	2024-07-05	14:53:30.0197395	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PROFESSIONAL LEARNING NETWORK FOR ALS TEACHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762487	2024-07-05	14:58:09.4197384	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SEMINAR WORKSHOP ON CAPABILITY BUILDING FOCUSING ON LEARNING-CENTERED APPROACH FOR EFFECTIVE DELIVERY OF INSTRUCTION IN ENSCIMA\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766038	2024-07-11	16:10:24.8293434	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3695\r\nRecognitionId: 0\r\nRecognitionName: 2016 OUTSTANDING RESEARCHER- IV A CALABARZON \r\n	admin	Recognitions	1
762409	2024-07-05	14:10:53.1612871	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: September 25, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED SDO BATANGAS CITY \r\nStatus: \r\nToDate: September 26, 2023\r\nTrainingId: 15419\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762410	2024-07-05	14:10:53.1652736	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED SDO BATANGAS CITY \r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15045\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762411	2024-07-05	14:10:53.1702569	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED SDO BATANGAS CITY \r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762412	2024-07-05	14:10:53.1742435	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: October 05, 2023\r\nHours: 2\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF INFORMATION AND  COMMUNICATIONS TECHNOLOGY REGION IV-A CALABARZON \r\nStatus: \r\nToDate: October 05, 2023\r\nTrainingId: 15373\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762413	2024-07-05	14:10:53.1792268	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: April 21, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: ASOSASYON NG AKLATAN AT SINUPAN NG DILIMAN, INC. \r\nStatus: \r\nToDate: April 21, 2023\r\nTrainingId: 15423\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762414	2024-07-05	14:10:53.1832135	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED SDO BATANGAS CITY \r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15047\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762415	2024-07-05	14:10:53.1881970	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: March 29, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED SDO BATANGAS CITY \r\nStatus: \r\nToDate: March 29, 2023\r\nTrainingId: 15424\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762416	2024-07-05	14:10:53.1921835	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: March 17, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED SDO BATANGAS CITY \r\nStatus: \r\nToDate: March 17, 2023\r\nTrainingId: 15425\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762417	2024-07-05	14:10:53.1961702	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: February 21, 2023\r\nHours: 6\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED SDO BATANGAS CITY \r\nStatus: \r\nToDate: February 21, 2023\r\nTrainingId: 15153\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762418	2024-07-05	14:10:53.2011535	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: February 20, 2023\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED SDO BATANGAS CITY \r\nStatus: \r\nToDate: February 20, 2023\r\nTrainingId: 15114\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762419	2024-07-05	14:10:53.2051403	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: October 03, 2022\r\nHours: 1\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED REGION IV-A CALABARZON \r\nStatus: \r\nToDate: October 03, 2022\r\nTrainingId: 15426\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762420	2024-07-05	14:10:53.2101234	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: October 03, 2022\r\nHours: 7\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED REGION IV-A CALABARZON \r\nStatus: \r\nToDate: October 03, 2022\r\nTrainingId: 15427\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762421	2024-07-05	14:10:53.2141101	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: September 20, 2022\r\nHours: 2\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED REGION IV-A CALABARZON \r\nStatus: \r\nToDate: September 20, 2022\r\nTrainingId: 15428\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762422	2024-07-05	14:10:53.2190936	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: September 07, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED SDO BATANGAS CITY \r\nStatus: \r\nToDate: September 07, 2022\r\nTrainingId: 15174\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762437	2024-07-05	14:22:26.4683588	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION SEMINAR OF NEW IMPLEMENTING UNITS AND YEAR END CONFERENCE OF DIVISION ACCOUNTANTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762423	2024-07-05	14:10:53.2230801	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: August 11, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED SDO BATANGAS CITY \r\nStatus: \r\nToDate: August 11, 2022\r\nTrainingId: 15429\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762424	2024-07-05	14:10:53.2270668	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: June 30, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED SDO BATANGAS CITY \r\nStatus: \r\nToDate: June 30, 2022\r\nTrainingId: 15231\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762425	2024-07-05	14:10:53.2320501	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: May 30, 2022\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED REGION IV-A CALABARZON \r\nStatus: \r\nToDate: May 30, 2022\r\nTrainingId: 15430\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762426	2024-07-05	14:10:53.2360368	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: May 25, 2022\r\nHours: 7\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED REGION IV-A CALABARZON \r\nStatus: \r\nToDate: May 25, 2022\r\nTrainingId: 15431\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762427	2024-07-05	14:10:53.2410201	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: April 09, 2022\r\nHours: 2\r\nNatureOfParticipation: TECHINCAL \r\nSponsoringAgency: DEPED REGION IV-A CALABARZON \r\nStatus: \r\nToDate: April 09, 2022\r\nTrainingId: 15432\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762428	2024-07-05	14:10:53.2450067	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: March 07, 2022\r\nHours: 5\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED SDO BATANGAS CITY \r\nStatus: \r\nToDate: March 07, 2022\r\nTrainingId: 15258\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762429	2024-07-05	14:10:53.2489934	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: February 26, 2022\r\nHours: 1\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED REGION IV-A CALABARZON \r\nStatus: \r\nToDate: February 26, 2022\r\nTrainingId: 15435\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762430	2024-07-05	14:13:04.7899221	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: COORDINATION AND CONSULTATIVE MEETING ON RECORDS MANAGEMENT AND TECHNICAL ASSISTANCE TO SCHOOLS AND LEARNING CENTERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762432	2024-07-05	14:14:25.0193931	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: KUMUSTAHAN SESSION WITH UDEMY LEARNERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762434	2024-07-05	14:17:02.0560605	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON THE GUIDELINES OF E- LEARNING PLATFORM AND IT'S REQUIRED COURSES FOR NON- TEACHING PERSONNEL OF SDO"S AND RO"S\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762436	2024-07-05	14:21:02.1328539	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2021 ANTI- VAWC CAMPAIGN WEBINAR\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762438	2024-07-05	14:23:01.3487241	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RECORDS MANAGEMENT AND SERVICES: SUSTAINING BEST PRACTICES UNDER THE NEW NORMAL AND BEYOND\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762440	2024-07-05	14:25:51.3806922	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RECORDS MANAGEMENT AND SERVICES: RECORDS COUNTER DISASTER PREPAREDNESS AND BUSINESS CONTINUITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762441	2024-07-05	14:28:00.7959773	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WEBINAR ON THE EFFICIENT AND EXPEDIENT MANAGEMENT OF ADMINISTRATIVE CASES AND THE PROPER AND SAFE HANDLING OF CASE RECORDS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762443	2024-07-05	14:30:16.2903092	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WEBINAR ON THE EFFICIENT AND EXPEDIENT MANAGE OF ADMINISTRATIVE CASES AND THE PROPER AND SAFE HANDLING OF CASES RECOR\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762444	2024-07-05	14:32:40.8038783	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DEACO VIRTUAL REGIONAL CONSULTATIVE FORA FOR TEACHING AND NON- TEACHING PERSONNEL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763667	2024-07-09	08:39:27.9395828	<Undetected>	Delete	BasicInformationId: 0\r\nCustomEmployeeGroupId: 0\r\nDisplayName: CLIFF B. ATIENZA\r\nEmployeeGroupId: 1\r\nId: 36\r\nPassword: ***\r\nUsername: AC6BKYDG\r\n	BasicInformationId: \r\nCustomEmployeeGroupId: \r\nDisplayName: \r\nEmployeeGroupId: \r\nId: \r\nPassword: \r\nUsername: \r\n	admin	Users	1
762445	2024-07-05	14:34:52.4051107	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CLUSTERES INFORMATIONAL ASSEMBLY OF DEPARTMENT OF EDUCATION NATIONAL EMPLOYEES UNION (NEU) ON THE K TO 12EDUCATION PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762446	2024-07-05	14:37:13.1865779	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL WORKSHOP FOR THE CONSOLIDATION OF 2012 YEAR END FINANCIAL STATEMENTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762447	2024-07-05	14:40:59.6825494	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FY 2014 BUDGET PREPARATION CLUSTER I\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762448	2024-07-05	14:41:53.3201083	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3652\r\nEmployeeTrainingId: 0\r\nFromDate: December 05, 2009\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION CENTRAL OFFICE\r\nStatus: \r\nToDate: December 18, 2009\r\nTrainingId: 15434\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762449	2024-07-05	14:41:53.3241081	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3652\r\nEmployeeTrainingId: 0\r\nFromDate: January 20, 2010\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION CENTRAL OFFICE\r\nStatus: \r\nToDate: January 22, 2010\r\nTrainingId: 15437\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762450	2024-07-05	14:41:53.3281080	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3652\r\nEmployeeTrainingId: 0\r\nFromDate: January 19, 2011\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION CENTRAL OFFICE\r\nStatus: \r\nToDate: January 21, 2011\r\nTrainingId: 15441\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762451	2024-07-05	14:41:53.3321080	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3652\r\nEmployeeTrainingId: 0\r\nFromDate: December 01, 2011\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION CENTRAL OFFICE\r\nStatus: \r\nToDate: December 03, 2011\r\nTrainingId: 15443\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762452	2024-07-05	14:41:53.3361080	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3652\r\nEmployeeTrainingId: 0\r\nFromDate: December 01, 2012\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION CENTRAL OFFICE\r\nStatus: \r\nToDate: December 03, 2012\r\nTrainingId: 15445\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762453	2024-07-05	14:41:53.3411083	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3652\r\nEmployeeTrainingId: 0\r\nFromDate: February 28, 2012\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION CENTRAL OFFICE\r\nStatus: \r\nToDate: February 29, 2012\r\nTrainingId: 15448\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762454	2024-07-05	14:41:53.3451080	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3652\r\nEmployeeTrainingId: 0\r\nFromDate: August 29, 2012\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION CENTRAL OFFICE\r\nStatus: \r\nToDate: August 30, 2012\r\nTrainingId: 15451\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762455	2024-07-05	14:41:53.3491079	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3652\r\nEmployeeTrainingId: 0\r\nFromDate: January 17, 2013\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION CENTRAL OFFICE\r\nStatus: \r\nToDate: January 19, 2013\r\nTrainingId: 15452\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762456	2024-07-05	14:41:53.3531081	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3652\r\nEmployeeTrainingId: 0\r\nFromDate: March 04, 2013\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION CENTRAL OFFICE\r\nStatus: \r\nToDate: March 05, 2013\r\nTrainingId: 15453\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762459	2024-07-05	14:45:09.3358238	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING WORKSHOP ON THE ROLL -OUT OF THE ON - LINE MONTHLY REPORT OF DEBURSEMENTS AND FINANCIAL REPORTING SYSTEM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762461	2024-07-05	14:48:46.3196774	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ECHO - TRAINING ON THE UNITED ACCOUNTS CODE STRUCTURE ( UACS ), TREASURY SINGLE ACCOUNT (TSA) AND OTHER REFORMS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762479	2024-07-05	14:51:37.9201513	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL WORKSHOP FOR THE CONSOLIDATION OF FY 2013 YEAR END FINANCIAL STATEMENTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762492	2024-07-05	15:04:35.6292893	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL TRAINING OF EPSA ON THE PROVISION OF GIVING TECHNICAL ASSISTANCE ON THE IMPLEMENTATION OF CONTEXTUALIZED MELCs BASED SHS CURRRICULUM FOR ALS (CLUSTER III)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762457	2024-07-05	14:43:03.0671436	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2ND CLUSTERED CONFERENCE OF THE DEPED ADMINISTRATIVE SERVICES ( CCDEAS)- RECORDS GROUP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762458	2024-07-05	14:44:47.6103904	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SEMINAR WORKSHOP ON RECORDS MANAGEMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762460	2024-07-05	14:46:41.7443162	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FINANCIAL LITERACY TRAINING PROGRAM FOR DEPED PERSONNEL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762462	2024-07-05	14:48:39.6824022	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2019 NATIONAL WOMEN"S MONTH\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762463	2024-07-05	14:49:35.6996246	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: February 23, 2022\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED REGION IV-A CALABARZON \r\nStatus: \r\nToDate: February 24, 2022\r\nTrainingId: 15436\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762464	2024-07-05	14:49:35.7046079	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: February 23, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED REGION IV-A CALABARZON \r\nStatus: \r\nToDate: February 23, 2022\r\nTrainingId: 15438\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762465	2024-07-05	14:49:35.7095913	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: February 02, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED REGION IV-A CALABARZON \r\nStatus: \r\nToDate: February 02, 2022\r\nTrainingId: 15440\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762466	2024-07-05	14:49:35.7135779	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: January 12, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED SDO BATANGAS CITY \r\nStatus: \r\nToDate: January 14, 2022\r\nTrainingId: 15298\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762467	2024-07-05	14:49:35.7185613	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2021\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED SDO BATANGAS CITY \r\nStatus: \r\nToDate: November 25, 2021\r\nTrainingId: 15442\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762468	2024-07-05	14:49:35.7225481	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: November 04, 2021\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED CENTRAL OFFICE AND NATIONAL ARCHIVES OF THE PHILIPPINES \r\nStatus: \r\nToDate: November 05, 2021\r\nTrainingId: 15444\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762469	2024-07-05	14:49:35.7275312	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: November 11, 2021\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED CENTRAL OFFICE AND NATIONAL ARCHIVES OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 11, 2021\r\nTrainingId: 15446\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762470	2024-07-05	14:49:35.7315179	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: October 13, 2021\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED CENTRAL OFFICE- LEGAL AFFAIRS \r\nStatus: \r\nToDate: October 15, 2021\r\nTrainingId: 15449\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762471	2024-07-05	14:49:35.7355045	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: September 10, 2021\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED REGION IV-A CALABARZON \r\nStatus: \r\nToDate: September 10, 2021\r\nTrainingId: 15450\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762472	2024-07-05	14:49:35.7404879	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: July 27, 2020\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED SDO BATANGAS CITY \r\nStatus: \r\nToDate: July 28, 2020\r\nTrainingId: 15364\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762473	2024-07-05	14:49:35.7444745	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: May 18, 2020\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED SDO BATANGAS CITY\r\nStatus: \r\nToDate: May 18, 2020\r\nTrainingId: 15117\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762494	2024-07-05	15:07:46.2671912	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION FOR HUMSS'S PARENTS AND LEADERS ON PILOT IMPLEMENTATION OF SHS PROGRAM IN BCIHS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762474	2024-07-05	14:49:35.7484615	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: December 12, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED SDO BATANGAS CITY \r\nStatus: \r\nToDate: December 13, 2019\r\nTrainingId: 15060\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762475	2024-07-05	14:49:35.7534447	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: November 26, 2019\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED  CENTRAL OFFICE \r\nStatus: \r\nToDate: November 28, 2019\r\nTrainingId: 15454\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762476	2024-07-05	14:49:35.7574312	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: November 12, 2019\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED CENTRAL OFFICE \r\nStatus: \r\nToDate: November 14, 2019\r\nTrainingId: 15455\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762477	2024-07-05	14:49:35.7624145	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: August 02, 2019\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: GSIS- SOUTH LUZON OPERATIONS GROUP \r\nStatus: \r\nToDate: August 02, 2019\r\nTrainingId: 15457\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762478	2024-07-05	14:49:35.7664013	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: March 18, 2019\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED SDO BATANGAS CITY \r\nStatus: \r\nToDate: March 18, 2019\r\nTrainingId: 15459\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762480	2024-07-05	14:51:33.5320318	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING ON STRENGTHENING THE IMPLEMENTATION OF ENVIRONMENT PROJECTS ( PROJECT SIEP)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762485	2024-07-05	14:55:20.8082085	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING- WORKSHOP FOR CHAIRS AND MEMBERS OF THE RO AND SDO COMPLIANCE TEAM ON DATA PRIVACY ACT OF 2012\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762488	2024-07-05	15:00:20.1934994	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ISO 9001: 2015 QUALITY MANAGEMENT SYSTEM- 7S PRINCIPLES OF GOOD HOUSEKEEPING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762491	2024-07-05	15:04:07.8107541	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ISO 9001: 2015 QUALITY MANAGEMENT SYSTEM- DOCUMENTATION TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762495	2024-07-05	15:07:37.0136012	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON THE IMPLEMENTATION OF PAYROLL PROCESS PURSUANT TO DEPED ORDER NOS. 38 ( SUPERCEDED BY DO NO. 55\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762497	2024-07-05	15:09:37.7361144	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON THE IMPLEMENTATION OF PAYROLL PROCESS PURSUANT TO DEPED ORDER NOS. 38 ( SUPERCEDED BY DO NO.55) AND 49, S. 2017\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762532	2024-07-05	15:12:35.4802615	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ROLL- OUT PROGRAM/ ORIENTATION ACTIVITY ON THE IMPLEMENTATION OF THE O\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762533	2024-07-05	15:14:48.2960172	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ROLL - OUT PROGRAM/ ORIENTATION ACTIVITY ON THE IMPLEMENTATION OF THE POLICY AND PROCEDURAL GUIDELINES ON THE CERTIFICATION, AUTHENTICATION AND VERIFICATION OF BASIC EDUCATION SCHOOL RECORDS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762535	2024-07-05	15:17:41.9634514	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING WORKSHOP ON FACILITATION SKILLS AND MANAGEMENT OF LEARNING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762537	2024-07-05	15:24:18.7915868	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ROLL- OUT PROGRAM/ ORIENTATION ACTIVITY ON THE IMPLEMENTATION OF THE POLICY AND PROCEDURAL GUIDELINES ON THE CERTIFICATION, AUTHENTICATION AND VERIFICATION OF BASIC EDUCATION SCHOOL RECORDS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762539	2024-07-05	15:27:07.0046281	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: THREE - DAY TRAINING WORKSHOP IN PREPARATION FOR STANDARDIZED SDO PROCESSES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762541	2024-07-05	15:29:06.3675788	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CONSULLTATIVE MEETING WITH AGENCY AUTHORIZED OFFICERS AND ERF HANDLERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762482	2024-07-05	14:54:43.5735540	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3652\r\nEmployeeTrainingId: 0\r\nFromDate: March 11, 2013\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION CENTRAL OFFICE\r\nStatus: \r\nToDate: March 13, 2013\r\nTrainingId: 15456\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762483	2024-07-05	14:54:43.5775541	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3652\r\nEmployeeTrainingId: 0\r\nFromDate: January 07, 2014\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: January 07, 2014\r\nTrainingId: 15458\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762484	2024-07-05	14:54:43.5845541	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3652\r\nEmployeeTrainingId: 0\r\nFromDate: January 15, 2014\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION CENTRAL OFFICE\r\nStatus: \r\nToDate: January 17, 2014\r\nTrainingId: 15460\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762486	2024-07-05	14:57:46.3667832	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION TRAINING/WORKSHOP ON THE USE OF ONLINE REPORTING SYSTEM FOR THE SUBMISSION OF BUDGET EXECUTION PLANS AND TARGETS FOR 2014\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762489	2024-07-05	15:01:14.4302852	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: GUNG HOI A GAD - BASED COMPETENCE ENHANCEMENT PROGRAM FOR DEPARTMENT OF EDUCATION NON - TEACHING PERSONNEL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762490	2024-07-05	15:04:11.5169591	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FY 2016 BUDGET PREPARATION GUIDELINES ONTHE RELEASE OF FUNDS (CLUSTER IV)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762493	2024-07-05	15:07:43.1416563	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FY 2016 BUDGET PREPARATION AND FY 2015 GUIDELINES ON THE RELEASE OF FUNDS (CLUSTER IV)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762496	2024-07-05	15:09:03.9092346	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CONFERENCE ON K TO 12 PROGRAM UPDATES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762595	2024-07-05	16:04:54.8200578	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3652\r\nEmployeeTrainingId: 0\r\nFromDate: May 22, 2014\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION CENTRAL OFFICE\r\nStatus: \r\nToDate: May 23, 2014\r\nTrainingId: 15464\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762596	2024-07-05	16:04:54.8260572	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3652\r\nEmployeeTrainingId: 0\r\nFromDate: September 01, 2014\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION OF DIVISION BATANGAS CITY\r\nStatus: \r\nToDate: September 02, 2014\r\nTrainingId: 15467\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762597	2024-07-05	16:04:54.8300571	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3652\r\nEmployeeTrainingId: 0\r\nFromDate: March 17, 2015\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION CENTRAL OFFICE\r\nStatus: \r\nToDate: March 20, 2015\r\nTrainingId: 15471\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762598	2024-07-05	16:04:54.8340571	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3652\r\nEmployeeTrainingId: 0\r\nFromDate: April 07, 2015\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION OF DIVISION BATANGAS CITY\r\nStatus: \r\nToDate: July 07, 2015\r\nTrainingId: 15474\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762498	2024-07-05	15:09:51.1025714	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3654\r\nEmployeeTrainingId: 0\r\nFromDate: January 29, 2024\r\nHours: 16\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: SCHOOLS DIVISION OFFICE OF BATANGAS CITY\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 15462\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762499	2024-07-05	15:09:51.1065588	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3654\r\nEmployeeTrainingId: 0\r\nFromDate: August 15, 2023\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: SCHOOLS DIVISION OFFICE OF BATANGAS CITY\r\nStatus: \r\nToDate: August 17, 2023\r\nTrainingId: 15465\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762500	2024-07-05	15:09:51.1115414	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3654\r\nEmployeeTrainingId: 0\r\nFromDate: November 09, 2023\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: SCHOOLS DIVISION OFFICE OF BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15113\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762501	2024-07-05	15:09:51.1155288	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3654\r\nEmployeeTrainingId: 0\r\nFromDate: July 23, 2023\r\nHours: 32\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- CENTRAL OFFICE\r\nStatus: \r\nToDate: July 28, 2023\r\nTrainingId: 15470\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762502	2024-07-05	15:09:51.1205130	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3654\r\nEmployeeTrainingId: 0\r\nFromDate: August 12, 2022\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: SCHOOLS DIVISION OFFICE OF BATANGAS CITY\r\nStatus: \r\nToDate: August 12, 2022\r\nTrainingId: 15472\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762503	2024-07-05	15:09:51.1244988	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 486,108.00\r\nPositionHeld: EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-3\r\nStatus: Permanent\r\nToDate: July 05, 2024\r\n	admin	Experiences	1
762504	2024-07-05	15:09:51.1294417	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 467,844.00\r\nPositionHeld:  EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-3\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
762505	2024-07-05	15:09:51.1334283	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: May 25, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 449,580.00\r\nPositionHeld:  EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-2\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
762506	2024-07-05	15:09:51.1374150	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY  \r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 444,528.00\r\nPositionHeld:  EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-2\r\nStatus: Permanent\r\nToDate: May 24, 2021\r\n	admin	Experiences	1
762507	2024-07-05	15:09:51.1423983	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 422,624.00\r\nPositionHeld: EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-2\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
762508	2024-07-05	15:09:51.1463849	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 408,000.00\r\nPositionHeld:  EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-2\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
762509	2024-07-05	15:09:51.1513684	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: May 25, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 385,764.00\r\nPositionHeld:  EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
762601	2024-07-05	16:08:56.5634248	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON UNDISTRIBUTED ACCOUNTS AND CLARIFACTORY ITEMS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762510	2024-07-05	15:09:51.1553549	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 381,180.00\r\nPositionHeld: EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: May 24, 2018\r\n	admin	Experiences	1
762511	2024-07-05	15:09:51.1603384	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 360,528.00\r\nPositionHeld: EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
762512	2024-07-05	15:09:51.1643250	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 341,004.00\r\nPositionHeld: EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
762513	2024-07-05	15:09:51.1693083	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: May 25, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 322,536.00\r\nPositionHeld:  EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
762514	2024-07-05	15:09:51.1732949	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: July 18, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 262,404.00\r\nPositionHeld:  TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: May 24, 2015\r\n	admin	Experiences	1
762515	2024-07-05	15:09:51.1782783	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 06, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 259,800.00\r\nPositionHeld:  TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: July 17, 2012\r\n	admin	Experiences	1
762516	2024-07-05	15:09:51.1822651	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 06, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 238,896.00\r\nPositionHeld:  TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Job Order\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
762517	2024-07-05	15:09:51.1872482	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 217,992.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
762518	2024-07-05	15:09:51.1912350	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 18, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 197,088.00\r\nPositionHeld:  TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
762519	2024-07-05	15:09:51.1952216	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 07, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 193,212.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: July 17, 2009\r\n	admin	Experiences	1
762520	2024-07-05	15:09:51.2002049	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 07, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 162,144.00\r\nPositionHeld:  TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2010\r\n	admin	Experiences	1
762536	2024-07-05	15:22:26.4757795	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON QUALITY MANAGEMENT SYSTEM AND OTHER DEPED MANUALS AND STYLE OF DEPED SERVICE MARKS AND VISUAL IDENTITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762521	2024-07-05	15:09:51.2041916	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 07, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 147,408.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
762522	2024-07-05	15:09:51.2091749	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 17, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 134,004.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
762523	2024-07-05	15:09:51.2141583	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: June 16, 2003\r\nIsGovernmentService: True\r\nMonthlySalary: 126,420.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: July 16, 2006\r\n	admin	Experiences	1
762524	2024-07-05	15:09:51.2181449	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 07, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 119,268.00\r\nPositionHeld:  TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 15, 2003\r\n	admin	Experiences	1
762525	2024-07-05	15:09:51.2221316	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 113,592.00\r\nPositionHeld:  TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
762526	2024-07-05	15:09:51.2271149	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: May 01, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 103,260.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
762527	2024-07-05	15:09:51.2311016	<Undetected>	Update	BasicInformationId: 3654\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3454\r\nExtensionName: \r\nFirstName: DANIEL\r\nFullName: DANIEL ALEA\r\nGender: Male\r\nLastName: ALEA\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3654\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3454\r\nExtensionName: \r\nFirstName: DANIEL\r\nFullName: DANIEL ALEA\r\nGender: Male\r\nLastName: ALEA\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
762528	2024-07-05	15:09:51.2360850	<Undetected>	Update	BasicInformationId: 3654\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3455\r\nExtensionName: \r\nFirstName: FEDERICO\r\nFullName: FEDERICO LIWAG MACARAIG\r\nGender: Male\r\nLastName: MACARAIG\r\nMaidenName: \r\nMiddleName: LIWAG\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3654\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3455\r\nExtensionName: \r\nFirstName: FEDERICO\r\nFullName: FEDERICO MACARAIG\r\nGender: Male\r\nLastName: MACARAIG\r\nMaidenName: \r\nMiddleName: LIWAG\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
762529	2024-07-05	15:09:51.2400718	<Undetected>	Update	BasicInformationId: 3654\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3456\r\nExtensionName: \r\nFirstName: MARIETA\r\nFullName: MARIETA CATAPANG GUTIERREZ\r\nGender: Female\r\nLastName: GUTIERREZ\r\nMaidenName: \r\nMiddleName: CATAPANG\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3654\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3456\r\nExtensionName: \r\nFirstName: MARIETA\r\nFullName: MARIETA GUTIERREZ\r\nGender: Female\r\nLastName: GUTIERREZ\r\nMaidenName: \r\nMiddleName: CATAPANG\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
762530	2024-07-05	15:09:51.2450549	<Undetected>	Update	BasicInformationId: 3654\r\nBirthDate: July 31, 2015\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3457\r\nExtensionName: \r\nFirstName: PRECIOUS THEA\r\nFullName: PRECIOUS THEA MACARAIG CARILLAGA\r\nGender: Female\r\nLastName: CARILLAGA\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3654\r\nBirthDate: July 31, 2015\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3457\r\nExtensionName: \r\nFirstName: PRECIOUS THEA\r\nFullName: PRECIOUS THEA CARILLAGA\r\nGender: Female\r\nLastName: CARILLAGA\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762531	2024-07-05	15:09:51.2490416	<Undetected>	Update	BasicInformationId: 3654\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3451\r\n	BasicInformationId: 3654\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3451\r\n	admin	Questionnaires	1
762534	2024-07-05	15:15:52.6837852	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION WORKSHOP ON DEVELOPMENT OF PROGRAM DESIGN ON LEARNING PACKAGE FOR CAPACITY BUILDING OF TEACHERS AND SCHOOL LEADERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762542	2024-07-05	15:30:42.1834226	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CONSULTATIVE MEETING WITH AGENCY AUTHORIZED OFFICERS AND ERF HANDLERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762538	2024-07-05	15:25:31.4830591	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION TRAINING ON QUALITY MANAGEMENT SYSTEM AND OTHER DEPED MANUALS AND STYLE OF DEPED SERVICE MARKS AND VISUAL IDENTITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762540	2024-07-05	15:28:05.2103774	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL ORIENTATION ON THE IMPLEMENTATION AND PRE-PLANNING ACTIVITIES OF ALS SENIOR HIGH SCHOOL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762544	2024-07-05	15:35:50.4934269	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3654\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
762545	2024-07-05	15:35:50.4984101	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3654\r\nEmployeeTrainingId: 0\r\nFromDate: May 04, 2022\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: SCHOOLS DIVISION OFFICE OF BATANGAS CITY\r\nStatus: \r\nToDate: May 06, 2022\r\nTrainingId: 15478\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762546	2024-07-05	15:35:50.5023968	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3654\r\nEmployeeTrainingId: 0\r\nFromDate: May 25, 2022\r\nHours: 16\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: SCHOOLS DIVISION OFFICE OF BATANGAS CITY\r\nStatus: \r\nToDate: May 26, 2022\r\nTrainingId: 15478\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762547	2024-07-05	15:35:50.5073810	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3654\r\nEmployeeTrainingId: 0\r\nFromDate: January 14, 2022\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: SCHOOLS DIVISION OFFICE OF BATANGAS CITY\r\nStatus: \r\nToDate: January 16, 2022\r\nTrainingId: 15482\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762548	2024-07-05	15:35:50.5123646	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3654\r\nEmployeeTrainingId: 0\r\nFromDate: July 20, 2021\r\nHours: 16\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A CALABARZON\r\nStatus: \r\nToDate: July 21, 2021\r\nTrainingId: 15484\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762549	2024-07-05	15:35:50.5173478	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3654\r\nCharacterReferenceId: 0\r\nCompanyAddress: TALUMPOK WEST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09171892566\r\nExtensionName: \r\nFirstName: SACORO\r\nLastName: COMIA\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762550	2024-07-05	15:35:50.5213345	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3654\r\nCharacterReferenceId: 0\r\nCompanyAddress: SORO-SORO ILAYA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09171328890\r\nExtensionName: \r\nFirstName: MENIANO \r\nLastName: EBORA\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762551	2024-07-05	15:35:50.5253209	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3654\r\nCharacterReferenceId: 0\r\nCompanyAddress: DUMANTAY, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09338522812\r\nExtensionName: \r\nFirstName: ROSSANA \r\nLastName: BAGON \r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762552	2024-07-05	15:35:50.5303043	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLK. 4 LOT 21\r\nAddress2: MERCEDES HOMES\r\nBarangay: SORO SORO ILAYA\r\nBasicInformationId: 3654\r\nBirthDate: July 10, 1972\r\nBirthPlace: ROXAS, ORIENTAL MINDORO\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: elizabeth.alea@deped.gov.ph\r\nExtensionName: \r\nFirstName: ELIZABETH\r\nFullName: ELIZABETH M. ALEA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.48\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALEA\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nMobileNumber: 09090620196\r\nNationality: Filipino\r\nPermanentAddress1: BLK. 4 LOT 21\r\nPermanentAddress2: MERCEDES HOMES\r\nPermanentBarangay: SORO SORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ARGUILLA\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ARGUILLA\r\nTIN: \r\nWeight: 48\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK. 4 LOT 21\r\nAddress2: MERCEDES HOMES\r\nBarangay: SORO SORO ILAYA\r\nBasicInformationId: 3654\r\nBirthDate: July 10, 1972\r\nBirthPlace: ROXAS, ORIENTAL MINDORO\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: elizabeth.alea@deped.gov.ph\r\nExtensionName: \r\nFirstName: ELIZABETH\r\nFullName: ELIZABETH M. ALEA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02002998280\r\nHDMF: 0401-2741-3801\r\nHeight: 1.48\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALEA\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nMobileNumber: 09090620196\r\nNationality: Filipino\r\nPermanentAddress1: BLK. 4 LOT 21\r\nPermanentAddress2: MERCEDES HOMES\r\nPermanentBarangay: SORO SORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ARGUILLA\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000007902-1\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ARGUILLA\r\nTIN: 912-300-915-0000\r\nWeight: 48\r\nZipCode: 4200\r\n	admin	BasicInformation	1
762553	2024-07-05	15:35:50.5342910	<Undetected>	Update	BasicInformationId: 3654\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3451\r\n	BasicInformationId: 3654\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3451\r\n	admin	Questionnaires	1
762579	2024-07-05	15:54:50.9688028	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF ARTS IN ENGLISH\r\nLevel: College\r\n	admin	Courses	1
762594	2024-07-05	15:56:03.4914157	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: December 10, 2014\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED BATANGAS CITY DIVISION \r\nStatus: \r\nToDate: December 12, 2014\r\nTrainingId: 15495\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766039	2024-07-11	16:10:24.8343268	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3695\r\nRecognitionId: 0\r\nRecognitionName: 2016 BEST DIVISION RESEARCHER- SDO BATANGAS CITY \r\n	admin	Recognitions	1
762543	2024-07-05	15:34:18.0710150	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SEMINAR AND CAPACITY ENHANCEMENT ON LEGAL ACCOUNTABILITY OF PUBLIC OFFICIALS IN PROMOTING TRANSPARENCY IN RECORDING FINANCIAL TRANSACTIONS THROUGH PROPER HANDLING OF GOVERNMENT RECORDS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762554	2024-07-05	15:37:33.6068761	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ENHANCEMENT SEMINAR FORV SCHOOLS DIVISION OFFICE ADMINISTRATIVE OFFICERS V AND HUMAN RESOURCE MANAGEMENT OFFICERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762555	2024-07-05	15:40:58.7014582	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2017 TEA GOVERNANCE FORUM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762556	2024-07-05	15:43:01.7216701	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION AND RE- ORIENTATION MEETING WITH AGENCY AUTHORIZED OFFICERS AND ERF HANDLERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762557	2024-07-05	15:44:41.3419163	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MEETING ON THE DECENTRALIZATION OF DEPED CALABARZON\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762558	2024-07-05	15:45:47.5094025	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: October 29, 2018\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED SDO BATANGAS CITY \r\nStatus: \r\nToDate: October 29, 2018\r\nTrainingId: 15280\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762559	2024-07-05	15:45:47.5143862	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: June 19, 2018\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED REGION IV- A CALABARZON \r\nStatus: \r\nToDate: June 21, 2018\r\nTrainingId: 15463\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762560	2024-07-05	15:45:47.5183729	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: April 18, 2018\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: JBDC OCCUPATIONAL HEALTH, SAFETY AND ENVIRONMENT CONSULTANCY \r\nStatus: \r\nToDate: April 19, 2018\r\nTrainingId: 15407\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762561	2024-07-05	15:45:47.5223593	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: April 02, 2018\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: JBDC OCCUPATIONAL HEALTH, SAFETY AND ENVIRONMENT CONSULTANCY\r\nStatus: \r\nToDate: April 02, 2018\r\nTrainingId: 15466\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762562	2024-07-05	15:45:47.5273426	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: March 22, 2018\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: JBDC OCCUPATIONAL HEALTH, SAFETY AND ENVIRONMENT CONSULTANCY\r\nStatus: \r\nToDate: March 22, 2018\r\nTrainingId: 15469\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762563	2024-07-05	15:45:47.5313294	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: March 21, 2018\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: JBDC OCCUPATIONAL HEALTH, SAFETY AND ENVIRONMENT CONSULTANCY\r\nStatus: \r\nToDate: March 21, 2018\r\nTrainingId: 15411\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762564	2024-07-05	15:45:47.5363126	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: December 06, 2017\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED CENTRAL OFFICE \r\nStatus: \r\nToDate: December 08, 2017\r\nTrainingId: 15475\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762565	2024-07-05	15:45:47.5402993	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: December 05, 2017\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED BATANGAS CITY DIVISION \r\nStatus: \r\nToDate: December 05, 2017\r\nTrainingId: 15477\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762566	2024-07-05	15:45:47.5452827	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: November 12, 2017\r\nHours: 48\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED BATANGAS CITY DIVISION \r\nStatus: \r\nToDate: November 12, 2017\r\nTrainingId: 15479\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762567	2024-07-05	15:45:47.5492692	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: October 25, 2017\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED REGION IV- A CALABARZON \r\nStatus: \r\nToDate: October 25, 2017\r\nTrainingId: 15481\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762659	2024-07-08	08:32:25.1117437	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: VMOS UNIT CASCADING SESSION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762568	2024-07-05	15:45:47.5542527	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: October 11, 2017\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED REGION IV A- CALABARZON \r\nStatus: \r\nToDate: October 11, 2017\r\nTrainingId: 15483\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762569	2024-07-05	15:45:47.5582392	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2017\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: GSIS BATANGAS REGIONAL OFFICE \r\nStatus: \r\nToDate: September 11, 2017\r\nTrainingId: 15486\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762570	2024-07-05	15:45:47.5622258	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: May 31, 2017\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: PHILIPPINE ASSOCIATION OF RECORDS OFFICERS AND ARCHIVISTS ( PAROA) \r\nStatus: \r\nToDate: May 31, 2018\r\nTrainingId: 15487\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762571	2024-07-05	15:45:47.5672092	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: March 16, 2017\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED REGION IV- A CALABARZON \r\nStatus: \r\nToDate: March 18, 2017\r\nTrainingId: 15488\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762572	2024-07-05	15:45:47.5711959	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: March 21, 2017\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: GSIS BATANGAS REGIONAL OFFICE \r\nStatus: \r\nToDate: March 21, 2017\r\nTrainingId: 15486\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762573	2024-07-05	15:45:47.5761792	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: February 23, 2017\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED REGION IV-A CALABARZON \r\nStatus: \r\nToDate: February 23, 2017\r\nTrainingId: 15489\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762574	2024-07-05	15:45:47.5801659	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: November 07, 2016\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: GSIS BATANGAS REGIONAL OFFICE \r\nStatus: \r\nToDate: November 07, 2016\r\nTrainingId: 15490\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762575	2024-07-05	15:45:47.5851491	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: March 14, 2016\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: GSIS CENTRAL OFFICE \r\nStatus: \r\nToDate: March 14, 2016\r\nTrainingId: 15491\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762576	2024-07-05	15:47:35.7183081	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIALOGUE WITH AGENCY AUTHORIZED OFFICER ( AAOS) AND ELECTRONIC REMITTANCE FILE ( ERF) HANDLERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762577	2024-07-05	15:50:43.6540753	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING- WORKSHOP ON RESULTS- BASED PERFORMANCE AND MANAGEMENT SYSTEM ( RPMS)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762578	2024-07-05	15:53:05.1252532	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RE- ORIENTATION ON THE ROLES AND FUNCTIONS OF THE SDO RATIONALIZED STRUCTURE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762580	2024-07-05	15:54:58.0933733	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING WORKSHOP ON CUSTOMER SATISFACTION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762591	2024-07-05	15:56:03.4784590	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: February 29, 2016\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: GSIS  BATANGAS REGIONAL OFFICE \r\nStatus: \r\nToDate: February 29, 2016\r\nTrainingId: 15492\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762592	2024-07-05	15:56:03.4834423	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: June 18, 2015\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED BATANGAS CITY DIVISION \r\nStatus: \r\nToDate: June 18, 2018\r\nTrainingId: 15493\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762593	2024-07-05	15:56:03.4874289	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: March 04, 2015\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED BATANGAS CITY DIVISION \r\nStatus: \r\nToDate: March 05, 2015\r\nTrainingId: 15494\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762600	2024-07-05	16:07:18.9401385	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: GUNG HO! A GAD BASED COMPETENCE ENHANCEMENT PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762581	2024-07-05	15:55:50.5222118	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: PUROK 3\r\nBarangay: TINGA ITAAS\r\nBasicInformationId: 0\r\nBirthDate: April 27, 1973\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ricky.realingo@deped.gov.ph\r\nExtensionName: \r\nFirstName: RICKY\r\nFullName: RICKY M. REALINGO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: REALINGO\r\nMaidenName: \r\nMiddleName: MEDINA\r\nMobileNumber: 09260391368\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: PUROK 3\r\nPermanentBarangay: TINGA ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
762582	2024-07-05	15:55:50.5393214	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: VALEDICTORIAN\r\nBasicInformationId: 3655\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1980\r\nDateTo: 1986\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL \r\nYearGraduated: 1986\r\n	admin	EducationalBackgrounds	1
762583	2024-07-05	15:55:50.5393214	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: 1ST HONORABLE \r\nBasicInformationId: 3655\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1986\r\nDateTo: 1990\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: ISLA VERDE CATHOLIC HIGH SCHOOL \r\nYearGraduated: 1990\r\n	admin	EducationalBackgrounds	1
762584	2024-07-05	15:55:50.5393214	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3655\r\nCourse: \r\nCourseId: 1292\r\nCourseOrMajor: \r\nDateFrom: 1990\r\nDateTo: 1994\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: LYCEUM OF THE PHILIPPINES UNIVERSITY\r\nYearGraduated: 1994\r\n	admin	EducationalBackgrounds	1
762585	2024-07-05	15:55:50.5393214	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3655\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MA. QUEENCITA\r\nFullName: MA. QUEENCITA MACATANGAY\r\nGender: Female\r\nLastName: REALINGO\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: TEACHER\r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
762586	2024-07-05	15:55:50.5393214	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3655\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DEMETRIO\r\nFullName: DEMETRIO IBON REALINGO\r\nGender: Male\r\nLastName: REALINGO\r\nMaidenName: \r\nMiddleName: IBON\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
762587	2024-07-05	15:55:50.5393214	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3655\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DELIA\r\nFullName: DELIA MACARAIG MEDINA\r\nGender: Female\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
762588	2024-07-05	15:55:50.5393214	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3655\r\nBirthDate: March 31, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: VICTOR\r\nFullName: VICTOR REALINGO\r\nGender: Male\r\nLastName: REALINGO\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762589	2024-07-05	15:55:50.5393214	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3655\r\nBirthDate: June 30, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ANDREA ROMINA\r\nFullName: ANDREA ROMINA REALINGO\r\nGender: Female\r\nLastName: REALINGO\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762590	2024-07-05	15:55:50.5393214	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3655\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
762599	2024-07-05	16:06:56.3930397	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: DOCTOR OF PHILOSOPHY IN INDUSTRIAL\r\nLevel: Doctorate\r\n	admin	Courses	1
762602	2024-07-05	16:11:15.9389981	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING FOR TRAINERS ( TOTS) FOR RESULTS- BASED PERFORMANCE MANAGEMENT SYSTEM ( RPMS)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762603	2024-07-05	16:15:05.2919239	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON THE RESULTS- BASED PERFORMANCE MANAGEMENT SYSTEM ( RPMS)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762604	2024-07-05	16:18:53.6830280	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ONE DAY ORIENTATION TRAINING ON THE USE OF ONLINE REPORTING SYSTEM FOR FY 2014 & SUBSEQUENT YEARS, IMPLEMENTATION OF EXMDPS OF ALL NATIONAL GOVERNMENT AGENCIES ( NGAS) AND IMPLEMENTATION OF E- FORM 7\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762605	2024-07-05	16:20:27.8669072	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FY 2015 REGIONAL BUDGET PREPARATORY RELATED ACTIVITES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762606	2024-07-05	16:22:47.5462865	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3655\r\nCourse: \r\nCourseId: 1293\r\nCourseOrMajor: \r\nDateFrom: 2008\r\nDateTo: 2012\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: \r\nSchoolorUniversity: ST. LINUS UNIVERSITY\r\nYearGraduated: 2012\r\n	admin	EducationalBackgrounds	1
762607	2024-07-05	16:22:47.5502732	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3655\r\nDateOfExamination: August 29, 2004\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 29, 2004\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0874336\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 83.2%\r\nTitle: BOARD FOR PROFESSIONAL TEACHERS\r\n	admin	Eligibilities	1
762608	2024-07-05	16:22:47.5552565	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3655\r\nDateOfExamination: November 27, 1994\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: November 27, 1994\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 84.9%\r\nTitle: CAREER SERVICE PROFESSIONAL\r\n	admin	Eligibilities	1
762609	2024-07-05	16:22:47.5592433	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3655\r\nDateOfExamination: July 26, 1992\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 7\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: July 26, 1992\r\nLevelOfEligibility: First Level (Subprofessional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 80.9\r\nTitle: CAREER SERVICE SUBPROFESSIONAL\r\n	admin	Eligibilities	1
762610	2024-07-05	16:22:47.5642266	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3655\r\nCompanyInstitution: DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: March 20, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 71,511.00\r\nPositionHeld: EDUCATION SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: July 05, 2024\r\n	admin	Experiences	1
762611	2024-07-05	16:22:47.5682133	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3655\r\nCompanyInstitution:  ASHS- DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 52,847.00\r\nPositionHeld: MASTER TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-3\r\nStatus: Permanent\r\nToDate: March 19, 2023\r\n	admin	Experiences	1
762612	2024-07-05	16:22:47.5731965	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3655\r\nCompanyInstitution: ASHS- DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 13, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 51,325.00\r\nPositionHeld: MASTER TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-3\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
762613	2024-07-05	16:22:47.5781799	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3655\r\nCompanyInstitution:  ASHS- DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 49,835.00\r\nPositionHeld: MASTER TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-2\r\nStatus: Permanent\r\nToDate: June 12, 2022\r\n	admin	Experiences	1
762673	2024-07-08	08:42:37.9815721	<Undetected>	Update	BasicInformationId: 3650\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3447\r\n	BasicInformationId: 3650\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: RESIGNATION\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3447\r\n	admin	Questionnaires	1
762614	2024-07-05	16:22:47.5821666	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3655\r\nCompanyInstitution:  ASHS- DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 48,313.00\r\nPositionHeld: MASTER TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-2\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
762615	2024-07-05	16:22:47.5871500	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3655\r\nCompanyInstitution:  ASHS- DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 47,530.00\r\nPositionHeld: MASTER TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-2\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
762616	2024-07-05	16:22:47.5911366	<Undetected>	Update	BasicInformationId: 3655\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3458\r\nExtensionName: \r\nFirstName: MA. QUEENCITA\r\nFullName: MA. QUEENCITA MACATANGAY\r\nGender: Female\r\nLastName: REALINGO\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: TEACHER\r\nRelationship: Wife\r\n	BasicInformationId: 3655\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3458\r\nExtensionName: \r\nFirstName: MA. QUEENCITA\r\nFullName: MA. QUEENCITA REALINGO\r\nGender: Female\r\nLastName: REALINGO\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: TEACHER\r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
762617	2024-07-05	16:22:47.5961201	<Undetected>	Update	BasicInformationId: 3655\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3459\r\nExtensionName: \r\nFirstName: DEMETRIO\r\nFullName: DEMETRIO IBON REALINGO\r\nGender: Male\r\nLastName: REALINGO\r\nMaidenName: \r\nMiddleName: IBON\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3655\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3459\r\nExtensionName: \r\nFirstName: DEMETRIO\r\nFullName: DEMETRIO REALINGO\r\nGender: Male\r\nLastName: REALINGO\r\nMaidenName: \r\nMiddleName: IBON\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
762618	2024-07-05	16:22:47.6011032	<Undetected>	Update	BasicInformationId: 3655\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3460\r\nExtensionName: \r\nFirstName: DELIA\r\nFullName: DELIA MACARAIG MEDINA\r\nGender: Female\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3655\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3460\r\nExtensionName: \r\nFirstName: DELIA\r\nFullName: DELIA MEDINA\r\nGender: Female\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
762619	2024-07-05	16:22:47.6050900	<Undetected>	Update	BasicInformationId: 3655\r\nBirthDate: March 31, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3461\r\nExtensionName: \r\nFirstName: VICTOR\r\nFullName: VICTOR REALINGO\r\nGender: Male\r\nLastName: REALINGO\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3655\r\nBirthDate: March 31, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3461\r\nExtensionName: \r\nFirstName: VICTOR\r\nFullName: VICTOR REALINGO\r\nGender: Male\r\nLastName: REALINGO\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762620	2024-07-05	16:22:47.6100733	<Undetected>	Update	BasicInformationId: 3655\r\nBirthDate: June 30, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3462\r\nExtensionName: \r\nFirstName: ANDREA ROMINA\r\nFullName: ANDREA ROMINA REALINGO\r\nGender: Female\r\nLastName: REALINGO\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3655\r\nBirthDate: June 30, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3462\r\nExtensionName: \r\nFirstName: ANDREA ROMINA\r\nFullName: ANDREA ROMINA REALINGO\r\nGender: Female\r\nLastName: REALINGO\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762621	2024-07-05	16:22:47.6140600	<Undetected>	Update	BasicInformationId: 3655\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3452\r\n	BasicInformationId: 3655\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3452\r\n	admin	Questionnaires	1
762622	2024-07-05	16:23:13.5623212	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: November 26, 2014\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED BATANGAS CITY DIVISION \r\nStatus: \r\nToDate: November 28, 2014\r\nTrainingId: 15406\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762623	2024-07-05	16:23:13.5663078	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: September 01, 2014\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED BATANGAS CITY DIVISION \r\nStatus: \r\nToDate: September 02, 2014\r\nTrainingId: 15496\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762624	2024-07-05	16:23:13.5702945	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: September 01, 2014\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: GSIS CENTRAL OFFICE \r\nStatus: \r\nToDate: September 01, 2014\r\nTrainingId: 15497\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762625	2024-07-05	16:23:13.5762745	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: June 18, 2014\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED BATANGAS CITY\r\nStatus: \r\nToDate: June 20, 2014\r\nTrainingId: 15498\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762626	2024-07-05	16:23:13.5802612	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: March 26, 2014\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED CENTRAL OFFICE \r\nStatus: \r\nToDate: March 27, 2024\r\nTrainingId: 15499\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762627	2024-07-05	16:23:13.5852445	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: March 20, 2014\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED REGION IV-A CALABARZON \r\nStatus: \r\nToDate: March 20, 2014\r\nTrainingId: 15500\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762628	2024-07-05	16:23:13.5892313	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: February 20, 2014\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED REGION IV -A / DEPARTMENT OF BUDGET AND MANAGEMENT \r\nStatus: \r\nToDate: February 21, 2014\r\nTrainingId: 15501\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762629	2024-07-05	16:24:08.9151922	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING ON GENDER AND DEVELOPMENT (GAD)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762630	2024-07-05	16:25:34.1167743	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: GSIS DEPED CONSULTATIIVE MEETING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762634	2024-07-05	16:26:55.8113908	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PRO IV- B EMPLOYERS' FORUM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762637	2024-07-05	16:28:34.8425242	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CUSTOMER RELATIONSHIP ENRICHMENT AND MANAGEMENT ( CREAM) PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762631	2024-07-05	16:26:15.9987476	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3655\r\nCompanyInstitution:  ASHS- DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 13, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 46,008.00\r\nPositionHeld: MASTER TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
762632	2024-07-05	16:26:16.0057242	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3655\r\nCompanyInstitution: ASHS- DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 45,269.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: June 12, 2019\r\n	admin	Experiences	1
762633	2024-07-05	16:26:16.0097108	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3655\r\nCompanyInstitution: ASHS- DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 42,099.00\r\nPositionHeld: MASTER TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
762635	2024-07-05	16:28:34.8801266	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3655\r\nCompanyInstitution: ASHS- DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 39,151.00\r\nPositionHeld: MASTER TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
762636	2024-07-05	16:28:34.8841128	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3655\r\nCompanyInstitution: PSTMIS- DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 12, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 36,341.00\r\nPositionHeld: MASTER TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-2\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
762638	2024-07-08	08:15:54.3731673	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF SCIENCE IN EDUCATION\r\nLevel: College\r\n	admin	Courses	1
762639	2024-07-08	08:17:50.6091472	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: PH.D IN ENVIRONMENTAL EDUCATION\r\nLevel: Master's\r\n	admin	Courses	1
762640	2024-07-08	08:18:42.7612084	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER OF ARTS IN ENVIRONMENTAL EDUCATION \r\nLevel: Master's\r\n	admin	Courses	1
762641	2024-07-08	08:20:05.4825987	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: PH. IN ENVIRONMENTAL EDUCATION\r\nLevel: Doctorate\r\n	admin	Courses	1
762642	2024-07-08	08:23:06.2695563	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: TALUMPOK WEST\r\nBasicInformationId: 0\r\nBirthDate: September 25, 1966\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: comia_sacoro@yahoo.com\r\nExtensionName: \r\nFirstName: SACORO\r\nFullName: SACORO R. COMIA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: RAMIREZ\r\nMobileNumber: 09171892566\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: TALUMPOK WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 56\r\nZipCode: 4200\r\n	admin	BasicInformation	1
762643	2024-07-08	08:23:06.3375978	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: 2ND HONORABLE MENTION\r\nBasicInformationId: 3656\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1974\r\nDateTo: 1979\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: GUINTO ELEMENTARY SCHOOL\r\nYearGraduated: 1979\r\n	admin	EducationalBackgrounds	1
762644	2024-07-08	08:23:06.3385938	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: VALEDICTORIAN\r\nBasicInformationId: 3656\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1979\r\nDateTo: 1983\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: TALUMPOK NATIONAL HIGH SCHOOL\r\nYearGraduated: 1983\r\n	admin	EducationalBackgrounds	1
762645	2024-07-08	08:23:06.3385938	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3656\r\nCourse: \r\nCourseId: 1294\r\nCourseOrMajor: \r\nDateFrom: 1983\r\nDateTo: 1987\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: ST. BRIDGET COLLEGE\r\nYearGraduated: 1987\r\n	admin	EducationalBackgrounds	1
762646	2024-07-08	08:23:06.3385938	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: DECS SCHOLAR\r\nBasicInformationId: 3656\r\nCourse: \r\nCourseId: 1296\r\nCourseOrMajor: \r\nDateFrom: 1992\r\nDateTo: 1996\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: MIRIAM COLLEGE\r\nYearGraduated: 1996\r\n	admin	EducationalBackgrounds	1
762647	2024-07-08	08:23:06.3385938	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: INSTITUTIONAL SCHOLAR\r\nBasicInformationId: 3656\r\nCourse: \r\nCourseId: 1297\r\nCourseOrMajor: \r\nDateFrom: 2002\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: \r\nSchoolorUniversity: MIRIAM COLLEGE\r\nYearGraduated: 2009\r\n	admin	EducationalBackgrounds	1
762648	2024-07-08	08:23:06.3395901	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3656\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ODELION\r\nFullName: ODELION CAIGA COMIA\r\nGender: Male\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: CAIGA\r\nOccupation: DRIVER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
762649	2024-07-08	08:23:06.3395901	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3656\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PEDRO\r\nFullName: PEDRO MANALO RAMIREZ\r\nGender: Male\r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: MANALO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
762650	2024-07-08	08:23:06.3395901	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3656\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JULIANA\r\nFullName: JULIANA DE TORRES CLAVERIA\r\nGender: Female\r\nLastName: CLAVERIA\r\nMaidenName: \r\nMiddleName: DE TORRES\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
762651	2024-07-08	08:23:06.3395901	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3656\r\nBirthDate: September 16, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SHEILA MARIZ\r\nFullName: SHEILA MARIZ R COMIA\r\nGender: Female\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: R\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762652	2024-07-08	08:23:06.3395901	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3656\r\nBirthDate: November 05, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SHEENA MAE\r\nFullName: SHEENA MAE R COMIA\r\nGender: Female\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: R\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762653	2024-07-08	08:23:06.3405865	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3656\r\nBirthDate: September 16, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RAYMIEL KANE\r\nFullName: RAYMIEL KANE R COMIA\r\nGender: Male\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: R\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762654	2024-07-08	08:23:06.3405865	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3656\r\nDateOfExamination: July 28, 1985\r\nDateOfRelease: July 28, 1985\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: July 28, 1985\r\nLevelOfEligibility: First Level (Subprofessional)\r\nLicenseNumber: 000706\r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 72.65%\r\nTitle: CAREER SERVICE SUB PROFESSIONAL\r\n	admin	Eligibilities	1
762655	2024-07-08	08:23:06.3405865	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3656\r\nDateOfExamination: July 26, 1987\r\nDateOfRelease: July 26, 1987\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: July 26, 1987\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 12693\r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 72.22%\r\nTitle: CAREER SERVICE PROFESSIONAL\r\n	admin	Eligibilities	1
762656	2024-07-08	08:23:06.3405865	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3656\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
762657	2024-07-08	08:29:02.7020176	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ON-LINE CLEARING SYSTEM"S TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762658	2024-07-08	08:31:07.8576947	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SYSTEMATICS FCDU- SAVINGS AND PSP/HYSA SYSTEM TRAINING AND CONVERSION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766040	2024-07-11	16:10:24.8393105	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3695\r\nRecognitionId: 0\r\nRecognitionName: 2003 OUTSTANDING SCHOOL HEAD\r\n	admin	Recognitions	1
762660	2024-07-08	08:33:29.3859288	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: June 28, 2013\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED BATANGAS CITY DIVISION \r\nStatus: \r\nToDate: June 28, 2013\r\nTrainingId: 15502\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762661	2024-07-08	08:33:29.3909302	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: March 09, 2012\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: GSIS BATANGAS REGIONAL OFFICE \r\nStatus: \r\nToDate: March 09, 2012\r\nTrainingId: 15503\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762662	2024-07-08	08:33:29.3949353	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: July 25, 2008\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: PHILIPPINE HEALTH INSURANCE CORPORATION \r\nStatus: \r\nToDate: July 25, 2008\r\nTrainingId: 15504\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762663	2024-07-08	08:33:29.3999347	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: July 08, 2000\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: LANDBANK OF THE PHILIPPINES - BATANGAS CITY BRANCH \r\nStatus: \r\nToDate: July 09, 2000\r\nTrainingId: 15505\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762664	2024-07-08	08:33:29.4039346	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: March 11, 2000\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: LANDBANK OF THE PHILIPPINES- CALAMBA BRANCH\r\nStatus: \r\nToDate: March 11, 2000\r\nTrainingId: 15506\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762665	2024-07-08	08:33:29.4094423	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: November 07, 1998\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: LANDBANK OF THE PHILIPPINES \r\nStatus: \r\nToDate: November 07, 1998\r\nTrainingId: 15507\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762666	2024-07-08	08:33:29.4134480	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3650\r\nEmployeeTrainingId: 0\r\nFromDate: November 21, 1998\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: LANDBANK OF THE PHILIPPPINES- BATANGAS CITY BRANCH\r\nStatus: \r\nToDate: November 22, 1998\r\nTrainingId: 15508\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762667	2024-07-08	08:41:36.3693514	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP AND AWARENESS CAMPAIGN ON UNITED NATION OBSERVANCES, UNESCO PROGRAMS AND PHILIPPINE COMMERATIONS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762668	2024-07-08	08:42:37.9555721	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3650\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE \r\n	admin	Skills	1
762669	2024-07-08	08:42:37.9595719	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3650\r\nCharacterReferenceId: 0\r\nCompanyAddress: LYCEUM OF THE PHILIPPINES UNIVERSITY- BATANGAS \r\nCompanyName: \r\nContactNumber: 723-2441\r\nExtensionName: \r\nFirstName: ALEX \r\nLastName: YLAGAN \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762670	2024-07-08	08:42:37.9675724	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3650\r\nCharacterReferenceId: 0\r\nCompanyAddress: LANDBANK OF THE PHILIPPINES \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: DELIA\r\nLastName: ALMERO\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762671	2024-07-08	08:42:37.9715717	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3650\r\nCharacterReferenceId: 0\r\nCompanyAddress: NOBLE ST., BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 723-3063\r\nExtensionName: \r\nFirstName: ELVIRA\r\nLastName: ITURRALDE\r\nMiddleName: G\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762672	2024-07-08	08:42:37.9765720	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 53 LOT 19\r\nAddress2: EL SITIO SUBDIVISION\r\nBarangay: DUMANTAY\r\nBasicInformationId: 3650\r\nBirthDate: October 23, 1973\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MARIAROSEL.ISLETA@DEPED. GOV.PH\r\nExtensionName: \r\nFirstName: MARIA ROSEL\r\nFullName: MARIA ROSEL D. ISLETA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ISLETA\r\nMaidenName: \r\nMiddleName: DRIZ\r\nMobileNumber: 09971284850\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 53 LOT 19\r\nPermanentAddress2: EL SITIO SUBDIVISION\r\nPermanentBarangay: DUMANTAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: THIRD STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: THIRD STREET\r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 53 LOT 19\r\nAddress2: EL SITIO SUBDIVISION\r\nBarangay: DUMANTAY\r\nBasicInformationId: 3650\r\nBirthDate: October 23, 1973\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MARIAROSEL.ISLETA@DEPED. GOV.PH\r\nExtensionName: \r\nFirstName: MARIA ROSEL\r\nFullName: MARIA ROSEL D. ISLETA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02002896683\r\nHDMF: 1490-0094-0748\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ISLETA\r\nMaidenName: \r\nMiddleName: DRIZ\r\nMobileNumber: 09971284850\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 53 LOT 19\r\nPermanentAddress2: EL SITIO SUBDIVISION\r\nPermanentBarangay: DUMANTAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: THIRD STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: 19-000326757-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-0889282-3\r\nStreetName: THIRD STREET\r\nTIN: 177-763-666-0000\r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
766041	2024-07-11	16:10:24.8442935	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3695\r\nOrganizationId: 0\r\nOrganizationName: INSTABRIGHT INTERNATIONAL GUILD OF RESEARCHERS \r\n	admin	Organizations	1
762674	2024-07-08	08:44:38.0509017	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FINAL QUALITY ASSURANCE/WORKSHOP OF CONTEXTUALIZED AND LOCALIZED MATERIALS IN ALL LEARNING AREAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762676	2024-07-08	08:47:08.9080948	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING ON HIGHER SKILLS (HOTS) AND SOLO FRAMEWORK ACROSS CURRICULUM FOR EDUCATION LEADERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762677	2024-07-08	08:49:46.8394173	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING WORKSHOP ON TEACHING THE CRITICAL COMPETENCIES IN ALL LEARNING AREAS OF KEY STAGE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762679	2024-07-08	08:52:20.7912554	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 DIVISION WORKSHOP ON QUALITY ASSURANCE OF CONTEXTUALIZED AND LOCALIZED LEARNING MATERIALS IN ALL LEARNING AREAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762681	2024-07-08	08:55:07.2184960	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DEVELOPING A CULTURE OF INNOVATIVE AND RESILIENT LEADERSHIP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762683	2024-07-08	08:58:12.9067374	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON THE DESIGN AND DEVELOPMENT OF PIVOT ASSURANCE FORM MONITORING AND PROGRESS (LAMP) OF REGIONAL LEARNING OUTCOMES IN DISTANCE LEARNING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762690	2024-07-08	09:03:34.1545867	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON THE DESIGN AN DDEVELOPMENT OFM PIVOT ASSESSMENT FOR LEARNERS IN DISTANCE LERANING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762692	2024-07-08	09:05:29.5384895	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON THE DESIGN AND DEVELOPMENT OF PIVOT ASSESSMENT FOR LEARNERS IN DISTANCE LEARNING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762696	2024-07-08	09:08:47.5135739	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CONTENT CREATION AND FINALIZATION OF PIVOT4A SELF-LEARNING MODULES (SLMs) FOR THE SECOND QUARTER\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762715	2024-07-08	09:22:57.7428785	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3655\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
762716	2024-07-08	09:22:57.7478613	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3655\r\nSkillId: 0\r\nSkillName: WRITING REPORTS AND CORRESPONDENCES\r\n	admin	Skills	1
762717	2024-07-08	09:22:57.7528451	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3655\r\nEmployeeTrainingId: 0\r\nFromDate: November 28, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTRMENT OF EDUCATION- CENTRAL OFIFCE\r\nStatus: \r\nToDate: November 30, 2023\r\nTrainingId: 15509\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762718	2024-07-08	09:22:57.7568318	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3655\r\nEmployeeTrainingId: 0\r\nFromDate: November 20, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTRMENT OF EDUCATION- BATANGAS CITY \r\nStatus: \r\nToDate: November 20, 2023\r\nTrainingId: 15510\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762719	2024-07-08	09:22:57.7618141	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3655\r\nEmployeeTrainingId: 0\r\nFromDate: September 26, 2023\r\nHours: 32\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTRMENT OF EDUCATION- BATANGAS CITY \r\nStatus: \r\nToDate: September 29, 2023\r\nTrainingId: 15512\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762720	2024-07-08	09:22:57.7667985	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3655\r\nEmployeeTrainingId: 0\r\nFromDate: September 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTRMENT OF EDUCATION- BATANGAS CITY \r\nStatus: \r\nToDate: September 22, 2023\r\nTrainingId: 15307\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762721	2024-07-08	09:22:57.7717820	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3655\r\nEmployeeTrainingId: 0\r\nFromDate: August 14, 2023\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTRMENT OF EDUCATION- BATANGAS CITY \r\nStatus: \r\nToDate: August 18, 2023\r\nTrainingId: 15513\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762722	2024-07-08	09:22:57.7767653	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3655\r\nEmployeeTrainingId: 0\r\nFromDate: July 24, 2023\r\nHours: 40\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTRMENT OF EDUCATION- BATANGAS CITY \r\nStatus: \r\nToDate: July 28, 2023\r\nTrainingId: 15515\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766042	2024-07-11	16:10:24.8492767	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3695\r\nOrganizationId: 0\r\nOrganizationName: INSTABRIGHT INTERNATIONAL GUILD OF RESEARCHERS AND EDUCATORS \r\n	admin	Organizations	1
762675	2024-07-08	08:46:36.9362809	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CONDUCT OF ONLINE SUBMISSION OF BUDGET PROPOSAL ( OSBP ) AND BUDGET FINANCIAL AND ACCOUNTABILITY REPORTS(BFARs)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762678	2024-07-08	08:50:39.0077834	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTAL CUM WORKSHOP ON THE UPDATES ON THE ENHANCED FINANCIAL REPORTING SYSTEM (eFRS)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762680	2024-07-08	08:54:13.2164782	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING WORKSHOP ON THE RESULTS-BASED PERFORMANCE MANAGEMENT SYSTEM (RPMS)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762682	2024-07-08	08:58:07.1746823	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL SEMINAR WORKSHOP FOR THE CONSOLIDATION OF CY 2015 YEAR END FINANCIAL REPORTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762684	2024-07-08	09:00:44.9916005	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2017 BUDGET PREPARATION AND STRENTHENING ACCOUNTING POLICIES ON FUND UTILIZATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762685	2024-07-08	09:01:31.7827627	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3652\r\nEmployeeTrainingId: 0\r\nFromDate: May 12, 2015\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION OF DIVISION BATANGAS CITY\r\nStatus: \r\nToDate: May 13, 2015\r\nTrainingId: 15511\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762686	2024-07-08	09:01:31.7867633	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3652\r\nEmployeeTrainingId: 0\r\nFromDate: May 28, 2015\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGIONAL OFFICE\r\nStatus: \r\nToDate: May 28, 2015\r\nTrainingId: 15514\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762687	2024-07-08	09:01:31.7937632	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3652\r\nEmployeeTrainingId: 0\r\nFromDate: June 18, 2015\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION OF DIVISION BATANGAS CITY\r\nStatus: \r\nToDate: June 18, 2015\r\nTrainingId: 15516\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762688	2024-07-08	09:01:31.7987636	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3652\r\nEmployeeTrainingId: 0\r\nFromDate: January 19, 2016\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGIONAL OFFICE\r\nStatus: \r\nToDate: January 20, 2016\r\nTrainingId: 15518\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762689	2024-07-08	09:01:31.8027633	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3652\r\nEmployeeTrainingId: 0\r\nFromDate: February 18, 2016\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION OF DIVISION BATANGAS CITY\r\nStatus: \r\nToDate: February 19, 2016\r\nTrainingId: 15520\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762700	2024-07-08	09:16:32.5747083	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3652\r\nRecognitionId: 0\r\nRecognitionName: CERTIFICATE OF RECOGNITION- TECHNICAL WORKING GROUP DURING THE CONTINOUS IMPROVEMENT PROJECT \r\n	admin	Recognitions	1
762701	2024-07-08	09:16:32.5807079	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3652\r\nRecognitionId: 0\r\nRecognitionName: CERTIFICATE OF RECOGNITION - FACILITATOR DURING CAPACITY BUILDING FOR SCHOOL HEADS AND FINANCIAL STAFF ON THE PROPER UTILIZATION OF MOOE FUNDS\r\n	admin	Recognitions	1
762702	2024-07-08	09:16:32.5857085	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3652\r\nRecognitionId: 0\r\nRecognitionName: CERTIFICATE OF RECOGNITION - EXEMPLARY PERFORMANCE AS SDO PERSONNEL AT SDO BATANGAS CITY\r\n	admin	Recognitions	1
762703	2024-07-08	09:16:32.5897085	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3652\r\nRecognitionId: 0\r\nRecognitionName: CERTIFICATE OF COMPLETION -GUIDELINES FOR AUDITING MANAGEMENT SYSTEM TRAING COURSE\r\n	admin	Recognitions	1
762704	2024-07-08	09:16:32.5957082	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3652\r\nRecognitionId: 0\r\nRecognitionName: CERTIFICATE OF COMPLETION - GUIDELINES OF AUDITING MANAGEMENT SYSTEM INTERNAL AUDIT COURSE\r\n	admin	Recognitions	1
762705	2024-07-08	09:16:32.6007137	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3652\r\nRecognitionId: 0\r\nRecognitionName: CERTIFICATE OF RECOGNITION - FACILITATOR IN THE DIVISION FY 2019 BUDGET PREPARATION FOR NON - IMPLEMENTING UNITS\r\n	admin	Recognitions	1
762706	2024-07-08	09:16:32.6047136	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3652\r\nRecognitionId: 0\r\nRecognitionName: CERTIFICATE OF RECOGNITION - FACILITATOR DURING THE DIVISION SEMINAR WORKSHOP ON THE PREPARATION AND CONSOLIDATION OF FY 2017 YEAR END FINANCIAL REPORTS \r\n	admin	Recognitions	1
762707	2024-07-08	09:16:32.6097141	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3652\r\nCharacterReferenceId: 0\r\nCompanyAddress: P.HERRERA ST., BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 722-2715\r\nExtensionName: \r\nFirstName: DARLENE  VENUS\r\nLastName: MAGNAYE\r\nMiddleName: D \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766307	2024-07-12	09:25:00.1536145	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3698\r\nOrganizationId: 0\r\nOrganizationName: LEAD, REWARDS AND RECOGNITION ( R&R) \r\n	admin	Organizations	1
762691	2024-07-08	09:03:39.9136722	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION OF CLMD CHIEFS. CID CHIEFS, AND TVL SUPERVISORS ON THE IMPLEMENTATIONS OF D.O 54, S. 2022 (GUIDELINES ON THE SELECTION OF SHS TVL SPECIALIZATION)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762693	2024-07-08	09:05:19.7991888	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FIRST GAWAD KAWANI\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762694	2024-07-08	09:07:17.7993145	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 DIVISION CONFERENCE OF BASIC EDUCATION RESEARCHERS (DCBER)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762695	2024-07-08	09:08:24.5274554	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RESEARCH PAPERS FOR ORAL PRESENTATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762697	2024-07-08	09:11:05.9034011	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CURRICULUM AND INTERFACE (CT) INTERFACE WITH THE CURRICULUM AND LEARNING MANAGAMENT DIVISION (CLMD) AND CURRICULUM IMPLEMENTATION DIVISION (CID) CHIEFS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762698	2024-07-08	09:13:29.7665451	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 NATIONAL TEACHERS' MONTH DIVISION CELEBRATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762699	2024-07-08	09:15:15.9908866	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL READING PROGRAM (NRP)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762712	2024-07-08	09:17:43.9718658	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING ON HIGHER ORDER THINKING SKILLS (HOTS) AND SOLO FRAMEWORK ACROSS THE CURRICULUM FOR EDUCATION LEADERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762713	2024-07-08	09:19:45.9107601	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING ON HIGHER ORDER THINKING SKILLS LEARNING PACKAGES (HOTS- PLPS) FOR ENGLISH, SCIENCE, AND MATHEMATICS TEACHERS (BATCH I)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762714	2024-07-08	09:20:53.2933637	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 4TH NATIONAL ASSEMBLY OF EDUCATION LEADERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762734	2024-07-08	09:23:01.5579692	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BUILDING A POSITIVE AND STRENGTH- BASED INSTRUCTIONAL SUPERVISION AND TRANSFORMATIONAL LEADERSHIP IN SCHOOLS THROUGH APPRECIATIVE INQUIRY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762735	2024-07-08	09:24:53.1489211	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION ORIENTATION ON INDIVIDUAL PERFORMANCE COMMITMENT REVIEW (I/OCRF) AND CALIBRATION OF SDO PERSONNEL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762736	2024-07-08	09:27:13.4803641	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: IMPLEMENTATION OF SCHOOL- BASED FEEEDING PROGRAM (SBFP) FOR SY 2023-2024\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762750	2024-07-08	09:31:39.2217649	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION ORIENTATION ON THE END-OF-SCHOOL YEAR PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762752	2024-07-08	09:33:07.2349436	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 DIVISION ORIENTATION OF THE KEY LEADERS ON THE IMPLMENTATION OF NATIONAL LEARNING CAMP (NLC)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762754	2024-07-08	09:34:48.4214819	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION OF END-OF-SCHOOL YEAR READING PROGRAM (LUZON CLUSTER)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762757	2024-07-08	09:36:47.9327108	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL ORIENTATION OF KEY OFFICIALS ON THE IMPLEMENTATION OF THE NATIONAL LEARNING CAMP- LUZON 2 CLUSTER\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762759	2024-07-08	09:38:52.8923656	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TECHNICAL ASSISTANCE PROVISION IN THE FINALIZATION OF DIVISION STRATEGIC HRD PLANS FOR FY 2023-2030\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766308	2024-07-12	09:25:00.1605911	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3698\r\nOrganizationId: 0\r\nOrganizationName: LEAD SECRETARIAT, PRAISE COMMITTEE\r\n	admin	Organizations	1
762708	2024-07-08	09:16:32.6142220	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3652\r\nCharacterReferenceId: 0\r\nCompanyAddress: P.HERRERA ST., BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 722-2715\r\nExtensionName: \r\nFirstName: MARIA JOSEFINA\r\nLastName: LAGMAN\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762709	2024-07-08	09:16:32.6182269	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3652\r\nCharacterReferenceId: 0\r\nCompanyAddress: P.HERRERA ST., BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 702-2094 LOC 101\r\nExtensionName: \r\nFirstName: KRISTEL\r\nLastName: QUIZON\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762710	2024-07-08	09:16:32.6222277	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 142-C\r\nAddress2: \r\nBarangay: TULO\r\nBasicInformationId: 3652\r\nBirthDate: January 05, 1986\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSEANNEALYSSA.GABIA@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSE ANNE ALYSSA\r\nFullName: ROSE ANNE ALYSSA F. GABIA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.66\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GABIA\r\nMaidenName: \r\nMiddleName: FARAON\r\nMobileNumber: 09156422436\r\nNationality: Filipino\r\nPermanentAddress1: 142-C\r\nPermanentAddress2: \r\nPermanentBarangay: TULO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO MANGGAHAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO MANGGAHAN\r\nTIN: \r\nWeight: 57\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 142-C\r\nAddress2: \r\nBarangay: TULO\r\nBasicInformationId: 3652\r\nBirthDate: January 05, 1986\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSEANNEALYSSA.GABIA@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSE ANNE ALYSSA\r\nFullName: ROSE ANNE ALYSSA F. GABIA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 06017706856\r\nHDMF: 1211-8358-7276\r\nHeight: 1.66\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GABIA\r\nMaidenName: \r\nMiddleName: FARAON\r\nMobileNumber: 09156422436\r\nNationality: Filipino\r\nPermanentAddress1: 142-C\r\nPermanentAddress2: \r\nPermanentBarangay: TULO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO MANGGAHAN\r\nPermanentZipCode: 4200\r\nPhilhealth: 90-501166091-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1824795-0\r\nStreetName: SITIO MANGGAHAN\r\nTIN: 305-696-116-0000\r\nWeight: 57\r\nZipCode: 4200\r\n	admin	BasicInformation	1
762711	2024-07-08	09:16:32.6272276	<Undetected>	Update	BasicInformationId: 3652\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3449\r\n	BasicInformationId: 3652\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3449\r\n	admin	Questionnaires	1
762737	2024-07-08	09:27:25.5631348	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3651\r\nCompanyInstitution: DEPARTMNET OF EDUCATION/ DIVISION OF BATANGAS CITY/ FINANCE UNIT \r\nExperienceId: 0\r\nFromDate: July 01, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 41,140.00\r\nPositionHeld: ADMINISTRATIVE OFFICER V \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-3\r\nStatus: Permanent\r\nToDate: July 08, 2024\r\n	admin	Experiences	1
762738	2024-07-08	09:27:25.5691344	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3651\r\nCompanyInstitution: OFFICE OF THE PRESIDENT  \r\nExperienceId: 0\r\nFromDate: May 04, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 27,473.00\r\nPositionHeld: PRESIDENTIAL STAFF OFFICER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-3\r\nStatus: Permanent\r\nToDate: June 30, 2015\r\n	admin	Experiences	1
762739	2024-07-08	09:27:25.5741347	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3651\r\nCompanyInstitution: OFFICE OF THE PRESIDENT \r\nExperienceId: 0\r\nFromDate: February 15, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 14,323.00\r\nPositionHeld: PRESIDENTIAL STAFF OFFICER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: May 03, 2009\r\n	admin	Experiences	1
762740	2024-07-08	09:27:25.5781351	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3651\r\nCompanyInstitution: PEOPLE SUPPORT PHILS, INC. \r\nExperienceId: 0\r\nFromDate: July 11, 2006\r\nIsGovernmentService: False\r\nMonthlySalary: 13,500.00\r\nPositionHeld: CUSTOMER SERIVCE REPRESENTATIVE\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: February 28, 2007\r\n	admin	Experiences	1
762741	2024-07-08	09:27:25.5831347	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3651\r\nCompanyInstitution: GOOD SEPHERD SCHOOL \r\nExperienceId: 0\r\nFromDate: September 01, 2005\r\nIsGovernmentService: False\r\nMonthlySalary: 4,000.00\r\nPositionHeld: SECRETARY \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: May 31, 2006\r\n	admin	Experiences	1
762742	2024-07-08	09:27:25.5871347	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3651\r\nCompanyInstitution: AMBASSADOR'S TAILORING, MILITARY SUPPLY AND COMPUTER SHOP \r\nExperienceId: 0\r\nFromDate: February 22, 2005\r\nIsGovernmentService: False\r\nMonthlySalary: 2,500.00\r\nPositionHeld: ENCODER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: June 07, 2005\r\n	admin	Experiences	1
762751	2024-07-08	09:32:24.3303513	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION BASIC EDUCATION RESEARCH FUND (BERF)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762723	2024-07-08	09:22:57.7807519	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3655\r\nEmployeeTrainingId: 0\r\nFromDate: February 20, 2023\r\nHours: 40\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: SEAETI\r\nStatus: \r\nToDate: February 24, 2023\r\nTrainingId: 15517\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762724	2024-07-08	09:22:57.7857351	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3655\r\nEmployeeTrainingId: 0\r\nFromDate: May 17, 2021\r\nHours: 64\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTRMENT OF EDUCATION- REGION IV A\r\nStatus: \r\nToDate: May 26, 2021\r\nTrainingId: 15519\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762725	2024-07-08	09:22:57.7907187	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3655\r\nEmployeeTrainingId: 0\r\nFromDate: February 14, 2021\r\nHours: 64\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTRMENT OF EDUCATION- REGION 4 A\r\nStatus: \r\nToDate: February 26, 2021\r\nTrainingId: 15523\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762726	2024-07-08	09:22:57.7957022	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3655\r\nCompanyInstitution: LYCEUM OF THE PHILIPPINES UNIVERSITY \r\nExperienceId: 0\r\nFromDate: June 20, 1994\r\nIsGovernmentService: False\r\nMonthlySalary: 45,000.00\r\nPositionHeld: COLLEGE PROFESSOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: March 30, 2016\r\n	admin	Experiences	1
762727	2024-07-08	09:22:57.7996887	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3655\r\nCompanyInstitution: EULOGIO "AMANG" RODRIGUEZ INSTITUTE OF TECHNOLOGY\r\nExperienceId: 0\r\nFromDate: February 05, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 2,000.00\r\nPositionHeld: ONLINE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: June 19, 1994\r\n	admin	Experiences	1
762728	2024-07-08	09:22:57.8046719	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3655\r\nCompanyInstitution: LYCEUM OF THE PHILIPPINES UNIVERSITY\r\nExperienceId: 0\r\nFromDate: May 02, 1994\r\nIsGovernmentService: False\r\nMonthlySalary: 3,000.00\r\nPositionHeld: OFFICE CLERK\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: June 19, 1994\r\n	admin	Experiences	1
762729	2024-07-08	09:22:57.8096555	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3655\r\nCharacterReferenceId: 0\r\nCompanyAddress: LIBJO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 0998127698\r\nExtensionName: \r\nFirstName: LILIBETH \r\nLastName: VIRTUS\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762730	2024-07-08	09:22:57.8136421	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3655\r\nCharacterReferenceId: 0\r\nCompanyAddress: TALUMPOK\r\nCompanyName: \r\nContactNumber: 09171892566\r\nExtensionName: \r\nFirstName: SACORO\r\nLastName: COMIA\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762731	2024-07-08	09:22:57.8186251	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3655\r\nCharacterReferenceId: 0\r\nCompanyAddress: BAUAN, BATANGAS\r\nCompanyName: \r\nContactNumber: 093937434721\r\nExtensionName: \r\nFirstName: LUCILA\r\nLastName: PORTUGAL\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762732	2024-07-08	09:22:57.8236087	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: PUROK 3\r\nBarangay: TINGA ITAAS\r\nBasicInformationId: 3655\r\nBirthDate: April 27, 1973\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ricky.realingo@deped.gov.ph\r\nExtensionName: \r\nFirstName: RICKY\r\nFullName: RICKY M. REALINGO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: REALINGO\r\nMaidenName: \r\nMiddleName: MEDINA\r\nMobileNumber: 09260391368\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: PUROK 3\r\nPermanentBarangay: TINGA ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: PUROK 3\r\nBarangay: TINGA ITAAS\r\nBasicInformationId: 3655\r\nBirthDate: April 27, 1973\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ricky.realingo@deped.gov.ph\r\nExtensionName: \r\nFirstName: RICKY\r\nFullName: RICKY M. REALINGO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02004977074\r\nHDMF: 1490-0033-8351\r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: REALINGO\r\nMaidenName: \r\nMiddleName: MEDINA\r\nMobileNumber: 09260391368\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: PUROK 3\r\nPermanentBarangay: TINGA ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050039648-1\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3036087-3\r\nStreetName: \r\nTIN: 083-220-042-0000\r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
762733	2024-07-08	09:22:57.8285918	<Undetected>	Update	BasicInformationId: 3655\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3452\r\n	BasicInformationId: 3655\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3452\r\n	admin	Questionnaires	1
762748	2024-07-08	09:29:21.6581924	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING WORSKHOP ON GRADE 12 CAREER GUIDANCE PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762743	2024-07-08	09:27:25.5921350	<Undetected>	Update	BasicInformationId: 3651\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3440\r\nExtensionName: \r\nFirstName: DOMINGO\r\nFullName: DOMINGO EBORA EBORA\r\nGender: Male\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: OFW\r\nRelationship: Husband\r\n	BasicInformationId: 3651\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3440\r\nExtensionName: \r\nFirstName: DOMINGO\r\nFullName: DOMINGO EBORA\r\nGender: Male\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: OFW\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
762744	2024-07-08	09:27:25.5961349	<Undetected>	Update	BasicInformationId: 3651\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3441\r\nExtensionName: \r\nFirstName: FLORENTINO\r\nFullName: FLORENTINO EBORA MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3651\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3441\r\nExtensionName: \r\nFirstName: FLORENTINO\r\nFullName: FLORENTINO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
762745	2024-07-08	09:27:25.6011353	<Undetected>	Update	BasicInformationId: 3651\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3442\r\nExtensionName: \r\nFirstName: QUINTINA\r\nFullName: QUINTINA EBORA PANGANIBAN\r\nGender: Female\r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3651\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3442\r\nExtensionName: \r\nFirstName: QUINTINA\r\nFullName: QUINTINA PANGANIBAN\r\nGender: Female\r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
762746	2024-07-08	09:27:25.6051348	<Undetected>	Update	BasicInformationId: 3651\r\nBirthDate: April 23, 2012\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3443\r\nExtensionName: \r\nFirstName: DAWN\r\nFullName: DAWN M EBORA\r\nGender: Female\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3651\r\nBirthDate: April 23, 2012\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3443\r\nExtensionName: \r\nFirstName: DAWN\r\nFullName: DAWN EBORA\r\nGender: Female\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762747	2024-07-08	09:27:25.6091336	<Undetected>	Update	BasicInformationId: 3651\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3448\r\n	BasicInformationId: 3651\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3448\r\n	admin	Questionnaires	1
762749	2024-07-08	09:30:56.6700807	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING ON ENHANCED BUDGET MONITORING SYSTEM ( EBMS) BATCH 1\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762753	2024-07-08	09:33:23.2398147	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 SEMINAR IN GOVERNMENTAL MANAGEMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762756	2024-07-08	09:35:41.0936103	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING- WORKSHOP ON THE SYNCHRONIZES GAD PLANNING AND BUDGETING CUM PREPARATION OF GAD ACCOMPLISHMENT REPORT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762758	2024-07-08	09:37:40.4695107	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 11TH ENTREPRENEURIAL FORUM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762760	2024-07-08	09:39:31.1674419	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FIRST QUARTER ACCOMPLISHMENT REVIEW CUM COORDINATION MEETING WITH SCHOOLS DIVISION OFFICES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762764	2024-07-08	09:47:05.2794667	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RESULTS BASED PERFORMANCE MANAGEMENT INDIVIDUAL PERFORMANCE COMMITMENT AND REVIEW FORMS AND OFFICE PERFORMANCE COMMITMENT AND REVIEW FORMS RECALIBRATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762836	2024-07-08	09:49:49.1579128	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION AND CAPACITY BUILDING ON LRMDS POLICIES AND GUIDELINES, ORGANIZATION AND MANAGEMENT OF LCRs CUM CRAFTING OF SCHOOL AND DIVISION LEARNING RESOURCE PLAN SY 2023-2024\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762844	2024-07-08	09:55:27.8303019	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ONLINE SUBMISSION AND REVIEW OF RESEARCH PAPER USING DECISION TREE ALGORITHM FOR DEPED BATANGAS CITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762846	2024-07-08	09:57:33.2713283	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FINALIZATION OF YEAR- END REPORTS AND PERFORMANCE REVIEW FOR FY 2022\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762860	2024-07-08	10:03:12.4879280	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SEMINAR- WORKSHOP ON SYNCRHONIZED GAD PLANNING AND BUDGETING CUM PREPARATION OF GAD ACCOMPLISHMENT REPORT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762861	2024-07-08	10:04:59.7354127	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION MANAGEMENT COMMITTEE MEETING CUM PROGRAM IMPLEMENTATION REVIEW\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762755	2024-07-08	09:35:03.7380434	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2017 INTERNATIONAL CONFERENCE OF BASIC EDUCATION RESEARCHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762761	2024-07-08	09:40:20.2017453	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING ON THE EFFECTIVE IMPLEMENTATION OF THE CHILD PROTECTION POLICY IN SCHOOLS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762763	2024-07-08	09:43:51.9222616	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL MASS TRAINING IN THE IMPLEMENTATION OF GRADE 11 CAREER GUIDANCE PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762835	2024-07-08	09:47:40.3356851	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MASTER TEACHERS PROFESSIONAL DEVELOPMENT PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762837	2024-07-08	09:51:04.2743270	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INSET- GENDER AND DEVELOPMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762843	2024-07-08	09:53:19.5116571	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL CONSCIOUSNESS DAY FOR THE ELIMINATIOIN OF VIOLENCE AGAINST WOMEN AND CHILDREN\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762845	2024-07-08	09:56:19.6335461	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SENIOR HIGH SCHOOL, MASS TRAINING OF G11 TEACHERS ON COMMON TOPICS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762847	2024-07-08	09:58:44.8020157	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MASS TRAINING FOR SENIOR HIGH SCHOOL TEACHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762848	2024-07-08	09:59:27.9807838	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3655\r\nEmployeeTrainingId: 0\r\nFromDate: August 06, 2020\r\nHours: 320\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- REGION IV A\r\nStatus: \r\nToDate: September 30, 2021\r\nTrainingId: 15527\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762849	2024-07-08	09:59:27.9857671	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3655\r\nEmployeeTrainingId: 0\r\nFromDate: May 17, 2018\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-BATANGAS CITY\r\nStatus: \r\nToDate: August 18, 2018\r\nTrainingId: 15537\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762850	2024-07-08	09:59:27.9907504	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3655\r\nEmployeeTrainingId: 0\r\nFromDate: March 01, 2018\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-BATANGAS CITY\r\nStatus: \r\nToDate: March 02, 2018\r\nTrainingId: 15540\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762851	2024-07-08	09:59:27.9957338	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3655\r\nEmployeeTrainingId: 0\r\nFromDate: December 04, 2017\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-REGION IV A\r\nStatus: \r\nToDate: December 06, 2017\r\nTrainingId: 15544\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762852	2024-07-08	09:59:27.9997206	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3655\r\nEmployeeTrainingId: 0\r\nFromDate: July 23, 2017\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- REGION IV A\r\nStatus: \r\nToDate: July 25, 2017\r\nTrainingId: 15550\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762853	2024-07-08	09:59:28.0057004	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3655\r\nEmployeeTrainingId: 0\r\nFromDate: June 26, 2017\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- REGION IV A\r\nStatus: \r\nToDate: June 28, 2017\r\nTrainingId: 15552\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762854	2024-07-08	09:59:28.0096871	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3655\r\nEmployeeTrainingId: 0\r\nFromDate: April 25, 2017\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-BATANGAS CITY\r\nStatus: \r\nToDate: April 26, 2017\r\nTrainingId: 15264\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762855	2024-07-08	09:59:28.0146706	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3655\r\nEmployeeTrainingId: 0\r\nFromDate: November 10, 2016\r\nHours: 48\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-BATANGAS CITY\r\nStatus: \r\nToDate: December 17, 2016\r\nTrainingId: 15554\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763065	2024-07-08	11:18:08.5098534	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WEB DEVELOPMENT FOR WEB DEVELOPERS TRAINING OF TRAINERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762762	2024-07-08	09:41:21.4675593	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: VETTING AND FINALIZATION OF LEARNING RESOURCE PACKAGE FOR MASTER TEACHERS PROFESSIONAL DEVELOPMENT PROGRAM 2.0 (MTPDP 2.0) VETTING STAGE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762765	2024-07-08	09:47:07.3544683	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3656\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE, READING, HANDICRAFT MAKING\r\n	admin	Skills	1
762766	2024-07-08	09:47:07.3584574	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3656\r\nRecognitionId: 0\r\nRecognitionName: BEST BRIGADA ESKWELA IMPLEMENTER\r\n	admin	Recognitions	1
762767	2024-07-08	09:47:07.3633992	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3656\r\nRecognitionId: 0\r\nRecognitionName: PRINCIPAL OF SAN AGAPITO NATIONAL HIGH SCHOOL- GAWARD PARANGAL PARA SA HUWARANG PAARALAN 2009\r\n	admin	Recognitions	1
762768	2024-07-08	09:47:07.3683826	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3656\r\nRecognitionId: 0\r\nRecognitionName: HUWARANG PAMILYANG BATANGUENO PILIPINO (BARANGAY LEVEL, CITY LEVEL AND PROVINCIAL LEVEL)\r\n	admin	Recognitions	1
762769	2024-07-08	09:47:07.3723692	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3656\r\nRecognitionId: 0\r\nRecognitionName: OUTSTANDING DIVISION ASEP COORDINATOR\r\n	admin	Recognitions	1
762770	2024-07-08	09:47:07.3773527	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3656\r\nOrganizationId: 0\r\nOrganizationName: ASSOCIATION OF SCIENCE EDUCATORS IN THE PHILIPPINES (ASEP)\r\n	admin	Organizations	1
762771	2024-07-08	09:47:07.3813392	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3656\r\nEmployeeTrainingId: 0\r\nFromDate: January 16, 2024\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION COMPLEX, MERALCO AVENUE, PASIG CITY\r\nStatus: \r\nToDate: January 19, 2024\r\nTrainingId: 15522\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762772	2024-07-08	09:47:07.3863226	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3656\r\nEmployeeTrainingId: 0\r\nFromDate: December 11, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: December 11, 2023\r\nTrainingId: 15524\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762773	2024-07-08	09:47:07.3913059	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3656\r\nEmployeeTrainingId: 0\r\nFromDate: December 04, 2023\r\nHours: 16\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: December 05, 2023\r\nTrainingId: 15525\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762774	2024-07-08	09:47:07.3952926	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3656\r\nEmployeeTrainingId: 0\r\nFromDate: December 04, 2023\r\nHours: 16\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: December 05, 2023\r\nTrainingId: 15526\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762775	2024-07-08	09:47:07.4002761	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3656\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2023\r\nHours: 24\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION COMPLEX, MERALCO AVENUE, PASIG CITY\r\nStatus: \r\nToDate: December 01, 2023\r\nTrainingId: 15528\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762776	2024-07-08	09:47:07.4042626	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3656\r\nEmployeeTrainingId: 0\r\nFromDate: January 22, 2023\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762777	2024-07-08	09:47:07.4092459	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3656\r\nEmployeeTrainingId: 0\r\nFromDate: October 02, 2023\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: October 02, 2023\r\nTrainingId: 15529\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762778	2024-07-08	09:47:07.4142294	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3656\r\nEmployeeTrainingId: 0\r\nFromDate: October 02, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION COMPLEX, MERALCO AVENUE, PASIG CITY\r\nStatus: \r\nToDate: October 04, 2023\r\nTrainingId: 15530\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762779	2024-07-08	09:47:07.4192125	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3656\r\nEmployeeTrainingId: 0\r\nFromDate: September 26, 2023\r\nHours: 32\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 29, 2023\r\nTrainingId: 15531\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762780	2024-07-08	09:47:07.4231992	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3656\r\nEmployeeTrainingId: 0\r\nFromDate: September 20, 2023\r\nHours: 32\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 23, 2023\r\nTrainingId: 15532\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763125	2024-07-08	11:49:00.6284555	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3659\r\nSkillId: 0\r\nSkillName: PHOTO/ VIDEO EDITING\r\n	admin	Skills	1
762781	2024-07-08	09:47:07.4281826	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3656\r\nEmployeeTrainingId: 0\r\nFromDate: August 20, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: ASSOCIATION OF DEPED DIRECTORS (ADD), INC.\r\nStatus: \r\nToDate: August 22, 2023\r\nTrainingId: 15533\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762782	2024-07-08	09:47:07.4321692	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3656\r\nEmployeeTrainingId: 0\r\nFromDate: August 09, 2023\r\nHours: 24\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 11, 2023\r\nTrainingId: 15534\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762783	2024-07-08	09:47:07.4371525	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3656\r\nEmployeeTrainingId: 0\r\nFromDate: August 08, 2023\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 08, 2023\r\nTrainingId: 15535\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762784	2024-07-08	09:47:07.4411392	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3656\r\nEmployeeTrainingId: 0\r\nFromDate: August 01, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 01, 2023\r\nTrainingId: 15536\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762785	2024-07-08	09:47:07.4461225	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3656\r\nEmployeeTrainingId: 0\r\nFromDate: July 21, 2023\r\nHours: 16\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 22, 2023\r\nTrainingId: 15308\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762786	2024-07-08	09:47:07.4511059	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3656\r\nEmployeeTrainingId: 0\r\nFromDate: July 07, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 07, 2023\r\nTrainingId: 15539\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762787	2024-07-08	09:47:07.4550925	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3656\r\nEmployeeTrainingId: 0\r\nFromDate: July 06, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 06, 2023\r\nTrainingId: 15541\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762788	2024-07-08	09:47:07.4600759	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3656\r\nEmployeeTrainingId: 0\r\nFromDate: July 05, 2023\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION COMPLEX, MERALCO AVENUE, PASIG CITY\r\nStatus: \r\nToDate: July 05, 2023\r\nTrainingId: 15543\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762789	2024-07-08	09:47:07.4640626	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3656\r\nEmployeeTrainingId: 0\r\nFromDate: July 19, 2023\r\nHours: 24\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION COMPLEX, MERALCO AVENUE, PASIG CITY\r\nStatus: \r\nToDate: July 21, 2023\r\nTrainingId: 15546\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762790	2024-07-08	09:47:07.4690458	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3656\r\nEmployeeTrainingId: 0\r\nFromDate: December 05, 2022\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: REGION IV-A CALABARZON GATE 2 KARANGALAN VILLAGE, CAINTA RIZAL\r\nStatus: \r\nToDate: December 07, 2022\r\nTrainingId: 15548\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762791	2024-07-08	09:47:07.4740291	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3656\r\nEmployeeTrainingId: 0\r\nFromDate: February 21, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: REGION IV-A CALABARZON GATE 2 KARANGALAN VILLAGE, CAINTA RIZAL\r\nStatus: \r\nToDate: February 23, 2022\r\nTrainingId: 15551\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762792	2024-07-08	09:47:07.4780160	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3656\r\nDateOfExamination: November 22, 1987\r\nDateOfRelease: June 06, 1988\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: November 22, 1987\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 030370\r\nPlaceOfExamination: QUEZON CITY\r\nRating: 76.25%\r\nTitle: PROFESSIONAL BOARD  EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
762793	2024-07-08	09:47:07.4829991	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3656\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 93,049.00\r\nPositionHeld: CHIEF EDUCATION SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 24-3\r\nStatus: Permanent\r\nToDate: July 08, 2024\r\n	admin	Experiences	1
762842	2024-07-08	09:52:46.0015887	<Undetected>	Update	BasicInformationId: 3656\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3453\r\n	BasicInformationId: 3656\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3453\r\n	admin	Questionnaires	1
762794	2024-07-08	09:47:07.4879825	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3656\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: May 25, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 89,597.00\r\nPositionHeld: CHIEF EDUCATION SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 24-2\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
762795	2024-07-08	09:47:07.4919691	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3656\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 88,158.00\r\nPositionHeld: CHIEF EDUCATION SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 24-2\r\nStatus: Permanent\r\nToDate: May 24, 2021\r\n	admin	Experiences	1
762796	2024-07-08	09:47:07.4959559	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3656\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 86,462.00\r\nPositionHeld: CHIEF EDUCATION SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 24-2\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
762797	2024-07-08	09:47:07.5009391	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3656\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 84,767.00\r\nPositionHeld: CHIEF EDUCATION SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 24-2\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
762798	2024-07-08	09:47:07.5049260	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3656\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: May 25, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 74,397.00\r\nPositionHeld: CHIEF EDUCATION SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 24-2\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
762799	2024-07-08	09:47:07.5099091	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3656\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 73,299.00\r\nPositionHeld: CHIEF EDUCATION SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 24-2\r\nStatus: Permanent\r\nToDate: May 24, 2018\r\n	admin	Experiences	1
762800	2024-07-08	09:47:07.5138958	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3656\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 64,416.00\r\nPositionHeld: CHIEF EDUCATION SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 24-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
762801	2024-07-08	09:47:07.5188792	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3656\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 56,610.00\r\nPositionHeld: CHIEF EDUCATION SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 24-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
762802	2024-07-08	09:47:07.5228657	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3656\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: May 25, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 49,750.00\r\nPositionHeld: CHIEF EDUCATION SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 24-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
762803	2024-07-08	09:47:07.5278491	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3656\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 15, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 43,121.00\r\nPositionHeld: EDUCATION SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: May 24, 2015\r\n	admin	Experiences	1
762804	2024-07-08	09:47:07.5318359	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3656\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 42,652.00\r\nPositionHeld: EDUCATION SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: June 14, 2013\r\n	admin	Experiences	1
762862	2024-07-08	10:09:15.1250401	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CONDUCT OF THE REGIONAL SEMINAR - WORKSHOP ON THE CONSOLIDATION AND FINALIZATION OF FY 2023 BUDGET PROPOSAL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762805	2024-07-08	09:47:07.5368190	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3656\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 37,812.00\r\nPositionHeld: EDUCATION SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
762806	2024-07-08	09:47:07.5408058	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3656\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 32,973.00\r\nPositionHeld: EDUCATION SUPERVISOR I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
762807	2024-07-08	09:47:07.5447924	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3656\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 15, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 28,134.00\r\nPositionHeld: EDUCATION SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
762808	2024-07-08	09:47:07.5497758	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3656\r\nCompanyInstitution: SAN AGAPITO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 28,295.00\r\nPositionHeld: PRINCIPAL II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-1\r\nStatus: Permanent\r\nToDate: June 14, 2010\r\n	admin	Experiences	1
762809	2024-07-08	09:47:07.5537624	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3656\r\nCompanyInstitution: SAN AGAPITO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 20,318.00\r\nPositionHeld: PRINCIPAL II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
762810	2024-07-08	09:47:07.5587457	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3656\r\nCompanyInstitution: SAN AGAPITO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: June 10, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 18,471.00\r\nPositionHeld: PRINCIPAL II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
762811	2024-07-08	09:47:07.5627323	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3656\r\nCompanyInstitution: SAN AGAPITO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 17,425.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: June 09, 2008\r\n	admin	Experiences	1
762812	2024-07-08	09:47:07.5677156	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3656\r\nCompanyInstitution: SAN AGAPITO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: August 22, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 15,841.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
762813	2024-07-08	09:47:07.5717024	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3656\r\nCompanyInstitution: TALUMPOK\r\nExperienceId: 0\r\nFromDate: September 01, 2003\r\nIsGovernmentService: True\r\nMonthlySalary: 11,446.00\r\nPositionHeld: SECONDARY TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: August 21, 2006\r\n	admin	Experiences	1
762814	2024-07-08	09:47:07.5766856	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3656\r\nCompanyInstitution: TALUMPOK\r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 11,167.00\r\nPositionHeld: SECONDARY TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: August 31, 2003\r\n	admin	Experiences	1
762815	2024-07-08	09:47:07.5806723	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3656\r\nCompanyInstitution: TALUMPOK\r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 10,635.00\r\nPositionHeld: SECONDARY TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
762816	2024-07-08	09:47:07.5846591	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3656\r\nCompanyInstitution: TALUMPOK\r\nExperienceId: 0\r\nFromDate: March 16, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 9,668.00\r\nPositionHeld: SECONDARY TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
762817	2024-07-08	09:47:07.5896423	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3656\r\nCompanyInstitution: TALUMPOK\r\nExperienceId: 0\r\nFromDate: November 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: SECONDARY TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: March 15, 1998\r\n	admin	Experiences	1
762818	2024-07-08	09:47:07.5946261	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3656\r\nCompanyInstitution: TALUMPOK\r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 7,310.00\r\nPositionHeld: SECONDARY TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: October 31, 1997\r\n	admin	Experiences	1
762819	2024-07-08	09:47:07.5986123	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3656\r\nCompanyInstitution: TALUMPOK\r\nExperienceId: 0\r\nFromDate: January 01, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 6,013.00\r\nPositionHeld: SECONDARY TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1996\r\n	admin	Experiences	1
762820	2024-07-08	09:47:07.6025990	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3656\r\nCompanyInstitution: TALUMPOK\r\nExperienceId: 0\r\nFromDate: January 01, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 4,902.00\r\nPositionHeld: SECONDARY TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: December 31, 1995\r\n	admin	Experiences	1
762821	2024-07-08	09:47:07.6075823	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3656\r\nCompanyInstitution: SAN AGUSTIN\r\nExperienceId: 0\r\nFromDate: January 01, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 3,921.00\r\nPositionHeld: SECONDARY TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: December 31, 1994\r\n	admin	Experiences	1
762822	2024-07-08	09:47:07.6115689	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3656\r\nCompanyInstitution: SAN AGUSTIN\r\nExperienceId: 0\r\nFromDate: July 01, 1989\r\nIsGovernmentService: True\r\nMonthlySalary: 3,102.00\r\nPositionHeld: SECONDARY TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: December 31, 1993\r\n	admin	Experiences	1
762823	2024-07-08	09:47:07.6165523	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3656\r\nCompanyInstitution: SAN AGUSTIN\r\nExperienceId: 0\r\nFromDate: August 01, 1988\r\nIsGovernmentService: True\r\nMonthlySalary: 1,764.00\r\nPositionHeld: SECONDARY TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: June 30, 1989\r\n	admin	Experiences	1
762824	2024-07-08	09:47:07.6205389	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3656\r\nCompanyInstitution: CONDE LABAC\r\nExperienceId: 0\r\nFromDate: February 16, 1988\r\nIsGovernmentService: True\r\nMonthlySalary: 1,604.00\r\nPositionHeld: SECONDARY TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Substitute\r\nToDate: April 02, 1988\r\n	admin	Experiences	1
762825	2024-07-08	09:47:07.6255223	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3656\r\nCompanyInstitution: PEDRO S. TOLENTINO MEMORIAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: September 07, 1987\r\nIsGovernmentService: True\r\nMonthlySalary: 1,604.00\r\nPositionHeld: SECONDARY TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Substitute\r\nToDate: October 30, 1987\r\n	admin	Experiences	1
762826	2024-07-08	09:47:07.6295090	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3656\r\nCompanyInstitution: TALUMPOK\r\nExperienceId: 0\r\nFromDate: June 22, 1987\r\nIsGovernmentService: True\r\nMonthlySalary: 1,604.00\r\nPositionHeld: SECONDARY TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Substitute\r\nToDate: August 20, 1987\r\n	admin	Experiences	1
762827	2024-07-08	09:47:07.6334956	<Undetected>	Update	BasicInformationId: 3656\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3463\r\nExtensionName: \r\nFirstName: ODELION\r\nFullName: ODELION CAIGA COMIA\r\nGender: Male\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: CAIGA\r\nOccupation: DRIVER\r\nRelationship: Husband\r\n	BasicInformationId: 3656\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3463\r\nExtensionName: \r\nFirstName: ODELION\r\nFullName: ODELION COMIA\r\nGender: Male\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: CAIGA\r\nOccupation: DRIVER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
762828	2024-07-08	09:47:07.6384790	<Undetected>	Update	BasicInformationId: 3656\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3464\r\nExtensionName: \r\nFirstName: PEDRO\r\nFullName: PEDRO MANALO RAMIREZ\r\nGender: Male\r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: MANALO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3656\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3464\r\nExtensionName: \r\nFirstName: PEDRO\r\nFullName: PEDRO RAMIREZ\r\nGender: Male\r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: MANALO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
762829	2024-07-08	09:47:07.6424655	<Undetected>	Update	BasicInformationId: 3656\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3465\r\nExtensionName: \r\nFirstName: JULIANA\r\nFullName: JULIANA DE TORRES CLAVERIA\r\nGender: Female\r\nLastName: CLAVERIA\r\nMaidenName: \r\nMiddleName: DE TORRES\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3656\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3465\r\nExtensionName: \r\nFirstName: JULIANA\r\nFullName: JULIANA CLAVERIA\r\nGender: Female\r\nLastName: CLAVERIA\r\nMaidenName: \r\nMiddleName: DE TORRES\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
762830	2024-07-08	09:47:07.6474489	<Undetected>	Update	BasicInformationId: 3656\r\nBirthDate: September 16, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3466\r\nExtensionName: \r\nFirstName: SHEILA MARIZ\r\nFullName: SHEILA MARIZ R COMIA\r\nGender: Female\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: R\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3656\r\nBirthDate: September 16, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3466\r\nExtensionName: \r\nFirstName: SHEILA MARIZ\r\nFullName: SHEILA MARIZ COMIA\r\nGender: Female\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: R\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762831	2024-07-08	09:47:07.6514356	<Undetected>	Update	BasicInformationId: 3656\r\nBirthDate: November 05, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3467\r\nExtensionName: \r\nFirstName: SHEENA MAE\r\nFullName: SHEENA MAE R COMIA\r\nGender: Female\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: R\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3656\r\nBirthDate: November 05, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3467\r\nExtensionName: \r\nFirstName: SHEENA MAE\r\nFullName: SHEENA MAE COMIA\r\nGender: Female\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: R\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762832	2024-07-08	09:47:07.6564189	<Undetected>	Update	BasicInformationId: 3656\r\nBirthDate: September 16, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3468\r\nExtensionName: \r\nFirstName: RAYMIEL KANE\r\nFullName: RAYMIEL KANE R COMIA\r\nGender: Male\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: R\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3656\r\nBirthDate: September 16, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3468\r\nExtensionName: \r\nFirstName: RAYMIEL KANE\r\nFullName: RAYMIEL KANE COMIA\r\nGender: Male\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: R\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762833	2024-07-08	09:47:07.6604055	<Undetected>	Update	BasicInformationId: 3656\r\nDateOfExamination: July 28, 1985\r\nDateOfRelease: July 28, 1985\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 2473\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: July 28, 1985\r\nLevelOfEligibility: First Level (Subprofessional)\r\nLicenseNumber: 000706\r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 72.65%\r\nTitle: CAREER SERVICE SUB PROFESSIONAL\r\n	BasicInformationId: 3656\r\nDateOfExamination: July 28, 1985\r\nDateOfRelease: July 28, 1985\r\nEligibilityDocumentTypeId: 7\r\nEligibilityId: 2473\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: July 28, 1985\r\nLevelOfEligibility: First Level (Subprofessional)\r\nLicenseNumber: 000706\r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 72.65%\r\nTitle: CAREER SERVICE SUB PROFESSIONAL\r\n	admin	Eligibilities	1
762834	2024-07-08	09:47:07.6653889	<Undetected>	Update	BasicInformationId: 3656\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3453\r\n	BasicInformationId: 3656\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3453\r\n	admin	Questionnaires	1
762838	2024-07-08	09:52:45.9777097	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3656\r\nCharacterReferenceId: 0\r\nCompanyAddress: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 702-2094 loc 100\r\nExtensionName: \r\nFirstName: HERMOGENES\r\nLastName: PANGANIBAN\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762839	2024-07-08	09:52:45.9816939	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3656\r\nCharacterReferenceId: 0\r\nCompanyAddress: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY\r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: JOEPI\r\nLastName: FALQUEZA\r\nMiddleName: F\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762840	2024-07-08	09:52:45.9906254	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3656\r\nCharacterReferenceId: 0\r\nCompanyAddress: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 786-0296\r\nExtensionName: \r\nFirstName: CATHERINE\r\nLastName: MARANAN\r\nMiddleName: V\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762841	2024-07-08	09:52:45.9946120	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: TALUMPOK WEST\r\nBasicInformationId: 3656\r\nBirthDate: September 25, 1966\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: comia_sacoro@yahoo.com\r\nExtensionName: \r\nFirstName: SACORO\r\nFullName: SACORO R. COMIA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: RAMIREZ\r\nMobileNumber: 09171892566\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: TALUMPOK WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 56\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: TALUMPOK WEST\r\nBasicInformationId: 3656\r\nBirthDate: September 25, 1966\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: comia_sacoro@yahoo.com\r\nExtensionName: \r\nFirstName: SACORO\r\nFullName: SACORO R. COMIA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 06609500099\r\nHDMF: 0403-1280-9902\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: RAMIREZ\r\nMobileNumber: 09171892566\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: TALUMPOK WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 124-515-488-0000\r\nWeight: 56\r\nZipCode: 4200\r\n	admin	BasicInformation	1
763126	2024-07-08	11:49:00.6324553	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3659\r\nSkillId: 0\r\nSkillName: STREAMING ( OBS, ZOOM, STEAMYARD)\r\n	admin	Skills	1
762856	2024-07-08	09:59:28.0196539	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3655\r\nEmployeeTrainingId: 0\r\nFromDate: October 28, 2016\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-BATANGAS CITY\r\nStatus: \r\nToDate: October 28, 2016\r\nTrainingId: 15556\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762857	2024-07-08	09:59:28.0246371	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3655\r\nEmployeeTrainingId: 0\r\nFromDate: December 13, 2016\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: CONDE LABAC NATIONAL HIGH SCHOOL\r\nStatus: \r\nToDate: December 13, 2016\r\nTrainingId: 15557\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762858	2024-07-08	09:59:28.0296206	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3655\r\nEmployeeTrainingId: 0\r\nFromDate: June 09, 2016\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-REGION IV A\r\nStatus: \r\nToDate: June 09, 2016\r\nTrainingId: 15559\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762859	2024-07-08	09:59:28.0336071	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3655\r\nEmployeeTrainingId: 0\r\nFromDate: May 23, 2016\r\nHours: 144\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-REGION IV A\r\nStatus: \r\nToDate: June 09, 2016\r\nTrainingId: 15561\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762941	2024-07-08	10:49:04.6861960	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 12 LOT 28\r\nAddress2: BETZAIDA VILLAGE\r\nBarangay: DUMANTAY\r\nBasicInformationId: 0\r\nBirthDate: October 09, 1978\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: generiego.javier@deped.gov.ph\r\nExtensionName: \r\nFirstName: GENERIEGO\r\nFullName: GENERIEGO O. JAVIER\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: JAVIER\r\nMaidenName: \r\nMiddleName: ODESTE\r\nMobileNumber: 09209002085\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 12 LOT 28\r\nPermanentAddress2: BETZAIDA VILLAGE\r\nPermanentBarangay: DUMANTAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: CARNATION STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: CARNATION STREET\r\nTIN: \r\nWeight: 90\r\nZipCode: 4200\r\n	admin	BasicInformation	1
762942	2024-07-08	10:49:04.7074684	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3657\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1986\r\nDateTo: 1991\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAINT BRIDGETS COLLEGE\r\nYearGraduated: 1991\r\n	admin	EducationalBackgrounds	1
762943	2024-07-08	10:49:04.7074684	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3657\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1991\r\nDateTo: 1995\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAINT BRIDGETS COLLEGE\r\nYearGraduated: 1995\r\n	admin	EducationalBackgrounds	1
762944	2024-07-08	10:49:04.7074684	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3657\r\nCourse: \r\nCourseId: 1270\r\nCourseOrMajor: \r\nDateFrom: 1995\r\nDateTo: 1999\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MAJOR IN MUSIC\r\nSchoolorUniversity: PHILIPPINE NORMAL UNIVERSITY\r\nYearGraduated: 1999\r\n	admin	EducationalBackgrounds	1
762945	2024-07-08	10:49:04.7074684	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3657\r\nBirthDate: February 15, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: YUAN SEBASTIAN\r\nFullName: YUAN SEBASTIAN P JAVIER\r\nGender: Male\r\nLastName: JAVIER\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762946	2024-07-08	10:49:04.7074684	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3657\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GONZALO\r\nFullName: GONZALO VILLA JAVIER\r\nGender: Male\r\nLastName: JAVIER\r\nMaidenName: \r\nMiddleName: VILLA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
762947	2024-07-08	10:49:04.7074684	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3657\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: VIRGINIA\r\nFullName: VIRGINIA BAROLA ODESTE\r\nGender: Female\r\nLastName: ODESTE\r\nMaidenName: \r\nMiddleName: BAROLA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
762948	2024-07-08	10:49:04.7074684	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3657\r\nBirthDate: April 12, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: YOHANN THOMAS\r\nFullName: YOHANN THOMAS P JAVIER\r\nGender: Female\r\nLastName: JAVIER\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762863	2024-07-08	10:13:56.7832549	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATIONN ON THE WEB- BASED MONITORING SYSTEM OF SCHOOL MOOE FUNDS IN SUPPORT TO THE SECONDARY EDUCATION SUPPORT PROGRAM SYSTEM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762888	2024-07-08	10:16:01.6632003	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON THE WEB-BASED MONITORING SYSTEM OF SCHOOL MOOE FUNDS IN SUPPORT TO THE SECONDARY EDUCATION SUPPORT PROGRAM SYSTEM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762889	2024-07-08	10:18:38.5264293	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CONVERGENCE OF RFTATa AND DFTATs FOCUSED ON THE ORGANIZATION AND MANAGEMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762890	2024-07-08	10:20:40.8542931	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2020 DIVISION ANTI-VAWC CAMPAIGN WEBINAR\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762892	2024-07-08	10:26:52.3499774	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING: PROMOTING TRANSPARENCY, ACCOUNTABILITY ANDC OPTIMIZED USE OF SCHOOL RESOURCES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762894	2024-07-08	10:29:12.5736742	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 36TH NATIONAL WEBINAR/ WORKSHOP ON THE PREPARATION OF CY 2021 MID-YEAR FINANCIAL REPORTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762895	2024-07-08	10:31:14.4384588	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: COACHING OF TRAINERS: A VIRTUAL ENGAGEMENT CAPACITY DEVELOPMENT FOR FINANCE SERVICE PERSONNEL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762896	2024-07-08	10:32:46.8057861	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BUDGET AND TREASURY MANAGEMENT SYSTEM ORIENTATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762897	2024-07-08	10:34:32.9508432	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL VIRTUAL REORIENTATION- WORKSHOP ON PROGRAM MANAGEMENT INFORMATION SYSTEM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762898	2024-07-08	10:36:48.9914621	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3651\r\nEmployeeTrainingId: 0\r\nFromDate: January 11, 2024\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY \r\nStatus: \r\nToDate: January 12, 2024\r\nTrainingId: 15232\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762899	2024-07-08	10:36:48.9964614	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3651\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762900	2024-07-08	10:36:49.0004623	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3651\r\nEmployeeTrainingId: 0\r\nFromDate: November 21, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV A CALABARZON \r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15538\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762901	2024-07-08	10:36:49.0054686	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3651\r\nEmployeeTrainingId: 0\r\nFromDate: November 11, 2023\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: GOLDEN GATE COLLEGES \r\nStatus: \r\nToDate: November 11, 2023\r\nTrainingId: 15542\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762902	2024-07-08	10:36:49.0104687	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3651\r\nEmployeeTrainingId: 0\r\nFromDate: October 11, 2023\r\nHours: 24\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV A CALABARZON \r\nStatus: \r\nToDate: October 11, 2023\r\nTrainingId: 15545\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762903	2024-07-08	10:36:49.0154694	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3651\r\nEmployeeTrainingId: 0\r\nFromDate: October 28, 2023\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: GOLDEN GATE COLLEGES \r\nStatus: \r\nToDate: October 28, 2023\r\nTrainingId: 15547\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762904	2024-07-08	10:36:49.0199765	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3651\r\nEmployeeTrainingId: 0\r\nFromDate: May 29, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV A CALABARZON \r\nStatus: \r\nToDate: May 30, 2023\r\nTrainingId: 15549\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763127	2024-07-08	11:49:00.6394555	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3659\r\nSkillId: 0\r\nSkillName: COMPUTER PROGRAMMING\r\n	admin	Skills	1
762864	2024-07-08	10:14:27.5869726	<Undetected>	Update	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 10419\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 486,108.00\r\nPositionHeld: EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-3\r\nStatus: Permanent\r\nToDate: July 05, 2024\r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 10419\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 486,108.00\r\nPositionHeld: EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-3\r\nStatus: Permanent\r\nToDate: July 05, 2024\r\n	admin	Experiences	1
762865	2024-07-08	10:14:27.5919558	<Undetected>	Update	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 10420\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 467,844.00\r\nPositionHeld:  EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-3\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 10420\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 467,844.00\r\nPositionHeld:  EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-3\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
762866	2024-07-08	10:14:27.6013361	<Undetected>	Update	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 10421\r\nFromDate: May 25, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 449,580.00\r\nPositionHeld:  EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-2\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 10421\r\nFromDate: May 25, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 449,580.00\r\nPositionHeld:  EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-2\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
762867	2024-07-08	10:14:27.6053229	<Undetected>	Update	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY  \r\nExperienceId: 10422\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 444,528.00\r\nPositionHeld:  EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-2\r\nStatus: Permanent\r\nToDate: May 24, 2021\r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY  \r\nExperienceId: 10422\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 444,528.00\r\nPositionHeld:  EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-2\r\nStatus: Permanent\r\nToDate: May 24, 2021\r\n	admin	Experiences	1
762868	2024-07-08	10:14:27.6122996	<Undetected>	Update	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 10423\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 422,624.00\r\nPositionHeld: EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-2\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 10423\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 422,624.00\r\nPositionHeld: EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-2\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
762869	2024-07-08	10:14:27.6162860	<Undetected>	Update	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 10424\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 408,000.00\r\nPositionHeld:  EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-2\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 10424\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 408,000.00\r\nPositionHeld:  EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-2\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
762870	2024-07-08	10:14:27.6212693	<Undetected>	Update	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 10425\r\nFromDate: May 25, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 385,764.00\r\nPositionHeld:  EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 10425\r\nFromDate: May 25, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 385,764.00\r\nPositionHeld:  EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
762871	2024-07-08	10:14:27.6252560	<Undetected>	Update	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 10426\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 381,180.00\r\nPositionHeld: EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: May 24, 2018\r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 10426\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 381,180.00\r\nPositionHeld: EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: May 24, 2018\r\n	admin	Experiences	1
762872	2024-07-08	10:14:27.6302395	<Undetected>	Update	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 10427\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 360,528.00\r\nPositionHeld: EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 10427\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 360,528.00\r\nPositionHeld: EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
762905	2024-07-08	10:36:49.0239827	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3651\r\nEmployeeTrainingId: 0\r\nFromDate: May 15, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY \r\nStatus: \r\nToDate: May 17, 2023\r\nTrainingId: 15046\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762873	2024-07-08	10:14:27.6342260	<Undetected>	Update	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 10428\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 341,004.00\r\nPositionHeld: EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 10428\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 341,004.00\r\nPositionHeld: EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
762874	2024-07-08	10:14:27.6392096	<Undetected>	Update	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 10429\r\nFromDate: May 25, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 322,536.00\r\nPositionHeld:  EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 10429\r\nFromDate: May 25, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 322,536.00\r\nPositionHeld:  EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
762875	2024-07-08	10:14:27.6431960	<Undetected>	Update	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 10430\r\nFromDate: July 18, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 262,404.00\r\nPositionHeld:  TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: May 24, 2015\r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 10430\r\nFromDate: July 18, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 262,404.00\r\nPositionHeld:  TEACHER III\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: May 24, 2015\r\n	admin	Experiences	1
762876	2024-07-08	10:14:27.6481797	<Undetected>	Update	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 10431\r\nFromDate: January 06, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 259,800.00\r\nPositionHeld:  TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: July 17, 2012\r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 10431\r\nFromDate: January 06, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 259,800.00\r\nPositionHeld:  TEACHER III\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: July 17, 2012\r\n	admin	Experiences	1
762877	2024-07-08	10:14:27.6521659	<Undetected>	Update	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 10432\r\nFromDate: January 06, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 238,896.00\r\nPositionHeld:  TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Job Order\r\nToDate: May 31, 2012\r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 10432\r\nFromDate: January 06, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 238,896.00\r\nPositionHeld:  TEACHER III\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Job Order\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
762878	2024-07-08	10:14:27.6571491	<Undetected>	Update	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 10433\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 217,992.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 10433\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 217,992.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
762879	2024-07-08	10:14:27.6611360	<Undetected>	Update	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 10434\r\nFromDate: July 18, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 197,088.00\r\nPositionHeld:  TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 10434\r\nFromDate: July 18, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 197,088.00\r\nPositionHeld:  TEACHER III\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
762880	2024-07-08	10:14:27.6661195	<Undetected>	Update	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 10435\r\nFromDate: January 07, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 193,212.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: July 17, 2009\r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 10435\r\nFromDate: January 07, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 193,212.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: July 17, 2009\r\n	admin	Experiences	1
762881	2024-07-08	10:14:27.6701062	<Undetected>	Update	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 10436\r\nFromDate: January 07, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 162,144.00\r\nPositionHeld:  TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2010\r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 10436\r\nFromDate: January 07, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 162,144.00\r\nPositionHeld:  TEACHER III\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2010\r\n	admin	Experiences	1
762882	2024-07-08	10:14:27.6750896	<Undetected>	Update	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 10437\r\nFromDate: January 07, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 147,408.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 10437\r\nFromDate: January 07, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 147,408.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
762883	2024-07-08	10:14:27.6790757	<Undetected>	Update	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 10438\r\nFromDate: July 17, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 134,004.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 10438\r\nFromDate: July 17, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 134,004.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
762884	2024-07-08	10:14:27.6840591	<Undetected>	Update	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 10439\r\nFromDate: June 16, 2003\r\nIsGovernmentService: True\r\nMonthlySalary: 126,420.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: July 16, 2006\r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 10439\r\nFromDate: June 16, 2003\r\nIsGovernmentService: True\r\nMonthlySalary: 126,420.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: July 16, 2006\r\n	admin	Experiences	1
762885	2024-07-08	10:14:27.6880463	<Undetected>	Update	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 10440\r\nFromDate: January 07, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 119,268.00\r\nPositionHeld:  TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 15, 2003\r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 10440\r\nFromDate: January 07, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 119,268.00\r\nPositionHeld:  TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 15, 2003\r\n	admin	Experiences	1
762886	2024-07-08	10:14:27.6930295	<Undetected>	Update	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 10441\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 113,592.00\r\nPositionHeld:  TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 10441\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 113,592.00\r\nPositionHeld:  TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
762887	2024-07-08	10:14:27.6970162	<Undetected>	Update	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 10442\r\nFromDate: May 01, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 103,260.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	BasicInformationId: 3654\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 10442\r\nFromDate: May 01, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 103,260.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
762891	2024-07-08	10:24:56.4957631	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF ELEMENTARY EDUCATION\r\nLevel: College\r\n	admin	Courses	1
762893	2024-07-08	10:27:01.6880122	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: DOCTOR IN PHILOSOPHY\r\nLevel: Doctorate\r\n	admin	Courses	1
762969	2024-07-08	10:50:54.1837561	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING WORKSHOP ON TEACHING THE CRITIAL COMPETENCIES IN ALL LEARNING AREAS OF KEY STAGE 1-2\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762906	2024-07-08	10:36:49.0289827	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3651\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY \r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15047\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762907	2024-07-08	10:36:49.0329822	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3651\r\nEmployeeTrainingId: 0\r\nFromDate: March 29, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY \r\nStatus: \r\nToDate: March 29, 2023\r\nTrainingId: 15553\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762908	2024-07-08	10:36:49.0379823	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3651\r\nEmployeeTrainingId: 0\r\nFromDate: March 21, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY \r\nStatus: \r\nToDate: March 23, 2023\r\nTrainingId: 15151\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762909	2024-07-08	10:36:49.0429832	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3651\r\nEmployeeTrainingId: 0\r\nFromDate: February 20, 2023\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY \r\nStatus: \r\nToDate: February 20, 2023\r\nTrainingId: 15114\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762910	2024-07-08	10:36:49.0479833	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3651\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY \r\nStatus: \r\nToDate: January 24, 2023\r\nTrainingId: 15558\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762911	2024-07-08	10:36:49.0519826	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3651\r\nEmployeeTrainingId: 0\r\nFromDate: January 17, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY \r\nStatus: \r\nToDate: January 17, 2023\r\nTrainingId: 15560\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762912	2024-07-08	10:36:49.0569825	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3651\r\nEmployeeTrainingId: 0\r\nFromDate: November 16, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV A CALABARZON  \r\nStatus: \r\nToDate: November 18, 2022\r\nTrainingId: 15124\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762913	2024-07-08	10:36:49.0619829	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3651\r\nEmployeeTrainingId: 0\r\nFromDate: October 12, 2022\r\nHours: 24\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV A CALABARZON  \r\nStatus: \r\nToDate: October 14, 2022\r\nTrainingId: 15562\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762914	2024-07-08	10:36:49.0659825	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3651\r\nEmployeeTrainingId: 0\r\nFromDate: August 11, 2022\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY\r\nStatus: \r\nToDate: August 11, 2022\r\nTrainingId: 15563\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762915	2024-07-08	10:36:49.0709824	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3651\r\nEmployeeTrainingId: 0\r\nFromDate: June 30, 2022\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY\r\nStatus: \r\nToDate: June 30, 2022\r\nTrainingId: 15231\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762916	2024-07-08	10:36:49.0749824	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3651\r\nEmployeeTrainingId: 0\r\nFromDate: March 09, 2022\r\nHours: 24\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV A CALABARZON \r\nStatus: \r\nToDate: March 11, 2022\r\nTrainingId: 15236\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762917	2024-07-08	10:36:49.0799824	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3651\r\nEmployeeTrainingId: 0\r\nFromDate: March 04, 2022\r\nHours: 12\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY \r\nStatus: \r\nToDate: March 07, 2022\r\nTrainingId: 15258\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762918	2024-07-08	10:36:49.0849828	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3651\r\nEmployeeTrainingId: 0\r\nFromDate: February 21, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL  \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV A CALABARZON \r\nStatus: \r\nToDate: February 21, 2022\r\nTrainingId: 15566\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762919	2024-07-08	10:36:49.0889824	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3651\r\nEmployeeTrainingId: 0\r\nFromDate: February 07, 2022\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV A CALABARZON \r\nStatus: \r\nToDate: February 07, 2022\r\nTrainingId: 15567\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763128	2024-07-08	11:49:00.6434553	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3659\r\nRecognitionId: 0\r\nRecognitionName: AGARAWANG GAWD\r\n	admin	Recognitions	1
762920	2024-07-08	10:36:49.0939826	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3651\r\nEmployeeTrainingId: 0\r\nFromDate: November 15, 2021\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY \r\nStatus: \r\nToDate: November 25, 2021\r\nTrainingId: 15568\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762921	2024-07-08	10:36:49.0979822	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3651\r\nEmployeeTrainingId: 0\r\nFromDate: November 15, 2021\r\nHours: 40\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV A CALABARZON \r\nStatus: \r\nToDate: November 19, 2021\r\nTrainingId: 15053\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762922	2024-07-08	10:36:49.1029824	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3651\r\nEmployeeTrainingId: 0\r\nFromDate: October 07, 2021\r\nHours: 16\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV A CALABARZON\r\nStatus: \r\nToDate: October 08, 2021\r\nTrainingId: 15562\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762923	2024-07-08	10:36:49.1079887	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3651\r\nEmployeeTrainingId: 0\r\nFromDate: August 17, 2021\r\nHours: 24\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY\r\nStatus: \r\nToDate: August 19, 2021\r\nTrainingId: 15054\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762924	2024-07-08	10:36:49.1119889	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3651\r\nEmployeeTrainingId: 0\r\nFromDate: July 28, 2021\r\nHours: 24\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION CENTRAL OFFICE \r\nStatus: \r\nToDate: July 30, 2021\r\nTrainingId: 15359\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762925	2024-07-08	10:36:49.1169886	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3651\r\nEmployeeTrainingId: 0\r\nFromDate: June 04, 2021\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION CENTRAL OFFICE\r\nStatus: \r\nToDate: June 04, 2021\r\nTrainingId: 15571\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762926	2024-07-08	10:36:49.1214987	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3651\r\nEmployeeTrainingId: 0\r\nFromDate: April 30, 2021\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION CENTRAL OFFICE\r\nStatus: \r\nToDate: April 30, 2021\r\nTrainingId: 15572\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762927	2024-07-08	10:36:49.1264986	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3651\r\nEmployeeTrainingId: 0\r\nFromDate: January 20, 2021\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV A CALABARZON \r\nStatus: \r\nToDate: January 22, 2021\r\nTrainingId: 15573\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762928	2024-07-08	10:36:49.1304982	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3651\r\nEmployeeTrainingId: 0\r\nFromDate: September 03, 2020\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS \r\nStatus: \r\nToDate: September 05, 2020\r\nTrainingId: 15120\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
762929	2024-07-08	10:44:18.3072409	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3651\r\nSkillId: 0\r\nSkillName: COMPUTER LITERACY \r\n	admin	Skills	1
762930	2024-07-08	10:44:18.3112411	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3651\r\nSkillId: 0\r\nSkillName: DRIVING\r\n	admin	Skills	1
762931	2024-07-08	10:44:18.3182412	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3651\r\nSkillId: 0\r\nSkillName: SWIMMING\r\n	admin	Skills	1
762932	2024-07-08	10:44:18.3222412	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3651\r\nRecognitionId: 0\r\nRecognitionName: OFFICE FASHIONISTA AWARD\r\n	admin	Recognitions	1
762933	2024-07-08	10:44:18.3262405	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3651\r\nRecognitionId: 0\r\nRecognitionName: REGIONAL  RECOGNITION FOR ACCOMPLISHMENTS ON BFAR 2021\r\n	admin	Recognitions	1
762934	2024-07-08	10:44:18.3312405	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3651\r\nRecognitionId: 0\r\nRecognitionName: DEALTAWARD\r\n	admin	Recognitions	1
762935	2024-07-08	10:44:18.3352405	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3651\r\nCharacterReferenceId: 0\r\nCompanyAddress: ALANGILAN, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09450756428\r\nExtensionName: \r\nFirstName: MARIE JOY \r\nLastName: TEJADA \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762936	2024-07-08	10:44:18.3402407	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3651\r\nCharacterReferenceId: 0\r\nCompanyAddress: TINGA ITAAS, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09770017241\r\nExtensionName: \r\nFirstName: KRISTINA\r\nLastName: RIVERA\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762937	2024-07-08	10:44:18.3452409	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3651\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN PASCUAL, BATANGAS\r\nCompanyName: \r\nContactNumber: 09292930064\r\nExtensionName: \r\nFirstName: ELVIE \r\nLastName: AGUADO \r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
762938	2024-07-08	10:44:18.3502390	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BARANGAY MALALIM\r\nBasicInformationId: 3651\r\nBirthDate: September 15, 1983\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: madonna.ebora@deped.gov.ph\r\nExtensionName: \r\nFirstName: MADONNA\r\nFullName: MADONNA M. EBORA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09369249796\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BARANGAY MALALIM\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO IBABA\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO IBABA\r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BARANGAY MALALIM\r\nBasicInformationId: 3651\r\nBirthDate: September 15, 1983\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: madonna.ebora@deped.gov.ph\r\nExtensionName: \r\nFirstName: MADONNA\r\nFullName: MADONNA M. EBORA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02003440777\r\nHDMF: 1050-0228-8292\r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09369249796\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BARANGAY MALALIM\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO IBABA\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050118513-1\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1653752-3\r\nStreetName: SITIO IBABA\r\nTIN: 938-862-940-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
762939	2024-07-08	10:44:18.3542378	<Undetected>	Update	BasicInformationId: 3651\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3448\r\n	BasicInformationId: 3651\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3448\r\n	admin	Questionnaires	1
762940	2024-07-08	10:44:53.4553196	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 22 LOT 14 16\r\nAddress2: MERCEDES HOMES\r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 3646\r\nBirthDate: April 01, 1995\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: christine.marasigan001@deped.gov.ph\r\nExtensionName: \r\nFirstName: CHRISTINE\r\nFullName: CHRISTINE M. ABAG\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005120802\r\nHDMF: 1211-8707-2504\r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ABAG\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nMobileNumber: 09171887095\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: GULOD LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-250123145-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: 04-3653930-7\r\nStreetName: \r\nTIN: 466-839-798-0000\r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 22 LOT 14 16\r\nAddress2: MERCEDES HOMES\r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 3646\r\nBirthDate: April 01, 1995\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: christine.marasigan001@deped.gov.ph\r\nExtensionName: \r\nFirstName: CHRISTINE\r\nFullName: CHRISTINE M. ABAG\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005120802\r\nHDMF: 1211-8707-2504\r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ABAG\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nMobileNumber: 09171887095\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: GULOD LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-250123145-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3653930-7\r\nStreetName: \r\nTIN: 466-839-798-0000\r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
762949	2024-07-08	10:49:04.7074684	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3657\r\nBirthDate: February 15, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: YUAN SEBASTIAN\r\nFullName: YUAN SEBASTIAN P JAVIER\r\nGender: Male\r\nLastName: JAVIER\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762950	2024-07-08	10:49:04.7074684	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3657\r\nDateOfExamination: August 01, 1999\r\nDateOfRelease: October 09, 2019\r\nEligibilityDocumentTypeId: 0\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 01, 1999\r\nLevelOfEligibility: \r\nLicenseNumber: 0595747\r\nPlaceOfExamination: MANILA\r\nRating: 75%\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS \r\n	admin	Eligibilities	1
762951	2024-07-08	10:49:04.7074684	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3657\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: December 15, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 770,019.00\r\nPositionHeld:  EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: July 08, 2024\r\n	admin	Experiences	1
762952	2024-07-08	10:49:04.7084651	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3657\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - BATANGAS CITY  \r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 75,881.00\r\nPositionHeld: DEPARTMENT OF EDUCATION - BATANGAS CITY  EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 14, 2023\r\n	admin	Experiences	1
762953	2024-07-08	10:49:04.7084651	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3657\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - BATANGAS CITY  \r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 74,333.00\r\nPositionHeld:  EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 13, 2022\r\n	admin	Experiences	1
762954	2024-07-08	10:49:04.7084651	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3657\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - BATANGAS CITY  \r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 72,785.00\r\nPositionHeld:  EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
762955	2024-07-08	10:49:04.7084651	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3657\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: December 15, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 71,237.00\r\nPositionHeld:  EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
762956	2024-07-08	10:49:04.7084651	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3657\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 70,118.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 14, 2020\r\n	admin	Experiences	1
762957	2024-07-08	10:49:04.7084651	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3657\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - BATANGAS CITY  \r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 68,570.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
762958	2024-07-08	10:49:04.7084651	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3657\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 61,397.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
762959	2024-07-08	10:49:04.7084651	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3657\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - BATANGAS CITY  \r\nExperienceId: 0\r\nFromDate: December 16, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 54,975.00\r\nPositionHeld:  EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
766309	2024-07-12	09:25:00.1645778	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3698\r\nOrganizationId: 0\r\nOrganizationName: DEPUTY, TRAINING ADVOCACY TEAM\r\n	admin	Organizations	1
762960	2024-07-08	10:49:04.7084651	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3657\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - BATANGAS CITY  \r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 54,234.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 15, 2017\r\n	admin	Experiences	1
762961	2024-07-08	10:49:04.7084651	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3657\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 48,625.00\r\nPositionHeld:  EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
762962	2024-07-08	10:49:04.7094616	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3657\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - BATANGAS CITY  \r\nExperienceId: 0\r\nFromDate: December 16, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 43,596.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
762963	2024-07-08	10:49:04.7094616	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3657\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - BATANGAS CITY  \r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 43,121.00\r\nPositionHeld:  EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 15, 2014\r\n	admin	Experiences	1
762964	2024-07-08	10:49:04.7094616	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3657\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - BATANGAS CITY  \r\nExperienceId: 0\r\nFromDate: December 16, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 38,310.00\r\nPositionHeld:  EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
762965	2024-07-08	10:49:04.7094616	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3657\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - BATANGAS CITY  \r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 37,812.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 15, 2011\r\n	admin	Experiences	1
762966	2024-07-08	10:49:04.7094616	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3657\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - BATANGAS CITY  \r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 31,973.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
762967	2024-07-08	10:49:04.7094616	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3657\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - BATANGAS CITY  \r\nExperienceId: 0\r\nFromDate: December 15, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 22,397.00\r\nPositionHeld:  EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
762968	2024-07-08	10:49:04.7094616	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3657\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
762970	2024-07-08	10:52:42.1895227	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT ROLL-OUT OF EARLY LANGUAGE LITERACY AND NUMERACY (ELLN)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762971	2024-07-08	10:53:57.6545635	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PUBLIC SCHOOLS DISTRICT SUPERVISORS 2ND NATIONAL RESEARCH CONVENTION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762972	2024-07-08	10:56:18.1673914	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ENHANCING THE CAPABILITY OF SCHOOL HEADS AND TEACHERS IN THE IMPLEMENTATION OF PROFESSIONAL PROGRAM VIA SCHOOL LEARNING ACTION CELL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762973	2024-07-08	10:59:47.4318205	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3657\r\nCompanyInstitution: BATANGAS NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,635.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 14, 2008\r\n	admin	Experiences	1
762974	2024-07-08	10:59:47.4378003	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3657\r\nCompanyInstitution: BATANGAS NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 11,486.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
762975	2024-07-08	10:59:47.4417869	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3657\r\nCompanyInstitution: BATANGAS NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 11,207.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 2007\r\n	admin	Experiences	1
762976	2024-07-08	10:59:47.4477671	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3657\r\nCompanyInstitution: BATANGAS NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 10,188.00\r\nPositionHeld:  TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
762977	2024-07-08	10:59:47.4517538	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3657\r\nCompanyInstitution: BATANGAS NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 2004\r\n	admin	Experiences	1
762978	2024-07-08	10:59:47.4577339	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3657\r\nCompanyInstitution: BATANGAS NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: July 19, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
762979	2024-07-08	10:59:47.4617202	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3657\r\nCompanyInstitution: DIVINE CHILD ACADEMY\r\nExperienceId: 0\r\nFromDate: January 06, 1999\r\nIsGovernmentService: False\r\nMonthlySalary: 5,800.00\r\nPositionHeld: TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: January 03, 2000\r\n	admin	Experiences	1
762980	2024-07-08	10:59:47.4667037	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 12 LOT 28\r\nAddress2: BETZAIDA VILLAGE\r\nBarangay: DUMANTAY\r\nBasicInformationId: 3657\r\nBirthDate: October 09, 1978\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: generiego.javier@deped.gov.ph\r\nExtensionName: \r\nFirstName: GENERIEGO\r\nFullName: GENERIEGO O. JAVIER\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: JAVIER\r\nMaidenName: \r\nMiddleName: ODESTE\r\nMobileNumber: 09209002085\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 12 LOT 28\r\nPermanentAddress2: BETZAIDA VILLAGE\r\nPermanentBarangay: DUMANTAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: CARNATION STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: CARNATION STREET\r\nTIN: \r\nWeight: 90\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 12 LOT 28\r\nAddress2: BETZAIDA VILLAGE\r\nBarangay: DUMANTAY\r\nBasicInformationId: 3657\r\nBirthDate: October 09, 1978\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: generiego.javier@deped.gov.ph\r\nExtensionName: \r\nFirstName: GENERIEGO\r\nFullName: GENERIEGO O. JAVIER\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: JAVIER\r\nMaidenName: \r\nMiddleName: ODESTE\r\nMobileNumber: 09209002085\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 12 LOT 28\r\nPermanentAddress2: BETZAIDA VILLAGE\r\nPermanentBarangay: DUMANTAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: CARNATION STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: CARNATION STREET\r\nTIN: \r\nWeight: 90\r\nZipCode: 4200\r\n	admin	BasicInformation	1
762981	2024-07-08	10:59:47.4716870	<Undetected>	Update	BasicInformationId: 3657\r\nBirthDate: February 15, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3469\r\nExtensionName: \r\nFirstName: YUAN SEBASTIAN\r\nFullName: YUAN SEBASTIAN P JAVIER\r\nGender: Male\r\nLastName: JAVIER\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3657\r\nBirthDate: February 15, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3469\r\nExtensionName: \r\nFirstName: YUAN SEBASTIAN\r\nFullName: YUAN SEBASTIAN JAVIER\r\nGender: Male\r\nLastName: JAVIER\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762982	2024-07-08	10:59:47.4766703	<Undetected>	Update	BasicInformationId: 3657\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3470\r\nExtensionName: \r\nFirstName: GONZALO\r\nFullName: GONZALO VILLA JAVIER\r\nGender: Male\r\nLastName: JAVIER\r\nMaidenName: \r\nMiddleName: VILLA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3657\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3470\r\nExtensionName: \r\nFirstName: GONZALO\r\nFullName: GONZALO JAVIER\r\nGender: Male\r\nLastName: JAVIER\r\nMaidenName: \r\nMiddleName: VILLA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
762983	2024-07-08	10:59:47.4816536	<Undetected>	Update	BasicInformationId: 3657\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3471\r\nExtensionName: \r\nFirstName: VIRGINIA\r\nFullName: VIRGINIA BAROLA ODESTE\r\nGender: Female\r\nLastName: ODESTE\r\nMaidenName: \r\nMiddleName: BAROLA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3657\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3471\r\nExtensionName: \r\nFirstName: VIRGINIA\r\nFullName: VIRGINIA ODESTE\r\nGender: Female\r\nLastName: ODESTE\r\nMaidenName: \r\nMiddleName: BAROLA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
763046	2024-07-08	11:12:45.0861298	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3659\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
762984	2024-07-08	10:59:47.4866373	<Undetected>	Update	BasicInformationId: 3657\r\nBirthDate: April 12, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3472\r\nExtensionName: \r\nFirstName: YOHANN THOMAS\r\nFullName: YOHANN THOMAS P JAVIER\r\nGender: Female\r\nLastName: JAVIER\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3657\r\nBirthDate: April 12, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3472\r\nExtensionName: \r\nFirstName: YOHANN THOMAS\r\nFullName: YOHANN THOMAS JAVIER\r\nGender: Female\r\nLastName: JAVIER\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762985	2024-07-08	10:59:47.4916202	<Undetected>	Update	BasicInformationId: 3657\r\nBirthDate: February 15, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3473\r\nExtensionName: \r\nFirstName: YUAN SEBASTIAN\r\nFullName: YUAN SEBASTIAN P JAVIER\r\nGender: Male\r\nLastName: JAVIER\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3657\r\nBirthDate: February 15, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3473\r\nExtensionName: \r\nFirstName: YUAN SEBASTIAN\r\nFullName: YUAN SEBASTIAN JAVIER\r\nGender: Male\r\nLastName: JAVIER\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762986	2024-07-08	10:59:47.4966037	<Undetected>	Update	BasicInformationId: 3657\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3454\r\n	BasicInformationId: 3657\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3454\r\n	admin	Questionnaires	1
763047	2024-07-08	11:13:22.9611311	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ATTENDED THE DIVISION TRAINING ON AUDIT MANAGEMENT SYSTEM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763064	2024-07-08	11:16:19.3198141	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: HIGHER ORDER THINKING SKILLS (HOTS) AND SOLO FRAMEWORK ACROSS THE CURRICULUM FOR EDUCATION LEADER\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763066	2024-07-08	11:20:12.0954674	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION SEMINAR-WORKSHOP ON BUILDING A POSITIVE AND STRENGTH-BASED INSTRUCTIONAL SUPERVISION & TRANSFORMATIONAL LEADERSHIP IN SCHOOLS THROUGH APPRECIATIVE INQUIRY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763068	2024-07-08	11:23:38.7450393	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION CUM TECHNICAL ASSISTANCE PROVISION FOR NEW RECOGNITION EVALUATION COMMITTEE (REC) MEMBERS AND PROFESSIONAL DEVELOPMENT (PD) PROGRAM PROPONENTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763071	2024-07-08	11:27:21.6565807	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING-WORKSHOP ON HOLISTIC ASSESSMENT FOR KEY STAGES 1-4 (PHASE 1)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763074	2024-07-08	11:32:52.9506320	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ENHANCING THE CAPABILITY OF SCHOOL HEADS AND TEACHERS IN THE IMPLEMENTATION OF PROFESSIONAL PROGRAM VIA SCHOOL LEARNING ACTION CELL BATCH 2 (CLUSTER 2)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763078	2024-07-08	11:36:23.8007585	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPABILITY TRAINING WORKSHOP FOR POTENTIAL LEARNING RESOURCE EVALUATORS (LRE's) OF SUPLEMENTARY LEARNING RESOURCES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763120	2024-07-08	11:43:11.5361721	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING (CB) FOR TEACHERS AND SCHOOL HEADS FOCUSED ON NAVIGATING COMPUTER APPLICATION/S COMMUNICATION PLATFORMS AND ITS UTILIZATION FOR THE IMPROVEMENT OF SCHOOL OPERATIONS AND LEARNING MANAGEMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763121	2024-07-08	11:45:18.5997130	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: VALUES RESTORATION OFFICE TRAINING THE TRAINERS (VROTT)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763122	2024-07-08	11:48:13.6082792	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION WEBINAR ON VIRTUAL LEADERSHIP AND SUPERVISION OF INSTRUCTIONAL REFORMS IN THE NEW NORMAL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763134	2024-07-08	11:49:19.9196001	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FLEX2LEAD TRAINING COURSE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763135	2024-07-08	11:51:06.2007566	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ONLINE ORIENTATION ON CAREER GUIDANCE FOR SCHOOL YEAR 2021-2022\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763136	2024-07-08	11:53:23.7568705	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3657\r\nEmployeeTrainingId: 0\r\nFromDate: January 11, 2024\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: January 12, 2024\r\nTrainingId: 15580\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766310	2024-07-12	09:25:00.1695614	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3698\r\nOrganizationId: 0\r\nOrganizationName: MEMBER, NETWORK OF PROFESSIONAL RESEARCHERS AND EDUCATORS\r\n	admin	Organizations	1
762987	2024-07-08	10:59:33.7581528	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING ON RESKILLING AND UPSKILLING OF SCHOOL LANORATORY TECHNICIANS/MANAGERS IN THE DEVELOPMENT OF LOCALIZED SAFETY MANAGEMENT SYSTEM MANUAL FOR TECHNICAL AND FUNCTIONALITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762988	2024-07-08	11:02:18.5833328	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EMPLOYEES RESKILLING ADVOCACY, INITIATIVES, SUPPORT FOR EXCELLENCE AND UPSKILLING PROGRAM (E-RAISE UP)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
762989	2024-07-08	11:03:38.4369729	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 1019\r\nAddress2: SITIO CENTRO\r\nBarangay: GULOD ITAAS\r\nBasicInformationId: 0\r\nBirthDate: February 22, 1969\r\nBirthPlace: BATANGAS CITY\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: vicenta.ebora001@deped.gov.ph\r\nExtensionName: \r\nFirstName: VICENTA\r\nFullName: VICENTA M. EBORA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09173244813\r\nNationality: Filipino\r\nPermanentAddress1: 1019\r\nPermanentAddress2: SITIO CENTRO\r\nPermanentBarangay: GULOD ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
762990	2024-07-08	11:03:38.6854817	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3658\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1975\r\nDateTo: 1981\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: TALAHIB PANDAYAN ELEMENTARY SCHOOL\r\nYearGraduated: 1981\r\n	admin	EducationalBackgrounds	1
762991	2024-07-08	11:03:38.6894684	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3658\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1981\r\nDateTo: 1985\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: TALAHIB PANDAYAN NATIONAL HIGH SCHOOL\r\nYearGraduated: 1985\r\n	admin	EducationalBackgrounds	1
762992	2024-07-08	11:03:38.6944518	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3658\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1985\r\nDateTo: 1981\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 1981\r\n	admin	EducationalBackgrounds	1
762993	2024-07-08	11:03:38.6984384	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3658\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 1990\r\nDateTo: 2004\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
762994	2024-07-08	11:03:38.7034218	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3658\r\nCourse: \r\nCourseId: 1299\r\nCourseOrMajor: \r\nDateFrom: 2016\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: \r\nSchoolorUniversity: ST.JUDE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
762995	2024-07-08	11:03:38.7074084	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3658\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ELPIDIO\r\nFullName: ELPIDIO MENDOZA EBORA\r\nGender: Male\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
762996	2024-07-08	11:03:38.7113951	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3658\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DONATO\r\nFullName: DONATO MENDOZA MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
762997	2024-07-08	11:03:38.7163795	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3658\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ESTILITA\r\nFullName: ESTILITA CARINGAL MENDOZA\r\nGender: Female\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: CARINGAL\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
762998	2024-07-08	11:03:38.7203659	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3658\r\nBirthDate: June 21, 1994\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PRINCESS LOUIZA REA\r\nFullName: PRINCESS LOUIZA REA M EBORA\r\nGender: Female\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
762999	2024-07-08	11:03:38.7253943	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3658\r\nBirthDate: November 30, 1995\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PRECIOUS IRISH\r\nFullName: PRECIOUS IRISH M EBORA\r\nGender: Female\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763000	2024-07-08	11:03:38.7293350	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3658\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763001	2024-07-08	11:03:38.7343186	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3658\r\nEmployeeTrainingId: 0\r\nFromDate: November 17, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY\r\nStatus: \r\nToDate: November 17, 2023\r\nTrainingId: 15303\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763002	2024-07-08	11:03:38.7383050	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3658\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15113\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763003	2024-07-08	11:03:38.7422917	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3658\r\nEmployeeTrainingId: 0\r\nFromDate: September 26, 2023\r\nHours: 32\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY\r\nStatus: \r\nToDate: September 26, 2023\r\nTrainingId: 15531\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763004	2024-07-08	11:03:38.7472759	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3658\r\nEmployeeTrainingId: 0\r\nFromDate: August 14, 2023\r\nHours: 40\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY\r\nStatus: \r\nToDate: August 18, 2023\r\nTrainingId: 15574\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763005	2024-07-08	11:03:38.7512627	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3658\r\nEmployeeTrainingId: 0\r\nFromDate: March 10, 2023\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY\r\nStatus: \r\nToDate: March 10, 2023\r\nTrainingId: 15575\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763006	2024-07-08	11:03:38.7562461	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3658\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2023\r\nHours: 24\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: PUBLIC SCHOOLS DISTRICT SUPERVISORS ASSOCIATION INC.\r\nStatus: \r\nToDate: January 26, 2023\r\nTrainingId: 15576\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763007	2024-07-08	11:03:38.7602328	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3658\r\nEmployeeTrainingId: 0\r\nFromDate: March 28, 2022\r\nHours: 40\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY\r\nStatus: \r\nToDate: April 05, 2022\r\nTrainingId: 15577\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763008	2024-07-08	11:03:38.7652162	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3658\r\nEmployeeTrainingId: 0\r\nFromDate: June 30, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY\r\nStatus: \r\nToDate: June 30, 2022\r\nTrainingId: 15219\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763009	2024-07-08	11:03:38.7692028	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3658\r\nEmployeeTrainingId: 0\r\nFromDate: June 09, 2022\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY\r\nStatus: \r\nToDate: June 10, 2022\r\nTrainingId: 15578\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763010	2024-07-08	11:03:38.7731895	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3658\r\nEmployeeTrainingId: 0\r\nFromDate: January 12, 2022\r\nHours: 24\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY\r\nStatus: \r\nToDate: January 14, 2022\r\nTrainingId: 15298\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763011	2024-07-08	11:03:38.7782126	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3658\r\nEmployeeTrainingId: 0\r\nFromDate: October 05, 2021\r\nHours: 32\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPARTMENT OF EDUCATION R4-A CALABARZON\r\nStatus: \r\nToDate: October 08, 2021\r\nTrainingId: 15579\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763012	2024-07-08	11:03:38.7822084	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3658\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 73,661.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: July 08, 2024\r\n	admin	Experiences	1
763013	2024-07-08	11:03:38.7871427	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3658\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 72,113.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
763014	2024-07-08	11:03:38.7911294	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3658\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 67,933.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
763015	2024-07-08	11:03:38.7961509	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3658\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: August 03, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 67,993.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
763016	2024-07-08	11:03:38.8001393	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3658\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 66,385.00\r\nPositionHeld: PRINCIPAL IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: August 02, 2020\r\n	admin	Experiences	1
763017	2024-07-08	11:03:38.8041268	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3658\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 66,385.00\r\nPositionHeld: PRINCIPAL IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
763018	2024-07-08	11:03:38.8091084	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3658\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: May 25, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 59,597.00\r\nPositionHeld: PRINCIPAL IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
763019	2024-07-08	11:03:38.8131059	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3658\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: December 20, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 58,717.00\r\nPositionHeld: PRINCIPAL III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 21-1\r\nStatus: Permanent\r\nToDate: May 24, 2015\r\n	admin	Experiences	1
763020	2024-07-08	11:03:38.8180393	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3658\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: February 01, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 32,810.00\r\nPositionHeld: PRINCIPAL II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-1\r\nStatus: Permanent\r\nToDate: December 19, 2011\r\n	admin	Experiences	1
763021	2024-07-08	11:03:38.8220263	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3658\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: August 08, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 15,841.00\r\nPositionHeld: PRINCIPAL I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: January 31, 2010\r\n	admin	Experiences	1
763022	2024-07-08	11:03:38.8260129	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3658\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 18, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 14,450.00\r\nPositionHeld: MASTER TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-1\r\nStatus: Permanent\r\nToDate: August 07, 2005\r\n	admin	Experiences	1
763023	2024-07-08	11:03:38.8309960	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3658\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 01, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 10,635.00\r\nPositionHeld: ELEM GRADE TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: January 17, 2001\r\n	admin	Experiences	1
763050	2024-07-08	11:14:20.5048142	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3658\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY EAST DISTRICT EMPLOYEES CREDIT COOPERATIVE (BCEDECC)\r\n	admin	Organizations	1
763024	2024-07-08	11:03:38.8349827	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3658\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 8,821.00\r\nPositionHeld: ELEM GRADE TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-2\r\nStatus: Permanent\r\nToDate: January 04, 1998\r\n	admin	Experiences	1
763025	2024-07-08	11:03:38.8399659	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3658\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: November 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 8,821.00\r\nPositionHeld: ELEM GRADE TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-2\r\nStatus: Permanent\r\nToDate: December 31, 1997\r\n	admin	Experiences	1
763026	2024-07-08	11:03:38.8439527	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3658\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 7,433.00\r\nPositionHeld: ELEM GRADE TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: October 31, 1997\r\n	admin	Experiences	1
763027	2024-07-08	11:03:38.8479381	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3658\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 6,044.00\r\nPositionHeld: ELEM GRADE TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1996\r\n	admin	Experiences	1
763028	2024-07-08	11:03:38.8529213	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3658\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 4,933.00\r\nPositionHeld: ELEM GRADE TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1995\r\n	admin	Experiences	1
763029	2024-07-08	11:03:38.8569475	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3658\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 3,933.00\r\nPositionHeld: ELEM GRADE TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1994\r\n	admin	Experiences	1
763030	2024-07-08	11:03:38.8609375	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3658\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 1993\r\nIsGovernmentService: True\r\nMonthlySalary: 3,133.00\r\nPositionHeld: ELEM GRADE TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1993\r\n	admin	Experiences	1
763031	2024-07-08	11:03:38.8659175	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3658\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: August 09, 1989\r\nIsGovernmentService: True\r\nMonthlySalary: 3,102.00\r\nPositionHeld: ELEM GRADE TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1992\r\n	admin	Experiences	1
763032	2024-07-08	11:03:38.8698652	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3658\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
763033	2024-07-08	11:12:45.0605572	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 4 LOT 21\r\nAddress2: MABINI HEIGHTS\r\nBarangay: MABINI\r\nBasicInformationId: 0\r\nBirthDate: June 14, 1995\r\nBirthPlace: SAN. ROQUE, ROSARIO, BATANGAS\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: LIPA CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: VANALIALDIN@GMAIL.COM\r\nExtensionName: \r\nFirstName: ALDIN VAN\r\nFullName: ALDIN VAN T. ALI\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALI\r\nMaidenName: \r\nMiddleName: TIRASOL\r\nMobileNumber: 09154036805\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 4 LOT 21\r\nPermanentAddress2: MABINI HEIGHTS\r\nPermanentBarangay: MABINI\r\nPermanentCity: LIPA CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LAKANDULA\r\nPermanentZipCode: 4217\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: LAKANDULA\r\nTIN: \r\nWeight: 66\r\nZipCode: 4217\r\n	admin	BasicInformation	1
763048	2024-07-08	11:14:20.4938510	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3658\r\nSkillId: 0\r\nSkillName: READING\r\n	admin	Skills	1
763049	2024-07-08	11:14:20.5008277	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3658\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY PUBLIC SCHOOLS TEACHERS AND EMPLOYEES ASSOCIATION (BCPSTEA)\r\n	admin	Organizations	1
763034	2024-07-08	11:12:45.0851304	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3659\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: ROSARIO ADVENTIST ELEMENTARY SCHOOL \r\nYearGraduated: 2007\r\n	admin	EducationalBackgrounds	1
763035	2024-07-08	11:12:45.0851304	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3659\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2007\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: PADRE VICENTE GARCIA MEMORIAL ACADEMY \r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
763036	2024-07-08	11:12:45.0851304	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3659\r\nCourse: \r\nCourseId: 1277\r\nCourseOrMajor: \r\nDateFrom: 2015\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Under Graduate\r\nMajor: \r\nSchoolorUniversity: AMA COMPUTER COLLEGE LIPA \r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
763037	2024-07-08	11:12:45.0851304	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3659\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MOHALIDIN\r\nFullName: MOHALIDIN DRAPER TIRASOL\r\nGender: Male\r\nLastName: TIRASOL\r\nMaidenName: \r\nMiddleName: DRAPER\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
763038	2024-07-08	11:12:45.0851304	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3659\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PERVANEH\r\nFullName: PERVANEH TAMBIS\r\nGender: Female\r\nLastName: TIRASOL\r\nMaidenName: \r\nMiddleName: TAMBIS\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
763039	2024-07-08	11:12:45.0851304	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3659\r\nDateOfExamination: August 14, 2019\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 7\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 14, 2019\r\nLevelOfEligibility: First Level (Subprofessional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS STATE UNIVERSITY- ALANGILAN CAMPUS\r\nRating: 85.3%\r\nTitle: CIVIL SERVICE EXAMINATION PEN AND PAPER TEST ( SUB- PROFESSIONAL)\r\n	admin	Eligibilities	1
763040	2024-07-08	11:12:45.0851304	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3659\r\nCompanyInstitution: CITY GOVERNMENT OF BATANGAS \r\nExperienceId: 0\r\nFromDate: July 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: TEACHER I ( ICT STAFF) \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Probationary\r\nToDate: July 08, 2024\r\n	admin	Experiences	1
763041	2024-07-08	11:12:45.0851304	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3659\r\nCompanyInstitution: SCHOOLS DIVISION OFFICE- BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 12,034.00\r\nPositionHeld: JOB ORDER ( ICT STAFF)\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Probationary\r\nToDate: June 30, 2022\r\n	admin	Experiences	1
763042	2024-07-08	11:12:45.0851304	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3659\r\nCompanyInstitution: CITY GOVERNMENT OF BATANGAS \r\nExperienceId: 0\r\nFromDate: May 12, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 25,439.00\r\nPositionHeld: TEACHER I ( ICT STAFF) \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Probationary\r\nToDate: May 30, 2022\r\n	admin	Experiences	1
763043	2024-07-08	11:12:45.0851304	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3659\r\nCompanyInstitution: SCHOOLS DIVISION OFFICE- BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: August 03, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 12,034.00\r\nPositionHeld: JOB ORDER ( ICT STAFF) \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Probationary\r\nToDate: May 12, 2021\r\n	admin	Experiences	1
763044	2024-07-08	11:12:45.0861298	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3659\r\nCompanyInstitution: KAIFA PHILIPPINES INC. \r\nExperienceId: 0\r\nFromDate: April 09, 2019\r\nIsGovernmentService: False\r\nMonthlySalary: 13,000.00\r\nPositionHeld: TEST TECHNICIAN \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: January 10, 2020\r\n	admin	Experiences	1
763045	2024-07-08	11:12:45.0861298	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3659\r\nCompanyInstitution: INTEGRATED- MICROELECTRONICS INC. \r\nExperienceId: 0\r\nFromDate: March 19, 2018\r\nIsGovernmentService: False\r\nMonthlySalary: 13,000.00\r\nPositionHeld: PROCESS TECHNICIAN \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: August 30, 2018\r\n	admin	Experiences	1
763054	2024-07-08	11:14:20.5257442	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3658\r\nCharacterReferenceId: 0\r\nCompanyAddress: TALUMPOK, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09172753556\r\nExtensionName: \r\nFirstName: SACORO\r\nLastName: COMIA\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763055	2024-07-08	11:14:20.5297309	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3658\r\nCharacterReferenceId: 0\r\nCompanyAddress: MAHABANG DAHILIG, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175057894\r\nExtensionName: \r\nFirstName: LOLITA\r\nLastName: ASI\r\nMiddleName: T\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763056	2024-07-08	11:14:20.5347142	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3658\r\nCharacterReferenceId: 0\r\nCompanyAddress: GULOD ITAAS, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09667522908\r\nExtensionName: \r\nFirstName: CHARITY\r\nLastName: MAGADIA\r\nMiddleName: S\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763057	2024-07-08	11:14:20.5387008	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 1019\r\nAddress2: SITIO CENTRO\r\nBarangay: GULOD ITAAS\r\nBasicInformationId: 3658\r\nBirthDate: February 22, 1969\r\nBirthPlace: BATANGAS CITY\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: vicenta.ebora001@deped.gov.ph\r\nExtensionName: \r\nFirstName: VICENTA\r\nFullName: VICENTA M. EBORA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09173244813\r\nNationality: Filipino\r\nPermanentAddress1: 1019\r\nPermanentAddress2: SITIO CENTRO\r\nPermanentBarangay: GULOD ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 1019\r\nAddress2: SITIO CENTRO\r\nBarangay: GULOD ITAAS\r\nBasicInformationId: 3658\r\nBirthDate: February 22, 1969\r\nBirthPlace: BATANGAS CITY\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: vicenta.ebora001@deped.gov.ph\r\nExtensionName: \r\nFirstName: VICENTA\r\nFullName: VICENTA M. EBORA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02002929512\r\nHDMF: 1490-0095-8376\r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09173244813\r\nNationality: Filipino\r\nPermanentAddress1: 1019\r\nPermanentAddress2: SITIO CENTRO\r\nPermanentBarangay: GULOD ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000008908-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3581879-9\r\nStreetName: \r\nTIN: 124-448-525-0000\r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
763058	2024-07-08	11:14:20.5436842	<Undetected>	Update	BasicInformationId: 3658\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3474\r\nExtensionName: \r\nFirstName: ELPIDIO\r\nFullName: ELPIDIO MENDOZA EBORA\r\nGender: Male\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3658\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3474\r\nExtensionName: \r\nFirstName: ELPIDIO\r\nFullName: ELPIDIO EBORA\r\nGender: Male\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
763059	2024-07-08	11:14:20.5476708	<Undetected>	Update	BasicInformationId: 3658\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3475\r\nExtensionName: \r\nFirstName: DONATO\r\nFullName: DONATO MENDOZA MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3658\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3475\r\nExtensionName: \r\nFirstName: DONATO\r\nFullName: DONATO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
763060	2024-07-08	11:14:20.5526540	<Undetected>	Update	BasicInformationId: 3658\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3476\r\nExtensionName: \r\nFirstName: ESTILITA\r\nFullName: ESTILITA CARINGAL MENDOZA\r\nGender: Female\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: CARINGAL\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3658\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3476\r\nExtensionName: \r\nFirstName: ESTILITA\r\nFullName: ESTILITA MENDOZA\r\nGender: Female\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: CARINGAL\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
763061	2024-07-08	11:14:20.5576375	<Undetected>	Update	BasicInformationId: 3658\r\nBirthDate: June 21, 1994\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3477\r\nExtensionName: \r\nFirstName: PRINCESS LOUIZA REA\r\nFullName: PRINCESS LOUIZA REA M EBORA\r\nGender: Female\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3658\r\nBirthDate: June 21, 1994\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3477\r\nExtensionName: \r\nFirstName: PRINCESS LOUIZA REA\r\nFullName: PRINCESS LOUIZA REA EBORA\r\nGender: Female\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763062	2024-07-08	11:14:20.5616243	<Undetected>	Update	BasicInformationId: 3658\r\nBirthDate: November 30, 1995\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3478\r\nExtensionName: \r\nFirstName: PRECIOUS IRISH\r\nFullName: PRECIOUS IRISH M EBORA\r\nGender: Female\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3658\r\nBirthDate: November 30, 1995\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3478\r\nExtensionName: \r\nFirstName: PRECIOUS IRISH\r\nFullName: PRECIOUS IRISH EBORA\r\nGender: Female\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763063	2024-07-08	11:14:20.5666078	<Undetected>	Update	BasicInformationId: 3658\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3455\r\n	BasicInformationId: 3658\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: RESIGNATION\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3455\r\n	admin	Questionnaires	1
763079	2024-07-08	11:40:53.0334570	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: UNDERGRADUATE\r\nLevel: College\r\n	admin	Courses	1
763238	2024-07-08	13:47:29.6009257	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION ORIENTATION OF KEY LEADERS ON THE IMPLEMENTATION OF NATIONAL LEARNING CAMP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763067	2024-07-08	11:21:03.1279017	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON THE DEVELOPMENT ON POSITIVE DISCIPLINE LAC SESSION GUIDES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763069	2024-07-08	11:24:23.8302332	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ' DEVELOPMENT OF SHS SUPPLEMENTARY MATERIALS FOR SELECTED SPECIALIZED SUBJECTS (HYBRID)'\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763070	2024-07-08	11:26:33.7412578	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ' DEVELOPMENT OF SHS SUPPLEMENTARY MATERIALS FOR APPLIED SUBJECTS ( PHASE ) ( HYBRID)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763072	2024-07-08	11:28:42.3579723	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON THE FINALIZATION OF SHS SUPPLEMENTARY MATERIALS FOR APPLIED SUBJECTS ( HYBRID )\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763073	2024-07-08	11:30:40.9733806	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ' ADVANCE LEARNING PATH FOR OPTIMAL FAMILIARITY ( ENTRY LEVEL BEGINNERS) NATIONAL CYBER DRILL 2022\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763075	2024-07-08	11:32:56.0381315	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BASIC LEARNING PATH FOR OPTIMAL FAMILIARITY ( ENTRY LEVEL/ BEGINNERS ) NATIONAL CYBER DRILL 2022\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763076	2024-07-08	11:34:16.4396319	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FRONT- END WEB DEVELOPMENT TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763077	2024-07-08	11:36:19.6135671	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CYBERSECURITY & INFRASTRUCTURE SECURITY AGENCY ( CISA): VIRTUAL INDUSTRIAL CONTROL SYSTEMS CYBERSECURITY ( 301V) TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763080	2024-07-08	11:41:13.9165776	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3659\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: SCHOOLS DIVISION OFFICE OF BATANGAS CITY \r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763081	2024-07-08	11:41:13.9205774	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3659\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: SCHOOLS DIVISION OFFICE OF BATANGAS CITY \r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15113\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763082	2024-07-08	11:41:13.9255819	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3659\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: SCHOOLS DIVISION OFFICE OF BATANGAS CITY \r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763083	2024-07-08	11:41:13.9295834	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3659\r\nEmployeeTrainingId: 0\r\nFromDate: January 26, 2023\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF INFORMATION AND COMMUNICATION TECHNOLOGY \r\nStatus: \r\nToDate: March 03, 2023\r\nTrainingId: 15582\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763084	2024-07-08	11:41:13.9345835	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3659\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: SCHOOLS DIVISION OFFICE OF BATANGAS CITY \r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15047\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763085	2024-07-08	11:41:13.9390946	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3659\r\nEmployeeTrainingId: 0\r\nFromDate: October 24, 2022\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: CHILD PROTECTION UNIT \r\nStatus: \r\nToDate: October 28, 2022\r\nTrainingId: 15584\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763086	2024-07-08	11:41:13.9430942	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3659\r\nEmployeeTrainingId: 0\r\nFromDate: October 17, 2022\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: CHILD PROTECTION UNIT \r\nStatus: \r\nToDate: October 21, 2022\r\nTrainingId: 15584\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763087	2024-07-08	11:41:13.9480945	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3659\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2021\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: BUREAU OF LEARNING DELIVERY \r\nStatus: \r\nToDate: November 27, 2021\r\nTrainingId: 15586\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763088	2024-07-08	11:41:13.9520942	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3659\r\nEmployeeTrainingId: 0\r\nFromDate: December 06, 2021\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: BUREAU OF LEARNING DELIVERY \r\nStatus: \r\nToDate: December 11, 2021\r\nTrainingId: 15587\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763089	2024-07-08	11:41:13.9570927	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3659\r\nEmployeeTrainingId: 0\r\nFromDate: December 13, 2021\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: BUREAU OF LEARNING DELIVERY \r\nStatus: \r\nToDate: December 18, 2021\r\nTrainingId: 15589\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763090	2024-07-08	11:41:13.9620944	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3659\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2022\r\nHours: 5\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF INFORMATION AND COMMUNICATION TECHNOLOGY \r\nStatus: \r\nToDate: November 29, 2022\r\nTrainingId: 15590\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763091	2024-07-08	11:41:13.9660943	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3659\r\nEmployeeTrainingId: 0\r\nFromDate: November 28, 2022\r\nHours: 5\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF INFORMATION AND COMMUNICATION TECHNOLOGY\r\nStatus: \r\nToDate: November 28, 2022\r\nTrainingId: 15592\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763092	2024-07-08	11:41:13.9710945	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3659\r\nEmployeeTrainingId: 0\r\nFromDate: September 26, 2022\r\nHours: 25\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF INFORMATION AND COMMUNICATION TECHNOLOGY\r\nStatus: \r\nToDate: September 30, 2022\r\nTrainingId: 15593\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763093	2024-07-08	11:41:13.9750942	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3659\r\nEmployeeTrainingId: 0\r\nFromDate: April 12, 2022\r\nHours: 14\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: CYBERSECURITY AND INFRASTRUCTURE SECURITY AGENCY \r\nStatus: \r\nToDate: April 13, 2022\r\nTrainingId: 15594\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763094	2024-07-08	11:41:13.9800942	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3659\r\nEmployeeTrainingId: 0\r\nFromDate: June 30, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: June 30, 2022\r\nTrainingId: 15225\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763095	2024-07-08	11:41:13.9850946	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 4 LOT 21\r\nAddress2: MABINI HEIGHTS\r\nBarangay: MABINI\r\nBasicInformationId: 3659\r\nBirthDate: June 14, 1995\r\nBirthPlace: SAN. ROQUE, ROSARIO, BATANGAS\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: LIPA CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: VANALIALDIN@GMAIL.COM\r\nExtensionName: \r\nFirstName: ALDIN VAN\r\nFullName: ALDIN VAN T. ALI\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALI\r\nMaidenName: \r\nMiddleName: TIRASOL\r\nMobileNumber: 09154036805\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 4 LOT 21\r\nPermanentAddress2: MABINI HEIGHTS\r\nPermanentBarangay: MABINI\r\nPermanentCity: LIPA CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LAKANDULA\r\nPermanentZipCode: 4217\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: LAKANDULA\r\nTIN: \r\nWeight: 66\r\nZipCode: 4217\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 4 LOT 21\r\nAddress2: MABINI HEIGHTS\r\nBarangay: MABINI\r\nBasicInformationId: 3659\r\nBirthDate: June 14, 1995\r\nBirthPlace: SAN. ROQUE, ROSARIO, BATANGAS\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: LIPA CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: VANALIALDIN@GMAIL.COM\r\nExtensionName: \r\nFirstName: ALDIN VAN\r\nFullName: ALDIN VAN T. ALI\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALI\r\nMaidenName: \r\nMiddleName: TIRASOL\r\nMobileNumber: 09154036805\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 4 LOT 21\r\nPermanentAddress2: MABINI HEIGHTS\r\nPermanentBarangay: MABINI\r\nPermanentCity: LIPA CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LAKANDULA\r\nPermanentZipCode: 4217\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LAKANDULA\r\nTIN: \r\nWeight: 66\r\nZipCode: 4217\r\n	admin	BasicInformation	1
763096	2024-07-08	11:41:13.9890940	<Undetected>	Update	BasicInformationId: 3659\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3479\r\nExtensionName: \r\nFirstName: MOHALIDIN\r\nFullName: MOHALIDIN DRAPER TIRASOL\r\nGender: Male\r\nLastName: TIRASOL\r\nMaidenName: \r\nMiddleName: DRAPER\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3659\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3479\r\nExtensionName: \r\nFirstName: MOHALIDIN\r\nFullName: MOHALIDIN TIRASOL\r\nGender: Male\r\nLastName: TIRASOL\r\nMaidenName: \r\nMiddleName: DRAPER\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
763097	2024-07-08	11:41:13.9940931	<Undetected>	Update	BasicInformationId: 3659\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3480\r\nExtensionName: \r\nFirstName: PERVANEH\r\nFullName: PERVANEH TAMBIS\r\nGender: Female\r\nLastName: TIRASOL\r\nMaidenName: \r\nMiddleName: TAMBIS\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3659\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3480\r\nExtensionName: \r\nFirstName: PERVANEH\r\nFullName: PERVANEH TIRASOL\r\nGender: Female\r\nLastName: TIRASOL\r\nMaidenName: \r\nMiddleName: TAMBIS\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
763098	2024-07-08	11:41:13.9980915	<Undetected>	Update	BasicInformationId: 3659\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3456\r\n	BasicInformationId: 3659\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3456\r\n	admin	Questionnaires	1
763123	2024-07-08	11:49:00.6164557	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3659\r\nSkillId: 0\r\nSkillName: GRAPHIC DESIGN/ LAYOUT\r\n	admin	Skills	1
763124	2024-07-08	11:49:00.6204552	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3659\r\nSkillId: 0\r\nSkillName: PHOTOGRAPHY\r\n	admin	Skills	1
763099	2024-07-08	11:41:27.7047320	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO FERRY\r\nBarangay: KUMINTANG IBABA\r\nBasicInformationId: 0\r\nBirthDate: November 02, 1967\r\nBirthPlace: \r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: bekkasgabriel@yahoo.com\r\nExtensionName: \r\nFirstName: REBECCA\r\nFullName: REBECCA S. GARIEL\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 67110201254\r\nHDMF: \r\nHeight: 1.61\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GARIEL\r\nMaidenName: \r\nMiddleName: SALVACION\r\nMobileNumber: 06194342121\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO FERRY\r\nPermanentBarangay: KUMINTANG IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000010293-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 68\r\nZipCode: 4200\r\n	admin	BasicInformation	1
763100	2024-07-08	11:41:27.8584086	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3660\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1974\r\nDateTo: 1980\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: LUMANGBAYAN ELEMENTARY SCHOOL\r\nYearGraduated: 1980\r\n	admin	EducationalBackgrounds	1
763101	2024-07-08	11:41:27.8633922	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3660\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1980\r\nDateTo: 1986\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: JOSE J. LEIDO MEMORIAL HIGH SCHOOL\r\nYearGraduated: 1986\r\n	admin	EducationalBackgrounds	1
763102	2024-07-08	11:41:27.8673786	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3660\r\nCourse: \r\nCourseId: 1300\r\nCourseOrMajor: \r\nDateFrom: 1986\r\nDateTo: 1987\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Under Graduate\r\nMajor: \r\nSchoolorUniversity: DIVINE WORD COLLEGE OF CALAPAN\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
763103	2024-07-08	11:41:27.8713652	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3660\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ARTURO\r\nFullName: ARTURO DE GUZMAN SALVACION\r\nGender: Male\r\nLastName: SALVACION\r\nMaidenName: \r\nMiddleName: DE GUZMAN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
763104	2024-07-08	11:41:27.8763487	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3660\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: IRMA\r\nFullName: IRMA MANZO SALVACION\r\nGender: Female\r\nLastName: SALVACION\r\nMaidenName: \r\nMiddleName: MANZO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
763105	2024-07-08	11:41:27.8803352	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3660\r\nBirthDate: January 18, 1992\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOANE RUSCHEL\r\nFullName: JOANE RUSCHEL S GABRIEL\r\nGender: Female\r\nLastName: GABRIEL\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763106	2024-07-08	11:41:27.8843219	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3660\r\nBirthDate: July 20, 1993\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JAYNE ROXANE\r\nFullName: JAYNE ROXANE S GABRIEL\r\nGender: Female\r\nLastName: GABRIEL\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763107	2024-07-08	11:41:27.8893052	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3660\r\nBirthDate: October 22, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOHN RAFAEL\r\nFullName: JOHN RAFAEL S GABRIEL\r\nGender: Male\r\nLastName: GABRIEL\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763108	2024-07-08	11:41:27.8932919	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3660\r\nEmployeeTrainingId: 0\r\nFromDate: September 12, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: THE ONLY PLACES RESTAURANT \r\nStatus: \r\nToDate: September 12, 2023\r\nTrainingId: 15417\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763109	2024-07-08	11:41:27.8982757	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3660\r\nEmployeeTrainingId: 0\r\nFromDate: November 12, 2023\r\nHours: 16\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: CITY TRAVEL HOTEL KISAD ROAD, BATANGAS CITY\r\nStatus: \r\nToDate: December 12, 2023\r\nTrainingId: 15217\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763193	2024-07-08	13:18:31.5989097	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: GENDER SENSITIVITY TRAINING FOR LR SUPERVISORS AND ILLUSTRATORS IN CREATING GENDER SENSITIVE LEARNING MATERIALS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763110	2024-07-08	11:41:27.9022619	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3660\r\nEmployeeTrainingId: 0\r\nFromDate: November 23, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BATANGAS CITY SPORTS COLISEUM\r\nStatus: \r\nToDate: November 23, 2023\r\nTrainingId: 15107\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763111	2024-07-08	11:41:27.9072456	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3660\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BULWAGANG ALA-EH, SDO BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763112	2024-07-08	11:41:27.9112321	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3660\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: M.I SEVILLA'S RESORT, LUCENA CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15079\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763113	2024-07-08	11:41:27.9152186	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3660\r\nEmployeeTrainingId: 0\r\nFromDate: July 21, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BULWAGANG ALA-EH, SDO BATANGAS CITY \r\nStatus: \r\nToDate: July 21, 2023\r\nTrainingId: 15308\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763114	2024-07-08	11:41:27.9202008	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3660\r\nEmployeeTrainingId: 0\r\nFromDate: July 06, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BULWAGANG ALA-EH, SDO BATANGAS CITY\r\nStatus: \r\nToDate: July 06, 2023\r\nTrainingId: 15420\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763115	2024-07-08	11:41:27.9241887	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3660\r\nEmployeeTrainingId: 0\r\nFromDate: May 19, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO BATANGAS CITY, LIBRARY HUB\r\nStatus: \r\nToDate: May 19, 2023\r\nTrainingId: 15421\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763116	2024-07-08	11:41:27.9291720	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3660\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: BATIS ARAMIN, RESORT AND HOTEL, LUCBAN QUEZON\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15047\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763117	2024-07-08	11:41:27.9331587	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3660\r\nCharacterReferenceId: 0\r\nCompanyAddress: NOBLE ST. BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 723-1922\r\nExtensionName: \r\nFirstName: EMMA\r\nLastName: ITURRALDE\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763118	2024-07-08	11:41:27.9371452	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3660\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 10, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 13,000.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: July 08, 2024\r\n	admin	Experiences	1
763119	2024-07-08	11:41:27.9411320	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3660\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
763151	2024-07-08	11:56:28.4656617	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MAED- EDUC'I ADMINISTRATION\r\nLevel: Master's\r\n	admin	Courses	1
763152	2024-07-08	11:57:45.2254501	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: DOCTOR OF EDUCATION- EDUCATIONAL MANAGEMENT\r\nLevel: Doctorate\r\n	admin	Courses	1
763164	2024-07-08	11:58:43.3829842	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 6422\r\nAddress2: \r\nBarangay: ZONE 5\r\nBasicInformationId: 0\r\nBirthDate: August 17, 1965\r\nBirthPlace: BATANGAS CITY\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rowena.canding001@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROWENA\r\nFullName: ROWENA D. CABANDING\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CABANDING\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nMobileNumber: 09175930974\r\nNationality: Filipino\r\nPermanentAddress1: 6422\r\nPermanentAddress2: \r\nPermanentBarangay: ZONE 5\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LUALHATI ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LUALHATI ST.\r\nTIN: \r\nWeight: 59\r\nZipCode: 4200\r\n	admin	BasicInformation	1
763165	2024-07-08	11:58:43.4000369	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3662\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1972\r\nDateTo: 1978\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: STA. CLARA ELEMENTARY SCHOOL \r\nYearGraduated: 1978\r\n	admin	EducationalBackgrounds	1
763129	2024-07-08	11:49:00.6484555	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3659\r\nCharacterReferenceId: 0\r\nCompanyAddress: STO. TORIBIO, LIPA CITY, BATANGAS \r\nCompanyName: \r\nContactNumber: 09171336805\r\nExtensionName: \r\nFirstName: ARJAY \r\nLastName: ROXAS\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763130	2024-07-08	11:49:00.6524553	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3659\r\nCharacterReferenceId: 0\r\nCompanyAddress: CALUMPANG WEST, SAN LUIS, BATANGAS \r\nCompanyName: \r\nContactNumber: 09557346975\r\nExtensionName: \r\nFirstName: CARMELLA \r\nLastName: MAGSUMBOL \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763131	2024-07-08	11:49:00.6574556	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3659\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09067171189\r\nExtensionName: \r\nFirstName: MARIA LUZ \r\nLastName: MAGADIA \r\nMiddleName: V\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763132	2024-07-08	11:49:00.6624559	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 4 LOT 21\r\nAddress2: MABINI HEIGHTS\r\nBarangay: MABINI\r\nBasicInformationId: 3659\r\nBirthDate: June 14, 1995\r\nBirthPlace: SAN. ROQUE, ROSARIO, BATANGAS\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: LIPA CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: VANALIALDIN@GMAIL.COM\r\nExtensionName: \r\nFirstName: ALDIN VAN\r\nFullName: ALDIN VAN T. ALI\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALI\r\nMaidenName: \r\nMiddleName: TIRASOL\r\nMobileNumber: 09154036805\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 4 LOT 21\r\nPermanentAddress2: MABINI HEIGHTS\r\nPermanentBarangay: MABINI\r\nPermanentCity: LIPA CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LAKANDULA\r\nPermanentZipCode: 4217\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LAKANDULA\r\nTIN: \r\nWeight: 66\r\nZipCode: 4217\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 4 LOT 21\r\nAddress2: MABINI HEIGHTS\r\nBarangay: MABINI\r\nBasicInformationId: 3659\r\nBirthDate: June 14, 1995\r\nBirthPlace: SAN. ROQUE, ROSARIO, BATANGAS\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: LIPA CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: VANALIALDIN@GMAIL.COM\r\nExtensionName: \r\nFirstName: ALDIN VAN\r\nFullName: ALDIN VAN T. ALI\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005893818\r\nHDMF: 1212-2021-3944\r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALI\r\nMaidenName: \r\nMiddleName: TIRASOL\r\nMobileNumber: 09154036805\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 4 LOT 21\r\nPermanentAddress2: MABINI HEIGHTS\r\nPermanentBarangay: MABINI\r\nPermanentCity: LIPA CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LAKANDULA\r\nPermanentZipCode: 4217\r\nPhilhealth: 09-250780804-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3957584-7\r\nStreetName: LAKANDULA\r\nTIN: 345-180-685-0000\r\nWeight: 66\r\nZipCode: 4217\r\n	admin	BasicInformation	1
763133	2024-07-08	11:49:00.6664558	<Undetected>	Update	BasicInformationId: 3659\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3456\r\n	BasicInformationId: 3659\r\nQ34a: No\r\nQ34b: \r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: CHANGE OF RESIDENCE \r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3456\r\n	admin	Questionnaires	1
763153	2024-07-08	11:58:52.3533709	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: CUTA\r\nBasicInformationId: 0\r\nBirthDate: April 28, 1988\r\nBirthPlace: STA. TERESITA, BATANGAS\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MARLWINS.LUBRIN@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: MARIWINS\r\nFullName: MARIWINS C. LUBRIN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: LUBRIN\r\nMaidenName: \r\nMiddleName: CABRAL\r\nMobileNumber: 09859902900\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: CUTA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: M.H DEL PILAR\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: M.H DEL PILAR\r\nTIN: \r\nWeight: 68\r\nZipCode: 4200\r\n	admin	BasicInformation	1
763154	2024-07-08	11:58:52.3753956	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3661\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1995\r\nDateTo: 2001\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAMPA PACIFICO ELEMENTARY SCHOOL \r\nYearGraduated: 2001\r\n	admin	EducationalBackgrounds	1
763155	2024-07-08	11:58:52.3753956	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3661\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2005\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: STA. TERESITA NATIONAL HIGH SCHOOL \r\nYearGraduated: 2005\r\n	admin	EducationalBackgrounds	1
763156	2024-07-08	11:58:52.3764005	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3661\r\nBirthDate: January 01, 0001\r\nCivilStatus: Seperated\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EDGARDO\r\nFullName: EDGARDO DE GUZMAN LUBRN\r\nGender: Male\r\nLastName: LUBRN\r\nMaidenName: \r\nMiddleName: DE GUZMAN\r\nOccupation: STREET SWEEPER \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
763157	2024-07-08	11:58:52.3764005	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3661\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GERARDO\r\nFullName: GERARDO MARAMAG CABRAL\r\nGender: Male\r\nLastName: CABRAL\r\nMaidenName: \r\nMiddleName: MARAMAG\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
763195	2024-07-08	13:26:30.0215921	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3657\r\nSkillId: 0\r\nSkillName: CHOIR CONDUCTING\r\n	admin	Skills	1
763137	2024-07-08	11:53:23.7618543	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3657\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15113\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763138	2024-07-08	11:53:23.7668373	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3657\r\nEmployeeTrainingId: 0\r\nFromDate: September 27, 2023\r\nHours: 32\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: September 29, 2023\r\nTrainingId: 15581\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763139	2024-07-08	11:53:23.7718207	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3657\r\nEmployeeTrainingId: 0\r\nFromDate: August 11, 2023\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: August 11, 2023\r\nTrainingId: 15583\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763140	2024-07-08	11:53:23.7768038	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3657\r\nEmployeeTrainingId: 0\r\nFromDate: July 26, 2022\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- REGION IV A\r\nStatus: \r\nToDate: July 29, 2022\r\nTrainingId: 15585\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763141	2024-07-08	11:53:23.7817874	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3657\r\nEmployeeTrainingId: 0\r\nFromDate: April 23, 2022\r\nHours: 16\r\nNatureOfParticipation: SUPERVISORY/ TECHNICAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: May 07, 2022\r\nTrainingId: 15588\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763142	2024-07-08	11:53:23.7857739	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3657\r\nEmployeeTrainingId: 0\r\nFromDate: April 30, 2022\r\nHours: 16\r\nNatureOfParticipation: SUPERVISORY/TECHNICAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: May 14, 2022\r\nTrainingId: 15588\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763143	2024-07-08	11:53:23.7907576	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3657\r\nEmployeeTrainingId: 0\r\nFromDate: August 03, 2022\r\nHours: 56\r\nNatureOfParticipation: SUPERVISORY/TECHNICAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: August 11, 2022\r\nTrainingId: 15591\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763144	2024-07-08	11:53:23.7957404	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3657\r\nEmployeeTrainingId: 0\r\nFromDate: September 26, 2022\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BUREAU OF LEARNING RESOURCES\r\nStatus: \r\nToDate: September 30, 2022\r\nTrainingId: 15595\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763145	2024-07-08	11:53:23.8007240	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3657\r\nEmployeeTrainingId: 0\r\nFromDate: June 30, 2022\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: June 30, 2022\r\nTrainingId: 15289\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763146	2024-07-08	11:53:23.8057073	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3657\r\nEmployeeTrainingId: 0\r\nFromDate: March 01, 2021\r\nHours: 20\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- REGION IV A\r\nStatus: \r\nToDate: March 05, 2021\r\nTrainingId: 15596\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763147	2024-07-08	11:53:23.8106904	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3657\r\nEmployeeTrainingId: 0\r\nFromDate: February 22, 2021\r\nHours: 32\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: COUNCIL FOR THE RESTORATION OF FILIPINO VALUES\r\nStatus: \r\nToDate: February 25, 2022\r\nTrainingId: 15597\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763148	2024-07-08	11:53:23.8156739	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3657\r\nEmployeeTrainingId: 0\r\nFromDate: November 04, 2021\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: November 04, 2021\r\nTrainingId: 15598\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763149	2024-07-08	11:53:23.8196604	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3657\r\nEmployeeTrainingId: 0\r\nFromDate: October 18, 2021\r\nHours: 32\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: THAMES INTERNATIONAL\r\nStatus: \r\nToDate: October 29, 2021\r\nTrainingId: 15599\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763150	2024-07-08	11:53:23.8246439	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3657\r\nEmployeeTrainingId: 0\r\nFromDate: October 01, 2021\r\nHours: 4\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BUREAU OF CURRICULUM DEVELOMENT\r\nStatus: \r\nToDate: October 01, 2021\r\nTrainingId: 15600\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763192	2024-07-08	13:15:23.6396301	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL ORIENTATION ON THE IMPLEMENTATION OF HOMEROOM GUIDANCE PROGRAM FOR SY2021-2022\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763158	2024-07-08	11:58:52.3764005	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3661\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JACINTA\r\nFullName: JACINTA CLOR\r\nGender: Female\r\nLastName: CALAPATI\r\nMaidenName: \r\nMiddleName: CLOR\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
763159	2024-07-08	11:58:52.3764005	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3661\r\nBirthDate: March 25, 2008\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: KATHLYN\r\nFullName: KATHLYN C LUBRIN\r\nGender: Female\r\nLastName: LUBRIN\r\nMaidenName: \r\nMiddleName: C\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763160	2024-07-08	11:58:52.3764005	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3661\r\nBirthDate: November 05, 2009\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JAKE\r\nFullName: JAKE C LUBRIN\r\nGender: Male\r\nLastName: LUBRIN\r\nMaidenName: \r\nMiddleName: C\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763161	2024-07-08	11:58:52.3764005	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3661\r\nBirthDate: June 28, 2014\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: KHIE-ANN\r\nFullName: KHIE-ANN C LUBRIN\r\nGender: Female\r\nLastName: LUBRIN\r\nMaidenName: \r\nMiddleName: C\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763162	2024-07-08	11:58:52.3764005	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3661\r\nBirthDate: November 03, 2018\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JAYSON\r\nFullName: JAYSON C LUBRIN\r\nGender: Male\r\nLastName: LUBRIN\r\nMaidenName: \r\nMiddleName: C\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763163	2024-07-08	11:58:52.3764005	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3661\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
763177	2024-07-08	13:03:44.5279158	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3661\r\nSkillId: 0\r\nSkillName: HOUSEKEEPING\r\n	admin	Skills	1
763178	2024-07-08	13:03:44.5329159	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3661\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
763179	2024-07-08	13:03:44.5379164	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3661\r\nCompanyInstitution: AGP SALES AND BUILDING SERVICES \r\nExperienceId: 0\r\nFromDate: November 12, 2021\r\nIsGovernmentService: False\r\nMonthlySalary: 373.00\r\nPositionHeld: HOUSEKEEPING \r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: February 28, 2023\r\n	admin	Experiences	1
763180	2024-07-08	13:03:44.5419162	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3661\r\nCharacterReferenceId: 0\r\nCompanyAddress: NATIVIDAD ST. BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09192980703\r\nExtensionName: \r\nFirstName: JOEL \r\nLastName: PEREZ\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763181	2024-07-08	13:03:44.5469164	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3661\r\nCharacterReferenceId: 0\r\nCompanyAddress: SOROSORO ILAYA BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09178552017\r\nExtensionName: \r\nFirstName: JOSEFINA\r\nLastName: LAGMAN \r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763182	2024-07-08	13:03:44.5509160	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3661\r\nCharacterReferenceId: 0\r\nCompanyAddress: MAHABANG PARANG BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09393665149\r\nExtensionName: \r\nFirstName: DELAMR\r\nLastName: RAMOS \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763183	2024-07-08	13:03:44.5559162	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: CUTA\r\nBasicInformationId: 3661\r\nBirthDate: April 28, 1988\r\nBirthPlace: STA. TERESITA, BATANGAS\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MARLWINS.LUBRIN@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: MARIWINS\r\nFullName: MARIWINS C. LUBRIN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: LUBRIN\r\nMaidenName: \r\nMiddleName: CABRAL\r\nMobileNumber: 09859902900\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: CUTA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: M.H DEL PILAR\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: M.H DEL PILAR\r\nTIN: \r\nWeight: 68\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: CUTA\r\nBasicInformationId: 3661\r\nBirthDate: April 28, 1988\r\nBirthPlace: STA. TERESITA, BATANGAS\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MARLWINS.LUBRIN@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: MARIWINS\r\nFullName: MARIWINS C. LUBRIN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: 1212-7891-6179\r\nHeight: 5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: LUBRIN\r\nMaidenName: \r\nMiddleName: CABRAL\r\nMobileNumber: 09859902900\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: CUTA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: M.H DEL PILAR\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-201410729-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 34-9956390-6\r\nStreetName: M.H DEL PILAR\r\nTIN: 622-300-681-0000\r\nWeight: 68\r\nZipCode: 4200\r\n	admin	BasicInformation	1
763166	2024-07-08	11:58:43.4000369	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: MODEL HOME MAKER OF THE YEAR\r\nBasicInformationId: 3662\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1978\r\nDateTo: 1982\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1982\r\n	admin	EducationalBackgrounds	1
763167	2024-07-08	11:58:43.4000369	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3662\r\nCourse: \r\nCourseId: 1294\r\nCourseOrMajor: \r\nDateFrom: 1982\r\nDateTo: 1986\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: ST. BRIDGET COLLEGE \r\nYearGraduated: 1986\r\n	admin	EducationalBackgrounds	1
763168	2024-07-08	11:58:43.4000369	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3662\r\nCourse: \r\nCourseId: 1301\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2010\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS \r\nYearGraduated: 2010\r\n	admin	EducationalBackgrounds	1
763169	2024-07-08	11:58:43.4000369	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3662\r\nCourse: \r\nCourseId: 1302\r\nCourseOrMajor: \r\nDateFrom: 2015\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
763170	2024-07-08	11:58:43.4000369	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3662\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SANSON\r\nFullName: SANSON MASANGKAY CABANDING\r\nGender: Male\r\nLastName: CABANDING\r\nMaidenName: \r\nMiddleName: MASANGKAY\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
763171	2024-07-08	11:58:43.4010328	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3662\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DANIEL\r\nFullName: DANIEL CATILO DIMAANO\r\nGender: Male\r\nLastName: DIMAANO\r\nMaidenName: \r\nMiddleName: CATILO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
763172	2024-07-08	11:58:43.4010328	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3662\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PAZ\r\nFullName: PAZ MAGADIA RIVERA\r\nGender: Female\r\nLastName: RIVERA\r\nMaidenName: \r\nMiddleName: MAGADIA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
763173	2024-07-08	11:58:43.4010328	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3662\r\nBirthDate: August 05, 1998\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALYSSA BERNICE\r\nFullName: ALYSSA BERNICE D CABANDING\r\nGender: Female\r\nLastName: CABANDING\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763174	2024-07-08	11:58:43.4010328	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3662\r\nBirthDate: March 31, 1992\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CHESKA ANNE\r\nFullName: CHESKA ANNE D CABANDING\r\nGender: Female\r\nLastName: CABANDING\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763175	2024-07-08	11:58:43.4010328	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3662\r\nBirthDate: June 05, 1994\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: BRAHAM NOE\r\nFullName: BRAHAM NOE D CABANDING\r\nGender: Male\r\nLastName: CABANDING\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763176	2024-07-08	11:58:43.4010328	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3662\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
763203	2024-07-08	13:35:30.9835885	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPACITY BUILDING OF SCIENCE, MATHEMATICS AND ENGLISH TEACHERS ON THE IMPLEMENTATION OF THE NATIONAL LEARNING CAMP-BATCH 3\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763223	2024-07-08	13:37:40.4814955	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION ROLL-OUT OF HIGHER THINKING SKILLS PROFESSIONAL LEARNING PACKAGES (HOTS-PLPS) FOR ENGLISH, SCIENCE AND MATHEMATICS (BATCH 2)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763224	2024-07-08	13:39:00.0566107	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 DIVISION CONFERENCE OF BASIC ACTION RESEARCH\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766381	2024-07-12	09:47:12.7242185	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3697\r\nOrganizationId: 0\r\nOrganizationName: BOY SCOUTS OF THE PHILIPPINES- BATANGAS CITY CHAPTER\r\n	admin	Organizations	1
763184	2024-07-08	13:03:44.5609162	<Undetected>	Update	BasicInformationId: 3661\r\nBirthDate: January 01, 0001\r\nCivilStatus: Seperated\r\nContactNumber: \r\nEmployeeRelativeId: 3486\r\nExtensionName: \r\nFirstName: EDGARDO\r\nFullName: EDGARDO DE GUZMAN LUBRN\r\nGender: Male\r\nLastName: LUBRN\r\nMaidenName: \r\nMiddleName: DE GUZMAN\r\nOccupation: STREET SWEEPER \r\nRelationship: Husband\r\n	BasicInformationId: 3661\r\nBirthDate: January 01, 0001\r\nCivilStatus: Seperated\r\nContactNumber: \r\nEmployeeRelativeId: 3486\r\nExtensionName: \r\nFirstName: EDGARDO\r\nFullName: EDGARDO LUBRN\r\nGender: Male\r\nLastName: LUBRN\r\nMaidenName: \r\nMiddleName: DE GUZMAN\r\nOccupation: STREET SWEEPER \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
763185	2024-07-08	13:03:44.5649222	<Undetected>	Update	BasicInformationId: 3661\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3487\r\nExtensionName: \r\nFirstName: GERARDO\r\nFullName: GERARDO MARAMAG CABRAL\r\nGender: Male\r\nLastName: CABRAL\r\nMaidenName: \r\nMiddleName: MARAMAG\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3661\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3487\r\nExtensionName: \r\nFirstName: GERARDO\r\nFullName: GERARDO CABRAL\r\nGender: Male\r\nLastName: CABRAL\r\nMaidenName: \r\nMiddleName: MARAMAG\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
763186	2024-07-08	13:03:44.5699221	<Undetected>	Update	BasicInformationId: 3661\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3488\r\nExtensionName: \r\nFirstName: JACINTA\r\nFullName: JACINTA CLOR\r\nGender: Female\r\nLastName: CALAPATI\r\nMaidenName: \r\nMiddleName: CLOR\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3661\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3488\r\nExtensionName: \r\nFirstName: JACINTA\r\nFullName: JACINTA CALAPATI\r\nGender: Female\r\nLastName: CALAPATI\r\nMaidenName: \r\nMiddleName: CLOR\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
763187	2024-07-08	13:03:44.5739220	<Undetected>	Update	BasicInformationId: 3661\r\nBirthDate: March 25, 2008\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3489\r\nExtensionName: \r\nFirstName: KATHLYN\r\nFullName: KATHLYN C LUBRIN\r\nGender: Female\r\nLastName: LUBRIN\r\nMaidenName: \r\nMiddleName: C\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3661\r\nBirthDate: March 25, 2008\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3489\r\nExtensionName: \r\nFirstName: KATHLYN\r\nFullName: KATHLYN LUBRIN\r\nGender: Female\r\nLastName: LUBRIN\r\nMaidenName: \r\nMiddleName: C\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763188	2024-07-08	13:03:44.5779622	<Undetected>	Update	BasicInformationId: 3661\r\nBirthDate: November 05, 2009\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3490\r\nExtensionName: \r\nFirstName: JAKE\r\nFullName: JAKE C LUBRIN\r\nGender: Male\r\nLastName: LUBRIN\r\nMaidenName: \r\nMiddleName: C\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3661\r\nBirthDate: November 05, 2009\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3490\r\nExtensionName: \r\nFirstName: JAKE\r\nFullName: JAKE LUBRIN\r\nGender: Male\r\nLastName: LUBRIN\r\nMaidenName: \r\nMiddleName: C\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763189	2024-07-08	13:03:44.5833895	<Undetected>	Update	BasicInformationId: 3661\r\nBirthDate: June 28, 2014\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3491\r\nExtensionName: \r\nFirstName: KHIE-ANN\r\nFullName: KHIE-ANN C LUBRIN\r\nGender: Female\r\nLastName: LUBRIN\r\nMaidenName: \r\nMiddleName: C\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3661\r\nBirthDate: June 28, 2014\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3491\r\nExtensionName: \r\nFirstName: KHIE-ANN\r\nFullName: KHIE-ANN LUBRIN\r\nGender: Female\r\nLastName: LUBRIN\r\nMaidenName: \r\nMiddleName: C\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763190	2024-07-08	13:03:44.5873868	<Undetected>	Update	BasicInformationId: 3661\r\nBirthDate: November 03, 2018\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3492\r\nExtensionName: \r\nFirstName: JAYSON\r\nFullName: JAYSON C LUBRIN\r\nGender: Male\r\nLastName: LUBRIN\r\nMaidenName: \r\nMiddleName: C\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3661\r\nBirthDate: November 03, 2018\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3492\r\nExtensionName: \r\nFirstName: JAYSON\r\nFullName: JAYSON LUBRIN\r\nGender: Male\r\nLastName: LUBRIN\r\nMaidenName: \r\nMiddleName: C\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763191	2024-07-08	13:03:44.5913846	<Undetected>	Update	BasicInformationId: 3661\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3458\r\n	BasicInformationId: 3661\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3458\r\n	admin	Questionnaires	1
763194	2024-07-08	13:23:41.9671887	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: THE ONLY PLACE RESTAURANT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763204	2024-07-08	13:36:59.6724235	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: KUMINTANG IBABA\r\nBasicInformationId: 0\r\nBirthDate: October 08, 1969\r\nBirthPlace: ROSARIO BATANGAS\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATAMNGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: JESSILYNDECASTRO1@GMAIL.COM\r\nExtensionName: \r\nFirstName: JESSILYN\r\nFullName: JESSILYN F. DE CASTRO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: FLORIDA\r\nMobileNumber: 09493392364\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: KUMINTANG IBABA\r\nPermanentCity: BATAMNGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 56\r\nZipCode: 4200\r\n	admin	BasicInformation	1
763205	2024-07-08	13:36:59.8052417	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3663\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1976\r\nDateTo: 1982\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: APAR ELEMENTARY SCHOOL\r\nYearGraduated: 1982\r\n	admin	EducationalBackgrounds	1
763196	2024-07-08	13:26:30.0315583	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3657\r\nEmployeeTrainingId: 0\r\nFromDate: September 03, 2021\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- REGION IV A\r\nStatus: \r\nToDate: September 23, 2021\r\nTrainingId: 15601\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763197	2024-07-08	13:26:30.0365417	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3657\r\nEmployeeTrainingId: 0\r\nFromDate: March 24, 2021\r\nHours: 12\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- REGION IV A\r\nStatus: \r\nToDate: March 26, 2021\r\nTrainingId: 15602\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763198	2024-07-08	13:26:30.0415249	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3657\r\nCharacterReferenceId: 0\r\nCompanyAddress: TINGA LABAC, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09989700743\r\nExtensionName: \r\nFirstName: HERMAN\r\nLastName: CATAPANG\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763199	2024-07-08	13:26:30.0465083	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3657\r\nCharacterReferenceId: 0\r\nCompanyAddress: BETZAIDA VILLAGE DUMANTAY, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09985767442\r\nExtensionName: \r\nFirstName: ROSSANA\r\nLastName: BAGON\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763200	2024-07-08	13:26:30.0514915	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3657\r\nCharacterReferenceId: 0\r\nCompanyAddress: BRGY. CUTA BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09985553861\r\nExtensionName: \r\nFirstName: MARIETA \r\nLastName: PEREZ\r\nMiddleName: N\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763201	2024-07-08	13:26:30.0564749	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 12 LOT 28\r\nAddress2: BETZAIDA VILLAGE\r\nBarangay: DUMANTAY\r\nBasicInformationId: 3657\r\nBirthDate: October 09, 1978\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: generiego.javier@deped.gov.ph\r\nExtensionName: \r\nFirstName: GENERIEGO\r\nFullName: GENERIEGO O. JAVIER\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: JAVIER\r\nMaidenName: \r\nMiddleName: ODESTE\r\nMobileNumber: 09209002085\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 12 LOT 28\r\nPermanentAddress2: BETZAIDA VILLAGE\r\nPermanentBarangay: DUMANTAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: CARNATION STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: CARNATION STREET\r\nTIN: \r\nWeight: 90\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 12 LOT 28\r\nAddress2: BETZAIDA VILLAGE\r\nBarangay: DUMANTAY\r\nBasicInformationId: 3657\r\nBirthDate: October 09, 1978\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: generiego.javier@deped.gov.ph\r\nExtensionName: \r\nFirstName: GENERIEGO\r\nFullName: GENERIEGO O. JAVIER\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: 1211-5619-1873\r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: JAVIER\r\nMaidenName: \r\nMiddleName: ODESTE\r\nMobileNumber: 09209002085\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 12 LOT 28\r\nPermanentAddress2: BETZAIDA VILLAGE\r\nPermanentBarangay: DUMANTAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: CARNATION STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000062045-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: CARNATION STREET\r\nTIN: 918-073-516-0000\r\nWeight: 90\r\nZipCode: 4200\r\n	admin	BasicInformation	1
763202	2024-07-08	13:26:30.0604614	<Undetected>	Update	BasicInformationId: 3657\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3454\r\n	BasicInformationId: 3657\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3454\r\n	admin	Questionnaires	1
763240	2024-07-08	13:50:43.8632374	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF SCIENCE IN ELEMENTARY EDUCATION (BEED)\r\nLevel: College\r\n	admin	Courses	1
763241	2024-07-08	13:51:42.4304630	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 130\r\nAddress2: \r\nBarangay: PALLOCAN EAST\r\nBasicInformationId: 0\r\nBirthDate: August 24, 1973\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: aurea.ocon001@deped.gov.ph\r\nExtensionName: \r\nFirstName: AUREA\r\nFullName: AUREA P. OCON\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: OCON\r\nMaidenName: \r\nMiddleName: PANOPIO\r\nMobileNumber: 09475071038\r\nNationality: Filipino\r\nPermanentAddress1: 130\r\nPermanentAddress2: \r\nPermanentBarangay: PALLOCAN EAST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: MANALO ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: MANALO ST.\r\nTIN: \r\nWeight: 69\r\nZipCode: 4200\r\n	admin	BasicInformation	1
763242	2024-07-08	13:51:42.4429204	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3664\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1980\r\nDateTo: 1986\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL FORMERLY KNOWN AS PALLOCAN ELEMENTARY SCHOOL\r\nYearGraduated: 1986\r\n	admin	EducationalBackgrounds	1
763492	2024-07-08	15:49:37.7173321	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON THE PPST DEPED CENTRAL OFFICE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763206	2024-07-08	13:36:59.8102423	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3663\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1982\r\nDateTo: 1996\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: TULOS HIGH SCHOOL\r\nYearGraduated: 1996\r\n	admin	EducationalBackgrounds	1
763207	2024-07-08	13:36:59.8142417	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3663\r\nCourse: \r\nCourseId: 1280\r\nCourseOrMajor: \r\nDateFrom: 2019\r\nDateTo: 2022\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: COLEGIO NG LUNGSOD NG BATANGAS \r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
763208	2024-07-08	13:36:59.8192423	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3663\r\nBirthDate: March 21, 1993\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ARVIN\r\nFullName: ARVIN F DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: F\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763209	2024-07-08	13:36:59.8232417	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3663\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CAYETANO\r\nFullName: CAYETANO ASI FLORIDA\r\nGender: Male\r\nLastName: FLORIDA\r\nMaidenName: \r\nMiddleName: ASI\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
763210	2024-07-08	13:36:59.8282424	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3663\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ZENAIDA\r\nFullName: ZENAIDA AGUILAR ESCOBILLA\r\nGender: Female\r\nLastName: ESCOBILLA\r\nMaidenName: \r\nMiddleName: AGUILAR\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
763211	2024-07-08	13:36:59.8322421	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3663\r\nBirthDate: June 19, 1991\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ARJAY\r\nFullName: ARJAY F DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: F\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763212	2024-07-08	13:36:59.8372451	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3663\r\nBirthDate: March 21, 1993\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ARVIN\r\nFullName: ARVIN F DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: F\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763213	2024-07-08	13:36:59.8412424	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3663\r\nBirthDate: December 08, 1994\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ANGEL\r\nFullName: ANGEL F DE CASTRO\r\nGender: Female\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: F\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763214	2024-07-08	13:36:59.8462427	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3663\r\nEmployeeTrainingId: 0\r\nFromDate: September 12, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: THE PLACE RESTAURANT\r\nStatus: \r\nToDate: September 12, 2023\r\nTrainingId: 15417\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763215	2024-07-08	13:36:59.8502420	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3663\r\nEmployeeTrainingId: 0\r\nFromDate: November 12, 2023\r\nHours: 16\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: CITY TRAVEL HOTEL KISAD ROAD , BAGUIO CITY\r\nStatus: \r\nToDate: December 12, 2023\r\nTrainingId: 15217\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763216	2024-07-08	13:36:59.8542417	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3663\r\nEmployeeTrainingId: 0\r\nFromDate: November 23, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BATANGAS CITY SPORTS COLLISEUM\r\nStatus: \r\nToDate: November 23, 2023\r\nTrainingId: 15107\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763217	2024-07-08	13:36:59.8592424	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3663\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BULWAGANG ALA EH , SDO BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15178\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763218	2024-07-08	13:36:59.8632450	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3663\r\nEmployeeTrainingId: 0\r\nFromDate: November 09, 2023\r\nHours: 24\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: M.I. SEVILLA'S RESORT ,LUCENA CITY\r\nStatus: \r\nToDate: November 09, 2023\r\nTrainingId: 15079\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763225	2024-07-08	13:42:07.6567589	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FINAL QUALITY ASSURANCE/ WORKSHOP OF CONTEXTUALIZED AND LOCALIZED IN ALL LEARNING AREAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763219	2024-07-08	13:36:59.8682454	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3663\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: March 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 13,000.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: July 08, 2024\r\n	admin	Experiences	1
763220	2024-07-08	13:36:59.8722455	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3663\r\nCompanyInstitution: WORLD CUP AGENCY\r\nExperienceId: 0\r\nFromDate: July 17, 2018\r\nIsGovernmentService: False\r\nMonthlySalary: 20,000.00\r\nPositionHeld: SECURITY GUARD\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: February 01, 2023\r\n	admin	Experiences	1
763221	2024-07-08	13:36:59.8767471	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3663\r\nCompanyInstitution: UNITED ARAB EMIRATES\r\nExperienceId: 0\r\nFromDate: July 15, 2013\r\nIsGovernmentService: False\r\nMonthlySalary: 20,000.00\r\nPositionHeld: OVERSEAS WORKER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: August 25, 2015\r\n	admin	Experiences	1
763222	2024-07-08	13:36:59.8807497	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3663\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
763226	2024-07-08	13:46:57.3351424	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3663\r\nEmployeeTrainingId: 0\r\nFromDate: July 21, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BULWAGANG ALA EH , SDO BATANGAS CITY\r\nStatus: \r\nToDate: July 22, 2023\r\nTrainingId: 15308\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763227	2024-07-08	13:46:57.3391422	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3663\r\nEmployeeTrainingId: 0\r\nFromDate: June 07, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BULWAGANG ALA EH, SDO BATANGAS CITY\r\nStatus: \r\nToDate: June 07, 2023\r\nTrainingId: 15420\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763228	2024-07-08	13:46:57.3461425	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3663\r\nEmployeeTrainingId: 0\r\nFromDate: May 19, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO BATANGAS CITY, LIBRARY HUB\r\nStatus: \r\nToDate: May 19, 2023\r\nTrainingId: 15421\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763229	2024-07-08	13:46:57.3501421	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3663\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BATIS ARAMIN ,RESORT AND ,HOTEL , LUCBAN QUEZON\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763230	2024-07-08	13:46:57.3551431	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: KUMINTANG IBABA\r\nBasicInformationId: 3663\r\nBirthDate: October 08, 1969\r\nBirthPlace: ROSARIO BATANGAS\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATAMNGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: JESSILYNDECASTRO1@GMAIL.COM\r\nExtensionName: \r\nFirstName: JESSILYN\r\nFullName: JESSILYN F. DE CASTRO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: FLORIDA\r\nMobileNumber: 09493392364\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: KUMINTANG IBABA\r\nPermanentCity: BATAMNGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 56\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: KUMINTANG IBABA\r\nBasicInformationId: 3663\r\nBirthDate: October 08, 1969\r\nBirthPlace: ROSARIO BATANGAS\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATAMNGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: JESSILYNDECASTRO1@GMAIL.COM\r\nExtensionName: \r\nFirstName: JESSILYN\r\nFullName: JESSILYN F. DE CASTRO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: FLORIDA\r\nMobileNumber: 09493392364\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: KUMINTANG IBABA\r\nPermanentCity: BATAMNGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 56\r\nZipCode: 4200\r\n	admin	BasicInformation	1
763231	2024-07-08	13:46:57.3611420	<Undetected>	Update	BasicInformationId: 3663\r\nBirthDate: March 21, 1993\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3499\r\nExtensionName: \r\nFirstName: ARVIN\r\nFullName: ARVIN F DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: F\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3663\r\nBirthDate: March 21, 1993\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3499\r\nExtensionName: \r\nFirstName: ARVIN\r\nFullName: ARVIN DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: F\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763232	2024-07-08	13:46:57.3651423	<Undetected>	Update	BasicInformationId: 3663\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3500\r\nExtensionName: \r\nFirstName: CAYETANO\r\nFullName: CAYETANO ASI FLORIDA\r\nGender: Male\r\nLastName: FLORIDA\r\nMaidenName: \r\nMiddleName: ASI\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3663\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3500\r\nExtensionName: \r\nFirstName: CAYETANO\r\nFullName: CAYETANO FLORIDA\r\nGender: Male\r\nLastName: FLORIDA\r\nMaidenName: \r\nMiddleName: ASI\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
763493	2024-07-08	15:51:15.2781229	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3664\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
763233	2024-07-08	13:46:57.3721427	<Undetected>	Update	BasicInformationId: 3663\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3501\r\nExtensionName: \r\nFirstName: ZENAIDA\r\nFullName: ZENAIDA AGUILAR ESCOBILLA\r\nGender: Female\r\nLastName: ESCOBILLA\r\nMaidenName: \r\nMiddleName: AGUILAR\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3663\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3501\r\nExtensionName: \r\nFirstName: ZENAIDA\r\nFullName: ZENAIDA ESCOBILLA\r\nGender: Female\r\nLastName: ESCOBILLA\r\nMaidenName: \r\nMiddleName: AGUILAR\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
763234	2024-07-08	13:46:57.3771431	<Undetected>	Update	BasicInformationId: 3663\r\nBirthDate: June 19, 1991\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3502\r\nExtensionName: \r\nFirstName: ARJAY\r\nFullName: ARJAY F DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: F\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3663\r\nBirthDate: June 19, 1991\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3502\r\nExtensionName: \r\nFirstName: ARJAY\r\nFullName: ARJAY DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: F\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763235	2024-07-08	13:46:57.3831449	<Undetected>	Update	BasicInformationId: 3663\r\nBirthDate: March 21, 1993\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3503\r\nExtensionName: \r\nFirstName: ARVIN\r\nFullName: ARVIN F DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: F\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3663\r\nBirthDate: March 21, 1993\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3503\r\nExtensionName: \r\nFirstName: ARVIN\r\nFullName: ARVIN DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: F\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763236	2024-07-08	13:46:57.3871448	<Undetected>	Update	BasicInformationId: 3663\r\nBirthDate: December 08, 1994\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3504\r\nExtensionName: \r\nFirstName: ANGEL\r\nFullName: ANGEL F DE CASTRO\r\nGender: Female\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: F\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3663\r\nBirthDate: December 08, 1994\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3504\r\nExtensionName: \r\nFirstName: ANGEL\r\nFullName: ANGEL DE CASTRO\r\nGender: Female\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: F\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763237	2024-07-08	13:46:57.3941459	<Undetected>	Update	BasicInformationId: 3663\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3460\r\n	BasicInformationId: 3663\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3460\r\n	admin	Questionnaires	1
763253	2024-07-08	13:53:24.7222891	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3663\r\nCharacterReferenceId: 0\r\nCompanyAddress: NATIVIDAD STREET BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09192980703\r\nExtensionName: \r\nFirstName: JOEL \r\nLastName: PEREZ\r\nMiddleName: A \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763254	2024-07-08	13:53:24.7312950	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3663\r\nCharacterReferenceId: 0\r\nCompanyAddress: SOROSORO ILAYA BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09178552017\r\nExtensionName: \r\nFirstName: JOSEFINA\r\nLastName: LAGMAN\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763255	2024-07-08	13:53:24.7352944	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3663\r\nCharacterReferenceId: 0\r\nCompanyAddress: MAHABANG PARANG BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09393665149\r\nExtensionName: \r\nFirstName: DELMAR \r\nLastName: RAMOS\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763256	2024-07-08	13:53:24.7392942	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: KUMINTANG IBABA\r\nBasicInformationId: 3663\r\nBirthDate: October 08, 1969\r\nBirthPlace: ROSARIO BATANGAS\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATAMNGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: JESSILYNDECASTRO1@GMAIL.COM\r\nExtensionName: \r\nFirstName: JESSILYN\r\nFullName: JESSILYN F. DE CASTRO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: FLORIDA\r\nMobileNumber: 09493392364\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: KUMINTANG IBABA\r\nPermanentCity: BATAMNGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 56\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: KUMINTANG IBABA\r\nBasicInformationId: 3663\r\nBirthDate: October 08, 1969\r\nBirthPlace: ROSARIO BATANGAS\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATAMNGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: JESSILYNDECASTRO1@GMAIL.COM\r\nExtensionName: \r\nFirstName: JESSILYN\r\nFullName: JESSILYN F. DE CASTRO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: 1210-9672-5427\r\nHeight: 5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: FLORIDA\r\nMobileNumber: 09493392364\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: KUMINTANG IBABA\r\nPermanentCity: BATAMNGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025161266-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 03-8767218-0\r\nStreetName: \r\nTIN: 489-868-719-0000\r\nWeight: 56\r\nZipCode: 4200\r\n	admin	BasicInformation	1
763257	2024-07-08	13:53:24.7448050	<Undetected>	Update	BasicInformationId: 3663\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3460\r\n	BasicInformationId: 3663\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3460\r\n	admin	Questionnaires	1
763262	2024-07-08	14:06:52.7475839	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF SCIENCE IN FOREIGN SERVICE\r\nLevel: College\r\n	admin	Courses	1
763264	2024-07-08	14:09:13.2751629	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: DOCTOR OF EDUCATION\r\nLevel: College\r\n	admin	Courses	1
763356	2024-07-08	14:40:52.8536974	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3665\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1976\r\nDateTo: 1980\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: LOBO INSTITUTE\r\nYearGraduated: 1980\r\n	admin	EducationalBackgrounds	1
763239	2024-07-08	13:50:16.8886305	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPACITY BUILDING OF SCIENCE, MATHEMATICS AND ENGLISH TEACHERS ON THE IMPLMENTATION OF THE NATIONAL LEARNING CAMP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763252	2024-07-08	13:52:14.0884147	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPACITY BUILDING OF SCIENCE, MATHEMATICS AND ENGLISH TEACHERS ON THE IMPLMENTATION OF THE NATIONAL LEARNING CAMP BATCH 2\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763258	2024-07-08	13:58:42.3685867	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING OF CHIEF TRAINER ON THE IMPLMENTATION OF THE NATIONAL LEARNING CAMP LUZON CLUSTER 2\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763259	2024-07-08	14:01:23.7436989	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FINALIZATION OF SCHOOL-BASED LEARNING ACTION CELL (SLAC) LEARNING RESOURCE PACKAGE FOR LEARNING RECOVERY IN LITERACY AND NUMERACY- STAGE 2\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763261	2024-07-08	14:05:04.1354168	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ENHANCING THE CAPACITY OF SCHOOL HEADSAND TEACHERS IN THE IMPLMENTATION OF PROFESSIONAL VIA SCHOOL LEARNING ACTION CELL-CLUSTER\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763263	2024-07-08	14:07:45.6404003	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON RECRUITMENT, SELECTION AND APPOINTMENT GUIDELINES IN THE DEPARTMENT OF EDUCATION (BATCH 1)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763276	2024-07-08	14:12:12.1671449	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3662\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE \r\n	admin	Skills	1
763277	2024-07-08	14:12:12.1721284	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3662\r\nSkillId: 0\r\nSkillName: ROBOTICS ASSEMBLY\r\n	admin	Skills	1
763278	2024-07-08	14:12:12.1771117	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3662\r\nOrganizationId: 0\r\nOrganizationName: NEU\r\n	admin	Organizations	1
763279	2024-07-08	14:12:12.1810984	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3662\r\nEmployeeTrainingId: 0\r\nFromDate: January 29, 2024\r\nHours: 24\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: January 31, 2024\r\nTrainingId: 15604\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763280	2024-07-08	14:12:12.1850850	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3662\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 32\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: January 27, 2024\r\nTrainingId: 15605\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763281	2024-07-08	14:12:12.1900686	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3662\r\nEmployeeTrainingId: 0\r\nFromDate: December 04, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: December 05, 2023\r\nTrainingId: 15606\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763282	2024-07-08	14:12:12.1940552	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3662\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763283	2024-07-08	14:12:12.1990384	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3662\r\nEmployeeTrainingId: 0\r\nFromDate: October 02, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: October 02, 2023\r\nTrainingId: 15529\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763284	2024-07-08	14:12:12.2030250	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3662\r\nEmployeeTrainingId: 0\r\nFromDate: November 17, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: November 17, 2023\r\nTrainingId: 15607\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763285	2024-07-08	14:12:12.2080085	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3662\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15113\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763286	2024-07-08	14:12:12.2119950	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3662\r\nEmployeeTrainingId: 0\r\nFromDate: September 26, 2023\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: September 29, 2023\r\nTrainingId: 15531\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763243	2024-07-08	13:51:42.4439205	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3664\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1986\r\nDateTo: 1990\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS CITY INTEGRATED HIGH SCHOOL FORMERLY BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1990\r\n	admin	EducationalBackgrounds	1
763244	2024-07-08	13:51:42.4439205	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3664\r\nCourse: \r\nCourseId: 1303\r\nCourseOrMajor: \r\nDateFrom: 1990\r\nDateTo: 1994\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY FORMERLY PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY\r\nYearGraduated: 1994\r\n	admin	EducationalBackgrounds	1
763245	2024-07-08	13:51:42.4439205	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3664\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: HIPOLITA\r\nFullName: HIPOLITA GONZALES\r\nGender: Female\r\nLastName: ANTENOR\r\nMaidenName: \r\nMiddleName: GONZALES\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
763246	2024-07-08	13:51:42.4439205	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3664\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ANTONIO\r\nFullName: ANTONIO OBILO PANOPIO\r\nGender: Male\r\nLastName: PANOPIO\r\nMaidenName: \r\nMiddleName: OBILO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
763247	2024-07-08	13:51:42.4439205	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3664\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: HIPOLITA\r\nFullName: HIPOLITA GONZALES\r\nGender: Female\r\nLastName: ANTENOR\r\nMaidenName: \r\nMiddleName: GONZALES\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
763248	2024-07-08	13:51:42.4439205	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3664\r\nBirthDate: October 31, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JAMESON\r\nFullName: JAMESON P OCON\r\nGender: Male\r\nLastName: OCON\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763249	2024-07-08	13:51:42.4439205	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3664\r\nBirthDate: October 03, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ANGELY JADE\r\nFullName: ANGELY JADE P OCON\r\nGender: Female\r\nLastName: OCON\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763250	2024-07-08	13:51:42.4439205	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3664\r\nBirthDate: October 04, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JORDAN ANGELO\r\nFullName: JORDAN ANGELO P OCON\r\nGender: Male\r\nLastName: OCON\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763251	2024-07-08	13:51:42.4439205	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3664\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
763260	2024-07-08	14:04:24.5278021	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER OF ARTS IN EDUCATIONAL MANAGEMENT \r\nLevel: Master's\r\n	admin	Courses	1
763265	2024-07-08	14:10:34.0785149	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3664\r\nCourse: \r\nCourseId: 1304\r\nCourseOrMajor: \r\nDateFrom: 2004\r\nDateTo: 2012\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES \r\nYearGraduated: 2012\r\n	admin	EducationalBackgrounds	1
763266	2024-07-08	14:10:34.0834981	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3664\r\nCourse: \r\nCourseId: 1299\r\nCourseOrMajor: \r\nDateFrom: 2013\r\nDateTo: 2016\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: \r\nSchoolorUniversity: ST. JUDE COLLEGE/BSU\r\nYearGraduated: 2016\r\n	admin	EducationalBackgrounds	1
763267	2024-07-08	14:10:34.0904748	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3664\r\nDateOfExamination: May 01, 1994\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: May 01, 1994\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 76.9%\r\nTitle: PROFESSIONAL BOARD EXAM FOR TEACHERS (PBET)\r\n	admin	Eligibilities	1
763287	2024-07-08	14:12:12.2169786	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3662\r\nEmployeeTrainingId: 0\r\nFromDate: July 06, 2023\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: July 06, 2023\r\nTrainingId: 15608\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763268	2024-07-08	14:10:34.1024352	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3664\r\nDateOfExamination: November 01, 1994\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: November 01, 1994\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 81.1%\r\nTitle: CIVIL SERVICE EXAM FOR PROFESSIONAL \r\n	admin	Eligibilities	1
763269	2024-07-08	14:10:34.1203751	<Undetected>	Update	BasicInformationId: 3664\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3505\r\nExtensionName: \r\nFirstName: HIPOLITA\r\nFullName: HIPOLITA GONZALES\r\nGender: Female\r\nLastName: ANTENOR\r\nMaidenName: \r\nMiddleName: GONZALES\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3664\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3505\r\nExtensionName: \r\nFirstName: HIPOLITA\r\nFullName: HIPOLITA ANTENOR\r\nGender: Female\r\nLastName: ANTENOR\r\nMaidenName: \r\nMiddleName: GONZALES\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
763270	2024-07-08	14:10:34.1353249	<Undetected>	Update	BasicInformationId: 3664\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3506\r\nExtensionName: \r\nFirstName: ANTONIO\r\nFullName: ANTONIO OBILO PANOPIO\r\nGender: Male\r\nLastName: PANOPIO\r\nMaidenName: \r\nMiddleName: OBILO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3664\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3506\r\nExtensionName: \r\nFirstName: ANTONIO\r\nFullName: ANTONIO PANOPIO\r\nGender: Male\r\nLastName: PANOPIO\r\nMaidenName: \r\nMiddleName: OBILO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
763271	2024-07-08	14:10:34.1423660	<Undetected>	Update	BasicInformationId: 3664\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3507\r\nExtensionName: \r\nFirstName: HIPOLITA\r\nFullName: HIPOLITA GONZALES\r\nGender: Female\r\nLastName: ANTENOR\r\nMaidenName: \r\nMiddleName: GONZALES\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3664\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3507\r\nExtensionName: \r\nFirstName: HIPOLITA\r\nFullName: HIPOLITA ANTENOR\r\nGender: Female\r\nLastName: ANTENOR\r\nMaidenName: \r\nMiddleName: GONZALES\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
763272	2024-07-08	14:10:34.1483458	<Undetected>	Update	BasicInformationId: 3664\r\nBirthDate: October 31, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3508\r\nExtensionName: \r\nFirstName: JAMESON\r\nFullName: JAMESON P OCON\r\nGender: Male\r\nLastName: OCON\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3664\r\nBirthDate: October 31, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3508\r\nExtensionName: \r\nFirstName: JAMESON\r\nFullName: JAMESON OCON\r\nGender: Male\r\nLastName: OCON\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763273	2024-07-08	14:10:34.1523324	<Undetected>	Update	BasicInformationId: 3664\r\nBirthDate: October 03, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3509\r\nExtensionName: \r\nFirstName: ANGELY JADE\r\nFullName: ANGELY JADE P OCON\r\nGender: Female\r\nLastName: OCON\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3664\r\nBirthDate: October 03, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3509\r\nExtensionName: \r\nFirstName: ANGELY JADE\r\nFullName: ANGELY JADE OCON\r\nGender: Female\r\nLastName: OCON\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763274	2024-07-08	14:10:34.1573157	<Undetected>	Update	BasicInformationId: 3664\r\nBirthDate: October 04, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3510\r\nExtensionName: \r\nFirstName: JORDAN ANGELO\r\nFullName: JORDAN ANGELO P OCON\r\nGender: Male\r\nLastName: OCON\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3664\r\nBirthDate: October 04, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3510\r\nExtensionName: \r\nFirstName: JORDAN ANGELO\r\nFullName: JORDAN ANGELO OCON\r\nGender: Male\r\nLastName: OCON\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763275	2024-07-08	14:10:34.1622991	<Undetected>	Update	BasicInformationId: 3664\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3461\r\n	BasicInformationId: 3664\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3461\r\n	admin	Questionnaires	1
763288	2024-07-08	14:12:12.2209650	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3662\r\nEmployeeTrainingId: 0\r\nFromDate: July 18, 2023\r\nHours: 24\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: July 20, 2023\r\nTrainingId: 15609\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763289	2024-07-08	14:12:12.2249519	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3662\r\nEmployeeTrainingId: 0\r\nFromDate: July 21, 2023\r\nHours: 16\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: July 22, 2023\r\nTrainingId: 15610\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763290	2024-07-08	14:12:12.2299350	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3662\r\nEmployeeTrainingId: 0\r\nFromDate: July 24, 2023\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: July 28, 2023\r\nTrainingId: 15515\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763291	2024-07-08	14:12:12.2339216	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3662\r\nEmployeeTrainingId: 0\r\nFromDate: August 15, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: August 17, 2023\r\nTrainingId: 15465\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763292	2024-07-08	14:12:12.2389049	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3662\r\nEmployeeTrainingId: 0\r\nFromDate: August 09, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: September 11, 2023\r\nTrainingId: 15534\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763293	2024-07-08	14:12:12.2428917	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3662\r\nEmployeeTrainingId: 0\r\nFromDate: June 19, 2023\r\nHours: 24\r\nNatureOfParticipation: PARTICIPANT \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: June 21, 2023\r\nTrainingId: 15546\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763294	2024-07-08	14:12:12.2478749	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3662\r\nEmployeeTrainingId: 0\r\nFromDate: June 28, 2023\r\nHours: 40\r\nNatureOfParticipation: PARTICIPANT \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: July 01, 2023\r\nTrainingId: 15611\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763295	2024-07-08	14:12:12.2518616	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3662\r\nEmployeeTrainingId: 0\r\nFromDate: March 13, 2023\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: March 17, 2023\r\nTrainingId: 15612\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763296	2024-07-08	14:12:12.2558483	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3662\r\nEmployeeTrainingId: 0\r\nFromDate: August 03, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: August 05, 2023\r\nTrainingId: 15591\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763297	2024-07-08	14:12:12.2608316	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3662\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763298	2024-07-08	14:12:12.2648183	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3662\r\nEmployeeTrainingId: 0\r\nFromDate: May 08, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: May 09, 2023\r\nTrainingId: 15614\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763299	2024-07-08	14:12:12.2698015	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3662\r\nDateOfExamination: October 01, 1986\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: October 01, 1986\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: QUEZON CITY\r\nRating: 78.48%\r\nTitle: PROFESSIONAL BOARD EXAMINATION  FOR TEACHERS \r\n	admin	Eligibilities	1
763300	2024-07-08	14:12:12.2737883	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3662\r\nCompanyInstitution: SDO BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 73,661.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: July 08, 2024\r\n	admin	Experiences	1
763336	2024-07-08	14:12:12.4343058	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3662\r\nCharacterReferenceId: 0\r\nCompanyAddress: SDO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 043-723-3586\r\nExtensionName: \r\nFirstName: HERMOGENES\r\nLastName: PANGANIBAN \r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763301	2024-07-08	14:12:12.2787716	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3662\r\nCompanyInstitution: SDO BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 72,113.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
763302	2024-07-08	14:12:12.2827583	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3662\r\nCompanyInstitution: SDO BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 06, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 70,565.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
763303	2024-07-08	14:12:12.2867450	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3662\r\nCompanyInstitution: SDO BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 69,481.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: May 31, 2021\r\n	admin	Experiences	1
763304	2024-07-08	14:12:12.2917282	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3662\r\nCompanyInstitution: SDO BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 67,933.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
763305	2024-07-08	14:12:12.2957149	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3662\r\nCompanyInstitution: SDO BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 66,385.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 01, 2019\r\n	admin	Experiences	1
763306	2024-07-08	14:12:12.3006982	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3662\r\nCompanyInstitution: SDO BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 06, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 59,597.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
763307	2024-07-08	14:12:12.3046849	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3662\r\nCompanyInstitution: SDO BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 58,717.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: May 31, 2018\r\n	admin	Experiences	1
763308	2024-07-08	14:12:12.3096682	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3662\r\nCompanyInstitution: SDO BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 52,783.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
763309	2024-07-08	14:12:12.3136549	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3662\r\nCompanyInstitution: SDO BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 47,488.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
763310	2024-07-08	14:12:12.3186383	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3662\r\nCompanyInstitution: SDO BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 06, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 42,652.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
763311	2024-07-08	14:12:12.3226248	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3662\r\nCompanyInstitution: MAABUD NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: June 11, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 36,567.00\r\nPositionHeld: PRINCIPAL II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-\r\nStatus: Permanent\r\nToDate: May 31, 2015\r\n	admin	Experiences	1
763312	2024-07-08	14:12:12.3266114	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3662\r\nCompanyInstitution: CORAL NA MUNTI NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 33,859.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: May 11, 2014\r\n	admin	Experiences	1
763313	2024-07-08	14:12:12.3315948	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3662\r\nCompanyInstitution: CORAL NA MUNTI NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: May 31, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 27,088.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: December 31, 2012\r\n	admin	Experiences	1
763314	2024-07-08	14:12:12.3365772	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3662\r\nCompanyInstitution: MATABUNGKAY NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 27,088.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: May 30, 2012\r\n	admin	Experiences	1
763315	2024-07-08	14:12:12.3415614	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3662\r\nCompanyInstitution: GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: June 06, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 27,088.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: December 31, 2011\r\n	admin	Experiences	1
763316	2024-07-08	14:12:12.3455481	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3662\r\nCompanyInstitution: GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 25,259.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-\r\nStatus: Permanent\r\nToDate: May 06, 2011\r\n	admin	Experiences	1
763317	2024-07-08	14:12:12.3505315	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3662\r\nCompanyInstitution: GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 07, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 22,214.00\r\nPositionHeld: MASTER TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
763318	2024-07-08	14:12:12.3545181	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3662\r\nCompanyInstitution: GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: May 25, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 17,059.00\r\nPositionHeld: MASTER TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
763319	2024-07-08	14:12:12.3585047	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3662\r\nCompanyInstitution: GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 07, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 13,850.00\r\nPositionHeld: SST III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: May 24, 2009\r\n	admin	Experiences	1
763320	2024-07-08	14:12:12.3634880	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3662\r\nCompanyInstitution: GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 06, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,592.00\r\nPositionHeld: SST III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
763321	2024-07-08	14:12:12.3674746	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3662\r\nCompanyInstitution: GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 07, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 12,284.00\r\nPositionHeld: SST III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: May 31, 2008\r\n	admin	Experiences	1
763322	2024-07-08	14:12:12.3724580	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3662\r\nCompanyInstitution: GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 03, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 11,167.00\r\nPositionHeld: SST III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: June 30, 2005\r\n	admin	Experiences	1
763323	2024-07-08	14:12:12.3764444	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3662\r\nCompanyInstitution: GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 10,971.00\r\nPositionHeld: SST I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: February 28, 2005\r\n	admin	Experiences	1
763486	2024-07-08	15:40:08.6533390	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON THE FINALIZATION OF TVL COURSES OFFERING TO ALIGN LOCAL DEVELOPMENT GOALS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763324	2024-07-08	14:12:12.3814281	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3662\r\nCompanyInstitution: GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 10,704.00\r\nPositionHeld: SST I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 2004\r\n	admin	Experiences	1
763325	2024-07-08	14:12:12.3854147	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3662\r\nCompanyInstitution: GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 07, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 10,442.00\r\nPositionHeld: SST I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 2001\r\n	admin	Experiences	1
763326	2024-07-08	14:12:12.3903981	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3662\r\nCompanyInstitution: GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 9,945.00\r\nPositionHeld: SST I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
763327	2024-07-08	14:12:12.3943846	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3662\r\nCompanyInstitution: GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 9,041.00\r\nPositionHeld: SST I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
763328	2024-07-08	14:12:12.3993682	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3662\r\nCompanyInstitution: GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 11, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: November 30, 1998\r\n	admin	Experiences	1
763329	2024-07-08	14:12:12.4033546	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3662\r\nCompanyInstitution: GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 7,309.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER  I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: October 31, 1997\r\n	admin	Experiences	1
763330	2024-07-08	14:12:12.4083380	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3662\r\nCompanyInstitution: GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 6,013.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 1996\r\n	admin	Experiences	1
763331	2024-07-08	14:12:12.4123246	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3662\r\nCompanyInstitution: GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 4,902.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 1995\r\n	admin	Experiences	1
763332	2024-07-08	14:12:12.4163113	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3662\r\nCompanyInstitution: GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 3,902.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 1994\r\n	admin	Experiences	1
763333	2024-07-08	14:12:12.4213494	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3662\r\nCompanyInstitution: GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: February 09, 1991\r\nIsGovernmentService: True\r\nMonthlySalary: 3,102.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 1993\r\n	admin	Experiences	1
763334	2024-07-08	14:12:12.4263323	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3662\r\nCharacterReferenceId: 0\r\nCompanyAddress: SDO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09171892566\r\nExtensionName: \r\nFirstName: SACORO\r\nLastName: COMIA\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763335	2024-07-08	14:12:12.4303191	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3662\r\nCharacterReferenceId: 0\r\nCompanyAddress: SDO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 786-0296\r\nExtensionName: \r\nFirstName: CATHERINE\r\nLastName: MARANAN\r\nMiddleName: V\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763337	2024-07-08	14:12:12.4392890	<Undetected>	Update	BasicInformationId: 3662\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3493\r\nExtensionName: \r\nFirstName: SANSON\r\nFullName: SANSON MASANGKAY CABANDING\r\nGender: Male\r\nLastName: CABANDING\r\nMaidenName: \r\nMiddleName: MASANGKAY\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3662\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3493\r\nExtensionName: \r\nFirstName: SANSON\r\nFullName: SANSON CABANDING\r\nGender: Male\r\nLastName: CABANDING\r\nMaidenName: \r\nMiddleName: MASANGKAY\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
763338	2024-07-08	14:12:12.4432756	<Undetected>	Update	BasicInformationId: 3662\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3494\r\nExtensionName: \r\nFirstName: DANIEL\r\nFullName: DANIEL CATILO DIMAANO\r\nGender: Male\r\nLastName: DIMAANO\r\nMaidenName: \r\nMiddleName: CATILO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3662\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3494\r\nExtensionName: \r\nFirstName: DANIEL\r\nFullName: DANIEL DIMAANO\r\nGender: Male\r\nLastName: DIMAANO\r\nMaidenName: \r\nMiddleName: CATILO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
763339	2024-07-08	14:12:12.4482590	<Undetected>	Update	BasicInformationId: 3662\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3495\r\nExtensionName: \r\nFirstName: PAZ\r\nFullName: PAZ MAGADIA RIVERA\r\nGender: Female\r\nLastName: RIVERA\r\nMaidenName: \r\nMiddleName: MAGADIA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3662\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3495\r\nExtensionName: \r\nFirstName: PAZ\r\nFullName: PAZ RIVERA\r\nGender: Female\r\nLastName: RIVERA\r\nMaidenName: \r\nMiddleName: MAGADIA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
763340	2024-07-08	14:12:12.4522457	<Undetected>	Update	BasicInformationId: 3662\r\nBirthDate: August 05, 1998\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3496\r\nExtensionName: \r\nFirstName: ALYSSA BERNICE\r\nFullName: ALYSSA BERNICE D CABANDING\r\nGender: Female\r\nLastName: CABANDING\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3662\r\nBirthDate: August 05, 1998\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3496\r\nExtensionName: \r\nFirstName: ALYSSA BERNICE\r\nFullName: ALYSSA BERNICE CABANDING\r\nGender: Female\r\nLastName: CABANDING\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763341	2024-07-08	14:12:12.4572290	<Undetected>	Update	BasicInformationId: 3662\r\nBirthDate: March 31, 1992\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3497\r\nExtensionName: \r\nFirstName: CHESKA ANNE\r\nFullName: CHESKA ANNE D CABANDING\r\nGender: Female\r\nLastName: CABANDING\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3662\r\nBirthDate: March 31, 1992\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3497\r\nExtensionName: \r\nFirstName: CHESKA ANNE\r\nFullName: CHESKA ANNE CABANDING\r\nGender: Female\r\nLastName: CABANDING\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763342	2024-07-08	14:12:12.4622124	<Undetected>	Update	BasicInformationId: 3662\r\nBirthDate: June 05, 1994\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3498\r\nExtensionName: \r\nFirstName: BRAHAM NOE\r\nFullName: BRAHAM NOE D CABANDING\r\nGender: Male\r\nLastName: CABANDING\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3662\r\nBirthDate: June 05, 1994\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3498\r\nExtensionName: \r\nFirstName: BRAHAM NOE\r\nFullName: BRAHAM NOE CABANDING\r\nGender: Male\r\nLastName: CABANDING\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763343	2024-07-08	14:12:12.4661992	<Undetected>	Update	BasicInformationId: 3662\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3459\r\n	BasicInformationId: 3662\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3459\r\n	admin	Questionnaires	1
763344	2024-07-08	14:14:08.5395970	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 6422\r\nAddress2: \r\nBarangay: ZONE 5\r\nBasicInformationId: 3662\r\nBirthDate: August 17, 1965\r\nBirthPlace: BATANGAS CITY\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rowena.canding001@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROWENA\r\nFullName: ROWENA D. CABANDING\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CABANDING\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nMobileNumber: 09175930974\r\nNationality: Filipino\r\nPermanentAddress1: 6422\r\nPermanentAddress2: \r\nPermanentBarangay: ZONE 5\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LUALHATI ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LUALHATI ST.\r\nTIN: \r\nWeight: 59\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 6422\r\nAddress2: \r\nBarangay: ZONE 5\r\nBasicInformationId: 3662\r\nBirthDate: August 17, 1965\r\nBirthPlace: BATANGAS CITY\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rowena.cabanding001@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROWENA\r\nFullName: ROWENA D. CABANDING\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02002912494\r\nHDMF: 1210-4215-5010\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CABANDING\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nMobileNumber: 09175930974\r\nNationality: Filipino\r\nPermanentAddress1: 6422\r\nPermanentAddress2: \r\nPermanentBarangay: ZONE 5\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LUALHATI ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000050336-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LUALHATI ST.\r\nTIN: 124-606-482-0000\r\nWeight: 59\r\nZipCode: 4200\r\n	admin	BasicInformation	1
763345	2024-07-08	14:25:27.9640083	<Undetected>	Update	BasicInformationId: 3624\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3334\r\nExtensionName: \r\nFirstName: EDELYN\r\nFullName: EDELYN BOONGALING BABAO\r\nGender: Female\r\nLastName: BABAO\r\nMaidenName: \r\nMiddleName: BOONGALING\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3624\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3334\r\nExtensionName: \r\nFirstName: EDELYN\r\nFullName: EDELYN BABAO\r\nGender: Female\r\nLastName: BABAO\r\nMaidenName: \r\nMiddleName: BOONGALING\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
763346	2024-07-08	14:35:17.2550529	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 1116\r\nAddress2: TWINVILLA\r\nBarangay: KUMINTANG IBABA\r\nBasicInformationId: 0\r\nBirthDate: July 28, 1964\r\nBirthPlace: LOBO, BATANGAS\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: EDELYN.BRIONES001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: EDELYN\r\nFullName: EDELYN B. BRIONES\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 5.4\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BRIONES\r\nMaidenName: \r\nMiddleName: BABAO\r\nMobileNumber: 091657005579\r\nNationality: Filipino\r\nPermanentAddress1: 1116\r\nPermanentAddress2: TWINVILLA\r\nPermanentBarangay: KUMINTANG IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ARGON\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: ARGON\r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
763347	2024-07-08	14:35:17.2698689	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3665\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SERGIO\r\nFullName: SERGIO MAGTIBAY BRIONES\r\nGender: Male\r\nLastName: BRIONES\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nOccupation: FORMER SEAMAN\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
763348	2024-07-08	14:35:17.2698689	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3665\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ESTEBAN\r\nFullName: ESTEBAN ALDOVER BABAO\r\nGender: Male\r\nLastName: BABAO\r\nMaidenName: \r\nMiddleName: ALDOVER\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
763349	2024-07-08	14:35:17.2698689	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3665\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MELECIA\r\nFullName: MELECIA FRAGO\r\nGender: Female\r\nLastName: BOONGALING\r\nMaidenName: \r\nMiddleName: FRAGO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
763350	2024-07-08	14:35:17.2698689	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3665\r\nBirthDate: April 01, 1990\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALEXIS\r\nFullName: ALEXIS B BRIONES\r\nGender: Male\r\nLastName: BRIONES\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763351	2024-07-08	14:35:17.2698689	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3665\r\nBirthDate: December 22, 1992\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EDZEL\r\nFullName: EDZEL B BRIONES\r\nGender: Male\r\nLastName: BRIONES\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763352	2024-07-08	14:35:17.2698689	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3665\r\nBirthDate: January 07, 1996\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SHERLYN\r\nFullName: SHERLYN B BRIONES\r\nGender: Female\r\nLastName: BRIONES\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763353	2024-07-08	14:35:17.2698689	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3665\r\nBirthDate: March 15, 1998\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ANGELO\r\nFullName: ANGELO B BRIONES\r\nGender: Male\r\nLastName: BRIONES\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763354	2024-07-08	14:35:17.2698689	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3665\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
763355	2024-07-08	14:40:52.8486972	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: FIRST HONOR\r\nBasicInformationId: 3665\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1970\r\nDateTo: 1976\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BALATBAT ELEMENTARY SCHOL\r\nYearGraduated: 1976\r\n	admin	EducationalBackgrounds	1
763490	2024-07-08	15:44:15.6698724	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ENHANCING THE CAPACITY OF SCHOOL HEADSAND TEACHERS IN THE IMPLMENTATION OF PROFESSIONAL VIA SCHOOL LEARNING ACTION CELL-CLUSTER 2\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763357	2024-07-08	14:40:52.8576972	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3665\r\nCourse: \r\nCourseId: 1305\r\nCourseOrMajor: \r\nDateFrom: 1980\r\nDateTo: 1984\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: LYCEUM OF THE PHILIPPINES\r\nYearGraduated: 1984\r\n	admin	EducationalBackgrounds	1
763358	2024-07-08	14:40:52.8666974	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3665\r\nCourse: \r\nCourseId: 1302\r\nCourseOrMajor: \r\nDateFrom: 2009\r\nDateTo: 2012\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2012\r\n	admin	EducationalBackgrounds	1
763359	2024-07-08	14:40:52.8706969	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3665\r\nDateOfExamination: December 18, 1988\r\nDateOfRelease: January 28, 2024\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: December 18, 1988\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0126530\r\nPlaceOfExamination: MANILA\r\nRating: 77.4\r\nTitle: PROFESSIONAL BOARD FOR ELEMENTARY TEACHER\r\n	admin	Eligibilities	1
763360	2024-07-08	14:40:52.8766974	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 1116\r\nAddress2: TWINVILLA\r\nBarangay: KUMINTANG IBABA\r\nBasicInformationId: 3665\r\nBirthDate: July 28, 1964\r\nBirthPlace: LOBO, BATANGAS\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: EDELYN.BRIONES001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: EDELYN\r\nFullName: EDELYN B. BRIONES\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 5.4\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BRIONES\r\nMaidenName: \r\nMiddleName: BABAO\r\nMobileNumber: 091657005579\r\nNationality: Filipino\r\nPermanentAddress1: 1116\r\nPermanentAddress2: TWINVILLA\r\nPermanentBarangay: KUMINTANG IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ARGON\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: ARGON\r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 1116\r\nAddress2: TWINVILLA\r\nBarangay: KUMINTANG IBABA\r\nBasicInformationId: 3665\r\nBirthDate: July 28, 1964\r\nBirthPlace: LOBO, BATANGAS\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: EDELYN.BRIONES001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: EDELYN\r\nFullName: EDELYN B. BRIONES\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 5.4\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BRIONES\r\nMaidenName: \r\nMiddleName: BABAO\r\nMobileNumber: 091657005579\r\nNationality: Filipino\r\nPermanentAddress1: 1116\r\nPermanentAddress2: TWINVILLA\r\nPermanentBarangay: KUMINTANG IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ARGON\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ARGON\r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
763361	2024-07-08	14:40:52.8806973	<Undetected>	Update	BasicInformationId: 3665\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3511\r\nExtensionName: \r\nFirstName: SERGIO\r\nFullName: SERGIO MAGTIBAY BRIONES\r\nGender: Male\r\nLastName: BRIONES\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nOccupation: FORMER SEAMAN\r\nRelationship: Husband\r\n	BasicInformationId: 3665\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3511\r\nExtensionName: \r\nFirstName: SERGIO\r\nFullName: SERGIO BRIONES\r\nGender: Male\r\nLastName: BRIONES\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nOccupation: FORMER SEAMAN\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
763362	2024-07-08	14:40:52.8856979	<Undetected>	Update	BasicInformationId: 3665\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3512\r\nExtensionName: \r\nFirstName: ESTEBAN\r\nFullName: ESTEBAN ALDOVER BABAO\r\nGender: Male\r\nLastName: BABAO\r\nMaidenName: \r\nMiddleName: ALDOVER\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3665\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3512\r\nExtensionName: \r\nFirstName: ESTEBAN\r\nFullName: ESTEBAN BABAO\r\nGender: Male\r\nLastName: BABAO\r\nMaidenName: \r\nMiddleName: ALDOVER\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
763363	2024-07-08	14:40:52.8896975	<Undetected>	Update	BasicInformationId: 3665\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3513\r\nExtensionName: \r\nFirstName: MELECIA\r\nFullName: MELECIA FRAGO\r\nGender: Female\r\nLastName: BOONGALING\r\nMaidenName: \r\nMiddleName: FRAGO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3665\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3513\r\nExtensionName: \r\nFirstName: MELECIA\r\nFullName: MELECIA BOONGALING\r\nGender: Female\r\nLastName: BOONGALING\r\nMaidenName: \r\nMiddleName: FRAGO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
763364	2024-07-08	14:40:52.8937033	<Undetected>	Update	BasicInformationId: 3665\r\nBirthDate: April 01, 1990\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3514\r\nExtensionName: \r\nFirstName: ALEXIS\r\nFullName: ALEXIS B BRIONES\r\nGender: Male\r\nLastName: BRIONES\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3665\r\nBirthDate: April 01, 1990\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3514\r\nExtensionName: \r\nFirstName: ALEXIS\r\nFullName: ALEXIS BRIONES\r\nGender: Male\r\nLastName: BRIONES\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763365	2024-07-08	14:40:52.8987034	<Undetected>	Update	BasicInformationId: 3665\r\nBirthDate: December 22, 1992\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3515\r\nExtensionName: \r\nFirstName: EDZEL\r\nFullName: EDZEL B BRIONES\r\nGender: Male\r\nLastName: BRIONES\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3665\r\nBirthDate: December 22, 1992\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3515\r\nExtensionName: \r\nFirstName: EDZEL\r\nFullName: EDZEL BRIONES\r\nGender: Male\r\nLastName: BRIONES\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763412	2024-07-08	15:15:02.4575749	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3666\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CRISANTA\r\nFullName: CRISANTA EVANGELISTA EBORA\r\nGender: Female\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: EVANGELISTA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
763366	2024-07-08	14:40:52.9027033	<Undetected>	Update	BasicInformationId: 3665\r\nBirthDate: January 07, 1996\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3516\r\nExtensionName: \r\nFirstName: SHERLYN\r\nFullName: SHERLYN B BRIONES\r\nGender: Female\r\nLastName: BRIONES\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3665\r\nBirthDate: January 07, 1996\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3516\r\nExtensionName: \r\nFirstName: SHERLYN\r\nFullName: SHERLYN BRIONES\r\nGender: Female\r\nLastName: BRIONES\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763367	2024-07-08	14:40:52.9081621	<Undetected>	Update	BasicInformationId: 3665\r\nBirthDate: March 15, 1998\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3517\r\nExtensionName: \r\nFirstName: ANGELO\r\nFullName: ANGELO B BRIONES\r\nGender: Male\r\nLastName: BRIONES\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3665\r\nBirthDate: March 15, 1998\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3517\r\nExtensionName: \r\nFirstName: ANGELO\r\nFullName: ANGELO BRIONES\r\nGender: Male\r\nLastName: BRIONES\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763368	2024-07-08	14:40:52.9121624	<Undetected>	Update	BasicInformationId: 3665\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3462\r\n	BasicInformationId: 3665\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3462\r\n	admin	Questionnaires	1
763369	2024-07-08	14:52:46.0614541	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3664\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: October 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 72,577.00\r\nPositionHeld:  EDUCATION PROGRAM SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: July 08, 2024\r\n	admin	Experiences	1
763370	2024-07-08	14:52:46.0664374	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3664\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 71,511.00\r\nPositionHeld:  EDUCATION PROGRAM SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: September 30, 2023\r\n	admin	Experiences	1
763371	2024-07-08	14:52:46.0714207	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3664\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 69,963.00\r\nPositionHeld:  EDUCATION PROGRAM SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
763372	2024-07-08	14:52:46.0764041	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3664\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: July 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 68,415.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
763373	2024-07-08	14:52:46.0813873	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3664\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 68,415.00\r\nPositionHeld: PRINCIPAL IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: June 30, 2021\r\n	admin	Experiences	1
763374	2024-07-08	14:52:46.0863711	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3664\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 66,867.00\r\nPositionHeld: PRINCIPAL IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
763375	2024-07-08	14:52:46.0913542	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3664\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 65,319.00\r\nPositionHeld: PRINCIPAL IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
763376	2024-07-08	14:52:46.0963375	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3664\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 57,805.00\r\nPositionHeld: PRINCIPAL III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: September 30, 2019\r\n	admin	Experiences	1
763377	2024-07-08	14:52:46.1013206	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3664\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 52,554.00\r\nPositionHeld: PRINCIPAL III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
763494	2024-07-08	15:51:15.2821112	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3664\r\nSkillId: 0\r\nSkillName: READING INSPIRATIONAL BOOKS\r\n	admin	Skills	1
763378	2024-07-08	14:52:46.1063043	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3664\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: February 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 44,779.00\r\nPositionHeld: PRINCIPAL III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
763379	2024-07-08	14:52:46.1102907	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3664\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 43,841.00\r\nPositionHeld: PRINCIPAL II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: January 31, 2017\r\n	admin	Experiences	1
763380	2024-07-08	14:52:46.1162708	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3664\r\nCompanyInstitution: DEPARTMENT OF EDUCATION PRINCIPAL II\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 40,259.00\r\nPositionHeld: PRINCIPAL II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
763381	2024-07-08	14:52:46.1212542	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3664\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: December 21, 2014\r\nIsGovernmentService: False\r\nMonthlySalary: 36,970.00\r\nPositionHeld: PRINCIPAL II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
763382	2024-07-08	14:52:46.1262373	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3664\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 36,567.00\r\nPositionHeld: PRINCIPAL II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: December 20, 2014\r\n	admin	Experiences	1
763383	2024-07-08	14:52:46.1312210	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3664\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: December 20, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 32,810.00\r\nPositionHeld: PRINCIPAL II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
763384	2024-07-08	14:52:46.1362044	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3664\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 30,474.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: December 19, 2011\r\n	admin	Experiences	1
763385	2024-07-08	14:52:46.1411875	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3664\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: False\r\nMonthlySalary: 27,088.00\r\nPositionHeld:  PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
763386	2024-07-08	14:52:46.1451740	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3664\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 08, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 23,703.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
763387	2024-07-08	14:52:46.1511542	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3664\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 19,514.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: September 07, 2009\r\n	admin	Experiences	1
763388	2024-07-08	14:52:46.1551408	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3664\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 16,093.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
763389	2024-07-08	15:01:34.3708540	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3665\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 74,762.00\r\nPositionHeld: PUBLIC SCHOOLS  DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-4\r\nStatus: Permanent\r\nToDate: July 08, 2024\r\n	admin	Experiences	1
763390	2024-07-08	15:01:34.3748573	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3665\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 74,762.00\r\nPositionHeld: PUBLIC SCHOOLS  DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-4\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
763391	2024-07-08	15:01:34.3798084	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3665\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 73,661.00\r\nPositionHeld: PUBLIC SCHOOLS  DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-3\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
763392	2024-07-08	15:01:34.3848083	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3665\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: May 25, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 73,661.00\r\nPositionHeld: PUBLIC SCHOOLS  DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
763393	2024-07-08	15:01:34.3888096	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3665\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 67,933.00\r\nPositionHeld: PUBLIC SCHOOLS  DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: May 24, 2021\r\n	admin	Experiences	1
763394	2024-07-08	15:01:34.3938108	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3665\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 67,933.00\r\nPositionHeld: PUBLIC SCHOOLS  DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
763395	2024-07-08	15:01:34.3978111	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3665\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 66,385.00\r\nPositionHeld: PUBLIC SCHOOLS  DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
763396	2024-07-08	15:01:34.4028110	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3665\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 59,597.00\r\nPositionHeld: PUBLIC SCHOOLS  DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: May 24, 2018\r\n	admin	Experiences	1
763397	2024-07-08	15:01:34.4073133	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3665\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: May 25, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 66,385.00\r\nPositionHeld: PUBLIC SCHOOLS  DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
763398	2024-07-08	15:01:34.4123170	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3665\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 59,597.00\r\nPositionHeld: PUBLIC SCHOOLS  DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
763399	2024-07-08	15:01:34.4163168	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3665\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 47,448.00\r\nPositionHeld: PUBLIC SCHOOLS  DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
763400	2024-07-08	15:01:34.4213171	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3665\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: May 25, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 42,652.00\r\nPositionHeld: PUBLIC SCHOOLS  DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
763452	2024-07-08	15:17:32.3573411	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON RECRUITMENT, SELECTION AND APPOINTMENT (RSA) GUIDELINES IN THE DEPARTMENT OF EDUCATION (BATCH 1)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763401	2024-07-08	15:01:34.4253160	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3665\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 04, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 42,652.00\r\nPositionHeld: PRINCIPAL IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: May 24, 2015\r\n	admin	Experiences	1
763402	2024-07-08	15:01:34.4303172	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3665\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 39,493.00\r\nPositionHeld: PRINCIPAL III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 21-\r\nStatus: Permanent\r\nToDate: January 03, 2013\r\n	admin	Experiences	1
763403	2024-07-08	15:08:03.6204982	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPACITY BUILDING OF SCIENCE, MATHEMATICS AND ENGLISH\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763404	2024-07-08	15:09:49.9886660	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPACITY BUILDING OF SCIENCE,MATHEMATICS AND ENGLISH (SME)TEACHERS ON THE IMPLEMENTATION OF NATIONAL LEARNING CAMP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763405	2024-07-08	15:11:43.3163479	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPACITY BUILDING OF SCIENCE ,MATHEMATICS AND ENGLISH {SME) TEACHERS ON THE IMPLEMENTATION OF NATONAL LEARNING CAMP (NLC)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763406	2024-07-08	15:15:02.4368831	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BOLBOK\r\nBasicInformationId: 0\r\nBirthDate: August 11, 1970\r\nBirthPlace: ISLA VERDE, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lea.aquino@deped.gov.ph\r\nExtensionName: \r\nFirstName: LEA\r\nFullName: LEA C. AQUINO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: AQUINO\r\nMaidenName: \r\nMiddleName: CALAHATI\r\nMobileNumber: 09171428944\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BOLBOK\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: MONTALBO ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: MONTALBO ROAD\r\nTIN: \r\nWeight: 63\r\nZipCode: 4200\r\n	admin	BasicInformation	1
763407	2024-07-08	15:15:02.4575749	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: FIRST HONORS\r\nBasicInformationId: 3666\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1977\r\nDateTo: 1983\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: PARANG ELEMENTARY SCHOOL\r\nYearGraduated: 1983\r\n	admin	EducationalBackgrounds	1
763408	2024-07-08	15:15:02.4575749	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: VALEDICTORIAN\r\nBasicInformationId: 3666\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1983\r\nDateTo: 1987\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: ISLA VERDE CATHOLIC HIGH SCHOOL\r\nYearGraduated: 1987\r\n	admin	EducationalBackgrounds	1
763409	2024-07-08	15:15:02.4575749	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3666\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1987\r\nDateTo: 1992\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: SAINT CRIDGET COLLEGE\r\nYearGraduated: 1992\r\n	admin	EducationalBackgrounds	1
763410	2024-07-08	15:15:02.4575749	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3666\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: 09108842707\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SERVILLANO\r\nFullName: SERVILLANO EVANGELISTA AQUINO\r\nGender: Male\r\nLastName: AQUINO\r\nMaidenName: \r\nMiddleName: EVANGELISTA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
763411	2024-07-08	15:15:02.4575749	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3666\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MODESTO\r\nFullName: MODESTO GAREJO CALAHATI\r\nGender: Male\r\nLastName: CALAHATI\r\nMaidenName: \r\nMiddleName: GAREJO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
766382	2024-07-12	09:47:12.7292224	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3697\r\nOrganizationId: 0\r\nOrganizationName: PAMBANSANG SAMAHAN NG TAGAPAGHUBOG NG PILIPINAS (PSTP)\r\n	admin	Organizations	1
763413	2024-07-08	15:15:02.4575749	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3666\r\nBirthDate: July 31, 1994\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARY ROSE VERGENIE\r\nFullName: MARY ROSE VERGENIE AQUINO\r\nGender: Female\r\nLastName: AQUINO\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763414	2024-07-08	15:15:02.4575749	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3666\r\nBirthDate: May 10, 1996\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARVELOUS VOLTAIRE\r\nFullName: MARVELOUS VOLTAIRE AQUINO\r\nGender: Male\r\nLastName: AQUINO\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763415	2024-07-08	15:15:02.4585713	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3666\r\nBirthDate: December 12, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MERRY RUTH VILLALEI\r\nFullName: MERRY RUTH VILLALEI AQUINO\r\nGender: Female\r\nLastName: AQUINO\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763416	2024-07-08	15:15:02.4585713	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3666\r\nDateOfExamination: October 25, 1992\r\nDateOfRelease: August 11, 2025\r\nEligibilityDocumentTypeId: 0\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: October 25, 1992\r\nLevelOfEligibility: First Level (Subprofessional)\r\nLicenseNumber: 0062217\r\nPlaceOfExamination: BATANGAS NATIONAL HIGH SCHOOL\r\nRating: 78.47%\r\nTitle: PBET \r\n	admin	Eligibilities	1
763417	2024-07-08	15:15:02.4585713	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3666\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 74,759.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-4\r\nStatus: Permanent\r\nToDate: July 08, 2024\r\n	admin	Experiences	1
763418	2024-07-08	15:15:02.4585713	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3666\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 73,214.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-4\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
763419	2024-07-08	15:15:02.4585713	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3666\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 71,666.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-4\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
763420	2024-07-08	15:15:02.4585713	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3666\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 70,565.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-3\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
763421	2024-07-08	15:15:02.4585713	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3666\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 69,017.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-3\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
763422	2024-07-08	15:15:02.4585713	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3666\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 67,469.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-3\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
763423	2024-07-08	15:15:02.4585713	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3666\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 53,503.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
763454	2024-07-08	15:20:26.4368359	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL TRAINING OF TRAINERS ON ADVANCING BASIC EDUCATION (ABC+)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763424	2024-07-08	15:15:02.4585713	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3666\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 53,503.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
763425	2024-07-08	15:15:02.4595681	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3666\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 53,503.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
763426	2024-07-08	15:15:02.4595681	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3666\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 48,032.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
763427	2024-07-08	15:15:02.4595681	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3666\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: September 04, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 43,121.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: December 21, 2015\r\n	admin	Experiences	1
763428	2024-07-08	15:15:02.4595681	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3666\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: September 04, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 42,652.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: September 03, 2015\r\n	admin	Experiences	1
763429	2024-07-08	15:15:02.4595681	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3666\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 39,493.00\r\nPositionHeld:  PRINCIPAL III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 21-\r\nStatus: Permanent\r\nToDate: September 03, 2012\r\n	admin	Experiences	1
763430	2024-07-08	15:15:02.4595681	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3666\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: August 22, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 35,219.00\r\nPositionHeld:  PRINCIPAL III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 21-\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
763431	2024-07-08	15:15:02.4595681	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3666\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: June 17, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 33,246.00\r\nPositionHeld: PRINCIPAL II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-\r\nStatus: Permanent\r\nToDate: August 21, 2011\r\n	admin	Experiences	1
763432	2024-07-08	15:15:02.4595681	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3666\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 32,810.00\r\nPositionHeld: PRINCIPAL II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-\r\nStatus: Permanent\r\nToDate: June 16, 2011\r\n	admin	Experiences	1
763433	2024-07-08	15:15:02.4595681	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3666\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 29,052.00\r\nPositionHeld: PRINCIPAL II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
763434	2024-07-08	15:15:02.4605648	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3666\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 25,295.00\r\nPositionHeld: PRINCIPAL II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
763467	2024-07-08	15:23:24.5154394	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ENHANCING THE CAPABILITY OF SCHOOL HEADS AND TEACHERS IN THE IMPLEMENTATION OF PROFESSIONAL DEVELOPMENT PROGRAM VIA SCHOOL ACTION CELL (SLAC)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763435	2024-07-08	15:15:02.4605648	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3666\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 28,318.00\r\nPositionHeld: PRINCIPAL II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
763436	2024-07-08	15:15:02.4605648	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3666\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 16, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 18,471.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
763437	2024-07-08	15:15:02.4605648	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3666\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 17,425.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: June 15, 2008\r\n	admin	Experiences	1
763438	2024-07-08	15:15:02.4605648	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3666\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 16, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 15,841.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
763439	2024-07-08	15:15:02.4605648	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3666\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: August 03, 2004\r\nIsGovernmentService: True\r\nMonthlySalary: 13,300.00\r\nPositionHeld: ES HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-\r\nStatus: Permanent\r\nToDate: January 15, 2006\r\n	admin	Experiences	1
763440	2024-07-08	15:15:02.4605648	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3666\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 21, 2003\r\nIsGovernmentService: True\r\nMonthlySalary: 11,167.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-\r\nStatus: Permanent\r\nToDate: August 02, 2004\r\n	admin	Experiences	1
763441	2024-07-08	15:15:02.4605648	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3666\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: December 26, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 10,353.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: January 20, 2003\r\n	admin	Experiences	1
763442	2024-07-08	15:15:02.4605648	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3666\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-\r\nStatus: Permanent\r\nToDate: December 25, 2001\r\n	admin	Experiences	1
763443	2024-07-08	15:15:02.4615613	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3666\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
763444	2024-07-08	15:15:02.4615613	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3666\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: November 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
763445	2024-07-08	15:15:02.4615613	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3666\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 7,309.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-\r\nStatus: Permanent\r\nToDate: October 31, 1997\r\n	admin	Experiences	1
763469	2024-07-08	15:24:15.4949342	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3665\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15168\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763446	2024-07-08	15:15:02.4615613	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3666\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 6,013.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-\r\nStatus: Permanent\r\nToDate: October 31, 1996\r\n	admin	Experiences	1
763447	2024-07-08	15:15:02.4615613	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3666\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 4,902.00\r\nPositionHeld: TEACHER 1 \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-\r\nStatus: Permanent\r\nToDate: October 31, 1995\r\n	admin	Experiences	1
763448	2024-07-08	15:15:02.4615613	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3666\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 3,902.00\r\nPositionHeld: TEACHER 1 \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-\r\nStatus: Permanent\r\nToDate: December 31, 1994\r\n	admin	Experiences	1
763449	2024-07-08	15:15:02.4615613	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3666\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: September 10, 1993\r\nIsGovernmentService: True\r\nMonthlySalary: 3,102.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-\r\nStatus: Permanent\r\nToDate: December 31, 1993\r\n	admin	Experiences	1
763450	2024-07-08	15:15:02.4615613	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3666\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
763451	2024-07-08	15:16:02.3539259	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING ON HOTS- PLP BATCH 2\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763453	2024-07-08	15:18:33.9047657	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING ON HOTS AND SOLO FRAMEWORK ACROSS THE CURRICULUM FOR EDUCATION LEADERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763455	2024-07-08	15:22:01.7378756	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING WORKSHOP ON CAPABILITY BUILDING FOCUSING ON LEARNER- CENTERED APPROACH FOR EFFECTIVE DELIVERY OF INSTRUCTION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763468	2024-07-08	15:23:51.1621331	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SEMINAR- WORKSHOP ON CAPABILITY BUILDING FOCUSING ON LEARNER- CENTERED APPROACH FOR EFFECTIVE DELIVERY OF INSTRUCTION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763476	2024-07-08	15:25:40.2177659	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SEMINAR-WORKSHOP ON CAPABILITY BUILDING FOCUSING ON LEARNER- CENTERED APPROACH FOR EFFECTIVE DELIVERY OF INSTRUCTION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763477	2024-07-08	15:27:58.4185704	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPACITY BUILDING OF TEACHERS ON THE IMPLEMENTATION OF NLC\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763482	2024-07-08	15:32:08.1519237	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION SCREENING/ SELECTION OF THE LEARNING RESOURCES EVALUATORS (LRES), ILLUSTRATORS AND LAYOUT ARTIST\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763483	2024-07-08	15:35:25.5865910	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL MARKET SCOPING OF SUPPLEMENTARY LEARNING RESOURCES FOR SCHOOL LIBRARIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763484	2024-07-08	15:38:24.2963733	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL TRAINING OF TRAINERS ON ADVANCING EDUCATION IN THE PHILIPPINES (ABC+) INSTRUCTIONAL LEADERSHIP TRAINING (ILT) UPSCALING PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763487	2024-07-08	15:40:39.5762854	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2022 VIRTUAL CONFERENCE OF BASIC EDUCATION RESEARCHERS (VCBER)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763491	2024-07-08	15:45:03.2634932	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PANDIBISYONG PALIGSAHAN SA FILIPINO SA PAGSULAT NG SANAYSAY NA MAY TEMANG "TIMPALAK JACINTO SA SANAYSAY 2021"\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763456	2024-07-08	15:22:44.1532251	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3664\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 14,630.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
763457	2024-07-08	15:22:44.1582082	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3664\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: June 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 13,300.00\r\nPositionHeld:  HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: July 08, 2007\r\n	admin	Experiences	1
763458	2024-07-08	15:22:44.1631916	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3664\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 11,446.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: May 31, 2007\r\n	admin	Experiences	1
763459	2024-07-08	15:22:44.1681748	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3664\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: February 03, 2003\r\nIsGovernmentService: True\r\nMonthlySalary: 11,167.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: December 31, 2006\r\n	admin	Experiences	1
763460	2024-07-08	15:22:44.1731582	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3664\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 10,535.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 2-\r\nStatus: Permanent\r\nToDate: February 02, 2003\r\n	admin	Experiences	1
763461	2024-07-08	15:22:44.1781416	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3664\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 10,033.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
763462	2024-07-08	15:22:44.1831250	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3664\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 22, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 9,121.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
763463	2024-07-08	15:22:44.1881082	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3664\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: November 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: November 21, 1999\r\n	admin	Experiences	1
763464	2024-07-08	15:22:44.1930915	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3664\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 7,309.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: October 31, 1997\r\n	admin	Experiences	1
763465	2024-07-08	15:22:44.1980748	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3664\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 6,013.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: December 31, 1996\r\n	admin	Experiences	1
763466	2024-07-08	15:22:44.2030583	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3664\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: June 05, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 4,902.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: December 31, 1995\r\n	admin	Experiences	1
763485	2024-07-08	15:39:17.6994001	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON THE FLALIZATION OF TVL COURSES OFFERING TO ALIGN LOCAL DEVELOPMENT GOALS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
767175	2025-03-06	14:06:56.7240333	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3709\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY ASSOCIATION OF ELEMENTARY AND SECONDARY SCHOOL PAPER ADVISERS\r\n	admin	Organizations	1
763470	2024-07-08	15:24:15.4989333	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3665\r\nEmployeeTrainingId: 0\r\nFromDate: July 18, 2023\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 20, 2023\r\nTrainingId: 15617\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763471	2024-07-08	15:24:15.5045435	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3665\r\nEmployeeTrainingId: 0\r\nFromDate: May 19, 2023\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: May 19, 2023\r\nTrainingId: 15421\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763472	2024-07-08	15:24:15.5085435	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3665\r\nEmployeeTrainingId: 0\r\nFromDate: May 15, 2023\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: May 17, 2023\r\nTrainingId: 15046\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763473	2024-07-08	15:24:15.5135436	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3665\r\nEmployeeTrainingId: 0\r\nFromDate: May 08, 2023\r\nHours: 16\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: May 09, 2023\r\nTrainingId: 15619\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763474	2024-07-08	15:24:15.5175443	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3665\r\nEmployeeTrainingId: 0\r\nFromDate: March 20, 2023\r\nHours: 40\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: March 24, 2023\r\nTrainingId: 15621\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763475	2024-07-08	15:24:15.5225474	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3665\r\nEmployeeTrainingId: 0\r\nFromDate: March 28, 2022\r\nHours: 40\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: April 05, 2022\r\nTrainingId: 15623\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763478	2024-07-08	15:29:14.3414619	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3665\r\nCharacterReferenceId: 0\r\nCompanyAddress: TALUMPOK WEST,BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09171892566\r\nExtensionName: \r\nFirstName: SACORO\r\nLastName: COMIA\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763479	2024-07-08	15:29:14.3449730	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3665\r\nCharacterReferenceId: 0\r\nCompanyAddress: BAUAN,BATANGAS\r\nCompanyName: \r\nContactNumber: 09393665149\r\nExtensionName: \r\nFirstName: MADONNA\r\nLastName: ABRUGENA\r\nMiddleName: B \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763480	2024-07-08	15:29:14.3529730	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 1116\r\nAddress2: TWINVILLA\r\nBarangay: KUMINTANG IBABA\r\nBasicInformationId: 3665\r\nBirthDate: July 28, 1964\r\nBirthPlace: LOBO, BATANGAS\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: EDELYN.BRIONES001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: EDELYN\r\nFullName: EDELYN B. BRIONES\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 5.4\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BRIONES\r\nMaidenName: \r\nMiddleName: BABAO\r\nMobileNumber: 091657005579\r\nNationality: Filipino\r\nPermanentAddress1: 1116\r\nPermanentAddress2: TWINVILLA\r\nPermanentBarangay: KUMINTANG IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ARGON\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ARGON\r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 1116\r\nAddress2: TWINVILLA\r\nBarangay: KUMINTANG IBABA\r\nBasicInformationId: 3665\r\nBirthDate: July 28, 1964\r\nBirthPlace: LOBO, BATANGAS\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: EDELYN.BRIONES001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: EDELYN\r\nFullName: EDELYN B. BRIONES\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02002994405\r\nHDMF: 1490-0096-8878\r\nHeight: 5.4\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BRIONES\r\nMaidenName: \r\nMiddleName: BABAO\r\nMobileNumber: 091657005579\r\nNationality: Filipino\r\nPermanentAddress1: 1116\r\nPermanentAddress2: TWINVILLA\r\nPermanentBarangay: KUMINTANG IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ARGON\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000012252-0\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 03-8255036-2\r\nStreetName: ARGON\r\nTIN: 124-523-923-0000\r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
763481	2024-07-08	15:29:14.3579735	<Undetected>	Update	BasicInformationId: 3665\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3462\r\n	BasicInformationId: 3665\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3462\r\n	admin	Questionnaires	1
763488	2024-07-08	15:42:15.4657935	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF ELEMENTARY  EDUCATION SPECIALIZATION IN CHILDHOOD EDUCATION  \r\nLevel: College\r\n	admin	Courses	1
763489	2024-07-08	15:43:57.2567759	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: DOCTOR OF PHILOSOPHY IN EDUCATION \r\nLevel: College\r\n	admin	Courses	1
763555	2024-07-08	15:57:06.8373298	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3667\r\nDateOfExamination: November 26, 1998\r\nDateOfRelease: April 10, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: November 26, 1998\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0507735\r\nPlaceOfExamination: MANILA\r\nRating: 77.20\r\nTitle: LICENSURE EXAMINATION FOR PROFESSIONAL TEACHERS \r\n	admin	Eligibilities	1
763495	2024-07-08	15:51:15.2880937	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3664\r\nEmployeeTrainingId: 0\r\nFromDate: January 29, 2024\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nStatus: \r\nToDate: January 31, 2024\r\nTrainingId: 15604\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763496	2024-07-08	15:51:15.2920374	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3664\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763497	2024-07-08	15:51:15.2980173	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3664\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15113\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763498	2024-07-08	15:51:15.3020041	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3664\r\nEmployeeTrainingId: 0\r\nFromDate: September 26, 2023\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nStatus: \r\nToDate: September 29, 2023\r\nTrainingId: 15531\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763499	2024-07-08	15:51:15.3069873	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3664\r\nEmployeeTrainingId: 0\r\nFromDate: August 09, 2023\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nStatus: \r\nToDate: August 11, 2023\r\nTrainingId: 15534\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763500	2024-07-08	15:51:15.3119707	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3664\r\nEmployeeTrainingId: 0\r\nFromDate: August 14, 2023\r\nHours: 40\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nStatus: \r\nToDate: August 18, 2023\r\nTrainingId: 15574\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763501	2024-07-08	15:51:15.3169540	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3664\r\nEmployeeTrainingId: 0\r\nFromDate: July 18, 2023\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nStatus: \r\nToDate: July 20, 2023\r\nTrainingId: 15617\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763502	2024-07-08	15:51:15.3219374	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3664\r\nEmployeeTrainingId: 0\r\nFromDate: July 24, 2023\r\nHours: 40\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nStatus: \r\nToDate: July 28, 2023\r\nTrainingId: 15515\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763503	2024-07-08	15:51:15.3259240	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3664\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763504	2024-07-08	15:51:15.3319041	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3664\r\nEmployeeTrainingId: 0\r\nFromDate: March 21, 2023\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nStatus: \r\nToDate: March 23, 2023\r\nTrainingId: 15555\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763505	2024-07-08	15:51:15.3358910	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3664\r\nEmployeeTrainingId: 0\r\nFromDate: February 21, 2023\r\nHours: 32\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- CALABARZON\r\nStatus: \r\nToDate: February 24, 2023\r\nTrainingId: 15631\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763506	2024-07-08	15:51:15.3408740	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3664\r\nEmployeeTrainingId: 0\r\nFromDate: February 20, 2023\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nStatus: \r\nToDate: February 20, 2023\r\nTrainingId: 15114\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763507	2024-07-08	15:51:15.3458574	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3664\r\nEmployeeTrainingId: 0\r\nFromDate: March 13, 2023\r\nHours: 40\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- BATANGAS CITY\r\nStatus: \r\nToDate: March 17, 2023\r\nTrainingId: 15612\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763508	2024-07-08	15:51:15.3498441	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3664\r\nEmployeeTrainingId: 0\r\nFromDate: August 03, 2023\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: ENHANCING THE CAPACITY OF SCHOOL HEADSAND TEACHERS IN THE IMPLMENTATION OF PROFESSIONAL VIA SCHOOL LEARNING ACTION CELL-CLUSTER\r\nStatus: \r\nToDate: August 05, 2023\r\nTrainingId: 15633\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767176	2025-03-06	14:06:56.7293643	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3709\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
763509	2024-07-08	15:51:15.3558240	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3664\r\nCharacterReferenceId: 0\r\nCompanyAddress: SDO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 0917892566\r\nExtensionName: \r\nFirstName: SACORO\r\nLastName: COMIA\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763510	2024-07-08	15:51:15.3598107	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3664\r\nCharacterReferenceId: 0\r\nCompanyAddress: SDO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 786-0296\r\nExtensionName: \r\nFirstName: CATHERINE \r\nLastName: MARANAN\r\nMiddleName: V\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763511	2024-07-08	15:51:15.3647941	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3664\r\nCharacterReferenceId: 0\r\nCompanyAddress: SDO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 043-723-3586\r\nExtensionName: \r\nFirstName: HERMOGENES\r\nLastName: PANGANIBAN\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763512	2024-07-08	15:51:15.3697773	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 130\r\nAddress2: \r\nBarangay: PALLOCAN EAST\r\nBasicInformationId: 3664\r\nBirthDate: August 24, 1973\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: aurea.ocon001@deped.gov.ph\r\nExtensionName: \r\nFirstName: AUREA\r\nFullName: AUREA P. OCON\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: OCON\r\nMaidenName: \r\nMiddleName: PANOPIO\r\nMobileNumber: 09475071038\r\nNationality: Filipino\r\nPermanentAddress1: 130\r\nPermanentAddress2: \r\nPermanentBarangay: PALLOCAN EAST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: MANALO ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: MANALO ST.\r\nTIN: \r\nWeight: 69\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 130\r\nAddress2: \r\nBarangay: PALLOCAN EAST\r\nBasicInformationId: 3664\r\nBirthDate: August 24, 1973\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: aurea.ocon001@deped.gov.ph\r\nExtensionName: \r\nFirstName: AUREA\r\nFullName: AUREA P. OCON\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02002992141\r\nHDMF: 1490-0088-0079\r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: OCON\r\nMaidenName: \r\nMiddleName: PANOPIO\r\nMobileNumber: 09475071038\r\nNationality: Filipino\r\nPermanentAddress1: 130\r\nPermanentAddress2: \r\nPermanentBarangay: PALLOCAN EAST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: MANALO ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: MANALO ST.\r\nTIN: 194-233-541-0000\r\nWeight: 69\r\nZipCode: 4200\r\n	admin	BasicInformation	1
763513	2024-07-08	15:51:15.3747607	<Undetected>	Update	BasicInformationId: 3664\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3461\r\n	BasicInformationId: 3664\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3461\r\n	admin	Questionnaires	1
763590	2024-07-08	16:21:47.7793731	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF INDUSTRIAL EDUCATION\r\nLevel: College\r\n	admin	Courses	1
763613	2024-07-08	16:24:10.5708303	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: DOCTOR OF PHILOSOPHY IN EDUCATIOP\r\nLevel: Doctorate\r\n	admin	Courses	1
763614	2024-07-08	16:24:37.5131060	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO MALIGAYA\r\nBarangay: CUTA\r\nBasicInformationId: 0\r\nBirthDate: September 30, 1964\r\nBirthPlace: LIBJO, BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANAGS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marieta.perez002@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIETA\r\nFullName: MARIETA N. PEREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: NOCHE\r\nMobileNumber: 09985553861\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO MALIGAYA\r\nPermanentBarangay: CUTA\r\nPermanentCity: BATANAGS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 69\r\nZipCode: 4200\r\n	admin	BasicInformation	1
763615	2024-07-08	16:24:37.5299102	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3668\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1971\r\nDateTo: 1977\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: LIBJO ELEMENTARY SCHOOL\r\nYearGraduated: 1977\r\n	admin	EducationalBackgrounds	1
763616	2024-07-08	16:24:37.5299102	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3668\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1977\r\nDateTo: 1981\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1981\r\n	admin	EducationalBackgrounds	1
763617	2024-07-08	16:24:37.5299102	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3668\r\nCourse: \r\nCourseId: 1309\r\nCourseOrMajor: \r\nDateFrom: 1981\r\nDateTo: 1985\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY\r\nYearGraduated: 1985\r\n	admin	EducationalBackgrounds	1
767303	2025-03-07	08:02:22.8536976	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3712\r\nRecognitionId: 0\r\nRecognitionName: 3RD RUNNER UP PARENTS CHOICE AWARD TEACHERS DAY 2024\r\n	admin	Recognitions	1
763514	2024-07-08	15:51:38.6637429	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING WORKSHOP ON THE HOLISTIC ASSESMENT DEPED SDO BATANGAS CITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763515	2024-07-08	15:53:39.6458405	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FLEX2LEAD ONLINE COURSE THAMES INTERNATIONAL/ NEAP R4A\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763516	2024-07-08	15:55:54.5347611	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CONFERENCE OF BASIC EDUCATION RESEARCHERS DEPED SDO BATANGAS CITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763517	2024-07-08	15:56:34.3719591	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3666\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 32\r\nNatureOfParticipation: SUPERVISION \r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: January 27, 2024\r\nTrainingId: 15618\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763518	2024-07-08	15:56:34.3799297	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3666\r\nEmployeeTrainingId: 0\r\nFromDate: September 26, 2023\r\nHours: 32\r\nNatureOfParticipation: SUPERVISION\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: September 26, 2023\r\nTrainingId: 15620\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763519	2024-07-08	15:56:34.3859091	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3666\r\nEmployeeTrainingId: 0\r\nFromDate: September 20, 2023\r\nHours: 32\r\nNatureOfParticipation: SUPERVISION \r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: September 20, 2023\r\nTrainingId: 15620\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763520	2024-07-08	15:56:34.3918891	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3666\r\nEmployeeTrainingId: 0\r\nFromDate: August 15, 2023\r\nHours: 24\r\nNatureOfParticipation: SUPERVISION\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: August 17, 2023\r\nTrainingId: 15624\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763521	2024-07-08	15:56:34.3978691	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3666\r\nEmployeeTrainingId: 0\r\nFromDate: July 21, 2023\r\nHours: 16\r\nNatureOfParticipation: SUPERVISION\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: July 22, 2023\r\nTrainingId: 15626\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763522	2024-07-08	15:56:34.4028524	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3666\r\nEmployeeTrainingId: 0\r\nFromDate: July 18, 2023\r\nHours: 16\r\nNatureOfParticipation: SUPERVISION\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: July 20, 2023\r\nTrainingId: 15609\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763523	2024-07-08	15:56:34.4118225	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3666\r\nEmployeeTrainingId: 0\r\nFromDate: June 19, 2023\r\nHours: 24\r\nNatureOfParticipation: SUPERVISION\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: June 21, 2023\r\nTrainingId: 15546\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763524	2024-07-08	15:56:34.4158091	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3666\r\nEmployeeTrainingId: 0\r\nFromDate: June 10, 2023\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: June 10, 2023\r\nTrainingId: 15627\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763525	2024-07-08	15:56:34.4207925	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3666\r\nEmployeeTrainingId: 0\r\nFromDate: June 01, 2023\r\nHours: 24\r\nNatureOfParticipation: SUPERVISION\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: June 03, 2023\r\nTrainingId: 15628\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763526	2024-07-08	15:56:34.4287659	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3666\r\nEmployeeTrainingId: 0\r\nFromDate: March 20, 2023\r\nHours: 40\r\nNatureOfParticipation: SUPERVISION\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A CALABARZON\r\nStatus: \r\nToDate: March 24, 2023\r\nTrainingId: 15629\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763527	2024-07-08	15:56:34.4327524	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3666\r\nEmployeeTrainingId: 0\r\nFromDate: November 21, 2022\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A CALABARZON\r\nStatus: \r\nToDate: November 25, 2022\r\nTrainingId: 15632\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763528	2024-07-08	15:56:34.4387325	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3666\r\nEmployeeTrainingId: 0\r\nFromDate: September 07, 2022\r\nHours: 8\r\nNatureOfParticipation: SUPERVISION\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A CALABARZON\r\nStatus: \r\nToDate: September 07, 2022\r\nTrainingId: 15174\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763529	2024-07-08	15:56:34.4447169	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3666\r\nEmployeeTrainingId: 0\r\nFromDate: June 09, 2022\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: June 10, 2022\r\nTrainingId: 15578\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763530	2024-07-08	15:56:34.4506923	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3666\r\nEmployeeTrainingId: 0\r\nFromDate: June 08, 2022\r\nHours: 24\r\nNatureOfParticipation: SUPERVISION\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: June 10, 2023\r\nTrainingId: 15634\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763531	2024-07-08	15:56:34.4546791	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3666\r\nEmployeeTrainingId: 0\r\nFromDate: May 04, 2022\r\nHours: 24\r\nNatureOfParticipation: SUPERVISION\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: May 06, 2022\r\nTrainingId: 15478\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763532	2024-07-08	15:56:34.4626525	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3666\r\nEmployeeTrainingId: 0\r\nFromDate: February 07, 2022\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A CALABARZON\r\nStatus: \r\nToDate: February 07, 2022\r\nTrainingId: 15567\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763533	2024-07-08	15:56:34.4666390	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3666\r\nEmployeeTrainingId: 0\r\nFromDate: December 08, 2021\r\nHours: 56\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: December 19, 2021\r\nTrainingId: 15635\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763534	2024-07-08	15:56:34.4716225	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3666\r\nEmployeeTrainingId: 0\r\nFromDate: November 03, 2021\r\nHours: 48\r\nNatureOfParticipation: SUPERVISION \r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: November 08, 2021\r\nTrainingId: 15636\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763535	2024-07-08	15:56:34.4785992	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3666\r\nEmployeeTrainingId: 0\r\nFromDate: October 18, 2021\r\nHours: 96\r\nNatureOfParticipation: SUPERVISION\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: October 29, 2021\r\nTrainingId: 15637\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763536	2024-07-08	15:56:34.4835823	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3666\r\nEmployeeTrainingId: 0\r\nFromDate: October 12, 2021\r\nHours: 24\r\nNatureOfParticipation: SUPERVISION\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: October 14, 2021\r\nTrainingId: 15638\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763537	2024-07-08	15:56:34.4885658	<Undetected>	Update	BasicInformationId: 3666\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: 09108842707\r\nEmployeeRelativeId: 3518\r\nExtensionName: \r\nFirstName: SERVILLANO\r\nFullName: SERVILLANO EVANGELISTA AQUINO\r\nGender: Male\r\nLastName: AQUINO\r\nMaidenName: \r\nMiddleName: EVANGELISTA\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3666\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: 09108842707\r\nEmployeeRelativeId: 3518\r\nExtensionName: \r\nFirstName: SERVILLANO\r\nFullName: SERVILLANO AQUINO\r\nGender: Male\r\nLastName: AQUINO\r\nMaidenName: \r\nMiddleName: EVANGELISTA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
763538	2024-07-08	15:56:34.4955424	<Undetected>	Update	BasicInformationId: 3666\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3519\r\nExtensionName: \r\nFirstName: MODESTO\r\nFullName: MODESTO GAREJO CALAHATI\r\nGender: Male\r\nLastName: CALAHATI\r\nMaidenName: \r\nMiddleName: GAREJO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3666\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3519\r\nExtensionName: \r\nFirstName: MODESTO\r\nFullName: MODESTO CALAHATI\r\nGender: Male\r\nLastName: CALAHATI\r\nMaidenName: \r\nMiddleName: GAREJO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
763539	2024-07-08	15:56:34.5005257	<Undetected>	Update	BasicInformationId: 3666\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3520\r\nExtensionName: \r\nFirstName: CRISANTA\r\nFullName: CRISANTA EVANGELISTA EBORA\r\nGender: Female\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: EVANGELISTA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3666\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3520\r\nExtensionName: \r\nFirstName: CRISANTA\r\nFullName: CRISANTA EBORA\r\nGender: Female\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: EVANGELISTA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
763540	2024-07-08	15:56:34.5055090	<Undetected>	Update	BasicInformationId: 3666\r\nBirthDate: July 31, 1994\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3521\r\nExtensionName: \r\nFirstName: MARY ROSE VERGENIE\r\nFullName: MARY ROSE VERGENIE AQUINO\r\nGender: Female\r\nLastName: AQUINO\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3666\r\nBirthDate: July 31, 1994\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3521\r\nExtensionName: \r\nFirstName: MARY ROSE VERGENIE\r\nFullName: MARY ROSE VERGENIE AQUINO\r\nGender: Female\r\nLastName: AQUINO\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763541	2024-07-08	15:56:34.5124857	<Undetected>	Update	BasicInformationId: 3666\r\nBirthDate: May 10, 1996\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3522\r\nExtensionName: \r\nFirstName: MARVELOUS VOLTAIRE\r\nFullName: MARVELOUS VOLTAIRE AQUINO\r\nGender: Male\r\nLastName: AQUINO\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3666\r\nBirthDate: May 10, 1996\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3522\r\nExtensionName: \r\nFirstName: MARVELOUS VOLTAIRE\r\nFullName: MARVELOUS VOLTAIRE AQUINO\r\nGender: Male\r\nLastName: AQUINO\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763542	2024-07-08	15:56:34.5174690	<Undetected>	Update	BasicInformationId: 3666\r\nBirthDate: December 12, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3523\r\nExtensionName: \r\nFirstName: MERRY RUTH VILLALEI\r\nFullName: MERRY RUTH VILLALEI AQUINO\r\nGender: Female\r\nLastName: AQUINO\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3666\r\nBirthDate: December 12, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3523\r\nExtensionName: \r\nFirstName: MERRY RUTH VILLALEI\r\nFullName: MERRY RUTH VILLALEI AQUINO\r\nGender: Female\r\nLastName: AQUINO\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763543	2024-07-08	15:56:34.5214557	<Undetected>	Update	BasicInformationId: 3666\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3463\r\n	BasicInformationId: 3666\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3463\r\n	admin	Questionnaires	1
763563	2024-07-08	15:58:23.8792615	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: E-RAISE UP TRAINING RESKILLING ADVOCACY, INITIATIVES, SUPPORT FOR EXCELLENCE AND UPSKILLING DEPED IV-A\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763564	2024-07-08	16:00:07.1353404	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL QUALITY MANAGEMENT SYSTEM LAUNCHING DEPED SDO BATANGAS CITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763566	2024-07-08	16:02:01.3684801	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL ORIENTATION ON THE IMPLMENTATION OF HOMEROOM GUIDANCE PROGRAM FOR SY: 2022-2023\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763568	2024-07-08	16:05:49.3841786	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 1ST WORLD RESEARCH CONFERENCE ACROSS DISCIPLINES (WRCAD)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763572	2024-07-08	16:09:36.9091443	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BA 503 WEBINAR: DEALING THE CHALLENGES OF COVID 19: WAYS TO HANDLE PHYSICAL AND MENTAL HEALTH\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763574	2024-07-08	16:12:37.5527622	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING ON REENGINEERING TECHNICAL ASSISTANCE (TA) SYSTEM, PROCESS, AND MECHANISM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763577	2024-07-08	16:14:43.2622810	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RO4A WEBINAR ON CAPACITY BUILDING FOR CHAIRPERSON AND MEMBERS OF THE FORMAL INVESTIGATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763578	2024-07-08	16:16:36.0057923	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WEBINAR ON GOOVERNANCE AND MANAGEMENT OF COOPERATIVE UNION OF BATANGAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763580	2024-07-08	16:17:35.2214086	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WEBINAR ON GOVERNANCE AND MANAGEMENT OF COOPERATIVE UNION OF BATANGAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763581	2024-07-08	16:19:12.4159829	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3666\r\nEmployeeTrainingId: 0\r\nFromDate: October 06, 2021\r\nHours: 24\r\nNatureOfParticipation: SUPERVISION\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A CALABARZON\r\nStatus: \r\nToDate: October 08, 2021\r\nTrainingId: 15639\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763582	2024-07-08	16:19:12.4209664	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3666\r\nEmployeeTrainingId: 0\r\nFromDate: October 20, 2021\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: October 20, 2021\r\nTrainingId: 15640\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763583	2024-07-08	16:19:12.4259497	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3666\r\nEmployeeTrainingId: 0\r\nFromDate: September 23, 2021\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A CALABARZON \r\nStatus: \r\nToDate: September 23, 2021\r\nTrainingId: 15642\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763584	2024-07-08	16:19:12.4299364	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3666\r\nEmployeeTrainingId: 0\r\nFromDate: September 17, 2021\r\nHours: 32\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: BATANGAS STATE UNIVERSITY\r\nStatus: \r\nToDate: September 20, 2021\r\nTrainingId: 15644\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763585	2024-07-08	16:19:12.4349197	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3666\r\nEmployeeTrainingId: 0\r\nFromDate: August 17, 2021\r\nHours: 24\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A CALABARZON \r\nStatus: \r\nToDate: August 19, 2021\r\nTrainingId: 15054\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767304	2025-03-07	08:02:22.8587049	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3712\r\nRecognitionId: 0\r\nRecognitionName: 3RD PLACE BEST SHORT FILM - DISTRICT 2 TEACHERS' CONGRESS 2024\r\n	admin	Recognitions	1
763544	2024-07-08	15:57:06.8210143	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 4\r\nAddress2: BETZAIDA VIKKAGE\r\nBarangay: DUMANTAY\r\nBasicInformationId: 0\r\nBirthDate: April 10, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSSANA.BAGON@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSSANA\r\nFullName: ROSSANA P. BAGON\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7415817\r\nLastName: BAGON\r\nMaidenName: \r\nMiddleName: PEREZ\r\nMobileNumber: 09175050018\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 4\r\nPermanentAddress2: BETZAIDA VIKKAGE\r\nPermanentBarangay: DUMANTAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: CATLEYA\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: CATLEYA\r\nTIN: \r\nWeight: 75\r\nZipCode: 4200\r\n	admin	BasicInformation	1
763545	2024-07-08	15:57:06.8363312	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3667\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1984\r\nDateTo: 1989\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: PAHARANG ELEMENTARY SCHOOL \r\nYearGraduated: 1989\r\n	admin	EducationalBackgrounds	1
763546	2024-07-08	15:57:06.8363312	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3667\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1990\r\nDateTo: 1994\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: PAHARANG NATIONAL HIGH SCHOOL \r\nYearGraduated: 1994\r\n	admin	EducationalBackgrounds	1
763547	2024-07-08	15:57:06.8363312	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3667\r\nCourse: \r\nCourseId: 1307\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 1998\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: ST, BRIDGET COLLEGE\r\nYearGraduated: 1998\r\n	admin	EducationalBackgrounds	1
763548	2024-07-08	15:57:06.8363312	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3667\r\nCourse: \r\nCourseId: 1299\r\nCourseOrMajor: \r\nDateFrom: 2009\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: EDUCATION AND SUPERVISION \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS \r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
763549	2024-07-08	15:57:06.8363312	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3667\r\nBirthDate: December 18, 2023\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JESSIE ANDREI\r\nFullName: JESSIE ANDREI P BAGON\r\nGender: Female\r\nLastName: BAGON\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763550	2024-07-08	15:57:06.8373298	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3667\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: BARTOLOME\r\nFullName: BARTOLOME PEREZ PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: PEREZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
763551	2024-07-08	15:57:06.8373298	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3667\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JULIETA\r\nFullName: JULIETA ALARAS\r\nGender: Female\r\nLastName: LOPEZ\r\nMaidenName: \r\nMiddleName: ALARAS\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
763552	2024-07-08	15:57:06.8373298	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3667\r\nBirthDate: December 18, 2023\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JESSIE ANDREI\r\nFullName: JESSIE ANDREI P BAGON\r\nGender: Female\r\nLastName: BAGON\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763553	2024-07-08	15:57:06.8373298	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3667\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09985767442\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ANTHONY\r\nFullName: ANTHONY EBORA BAGON\r\nGender: Male\r\nLastName: BAGON\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: BUSINESSMAN \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
763554	2024-07-08	15:57:06.8373298	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3667\r\nBirthDate: April 11, 2012\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOHN ANDREW\r\nFullName: JOHN ANDREW P BAGON\r\nGender: Male\r\nLastName: BAGON\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767305	2025-03-07	08:02:22.8627109	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3712\r\nRecognitionId: 0\r\nRecognitionName: SECOND RUNNER UP JCPMES QUEEN OF HEARTS 2024\r\n	admin	Recognitions	1
763556	2024-07-08	15:57:06.8373298	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3667\r\nCompanyInstitution: SDO- BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: April 03, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 39,672.00\r\nPositionHeld: EDUCATION PROGRAM SPECIALIST II - ALS \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-\r\nStatus: Permanent\r\nToDate: July 08, 2024\r\n	admin	Experiences	1
763557	2024-07-08	15:57:06.8373298	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3667\r\nCompanyInstitution: ST. BRIDGET COLLEGE- COLLEGE DEPARTMENT \r\nExperienceId: 0\r\nFromDate: June 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 41,000.00\r\nPositionHeld: COLLEGE EDUCATION PROGRAM CHAIRPERSON \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: April 30, 2023\r\n	admin	Experiences	1
763558	2024-07-08	15:57:06.8373298	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3667\r\nCompanyInstitution: ST. BRIDGET COLLEGE- INTEGRATED BASIC EDUCATION DEPARTMENT \r\nExperienceId: 0\r\nFromDate: June 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 41,000.00\r\nPositionHeld: ELEMENTARY & JHS PRINCIPAL \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: May 31, 2022\r\n	admin	Experiences	1
763559	2024-07-08	15:57:06.8373298	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3667\r\nCompanyInstitution: ST. BRIDGET COLLEGE- ELEMENTARY DEPARTMENT\r\nExperienceId: 0\r\nFromDate: June 01, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 40,000.00\r\nPositionHeld: ELEMENTARY PRINCIPAL \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: May 31, 2016\r\n	admin	Experiences	1
763560	2024-07-08	15:57:06.8383298	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3667\r\nCompanyInstitution: ST. BRIDGET COLLEGE- ELEMENTARY DEPARTMENT\r\nExperienceId: 0\r\nFromDate: June 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 25,000.00\r\nPositionHeld: SUBJECT AREA COORDINATOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: May 31, 2013\r\n	admin	Experiences	1
763561	2024-07-08	15:57:06.8383298	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3667\r\nCompanyInstitution: ST. BRIDGET COLLEGE- ELEMENTARY DEPARTMENT\r\nExperienceId: 0\r\nFromDate: June 01, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 16,000.00\r\nPositionHeld: ELEMENTARY CLASSROOM TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: May 31, 2007\r\n	admin	Experiences	1
763562	2024-07-08	15:57:06.8383298	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3667\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
763565	2024-07-08	16:00:42.2991351	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ALS PROFESSIONAL LEARNING NETWORK ON ASSESSMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763567	2024-07-08	16:02:42.1795848	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: HIGHER ORDER THINKING SKILLS PROFESSIONAL LEARNING PACKAGES ( HOTS-PLPs) FOR ENGLISH, SCIENCE AND MATHEMATICS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763569	2024-07-08	16:06:33.2731994	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FILIPINO SIGN LANGUAGE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763570	2024-07-08	16:08:24.0852982	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL TRAINING ON TRAINERS ON CAPABILITY BUILDING ON ALTERNATIVE LEARNING SYSTEM ( ALS) ASSESSMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763571	2024-07-08	16:09:38.8509238	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ALS CONSULTATIVE CONFERENCE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763573	2024-07-08	16:11:49.2262646	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ADM TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763575	2024-07-08	16:12:53.3950923	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION EDUCATION DEVELOPMENT PLAN\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763576	2024-07-08	16:14:31.1543342	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: HIGHER ORDER THINKING SKILLS ( HOTS) AND SOLO FRAMEWORK ACROSS THE CURRICULUM FOR EDUCATION LEADER\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
767306	2025-03-07	08:02:22.8677183	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3712\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
763579	2024-07-08	16:16:57.9068077	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ALS SEMINAR- WORKSHOP ON BUILDING A POSITIVE AND STRENGTH- BASED INSTRUCTIONAL SUPERVISION & TRANSFORMATIONAL LEADERSHIP IN SCHOOLS THROUGH APPRECIATIVE INQUIRY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763591	2024-07-08	16:23:02.2122716	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3667\r\nEmployeeTrainingId: 0\r\nFromDate: January 29, 2024\r\nHours: 16\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 15641\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763592	2024-07-08	16:23:02.2162708	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3667\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 32\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: January 27, 2024\r\nTrainingId: 15643\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763593	2024-07-08	16:23:02.2212715	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3667\r\nEmployeeTrainingId: 0\r\nFromDate: January 11, 2024\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL  \r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: January 12, 2024\r\nTrainingId: 15580\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763594	2024-07-08	16:23:02.2257789	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3667\r\nEmployeeTrainingId: 0\r\nFromDate: December 04, 2023\r\nHours: 16\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: December 05, 2023\r\nTrainingId: 15638\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763595	2024-07-08	16:23:02.2307838	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3667\r\nEmployeeTrainingId: 0\r\nFromDate: November 06, 2023\r\nHours: 60\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPED REGION OFFICE \r\nStatus: \r\nToDate: November 10, 2023\r\nTrainingId: 15645\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763596	2024-07-08	16:23:02.2347847	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3667\r\nEmployeeTrainingId: 0\r\nFromDate: November 14, 2023\r\nHours: 32\r\nNatureOfParticipation: SUERVISORY \r\nSponsoringAgency: DEPED CENTRAL OFFICE \r\nStatus: \r\nToDate: November 17, 2023\r\nTrainingId: 15646\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763597	2024-07-08	16:23:02.2397854	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3667\r\nEmployeeTrainingId: 0\r\nFromDate: November 23, 2023\r\nHours: 16\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPED REGION OFFICE \r\nStatus: \r\nToDate: November 24, 2023\r\nTrainingId: 15647\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763598	2024-07-08	16:23:02.2437846	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3667\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15168\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763599	2024-07-08	16:23:02.2487851	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3667\r\nEmployeeTrainingId: 0\r\nFromDate: October 12, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: October 12, 2023\r\nTrainingId: 15649\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763600	2024-07-08	16:23:02.2537850	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3667\r\nEmployeeTrainingId: 0\r\nFromDate: September 25, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: September 26, 2023\r\nTrainingId: 15651\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763601	2024-07-08	16:23:02.2577852	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3667\r\nEmployeeTrainingId: 0\r\nFromDate: September 27, 2023\r\nHours: 32\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: September 29, 2023\r\nTrainingId: 15652\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763602	2024-07-08	16:23:02.2627855	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3667\r\nEmployeeTrainingId: 0\r\nFromDate: August 15, 2023\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: August 17, 2023\r\nTrainingId: 15655\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763603	2024-07-08	16:23:02.2667848	<Undetected>	Insert	BasicInformationId: \r\nCommunityServiceId: \r\nDateFrom: \r\nDateTo: \r\nNumberOfHours: \r\nOrganizationAddress: \r\nOrganizationName: \r\nStatus: \r\n	BasicInformationId: 3667\r\nCommunityServiceId: 0\r\nDateFrom: May 01, 2019\r\nDateTo: July 08, 2024\r\nNumberOfHours: 2\r\nOrganizationAddress: BATANGAS CITY \r\nOrganizationName: FAMILY AND LIFE MINISTRY ( MOST HOLY TRINITY PARISH)\r\nStatus: PRE CANA\r\n	admin	CommunityServices	1
763604	2024-07-08	16:23:02.2717852	<Undetected>	Insert	BasicInformationId: \r\nCommunityServiceId: \r\nDateFrom: \r\nDateTo: \r\nNumberOfHours: \r\nOrganizationAddress: \r\nOrganizationName: \r\nStatus: \r\n	BasicInformationId: 3667\r\nCommunityServiceId: 0\r\nDateFrom: June 01, 2003\r\nDateTo: July 08, 2024\r\nNumberOfHours: 1\r\nOrganizationAddress: COUPLES FOR CHRIST \r\nOrganizationName: COUPLES FOR CHRIST \r\nStatus: BIBLE SHARING/ COMMUNITY OUTREACH \r\n	admin	CommunityServices	1
763586	2024-07-08	16:19:12.4389063	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3666\r\nEmployeeTrainingId: 0\r\nFromDate: May 20, 2021\r\nHours: 4\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A CALABARZON\r\nStatus: \r\nToDate: May 20, 2021\r\nTrainingId: 15648\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763587	2024-07-08	16:19:12.4438896	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3666\r\nEmployeeTrainingId: 0\r\nFromDate: February 18, 2021\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: February 19, 2021\r\nTrainingId: 15650\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763588	2024-07-08	16:19:12.4478763	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3666\r\nEmployeeTrainingId: 0\r\nFromDate: February 09, 2021\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A CALABARZON\r\nStatus: \r\nToDate: February 09, 2021\r\nTrainingId: 15653\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763589	2024-07-08	16:19:12.4528596	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3666\r\nEmployeeTrainingId: 0\r\nFromDate: February 01, 2021\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: COOPERATIVE UNION OF BATANGAS\r\nStatus: \r\nToDate: February 04, 2021\r\nTrainingId: 15656\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763605	2024-07-08	16:23:02.2767852	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 4\r\nAddress2: BETZAIDA VIKKAGE\r\nBarangay: DUMANTAY\r\nBasicInformationId: 3667\r\nBirthDate: April 10, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSSANA.BAGON@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSSANA\r\nFullName: ROSSANA P. BAGON\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7415817\r\nLastName: BAGON\r\nMaidenName: \r\nMiddleName: PEREZ\r\nMobileNumber: 09175050018\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 4\r\nPermanentAddress2: BETZAIDA VIKKAGE\r\nPermanentBarangay: DUMANTAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: CATLEYA\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: CATLEYA\r\nTIN: \r\nWeight: 75\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 4\r\nAddress2: BETZAIDA VIKKAGE\r\nBarangay: DUMANTAY\r\nBasicInformationId: 3667\r\nBirthDate: April 10, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSSANA.BAGON@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSSANA\r\nFullName: ROSSANA P. BAGON\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7415817\r\nLastName: BAGON\r\nMaidenName: \r\nMiddleName: PEREZ\r\nMobileNumber: 09175050018\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 4\r\nPermanentAddress2: BETZAIDA VIKKAGE\r\nPermanentBarangay: DUMANTAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: CATLEYA\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: CATLEYA\r\nTIN: \r\nWeight: 75\r\nZipCode: 4200\r\n	admin	BasicInformation	1
763606	2024-07-08	16:23:02.2807847	<Undetected>	Update	BasicInformationId: 3667\r\nBirthDate: December 18, 2023\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3524\r\nExtensionName: \r\nFirstName: JESSIE ANDREI\r\nFullName: JESSIE ANDREI P BAGON\r\nGender: Female\r\nLastName: BAGON\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3667\r\nBirthDate: December 18, 2023\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3524\r\nExtensionName: \r\nFirstName: JESSIE ANDREI\r\nFullName: JESSIE ANDREI BAGON\r\nGender: Female\r\nLastName: BAGON\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763607	2024-07-08	16:23:02.2857848	<Undetected>	Update	BasicInformationId: 3667\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3525\r\nExtensionName: \r\nFirstName: BARTOLOME\r\nFullName: BARTOLOME PEREZ PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: PEREZ\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3667\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3525\r\nExtensionName: \r\nFirstName: BARTOLOME\r\nFullName: BARTOLOME PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: PEREZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
763608	2024-07-08	16:23:02.2907849	<Undetected>	Update	BasicInformationId: 3667\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3526\r\nExtensionName: \r\nFirstName: JULIETA\r\nFullName: JULIETA ALARAS\r\nGender: Female\r\nLastName: LOPEZ\r\nMaidenName: \r\nMiddleName: ALARAS\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3667\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3526\r\nExtensionName: \r\nFirstName: JULIETA\r\nFullName: JULIETA LOPEZ\r\nGender: Female\r\nLastName: LOPEZ\r\nMaidenName: \r\nMiddleName: ALARAS\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
763609	2024-07-08	16:23:02.2957846	<Undetected>	Update	BasicInformationId: 3667\r\nBirthDate: December 18, 2023\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3527\r\nExtensionName: \r\nFirstName: JESSIE ANDREI\r\nFullName: JESSIE ANDREI P BAGON\r\nGender: Female\r\nLastName: BAGON\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3667\r\nBirthDate: December 18, 2023\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3527\r\nExtensionName: \r\nFirstName: JESSIE ANDREI\r\nFullName: JESSIE ANDREI BAGON\r\nGender: Female\r\nLastName: BAGON\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763610	2024-07-08	16:23:02.2997851	<Undetected>	Update	BasicInformationId: 3667\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09985767442\r\nEmployeeRelativeId: 3528\r\nExtensionName: \r\nFirstName: ANTHONY\r\nFullName: ANTHONY EBORA BAGON\r\nGender: Male\r\nLastName: BAGON\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: BUSINESSMAN \r\nRelationship: Husband\r\n	BasicInformationId: 3667\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09985767442\r\nEmployeeRelativeId: 3528\r\nExtensionName: \r\nFirstName: ANTHONY\r\nFullName: ANTHONY BAGON\r\nGender: Male\r\nLastName: BAGON\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: BUSINESSMAN \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
763611	2024-07-08	16:23:02.3047854	<Undetected>	Update	BasicInformationId: 3667\r\nBirthDate: April 11, 2012\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3529\r\nExtensionName: \r\nFirstName: JOHN ANDREW\r\nFullName: JOHN ANDREW P BAGON\r\nGender: Male\r\nLastName: BAGON\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3667\r\nBirthDate: April 11, 2012\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3529\r\nExtensionName: \r\nFirstName: JOHN ANDREW\r\nFullName: JOHN ANDREW BAGON\r\nGender: Male\r\nLastName: BAGON\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763612	2024-07-08	16:23:02.3087851	<Undetected>	Update	BasicInformationId: 3667\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3464\r\n	BasicInformationId: 3667\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3464\r\n	admin	Questionnaires	1
763624	2024-07-08	16:25:11.0271386	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ALS SEMINAR- WORKSHOP FOCUSING ON THE LEARNER - CENTERED APPROACH IN TEACHING ENSCIMA IN ADULT EDUCATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763625	2024-07-08	16:27:41.4261023	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION SEMINAR- WORKSHOP ON BUILDING POSITIVE AND STRENGTH- BASED INSTRUCTIONAL SUPERVISIONS & TRANSFORMATIONAL LEADERSHIP IN SCHOOLS THROUGH APPRECIATIVE INQUIRY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763626	2024-07-08	16:29:58.2023502	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL TRAINING OF EDUCATION SPECIALIST II ON THE PROVISION OF TECHNICAL ASSISTANCE ON THE IMPLEMENTATION OF THE CONTEXTUALIZED MELCS- BASED SENIOR HIGH SCHOOL CURRICULUM FOR ALS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763618	2024-07-08	16:24:37.5299102	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3668\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2003\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 2003\r\n	admin	EducationalBackgrounds	1
763619	2024-07-08	16:24:37.5299102	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3668\r\nCourse: \r\nCourseId: 1299\r\nCourseOrMajor: \r\nDateFrom: 2015\r\nDateTo: 2019\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS \r\nYearGraduated: 2019\r\n	admin	EducationalBackgrounds	1
763620	2024-07-08	16:24:37.5299102	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3668\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARLO\r\nFullName: MARLO ESPILETA NOCHE\r\nGender: Male\r\nLastName: NOCHE\r\nMaidenName: \r\nMiddleName: ESPILETA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
763621	2024-07-08	16:24:37.5309063	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3668\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARLO\r\nFullName: MARLO ESPILETA NOCHE\r\nGender: Male\r\nLastName: NOCHE\r\nMaidenName: \r\nMiddleName: ESPILETA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
763622	2024-07-08	16:24:37.5309063	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3668\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LYDIA\r\nFullName: LYDIA KALAW SOLIS\r\nGender: Female\r\nLastName: SOLIS\r\nMaidenName: \r\nMiddleName: KALAW\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
763623	2024-07-08	16:24:37.5309063	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3668\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
763627	2024-07-08	16:30:52.3992536	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3667\r\nEmployeeTrainingId: 0\r\nFromDate: August 15, 2023\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: August 17, 2023\r\nTrainingId: 15657\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763628	2024-07-08	16:30:52.4042534	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3667\r\nEmployeeTrainingId: 0\r\nFromDate: August 11, 2023\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: August 11, 2023\r\nTrainingId: 15658\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763629	2024-07-08	16:30:52.4092546	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3667\r\nEmployeeTrainingId: 0\r\nFromDate: July 24, 2023\r\nHours: 60\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPED CENTRAL OFFICE \r\nStatus: \r\nToDate: July 28, 2023\r\nTrainingId: 15659\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763630	2024-07-08	16:30:52.4142548	<Undetected>	Delete	BasicInformationId: 3667\r\nEmployeeTrainingId: 8401\r\nFromDate: August 15, 2023\r\nHours: 32.00\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: August 17, 2023\r\nTrainingId: 15655\r\nTrainingPerformanceRate: 0\r\n	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	admin	EmployeeTrainings	1
763631	2024-07-09	08:17:47.6823455	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3666\r\nSkillId: 0\r\nSkillName: CREATIVE WRITING, SINGING, DIRECTING, COMPOSING POEMS\r\n	admin	Skills	1
763632	2024-07-09	08:17:47.6873287	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3666\r\nRecognitionId: 0\r\nRecognitionName: GAWAD KAWANI AWARDEE- SPARKLER AWARD\r\n	admin	Recognitions	1
763633	2024-07-09	08:17:47.6953021	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3666\r\nRecognitionId: 0\r\nRecognitionName: DIVISION OUTSTANDING PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\n	admin	Recognitions	1
763634	2024-07-09	08:17:47.6992886	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3666\r\nRecognitionId: 0\r\nRecognitionName: REGIONAL OUTSTANDING PUBLIC SCHOOLS DISTRICT SUPERVISOR- FINALIST FOR 2 YEARS- 2015 AND 2016\r\n	admin	Recognitions	1
763635	2024-07-09	08:17:47.7032753	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3666\r\nRecognitionId: 0\r\nRecognitionName: DIVISION OUTSTANDING PUBLIC SCHOOLS DISTRICT SUPERVISOR FOR 2 YEARS\r\n	admin	Recognitions	1
763636	2024-07-09	08:17:47.7082586	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3666\r\nRecognitionId: 0\r\nRecognitionName: PHIL. NORMAL UNIVERSITY OUTSTANDING ALUMNUS BATANGAS CITY CHAPTER\r\n	admin	Recognitions	1
763637	2024-07-09	08:17:47.7132420	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3666\r\nRecognitionId: 0\r\nRecognitionName: OUTSTANDING SCHOOL HEAD\r\n	admin	Recognitions	1
763638	2024-07-09	08:17:47.7172286	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3666\r\nRecognitionId: 0\r\nRecognitionName: OUTSTANDING TEACHER \r\n	admin	Recognitions	1
763639	2024-07-09	08:17:47.7222120	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3666\r\nOrganizationId: 0\r\nOrganizationName: PHIL.ASSOC. FOR GRADUATE EDUC.PAGE\r\n	admin	Organizations	1
763640	2024-07-09	08:17:47.7271953	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3666\r\nOrganizationId: 0\r\nOrganizationName: R4A PUBLIC SCHOOLS DISTRICT SUPERVISORS ASSOCIATION\r\n	admin	Organizations	1
763641	2024-07-09	08:17:47.7311820	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3666\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY PUBLIC SCHOOLS DISTRICT SUPERVISORS ASSOCIATION\r\n	admin	Organizations	1
763642	2024-07-09	08:17:47.7361653	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3666\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY PUBLIC SCHOOL TEACHERS ABD EMPLOYEES ASSOCIATION\r\n	admin	Organizations	1
763643	2024-07-09	08:17:47.7411486	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3666\r\nOrganizationId: 0\r\nOrganizationName: ASCDENDES ASIA INTERNATIONAL RESEARCHERS CLUB\r\n	admin	Organizations	1
763644	2024-07-09	08:17:47.7451353	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3666\r\nCharacterReferenceId: 0\r\nCompanyAddress: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 702-2094\r\nExtensionName: \r\nFirstName: HERMOGENES\r\nLastName: PANGANIBAN\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763645	2024-07-09	08:17:47.7501186	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3666\r\nCharacterReferenceId: 0\r\nCompanyAddress: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09171892566\r\nExtensionName: \r\nFirstName: SACORO\r\nLastName: COMIA\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763646	2024-07-09	08:17:47.7541054	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3666\r\nCharacterReferenceId: 0\r\nCompanyAddress: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: ANGELISA\r\nLastName: AMOTO\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763664	2024-07-09	08:36:28.0773933	<Undetected>	Update	BasicInformationId: 0\r\nCustomEmployeeGroupId: 0\r\nDisplayName: \r\nEmployeeGroupId: 1\r\nId: 35\r\nPassword: ***\r\nUsername: XNZWCZ7F\r\n	BasicInformationId: 0\r\nCustomEmployeeGroupId: 0\r\nDisplayName: MAYBELLE P. LONTOC\r\nEmployeeGroupId: 1\r\nId: 35\r\nPassword: ***\r\nUsername: XNZWCZ7F\r\n	admin	Users	1
763665	2024-07-09	08:36:38.0055665	<Undetected>	Update	BasicInformationId: 0\r\nCustomEmployeeGroupId: 0\r\nDisplayName: \r\nEmployeeGroupId: 1\r\nId: 36\r\nPassword: ***\r\nUsername: AC6BKYDG\r\n	BasicInformationId: 0\r\nCustomEmployeeGroupId: 0\r\nDisplayName: CLIFF B. ATIENZA\r\nEmployeeGroupId: 1\r\nId: 36\r\nPassword: ***\r\nUsername: AC6BKYDG\r\n	admin	Users	1
763647	2024-07-09	08:17:47.7590885	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BOLBOK\r\nBasicInformationId: 3666\r\nBirthDate: August 11, 1970\r\nBirthPlace: ISLA VERDE, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lea.aquino@deped.gov.ph\r\nExtensionName: \r\nFirstName: LEA\r\nFullName: LEA C. AQUINO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: AQUINO\r\nMaidenName: \r\nMiddleName: CALAHATI\r\nMobileNumber: 09171428944\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BOLBOK\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: MONTALBO ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: MONTALBO ROAD\r\nTIN: \r\nWeight: 63\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BOLBOK\r\nBasicInformationId: 3666\r\nBirthDate: August 11, 1970\r\nBirthPlace: ISLA VERDE, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lea.aquino@deped.gov.ph\r\nExtensionName: \r\nFirstName: LEA\r\nFullName: LEA C. AQUINO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: 1490-0090-0837\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: AQUINO\r\nMaidenName: \r\nMiddleName: CALAHATI\r\nMobileNumber: 09171428944\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BOLBOK\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: MONTALBO ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000022148-0\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: MONTALBO ROAD\r\nTIN: 150-051-355-0000\r\nWeight: 63\r\nZipCode: 4200\r\n	admin	BasicInformation	1
763648	2024-07-09	08:17:47.7630752	<Undetected>	Update	BasicInformationId: 3666\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3463\r\n	BasicInformationId: 3666\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3463\r\n	admin	Questionnaires	1
763649	2024-07-09	08:27:36.7751392	<Undetected>	Insert	ApplicationStatus: \r\nApproverBasicInformationId: \r\nBasicInformationId: \r\nDateApproved: \r\nDateCreated: \r\nDateHired: \r\nEffectivityDate: \r\nEmploymentStatusId: \r\nEncoderBasicInformationId: \r\nFromStep: \r\nJobVacancyId: \r\nNonPlantillaRecordId: \r\nPersonnelActionMemoId: \r\nPlantillaRecordId: \r\nPositionId: \r\nPurposeOfMovement: \r\nRateTypeId: \r\nRemarks: \r\nSalaryRate: \r\nStatus: \r\nToStep: \r\nValue: \r\n	ApplicationStatus: Pending\r\nApproverBasicInformationId: 0\r\nBasicInformationId: 3634\r\nDateApproved: January 01, 0001\r\nDateCreated: July 09, 2024\r\nDateHired: January 01, 0001\r\nEffectivityDate: January 01, 0001\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nFromStep: 0\r\nJobVacancyId: 382\r\nNonPlantillaRecordId: 0\r\nPersonnelActionMemoId: 0\r\nPlantillaRecordId: 0\r\nPositionId: 2004\r\nPurposeOfMovement: New Employee\r\nRateTypeId: 2\r\nRemarks: \r\nSalaryRate: 144408.00\r\nStatus: Pending\r\nToStep: 1\r\nValue: 0\r\n	admin	PersonnelActionMemos	1
763650	2024-07-09	08:27:25.9234240	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: TECHNICAL DRAFTING \r\nLevel: Vocational\r\n	admin	Courses	1
763651	2024-07-09	08:29:07.1800659	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BSIE DRAFTING\r\nLevel: College\r\n	admin	Courses	1
763652	2024-07-09	08:30:14.6625388	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER IN PHYSICAL EDUCATION AND SPORTS\r\nLevel: Master's\r\n	admin	Courses	1
763653	2024-07-09	08:34:22.0398656	<Undetected>	Insert	BasicInformationId: \r\nCustomEmployeeGroupId: \r\nDisplayName: \r\nEmployeeGroupId: \r\nId: \r\nPassword: \r\nUsername: \r\n	BasicInformationId: 0\r\nCustomEmployeeGroupId: 0\r\nDisplayName: \r\nEmployeeGroupId: 1\r\nId: 0\r\nPassword: ***\r\nUsername: 9NCDFD3E\r\n	admin	Users	1
763654	2024-07-09	08:34:22.1451082	<Undetected>	Insert	BasicInformationId: \r\nCustomEmployeeGroupId: \r\nDisplayName: \r\nEmployeeGroupId: \r\nId: \r\nPassword: \r\nUsername: \r\n	BasicInformationId: 0\r\nCustomEmployeeGroupId: 0\r\nDisplayName: \r\nEmployeeGroupId: 1\r\nId: 0\r\nPassword: ***\r\nUsername: 7MJNMMX3\r\n	admin	Users	1
763655	2024-07-09	08:34:22.1591009	<Undetected>	Insert	BasicInformationId: \r\nCustomEmployeeGroupId: \r\nDisplayName: \r\nEmployeeGroupId: \r\nId: \r\nPassword: \r\nUsername: \r\n	BasicInformationId: 0\r\nCustomEmployeeGroupId: 0\r\nDisplayName: \r\nEmployeeGroupId: 1\r\nId: 0\r\nPassword: ***\r\nUsername: KBQ1UL34\r\n	admin	Users	1
763656	2024-07-09	08:35:12.9353730	<Undetected>	Update	BasicInformationId: 0\r\nCustomEmployeeGroupId: 0\r\nDisplayName: \r\nEmployeeGroupId: 1\r\nId: 32\r\nPassword: ***\r\nUsername: 9NCDFD3E\r\n	BasicInformationId: 0\r\nCustomEmployeeGroupId: 0\r\nDisplayName: Maybelle Lontoc\r\nEmployeeGroupId: 1\r\nId: 32\r\nPassword: ***\r\nUsername: 9NCDFD3E\r\n	admin	Users	1
763657	2024-07-09	08:35:37.5013407	<Undetected>	Update	BasicInformationId: 0\r\nCustomEmployeeGroupId: 0\r\nDisplayName: \r\nEmployeeGroupId: 1\r\nId: 34\r\nPassword: ***\r\nUsername: KBQ1UL34\r\n	BasicInformationId: 0\r\nCustomEmployeeGroupId: 0\r\nDisplayName: CLIFF B. ATIENZA\r\nEmployeeGroupId: 1\r\nId: 34\r\nPassword: ***\r\nUsername: KBQ1UL34\r\n	admin	Users	1
763658	2024-07-09	08:35:48.4367272	<Undetected>	Update	BasicInformationId: 0\r\nCustomEmployeeGroupId: 0\r\nDisplayName: Maybelle Lontoc\r\nEmployeeGroupId: 1\r\nId: 32\r\nPassword: ***\r\nUsername: 9NCDFD3E\r\n	BasicInformationId: 0\r\nCustomEmployeeGroupId: 0\r\nDisplayName: Maybelle P. Lontoc\r\nEmployeeGroupId: 1\r\nId: 32\r\nPassword: ***\r\nUsername: 9NCDFD3E\r\n	admin	Users	1
763659	2024-07-09	08:35:56.9059045	<Undetected>	Delete	BasicInformationId: 0\r\nCustomEmployeeGroupId: 0\r\nDisplayName: \r\nEmployeeGroupId: 1\r\nId: 33\r\nPassword: ***\r\nUsername: 7MJNMMX3\r\n	BasicInformationId: \r\nCustomEmployeeGroupId: \r\nDisplayName: \r\nEmployeeGroupId: \r\nId: \r\nPassword: \r\nUsername: \r\n	admin	Users	1
763660	2024-07-09	08:35:56.9069064	<Undetected>	Delete	BasicInformationId: 0\r\nCustomEmployeeGroupId: 0\r\nDisplayName: CLIFF B. ATIENZA\r\nEmployeeGroupId: 1\r\nId: 34\r\nPassword: ***\r\nUsername: KBQ1UL34\r\n	BasicInformationId: \r\nCustomEmployeeGroupId: \r\nDisplayName: \r\nEmployeeGroupId: \r\nId: \r\nPassword: \r\nUsername: \r\n	admin	Users	1
763661	2024-07-09	08:35:56.9069064	<Undetected>	Delete	BasicInformationId: 0\r\nCustomEmployeeGroupId: 0\r\nDisplayName: Maybelle P. Lontoc\r\nEmployeeGroupId: 1\r\nId: 32\r\nPassword: ***\r\nUsername: 9NCDFD3E\r\n	BasicInformationId: \r\nCustomEmployeeGroupId: \r\nDisplayName: \r\nEmployeeGroupId: \r\nId: \r\nPassword: \r\nUsername: \r\n	admin	Users	1
763662	2024-07-09	08:36:14.5577995	<Undetected>	Insert	BasicInformationId: \r\nCustomEmployeeGroupId: \r\nDisplayName: \r\nEmployeeGroupId: \r\nId: \r\nPassword: \r\nUsername: \r\n	BasicInformationId: 0\r\nCustomEmployeeGroupId: 0\r\nDisplayName: \r\nEmployeeGroupId: 1\r\nId: 0\r\nPassword: ***\r\nUsername: XNZWCZ7F\r\n	admin	Users	1
763663	2024-07-09	08:36:14.5669591	<Undetected>	Insert	BasicInformationId: \r\nCustomEmployeeGroupId: \r\nDisplayName: \r\nEmployeeGroupId: \r\nId: \r\nPassword: \r\nUsername: \r\n	BasicInformationId: 0\r\nCustomEmployeeGroupId: 0\r\nDisplayName: \r\nEmployeeGroupId: 1\r\nId: 0\r\nPassword: ***\r\nUsername: AC6BKYDG\r\n	admin	Users	1
763668	2024-07-09	08:42:07.8027919	<Undetected>	Update	BasicInformationId: 1\r\nCustomEmployeeGroupId: 0\r\nDisplayName: Administrator\r\nEmployeeGroupId: 4\r\nId: 1\r\nPassword: ***\r\nUsername: admin\r\n	BasicInformationId: 1\r\nCustomEmployeeGroupId: 12\r\nDisplayName: Administrator\r\nEmployeeGroupId: 4\r\nId: 1\r\nPassword: ***\r\nUsername: admin\r\n	admin	Users	1
763669	2024-07-09	08:43:03.7229454	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3668\r\nDateOfExamination: October 26, 1986\r\nDateOfRelease: September 30, 2018\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: October 26, 1986\r\nLevelOfEligibility: First Level (Subprofessional)\r\nLicenseNumber: 54825\r\nPlaceOfExamination: MANILA\r\nRating: 74.9%\r\nTitle: PHILIPPINE BOARD EXAMINATION FOR TEACHER (PBET)\r\n	admin	Eligibilities	1
763670	2024-07-09	08:43:03.7279285	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 78,881.00\r\nPositionHeld:  EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: July 09, 2024\r\n	admin	Experiences	1
763671	2024-07-09	08:43:03.7319151	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: June 15, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 74,333.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
763672	2024-07-09	08:43:03.7368985	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 73,214.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-4\r\nStatus: Permanent\r\nToDate: June 14, 2022\r\n	admin	Experiences	1
763673	2024-07-09	08:43:03.7408852	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 71,666.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-4\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
763674	2024-07-09	08:43:03.7458684	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 70,118.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-4\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
763675	2024-07-09	08:43:03.7488585	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: June 15, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 68,570.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-3\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
763676	2024-07-09	08:43:03.7538418	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 67,469.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-3\r\nStatus: Permanent\r\nToDate: June 14, 2019\r\n	admin	Experiences	1
763677	2024-07-09	08:43:03.7588254	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO MALIGAYA\r\nBarangay: CUTA\r\nBasicInformationId: 3668\r\nBirthDate: September 30, 1964\r\nBirthPlace: LIBJO, BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANAGS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marieta.perez002@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIETA\r\nFullName: MARIETA N. PEREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: NOCHE\r\nMobileNumber: 09985553861\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO MALIGAYA\r\nPermanentBarangay: CUTA\r\nPermanentCity: BATANAGS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 69\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO MALIGAYA\r\nBarangay: CUTA\r\nBasicInformationId: 3668\r\nBirthDate: September 30, 1964\r\nBirthPlace: LIBJO, BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANAGS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marieta.perez002@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIETA\r\nFullName: MARIETA N. PEREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: NOCHE\r\nMobileNumber: 09985553861\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO MALIGAYA\r\nPermanentBarangay: CUTA\r\nPermanentCity: BATANAGS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 69\r\nZipCode: 4200\r\n	admin	BasicInformation	1
763678	2024-07-09	08:43:03.7638086	<Undetected>	Update	BasicInformationId: 3668\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3530\r\nExtensionName: \r\nFirstName: MARLO\r\nFullName: MARLO ESPILETA NOCHE\r\nGender: Male\r\nLastName: NOCHE\r\nMaidenName: \r\nMiddleName: ESPILETA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3668\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3530\r\nExtensionName: \r\nFirstName: MARLO\r\nFullName: MARLO NOCHE\r\nGender: Male\r\nLastName: NOCHE\r\nMaidenName: \r\nMiddleName: ESPILETA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
763679	2024-07-09	08:43:03.7677952	<Undetected>	Update	BasicInformationId: 3668\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3531\r\nExtensionName: \r\nFirstName: MARLO\r\nFullName: MARLO ESPILETA NOCHE\r\nGender: Male\r\nLastName: NOCHE\r\nMaidenName: \r\nMiddleName: ESPILETA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3668\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3531\r\nExtensionName: \r\nFirstName: MARLO\r\nFullName: MARLO NOCHE\r\nGender: Male\r\nLastName: NOCHE\r\nMaidenName: \r\nMiddleName: ESPILETA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
763680	2024-07-09	08:43:03.7717817	<Undetected>	Update	BasicInformationId: 3668\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3532\r\nExtensionName: \r\nFirstName: LYDIA\r\nFullName: LYDIA KALAW SOLIS\r\nGender: Female\r\nLastName: SOLIS\r\nMaidenName: \r\nMiddleName: KALAW\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3668\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3532\r\nExtensionName: \r\nFirstName: LYDIA\r\nFullName: LYDIA SOLIS\r\nGender: Female\r\nLastName: SOLIS\r\nMaidenName: \r\nMiddleName: KALAW\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
763681	2024-07-09	08:43:03.7757686	<Undetected>	Update	BasicInformationId: 3668\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3465\r\n	BasicInformationId: 3668\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3465\r\n	admin	Questionnaires	1
763682	2024-07-09	08:44:47.7655206	<Undetected>	Insert	BasicInformationId: \r\nCustomEmployeeGroupId: \r\nDisplayName: \r\nEmployeeGroupId: \r\nId: \r\nPassword: \r\nUsername: \r\n	BasicInformationId: 0\r\nCustomEmployeeGroupId: 0\r\nDisplayName: \r\nEmployeeGroupId: 1\r\nId: 0\r\nPassword: ***\r\nUsername: 6YQG6Y8D\r\n	admin	Users	1
763705	2024-07-09	08:45:33.6861036	<Undetected>	Update	BasicInformationId: 0\r\nCustomEmployeeGroupId: 0\r\nDisplayName: \r\nEmployeeGroupId: 1\r\nId: 37\r\nPassword: ***\r\nUsername: 6YQG6Y8D\r\n	BasicInformationId: 0\r\nCustomEmployeeGroupId: 0\r\nDisplayName: MAYBELLE P. LONTOC\r\nEmployeeGroupId: 1\r\nId: 37\r\nPassword: ***\r\nUsername: 6YQG6Y8D\r\n	admin	Users	1
763718	2024-07-09	08:54:22.5621188	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 60,491.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-3\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
763719	2024-07-09	08:54:22.5661054	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 54,234.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-3\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
763720	2024-07-09	08:54:22.5710887	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: June 15, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 48,625.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
763721	2024-07-09	08:54:22.5750756	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 48,032.00\r\nPositionHeld:  EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: June 14, 2016\r\n	admin	Experiences	1
763722	2024-07-09	08:54:22.5790621	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: June 15, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 43,121.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
763723	2024-07-09	08:54:22.5830487	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 06, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 42,652.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: June 14, 2013\r\n	admin	Experiences	1
763724	2024-07-09	08:54:22.5870354	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 06, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 37,812.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
763683	2024-07-09	08:44:46.2251284	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: CONDE LABAC\r\nBasicInformationId: 0\r\nBirthDate: November 13, 1964\r\nBirthPlace: CONDE LABAC, BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: nicolas.asi@deped.gov.ph\r\nExtensionName: \r\nFirstName: NICOLAS\r\nFullName: NICOLAS A. ASI\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.66\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: ASI\r\nMobileNumber: 09776888076\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: CONDE LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 3\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 3\r\nTIN: \r\nWeight: 68\r\nZipCode: 4200\r\n	admin	BasicInformation	1
763684	2024-07-09	08:44:46.2681271	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: CERTIFICATE\r\nBasicInformationId: 3669\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1971\r\nDateTo: 1977\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: CONDE LABAC ELEMENTARY SCHOOL\r\nYearGraduated: 1977\r\n	admin	EducationalBackgrounds	1
763685	2024-07-09	08:44:46.2681271	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: OUTSTANDING\r\nBasicInformationId: 3669\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1977\r\nDateTo: 1981\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: CONDE LABAC BARANGAY HIGH SCHOOL\r\nYearGraduated: 1981\r\n	admin	EducationalBackgrounds	1
763686	2024-07-09	08:44:46.2681271	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: CERTIFICATE\r\nBasicInformationId: 3669\r\nCourse: \r\nCourseId: 1311\r\nCourseOrMajor: \r\nDateFrom: 1981\r\nDateTo: 1983\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Vocational Graduate\r\nMajor: \r\nSchoolorUniversity: PANLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY\r\nYearGraduated: 1983\r\n	admin	EducationalBackgrounds	1
763687	2024-07-09	08:44:46.2681271	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: CERTIFICATE\r\nBasicInformationId: 3669\r\nCourse: \r\nCourseId: 1312\r\nCourseOrMajor: \r\nDateFrom: 1985\r\nDateTo: 1987\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY\r\nYearGraduated: 1987\r\n	admin	EducationalBackgrounds	1
763688	2024-07-09	08:44:46.2681271	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: CERTIFICATE\r\nBasicInformationId: 3669\r\nCourse: \r\nCourseId: 1313\r\nCourseOrMajor: \r\nDateFrom: 2000\r\nDateTo: 2003\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: PAMANTAASAAN NG LUNGSOD NG\r\nYearGraduated: 2003\r\n	admin	EducationalBackgrounds	1
763689	2024-07-09	08:44:46.2681271	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3669\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 04307022094\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LIGAYA\r\nFullName: LIGAYA CANTOS\r\nGender: Female\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: TEACHER\r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
763690	2024-07-09	08:44:46.2681271	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3669\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ANASTACIO\r\nFullName: ANASTACIO SERVAN ASI\r\nGender: Male\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: SERVAN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
763691	2024-07-09	08:44:46.2681271	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3669\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MAMERTA\r\nFullName: MAMERTA BAYER ASI\r\nGender: Female\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: BAYER\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
763692	2024-07-09	08:44:46.2691231	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3669\r\nBirthDate: March 02, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SHANLEY NICOLE\r\nFullName: SHANLEY NICOLE C ASI\r\nGender: Female\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: C\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763704	2024-07-09	08:44:46.2701197	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3669\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
763693	2024-07-09	08:44:46.2691231	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3669\r\nDateOfExamination: May 30, 1993\r\nDateOfRelease: November 13, 2023\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: May 30, 1993\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 72.7%\r\nTitle: PROFESSIONAL BOARD EXAM FOR TEACHER\r\n	admin	Eligibilities	1
763694	2024-07-09	08:44:46.2691231	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 75,881.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-5\r\nStatus: Permanent\r\nToDate: July 09, 2024\r\n	admin	Experiences	1
763695	2024-07-09	08:44:46.2691231	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 74,333.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
763696	2024-07-09	08:44:46.2691231	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: November 11, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 72,785.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
763697	2024-07-09	08:44:46.2691231	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 71,666.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: November 10, 2021\r\n	admin	Experiences	1
763698	2024-07-09	08:44:46.2691231	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 70,118.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
763699	2024-07-09	08:44:46.2691231	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 68,570.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
763700	2024-07-09	08:44:46.2701197	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 60,491.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
763701	2024-07-09	08:44:46.2701197	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 54,234.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
763702	2024-07-09	08:44:46.2701197	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 48,625.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
763703	2024-07-09	08:44:46.2701197	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: November 11, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 45,539.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
767643	2025-03-07	14:04:53.0281451	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3717\r\nOrganizationId: 0\r\nOrganizationName: PUBLIC SECONDARY SCHOOL TEACHER'S ASSOCIATION - MEMBER\r\n	admin	Organizations	1
763706	2024-07-09	08:53:46.3597791	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: November 12, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 43,121.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: November 10, 2015\r\n	admin	Experiences	1
763707	2024-07-09	08:53:46.3657585	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 42,652.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: November 11, 2012\r\n	admin	Experiences	1
763708	2024-07-09	08:53:46.3707420	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 37,812.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
763709	2024-07-09	08:53:46.3757255	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 32,973.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
763710	2024-07-09	08:53:46.3807091	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: November 11, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 28,134.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
763711	2024-07-09	08:53:46.3856932	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY EDUCATION \r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 19,906.00\r\nPositionHeld: ELEMENTARY HEAD TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-\r\nStatus: Permanent\r\nToDate: November 10, 2009\r\n	admin	Experiences	1
763712	2024-07-09	08:53:46.3906762	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: False\r\nMonthlySalary: 0.00\r\nPositionHeld: ELEMENTARY HEAD TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
763713	2024-07-09	08:53:46.3956583	<Undetected>	Update	BasicInformationId: 3669\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 04307022094\r\nEmployeeRelativeId: 3533\r\nExtensionName: \r\nFirstName: LIGAYA\r\nFullName: LIGAYA CANTOS\r\nGender: Female\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: TEACHER\r\nRelationship: Wife\r\n	BasicInformationId: 3669\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 04307022094\r\nEmployeeRelativeId: 3533\r\nExtensionName: \r\nFirstName: LIGAYA\r\nFullName: LIGAYA ASI\r\nGender: Female\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: TEACHER\r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
763714	2024-07-09	08:53:46.4006431	<Undetected>	Update	BasicInformationId: 3669\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3534\r\nExtensionName: \r\nFirstName: ANASTACIO\r\nFullName: ANASTACIO SERVAN ASI\r\nGender: Male\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: SERVAN\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3669\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3534\r\nExtensionName: \r\nFirstName: ANASTACIO\r\nFullName: ANASTACIO ASI\r\nGender: Male\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: SERVAN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
763715	2024-07-09	08:53:46.4056263	<Undetected>	Update	BasicInformationId: 3669\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3535\r\nExtensionName: \r\nFirstName: MAMERTA\r\nFullName: MAMERTA BAYER ASI\r\nGender: Female\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: BAYER\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3669\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3535\r\nExtensionName: \r\nFirstName: MAMERTA\r\nFullName: MAMERTA ASI\r\nGender: Female\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: BAYER\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
763716	2024-07-09	08:53:46.4106094	<Undetected>	Update	BasicInformationId: 3669\r\nBirthDate: March 02, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3536\r\nExtensionName: \r\nFirstName: SHANLEY NICOLE\r\nFullName: SHANLEY NICOLE C ASI\r\nGender: Female\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: C\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3669\r\nBirthDate: March 02, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3536\r\nExtensionName: \r\nFirstName: SHANLEY NICOLE\r\nFullName: SHANLEY NICOLE ASI\r\nGender: Female\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: C\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763717	2024-07-09	08:53:46.4155930	<Undetected>	Update	BasicInformationId: 3669\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3466\r\n	BasicInformationId: 3669\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3466\r\n	admin	Questionnaires	1
763725	2024-07-09	08:54:22.5920188	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: May 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 32,973.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
763726	2024-07-09	08:54:22.5960053	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: June 15, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 28,134.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
763727	2024-07-09	08:54:46.6590087	<Undetected>	Delete	BasicInformationId: 0\r\nCustomEmployeeGroupId: 0\r\nDisplayName: MAYBELLE P. LONTOC\r\nEmployeeGroupId: 1\r\nId: 37\r\nPassword: ***\r\nUsername: 6YQG6Y8D\r\n	BasicInformationId: \r\nCustomEmployeeGroupId: \r\nDisplayName: \r\nEmployeeGroupId: \r\nId: \r\nPassword: \r\nUsername: \r\n	admin	Users	1
763728	2024-07-09	08:55:19.6013712	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3667\r\nOrganizationId: 0\r\nOrganizationName: PHILIPPINE ASSOCIATION FOR TEACHER EDUCATION \r\n	admin	Organizations	1
763729	2024-07-09	08:55:19.6103710	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3667\r\nCharacterReferenceId: 0\r\nCompanyAddress: BRGY. CUTA BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09985553861\r\nExtensionName: \r\nFirstName: MARIETA \r\nLastName: PEREZ \r\nMiddleName: N\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763730	2024-07-09	08:55:19.6143707	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3667\r\nCharacterReferenceId: 0\r\nCompanyAddress: BETZAIDA VILLAGE, DUMANTAY BATS. CITY \r\nCompanyName: \r\nContactNumber: 09209002085\r\nExtensionName: \r\nFirstName: GENERIEGO \r\nLastName: JAVIER \r\nMiddleName: O\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763731	2024-07-09	08:55:19.6193705	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3667\r\nCharacterReferenceId: 0\r\nCompanyAddress: 09776888076\r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: NICOLAS \r\nLastName: ASI \r\nMiddleName: O\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763732	2024-07-09	08:55:19.6243699	<Undetected>	Update	BasicInformationId: 3667\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3464\r\n	BasicInformationId: 3667\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: \r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3464\r\n	admin	Questionnaires	1
763733	2024-07-09	08:59:27.2661103	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 4\r\nAddress2: BETZAIDA VIKKAGE\r\nBarangay: DUMANTAY\r\nBasicInformationId: 3667\r\nBirthDate: April 10, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSSANA.BAGON@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSSANA\r\nFullName: ROSSANA P. BAGON\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7415817\r\nLastName: BAGON\r\nMaidenName: \r\nMiddleName: PEREZ\r\nMobileNumber: 09175050018\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 4\r\nPermanentAddress2: BETZAIDA VIKKAGE\r\nPermanentBarangay: DUMANTAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: CATLEYA\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: CATLEYA\r\nTIN: \r\nWeight: 75\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 4\r\nAddress2: BETZAIDA VIKKAGE\r\nBarangay: DUMANTAY\r\nBasicInformationId: 3667\r\nBirthDate: April 10, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSSANA.BAGON@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSSANA\r\nFullName: ROSSANA P. BAGON\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006291357\r\nHDMF: 1490-0078-3419\r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7415817\r\nLastName: BAGON\r\nMaidenName: \r\nMiddleName: PEREZ\r\nMobileNumber: 09175050018\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 4\r\nPermanentAddress2: BETZAIDA VIKKAGE\r\nPermanentBarangay: DUMANTAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: CATLEYA\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050082014-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3205965-8\r\nStreetName: CATLEYA\r\nTIN: 913-869-034-0000\r\nWeight: 75\r\nZipCode: 4200\r\n	admin	BasicInformation	1
763734	2024-07-09	08:59:27.2711104	<Undetected>	Update	BasicInformationId: 3667\r\nCharacterReferenceId: 6714\r\nCompanyAddress: 09776888076\r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: NICOLAS \r\nLastName: ASI \r\nMiddleName: O\r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3667\r\nCharacterReferenceId: 6714\r\nCompanyAddress: CONDE LABAC \r\nCompanyName: \r\nContactNumber: 09776888076\r\nExtensionName: \r\nFirstName: NICOLAS \r\nLastName: ASI \r\nMiddleName: O\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763735	2024-07-09	08:59:42.9703777	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 4\r\nAddress2: BETZAIDA VIKKAGE\r\nBarangay: DUMANTAY\r\nBasicInformationId: 3667\r\nBirthDate: April 10, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSSANA.BAGON@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSSANA\r\nFullName: ROSSANA P. BAGON\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006291357\r\nHDMF: 1490-0078-3419\r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7415817\r\nLastName: BAGON\r\nMaidenName: \r\nMiddleName: PEREZ\r\nMobileNumber: 09175050018\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 4\r\nPermanentAddress2: BETZAIDA VIKKAGE\r\nPermanentBarangay: DUMANTAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: CATLEYA\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050082014-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3205965-8\r\nStreetName: CATLEYA\r\nTIN: 913-869-034-0000\r\nWeight: 75\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 4\r\nAddress2: BETZAIDA VIKKAGE\r\nBarangay: DUMANTAY\r\nBasicInformationId: 3667\r\nBirthDate: April 10, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSSANA.BAGON@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSSANA\r\nFullName: ROSSANA P. BAGON\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006291357\r\nHDMF: 1490-0078-3419\r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7415817\r\nLastName: BAGON\r\nMaidenName: \r\nMiddleName: PEREZ\r\nMobileNumber: 09175050018\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 4\r\nPermanentAddress2: BETZAIDA VIKKAGE\r\nPermanentBarangay: DUMANTAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: CATLEYA\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050082014-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: 04-3205965-8\r\nStreetName: CATLEYA\r\nTIN: 913-869-034-0000\r\nWeight: 75\r\nZipCode: 4200\r\n	admin	BasicInformation	1
763736	2024-07-09	09:03:31.1805917	<Undetected>	Update	ApplicationStatus: Pending\r\nApproverBasicInformationId: 0\r\nBasicInformationId: 3634\r\nDateApproved: January 01, 0001\r\nDateCreated: July 09, 2024\r\nDateHired: January 01, 0001\r\nEffectivityDate: January 01, 0001\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nFromStep: 0\r\nJobVacancyId: 382\r\nNonPlantillaRecordId: 0\r\nPersonnelActionMemoId: 2283\r\nPlantillaRecordId: 0\r\nPositionId: 2004\r\nPurposeOfMovement: New Employee\r\nRateTypeId: 2\r\nRemarks: \r\nSalaryRate: 144408.00\r\nStatus: Pending\r\nToStep: 1\r\nValue: 0\r\n	ApplicationStatus: \r\nApproverBasicInformationId: 0\r\nBasicInformationId: 3634\r\nDateApproved: January 01, 0001\r\nDateCreated: July 09, 2024\r\nDateHired: January 01, 0001\r\nEffectivityDate: January 01, 0001\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nFromStep: 0\r\nJobVacancyId: 382\r\nNonPlantillaRecordId: 0\r\nPersonnelActionMemoId: 2283\r\nPlantillaRecordId: 1157\r\nPositionId: 2004\r\nPurposeOfMovement: New Employee\r\nRateTypeId: 2\r\nRemarks: \r\nSalaryRate: 144408.00\r\nStatus: Pending\r\nToStep: 1\r\nValue: 0\r\n	admin	PersonnelActionMemos	1
763737	2024-07-09	09:04:13.1515869	<Undetected>	Insert	BasicInformationId: \r\nBiometricIdString: \r\nEmployeeId: \r\nEmployeeNumber: \r\nFingerprintBytes: \r\nFingerprintDataKiosk: \r\nFingerprintDataString: \r\nFingerprintTemplateFilePath: \r\n	BasicInformationId: 3634\r\nBiometricIdString: \r\nEmployeeId: 0\r\nEmployeeNumber: 10000003\r\nFingerprintBytes: \r\nFingerprintDataKiosk: \r\nFingerprintDataString: \r\nFingerprintTemplateFilePath: \r\n	admin	Employees	1
763738	2024-07-09	09:04:13.2178030	<Undetected>	Insert	DateOfMovement: \r\nDepartmentId: \r\nDivisionId: \r\nEmployeeId: \r\nItemNumber: \r\nMovementType: \r\nPlantillaRecordEntryId: \r\nPlantillaRecordId: \r\nPlantillaYear: \r\nPositionId: \r\nReasonOfSeparation: \r\nSalaryGradeId: \r\nScrapBuildFromPlantillaId: \r\nSectionId: \r\n	DateOfMovement: July 09, 2024\r\nDepartmentId: 125\r\nDivisionId: 164\r\nEmployeeId: 2747\r\nItemNumber: 1-16\r\nMovementType: Appointed\r\nPlantillaRecordEntryId: 0\r\nPlantillaRecordId: 1157\r\nPlantillaYear: 2024\r\nPositionId: 2004\r\nReasonOfSeparation: \r\nSalaryGradeId: 0\r\nScrapBuildFromPlantillaId: 0\r\nSectionId: 4\r\n	admin	PlantillaRecordEntries	1
763739	2024-07-09	09:04:13.2178030	<Undetected>	Insert	DateEnded: \r\nDateStarted: \r\nDepartmentId: \r\nDetailedDepartmentId: \r\nDetailedDivisionId: \r\nDetailedSectionId: \r\nDivisionId: \r\nEmployeeId: \r\nEmploymentStatusId: \r\nNonPlantillaItemId: \r\nPersonnelActionMemoId: \r\nPlantillaRecordId: \r\nPositionId: \r\nRateTypeId: \r\nRemarks: \r\nSalaryGradeAnnex: \r\nSalaryGradeNo: \r\nSalaryRate: \r\nSectionId: \r\nServiceRecordId: \r\nStep: \r\nUseOldName: \r\nUseOldNameDetailed: \r\n	DateEnded: January 01, 0001\r\nDateStarted: July 09, 2024\r\nDepartmentId: 125\r\nDetailedDepartmentId: 0\r\nDetailedDivisionId: 0\r\nDetailedSectionId: 0\r\nDivisionId: 164\r\nEmployeeId: 2747\r\nEmploymentStatusId: 1\r\nNonPlantillaItemId: 0\r\nPersonnelActionMemoId: 2283\r\nPlantillaRecordId: 1157\r\nPositionId: 2004\r\nRateTypeId: 2\r\nRemarks: \r\nSalaryGradeAnnex: A1\r\nSalaryGradeNo: 1\r\nSalaryRate: 144408.00\r\nSectionId: 4\r\nServiceRecordId: 0\r\nStep: 1\r\nUseOldName: False\r\nUseOldNameDetailed: False\r\n	admin	ServiceRecords	1
763740	2024-07-09	09:04:13.2178030	<Undetected>	Update	ApplicationStatus: \r\nApproverBasicInformationId: 0\r\nBasicInformationId: 3634\r\nDateApproved: January 01, 0001\r\nDateCreated: July 09, 2024\r\nDateHired: January 01, 0001\r\nEffectivityDate: January 01, 0001\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nFromStep: 0\r\nJobVacancyId: 382\r\nNonPlantillaRecordId: 0\r\nPersonnelActionMemoId: 2283\r\nPlantillaRecordId: 1157\r\nPositionId: 2004\r\nPurposeOfMovement: New Employee\r\nRateTypeId: 2\r\nRemarks: \r\nSalaryRate: 144408.00\r\nStatus: Pending\r\nToStep: 1\r\nValue: 0\r\n	ApplicationStatus: \r\nApproverBasicInformationId: 1\r\nBasicInformationId: 3634\r\nDateApproved: July 09, 2024\r\nDateCreated: July 09, 2024\r\nDateHired: July 09, 2024\r\nEffectivityDate: July 09, 2024\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nFromStep: 0\r\nJobVacancyId: 382\r\nNonPlantillaRecordId: 0\r\nPersonnelActionMemoId: 2283\r\nPlantillaRecordId: 1157\r\nPositionId: 2004\r\nPurposeOfMovement: New Employee\r\nRateTypeId: 2\r\nRemarks: \r\nSalaryRate: 144408.00\r\nStatus: Approved\r\nToStep: 1\r\nValue: 0\r\n	admin	PersonnelActionMemos	1
763741	2024-07-09	09:04:13.3182033	<Undetected>	Update	ClosingDate: June 30, 2024\r\nDateCreated: June 07, 2024\r\nDateEnded: January 01, 0001\r\nDepartmentId: 125\r\nDivisionId: 164\r\nDuration: 0\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nIsActive: True\r\nIsPlantilla: True\r\nJobDescription: ADAI\r\nJobVacancyId: 382\r\nPositionId: 2004\r\nRateTypeId: 4\r\nSalaryGradeAnnex: A1\r\nSalaryGradeEffectivity: January 01, 2021\r\nSalaryRate: 12034.00\r\nSectionId: 4\r\nSlot: 1\r\n	ClosingDate: June 30, 2024\r\nDateCreated: June 07, 2024\r\nDateEnded: January 01, 0001\r\nDepartmentId: 125\r\nDivisionId: 164\r\nDuration: 0\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nIsActive: False\r\nIsPlantilla: True\r\nJobDescription: ADAI\r\nJobVacancyId: 382\r\nPositionId: 2004\r\nRateTypeId: 4\r\nSalaryGradeAnnex: A1\r\nSalaryGradeEffectivity: January 01, 2021\r\nSalaryRate: 12034.00\r\nSectionId: 4\r\nSlot: 1\r\n	admin	JobVacancies	1
763742	2024-07-09	09:04:14.7292612	<Undetected>	Insert	Allowance01Amount: \r\nAllowance01Cutoff: \r\nAllowance01Id: \r\nAllowance02Amount: \r\nAllowance02Cutoff: \r\nAllowance02Id: \r\nAllowance03Amount: \r\nAllowance03Cutoff: \r\nAllowance03Id: \r\nAllowance04Amount: \r\nAllowance04Cutoff: \r\nAllowance04Id: \r\nAllowance05Amount: \r\nAllowance05Cutoff: \r\nAllowance05Id: \r\nAllowance06Amount: \r\nAllowance06Cutoff: \r\nAllowance06Id: \r\nAllowance07Amount: \r\nAllowance07Cutoff: \r\nAllowance07Id: \r\nAllowance08Amount: \r\nAllowance08Cutoff: \r\nAllowance08Id: \r\nAllowance09Amount: \r\nAllowance09Cutoff: \r\nAllowance09Id: \r\nAllowance10Amount: \r\nAllowance10Cutoff: \r\nAllowance10Id: \r\nClusterName: \r\nDailyRate: \r\nDeduction01Amount: \r\nDeduction01Cutoff: \r\nDeduction01Id: \r\nDeduction02Amount: \r\nDeduction02Cutoff: \r\nDeduction02Id: \r\nDeduction03Amount: \r\nDeduction03Cutoff: \r\nDeduction03Id: \r\nDeduction04Amount: \r\nDeduction04Cutoff: \r\nDeduction04Id: \r\nDeduction05Amount: \r\nDeduction05Cutoff: \r\nDeduction05Id: \r\nDeduction06Amount: \r\nDeduction06Cutoff: \r\nDeduction06Id: \r\nDeduction07Amount: \r\nDeduction07Cutoff: \r\nDeduction07Id: \r\nDeduction08Amount: \r\nDeduction08Cutoff: \r\nDeduction08Id: \r\nDeduction09Amount: \r\nDeduction09Cutoff: \r\nDeduction09Id: \r\nDeduction10Amount: \r\nDeduction10Cutoff: \r\nDeduction10Id: \r\nDoubleHolidayHourlyNdRate: \r\nDoubleHolidayHourlyOtNdRate: \r\nDoubleHolidayHourlyOtRate: \r\nDoubleHolidayHourlyRate: \r\nDoubleHolidayHourlyRestDayNdRate: \r\nDoubleHolidayHourlyRestDayOtNdRate: \r\nDoubleHolidayHourlyRestDayOtRate: \r\nDoubleHolidayHourlyRestDayRate: \r\nEmployeeId: \r\nGsisEccAmount: \r\nGsisGsAmount: \r\nGsisPsAmount: \r\nHalfMonthRate: \r\nHdmfGsAmount: \r\nHdmfPsAmount: \r\nHourlyNdRate: \r\nHourlyOtNdRate: \r\nHourlyOtRate: \r\nHourlyRate: \r\nHourlyRestDayNdRate: \r\nHourlyRestDayOtNdRate: \r\nHourlyRestDayOtRate: \r\nHourlyRestDayRate: \r\nIsGsisCustom: \r\nIsHdmfCustom: \r\nIsPhilHealthCustom: \r\nIsSssCustom: \r\nLoan01Amount: \r\nLoan01Cutoff: \r\nLoan01Id: \r\nLoan02Amount: \r\nLoan02Cutoff: \r\nLoan02Id: \r\nLoan03Amount: \r\nLoan03Cutoff: \r\nLoan03Id: \r\nLoan04Amount: \r\nLoan04Cutoff: \r\nLoan04Id: \r\nLoan05Amount: \r\nLoan05Cutoff: \r\nLoan05Id: \r\nLoan06Amount: \r\nLoan06Cutoff: \r\nLoan06Id: \r\nLoan07Amount: \r\nLoan07Cutoff: \r\nLoan07Id: \r\nLoan08Amount: \r\nLoan08Cutoff: \r\nLoan08Id: \r\nLoan09Amount: \r\nLoan09Cutoff: \r\nLoan09Id: \r\nLoan10Amount: \r\nLoan10Cutoff: \r\nLoan10Id: \r\nLoan11Amount: \r\nLoan11Cutoff: \r\nLoan11Id: \r\nLoan12Amount: \r\nLoan12Cutoff: \r\nLoan12Id: \r\nLoan13Amount: \r\nLoan13Cutoff: \r\nLoan13Id: \r\nLoan14Amount: \r\nLoan14Cutoff: \r\nLoan14Id: \r\nLoan15Amount: \r\nLoan15Cutoff: \r\nLoan15Id: \r\nLoan16Amount: \r\nLoan16Cutoff: \r\nLoan16Id: \r\nLoan17Amount: \r\nLoan17Cutoff: \r\nLoan17Id: \r\nLoan18Amount: \r\nLoan18Cutoff: \r\nLoan18Id: \r\nLoan19Amount: \r\nLoan19Cutoff: \r\nLoan19Id: \r\nLoan20Amount: \r\nLoan20Cutoff: \r\nLoan20Id: \r\nMonthlyRate: \r\nPayrollProfileId: \r\nPhilHealthGsAmount: \r\nPhilHealthPsAmount: \r\nRegularHolidayHourlyNdRate: \r\nRegularHolidayHourlyOtNdRate: \r\nRegularHolidayHourlyOtRate: \r\nRegularHolidayHourlyRate: \r\nRegularHolidayHourlyRestDayNdRate: \r\nRegularHolidayHourlyRestDayOtNdRate: \r\nRegularHolidayHourlyRestDayOtRate: \r\nRegularHolidayHourlyRestDayRate: \r\nSpecialHolidayHourlyNdRate: \r\nSpecialHolidayHourlyOtNdRate: \r\nSpecialHolidayHourlyOtRate: \r\nSpecialHolidayHourlyRate: \r\nSpecialHolidayHourlyRestDayNdRate: \r\nSpecialHolidayHourlyRestDayOtNdRate: \r\nSpecialHolidayHourlyRestDayOtRate: \r\nSpecialHolidayHourlyRestDayRate: \r\nSssEeAmount: \r\nSssErAmount: \r\nWithholdingTaxAmount: \r\nWithholdingTaxComputation: \r\n	Allowance01Amount: 0\r\nAllowance01Cutoff: None\r\nAllowance01Id: 0\r\nAllowance02Amount: 0\r\nAllowance02Cutoff: None\r\nAllowance02Id: 0\r\nAllowance03Amount: 0\r\nAllowance03Cutoff: None\r\nAllowance03Id: 0\r\nAllowance04Amount: 0\r\nAllowance04Cutoff: None\r\nAllowance04Id: 0\r\nAllowance05Amount: 0\r\nAllowance05Cutoff: None\r\nAllowance05Id: 0\r\nAllowance06Amount: 0\r\nAllowance06Cutoff: None\r\nAllowance06Id: 0\r\nAllowance07Amount: 0\r\nAllowance07Cutoff: None\r\nAllowance07Id: 0\r\nAllowance08Amount: 0\r\nAllowance08Cutoff: None\r\nAllowance08Id: 0\r\nAllowance09Amount: 0\r\nAllowance09Cutoff: None\r\nAllowance09Id: 0\r\nAllowance10Amount: 0\r\nAllowance10Cutoff: None\r\nAllowance10Id: 0\r\nClusterName: \r\nDailyRate: 401.13333333333333333333333333\r\nDeduction01Amount: 0\r\nDeduction01Cutoff: None\r\nDeduction01Id: 0\r\nDeduction02Amount: 0\r\nDeduction02Cutoff: None\r\nDeduction02Id: 0\r\nDeduction03Amount: 0\r\nDeduction03Cutoff: None\r\nDeduction03Id: 0\r\nDeduction04Amount: 0\r\nDeduction04Cutoff: None\r\nDeduction04Id: 0\r\nDeduction05Amount: 0\r\nDeduction05Cutoff: None\r\nDeduction05Id: 0\r\nDeduction06Amount: 0\r\nDeduction06Cutoff: None\r\nDeduction06Id: 0\r\nDeduction07Amount: 0\r\nDeduction07Cutoff: None\r\nDeduction07Id: 0\r\nDeduction08Amount: 0\r\nDeduction08Cutoff: None\r\nDeduction08Id: 0\r\nDeduction09Amount: 0\r\nDeduction09Cutoff: None\r\nDeduction09Id: 0\r\nDeduction10Amount: 0\r\nDeduction10Cutoff: None\r\nDeduction10Id: 0\r\nDoubleHolidayHourlyNdRate: 0\r\nDoubleHolidayHourlyOtNdRate: 0\r\nDoubleHolidayHourlyOtRate: 0\r\nDoubleHolidayHourlyRate: 0\r\nDoubleHolidayHourlyRestDayNdRate: 0\r\nDoubleHolidayHourlyRestDayOtNdRate: 0\r\nDoubleHolidayHourlyRestDayOtRate: 0\r\nDoubleHolidayHourlyRestDayRate: 0\r\nEmployeeId: 2747\r\nGsisEccAmount: 0\r\nGsisGsAmount: 0\r\nGsisPsAmount: 0\r\nHalfMonthRate: 6017.00\r\nHdmfGsAmount: 0\r\nHdmfPsAmount: 0\r\nHourlyNdRate: 50.141666666666666666666666666\r\nHourlyOtNdRate: 62.677083333333333333333333332\r\nHourlyOtRate: 62.677083333333333333333333332\r\nHourlyRate: 50.141666666666666666666666666\r\nHourlyRestDayNdRate: 75.212499999999999999999999999\r\nHourlyRestDayOtNdRate: 94.01562500000000000000000000\r\nHourlyRestDayOtRate: 94.01562500000000000000000000\r\nHourlyRestDayRate: 75.212499999999999999999999999\r\nIsGsisCustom: False\r\nIsHdmfCustom: False\r\nIsPhilHealthCustom: False\r\nIsSssCustom: False\r\nLoan01Amount: 0\r\nLoan01Cutoff: None\r\nLoan01Id: 0\r\nLoan02Amount: 0\r\nLoan02Cutoff: None\r\nLoan02Id: 0\r\nLoan03Amount: 0\r\nLoan03Cutoff: None\r\nLoan03Id: 0\r\nLoan04Amount: 0\r\nLoan04Cutoff: None\r\nLoan04Id: 0\r\nLoan05Amount: 0\r\nLoan05Cutoff: None\r\nLoan05Id: 0\r\nLoan06Amount: 0\r\nLoan06Cutoff: None\r\nLoan06Id: 0\r\nLoan07Amount: 0\r\nLoan07Cutoff: None\r\nLoan07Id: 0\r\nLoan08Amount: 0\r\nLoan08Cutoff: None\r\nLoan08Id: 0\r\nLoan09Amount: 0\r\nLoan09Cutoff: None\r\nLoan09Id: 0\r\nLoan10Amount: 0\r\nLoan10Cutoff: None\r\nLoan10Id: 0\r\nLoan11Amount: 0\r\nLoan11Cutoff: None\r\nLoan11Id: 0\r\nLoan12Amount: 0\r\nLoan12Cutoff: None\r\nLoan12Id: 0\r\nLoan13Amount: 0\r\nLoan13Cutoff: None\r\nLoan13Id: 0\r\nLoan14Amount: 0\r\nLoan14Cutoff: None\r\nLoan14Id: 0\r\nLoan15Amount: 0\r\nLoan15Cutoff: None\r\nLoan15Id: 0\r\nLoan16Amount: 0\r\nLoan16Cutoff: None\r\nLoan16Id: 0\r\nLoan17Amount: 0\r\nLoan17Cutoff: None\r\nLoan17Id: 0\r\nLoan18Amount: 0\r\nLoan18Cutoff: None\r\nLoan18Id: 0\r\nLoan19Amount: 0\r\nLoan19Cutoff: None\r\nLoan19Id: 0\r\nLoan20Amount: 0\r\nLoan20Cutoff: None\r\nLoan20Id: 0\r\nMonthlyRate: 12034.00\r\nPayrollProfileId: 0\r\nPhilHealthGsAmount: 0\r\nPhilHealthPsAmount: 0\r\nRegularHolidayHourlyNdRate: 50.141666666666666666666666666\r\nRegularHolidayHourlyOtNdRate: 50.141666666666666666666666666\r\nRegularHolidayHourlyOtRate: 50.141666666666666666666666666\r\nRegularHolidayHourlyRate: 50.141666666666666666666666666\r\nRegularHolidayHourlyRestDayNdRate: 75.212499999999999999999999999\r\nRegularHolidayHourlyRestDayOtNdRate: 75.212499999999999999999999999\r\nRegularHolidayHourlyRestDayOtRate: 75.212499999999999999999999999\r\nRegularHolidayHourlyRestDayRate: 75.212499999999999999999999999\r\nSpecialHolidayHourlyNdRate: 50.141666666666666666666666666\r\nSpecialHolidayHourlyOtNdRate: 50.141666666666666666666666666\r\nSpecialHolidayHourlyOtRate: 50.141666666666666666666666666\r\nSpecialHolidayHourlyRate: 50.141666666666666666666666666\r\nSpecialHolidayHourlyRestDayNdRate: 112.81875000000000000000000000\r\nSpecialHolidayHourlyRestDayOtNdRate: 112.81875000000000000000000000\r\nSpecialHolidayHourlyRestDayOtRate: 112.81875000000000000000000000\r\nSpecialHolidayHourlyRestDayRate: 112.81875000000000000000000000\r\nSssEeAmount: 0\r\nSssErAmount: 0\r\nWithholdingTaxAmount: 0\r\nWithholdingTaxComputation: Auto-compute\r\n	admin	PayrollProfiles	1
763785	2024-07-09	09:34:24.4779983	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION PRINCIPAL I\r\nExperienceId: 0\r\nFromDate: January 07, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 23,703.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-2\r\nStatus: Permanent\r\nToDate: June 14, 2010\r\n	admin	Experiences	1
763786	2024-07-09	09:34:24.4829816	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 07, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 19,168.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
763787	2024-07-09	09:34:24.4869681	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 07, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 17,425.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
763861	2024-07-09	09:56:38.3036811	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DEVELOPMENT WRITESHOP ON THE ADM ONE-STOP SHOP SCHOOL POLICY AT OASIS, TANZA CAVITE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763743	2024-07-09	09:04:33.6597504	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: # 2235\r\nAddress2: TWINVILLA SUBD.\r\nBarangay: KUMINTANG ILAYA\r\nBasicInformationId: 0\r\nBirthDate: June 14, 1966\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSALINDA.COMIA001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSALINDA\r\nFullName: ROSALINDA M. COMIA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 157.48\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 04307023338\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nMobileNumber: 09171131038\r\nNationality: Filipino\r\nPermanentAddress1: # 2235\r\nPermanentAddress2: TWINVILLA SUBD.\r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LEAD STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LEAD STREET\r\nTIN: \r\nWeight: 61\r\nZipCode: 4200\r\n	admin	BasicInformation	1
763744	2024-07-09	09:04:33.6748365	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3670\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ELIAS\r\nFullName: ELIAS VILLONES COMIA\r\nGender: Male\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: VILLONES\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
763745	2024-07-09	09:04:33.6748365	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3670\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
763746	2024-07-09	09:12:09.2324369	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF SCIENCE IN ELEMENTARY EDUCATION \r\nLevel: College\r\n	admin	Courses	1
763747	2024-07-09	09:13:56.8383493	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3670\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1973\r\nDateTo: 1979\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: JULIAN A. PASTOR MEMORIAL SCHOOL  \r\nYearGraduated: 1979\r\n	admin	EducationalBackgrounds	1
763748	2024-07-09	09:13:56.8493504	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3670\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1979\r\nDateTo: 1982\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL \r\nYearGraduated: 1982\r\n	admin	EducationalBackgrounds	1
763749	2024-07-09	09:13:56.8533499	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3670\r\nCourse: \r\nCourseId: 1314\r\nCourseOrMajor: \r\nDateFrom: 1982\r\nDateTo: 1986\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES \r\nYearGraduated: 1986\r\n	admin	EducationalBackgrounds	1
763750	2024-07-09	09:13:56.8583503	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3670\r\nCourse: \r\nCourseId: 1299\r\nCourseOrMajor: \r\nDateFrom: 2015\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: EDUCATION MANAGEMENT \r\nSchoolorUniversity: ST. JUDE COLLEGE PHINMA MANILA \r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
763751	2024-07-09	09:13:56.8663495	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3670\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FLORO\r\nFullName: FLORO MACATANGAY MARASIGAN\r\nGender: Male\r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
763752	2024-07-09	09:13:56.8713504	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3670\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: BEATRIZ\r\nFullName: BEATRIZ CARINGAL\r\nGender: Female\r\nLastName: MAGNAYE\r\nMaidenName: \r\nMiddleName: CARINGAL\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
763753	2024-07-09	09:13:56.8763503	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3670\r\nBirthDate: March 17, 1991\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SHARMAINE KRISTINE\r\nFullName: SHARMAINE KRISTINE M COMIA\r\nGender: Female\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763754	2024-07-09	09:13:56.8803500	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3670\r\nBirthDate: April 06, 1995\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: REGINALD\r\nFullName: REGINALD M COMIA\r\nGender: Male\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767644	2025-03-07	14:04:53.0361182	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3717\r\nOrganizationId: 0\r\nOrganizationName: KALIPI (GULOD LABAC, BATANGAS CITY)\r\n	admin	Organizations	1
763755	2024-07-09	09:13:56.8853499	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3670\r\nBirthDate: November 27, 1997\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ELVIN JOSEPH\r\nFullName: ELVIN JOSEPH M COMIA\r\nGender: Male\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763756	2024-07-09	09:13:56.8893500	<Undetected>	Update	BasicInformationId: 3670\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3537\r\nExtensionName: \r\nFirstName: ELIAS\r\nFullName: ELIAS VILLONES COMIA\r\nGender: Male\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: VILLONES\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3670\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 0437023338\r\nEmployeeRelativeId: 3537\r\nExtensionName: \r\nFirstName: ELIAS\r\nFullName: ELIAS VILLONES COMIA\r\nGender: Male\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: VILLONES\r\nOccupation: SELF- EMPLOYED \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
763757	2024-07-09	09:13:56.8943506	<Undetected>	Update	BasicInformationId: 3670\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3467\r\n	BasicInformationId: 3670\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3467\r\n	admin	Questionnaires	1
763763	2024-07-09	09:33:28.0751151	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3670\r\nDateOfExamination: January 10, 1986\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: January 10, 1986\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: RAMON MAGSAYSAY HIGH SCHOOL \r\nRating: 73.1 %\r\nTitle: PROFESSIONAL BOARD EXAM FOR TEACHERS \r\n	admin	Eligibilities	1
763764	2024-07-09	09:33:28.0801151	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3670\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 73,661.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: July 09, 2024\r\n	admin	Experiences	1
763765	2024-07-09	09:33:28.0851151	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3670\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 72,113.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
763766	2024-07-09	09:33:28.0901156	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3670\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: May 05, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 70,565.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
763767	2024-07-09	09:33:28.0951154	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3670\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 69,481.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: May 24, 2021\r\n	admin	Experiences	1
763768	2024-07-09	09:33:28.0991155	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3670\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 67,933.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
763769	2024-07-09	09:33:28.1041154	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3670\r\nCompanyInstitution: DEPARTMENT OF EDUCATION  \r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 66,385.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
763770	2024-07-09	09:33:28.1081150	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3670\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: May 25, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 59,597.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
763771	2024-07-09	09:33:28.1121150	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3670\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 58,717.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: May 24, 2018\r\n	admin	Experiences	1
763758	2024-07-09	09:20:37.8284450	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 RAAM POST EVALUATION AND PLANNING CONFERENCE FOR THE PRE QUALIFYING MEET\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763759	2024-07-09	09:22:31.8994882	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION ORIENTATION OF THE KEY LEADERS ON THE IMPLEMENTATION OF THE NATIONAL LEARNING CAMP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763760	2024-07-09	09:25:52.9316705	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ENHANCING THE CAPABILITY OF SCHOOL HEADS AND TEACHERS IN THE IMPLMENTATION OF PROFESSIONAL PROGRAM VIA LAC\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763761	2024-07-09	09:27:43.4596976	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TWO DAY PLANNING WORKSHOP ON THE CONDUCT OF RSC FOR THE IDENTIFIED SPORTS EVENT IN THE 12TH ASEAN GAMES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763762	2024-07-09	09:29:09.5084115	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON THE QUALITY ASSURANCE OF 3RD AND 4TH QUARTER INTEGRATIVE ASSESMENT FROM G 1-12\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763805	2024-07-09	09:38:19.4535811	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL TRAINING OF TRAINERS ON SPORT SKILLS FOR ATHLETICS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763772	2024-07-09	09:33:28.1171155	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3670\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 52,783.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
763773	2024-07-09	09:33:28.1221155	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3670\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 47,448.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
763774	2024-07-09	09:33:28.1271153	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3670\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: May 25, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 42,652.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
763775	2024-07-09	09:33:28.1311155	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3670\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: June 13, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 39,493.00\r\nPositionHeld: PRINCIPAL III \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 21-\r\nStatus: Permanent\r\nToDate: May 24, 2015\r\n	admin	Experiences	1
763776	2024-07-09	09:33:28.1361156	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3670\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 36,567.00\r\nPositionHeld: PRINCIPAL II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-\r\nStatus: Permanent\r\nToDate: June 12, 2013\r\n	admin	Experiences	1
763777	2024-07-09	09:33:28.1401152	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3670\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: August 22, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 32,810.00\r\nPositionHeld: PRINCIPAL II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
763778	2024-07-09	09:33:28.1451164	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3670\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: July 17, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 30,880.00\r\nPositionHeld: PRINCIPAL II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-\r\nStatus: Permanent\r\nToDate: August 21, 2011\r\n	admin	Experiences	1
763779	2024-07-09	09:33:28.1491210	<Undetected>	Update	BasicInformationId: 3670\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 0437023338\r\nEmployeeRelativeId: 3537\r\nExtensionName: \r\nFirstName: ELIAS\r\nFullName: ELIAS VILLONES COMIA\r\nGender: Male\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: VILLONES\r\nOccupation: SELF- EMPLOYED \r\nRelationship: Husband\r\n	BasicInformationId: 3670\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 0437023338\r\nEmployeeRelativeId: 3537\r\nExtensionName: \r\nFirstName: ELIAS\r\nFullName: ELIAS COMIA\r\nGender: Male\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: VILLONES\r\nOccupation: SELF- EMPLOYED \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
763780	2024-07-09	09:33:28.1541210	<Undetected>	Update	BasicInformationId: 3670\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3538\r\nExtensionName: \r\nFirstName: FLORO\r\nFullName: FLORO MACATANGAY MARASIGAN\r\nGender: Male\r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3670\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3538\r\nExtensionName: \r\nFirstName: FLORO\r\nFullName: FLORO MARASIGAN\r\nGender: Male\r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
763781	2024-07-09	09:33:28.1591209	<Undetected>	Update	BasicInformationId: 3670\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3539\r\nExtensionName: \r\nFirstName: BEATRIZ\r\nFullName: BEATRIZ CARINGAL\r\nGender: Female\r\nLastName: MAGNAYE\r\nMaidenName: \r\nMiddleName: CARINGAL\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3670\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3539\r\nExtensionName: \r\nFirstName: BEATRIZ\r\nFullName: BEATRIZ MAGNAYE\r\nGender: Female\r\nLastName: MAGNAYE\r\nMaidenName: \r\nMiddleName: CARINGAL\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
763782	2024-07-09	09:33:28.1631214	<Undetected>	Update	BasicInformationId: 3670\r\nBirthDate: March 17, 1991\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3540\r\nExtensionName: \r\nFirstName: SHARMAINE KRISTINE\r\nFullName: SHARMAINE KRISTINE M COMIA\r\nGender: Female\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3670\r\nBirthDate: March 17, 1991\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3540\r\nExtensionName: \r\nFirstName: SHARMAINE KRISTINE\r\nFullName: SHARMAINE KRISTINE COMIA\r\nGender: Female\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763813	2024-07-09	09:42:45.1962790	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3669\r\nEmployeeTrainingId: 0\r\nFromDate: February 20, 2023\r\nHours: 8\r\nNatureOfParticipation: PARTICIPANT \r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: February 20, 2023\r\nTrainingId: 15114\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763783	2024-07-09	09:33:28.1682070	<Undetected>	Update	BasicInformationId: 3670\r\nBirthDate: April 06, 1995\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3541\r\nExtensionName: \r\nFirstName: REGINALD\r\nFullName: REGINALD M COMIA\r\nGender: Male\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3670\r\nBirthDate: April 06, 1995\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3541\r\nExtensionName: \r\nFirstName: REGINALD\r\nFullName: REGINALD COMIA\r\nGender: Male\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763784	2024-07-09	09:33:28.1722064	<Undetected>	Update	BasicInformationId: 3670\r\nBirthDate: November 27, 1997\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3542\r\nExtensionName: \r\nFirstName: ELVIN JOSEPH\r\nFullName: ELVIN JOSEPH M COMIA\r\nGender: Male\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3670\r\nBirthDate: November 27, 1997\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3542\r\nExtensionName: \r\nFirstName: ELVIN JOSEPH\r\nFullName: ELVIN JOSEPH COMIA\r\nGender: Male\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763788	2024-07-09	09:34:24.4919514	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: March 07, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 15,841.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
763789	2024-07-09	09:34:24.4959381	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 15,317.00\r\nPositionHeld: MASTER TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-2\r\nStatus: Permanent\r\nToDate: February 07, 2006\r\n	admin	Experiences	1
763790	2024-07-09	09:34:24.5009215	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: November 14, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 14,944.00\r\nPositionHeld: MASTER TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: December 31, 2004\r\n	admin	Experiences	1
763791	2024-07-09	09:34:24.5049081	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 07, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 14,098.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-1\r\nStatus: Permanent\r\nToDate: November 13, 2001\r\n	admin	Experiences	1
763792	2024-07-09	09:34:24.5088947	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 13,427.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-1\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
763793	2024-07-09	09:34:24.5138781	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: August 30, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 12,206.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-1\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
763794	2024-07-09	09:34:24.5178647	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 9,121.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: August 29, 1999\r\n	admin	Experiences	1
763795	2024-07-09	09:34:24.5218515	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 9,121.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: December 31, 1998\r\n	admin	Experiences	1
763796	2024-07-09	09:34:24.5258380	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 11, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 9,121.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 1997\r\n	admin	Experiences	1
763797	2024-07-09	09:34:24.5308214	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 7,682.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: October 31, 1997\r\n	admin	Experiences	1
763798	2024-07-09	09:34:24.5348080	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 6,243.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 1996\r\n	admin	Experiences	1
763799	2024-07-09	09:34:24.5397917	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: October 10, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 5,009.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 1995\r\n	admin	Experiences	1
763800	2024-07-09	09:34:24.5437780	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 4,933.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: September 10, 1995\r\n	admin	Experiences	1
763801	2024-07-09	09:34:24.5477647	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 3,933.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 1994\r\n	admin	Experiences	1
763802	2024-07-09	09:34:24.5517514	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1993\r\nIsGovernmentService: True\r\nMonthlySalary: 3,133.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 1993\r\n	admin	Experiences	1
763803	2024-07-09	09:34:24.5567348	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 07, 1989\r\nIsGovernmentService: True\r\nMonthlySalary: 3,102.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 1992\r\n	admin	Experiences	1
763804	2024-07-09	09:34:24.5607213	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3668\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: June 20, 1988\r\nIsGovernmentService: True\r\nMonthlySalary: 1,764.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 1989\r\n	admin	Experiences	1
763806	2024-07-09	09:42:10.5241173	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3670\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 30,474.00\r\nPositionHeld: PRINICIPAL I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: July 16, 2011\r\n	admin	Experiences	1
763807	2024-07-09	09:42:10.5291162	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3670\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 27,088.00\r\nPositionHeld: PRINCIPAL I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
763808	2024-07-09	09:42:10.5341567	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3670\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 23,700.00\r\nPositionHeld: PRINCIPAL I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
763809	2024-07-09	09:42:10.5381160	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3670\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: July 16, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 19,168.00\r\nPositionHeld: PRINCIPAL I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
763810	2024-07-09	09:42:10.5441157	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3670\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 18,082.00\r\nPositionHeld: MASTER TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-\r\nStatus: Permanent\r\nToDate: July 15, 2008\r\n	admin	Experiences	1
763811	2024-07-09	09:42:10.5481155	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3670\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: July 20, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 16,438.00\r\nPositionHeld: MASTER TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
763812	2024-07-09	09:42:45.1912957	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3669\r\nEmployeeTrainingId: 0\r\nFromDate: January 11, 2024\r\nHours: 16\r\nNatureOfParticipation: PARTICIPANT \r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: January 11, 2024\r\nTrainingId: 15232\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763814	2024-07-09	09:42:45.2012623	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3669\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: PARTICIPANT \r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763815	2024-07-09	09:42:45.2052489	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3669\r\nEmployeeTrainingId: 0\r\nFromDate: May 19, 2023\r\nHours: 8\r\nNatureOfParticipation: PARTICIPANT \r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: May 19, 2023\r\nTrainingId: 15421\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763816	2024-07-09	09:42:45.2102323	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3669\r\nEmployeeTrainingId: 0\r\nFromDate: April 24, 2023\r\nHours: 16\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: April 25, 2023\r\nTrainingId: 15660\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763817	2024-07-09	09:42:45.2142189	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3669\r\nEmployeeTrainingId: 0\r\nFromDate: July 06, 2023\r\nHours: 8\r\nNatureOfParticipation: PARTICIPANT \r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: July 06, 2023\r\nTrainingId: 15299\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763818	2024-07-09	09:42:45.2182055	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3669\r\nEmployeeTrainingId: 0\r\nFromDate: August 14, 2023\r\nHours: 45\r\nNatureOfParticipation: PARTICIPANT \r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: August 18, 2023\r\nTrainingId: 15574\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763819	2024-07-09	09:42:45.2231889	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3669\r\nEmployeeTrainingId: 0\r\nFromDate: March 28, 2022\r\nHours: 64\r\nNatureOfParticipation: PARTICIPANT \r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: April 05, 2022\r\nTrainingId: 15662\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763820	2024-07-09	09:42:45.2271755	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3669\r\nEmployeeTrainingId: 0\r\nFromDate: April 11, 2022\r\nHours: 16\r\nNatureOfParticipation: PARTICIPANT \r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: April 12, 2022\r\nTrainingId: 15663\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763821	2024-07-09	09:42:45.2321589	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3669\r\nEmployeeTrainingId: 0\r\nFromDate: May 20, 2022\r\nHours: 8\r\nNatureOfParticipation: PARTICIPANT \r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: May 20, 2022\r\nTrainingId: 15664\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763822	2024-07-09	09:42:45.2361455	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3669\r\nEmployeeTrainingId: 0\r\nFromDate: May 04, 2022\r\nHours: 40\r\nNatureOfParticipation: PARTICIPANT \r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: May 26, 2022\r\nTrainingId: 15478\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763823	2024-07-09	09:42:45.2411290	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3669\r\nEmployeeTrainingId: 0\r\nFromDate: September 07, 2022\r\nHours: 8\r\nNatureOfParticipation: PARTICIPANT \r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: September 07, 2022\r\nTrainingId: 15174\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763824	2024-07-09	09:42:45.2451155	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3669\r\nEmployeeTrainingId: 0\r\nFromDate: November 02, 2022\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: November 06, 2022\r\nTrainingId: 15665\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763825	2024-07-09	09:42:45.2500989	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 14,995.00\r\nPositionHeld: ELEMENTARY HEAD TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
763826	2024-07-09	09:42:45.2540855	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 13,632.00\r\nPositionHeld: ELEMENTARY HEAD TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-\r\nStatus: Permanent\r\nToDate: June 01, 2007\r\n	admin	Experiences	1
763827	2024-07-09	09:42:45.2590688	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: February 28, 2003\r\nIsGovernmentService: True\r\nMonthlySalary: 13,300.00\r\nPositionHeld: ELEMENTARY HEAD TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-\r\nStatus: Permanent\r\nToDate: December 31, 2006\r\n	admin	Experiences	1
763828	2024-07-09	09:42:45.2640521	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: November 25, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 11,167.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: February 27, 2003\r\n	admin	Experiences	1
763829	2024-07-09	09:42:45.2680388	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: September 12, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 10,535.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-\r\nStatus: Permanent\r\nToDate: November 24, 2002\r\n	admin	Experiences	1
763830	2024-07-09	09:42:45.2730221	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: September 11, 2001\r\n	admin	Experiences	1
763831	2024-07-09	09:42:45.2770088	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
763832	2024-07-09	09:42:45.2819922	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
763833	2024-07-09	09:42:45.2859788	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 7,309.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: October 31, 1997\r\n	admin	Experiences	1
763834	2024-07-09	09:42:45.2899654	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 6,013.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 1996\r\n	admin	Experiences	1
763835	2024-07-09	09:42:45.2949488	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 4,902.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 1995\r\n	admin	Experiences	1
763836	2024-07-09	09:42:45.2989354	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 3,902.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 1994\r\n	admin	Experiences	1
763837	2024-07-09	09:42:45.3039188	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: November 10, 1993\r\nIsGovernmentService: True\r\nMonthlySalary: 3,102.00\r\nPositionHeld: REAPPOINTMENT \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 1993\r\n	admin	Experiences	1
763838	2024-07-09	09:42:45.3079054	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 18, 1991\r\nIsGovernmentService: True\r\nMonthlySalary: 3,102.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: November 09, 1993\r\n	admin	Experiences	1
763841	2024-07-09	09:47:14.1647214	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON THE FINALIZATION OF KINDERGARTEN\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763839	2024-07-09	09:42:45.3128889	<Undetected>	Update	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY EDUCATION \r\nExperienceId: 10692\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 19,906.00\r\nPositionHeld: ELEMENTARY HEAD TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-\r\nStatus: Permanent\r\nToDate: November 10, 2009\r\n	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY\r\nExperienceId: 10692\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 19,906.00\r\nPositionHeld: ELEMENTARY HEAD TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-\r\nStatus: Permanent\r\nToDate: November 10, 2009\r\n	admin	Experiences	1
763840	2024-07-09	09:42:45.3178720	<Undetected>	Update	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY EDUCATION\r\nExperienceId: 10693\r\nFromDate: July 01, 2008\r\nIsGovernmentService: False\r\nMonthlySalary: 0.00\r\nPositionHeld: ELEMENTARY HEAD TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: June 30, 2009\r\n	BasicInformationId: 3669\r\nCompanyInstitution: DIVISION OFFICE BATANGAS CITY \r\nExperienceId: 10693\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 16,494.00\r\nPositionHeld: ELEMENTARY HEAD TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
763849	2024-07-09	09:49:38.1104334	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3669\r\nSkillId: 0\r\nSkillName: LETTERING/ DRAWING/ PARTICIPATED IN SPORTS ACTIVITIES/ COACHING\r\n	admin	Skills	1
763850	2024-07-09	09:49:38.1144200	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3669\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
763851	2024-07-09	09:49:38.1213975	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3669\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
763852	2024-07-09	09:49:38.1253834	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3669\r\nOrganizationId: 0\r\nOrganizationName: BCPSTEA\r\n	admin	Organizations	1
763853	2024-07-09	09:49:38.1313625	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3669\r\nOrganizationId: 0\r\nOrganizationName: UNION OF NON TEACHING PERSONNEL\r\n	admin	Organizations	1
763854	2024-07-09	09:49:38.1363468	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3669\r\nCharacterReferenceId: 0\r\nCompanyAddress: TINGGA LABAC BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09989700743\r\nExtensionName: \r\nFirstName: HERMAN\r\nLastName: CATAPANG\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763855	2024-07-09	09:49:38.1403332	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3669\r\nCharacterReferenceId: 0\r\nCompanyAddress: TAAL BATANGAS \r\nCompanyName: \r\nContactNumber: 09175930974\r\nExtensionName: \r\nFirstName: ROWENA\r\nLastName: CABANDING \r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763856	2024-07-09	09:49:38.1453568	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3669\r\nCharacterReferenceId: 0\r\nCompanyAddress: BANABA CENTER BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09295320442\r\nExtensionName: \r\nFirstName: DEMETRIO\r\nLastName: BAUTISTA\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763857	2024-07-09	09:49:38.1493442	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: CONDE LABAC\r\nBasicInformationId: 3669\r\nBirthDate: November 13, 1964\r\nBirthPlace: CONDE LABAC, BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: nicolas.asi@deped.gov.ph\r\nExtensionName: \r\nFirstName: NICOLAS\r\nFullName: NICOLAS A. ASI\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.66\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: ASI\r\nMobileNumber: 09776888076\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: CONDE LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 3\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 3\r\nTIN: \r\nWeight: 68\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: CONDE LABAC\r\nBasicInformationId: 3669\r\nBirthDate: November 13, 1964\r\nBirthPlace: CONDE LABAC, BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: nicolas.asi@deped.gov.ph\r\nExtensionName: \r\nFirstName: NICOLAS\r\nFullName: NICOLAS A. ASI\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: 0401-2498-6605\r\nHeight: 1.66\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: ASI\r\nMobileNumber: 09776888076\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: CONDE LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 3\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000008357-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 3\r\nTIN: 124-520-083-0000\r\nWeight: 68\r\nZipCode: 4200\r\n	admin	BasicInformation	1
763858	2024-07-09	09:49:38.1542857	<Undetected>	Update	BasicInformationId: 3669\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3466\r\n	BasicInformationId: 3669\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3466\r\n	admin	Questionnaires	1
763863	2024-07-09	09:59:04.2323603	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: TYPING/COMPUTER\r\nLevel: Vocational\r\n	admin	Courses	1
763917	2024-07-09	10:32:27.8973482	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3671\r\nDateOfExamination: February 11, 1987\r\nDateOfRelease: January 17, 2020\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: February 11, 1987\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0041718\r\nPlaceOfExamination: QUEZON CITY \r\nRating: 70.15%\r\nTitle: PROFESSIONAL BOARD EXAMINATION FOR TEACHERS \r\n	admin	Eligibilities	1
770651	2025-03-17	13:20:07.2318243	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3781\r\nRecognitionId: 0\r\nRecognitionName: DEMONSTRATION TEACHER-ENGLISH (DIVISION LEVEL)\r\n	admin	Recognitions	1
763842	2024-07-09	09:49:31.5612603	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3670\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 03, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 14,098.00\r\nPositionHeld: MASTER TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-\r\nStatus: Permanent\r\nToDate: July 19, 2004\r\n	admin	Experiences	1
763843	2024-07-09	09:49:31.5677721	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3670\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 10,635.00\r\nPositionHeld: TEACHER III \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: January 02, 2000\r\n	admin	Experiences	1
763844	2024-07-09	09:49:31.5717722	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3670\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: November 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 9,668.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
763845	2024-07-09	09:49:31.5767709	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3670\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: June 07, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 8,118.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: October 31, 1997\r\n	admin	Experiences	1
763846	2024-07-09	09:49:31.5817727	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3670\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 4,683.00\r\nPositionHeld: TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: June 06, 1995\r\n	admin	Experiences	1
763847	2024-07-09	09:49:31.5857722	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3670\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 1993\r\nIsGovernmentService: True\r\nMonthlySalary: 3,933.00\r\nPositionHeld: TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 1994\r\n	admin	Experiences	1
763848	2024-07-09	09:49:31.5907721	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3670\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: August 19, 1988\r\nIsGovernmentService: True\r\nMonthlySalary: 3,102.00\r\nPositionHeld: TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 1993\r\n	admin	Experiences	1
763859	2024-07-09	09:53:46.1215367	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION MEETING OF SCHOOL HEADS ON THE IMPLEMENTATION OF CUSTOMIZED POLICY GUIDELINES ON PRIME HRM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763860	2024-07-09	09:55:10.9358893	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION SGC RE-ORIENTATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763862	2024-07-09	09:58:43.1272183	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FIRST QUALITY ASSURANCE/ WORKSHOP OF CONTEXTUALIZED AND LOCALIZED MATERIALS IN ALL LEARNING AREAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763864	2024-07-09	10:01:12.4071478	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING ON STRENGHTENING THE IMPLEMENTATION OF ALTERNATIVE DELIVERY MODE PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763866	2024-07-09	10:06:22.5753566	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 DIVISION SCHOOL BASED MANAGEMENT (SBM) CONVERGENCE UNDER PROJECT SHARE IT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763868	2024-07-09	10:08:14.9830620	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MONITORING AND IMPLEMENTATION OF THE NATONAL LEARNING CAMP ( NLC) AND END OF SCHOOL YEAR ( EOSY) BREAK PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763869	2024-07-09	10:10:08.8710714	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION MANAGEMENT COMMITTEE ( MANCOM)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763871	2024-07-09	10:11:34.3233609	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PROCESS OBSERVER / FACILITATOR\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763865	2024-07-09	10:04:07.3032393	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PROGRAM IMPLEMENTATION REVIEW ON THE EARLY LANGUAGE LITERACY AND NUMERACY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763867	2024-07-09	10:07:51.9673251	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON THE REVISION OF THE BUDGET OF WORK FOR MULTIGRADE TEACHING VIS-A-VIS THE MATATAG AGENDA\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763870	2024-07-09	10:10:29.0327824	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: IMPLEMENTATION REVIEW OF MULTIGRADE PROGRAM CUM STRATEGIC PLANNING WORKSHOP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763883	2024-07-09	10:13:45.6554502	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL TRAINING ON NQMS WITH THE PROVISION OF TA\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763884	2024-07-09	10:15:16.6632829	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION ROLL OUT ON HOTS AND SOLO FRAMEWORK\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763887	2024-07-09	10:19:56.5899436	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON THE QUALITY ASSURANCE OF 2022 REGIONAL STORYBOOK WINNERS AND SDO CONTEXTUALIZED AND DEVELOPED DIGITAL LRs FOR KINDERGARTEN\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763890	2024-07-09	10:25:20.1912830	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION WORKSHOP ON QUALITY ASSURANCE OF CONTEXTUALIZED AND LOCALIZED LEARNING MATERIALS AREA\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763891	2024-07-09	10:27:39.7580798	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON RSP GUIDELINES IN DEPED\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763894	2024-07-09	10:30:58.5800010	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON FINALIZATION OF REGIONAL CONTEXTUALIZED ASSESSMENT TOOL FOR KEY STAGE 1 THROUGH LAMP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763940	2024-07-09	10:35:37.7578853	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON FINALIZATION OF REGIONAL CONTEXTUALIZED ASSESSMENT THROUGH LAMP (PRE-WORK ACTIVITIES) VIA ZOOM MICROSOFT TEAMS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763943	2024-07-09	10:39:20.5837880	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION AND CAPACITY BUILDING ON LRMDS POLICIES AND GUIDELINES, ORGANIZATION, AND ......\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763958	2024-07-09	10:46:49.6937104	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON EARLY LANGUAGE LITERACY AND NUMERACY (ELLN) HARMONIZATION OF YEAR-END OUTPUTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763960	2024-07-09	10:51:40.6672189	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONWIDE ORIENTATION CUM WORKSHOP ON THE PROCESSING OF PERMIT/AUTHORIZATION TO OFFER HOMESCHOOLING PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763962	2024-07-09	10:53:43.8519081	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: LUZON CLUSTER ON UPSKILLING OF SUPERVISOR ON INCLUSIVE EDUCATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763963	2024-07-09	10:55:21.5315311	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BATCH 2-ENHANCING THE CAPABILITY OF SCHOOL HEADS AND TEACHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763964	2024-07-09	10:58:08.4138418	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION WORKSHOP ON THE DEVELOPMENT OF PROGRAM DESIGN & LEARNING PACKAGE FOR CAPABILITY BUILDING OF TEACHERS AND SCHOOL LEADERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763966	2024-07-09	10:59:22.6548761	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3668\r\nEmployeeTrainingId: 0\r\nFromDate: December 12, 2023\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, REGION IV A \r\nStatus: \r\nToDate: December 15, 2023\r\nTrainingId: 15666\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763967	2024-07-09	10:59:22.6598596	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3668\r\nEmployeeTrainingId: 0\r\nFromDate: November 14, 2023\r\nHours: 32\r\nNatureOfParticipation: MANAGEMENT\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, REGION IV A\r\nStatus: \r\nToDate: November 17, 2023\r\nTrainingId: 15669\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763872	2024-07-09	10:13:10.4388864	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PROCESS OBSERVER / FACILITATOR- DIVISION TRAINING WORKSHOP ON TEACHING THE CRITICAL COMPETENCIES IN ALL LEARNING AREAS OF KEY STAGE 1-2\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763873	2024-07-09	10:13:35.7877733	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3670\r\nEmployeeTrainingId: 0\r\nFromDate: February 01, 2024\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: February 01, 2024\r\nTrainingId: 15667\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763874	2024-07-09	10:13:35.7927730	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3670\r\nEmployeeTrainingId: 0\r\nFromDate: April 01, 2024\r\nHours: 8\r\nNatureOfParticipation: LEADERSHIP \r\nSponsoringAgency: REGIONAL OFFICE ( IV-A) DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: April 01, 2024\r\nTrainingId: 15668\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763875	2024-07-09	10:13:35.7967738	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3670\r\nEmployeeTrainingId: 0\r\nFromDate: January 11, 2024\r\nHours: 16\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: January 12, 2024\r\nTrainingId: 15232\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763876	2024-07-09	10:13:35.8017739	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3670\r\nEmployeeTrainingId: 0\r\nFromDate: November 17, 2023\r\nHours: 8\r\nNatureOfParticipation: LEADERSHIP \r\nSponsoringAgency: REGIONAL OFFICE ( IV-A) DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: November 17, 2023\r\nTrainingId: 15670\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763877	2024-07-09	10:13:35.8067742	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3670\r\nEmployeeTrainingId: 0\r\nFromDate: October 12, 2023\r\nHours: 8\r\nNatureOfParticipation: INSTRUCTIONAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: October 12, 2023\r\nTrainingId: 15671\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763878	2024-07-09	10:13:35.8117741	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3670\r\nEmployeeTrainingId: 0\r\nFromDate: September 26, 2023\r\nHours: 24\r\nNatureOfParticipation: INSTRUCTIONAL \r\nSponsoringAgency: REGIONAL OFFICE ( IV-A) DEPARTMENT OF EDUCATION, NEAR MALVAR \r\nStatus: \r\nToDate: September 29, 2023\r\nTrainingId: 15512\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763879	2024-07-09	10:13:35.8157736	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3670\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY  \r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15141\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763880	2024-07-09	10:13:35.8207734	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3670\r\nEmployeeTrainingId: 0\r\nFromDate: September 08, 2023\r\nHours: 8\r\nNatureOfParticipation: LEADERSHIP \r\nSponsoringAgency: REGIONAL OFFICE ( IV-A) DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: September 08, 2023\r\nTrainingId: 15673\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763881	2024-07-09	10:13:35.8257742	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3670\r\nEmployeeTrainingId: 0\r\nFromDate: August 24, 2023\r\nHours: 16\r\nNatureOfParticipation: INSTRUCTIONAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: August 25, 2023\r\nTrainingId: 15675\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763882	2024-07-09	10:13:35.8297744	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3670\r\nEmployeeTrainingId: 0\r\nFromDate: August 23, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: August 23, 2023\r\nTrainingId: 15676\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763885	2024-07-09	10:17:01.1267625	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RESOURCE SPEAKER- BUILDING A POSITIVE AND STRENGHT- BASED INSTRUCTIONAL SUPERVISION AND TRANSFORMATIONAL LEADERSHIP IN SCHOOLS THROUGH APPRECIATIVE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763886	2024-07-09	10:18:52.1765449	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CO- CHAIRMAN - 2023 DIVISION WORKSHOP ON QUALITY ASSURANCE OF CONTEXTUALIZED AND LOCALIZED LEARNING MATERIALS IN ALL LEARNING AREAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763888	2024-07-09	10:20:44.3826983	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPABILITY TRAINING OF SCIENCE, MATHEMATICS, AND ENGLISH (SME) TEACHERS ON THE IMPLEMENTATION OF NATIONAL LEARNING CAMP ( NLC)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763889	2024-07-09	10:24:19.9733498	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TECHNICAL WORKING GROUP - ADOLESCENT REPRODUCTIVE HEALTH: SOCIAL BEHAVIORAL CHANGE ( SBC) MATERIALS DEVELOPMENT ( ADEPT CONTEXTUALIZATION ) PART 2- VIDEO SHOOTING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763892	2024-07-09	10:27:59.6241998	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION AND CAPABILITY ON LRMDS POLICIES AND GUIDELINES, ORGANIZATION AND MANAGEMENT OF LRCs CUM CRAFTING OF SCHOOL AND DIVISION LEARNING RESOURCE PLAN SY 2023- 2024\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763893	2024-07-09	10:29:37.8783131	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION WORKSHOP ON LRCP M& E TOOL AND BEMEF\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763895	2024-07-09	10:31:43.0233445	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REACTOR- ENHANCING THE CAPABILITY OF SCHOOL HEADS AND TEACHERS IN THE IMPLEMENTATION OF PROFESSIONAL PROGRAM VIA SCHOOL LEARNING ACTION CELL BATCH 2 ( CLUSTER 1)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763896	2024-07-09	10:32:15.7166232	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3670\r\nEmployeeTrainingId: 0\r\nFromDate: August 14, 2023\r\nHours: 40\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: August 18, 2023\r\nTrainingId: 15679\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763897	2024-07-09	10:32:15.7216247	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3670\r\nEmployeeTrainingId: 0\r\nFromDate: August 09, 2023\r\nHours: 24\r\nNatureOfParticipation: LEADERSHIP \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: August 11, 2023\r\nTrainingId: 15682\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763898	2024-07-09	10:32:15.7266248	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3670\r\nEmployeeTrainingId: 0\r\nFromDate: July 24, 2023\r\nHours: 40\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: July 28, 2023\r\nTrainingId: 15683\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763899	2024-07-09	10:32:15.7306244	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3670\r\nEmployeeTrainingId: 0\r\nFromDate: July 18, 2023\r\nHours: 24\r\nNatureOfParticipation: INSTRUCTIONAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: July 20, 2023\r\nTrainingId: 15685\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763900	2024-07-09	10:32:15.7366244	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3670\r\nEmployeeTrainingId: 0\r\nFromDate: May 15, 2023\r\nHours: 24\r\nNatureOfParticipation: LEADERSHIP \r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: May 17, 2023\r\nTrainingId: 15046\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763901	2024-07-09	10:32:15.7406247	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3670\r\nEmployeeTrainingId: 0\r\nFromDate: April 11, 2023\r\nHours: 40\r\nNatureOfParticipation: INSTRUCTIONAL \r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: April 15, 2023\r\nTrainingId: 15686\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763902	2024-07-09	10:32:15.7446241	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3670\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763903	2024-07-09	10:32:15.7496245	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3670\r\nEmployeeTrainingId: 0\r\nFromDate: March 21, 2023\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: March 23, 2023\r\nTrainingId: 15689\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763904	2024-07-09	10:32:15.7546247	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3670\r\nEmployeeTrainingId: 0\r\nFromDate: March 01, 2023\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: March 01, 2023\r\nTrainingId: 15690\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763905	2024-07-09	10:32:15.7596303	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3670\r\nEmployeeTrainingId: 0\r\nFromDate: July 25, 2022\r\nHours: 40\r\nNatureOfParticipation: INSTRUCTIONAL \r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: July 29, 2022\r\nTrainingId: 15692\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763944	2024-07-09	10:39:47.9861210	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3670\r\nSkillId: 0\r\nSkillName: COMPOSING \r\n	admin	Skills	1
763945	2024-07-09	10:39:47.9951201	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3670\r\nOrganizationId: 0\r\nOrganizationName: NATIONAL PUBLIC SCHOOLS DISTRICT SUPERVISOR ASSOCIATION \r\n	admin	Organizations	1
763946	2024-07-09	10:39:48.0001199	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3670\r\nOrganizationId: 0\r\nOrganizationName: DIVISION PUBLIC SCHOOLS DISTRICT SUPERVISORS  ASSOCIATION \r\n	admin	Organizations	1
763947	2024-07-09	10:39:48.0081198	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3670\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY PUBLIC SCHOOL TEACHERS ASSOCIATION \r\n	admin	Organizations	1
763948	2024-07-09	10:39:48.0121199	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3670\r\nOrganizationId: 0\r\nOrganizationName: GIRL SCOUT OF THE PHILIPPINES \r\n	admin	Organizations	1
763906	2024-07-09	10:32:27.8660432	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: MAHABANG DAHILIG\r\nBasicInformationId: 0\r\nBirthDate: January 17, 1966\r\nBirthPlace: MAHABANG DAHILIG, BATANGAS CITY\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lolita.asi001@deped.gov.ph\r\nExtensionName: \r\nFirstName: LOLITA\r\nFullName: LOLITA T. ASI\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.59\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: TARCELO\r\nMobileNumber: 09175057894\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: MAHABANG DAHILIG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 68\r\nZipCode: 4200\r\n	admin	BasicInformation	1
763907	2024-07-09	10:32:27.8963516	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3671\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1973\r\nDateTo: 1979\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: MAHABANG DAHILIG ELEMENTARY SCHOOL\r\nYearGraduated: 1979\r\n	admin	EducationalBackgrounds	1
763908	2024-07-09	10:32:27.8963516	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3671\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1979\r\nDateTo: 1983\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1983\r\n	admin	EducationalBackgrounds	1
763909	2024-07-09	10:32:27.8963516	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3671\r\nCourse: \r\nCourseId: 1315\r\nCourseOrMajor: \r\nDateFrom: 1986\r\nDateTo: 1986\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Vocational Graduate\r\nMajor: \r\nSchoolorUniversity: VILLENA'S FASHION AND BUSINESS INSTITUTION \r\nYearGraduated: 1986\r\n	admin	EducationalBackgrounds	1
763910	2024-07-09	10:32:27.8963516	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3671\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1984\r\nDateTo: 1987\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES (NOW UNIVERSITY OF BATANGAS)\r\nYearGraduated: 1987\r\n	admin	EducationalBackgrounds	1
763911	2024-07-09	10:32:27.8963516	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3671\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 1988\r\nDateTo: 2001\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS \r\nYearGraduated: 2001\r\n	admin	EducationalBackgrounds	1
763912	2024-07-09	10:32:27.8963516	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3671\r\nCourse: \r\nCourseId: 1310\r\nCourseOrMajor: \r\nDateFrom: 2002\r\nDateTo: 2008\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: \r\nSchoolorUniversity: EULOGIA AMANG RODRIGUEZ INSTITUTE OF SCIENCE AND TECHNOLOGY\r\nYearGraduated: 2008\r\n	admin	EducationalBackgrounds	1
763913	2024-07-09	10:32:27.8963516	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3671\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09159258993\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: COSME\r\nFullName: COSME EBORA ASI\r\nGender: Male\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: SELF EMPLOYED\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
763914	2024-07-09	10:32:27.8973482	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3671\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JUSTINO\r\nFullName: JUSTINO DE CASTRO TARCELO\r\nGender: Male\r\nLastName: TARCELO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
763915	2024-07-09	10:32:27.8973482	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3671\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PAULINA\r\nFullName: PAULINA VIÑAS EBORA\r\nGender: Female\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: VIÑAS\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
763916	2024-07-09	10:32:27.8973482	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3671\r\nBirthDate: November 25, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALTHEA MERLIN\r\nFullName: ALTHEA MERLIN T ASI\r\nGender: Female\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: T\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763918	2024-07-09	10:32:27.8973482	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3671\r\nDateOfExamination: July 28, 1991\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: July 28, 1991\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 80.00%\r\nTitle: CIVIL SERVICE PROFESSIONAL\r\n	admin	Eligibilities	1
763919	2024-07-09	10:32:27.8973482	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3671\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 73,661.00\r\nPositionHeld: PUBLIC SCHOOL DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-3\r\nStatus: Permanent\r\nToDate: July 09, 2024\r\n	admin	Experiences	1
763920	2024-07-09	10:32:27.8973482	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3671\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 72,113.00\r\nPositionHeld: PUBLIC SCHOOL DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-3\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
763921	2024-07-09	10:32:27.8973482	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3671\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: December 21, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 70,565.00\r\nPositionHeld: PUBLIC SCHOOL DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-3\r\nStatus: Permanent\r\nToDate: May 25, 2022\r\n	admin	Experiences	1
763922	2024-07-09	10:32:27.8973482	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3671\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 69,481.00\r\nPositionHeld: PUBLIC SCHOOL DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-3\r\nStatus: Permanent\r\nToDate: May 24, 2021\r\n	admin	Experiences	1
763923	2024-07-09	10:32:27.8973482	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3671\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 67,933.00\r\nPositionHeld: PUBLIC SCHOOL DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
763924	2024-07-09	10:32:27.8983449	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3671\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 66,785.00\r\nPositionHeld: PUBLIC SCHOOL DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
763925	2024-07-09	10:32:27.8983449	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3671\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: May 25, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 59,597.00\r\nPositionHeld: PUBLIC SCHOOL DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
763926	2024-07-09	10:32:27.8983449	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3671\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 25, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 57,717.00\r\nPositionHeld: PUBLIC SCHOOL DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: May 24, 2018\r\n	admin	Experiences	1
763927	2024-07-09	10:32:27.8983449	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3671\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 52,783.00\r\nPositionHeld: PUBLIC SCHOOL DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
763928	2024-07-09	10:32:27.8983449	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3671\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 47,488.00\r\nPositionHeld: PUBLIC SCHOOL DISTRICT SUPERVISOR\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
763929	2024-07-09	10:32:27.8983449	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3671\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: May 25, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 42,652.00\r\nPositionHeld: PUBLIC SCHOOL DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
763930	2024-07-09	10:32:27.8983449	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3671\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: December 21, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 39,927.00\r\nPositionHeld: PRINCIPAL III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 21-2\r\nStatus: Permanent\r\nToDate: May 24, 2015\r\n	admin	Experiences	1
763931	2024-07-09	10:32:27.8983449	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3671\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 39,493.00\r\nPositionHeld: PRINCIPAL III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 21-1\r\nStatus: Permanent\r\nToDate: December 30, 2014\r\n	admin	Experiences	1
763932	2024-07-09	10:32:27.8983449	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3671\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: December 20, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 35,291.00\r\nPositionHeld: PRINCIPAL III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 21-1\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
763933	2024-07-09	10:32:27.8983449	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3671\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 02, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 32,810.00\r\nPositionHeld: PRINCIPAL II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-1\r\nStatus: Permanent\r\nToDate: December 19, 2011\r\n	admin	Experiences	1
763934	2024-07-09	10:32:27.8993415	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3671\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 28, 2003\r\nIsGovernmentService: True\r\nMonthlySalary: 24,611.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-2\r\nStatus: Permanent\r\nToDate: January 31, 2010\r\n	admin	Experiences	1
763935	2024-07-09	10:32:27.8993415	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3671\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: February 21, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 13,300.00\r\nPositionHeld: ELEMENTARY SCHOOL HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-1\r\nStatus: Permanent\r\nToDate: January 27, 2003\r\n	admin	Experiences	1
763936	2024-07-09	10:32:27.8993415	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3671\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: October 07, 1993\r\nIsGovernmentService: True\r\nMonthlySalary: 11,167.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: February 20, 2002\r\n	admin	Experiences	1
763937	2024-07-09	10:32:27.8993415	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3671\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 25, 1988\r\nIsGovernmentService: True\r\nMonthlySalary: 3,133.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: October 06, 1993\r\n	admin	Experiences	1
763938	2024-07-09	10:32:27.8993415	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3671\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: August 12, 1987\r\nIsGovernmentService: True\r\nMonthlySalary: 1,604.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Substitute\r\nToDate: September 09, 1987\r\n	admin	Experiences	1
763939	2024-07-09	10:32:27.8993415	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3671\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
763941	2024-07-09	10:36:37.4380585	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL TEACHERS' MONTH CELEBRATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763949	2024-07-09	10:39:48.0171196	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3670\r\nOrganizationId: 0\r\nOrganizationName: BOY SCOUT OF THE PHILIPPINES \r\n	admin	Organizations	1
763942	2024-07-09	10:38:44.2160943	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING ON STRENGTHNING THE IMPLMENTATION OF ALTERNATIVE DELIVERY MODE PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763959	2024-07-09	10:50:33.2774963	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RESOURCE SPEAKER- BUILDING A POSITIVE AND STRENGTH- BASED INSTRUCTIONAL SUPERVISION AND TRANSFORMATIONAL LEADERSHIP IN SCHOOLS THOUGH APPRECIATIVE INQUIRY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763961	2024-07-09	10:53:19.4357373	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FACILITATOR- 2023 DIVISION FESTIVAL OF TALENTS:READ-A-THON IN ENGLISH\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763987	2024-07-09	10:59:52.8047771	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REACTOR- ENHANCING THE CAPABILITY OF SCHOOL HEADS AND TEACHERS IN THE IMPLMENTATION OF PROFESSIONAL PROGRAM VIA SCHOOL LEARNING ACTION CELL BATCH 2 (CLUSTER 1)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
763988	2024-07-09	11:00:12.1503324	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3671\r\nEmployeeTrainingId: 0\r\nFromDate: January 11, 2024\r\nHours: 16\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: January 12, 2024\r\nTrainingId: 15232\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763989	2024-07-09	11:00:12.1553159	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3671\r\nEmployeeTrainingId: 0\r\nFromDate: November 17, 2023\r\nHours: 8\r\nNatureOfParticipation: LEADERSHIP \r\nSponsoringAgency: REGIONAL OFFICE (IV-A) DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: November 17, 2023\r\nTrainingId: 15670\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763990	2024-07-09	11:00:12.1593024	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3671\r\nEmployeeTrainingId: 0\r\nFromDate: October 02, 2023\r\nHours: 8\r\nNatureOfParticipation: LEADERSHIP\r\nSponsoringAgency: REGIONAL OFFICE (IV-A) DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: October 02, 2023\r\nTrainingId: 15694\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763991	2024-07-09	11:00:12.1642860	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3671\r\nEmployeeTrainingId: 0\r\nFromDate: October 12, 2023\r\nHours: 8\r\nNatureOfParticipation: INSTRUCTIONAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: October 12, 2023\r\nTrainingId: 15671\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763992	2024-07-09	11:00:12.1682724	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3671\r\nEmployeeTrainingId: 0\r\nFromDate: September 26, 2023\r\nHours: 24\r\nNatureOfParticipation: INSTRUCTIONAL \r\nSponsoringAgency: REGIONAL OFFICE (IV-A) DEPARTMENT OF EDUCATION, NEAP MALVAR\r\nStatus: \r\nToDate: September 29, 2023\r\nTrainingId: 15531\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763993	2024-07-09	11:00:12.1732559	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3671\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: INSTRUCTIONAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15113\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763994	2024-07-09	11:00:12.1772423	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3671\r\nEmployeeTrainingId: 0\r\nFromDate: September 08, 2023\r\nHours: 8\r\nNatureOfParticipation: LEADERSHIP\r\nSponsoringAgency: REGIONAL OFFICE (IV-A) DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: September 08, 2023\r\nTrainingId: 15673\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763995	2024-07-09	11:00:12.1822259	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3671\r\nEmployeeTrainingId: 0\r\nFromDate: August 24, 2023\r\nHours: 16\r\nNatureOfParticipation: INSTRUCTIONAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: August 25, 2023\r\nTrainingId: 15675\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763996	2024-07-09	11:00:12.1862123	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3671\r\nEmployeeTrainingId: 0\r\nFromDate: August 23, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: August 23, 2023\r\nTrainingId: 15676\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763997	2024-07-09	11:00:12.1911958	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3671\r\nEmployeeTrainingId: 0\r\nFromDate: August 14, 2023\r\nHours: 40\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency:  DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: August 18, 2023\r\nTrainingId: 15679\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763998	2024-07-09	11:00:12.1951824	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3671\r\nEmployeeTrainingId: 0\r\nFromDate: August 09, 2023\r\nHours: 24\r\nNatureOfParticipation: LEADERSHIP\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: August 11, 2023\r\nTrainingId: 15698\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763950	2024-07-09	10:39:48.0221198	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3670\r\nCharacterReferenceId: 0\r\nCompanyAddress: CALACA, BATANGAS \r\nCompanyName: \r\nContactNumber: 0437022094\r\nExtensionName: \r\nFirstName: HERMOGENES \r\nLastName: PANGANIBAN \r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763951	2024-07-09	10:39:48.0271205	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3670\r\nCharacterReferenceId: 0\r\nCompanyAddress: TALUMPOK BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09171892566\r\nExtensionName: \r\nFirstName: SACORO \r\nLastName: COMIA \r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763952	2024-07-09	10:39:48.0311195	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3670\r\nCharacterReferenceId: 0\r\nCompanyAddress: BALAGTAS, BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 0437022094\r\nExtensionName: \r\nFirstName: ANGELISA \r\nLastName: AMOTO \r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
763953	2024-07-09	10:39:48.0361200	<Undetected>	Update	BasicInformationId: 3670\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3467\r\n	BasicInformationId: 3670\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: \r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3467\r\n	admin	Questionnaires	1
763954	2024-07-09	10:42:33.7067940	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: # 2235\r\nAddress2: TWINVILLA SUBD.\r\nBarangay: KUMINTANG ILAYA\r\nBasicInformationId: 3670\r\nBirthDate: June 14, 1966\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSALINDA.COMIA001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSALINDA\r\nFullName: ROSALINDA M. COMIA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 157.48\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 04307023338\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nMobileNumber: 09171131038\r\nNationality: Filipino\r\nPermanentAddress1: # 2235\r\nPermanentAddress2: TWINVILLA SUBD.\r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LEAD STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LEAD STREET\r\nTIN: \r\nWeight: 61\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: # 2235\r\nAddress2: TWINVILLA SUBD.\r\nBarangay: KUMINTANG ILAYA\r\nBasicInformationId: 3670\r\nBirthDate: June 14, 1966\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSALINDA.COMIA001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSALINDA\r\nFullName: ROSALINDA M. COMIA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02002992987\r\nHDMF: 1400-0094-4343\r\nHeight: 157.48\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 04307023338\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nMobileNumber: 09171131038\r\nNationality: Filipino\r\nPermanentAddress1: # 2235\r\nPermanentAddress2: TWINVILLA SUBD.\r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LEAD STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000012259-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LEAD STREET\r\nTIN: 128-622-454-0000\r\nWeight: 61\r\nZipCode: 4200\r\n	admin	BasicInformation	1
763955	2024-07-09	10:43:06.0058415	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: # 2235\r\nAddress2: TWINVILLA SUBD.\r\nBarangay: KUMINTANG ILAYA\r\nBasicInformationId: 3670\r\nBirthDate: June 14, 1966\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSALINDA.COMIA001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSALINDA\r\nFullName: ROSALINDA M. COMIA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02002992987\r\nHDMF: 1400-0094-4343\r\nHeight: 157.48\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 04307023338\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nMobileNumber: 09171131038\r\nNationality: Filipino\r\nPermanentAddress1: # 2235\r\nPermanentAddress2: TWINVILLA SUBD.\r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LEAD STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000012259-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LEAD STREET\r\nTIN: 128-622-454-0000\r\nWeight: 61\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: # 2235\r\nAddress2: TWINVILLA SUBD.\r\nBarangay: KUMINTANG ILAYA\r\nBasicInformationId: 3670\r\nBirthDate: June 14, 1966\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSALINDA.COMIA001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSALINDA\r\nFullName: ROSALINDA M. COMIA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02002992987\r\nHDMF: 1400-0094-4343\r\nHeight: 157.48\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 04307023338\r\nLastName: COMIA\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nMobileNumber: 09171131038\r\nNationality: Filipino\r\nPermanentAddress1: # 2235\r\nPermanentAddress2: TWINVILLA SUBD.\r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LEAD STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000012259-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: LEAD STREET\r\nTIN: 128-622-454-0000\r\nWeight: 61\r\nZipCode: 4200\r\n	admin	BasicInformation	1
763956	2024-07-09	10:43:46.0371234	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 4\r\nAddress2: BETZAIDA VIKKAGE\r\nBarangay: DUMANTAY\r\nBasicInformationId: 3667\r\nBirthDate: April 10, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSSANA.BAGON@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSSANA\r\nFullName: ROSSANA P. BAGON\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006291357\r\nHDMF: 1490-0078-3419\r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7415817\r\nLastName: BAGON\r\nMaidenName: \r\nMiddleName: PEREZ\r\nMobileNumber: 09175050018\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 4\r\nPermanentAddress2: BETZAIDA VIKKAGE\r\nPermanentBarangay: DUMANTAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: CATLEYA\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050082014-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: 04-3205965-8\r\nStreetName: CATLEYA\r\nTIN: 913-869-034-0000\r\nWeight: 75\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 4\r\nAddress2: BETZAIDA VIKKAGE\r\nBarangay: DUMANTAY\r\nBasicInformationId: 3667\r\nBirthDate: April 10, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSSANA.BAGON@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSSANA\r\nFullName: ROSSANA P. BAGON\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006291357\r\nHDMF: 1490-0078-3419\r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7415817\r\nLastName: BAGON\r\nMaidenName: \r\nMiddleName: PEREZ\r\nMobileNumber: 09175050018\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 4\r\nPermanentAddress2: BETZAIDA VIKKAGE\r\nPermanentBarangay: DUMANTAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: CATLEYA\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050082014-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3205965-8\r\nStreetName: CATLEYA\r\nTIN: 913-869-034-0000\r\nWeight: 75\r\nZipCode: 4200\r\n	admin	BasicInformation	1
763957	2024-07-09	10:43:46.0481251	<Undetected>	Delete	BasicInformationId: 3667\r\nBirthDate: December 18, 2023\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3527\r\nExtensionName: \r\nFirstName: JESSIE ANDREI\r\nFullName: JESSIE ANDREI BAGON\r\nGender: Female\r\nLastName: BAGON\r\nMaidenName: \r\nMiddleName: P\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	admin	EmployeeRelatives	1
763965	2024-07-09	10:58:40.6923407	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER OF SCIENCE IN LIBRARY SCIENCE\r\nLevel: Master's\r\n	admin	Courses	1
763968	2024-07-09	10:59:22.6638462	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3668\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 24\r\nNatureOfParticipation: MANAGEMENT \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: November 24, 2023\r\nTrainingId: 15672\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763969	2024-07-09	10:59:22.6688287	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3668\r\nEmployeeTrainingId: 0\r\nFromDate: November 27, 2023\r\nHours: 48\r\nNatureOfParticipation: MANAGEMENT\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, CENTRAL OFFICE\r\nStatus: \r\nToDate: December 02, 2023\r\nTrainingId: 15674\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763970	2024-07-09	10:59:22.6728592	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3668\r\nEmployeeTrainingId: 0\r\nFromDate: October 03, 2023\r\nHours: 32\r\nNatureOfParticipation: MANAGEMENT\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, REGION IV A\r\nStatus: \r\nToDate: October 06, 2023\r\nTrainingId: 15677\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763971	2024-07-09	10:59:22.6768534	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3668\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 16\r\nNatureOfParticipation: MANAGEMENT\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, REGION IV A\r\nStatus: \r\nToDate: September 12, 2023\r\nTrainingId: 15113\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763972	2024-07-09	10:59:22.6818284	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3668\r\nEmployeeTrainingId: 0\r\nFromDate: September 13, 2023\r\nHours: 24\r\nNatureOfParticipation: MANAGEMENT\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: September 15, 2023\r\nTrainingId: 15680\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763973	2024-07-09	10:59:22.6857719	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3668\r\nEmployeeTrainingId: 0\r\nFromDate: September 26, 2023\r\nHours: 32\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: September 29, 2023\r\nTrainingId: 15681\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763974	2024-07-09	10:59:22.6907551	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3668\r\nEmployeeTrainingId: 0\r\nFromDate: August 01, 2023\r\nHours: 24\r\nNatureOfParticipation: MANAGEMENT\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: August 03, 2023\r\nTrainingId: 15684\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763975	2024-07-09	10:59:22.6947418	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3668\r\nEmployeeTrainingId: 0\r\nFromDate: August 14, 2023\r\nHours: 24\r\nNatureOfParticipation: MANAGEMENT\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, REGION IV A\r\nStatus: \r\nToDate: August 16, 2023\r\nTrainingId: 15574\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763976	2024-07-09	10:59:22.6997253	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3668\r\nEmployeeTrainingId: 0\r\nFromDate: July 28, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: July 28, 2023\r\nTrainingId: 15687\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763977	2024-07-09	10:59:22.7037118	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3668\r\nEmployeeTrainingId: 0\r\nFromDate: May 08, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: May 09, 2023\r\nTrainingId: 15688\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763978	2024-07-09	10:59:22.7076985	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3668\r\nEmployeeTrainingId: 0\r\nFromDate: May 26, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: May 28, 2023\r\nTrainingId: 15691\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763979	2024-07-09	10:59:22.7116867	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3668\r\nEmployeeTrainingId: 0\r\nFromDate: April 12, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, REGION IV A\r\nStatus: \r\nToDate: April 14, 2023\r\nTrainingId: 15693\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763980	2024-07-09	10:59:22.7162901	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3668\r\nEmployeeTrainingId: 0\r\nFromDate: March 21, 2023\r\nHours: 24\r\nNatureOfParticipation: MANAGEMENT\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, CENTRAL OFFICE\r\nStatus: \r\nToDate: March 23, 2023\r\nTrainingId: 15555\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763981	2024-07-09	10:59:22.7212757	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3668\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: MANAGEMENT\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, REGION IV A\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764021	2024-07-09	11:10:09.8062593	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3671\r\nSkillId: 0\r\nSkillName: ENCODING\r\n	admin	Skills	1
764022	2024-07-09	11:10:09.8102461	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3671\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
763982	2024-07-09	10:59:22.7252623	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3668\r\nEmployeeTrainingId: 0\r\nFromDate: October 06, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, CENTRAL OFFICE\r\nStatus: \r\nToDate: October 08, 2022\r\nTrainingId: 15697\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763983	2024-07-09	10:59:22.7302459	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3668\r\nEmployeeTrainingId: 0\r\nFromDate: August 04, 2022\r\nHours: 16\r\nNatureOfParticipation: MANAGEMENT\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, REGION IV A\r\nStatus: \r\nToDate: August 05, 2022\r\nTrainingId: 15699\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763984	2024-07-09	10:59:22.7342325	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3668\r\nEmployeeTrainingId: 0\r\nFromDate: July 11, 2022\r\nHours: 40\r\nNatureOfParticipation: MANAGEMENT \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, REGION IV A\r\nStatus: \r\nToDate: July 15, 2022\r\nTrainingId: 15701\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763985	2024-07-09	10:59:22.7402517	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3668\r\nEmployeeTrainingId: 0\r\nFromDate: July 25, 2022\r\nHours: 56\r\nNatureOfParticipation: MANAGEMENT\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, REGION IV A\r\nStatus: \r\nToDate: August 01, 2022\r\nTrainingId: 15702\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
763986	2024-07-09	10:59:22.7491825	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3668\r\nEmployeeTrainingId: 0\r\nFromDate: May 04, 2022\r\nHours: 24\r\nNatureOfParticipation: MANAGEMENT\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: May 06, 2022\r\nTrainingId: 15703\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764013	2024-07-09	11:09:12.7175296	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3668\r\nSkillId: 0\r\nSkillName: POWERPOINT PRESENTATION\r\n	admin	Skills	1
764014	2024-07-09	11:09:12.7264996	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3668\r\nOrganizationId: 0\r\nOrganizationName: PHILIPPINE PUBLIC SCHOOLS TEACHERS ASSOCIATION\r\n	admin	Organizations	1
764015	2024-07-09	11:09:12.7314828	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3668\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY PUBLIC SCHOOL TEACHERS AND EMPLOYEES ASSOCIATION\r\n	admin	Organizations	1
764016	2024-07-09	11:09:12.7384596	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3668\r\nCharacterReferenceId: 0\r\nCompanyAddress: CALACA, BATANGAS  \r\nCompanyName: \r\nContactNumber: 702-2094\r\nExtensionName: \r\nFirstName: HERMOGENES\r\nLastName: PANGANIBAN\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764017	2024-07-09	11:09:12.7424462	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3668\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN PASCUAL, BATANGAS\r\nCompanyName: \r\nContactNumber: 702-2094\r\nExtensionName: \r\nFirstName: CATHERINE \r\nLastName: MARANAN\r\nMiddleName: V\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764018	2024-07-09	11:09:12.7464328	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3668\r\nCharacterReferenceId: 0\r\nCompanyAddress: TALUMPOK WEST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175985168\r\nExtensionName: \r\nFirstName: SACORO\r\nLastName: COMIA\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764019	2024-07-09	11:09:12.7514161	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO MALIGAYA\r\nBarangay: CUTA\r\nBasicInformationId: 3668\r\nBirthDate: September 30, 1964\r\nBirthPlace: LIBJO, BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANAGS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marieta.perez002@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIETA\r\nFullName: MARIETA N. PEREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: NOCHE\r\nMobileNumber: 09985553861\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO MALIGAYA\r\nPermanentBarangay: CUTA\r\nPermanentCity: BATANAGS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 69\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO MALIGAYA\r\nBarangay: CUTA\r\nBasicInformationId: 3668\r\nBirthDate: September 30, 1964\r\nBirthPlace: LIBJO, BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANAGS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marieta.perez002@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIETA\r\nFullName: MARIETA N. PEREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02002928905\r\nHDMF: 1490-0097-4597\r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: NOCHE\r\nMobileNumber: 09985553861\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO MALIGAYA\r\nPermanentBarangay: CUTA\r\nPermanentCity: BATANAGS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 124-516-415-0000\r\nWeight: 69\r\nZipCode: 4200\r\n	admin	BasicInformation	1
764020	2024-07-09	11:09:12.7554027	<Undetected>	Update	BasicInformationId: 3668\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3465\r\n	BasicInformationId: 3668\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3465\r\n	admin	Questionnaires	1
764067	2024-07-09	11:47:57.5006926	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3673\r\nBirthDate: December 04, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LOISE HEDWIG\r\nFullName: LOISE HEDWIG S MAGADIA\r\nGender: Male\r\nLastName: MAGADIA\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
763999	2024-07-09	11:00:12.2001659	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3671\r\nEmployeeTrainingId: 0\r\nFromDate: July 24, 2023\r\nHours: 40\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: July 28, 2023\r\nTrainingId: 15683\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764000	2024-07-09	11:00:12.2051492	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3671\r\nEmployeeTrainingId: 0\r\nFromDate: July 18, 2023\r\nHours: 24\r\nNatureOfParticipation: INSTRUCTIONAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: July 20, 2023\r\nTrainingId: 15685\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764001	2024-07-09	11:00:12.2091360	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3671\r\nEmployeeTrainingId: 0\r\nFromDate: May 23, 2023\r\nHours: 8\r\nNatureOfParticipation: INSTRUCTIONAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: May 23, 2023\r\nTrainingId: 15700\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764002	2024-07-09	11:00:12.2131223	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3671\r\nEmployeeTrainingId: 0\r\nFromDate: May 15, 2023\r\nHours: 24\r\nNatureOfParticipation: INSTRUCTIONAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: May 17, 2023\r\nTrainingId: 15046\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764003	2024-07-09	11:00:12.2181059	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3671\r\nEmployeeTrainingId: 0\r\nFromDate: April 11, 2023\r\nHours: 40\r\nNatureOfParticipation: INSTRUCTIONAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: April 15, 2023\r\nTrainingId: 15686\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764004	2024-07-09	11:00:12.2220923	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3671\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: INSTRUCTIONAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764005	2024-07-09	11:00:12.2270759	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3671\r\nEmployeeTrainingId: 0\r\nFromDate: March 21, 2023\r\nHours: 24\r\nNatureOfParticipation: INSTRUCTIONAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: March 23, 2023\r\nTrainingId: 15689\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764006	2024-07-09	11:00:12.2310612	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3671\r\nEmployeeTrainingId: 0\r\nFromDate: March 01, 2023\r\nHours: 8\r\nNatureOfParticipation: INSTRUCTIONAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: March 01, 2023\r\nTrainingId: 15690\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764007	2024-07-09	11:00:12.2360445	<Undetected>	Update	BasicInformationId: 3671\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09159258993\r\nEmployeeRelativeId: 3543\r\nExtensionName: \r\nFirstName: COSME\r\nFullName: COSME EBORA ASI\r\nGender: Male\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: SELF EMPLOYED\r\nRelationship: Husband\r\n	BasicInformationId: 3671\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09159258993\r\nEmployeeRelativeId: 3543\r\nExtensionName: \r\nFirstName: COSME\r\nFullName: COSME ASI\r\nGender: Male\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: SELF EMPLOYED\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
764008	2024-07-09	11:00:12.2410685	<Undetected>	Update	BasicInformationId: 3671\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3544\r\nExtensionName: \r\nFirstName: JUSTINO\r\nFullName: JUSTINO DE CASTRO TARCELO\r\nGender: Male\r\nLastName: TARCELO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3671\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3544\r\nExtensionName: \r\nFirstName: JUSTINO\r\nFullName: JUSTINO TARCELO\r\nGender: Male\r\nLastName: TARCELO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
764009	2024-07-09	11:00:12.2450534	<Undetected>	Update	BasicInformationId: 3671\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3545\r\nExtensionName: \r\nFirstName: PAULINA\r\nFullName: PAULINA VIÑAS EBORA\r\nGender: Female\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: VIÑAS\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3671\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3545\r\nExtensionName: \r\nFirstName: PAULINA\r\nFullName: PAULINA EBORA\r\nGender: Female\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: VIÑAS\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
764010	2024-07-09	11:00:12.2500384	<Undetected>	Update	BasicInformationId: 3671\r\nBirthDate: November 25, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3546\r\nExtensionName: \r\nFirstName: ALTHEA MERLIN\r\nFullName: ALTHEA MERLIN T ASI\r\nGender: Female\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: T\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3671\r\nBirthDate: November 25, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3546\r\nExtensionName: \r\nFirstName: ALTHEA MERLIN\r\nFullName: ALTHEA MERLIN ASI\r\nGender: Female\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: T\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764011	2024-07-09	11:00:12.2540268	<Undetected>	Update	BasicInformationId: 3671\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3468\r\n	BasicInformationId: 3671\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3468\r\n	admin	Questionnaires	1
764012	2024-07-09	11:02:17.4152795	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON THE UPSKILLING OF SUPERVISORS ON INCLUSIVE EDUCATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764025	2024-07-09	11:10:09.8241994	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3671\r\nEmployeeTrainingId: 0\r\nFromDate: July 25, 2022\r\nHours: 40\r\nNatureOfParticipation: INSTRUCTIONAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: July 29, 2022\r\nTrainingId: 15692\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764026	2024-07-09	11:10:09.8281859	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3671\r\nEmployeeTrainingId: 0\r\nFromDate: July 09, 2022\r\nHours: 40\r\nNatureOfParticipation: INSTRUCTIONAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: July 11, 2022\r\nTrainingId: 15705\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764027	2024-07-09	11:10:09.8331694	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3671\r\nCharacterReferenceId: 0\r\nCompanyAddress: BALAGTAS, BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 7022094\r\nExtensionName: \r\nFirstName: ANGELISA \r\nLastName: AMOTO\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764028	2024-07-09	11:10:09.8381528	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3671\r\nCharacterReferenceId: 0\r\nCompanyAddress: TALUMPOK WEST, BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09175985168\r\nExtensionName: \r\nFirstName: SACORO\r\nLastName: COMIA\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764029	2024-07-09	11:10:09.8421395	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3671\r\nCharacterReferenceId: 0\r\nCompanyAddress: CALACA, BATANGAS \r\nCompanyName: \r\nContactNumber: 7022094\r\nExtensionName: \r\nFirstName: HERMOGENES\r\nLastName: PANGANIBAN\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764030	2024-07-09	11:10:09.8471229	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: MAHABANG DAHILIG\r\nBasicInformationId: 3671\r\nBirthDate: January 17, 1966\r\nBirthPlace: MAHABANG DAHILIG, BATANGAS CITY\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lolita.asi001@deped.gov.ph\r\nExtensionName: \r\nFirstName: LOLITA\r\nFullName: LOLITA T. ASI\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.59\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: TARCELO\r\nMobileNumber: 09175057894\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: MAHABANG DAHILIG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 68\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: MAHABANG DAHILIG\r\nBasicInformationId: 3671\r\nBirthDate: January 17, 1966\r\nBirthPlace: MAHABANG DAHILIG, BATANGAS CITY\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lolita.asi001@deped.gov.ph\r\nExtensionName: \r\nFirstName: LOLITA\r\nFullName: LOLITA T. ASI\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02002928760\r\nHDMF: 1490-0094-2169\r\nHeight: 1.59\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: TARCELO\r\nMobileNumber: 09175057894\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: MAHABANG DAHILIG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000006933-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 141-003-315-0000\r\nWeight: 68\r\nZipCode: 4200\r\n	admin	BasicInformation	1
764031	2024-07-09	11:10:09.8511092	<Undetected>	Update	BasicInformationId: 3671\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3468\r\n	BasicInformationId: 3671\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3468\r\n	admin	Questionnaires	1
764032	2024-07-09	11:17:07.4830114	<Undetected>	Update	BasicInformationId: 3626\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3340\r\nExtensionName: \r\nFirstName: JOEL\r\nFullName: JOEL ACLAN DAYAO\r\nGender: Male\r\nLastName: DAYAO\r\nMaidenName: \r\nMiddleName: ACLAN\r\nOccupation: MASON\r\nRelationship: Husband\r\n	BasicInformationId: 3626\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3340\r\nExtensionName: \r\nFirstName: JOEL\r\nFullName: JOEL DAYAO\r\nGender: Male\r\nLastName: DAYAO\r\nMaidenName: \r\nMiddleName: ACLAN\r\nOccupation: MASON\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
764033	2024-07-09	11:17:07.4931185	<Undetected>	Update	BasicInformationId: 3626\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3341\r\nExtensionName: \r\nFirstName: PAQUITO\r\nFullName: PAQUITO BEPINOSO SANCHEZ\r\nGender: Male\r\nLastName: SANCHEZ\r\nMaidenName: \r\nMiddleName: BEPINOSO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3626\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3341\r\nExtensionName: \r\nFirstName: PAQUITO\r\nFullName: PAQUITO SANCHEZ\r\nGender: Male\r\nLastName: SANCHEZ\r\nMaidenName: \r\nMiddleName: BEPINOSO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
764034	2024-07-09	11:17:07.4980952	<Undetected>	Update	BasicInformationId: 3626\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3342\r\nExtensionName: \r\nFirstName: ZENAIDA\r\nFullName: ZENAIDA PESTAÑO LANOT\r\nGender: Female\r\nLastName: LANOT\r\nMaidenName: \r\nMiddleName: PESTAÑO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3626\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3342\r\nExtensionName: \r\nFirstName: ZENAIDA\r\nFullName: ZENAIDA LANOT\r\nGender: Female\r\nLastName: LANOT\r\nMaidenName: \r\nMiddleName: PESTAÑO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
764035	2024-07-09	11:17:07.5060318	<Undetected>	Update	BasicInformationId: 3626\r\nBirthDate: August 04, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3343\r\nExtensionName: \r\nFirstName: JOHN MICHAEL\r\nFullName: JOHN MICHAEL SANCHEZ DAYAO\r\nGender: Male\r\nLastName: DAYAO\r\nMaidenName: \r\nMiddleName: SANCHEZ\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3626\r\nBirthDate: August 04, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3343\r\nExtensionName: \r\nFirstName: JOHN MICHAEL\r\nFullName: JOHN MICHAEL DAYAO\r\nGender: Male\r\nLastName: DAYAO\r\nMaidenName: \r\nMiddleName: SANCHEZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764036	2024-07-09	11:40:39.4407445	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK. 14 LOT 33\r\nAddress2: TIERRA VERDE\r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 0\r\nBirthDate: January 17, 1977\r\nBirthPlace: BATANGAS\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ELLEMICH2018@GMAIL.COM\r\nExtensionName: \r\nFirstName: MICHELLE\r\nFullName: MICHELLE P. VILLENA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 5.1\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: VILLENA\r\nMaidenName: \r\nMiddleName: PARTO\r\nMobileNumber: 09072496516\r\nNationality: Filipino\r\nPermanentAddress1: BLK. 14 LOT 33\r\nPermanentAddress2: TIERRA VERDE\r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ST. FRANCIS\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: ST. FRANCIS\r\nTIN: \r\nWeight: 49\r\nZipCode: 4200\r\n	admin	BasicInformation	1
764037	2024-07-09	11:40:39.4603136	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3672\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1983\r\nDateTo: 1989\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES\r\nYearGraduated: 1989\r\n	admin	EducationalBackgrounds	1
764038	2024-07-09	11:40:39.4603136	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3672\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1988\r\nDateTo: 1993\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGE\r\nYearGraduated: 1993\r\n	admin	EducationalBackgrounds	1
764039	2024-07-09	11:40:39.4603136	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: STUDENT ASSISTANT SCHOLARSHIP\r\nBasicInformationId: 3672\r\nCourse: \r\nCourseId: 1252\r\nCourseOrMajor: \r\nDateFrom: 1993\r\nDateTo: 1998\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: COMPUTER APPLICATION\r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 1998\r\n	admin	EducationalBackgrounds	1
764040	2024-07-09	11:40:39.4603136	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3672\r\nCourse: \r\nCourseId: 1316\r\nCourseOrMajor: \r\nDateFrom: 2007\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: MANUEL LUIS QUEZON UNIVERSITY\r\nYearGraduated: 2009\r\n	admin	EducationalBackgrounds	1
764041	2024-07-09	11:40:39.4603136	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3672\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROLANDO\r\nFullName: ROLANDO SUAREZ VILLENA\r\nGender: Male\r\nLastName: VILLENA\r\nMaidenName: \r\nMiddleName: SUAREZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
764042	2024-07-09	11:40:39.4603136	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3672\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LEVITA\r\nFullName: LEVITA BALIDO\r\nGender: Female\r\nLastName: PARTO\r\nMaidenName: \r\nMiddleName: BALIDO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
764043	2024-07-09	11:40:39.4603136	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3672\r\nDateOfExamination: November 10, 2009\r\nDateOfRelease: January 17, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: November 11, 2009\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 5906\r\nPlaceOfExamination: MANUEL LUIS QUEZON UNIVERSITY\r\nRating: 77.5\r\nTitle: LIBRARIAN LICENSURE EXAMINATION\r\n	admin	Eligibilities	1
764044	2024-07-09	11:40:39.4613132	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3672\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OFFICE , BATANGAS CITY - LIBRARY HUB\r\nExperienceId: 0\r\nFromDate: August 17, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 36,977.00\r\nPositionHeld: LIBRARIAN II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-2\r\nStatus: Permanent\r\nToDate: July 09, 2024\r\n	admin	Experiences	1
764045	2024-07-09	11:40:39.4613132	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3672\r\nCompanyInstitution: UNIVERSITY OF BATANGAS/LEARNING RESOURCE CENTER\r\nExperienceId: 0\r\nFromDate: April 11, 2005\r\nIsGovernmentService: False\r\nMonthlySalary: 33,000.00\r\nPositionHeld: UNIT LIBRARIAN\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: August 06, 2020\r\n	admin	Experiences	1
764239	2024-07-09	14:30:26.1750021	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2ND NATIONAL CONVENTION FOR PSDSA\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764046	2024-07-09	11:40:39.4613132	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3672\r\nCompanyInstitution: DATAMINE CORPORATION\r\nExperienceId: 0\r\nFromDate: September 01, 2004\r\nIsGovernmentService: False\r\nMonthlySalary: 0.00\r\nPositionHeld: PRODUCTION ASSOCIATE\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: February 28, 2005\r\n	admin	Experiences	1
764047	2024-07-09	11:40:39.4613132	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3672\r\nCompanyInstitution: CONTENT SCIENCE\r\nExperienceId: 0\r\nFromDate: September 17, 2001\r\nIsGovernmentService: False\r\nMonthlySalary: 0.00\r\nPositionHeld: CONTENT TRANSCRIBER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: March 07, 2002\r\n	admin	Experiences	1
764048	2024-07-09	11:40:39.4613132	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3672\r\nCompanyInstitution: GOLDEN BELL CONSTRUCTION & GENERAL SERVICES\r\nExperienceId: 0\r\nFromDate: September 16, 1999\r\nIsGovernmentService: False\r\nMonthlySalary: 0.00\r\nPositionHeld: PRODUCTION OPERATOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: June 30, 2000\r\n	admin	Experiences	1
764049	2024-07-09	11:40:39.4613132	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3672\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
764050	2024-07-09	11:43:39.8770553	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 PLAI CENTENNIAL NATINAL CONGRESS HERITAGE HORIZON HARMONY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764051	2024-07-09	11:45:30.1838366	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3672\r\nEmployeeTrainingId: 0\r\nFromDate: November 21, 2023\r\nHours: 32\r\nNatureOfParticipation: NON-SUPERVISORY\r\nSponsoringAgency: PHILIPPINE LIBRARIANS ASSOCIATIONS.INC. \r\nStatus: \r\nToDate: November 24, 2023\r\nTrainingId: 15706\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764052	2024-07-09	11:45:30.1888376	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLK. 14 LOT 33\r\nAddress2: TIERRA VERDE\r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3672\r\nBirthDate: January 17, 1977\r\nBirthPlace: BATANGAS\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ELLEMICH2018@GMAIL.COM\r\nExtensionName: \r\nFirstName: MICHELLE\r\nFullName: MICHELLE P. VILLENA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 5.1\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: VILLENA\r\nMaidenName: \r\nMiddleName: PARTO\r\nMobileNumber: 09072496516\r\nNationality: Filipino\r\nPermanentAddress1: BLK. 14 LOT 33\r\nPermanentAddress2: TIERRA VERDE\r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ST. FRANCIS\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: ST. FRANCIS\r\nTIN: \r\nWeight: 49\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK. 14 LOT 33\r\nAddress2: TIERRA VERDE\r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3672\r\nBirthDate: January 17, 1977\r\nBirthPlace: BATANGAS\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ELLEMICH2018@GMAIL.COM\r\nExtensionName: \r\nFirstName: MICHELLE\r\nFullName: MICHELLE P. VILLENA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 5.1\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: VILLENA\r\nMaidenName: \r\nMiddleName: PARTO\r\nMobileNumber: 09072496516\r\nNationality: Filipino\r\nPermanentAddress1: BLK. 14 LOT 33\r\nPermanentAddress2: TIERRA VERDE\r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ST. FRANCIS\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ST. FRANCIS\r\nTIN: \r\nWeight: 49\r\nZipCode: 4200\r\n	admin	BasicInformation	1
764053	2024-07-09	11:45:30.1928371	<Undetected>	Update	BasicInformationId: 3672\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3547\r\nExtensionName: \r\nFirstName: ROLANDO\r\nFullName: ROLANDO SUAREZ VILLENA\r\nGender: Male\r\nLastName: VILLENA\r\nMaidenName: \r\nMiddleName: SUAREZ\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3672\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3547\r\nExtensionName: \r\nFirstName: ROLANDO\r\nFullName: ROLANDO VILLENA\r\nGender: Male\r\nLastName: VILLENA\r\nMaidenName: \r\nMiddleName: SUAREZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
764054	2024-07-09	11:45:30.2028373	<Undetected>	Update	BasicInformationId: 3672\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3548\r\nExtensionName: \r\nFirstName: LEVITA\r\nFullName: LEVITA BALIDO\r\nGender: Female\r\nLastName: PARTO\r\nMaidenName: \r\nMiddleName: BALIDO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3672\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3548\r\nExtensionName: \r\nFirstName: LEVITA\r\nFullName: LEVITA PARTO\r\nGender: Female\r\nLastName: PARTO\r\nMaidenName: \r\nMiddleName: BALIDO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
764055	2024-07-09	11:45:30.2068374	<Undetected>	Update	BasicInformationId: 3672\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3469\r\n	BasicInformationId: 3672\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3469\r\n	admin	Questionnaires	1
764056	2024-07-09	11:47:57.4794731	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO KANLURAN\r\nBarangay: GULOD ITAAS\r\nBasicInformationId: 0\r\nBirthDate: September 20, 1967\r\nBirthPlace: CALAPAN CITY, ORIENTAL MINDORO\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: charity.magadia0012@deped.gov.ph\r\nExtensionName: \r\nFirstName: CHARITY\r\nFullName: CHARITY S. MAGADIA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MAGADIA\r\nMaidenName: \r\nMiddleName: SIKAT\r\nMobileNumber: 09667522908\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO KANLURAN\r\nPermanentBarangay: GULOD ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
764057	2024-07-09	11:47:57.4996953	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3673\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1972\r\nDateTo: 1979\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: CANUBING I ELEMENTARY SCHOOL\r\nYearGraduated: 1979\r\n	admin	EducationalBackgrounds	1
764058	2024-07-09	11:47:57.4996953	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3673\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1979\r\nDateTo: 1983\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: CANUBING I BRGY. HIGH SCHOOL\r\nYearGraduated: 1983\r\n	admin	EducationalBackgrounds	1
764059	2024-07-09	11:47:57.4996953	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3673\r\nCourse: \r\nCourseId: 1303\r\nCourseOrMajor: \r\nDateFrom: 1983\r\nDateTo: 1988\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: DIVINE WORD COLLEGE OF CALAPAN \r\nYearGraduated: 1988\r\n	admin	EducationalBackgrounds	1
764060	2024-07-09	11:47:57.4996953	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3673\r\nCourse: \r\nCourseId: 1302\r\nCourseOrMajor: \r\nDateFrom: 2012\r\nDateTo: 2016\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: \r\nSchoolorUniversity: ST. JUDE COLLEGE- MANILA\r\nYearGraduated: 2016\r\n	admin	EducationalBackgrounds	1
764061	2024-07-09	11:47:57.4996953	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3673\r\nBirthDate: February 18, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: BRYAN CRIS\r\nFullName: BRYAN CRIS S MAGADIA\r\nGender: Male\r\nLastName: MAGADIA\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764062	2024-07-09	11:47:57.4996953	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3673\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROMEO\r\nFullName: ROMEO ROMERO SIKAT\r\nGender: Male\r\nLastName: SIKAT\r\nMaidenName: \r\nMiddleName: ROMERO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
764063	2024-07-09	11:47:57.4996953	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3673\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LILIA\r\nFullName: LILIA ALBO VILLANUEVA\r\nGender: Male\r\nLastName: VILLANUEVA\r\nMaidenName: \r\nMiddleName: ALBO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
764064	2024-07-09	11:47:57.4996953	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3673\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CHRISTIAN ARLO\r\nFullName: CHRISTIAN ARLO S MAGADIA\r\nGender: Male\r\nLastName: MAGADIA\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764065	2024-07-09	11:47:57.5006926	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3673\r\nBirthDate: February 18, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: BRYAN CRIS\r\nFullName: BRYAN CRIS S MAGADIA\r\nGender: Male\r\nLastName: MAGADIA\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764066	2024-07-09	11:47:57.5006926	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3673\r\nBirthDate: April 25, 1998\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CHARLENE\r\nFullName: CHARLENE S MAGADIA\r\nGender: Female\r\nLastName: MAGADIA\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764244	2024-07-09	14:38:28.2023289	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3673\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY PUBLIC SCHOOL TEACHERS AND EMPLOYEES ASSOCIATION\r\n	admin	Organizations	1
764068	2024-07-09	11:47:57.5006926	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3673\r\nBirthDate: January 06, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LAWRENCE\r\nFullName: LAWRENCE S MAGADIA\r\nGender: Male\r\nLastName: MAGADIA\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764069	2024-07-09	11:47:57.5006926	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3673\r\nDateOfExamination: December 10, 1989\r\nDateOfRelease: April 22, 1997\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: December 10, 1989\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0054267\r\nPlaceOfExamination: QUEZON CITY\r\nRating: 70.4%\r\nTitle: PROFESSIONAL BOARD EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
764070	2024-07-09	11:47:57.5006926	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3673\r\nDateOfExamination: January 10, 2011\r\nDateOfRelease: August 17, 2011\r\nEligibilityDocumentTypeId: 0\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: January 10, 2011\r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: STA. CRUZ, LAGUNA\r\nRating: 98.9%\r\nTitle: NATIONAL QUALIFYING EXAMINATION FOR TEACHERS \r\n	admin	Eligibilities	1
764071	2024-07-09	11:47:57.5006926	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3673\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
764072	2024-07-09	11:52:07.0439921	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 567\r\nAddress2: \r\nBarangay: SAMPAGA EAST\r\nBasicInformationId: 0\r\nBirthDate: December 23, 1967\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rowena.asi001@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROWENA\r\nFullName: ROWENA T. ASI\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: TOLENTINO\r\nMobileNumber: 09171600146\r\nNationality: Filipino\r\nPermanentAddress1: 567\r\nPermanentAddress2: \r\nPermanentBarangay: SAMPAGA EAST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LUMANGLAS STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LUMANGLAS STREET\r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
764073	2024-07-09	11:52:07.0727211	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3674\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1975\r\nDateTo: 1981\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS CITY SOUTH ELEMENTARY SCHOOL\r\nYearGraduated: 1981\r\n	admin	EducationalBackgrounds	1
764074	2024-07-09	11:52:07.0727211	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3674\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1981\r\nDateTo: 1984\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1984\r\n	admin	EducationalBackgrounds	1
764075	2024-07-09	11:52:07.0727211	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3674\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1984\r\nDateTo: 1988\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: SAINT BRIDGET COLLEGE \r\nYearGraduated: 1988\r\n	admin	EducationalBackgrounds	1
764076	2024-07-09	11:52:07.0727211	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3674\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2014\r\nDateTo: 2016\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2016\r\n	admin	EducationalBackgrounds	1
764077	2024-07-09	11:52:07.0737180	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3674\r\nCourse: \r\nCourseId: 1299\r\nCourseOrMajor: \r\nDateFrom: 2016\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: \r\nSchoolorUniversity: ST JUDE COLLEGE \r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
764078	2024-07-09	11:52:07.0737180	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3674\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09667369533\r\nEmployeeRelativeId: 0\r\nExtensionName: JR\r\nFirstName: ANTONIO\r\nFullName: ANTONIO RAMOS ASI JR\r\nGender: Male\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: RAMOS\r\nOccupation: SELF EMPLOYED\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
764079	2024-07-09	11:52:07.0737180	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3674\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARTIN\r\nFullName: MARTIN MENDOZA TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
764080	2024-07-09	11:52:07.0737180	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3674\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: NORMA\r\nFullName: NORMA BOLANOS DIMACULANGAN\r\nGender: Female\r\nLastName: DIMACULANGAN\r\nMaidenName: \r\nMiddleName: BOLANOS\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
764081	2024-07-09	11:52:07.0737180	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3674\r\nBirthDate: March 01, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ANTHONY ROWEN\r\nFullName: ANTHONY ROWEN T ASI\r\nGender: Male\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: T\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764082	2024-07-09	11:52:07.0737180	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3674\r\nBirthDate: January 24, 1998\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ANDREA MAUREEN\r\nFullName: ANDREA MAUREEN T ASI\r\nGender: Female\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: T\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764083	2024-07-09	11:52:07.0737180	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3674\r\nBirthDate: April 06, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ANGELICA\r\nFullName: ANGELICA T ASI\r\nGender: Female\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: T\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764084	2024-07-09	11:52:07.0737180	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3674\r\nDateOfExamination: November 27, 1988\r\nDateOfRelease: December 23, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: November 27, 1988\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0058576\r\nPlaceOfExamination: QUEZON CITY\r\nRating: 79.29%\r\nTitle: PROFESSIONAL BOARD EXAMINATION FOR TEACHERS \r\n	admin	Eligibilities	1
764085	2024-07-09	11:52:07.0737180	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3674\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 73,661.00\r\nPositionHeld: PUBLIC SCHOOL DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-3\r\nStatus: Permanent\r\nToDate: July 09, 2024\r\n	admin	Experiences	1
764086	2024-07-09	11:52:07.0737180	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3674\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 72,113.00\r\nPositionHeld: PUBLIC SCHOOL DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-3\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
764087	2024-07-09	11:52:07.0747145	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3674\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: December 21, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 70,565.00\r\nPositionHeld: PUBLIC SCHOOL DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: May 25, 2022\r\n	admin	Experiences	1
764088	2024-07-09	11:52:07.0747145	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3674\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 69,481.00\r\nPositionHeld: PUBLIC SCHOOL DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: May 24, 2021\r\n	admin	Experiences	1
764089	2024-07-09	11:52:07.0747145	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3674\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 67,933.00\r\nPositionHeld: PUBLIC SCHOOL DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
764108	2024-07-09	13:04:33.1337886	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3675\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1979\r\nDateTo: 1983\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL \r\nYearGraduated: 1983\r\n	admin	EducationalBackgrounds	1
764090	2024-07-09	11:52:07.0747145	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3674\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 66,785.00\r\nPositionHeld: PUBLIC SCHOOL DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
764091	2024-07-09	11:52:07.0747145	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3674\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: May 25, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 59,597.00\r\nPositionHeld: PUBLIC SCHOOL DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
764092	2024-07-09	11:52:07.0747145	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3674\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 25, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 57,717.00\r\nPositionHeld: PUBLIC SCHOOL DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: May 24, 2018\r\n	admin	Experiences	1
764093	2024-07-09	11:52:07.0747145	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3674\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 52,783.00\r\nPositionHeld: PUBLIC SCHOOL DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
764094	2024-07-09	11:52:07.0747145	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3674\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
764095	2024-07-09	11:53:06.1965543	<Undetected>	Update	ApplicationStatus: Pending\r\nApproverBasicInformationId: 0\r\nBasicInformationId: 3601\r\nDateApproved: January 01, 0001\r\nDateCreated: June 07, 2024\r\nDateHired: January 01, 0001\r\nEffectivityDate: January 01, 0001\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nFromStep: 0\r\nJobVacancyId: 380\r\nNonPlantillaRecordId: 0\r\nPersonnelActionMemoId: 2281\r\nPlantillaRecordId: 0\r\nPositionId: 1994\r\nPurposeOfMovement: New Employee\r\nRateTypeId: 2\r\nRemarks: \r\nSalaryRate: 219012.00\r\nStatus: Pending\r\nToStep: 1\r\nValue: 0\r\n	ApplicationStatus: \r\nApproverBasicInformationId: 0\r\nBasicInformationId: 3601\r\nDateApproved: January 01, 0001\r\nDateCreated: June 07, 2024\r\nDateHired: January 01, 0001\r\nEffectivityDate: January 01, 0001\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nFromStep: 0\r\nJobVacancyId: 380\r\nNonPlantillaRecordId: 0\r\nPersonnelActionMemoId: 2281\r\nPlantillaRecordId: 1155\r\nPositionId: 1994\r\nPurposeOfMovement: New Employee\r\nRateTypeId: 2\r\nRemarks: \r\nSalaryRate: 219012.00\r\nStatus: Pending\r\nToStep: 1\r\nValue: 0\r\n	admin	PersonnelActionMemos	1
764096	2024-07-09	11:53:06.1965543	<Undetected>	Update	ApplicationStatus: Pending\r\nApproverBasicInformationId: 0\r\nBasicInformationId: 3601\r\nDateApproved: January 01, 0001\r\nDateCreated: July 01, 2024\r\nDateHired: January 01, 0001\r\nEffectivityDate: January 01, 0001\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nFromStep: 0\r\nJobVacancyId: 379\r\nNonPlantillaRecordId: 0\r\nPersonnelActionMemoId: 2282\r\nPlantillaRecordId: 0\r\nPositionId: 2009\r\nPurposeOfMovement: New Employee\r\nRateTypeId: 2\r\nRemarks: \r\nSalaryRate: 235116.00\r\nStatus: Pending\r\nToStep: 1\r\nValue: 0\r\n	ApplicationStatus: Disapproved\r\nApproverBasicInformationId: 0\r\nBasicInformationId: 3601\r\nDateApproved: January 01, 0001\r\nDateCreated: July 01, 2024\r\nDateHired: January 01, 0001\r\nEffectivityDate: January 01, 0001\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nFromStep: 0\r\nJobVacancyId: 379\r\nNonPlantillaRecordId: 0\r\nPersonnelActionMemoId: 2282\r\nPlantillaRecordId: 0\r\nPositionId: 2009\r\nPurposeOfMovement: New Employee\r\nRateTypeId: 2\r\nRemarks: \r\nSalaryRate: 235116.00\r\nStatus: Declined\r\nToStep: 1\r\nValue: 0\r\n	admin	PersonnelActionMemos	1
764097	2024-07-09	11:53:43.1698121	<Undetected>	Insert	BasicInformationId: \r\nBiometricIdString: \r\nEmployeeId: \r\nEmployeeNumber: \r\nFingerprintBytes: \r\nFingerprintDataKiosk: \r\nFingerprintDataString: \r\nFingerprintTemplateFilePath: \r\n	BasicInformationId: 3601\r\nBiometricIdString: \r\nEmployeeId: 0\r\nEmployeeNumber: 10000004\r\nFingerprintBytes: \r\nFingerprintDataKiosk: \r\nFingerprintDataString: \r\nFingerprintTemplateFilePath: \r\n	admin	Employees	1
764098	2024-07-09	11:53:43.2060575	<Undetected>	Insert	DateOfMovement: \r\nDepartmentId: \r\nDivisionId: \r\nEmployeeId: \r\nItemNumber: \r\nMovementType: \r\nPlantillaRecordEntryId: \r\nPlantillaRecordId: \r\nPlantillaYear: \r\nPositionId: \r\nReasonOfSeparation: \r\nSalaryGradeId: \r\nScrapBuildFromPlantillaId: \r\nSectionId: \r\n	DateOfMovement: July 09, 2024\r\nDepartmentId: 125\r\nDivisionId: 164\r\nEmployeeId: 2748\r\nItemNumber: 1-14\r\nMovementType: Appointed\r\nPlantillaRecordEntryId: 0\r\nPlantillaRecordId: 1155\r\nPlantillaYear: 2024\r\nPositionId: 1994\r\nReasonOfSeparation: \r\nSalaryGradeId: 0\r\nScrapBuildFromPlantillaId: 0\r\nSectionId: 4\r\n	admin	PlantillaRecordEntries	1
764099	2024-07-09	11:53:43.2060575	<Undetected>	Insert	DateEnded: \r\nDateStarted: \r\nDepartmentId: \r\nDetailedDepartmentId: \r\nDetailedDivisionId: \r\nDetailedSectionId: \r\nDivisionId: \r\nEmployeeId: \r\nEmploymentStatusId: \r\nNonPlantillaItemId: \r\nPersonnelActionMemoId: \r\nPlantillaRecordId: \r\nPositionId: \r\nRateTypeId: \r\nRemarks: \r\nSalaryGradeAnnex: \r\nSalaryGradeNo: \r\nSalaryRate: \r\nSectionId: \r\nServiceRecordId: \r\nStep: \r\nUseOldName: \r\nUseOldNameDetailed: \r\n	DateEnded: January 01, 0001\r\nDateStarted: July 09, 2024\r\nDepartmentId: 125\r\nDetailedDepartmentId: 0\r\nDetailedDivisionId: 0\r\nDetailedSectionId: 0\r\nDivisionId: 164\r\nEmployeeId: 2748\r\nEmploymentStatusId: 1\r\nNonPlantillaItemId: 0\r\nPersonnelActionMemoId: 2281\r\nPlantillaRecordId: 1155\r\nPositionId: 1994\r\nRateTypeId: 2\r\nRemarks: \r\nSalaryGradeAnnex: A1\r\nSalaryGradeNo: 8\r\nSalaryRate: 219012.00\r\nSectionId: 4\r\nServiceRecordId: 0\r\nStep: 1\r\nUseOldName: False\r\nUseOldNameDetailed: False\r\n	admin	ServiceRecords	1
764118	2024-07-09	13:13:12.4289648	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: QUALITY ASSURANCE WORKSHOP OF SDO ELLN,SHS SPECIALIZED TRACK AND TVL LEARNING RESOURCES - BATCH I\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764100	2024-07-09	11:53:43.2060575	<Undetected>	Update	ApplicationStatus: \r\nApproverBasicInformationId: 0\r\nBasicInformationId: 3601\r\nDateApproved: January 01, 0001\r\nDateCreated: June 07, 2024\r\nDateHired: January 01, 0001\r\nEffectivityDate: January 01, 0001\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nFromStep: 0\r\nJobVacancyId: 380\r\nNonPlantillaRecordId: 0\r\nPersonnelActionMemoId: 2281\r\nPlantillaRecordId: 1155\r\nPositionId: 1994\r\nPurposeOfMovement: New Employee\r\nRateTypeId: 2\r\nRemarks: \r\nSalaryRate: 219012.00\r\nStatus: Pending\r\nToStep: 1\r\nValue: 0\r\n	ApplicationStatus: \r\nApproverBasicInformationId: 1\r\nBasicInformationId: 3601\r\nDateApproved: July 09, 2024\r\nDateCreated: June 07, 2024\r\nDateHired: July 09, 2024\r\nEffectivityDate: July 09, 2024\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nFromStep: 0\r\nJobVacancyId: 380\r\nNonPlantillaRecordId: 0\r\nPersonnelActionMemoId: 2281\r\nPlantillaRecordId: 1155\r\nPositionId: 1994\r\nPurposeOfMovement: New Employee\r\nRateTypeId: 2\r\nRemarks: \r\nSalaryRate: 219012.00\r\nStatus: Approved\r\nToStep: 1\r\nValue: 0\r\n	admin	PersonnelActionMemos	1
764101	2024-07-09	11:53:43.2368590	<Undetected>	Update	ClosingDate: June 30, 2024\r\nDateCreated: June 07, 2024\r\nDateEnded: January 01, 0001\r\nDepartmentId: 125\r\nDivisionId: 164\r\nDuration: 0\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nIsActive: True\r\nIsPlantilla: True\r\nJobDescription: AAII\r\nJobVacancyId: 380\r\nPositionId: 1994\r\nRateTypeId: 4\r\nSalaryGradeAnnex: A1\r\nSalaryGradeEffectivity: January 01, 2021\r\nSalaryRate: 18251.00\r\nSectionId: 4\r\nSlot: 1\r\n	ClosingDate: June 30, 2024\r\nDateCreated: June 07, 2024\r\nDateEnded: January 01, 0001\r\nDepartmentId: 125\r\nDivisionId: 164\r\nDuration: 0\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nIsActive: False\r\nIsPlantilla: True\r\nJobDescription: AAII\r\nJobVacancyId: 380\r\nPositionId: 1994\r\nRateTypeId: 4\r\nSalaryGradeAnnex: A1\r\nSalaryGradeEffectivity: January 01, 2021\r\nSalaryRate: 18251.00\r\nSectionId: 4\r\nSlot: 1\r\n	admin	JobVacancies	1
764102	2024-07-09	11:53:47.3827062	<Undetected>	Insert	Allowance01Amount: \r\nAllowance01Cutoff: \r\nAllowance01Id: \r\nAllowance02Amount: \r\nAllowance02Cutoff: \r\nAllowance02Id: \r\nAllowance03Amount: \r\nAllowance03Cutoff: \r\nAllowance03Id: \r\nAllowance04Amount: \r\nAllowance04Cutoff: \r\nAllowance04Id: \r\nAllowance05Amount: \r\nAllowance05Cutoff: \r\nAllowance05Id: \r\nAllowance06Amount: \r\nAllowance06Cutoff: \r\nAllowance06Id: \r\nAllowance07Amount: \r\nAllowance07Cutoff: \r\nAllowance07Id: \r\nAllowance08Amount: \r\nAllowance08Cutoff: \r\nAllowance08Id: \r\nAllowance09Amount: \r\nAllowance09Cutoff: \r\nAllowance09Id: \r\nAllowance10Amount: \r\nAllowance10Cutoff: \r\nAllowance10Id: \r\nClusterName: \r\nDailyRate: \r\nDeduction01Amount: \r\nDeduction01Cutoff: \r\nDeduction01Id: \r\nDeduction02Amount: \r\nDeduction02Cutoff: \r\nDeduction02Id: \r\nDeduction03Amount: \r\nDeduction03Cutoff: \r\nDeduction03Id: \r\nDeduction04Amount: \r\nDeduction04Cutoff: \r\nDeduction04Id: \r\nDeduction05Amount: \r\nDeduction05Cutoff: \r\nDeduction05Id: \r\nDeduction06Amount: \r\nDeduction06Cutoff: \r\nDeduction06Id: \r\nDeduction07Amount: \r\nDeduction07Cutoff: \r\nDeduction07Id: \r\nDeduction08Amount: \r\nDeduction08Cutoff: \r\nDeduction08Id: \r\nDeduction09Amount: \r\nDeduction09Cutoff: \r\nDeduction09Id: \r\nDeduction10Amount: \r\nDeduction10Cutoff: \r\nDeduction10Id: \r\nDoubleHolidayHourlyNdRate: \r\nDoubleHolidayHourlyOtNdRate: \r\nDoubleHolidayHourlyOtRate: \r\nDoubleHolidayHourlyRate: \r\nDoubleHolidayHourlyRestDayNdRate: \r\nDoubleHolidayHourlyRestDayOtNdRate: \r\nDoubleHolidayHourlyRestDayOtRate: \r\nDoubleHolidayHourlyRestDayRate: \r\nEmployeeId: \r\nGsisEccAmount: \r\nGsisGsAmount: \r\nGsisPsAmount: \r\nHalfMonthRate: \r\nHdmfGsAmount: \r\nHdmfPsAmount: \r\nHourlyNdRate: \r\nHourlyOtNdRate: \r\nHourlyOtRate: \r\nHourlyRate: \r\nHourlyRestDayNdRate: \r\nHourlyRestDayOtNdRate: \r\nHourlyRestDayOtRate: \r\nHourlyRestDayRate: \r\nIsGsisCustom: \r\nIsHdmfCustom: \r\nIsPhilHealthCustom: \r\nIsSssCustom: \r\nLoan01Amount: \r\nLoan01Cutoff: \r\nLoan01Id: \r\nLoan02Amount: \r\nLoan02Cutoff: \r\nLoan02Id: \r\nLoan03Amount: \r\nLoan03Cutoff: \r\nLoan03Id: \r\nLoan04Amount: \r\nLoan04Cutoff: \r\nLoan04Id: \r\nLoan05Amount: \r\nLoan05Cutoff: \r\nLoan05Id: \r\nLoan06Amount: \r\nLoan06Cutoff: \r\nLoan06Id: \r\nLoan07Amount: \r\nLoan07Cutoff: \r\nLoan07Id: \r\nLoan08Amount: \r\nLoan08Cutoff: \r\nLoan08Id: \r\nLoan09Amount: \r\nLoan09Cutoff: \r\nLoan09Id: \r\nLoan10Amount: \r\nLoan10Cutoff: \r\nLoan10Id: \r\nLoan11Amount: \r\nLoan11Cutoff: \r\nLoan11Id: \r\nLoan12Amount: \r\nLoan12Cutoff: \r\nLoan12Id: \r\nLoan13Amount: \r\nLoan13Cutoff: \r\nLoan13Id: \r\nLoan14Amount: \r\nLoan14Cutoff: \r\nLoan14Id: \r\nLoan15Amount: \r\nLoan15Cutoff: \r\nLoan15Id: \r\nLoan16Amount: \r\nLoan16Cutoff: \r\nLoan16Id: \r\nLoan17Amount: \r\nLoan17Cutoff: \r\nLoan17Id: \r\nLoan18Amount: \r\nLoan18Cutoff: \r\nLoan18Id: \r\nLoan19Amount: \r\nLoan19Cutoff: \r\nLoan19Id: \r\nLoan20Amount: \r\nLoan20Cutoff: \r\nLoan20Id: \r\nMonthlyRate: \r\nPayrollProfileId: \r\nPhilHealthGsAmount: \r\nPhilHealthPsAmount: \r\nRegularHolidayHourlyNdRate: \r\nRegularHolidayHourlyOtNdRate: \r\nRegularHolidayHourlyOtRate: \r\nRegularHolidayHourlyRate: \r\nRegularHolidayHourlyRestDayNdRate: \r\nRegularHolidayHourlyRestDayOtNdRate: \r\nRegularHolidayHourlyRestDayOtRate: \r\nRegularHolidayHourlyRestDayRate: \r\nSpecialHolidayHourlyNdRate: \r\nSpecialHolidayHourlyOtNdRate: \r\nSpecialHolidayHourlyOtRate: \r\nSpecialHolidayHourlyRate: \r\nSpecialHolidayHourlyRestDayNdRate: \r\nSpecialHolidayHourlyRestDayOtNdRate: \r\nSpecialHolidayHourlyRestDayOtRate: \r\nSpecialHolidayHourlyRestDayRate: \r\nSssEeAmount: \r\nSssErAmount: \r\nWithholdingTaxAmount: \r\nWithholdingTaxComputation: \r\n	Allowance01Amount: 0\r\nAllowance01Cutoff: None\r\nAllowance01Id: 0\r\nAllowance02Amount: 0\r\nAllowance02Cutoff: None\r\nAllowance02Id: 0\r\nAllowance03Amount: 0\r\nAllowance03Cutoff: None\r\nAllowance03Id: 0\r\nAllowance04Amount: 0\r\nAllowance04Cutoff: None\r\nAllowance04Id: 0\r\nAllowance05Amount: 0\r\nAllowance05Cutoff: None\r\nAllowance05Id: 0\r\nAllowance06Amount: 0\r\nAllowance06Cutoff: None\r\nAllowance06Id: 0\r\nAllowance07Amount: 0\r\nAllowance07Cutoff: None\r\nAllowance07Id: 0\r\nAllowance08Amount: 0\r\nAllowance08Cutoff: None\r\nAllowance08Id: 0\r\nAllowance09Amount: 0\r\nAllowance09Cutoff: None\r\nAllowance09Id: 0\r\nAllowance10Amount: 0\r\nAllowance10Cutoff: None\r\nAllowance10Id: 0\r\nClusterName: \r\nDailyRate: 608.36666666666666666666666667\r\nDeduction01Amount: 0\r\nDeduction01Cutoff: None\r\nDeduction01Id: 0\r\nDeduction02Amount: 0\r\nDeduction02Cutoff: None\r\nDeduction02Id: 0\r\nDeduction03Amount: 0\r\nDeduction03Cutoff: None\r\nDeduction03Id: 0\r\nDeduction04Amount: 0\r\nDeduction04Cutoff: None\r\nDeduction04Id: 0\r\nDeduction05Amount: 0\r\nDeduction05Cutoff: None\r\nDeduction05Id: 0\r\nDeduction06Amount: 0\r\nDeduction06Cutoff: None\r\nDeduction06Id: 0\r\nDeduction07Amount: 0\r\nDeduction07Cutoff: None\r\nDeduction07Id: 0\r\nDeduction08Amount: 0\r\nDeduction08Cutoff: None\r\nDeduction08Id: 0\r\nDeduction09Amount: 0\r\nDeduction09Cutoff: None\r\nDeduction09Id: 0\r\nDeduction10Amount: 0\r\nDeduction10Cutoff: None\r\nDeduction10Id: 0\r\nDoubleHolidayHourlyNdRate: 0\r\nDoubleHolidayHourlyOtNdRate: 0\r\nDoubleHolidayHourlyOtRate: 0\r\nDoubleHolidayHourlyRate: 0\r\nDoubleHolidayHourlyRestDayNdRate: 0\r\nDoubleHolidayHourlyRestDayOtNdRate: 0\r\nDoubleHolidayHourlyRestDayOtRate: 0\r\nDoubleHolidayHourlyRestDayRate: 0\r\nEmployeeId: 2748\r\nGsisEccAmount: 0\r\nGsisGsAmount: 0\r\nGsisPsAmount: 0\r\nHalfMonthRate: 9125.50\r\nHdmfGsAmount: 0\r\nHdmfPsAmount: 0\r\nHourlyNdRate: 76.045833333333333333333333334\r\nHourlyOtNdRate: 95.05729166666666666666666667\r\nHourlyOtRate: 95.05729166666666666666666667\r\nHourlyRate: 76.045833333333333333333333334\r\nHourlyRestDayNdRate: 114.06875000000000000000000000\r\nHourlyRestDayOtNdRate: 142.58593750000000000000000000\r\nHourlyRestDayOtRate: 142.58593750000000000000000000\r\nHourlyRestDayRate: 114.06875000000000000000000000\r\nIsGsisCustom: False\r\nIsHdmfCustom: False\r\nIsPhilHealthCustom: False\r\nIsSssCustom: False\r\nLoan01Amount: 0\r\nLoan01Cutoff: None\r\nLoan01Id: 0\r\nLoan02Amount: 0\r\nLoan02Cutoff: None\r\nLoan02Id: 0\r\nLoan03Amount: 0\r\nLoan03Cutoff: None\r\nLoan03Id: 0\r\nLoan04Amount: 0\r\nLoan04Cutoff: None\r\nLoan04Id: 0\r\nLoan05Amount: 0\r\nLoan05Cutoff: None\r\nLoan05Id: 0\r\nLoan06Amount: 0\r\nLoan06Cutoff: None\r\nLoan06Id: 0\r\nLoan07Amount: 0\r\nLoan07Cutoff: None\r\nLoan07Id: 0\r\nLoan08Amount: 0\r\nLoan08Cutoff: None\r\nLoan08Id: 0\r\nLoan09Amount: 0\r\nLoan09Cutoff: None\r\nLoan09Id: 0\r\nLoan10Amount: 0\r\nLoan10Cutoff: None\r\nLoan10Id: 0\r\nLoan11Amount: 0\r\nLoan11Cutoff: None\r\nLoan11Id: 0\r\nLoan12Amount: 0\r\nLoan12Cutoff: None\r\nLoan12Id: 0\r\nLoan13Amount: 0\r\nLoan13Cutoff: None\r\nLoan13Id: 0\r\nLoan14Amount: 0\r\nLoan14Cutoff: None\r\nLoan14Id: 0\r\nLoan15Amount: 0\r\nLoan15Cutoff: None\r\nLoan15Id: 0\r\nLoan16Amount: 0\r\nLoan16Cutoff: None\r\nLoan16Id: 0\r\nLoan17Amount: 0\r\nLoan17Cutoff: None\r\nLoan17Id: 0\r\nLoan18Amount: 0\r\nLoan18Cutoff: None\r\nLoan18Id: 0\r\nLoan19Amount: 0\r\nLoan19Cutoff: None\r\nLoan19Id: 0\r\nLoan20Amount: 0\r\nLoan20Cutoff: None\r\nLoan20Id: 0\r\nMonthlyRate: 18251.00\r\nPayrollProfileId: 0\r\nPhilHealthGsAmount: 0\r\nPhilHealthPsAmount: 0\r\nRegularHolidayHourlyNdRate: 76.045833333333333333333333334\r\nRegularHolidayHourlyOtNdRate: 76.045833333333333333333333334\r\nRegularHolidayHourlyOtRate: 76.045833333333333333333333334\r\nRegularHolidayHourlyRate: 76.045833333333333333333333334\r\nRegularHolidayHourlyRestDayNdRate: 114.06875000000000000000000000\r\nRegularHolidayHourlyRestDayOtNdRate: 114.06875000000000000000000000\r\nRegularHolidayHourlyRestDayOtRate: 114.06875000000000000000000000\r\nRegularHolidayHourlyRestDayRate: 114.06875000000000000000000000\r\nSpecialHolidayHourlyNdRate: 76.045833333333333333333333334\r\nSpecialHolidayHourlyOtNdRate: 76.045833333333333333333333334\r\nSpecialHolidayHourlyOtRate: 76.045833333333333333333333334\r\nSpecialHolidayHourlyRate: 76.045833333333333333333333334\r\nSpecialHolidayHourlyRestDayNdRate: 171.10312500000000000000000000\r\nSpecialHolidayHourlyRestDayOtNdRate: 171.10312500000000000000000000\r\nSpecialHolidayHourlyRestDayOtRate: 171.10312500000000000000000000\r\nSpecialHolidayHourlyRestDayRate: 171.10312500000000000000000000\r\nSssEeAmount: 0\r\nSssErAmount: 0\r\nWithholdingTaxAmount: 0\r\nWithholdingTaxComputation: Auto-compute\r\n	admin	PayrollProfiles	1
764103	2024-07-09	12:50:47.7763945	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 211\r\nAddress2: \r\nBarangay: SAN ISIDRO\r\nBasicInformationId: 0\r\nBirthDate: June 11, 1967\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSALINA.PANGANIBAN@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSALINA\r\nFullName: ROSALINA H. PANGANIBAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0439840619\r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: HERNANDEZ\r\nMobileNumber: 09171151780\r\nNationality: Filipino\r\nPermanentAddress1: 211\r\nPermanentAddress2: \r\nPermanentBarangay: SAN ISIDRO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 61\r\nZipCode: 4200\r\n	admin	BasicInformation	1
764104	2024-07-09	12:50:47.7905416	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3675\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
764105	2024-07-09	12:53:09.9631806	<Undetected>	Update	BasicInformationId: 3675\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3472\r\n	BasicInformationId: 3675\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3472\r\n	admin	Questionnaires	1
764106	2024-07-09	13:00:44.9573155	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ROLLOUT ACTIVITY FOR TRAINERS OF MANAGEMENT TEAM AND SLR COMMITTEES IN THE IMPLEMENTATION OF THE POLICY ON SUPLEMENTARY LEARNING RESOURCES (SLRs)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764107	2024-07-09	13:04:33.1218286	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: FIRST HONORABLE MENTION \r\nBasicInformationId: 3675\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1973\r\nDateTo: 1979\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: MAHABANG DAHILIG ELEMENTARY SCHOOL \r\nYearGraduated: 1979\r\n	admin	EducationalBackgrounds	1
764117	2024-07-09	13:09:45.7168542	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION WORKSHOP ON QUALITY ASSURANCE OF CONTEXTUALIZED AND LOCALIZED LEARNING MATERIALS IN ALL LEARNING AREAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764109	2024-07-09	13:04:33.1387719	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3675\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1983\r\nDateTo: 1987\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS \r\nYearGraduated: 1987\r\n	admin	EducationalBackgrounds	1
764110	2024-07-09	13:04:33.1427585	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3675\r\nCourse: \r\nCourseId: 1299\r\nCourseOrMajor: \r\nDateFrom: 2015\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: \r\nSchoolorUniversity: SAINT JUDE COLLEGES \r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
764111	2024-07-09	13:04:33.1517286	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3675\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 0439840619\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LEO\r\nFullName: LEO GUICO PANGANIBAN\r\nGender: Male\r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: GUICO\r\nOccupation: SELF- EMPLOYED \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
764112	2024-07-09	13:04:33.1557152	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3675\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FAUSTINO\r\nFullName: FAUSTINO BORBON HERNANDEZ\r\nGender: Male\r\nLastName: HERNANDEZ\r\nMaidenName: \r\nMiddleName: BORBON\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
764113	2024-07-09	13:04:33.1606986	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3675\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MAURA\r\nFullName: MAURA ACLAN\r\nGender: Female\r\nLastName: ACUNA\r\nMaidenName: \r\nMiddleName: ACLAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
764114	2024-07-09	13:04:33.1656819	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3675\r\nBirthDate: November 21, 1993\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROSYLEE\r\nFullName: ROSYLEE HERNANDEZ PANGANIBAN\r\nGender: Female\r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: HERNANDEZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764115	2024-07-09	13:04:33.1706652	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3675\r\nBirthDate: February 23, 1995\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LEONYL\r\nFullName: LEONYL HERNANDEZ HERNANDEZ\r\nGender: Male\r\nLastName: HERNANDEZ\r\nMaidenName: \r\nMiddleName: HERNANDEZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764116	2024-07-09	13:04:33.1746518	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 211\r\nAddress2: \r\nBarangay: SAN ISIDRO\r\nBasicInformationId: 3675\r\nBirthDate: June 11, 1967\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSALINA.PANGANIBAN@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSALINA\r\nFullName: ROSALINA H. PANGANIBAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0439840619\r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: HERNANDEZ\r\nMobileNumber: 09171151780\r\nNationality: Filipino\r\nPermanentAddress1: 211\r\nPermanentAddress2: \r\nPermanentBarangay: SAN ISIDRO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 61\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 211\r\nAddress2: \r\nBarangay: SAN ISIDRO\r\nBasicInformationId: 3675\r\nBirthDate: June 11, 1967\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSALINA.PANGANIBAN@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSALINA\r\nFullName: ROSALINA H. PANGANIBAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0439840619\r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: HERNANDEZ\r\nMobileNumber: 09171151780\r\nNationality: Filipino\r\nPermanentAddress1: 211\r\nPermanentAddress2: \r\nPermanentBarangay: SAN ISIDRO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 61\r\nZipCode: 4200\r\n	admin	BasicInformation	1
764120	2024-07-09	13:20:01.7528962	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3675\r\nDateOfExamination: November 22, 1987\r\nDateOfRelease: June 11, 2018\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: November 22, 1987\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0041167\r\nPlaceOfExamination: QUEZON CITY \r\nRating: 71.5%\r\nTitle: PROFESSIONAL BOARD EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
764121	2024-07-09	13:20:01.7578795	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 74,762.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-4\r\nStatus: Permanent\r\nToDate: July 09, 2024\r\n	admin	Experiences	1
771105	2025-03-17	16:00:28.7883750	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3795\r\nRecognitionId: 0\r\nRecognitionName: JUDGE DURING IS WEEK CELEBRATION 2022 IN BATSTATEU\r\n	admin	Recognitions	1
764119	2024-07-09	13:19:33.9161333	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION AND CAPACITY BUILDING ON LRMDS POLICIES AND GUIDELINES , ORGANIZATION AND MANAGEMENT OF LRCs CUM CRAFTING OF SCHOOL AND DIVISION LEARNING RESOURCE PLAN SY. 2023-2024\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764137	2024-07-09	13:23:17.3316283	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING ON ONLINE SUBMISSION AND REVIEW OF RESEARCH PAPER USING DECISION FREE ALGORITHM FOR DEPED BATANGAS CITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764138	2024-07-09	13:28:25.0507013	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON THE QUALITY ASSURANCE OF SDO CONTEXTUALIZED LEARNING RESOURCES USED FOR THE LEARNING RECOVERY PLAN\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764139	2024-07-09	13:38:39.4512951	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON THE QUALITY ASSURANCE OF THIRD AND FOURTH QUARTER INTEGRATIVE ASSESSMENT FROM GRADE 1-12\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764140	2024-07-09	13:41:46.2355898	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION WORKSHOP ON THE DEVELOPMENT PROGRAM DESIGN AND LEARNING PACKAGE FOR CAPABILITY BUILDING OF TEACHERS AND SCHOOL LEADERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764179	2024-07-09	13:45:38.0429996	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON THE QUALITY ASSURANCE OTHE SECOND QUARTER INTEGRATIVE ASSESSMENT FROM GRADE 1-12\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764180	2024-07-09	13:47:54.6201342	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MAXIMIZING THE USE OF KOHA IN COMMUNICATING WITH CLIENTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764181	2024-07-09	13:51:19.8035162	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ONLINE LIBRARY: CURATING RESOURCES FOR ACCESS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764182	2024-07-09	13:55:56.0661859	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: COVID-19 POST -COMMUNITY QUARANTINE STRATEGIES FOR LIBRARIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764183	2024-07-09	13:58:20.6346045	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: STRATEGIC PLANNING WORKSHOP AND TEAM BUILDING OF THE ACADEMIC DIVISION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764184	2024-07-09	14:00:30.3637100	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INDEXING PERIODICALS AND NEWSPAPERS REVISED AND UPDATED\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764185	2024-07-09	14:02:46.4899888	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WRITING PUBLISHABLE - FORMAT RESEARCH PAPER\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764186	2024-07-09	14:04:20.3942932	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: GEARING 21ST CENTURY LIBRARIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764187	2024-07-09	14:05:37.8708767	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3672\r\nEmployeeTrainingId: 0\r\nFromDate: October 02, 2023\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION , CURRICULUM DEVELOPMENT,LEARNING RESOURCES, AND LEARNING DELIVERY\r\nStatus: \r\nToDate: October 04, 2023\r\nTrainingId: 15707\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764188	2024-07-09	14:05:37.8748757	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3672\r\nEmployeeTrainingId: 0\r\nFromDate: September 22, 2023\r\nHours: 8\r\nNatureOfParticipation: NON-SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOLS DIVISION OF BATANGAS CITY LEARNING RESOURCE MANAGEMENT SECTION\r\nStatus: \r\nToDate: September 22, 2023\r\nTrainingId: 15307\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764189	2024-07-09	14:05:37.8798757	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3672\r\nEmployeeTrainingId: 0\r\nFromDate: July 24, 2023\r\nHours: 40\r\nNatureOfParticipation: NON-SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOLS DIVISION OF BATANGAS CITY LEARNING RESOURCE MANAGEMENT SECTION\r\nStatus: \r\nToDate: July 28, 2023\r\nTrainingId: 15708\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764190	2024-07-09	14:05:37.8848758	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3672\r\nEmployeeTrainingId: 0\r\nFromDate: June 19, 2023\r\nHours: 24\r\nNatureOfParticipation: NON-SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A CALABARZON ,CURRICULUM AND LEARNING MANAGEMENT DIVISION \r\nStatus: \r\nToDate: June 21, 2023\r\nTrainingId: 15709\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764122	2024-07-09	13:20:01.7618664	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 74,762.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-4\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
764123	2024-07-09	13:20:01.7668496	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 03, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 73,214.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-4\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
764124	2024-07-09	13:20:01.7708362	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 72,113.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-3\r\nStatus: Permanent\r\nToDate: February 01, 2022\r\n	admin	Experiences	1
764125	2024-07-09	13:20:01.7758195	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 70,565.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-3\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
764126	2024-07-09	13:20:01.7798062	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 03, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 67,469.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
764127	2024-07-09	13:20:01.7847894	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 66,385.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Job Order\r\nToDate: February 01, 2019\r\n	admin	Experiences	1
764128	2024-07-09	13:20:01.7897728	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 59,597.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
764129	2024-07-09	13:20:01.7937595	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 53,503.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
764130	2024-07-09	13:20:01.7987428	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 03, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 48,032.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
764131	2024-07-09	13:20:01.8027295	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 47,448.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: January 02, 2016\r\n	admin	Experiences	1
764132	2024-07-09	13:20:01.8077130	<Undetected>	Update	BasicInformationId: 3675\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 0439840619\r\nEmployeeRelativeId: 3563\r\nExtensionName: \r\nFirstName: LEO\r\nFullName: LEO GUICO PANGANIBAN\r\nGender: Male\r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: GUICO\r\nOccupation: SELF- EMPLOYED \r\nRelationship: Husband\r\n	BasicInformationId: 3675\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 0439840619\r\nEmployeeRelativeId: 3563\r\nExtensionName: \r\nFirstName: LEO\r\nFullName: LEO PANGANIBAN\r\nGender: Male\r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: GUICO\r\nOccupation: SELF- EMPLOYED \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
764133	2024-07-09	13:20:01.8116994	<Undetected>	Update	BasicInformationId: 3675\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3564\r\nExtensionName: \r\nFirstName: FAUSTINO\r\nFullName: FAUSTINO BORBON HERNANDEZ\r\nGender: Male\r\nLastName: HERNANDEZ\r\nMaidenName: \r\nMiddleName: BORBON\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3675\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3564\r\nExtensionName: \r\nFirstName: FAUSTINO\r\nFullName: FAUSTINO HERNANDEZ\r\nGender: Male\r\nLastName: HERNANDEZ\r\nMaidenName: \r\nMiddleName: BORBON\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
764134	2024-07-09	13:20:01.8156861	<Undetected>	Update	BasicInformationId: 3675\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3565\r\nExtensionName: \r\nFirstName: MAURA\r\nFullName: MAURA ACLAN\r\nGender: Female\r\nLastName: ACUNA\r\nMaidenName: \r\nMiddleName: ACLAN\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3675\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3565\r\nExtensionName: \r\nFirstName: MAURA\r\nFullName: MAURA ACUNA\r\nGender: Female\r\nLastName: ACUNA\r\nMaidenName: \r\nMiddleName: ACLAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
764135	2024-07-09	13:20:01.8206695	<Undetected>	Update	BasicInformationId: 3675\r\nBirthDate: November 21, 1993\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3566\r\nExtensionName: \r\nFirstName: ROSYLEE\r\nFullName: ROSYLEE HERNANDEZ PANGANIBAN\r\nGender: Female\r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: HERNANDEZ\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3675\r\nBirthDate: November 21, 1993\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3566\r\nExtensionName: \r\nFirstName: ROSYLEE\r\nFullName: ROSYLEE PANGANIBAN\r\nGender: Female\r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: HERNANDEZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764136	2024-07-09	13:20:01.8256527	<Undetected>	Update	BasicInformationId: 3675\r\nBirthDate: February 23, 1995\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3567\r\nExtensionName: \r\nFirstName: LEONYL\r\nFullName: LEONYL HERNANDEZ HERNANDEZ\r\nGender: Male\r\nLastName: HERNANDEZ\r\nMaidenName: \r\nMiddleName: HERNANDEZ\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3675\r\nBirthDate: February 23, 1995\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3567\r\nExtensionName: \r\nFirstName: LEONYL\r\nFullName: LEONYL HERNANDEZ\r\nGender: Male\r\nLastName: HERNANDEZ\r\nMaidenName: \r\nMiddleName: HERNANDEZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764141	2024-07-09	13:45:26.4969924	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3673\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 72,577.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: July 09, 2024\r\n	admin	Experiences	1
764142	2024-07-09	13:45:26.5019756	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3673\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: September 18, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 71,029.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
764143	2024-07-09	13:45:26.5059623	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3673\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 69,963.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: September 17, 2022\r\n	admin	Experiences	1
764144	2024-07-09	13:45:26.5109869	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3673\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 11, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 68,415.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
764145	2024-07-09	13:45:26.5149718	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3673\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 66,867.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
764146	2024-07-09	13:45:26.5189569	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3673\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: September 18, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 65,319.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 13, 2019\r\n	admin	Experiences	1
764147	2024-07-09	13:45:26.5239017	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3673\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 65,152.00\r\nPositionHeld: PRINCIPAL IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: September 17, 2019\r\n	admin	Experiences	1
764208	2024-07-09	14:10:20.2877303	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING ON STRENGTHENING THE IMPLEMENTATION OF ALTERNATIVE DELIVERY MODE PROGRAM\r\nTrainingId: 0\r\nType: \r\n	admin	Trainings	1
764148	2024-07-09	13:45:26.5278877	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3673\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: February 19, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 58,717.00\r\nPositionHeld: PRINCIPAL IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
764149	2024-07-09	13:45:26.5318744	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3673\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 11, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 52,554.00\r\nPositionHeld: PRINCIPAL III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 21-\r\nStatus: Permanent\r\nToDate: December 18, 2018\r\n	admin	Experiences	1
764150	2024-07-09	13:45:26.5358611	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3673\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 47,779.00\r\nPositionHeld: PRINCIPAL III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 21-\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
764151	2024-07-09	13:45:26.5408449	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3673\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 11, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 43,439.00\r\nPositionHeld: PRINCIPAL III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 21-\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
764152	2024-07-09	13:45:26.5448310	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3673\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 11, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 43,439.00\r\nPositionHeld: PRINCIPAL III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 21-\r\nStatus: Permanent\r\nToDate: December 13, 2016\r\n	admin	Experiences	1
764153	2024-07-09	13:45:26.5488177	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3673\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 36,567.00\r\nPositionHeld: PRINCIPAL II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-\r\nStatus: Permanent\r\nToDate: May 24, 2015\r\n	admin	Experiences	1
764154	2024-07-09	13:45:26.5528045	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3673\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: May 09, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 32,810.00\r\nPositionHeld: PRINCIPAL II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
764155	2024-07-09	13:45:26.5577884	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3673\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: June 11, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 30,474.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: May 06, 2012\r\n	admin	Experiences	1
764156	2024-07-09	13:45:26.5617756	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3673\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: April 11, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 21,135.67\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
764157	2024-07-09	13:45:26.5657619	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3673\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 21,969.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-\r\nStatus: Permanent\r\nToDate: April 10, 2011\r\n	admin	Experiences	1
764158	2024-07-09	13:45:26.5707457	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3673\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: July 24, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 16,093.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
764159	2024-07-09	13:45:26.5747769	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3673\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 13,512.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: July 28, 2008\r\n	admin	Experiences	1
764160	2024-07-09	13:45:26.5797549	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3673\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: July 17, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 11,167.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
764161	2024-07-09	13:45:26.5837416	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3673\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 10,535.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-\r\nStatus: Permanent\r\nToDate: July 16, 2002\r\n	admin	Experiences	1
764162	2024-07-09	13:45:26.5877382	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3673\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 10,033.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
764163	2024-07-09	13:45:26.5926711	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3673\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 9,121.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-\r\nStatus: Permanent\r\nToDate: December 31, 1998\r\n	admin	Experiences	1
764164	2024-07-09	13:45:26.5986510	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3673\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: December 15, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 9,121.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-\r\nStatus: Permanent\r\nToDate: December 31, 1997\r\n	admin	Experiences	1
764165	2024-07-09	13:45:26.6036343	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3673\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: November 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 9,121.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 14, 1997\r\n	admin	Experiences	1
764166	2024-07-09	13:45:26.6086179	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3673\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: October 31, 1997\r\n	admin	Experiences	1
764167	2024-07-09	13:45:26.6126043	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3673\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 7,309.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 1996\r\n	admin	Experiences	1
764168	2024-07-09	13:45:26.6165910	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3673\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 6,179.67\r\nPositionHeld: ELEMENTARY GRADE TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 1995\r\n	admin	Experiences	1
764169	2024-07-09	13:45:26.6215743	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3673\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: November 10, 1989\r\nIsGovernmentService: True\r\nMonthlySalary: 3,102.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 1993\r\n	admin	Experiences	1
764170	2024-07-09	13:45:26.6255610	<Undetected>	Update	BasicInformationId: 3673\r\nBirthDate: February 18, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3549\r\nExtensionName: \r\nFirstName: BRYAN CRIS\r\nFullName: BRYAN CRIS S MAGADIA\r\nGender: Male\r\nLastName: MAGADIA\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3673\r\nBirthDate: February 18, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3549\r\nExtensionName: \r\nFirstName: BRYAN CRIS\r\nFullName: BRYAN CRIS MAGADIA\r\nGender: Male\r\nLastName: MAGADIA\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764171	2024-07-09	13:45:26.6305444	<Undetected>	Update	BasicInformationId: 3673\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3550\r\nExtensionName: \r\nFirstName: ROMEO\r\nFullName: ROMEO ROMERO SIKAT\r\nGender: Male\r\nLastName: SIKAT\r\nMaidenName: \r\nMiddleName: ROMERO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3673\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3550\r\nExtensionName: \r\nFirstName: ROMEO\r\nFullName: ROMEO SIKAT\r\nGender: Male\r\nLastName: SIKAT\r\nMaidenName: \r\nMiddleName: ROMERO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
764172	2024-07-09	13:45:26.6335343	<Undetected>	Update	BasicInformationId: 3673\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3551\r\nExtensionName: \r\nFirstName: LILIA\r\nFullName: LILIA ALBO VILLANUEVA\r\nGender: Male\r\nLastName: VILLANUEVA\r\nMaidenName: \r\nMiddleName: ALBO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3673\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3551\r\nExtensionName: \r\nFirstName: LILIA\r\nFullName: LILIA VILLANUEVA\r\nGender: Male\r\nLastName: VILLANUEVA\r\nMaidenName: \r\nMiddleName: ALBO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
764173	2024-07-09	13:45:26.6375209	<Undetected>	Update	BasicInformationId: 3673\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3552\r\nExtensionName: \r\nFirstName: CHRISTIAN ARLO\r\nFullName: CHRISTIAN ARLO S MAGADIA\r\nGender: Male\r\nLastName: MAGADIA\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3673\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3552\r\nExtensionName: \r\nFirstName: CHRISTIAN ARLO\r\nFullName: CHRISTIAN ARLO MAGADIA\r\nGender: Male\r\nLastName: MAGADIA\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764174	2024-07-09	13:45:26.6425045	<Undetected>	Update	BasicInformationId: 3673\r\nBirthDate: February 18, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3553\r\nExtensionName: \r\nFirstName: BRYAN CRIS\r\nFullName: BRYAN CRIS S MAGADIA\r\nGender: Male\r\nLastName: MAGADIA\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3673\r\nBirthDate: February 18, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3553\r\nExtensionName: \r\nFirstName: BRYAN CRIS\r\nFullName: BRYAN CRIS MAGADIA\r\nGender: Male\r\nLastName: MAGADIA\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764175	2024-07-09	13:45:26.6464909	<Undetected>	Update	BasicInformationId: 3673\r\nBirthDate: April 25, 1998\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3554\r\nExtensionName: \r\nFirstName: CHARLENE\r\nFullName: CHARLENE S MAGADIA\r\nGender: Female\r\nLastName: MAGADIA\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3673\r\nBirthDate: April 25, 1998\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3554\r\nExtensionName: \r\nFirstName: CHARLENE\r\nFullName: CHARLENE MAGADIA\r\nGender: Female\r\nLastName: MAGADIA\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764176	2024-07-09	13:45:26.6514744	<Undetected>	Update	BasicInformationId: 3673\r\nBirthDate: December 04, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3555\r\nExtensionName: \r\nFirstName: LOISE HEDWIG\r\nFullName: LOISE HEDWIG S MAGADIA\r\nGender: Male\r\nLastName: MAGADIA\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3673\r\nBirthDate: December 04, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3555\r\nExtensionName: \r\nFirstName: LOISE HEDWIG\r\nFullName: LOISE HEDWIG MAGADIA\r\nGender: Male\r\nLastName: MAGADIA\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764177	2024-07-09	13:45:26.6554609	<Undetected>	Update	BasicInformationId: 3673\r\nBirthDate: January 06, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3556\r\nExtensionName: \r\nFirstName: LAWRENCE\r\nFullName: LAWRENCE S MAGADIA\r\nGender: Male\r\nLastName: MAGADIA\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3673\r\nBirthDate: January 06, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3556\r\nExtensionName: \r\nFirstName: LAWRENCE\r\nFullName: LAWRENCE MAGADIA\r\nGender: Male\r\nLastName: MAGADIA\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764178	2024-07-09	13:45:26.6594478	<Undetected>	Update	BasicInformationId: 3673\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3470\r\n	BasicInformationId: 3673\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3470\r\n	admin	Questionnaires	1
764207	2024-07-09	14:07:07.6786319	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION MANAGEMENT COMMITTEE MEETING (MANCOM)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764220	2024-07-09	14:22:44.9612914	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3673\r\nEmployeeTrainingId: 0\r\nFromDate: January 11, 2024\r\nHours: 16\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: January 12, 2024\r\nTrainingId: 15232\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764221	2024-07-09	14:22:44.9662747	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3673\r\nEmployeeTrainingId: 0\r\nFromDate: November 17, 2023\r\nHours: 8\r\nNatureOfParticipation: LEADERSHIP\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, REGION IV A\r\nStatus: \r\nToDate: November 17, 2023\r\nTrainingId: 15670\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764222	2024-07-09	14:22:44.9712582	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3673\r\nEmployeeTrainingId: 0\r\nFromDate: October 02, 2023\r\nHours: 8\r\nNatureOfParticipation: LEADERSHIP\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, REGION IV A\r\nStatus: \r\nToDate: October 02, 2023\r\nTrainingId: 15694\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764223	2024-07-09	14:22:44.9752446	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3673\r\nEmployeeTrainingId: 0\r\nFromDate: October 12, 2023\r\nHours: 8\r\nNatureOfParticipation: INSTRUCTIONAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: October 12, 2023\r\nTrainingId: 15671\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764224	2024-07-09	14:22:44.9802280	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3673\r\nEmployeeTrainingId: 0\r\nFromDate: September 26, 2023\r\nHours: 24\r\nNatureOfParticipation: INSTRUCTIONAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, REGIONAL OFFICE (IV A) NEAR MALVAR\r\nStatus: \r\nToDate: September 29, 2023\r\nTrainingId: 15531\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764238	2024-07-09	14:27:01.3287123	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SAFE SPACE ACT AND GENDER - RESPONSIVE POLICIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764191	2024-07-09	14:05:37.8888783	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3672\r\nEmployeeTrainingId: 0\r\nFromDate: March 23, 2023\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOLS DIVISION OF BATANGAS CITY LEARNING RESOURCE MANAGEMENT SECTION\r\nStatus: \r\nToDate: March 23, 2023\r\nTrainingId: 15710\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764192	2024-07-09	14:05:37.8938784	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3672\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2023\r\nHours: 1\r\nNatureOfParticipation: NON-SUPERVISORY\r\nSponsoringAgency: BATANGAS STATE UNIVESITY COLLEGE OF INFORMATICS AND COMPUTING SCIENCES\r\nStatus: \r\nToDate: January 24, 2023\r\nTrainingId: 15711\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764193	2024-07-09	14:05:37.8978785	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3672\r\nEmployeeTrainingId: 0\r\nFromDate: November 23, 2022\r\nHours: 24\r\nNatureOfParticipation: NON-SUPERVISORY\r\nSponsoringAgency: DPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY LEARNING RESOURCE MANAGEMENT SECTION\r\nStatus: \r\nToDate: November 25, 2022\r\nTrainingId: 15712\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764194	2024-07-09	14:05:37.9028791	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3672\r\nEmployeeTrainingId: 0\r\nFromDate: September 07, 2022\r\nHours: 8\r\nNatureOfParticipation: NON-SUPERVISORY\r\nSponsoringAgency: DPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 07, 2022\r\nTrainingId: 15174\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764195	2024-07-09	14:05:37.9068784	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3672\r\nEmployeeTrainingId: 0\r\nFromDate: June 30, 2022\r\nHours: 8\r\nNatureOfParticipation: NON-SUPERVISORY\r\nSponsoringAgency: QMS TRAINING AND ADVOCACY TEAM AND HUMAN RESOURCE  AND DEVELOPMENT \r\nStatus: \r\nToDate: June 30, 2022\r\nTrainingId: 15225\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764196	2024-07-09	14:05:37.9118787	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3672\r\nEmployeeTrainingId: 0\r\nFromDate: May 20, 2022\r\nHours: 8\r\nNatureOfParticipation: NON-SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: May 20, 2022\r\nTrainingId: 15713\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764197	2024-07-09	14:05:37.9158783	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3672\r\nEmployeeTrainingId: 0\r\nFromDate: May 04, 2022\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: May 06, 2022\r\nTrainingId: 15478\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764198	2024-07-09	14:05:37.9208787	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3672\r\nEmployeeTrainingId: 0\r\nFromDate: May 25, 2022\r\nHours: 16\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: May 26, 2022\r\nTrainingId: 15478\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764199	2024-07-09	14:05:37.9258787	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3672\r\nEmployeeTrainingId: 0\r\nFromDate: April 07, 2022\r\nHours: 16\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: April 08, 2022\r\nTrainingId: 15715\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764200	2024-07-09	14:05:37.9298786	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3672\r\nEmployeeTrainingId: 0\r\nFromDate: September 26, 2020\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: AURORA BOULEVARD CONSORTIUM LIBRARIES , INC.\r\nStatus: \r\nToDate: September 26, 2020\r\nTrainingId: 15716\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764201	2024-07-09	14:05:37.9348786	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3672\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2020\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: PHILIPPINE LIBRARRIAN ASSOCIATION INC.(PLAI)\r\nStatus: \r\nToDate: September 11, 2020\r\nTrainingId: 15717\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764202	2024-07-09	14:05:37.9388787	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3672\r\nEmployeeTrainingId: 0\r\nFromDate: April 27, 2020\r\nHours: 2\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: PHILIPPINE LIBRARRIAN ASSOCIATION INC.(PLAI)\r\nStatus: \r\nToDate: April 27, 2020\r\nTrainingId: 15718\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764203	2024-07-09	14:05:37.9438791	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3672\r\nEmployeeTrainingId: 0\r\nFromDate: May 20, 2019\r\nHours: 32\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: UNIVERSITY OF BATANGAS\r\nStatus: \r\nToDate: May 24, 2019\r\nTrainingId: 15719\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764204	2024-07-09	14:05:37.9478847	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3672\r\nEmployeeTrainingId: 0\r\nFromDate: April 25, 2019\r\nHours: 20\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: LIBRARIANS TRAINING,INFORMATION & DEVELOPMENT SYSTEMS,INC.\r\nStatus: \r\nToDate: April 27, 2019\r\nTrainingId: 15720\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764205	2024-07-09	14:05:37.9518843	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3672\r\nEmployeeTrainingId: 0\r\nFromDate: August 02, 2018\r\nHours: 8\r\nNatureOfParticipation: RESEARCH\r\nSponsoringAgency: UNIVERSITY OF BATANGAS\r\nStatus: \r\nToDate: August 02, 2018\r\nTrainingId: 15721\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764206	2024-07-09	14:05:37.9568843	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3672\r\nEmployeeTrainingId: 0\r\nFromDate: July 04, 2018\r\nHours: 16\r\nNatureOfParticipation: SPERVISORY\r\nSponsoringAgency: PNU LIBRARY AND INFORMATION SCIENCE ASSOCIATION\r\nStatus: \r\nToDate: July 06, 2018\r\nTrainingId: 15722\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764209	2024-07-09	14:14:26.5712447	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3672\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE: WORD,EXCEL,PPT,GOOGLE DOCS,CANVA,WAKELET\r\n	admin	Skills	1
764210	2024-07-09	14:14:26.5822452	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3672\r\nSkillId: 0\r\nSkillName: MANAGED ELECTRONIC RESOURCES \r\n	admin	Skills	1
764211	2024-07-09	14:14:26.5872449	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3672\r\nOrganizationId: 0\r\nOrganizationName: PHILIPPINE LIBRARIANS ASSOCIATION INC.\r\n	admin	Organizations	1
764212	2024-07-09	14:14:26.5922454	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3672\r\nOrganizationId: 0\r\nOrganizationName: LIBRARIAN ASSOCIATION OF BATANGAS \r\n	admin	Organizations	1
764213	2024-07-09	14:14:26.5962449	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3672\r\nOrganizationId: 0\r\nOrganizationName: PHIPPINE ASSOCIATION OF ACADEMIC & RESEARCH LIBRARIANS \r\n	admin	Organizations	1
764214	2024-07-09	14:14:26.6012453	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3672\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY LIBRARY\r\nCompanyName: \r\nContactNumber: 723-2936\r\nExtensionName: \r\nFirstName: MILA\r\nLastName: SILANG\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764215	2024-07-09	14:14:26.6062450	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3672\r\nCharacterReferenceId: 0\r\nCompanyAddress: UNIVERSITY OF BATANGAS,LEARNING RESOURCE CENTER\r\nCompanyName: \r\nContactNumber: 723-1446\r\nExtensionName: \r\nFirstName: PAULITA\r\nLastName: JAVIER\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764216	2024-07-09	14:14:26.6102448	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3672\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS PROVINCIAL LIBRARY\r\nCompanyName: \r\nContactNumber: 984-5532\r\nExtensionName: \r\nFirstName: ALEXANDER\r\nLastName: LUNAR\r\nMiddleName: T\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764217	2024-07-09	14:14:26.6152450	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLK. 14 LOT 33\r\nAddress2: TIERRA VERDE\r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3672\r\nBirthDate: January 17, 1977\r\nBirthPlace: BATANGAS\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ELLEMICH2018@GMAIL.COM\r\nExtensionName: \r\nFirstName: MICHELLE\r\nFullName: MICHELLE P. VILLENA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 5.1\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: VILLENA\r\nMaidenName: \r\nMiddleName: PARTO\r\nMobileNumber: 09072496516\r\nNationality: Filipino\r\nPermanentAddress1: BLK. 14 LOT 33\r\nPermanentAddress2: TIERRA VERDE\r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ST. FRANCIS\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ST. FRANCIS\r\nTIN: \r\nWeight: 49\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK. 14 LOT 33\r\nAddress2: TIERRA VERDE\r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3672\r\nBirthDate: January 17, 1977\r\nBirthPlace: BATANGAS\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ELLEMICH2018@GMAIL.COM\r\nExtensionName: \r\nFirstName: MICHELLE\r\nFullName: MICHELLE P. VILLENA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005801279\r\nHDMF: 1490-0032-1456\r\nHeight: 5.1\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: VILLENA\r\nMaidenName: \r\nMiddleName: PARTO\r\nMobileNumber: 09072496516\r\nNationality: Filipino\r\nPermanentAddress1: BLK. 14 LOT 33\r\nPermanentAddress2: TIERRA VERDE\r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ST. FRANCIS\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050113227-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3320079-4\r\nStreetName: ST. FRANCIS\r\nTIN: 235-684-747-0000\r\nWeight: 49\r\nZipCode: 4200\r\n	admin	BasicInformation	1
764218	2024-07-09	14:14:26.6202451	<Undetected>	Update	BasicInformationId: 3672\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3469\r\n	BasicInformationId: 3672\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: RESIGNED-FOR GREENER PASTURE\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3469\r\n	admin	Questionnaires	1
764219	2024-07-09	14:19:06.8961650	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 03, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 42,652.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: December 31, 2013\r\n	admin	Experiences	1
764251	2024-07-09	14:45:59.5644602	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 42,652.00\r\nPositionHeld: PRINCIPAL IV \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: January 02, 2013\r\n	admin	Experiences	1
764291	2024-07-09	14:48:07.4833857	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3674\r\nEmployeeTrainingId: 0\r\nFromDate: July 27, 2023\r\nHours: 40\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: July 28, 2023\r\nTrainingId: 15683\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764225	2024-07-09	14:22:44.9842147	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3673\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: INSTRUCTIONAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15045\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764226	2024-07-09	14:22:44.9882014	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3673\r\nEmployeeTrainingId: 0\r\nFromDate: September 08, 2023\r\nHours: 8\r\nNatureOfParticipation: LEADERSHIP \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, REGION IV A\r\nStatus: \r\nToDate: September 08, 2023\r\nTrainingId: 15673\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764227	2024-07-09	14:22:44.9931846	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3673\r\nEmployeeTrainingId: 0\r\nFromDate: August 24, 2023\r\nHours: 16\r\nNatureOfParticipation: INSTRUCTIONAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: August 25, 2023\r\nTrainingId: 15675\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764228	2024-07-09	14:22:44.9971713	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3673\r\nEmployeeTrainingId: 0\r\nFromDate: August 23, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: August 23, 2023\r\nTrainingId: 15723\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764229	2024-07-09	14:22:45.0021547	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3673\r\nEmployeeTrainingId: 0\r\nFromDate: August 14, 2023\r\nHours: 40\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: August 18, 2023\r\nTrainingId: 15679\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764230	2024-07-09	14:22:45.0071379	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3673\r\nEmployeeTrainingId: 0\r\nFromDate: August 09, 2023\r\nHours: 24\r\nNatureOfParticipation: LEADERSHIP\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: August 11, 2023\r\nTrainingId: 15698\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764231	2024-07-09	14:22:45.0111248	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3673\r\nEmployeeTrainingId: 0\r\nFromDate: July 24, 2023\r\nHours: 40\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: July 28, 2023\r\nTrainingId: 15683\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764232	2024-07-09	14:22:45.0151113	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3673\r\nEmployeeTrainingId: 0\r\nFromDate: July 18, 2023\r\nHours: 24\r\nNatureOfParticipation: INSTRUCTIONAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: July 20, 2023\r\nTrainingId: 15685\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764233	2024-07-09	14:22:45.0200946	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3673\r\nEmployeeTrainingId: 0\r\nFromDate: May 23, 2023\r\nHours: 8\r\nNatureOfParticipation: INSTRUCTIONAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: May 23, 2023\r\nTrainingId: 15700\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764234	2024-07-09	14:22:45.0240813	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3673\r\nEmployeeTrainingId: 0\r\nFromDate: May 15, 2023\r\nHours: 24\r\nNatureOfParticipation: INSTRUCTIONAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: May 17, 2023\r\nTrainingId: 15046\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764235	2024-07-09	14:22:45.0280680	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3673\r\nEmployeeTrainingId: 0\r\nFromDate: April 11, 2023\r\nHours: 40\r\nNatureOfParticipation: INSTRUCTIONAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: April 15, 2023\r\nTrainingId: 15686\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764236	2024-07-09	14:22:45.0330513	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3673\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: INSTRUCTIONAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764237	2024-07-09	14:22:45.0380348	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3673\r\nEmployeeTrainingId: 0\r\nFromDate: March 21, 2023\r\nHours: 24\r\nNatureOfParticipation: INSTRUCTIONAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: March 23, 2023\r\nTrainingId: 15689\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764241	2024-07-09	14:38:28.1853845	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3673\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
764242	2024-07-09	14:38:28.1923612	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3673\r\nRecognitionId: 0\r\nRecognitionName: MOST OUTSTANDING PRINCIPAL (DIVISION LEVEL) 2015 AND 2017\r\n	admin	Recognitions	1
764243	2024-07-09	14:38:28.1973464	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3673\r\nOrganizationId: 0\r\nOrganizationName: ASSOCIATION OF LEARNING LEADERS \r\n	admin	Organizations	1
764240	2024-07-09	14:32:38.8311256	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING OF CHIEF TRAINERS ON THE IMPLEMENTATION OF THE NATIONAL LEARNING CAMP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764275	2024-07-09	14:48:07.3667563	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3674\r\nSkillId: 0\r\nSkillName: DRIVING\r\n	admin	Skills	1
764276	2024-07-09	14:48:07.3717396	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3674\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
764277	2024-07-09	14:48:07.3767229	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3674\r\nOrganizationId: 0\r\nOrganizationName: PUBLIC SHOOLS DISTRICT SUPERVISORS' ASSOCIATION\r\n	admin	Organizations	1
764278	2024-07-09	14:48:07.3817062	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3674\r\nOrganizationId: 0\r\nOrganizationName: NEAP FACILITATOR\r\n	admin	Organizations	1
764279	2024-07-09	14:48:07.3856930	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3674\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY PUBLIC SHOOL TEACHERS ASSOCIATION\r\n	admin	Organizations	1
764280	2024-07-09	14:48:07.3906763	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3674\r\nEmployeeTrainingId: 0\r\nFromDate: November 11, 2024\r\nHours: 16\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: January 12, 2024\r\nTrainingId: 15232\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764281	2024-07-09	14:48:07.3946629	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3674\r\nEmployeeTrainingId: 0\r\nFromDate: November 17, 2023\r\nHours: 8\r\nNatureOfParticipation: LEADERSHIP\r\nSponsoringAgency: REGIONAL OFFICE (IV-A) DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: November 17, 2023\r\nTrainingId: 15670\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764282	2024-07-09	14:48:07.3996462	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3674\r\nEmployeeTrainingId: 0\r\nFromDate: December 02, 2023\r\nHours: 8\r\nNatureOfParticipation: LEADERSHIP\r\nSponsoringAgency: REGIONAL OFFICE (IV-A) DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: December 02, 2023\r\nTrainingId: 15694\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764283	2024-07-09	14:48:07.4036330	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3674\r\nEmployeeTrainingId: 0\r\nFromDate: October 12, 2023\r\nHours: 8\r\nNatureOfParticipation: INSTRUCTIONAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: October 12, 2023\r\nTrainingId: 15724\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764284	2024-07-09	14:48:07.4086163	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3674\r\nEmployeeTrainingId: 0\r\nFromDate: September 26, 2023\r\nHours: 24\r\nNatureOfParticipation: INSTRUCTIONAL \r\nSponsoringAgency: REGIONAL OFFICE (IV-A) DEPARTMENT OF EDUCATION, NEAP MALVAR\r\nStatus: \r\nToDate: September 29, 2023\r\nTrainingId: 15531\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764285	2024-07-09	14:48:07.4175866	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3674\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15045\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764286	2024-07-09	14:48:07.4265563	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3674\r\nEmployeeTrainingId: 0\r\nFromDate: September 08, 2023\r\nHours: 8\r\nNatureOfParticipation: LEADERSHIP\r\nSponsoringAgency: REGIONAL OFFICE (IV-A) DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: September 08, 2023\r\nTrainingId: 15673\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764287	2024-07-09	14:48:07.4395129	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3674\r\nEmployeeTrainingId: 0\r\nFromDate: August 24, 2023\r\nHours: 16\r\nNatureOfParticipation: INSTRUCTIONAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: August 25, 2023\r\nTrainingId: 15675\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764288	2024-07-09	14:48:07.4584495	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3674\r\nEmployeeTrainingId: 0\r\nFromDate: August 23, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCAQTION, BATANGAS CITY\r\nStatus: \r\nToDate: August 20, 2023\r\nTrainingId: 15676\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764289	2024-07-09	14:48:07.4714062	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3674\r\nEmployeeTrainingId: 0\r\nFromDate: August 14, 2023\r\nHours: 40\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: August 18, 2023\r\nTrainingId: 15679\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764290	2024-07-09	14:48:07.4784021	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3674\r\nEmployeeTrainingId: 0\r\nFromDate: August 09, 2023\r\nHours: 24\r\nNatureOfParticipation: LEADERSHIP\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: August 08, 2023\r\nTrainingId: 15698\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764404	2024-07-09	15:39:51.2857989	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3675\r\nSkillId: 0\r\nSkillName: TYPING AND READING BOOKS \r\n	admin	Skills	1
764245	2024-07-09	14:38:28.2073519	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3673\r\nEmployeeTrainingId: 0\r\nFromDate: July 25, 2022\r\nHours: 40\r\nNatureOfParticipation: INSTRUCTIONAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: July 29, 2022\r\nTrainingId: 15704\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764246	2024-07-09	14:38:28.2122944	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3673\r\nCharacterReferenceId: 0\r\nCompanyAddress: BALAGTAS, BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 7022094\r\nExtensionName: \r\nFirstName: ANGELISA \r\nLastName: AMOTO\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764247	2024-07-09	14:38:28.2162813	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3673\r\nCharacterReferenceId: 0\r\nCompanyAddress: TALUMPOK WEST, BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09175985168\r\nExtensionName: \r\nFirstName: SACORO \r\nLastName: COMIA\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764248	2024-07-09	14:38:28.2222617	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3673\r\nCharacterReferenceId: 0\r\nCompanyAddress: CALACA, BATANGAS\r\nCompanyName: \r\nContactNumber: 7022094\r\nExtensionName: \r\nFirstName: HERMOGENES \r\nLastName: PANGANIBAN \r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764249	2024-07-09	14:38:28.2262479	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO KANLURAN\r\nBarangay: GULOD ITAAS\r\nBasicInformationId: 3673\r\nBirthDate: September 20, 1967\r\nBirthPlace: CALAPAN CITY, ORIENTAL MINDORO\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: charity.magadia0012@deped.gov.ph\r\nExtensionName: \r\nFirstName: CHARITY\r\nFullName: CHARITY S. MAGADIA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MAGADIA\r\nMaidenName: \r\nMiddleName: SIKAT\r\nMobileNumber: 09667522908\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO KANLURAN\r\nPermanentBarangay: GULOD ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO KANLURAN\r\nBarangay: GULOD ITAAS\r\nBasicInformationId: 3673\r\nBirthDate: September 20, 1967\r\nBirthPlace: CALAPAN CITY, ORIENTAL MINDORO\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: charity.magadia0012@deped.gov.ph\r\nExtensionName: \r\nFirstName: CHARITY\r\nFullName: CHARITY S. MAGADIA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02002992225\r\nHDMF: 1490-0007-4047\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MAGADIA\r\nMaidenName: \r\nMiddleName: SIKAT\r\nMobileNumber: 09667522908\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO KANLURAN\r\nPermanentBarangay: GULOD ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000007404-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 124-521-792-0000\r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
764250	2024-07-09	14:38:28.2312310	<Undetected>	Update	BasicInformationId: 3673\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3470\r\n	BasicInformationId: 3673\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3470\r\n	admin	Questionnaires	1
764328	2024-07-09	14:55:31.7513359	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF SCIENCE IN COMPUTER SCIENCE\r\nLevel: College\r\n	admin	Courses	1
764330	2024-07-09	14:58:29.4406066	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF SCIENCE IN SECONDARY EDUCATION\r\nLevel: College\r\n	admin	Courses	1
764333	2024-07-09	15:01:07.0638409	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF SCIENCE IN SECONDARY EDUCATION (18 UNITS EARNED)\r\nLevel: College\r\n	admin	Courses	1
764334	2024-07-09	15:01:24.1152665	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: PINAMUCAN PROPER\r\nBasicInformationId: 0\r\nBirthDate: December 23, 1979\r\nBirthPlace: SUBIO IBABA, AGONCILLO, BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: joseil.camacho@deped.gov.ph\r\nExtensionName: \r\nFirstName: JOSEIL\r\nFullName: JOSEIL DS. CAMACHO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CAMACHO\r\nMaidenName: \r\nMiddleName: DE SAGUN\r\nMobileNumber: 09482503086\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: PINAMUCAN PROPER\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 2\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 2\r\nTIN: \r\nWeight: 49\r\nZipCode: 4200\r\n	admin	BasicInformation	1
764335	2024-07-09	15:01:24.1318928	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: FIRST HONOR\r\nBasicInformationId: 3676\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1987\r\nDateTo: 1993\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SUBIC ELEMENTARY SCHOOL\r\nYearGraduated: 1993\r\n	admin	EducationalBackgrounds	1
764336	2024-07-09	15:01:24.1318928	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3676\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1993\r\nDateTo: 1997\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: OUR LADY OF MIRACULOUS MEDAL ACADEMY (OLMMA)\r\nYearGraduated: 1997\r\n	admin	EducationalBackgrounds	1
764405	2024-07-09	15:39:51.2907979	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3675\r\nRecognitionId: 0\r\nRecognitionName: OUTSTANDING PUBLIC SCHOOLS DISTRICT SUPERVISORS ( CID) 2022\r\n	admin	Recognitions	1
764252	2024-07-09	14:45:59.5684593	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: August 22, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 37,812.00\r\nPositionHeld: PRINCIPAL IV \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
764253	2024-07-09	14:45:59.5739673	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 35,219.00\r\nPositionHeld: PRINCIPAL III \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 21-\r\nStatus: Permanent\r\nToDate: August 21, 2011\r\n	admin	Experiences	1
764254	2024-07-09	14:45:59.5779732	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 30,945.00\r\nPositionHeld: PRINCIPAL III \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 21-\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
764255	2024-07-09	14:45:59.5839736	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 26,671.00\r\nPositionHeld: PRINCIPAL III \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 21-\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
764256	2024-07-09	14:45:59.5879735	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 21,537.00\r\nPositionHeld: PRINCIPAL III \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 21-\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
764257	2024-07-09	14:45:59.5929738	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 03, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 19,579.00\r\nPositionHeld: PRINCIPAL III \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 21-\r\nStatus: Permanent\r\nToDate: June 04, 2008\r\n	admin	Experiences	1
764258	2024-07-09	14:45:59.5969726	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 18,471.00\r\nPositionHeld: PRINCIPAL II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-\r\nStatus: Permanent\r\nToDate: June 03, 2008\r\n	admin	Experiences	1
764259	2024-07-09	14:45:59.6019734	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 25, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 16,792.00\r\nPositionHeld: PRINCIPAL II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
764260	2024-07-09	14:45:59.6069735	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 01, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 16,237.00\r\nPositionHeld: PRINCIPAL I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: January 24, 2006\r\n	admin	Experiences	1
764261	2024-07-09	14:45:59.6109731	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 15,841.00\r\nPositionHeld: PRINCIPAL I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: June 30, 2005\r\n	admin	Experiences	1
764262	2024-07-09	14:45:59.6159733	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: February 08, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 15,087.00\r\nPositionHeld: PRINCIPAL I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
764406	2024-07-09	15:39:51.2998392	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3675\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY PUBLIC SCHOOL AND  EMPLOYEES ASSOCIATION \r\n	admin	Organizations	1
764263	2024-07-09	14:45:59.6209723	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 12,667.00\r\nPositionHeld: HEAD TEACHER III \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-\r\nStatus: Permanent\r\nToDate: February 07, 2001\r\n	admin	Experiences	1
764264	2024-07-09	14:45:59.6259715	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: November 18, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 11,515.00\r\nPositionHeld: HEAD TEACHER III \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
764265	2024-07-09	14:45:59.6299732	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 9,668.00\r\nPositionHeld: TEACHER III \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: November 17, 1999\r\n	admin	Experiences	1
764266	2024-07-09	14:45:59.6349731	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 1988\r\nIsGovernmentService: True\r\nMonthlySalary: 9,668.00\r\nPositionHeld: TEACHER III \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: December 31, 1998\r\n	admin	Experiences	1
764267	2024-07-09	14:45:59.6399734	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: November 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 9,668.00\r\nPositionHeld: TEACHER III \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: December 31, 1997\r\n	admin	Experiences	1
764268	2024-07-09	14:45:59.6439729	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 8,118.00\r\nPositionHeld: TEACHER III \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: October 31, 1997\r\n	admin	Experiences	1
764269	2024-07-09	14:45:59.6489731	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 6,568.00\r\nPositionHeld: TEACHER III \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: December 31, 1996\r\n	admin	Experiences	1
764270	2024-07-09	14:45:59.6539739	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 5,240.00\r\nPositionHeld: TEACHER III \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Job Order\r\nToDate: December 31, 1995\r\n	admin	Experiences	1
764271	2024-07-09	14:45:59.6589793	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 4,240.00\r\nPositionHeld: TEACHER III \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: December 31, 1994\r\n	admin	Experiences	1
764272	2024-07-09	14:45:59.6629790	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: October 07, 1993\r\nIsGovernmentService: True\r\nMonthlySalary: 3,540.00\r\nPositionHeld: TEACHER III \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: December 31, 1993\r\n	admin	Experiences	1
764273	2024-07-09	14:45:59.6689797	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 01, 1989\r\nIsGovernmentService: True\r\nMonthlySalary: 3,102.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: October 06, 1993\r\n	admin	Experiences	1
770652	2025-03-17	13:20:07.2368243	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3781\r\nRecognitionId: 0\r\nRecognitionName: RESEARCH PRESENTER (INTERNATIONAL RESEARCH PRESENTER ON MULTIDISCIPLINARY AND CURRENT EDUCATIONAL RESEARCH)\r\n	admin	Recognitions	1
764274	2024-07-09	14:45:59.6719789	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 13, 1989\r\nIsGovernmentService: True\r\nMonthlySalary: 1,764.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: June 30, 1989\r\n	admin	Experiences	1
764321	2024-07-09	14:50:48.4327346	<Undetected>	Insert	BasicInformationId: \r\nCommunityServiceId: \r\nDateFrom: \r\nDateTo: \r\nNumberOfHours: \r\nOrganizationAddress: \r\nOrganizationName: \r\nStatus: \r\n	BasicInformationId: 3675\r\nCommunityServiceId: 0\r\nDateFrom: June 13, 1989\r\nDateTo: July 09, 2024\r\nNumberOfHours: 0\r\nOrganizationAddress: BATANGAS CITY PUBLIC SCHOOL TEACHERS AND EMPLOYEES ASSOCIATION\r\nOrganizationName: BATANGAS CITY PUBLIC SCHOOL TEACHERS AND EMPLOYEES ASSOCIATION \r\nStatus: MEMBER\r\n	admin	CommunityServices	1
764322	2024-07-09	14:50:48.4377360	<Undetected>	Insert	BasicInformationId: \r\nCommunityServiceId: \r\nDateFrom: \r\nDateTo: \r\nNumberOfHours: \r\nOrganizationAddress: \r\nOrganizationName: \r\nStatus: \r\n	BasicInformationId: 3675\r\nCommunityServiceId: 0\r\nDateFrom: January 09, 2000\r\nDateTo: July 09, 2024\r\nNumberOfHours: 0\r\nOrganizationAddress: WEST DISTRICT TEACHERS & EMPLOYEES  COOPERATIVE \r\nOrganizationName: WEST DISTRICT TEACHERS & EMPLOYEES  COOPERATIVE \r\nStatus: BOARD OF DIRECTOR \r\n	admin	CommunityServices	1
764323	2024-07-09	14:50:48.4427360	<Undetected>	Insert	BasicInformationId: \r\nCommunityServiceId: \r\nDateFrom: \r\nDateTo: \r\nNumberOfHours: \r\nOrganizationAddress: \r\nOrganizationName: \r\nStatus: \r\n	BasicInformationId: 3675\r\nCommunityServiceId: 0\r\nDateFrom: September 20, 2013\r\nDateTo: July 09, 2024\r\nNumberOfHours: 0\r\nOrganizationAddress: REGIONAL ASSOCIATION OF PUBLIC SCHOOLS DISTRICT SUPERVISOR \r\nOrganizationName: REGIONAL ASSOCIATION OF PUBLIC SCHOOLS DISTRICT SUPERVISOR \r\nStatus: MEMBER \r\n	admin	CommunityServices	1
764324	2024-07-09	14:50:48.4468555	<Undetected>	Update	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 10805\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 66,385.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Job Order\r\nToDate: February 01, 2019\r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 10805\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 66,385.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: February 01, 2019\r\n	admin	Experiences	1
764325	2024-07-09	14:50:48.4518530	<Undetected>	Update	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 10859\r\nFromDate: January 01, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 5,240.00\r\nPositionHeld: TEACHER III \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Job Order\r\nToDate: December 31, 1995\r\n	BasicInformationId: 3675\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 10859\r\nFromDate: January 01, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 5,240.00\r\nPositionHeld: TEACHER III \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: December 31, 1995\r\n	admin	Experiences	1
764326	2024-07-09	14:51:59.9035208	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON THE PROVISIONS OF REPUBLIC ACT ( RA) 11650\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764327	2024-07-09	14:53:45.1917987	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING OF TEACHERS, SCHOOLHEADS AND SUPERVISORS IN EDUCATING LEARNERS WITH DISABILITIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764329	2024-07-09	14:56:27.4167576	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL TRAINING ON FILIPINO SIGN LANGUAGE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764331	2024-07-09	14:58:42.7757816	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING ON THE USE OF COMPENDIUM OF TEACHING AND LEARNING RESOURCES ON FILIPINO SIGN LANGUAGE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764332	2024-07-09	15:00:57.5102944	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: GABAY ( GUIDE): STRENGTHENING INCLUSIVE LEARNING DELIVERY GUIDE FOR LEARNERS WITH DISABILITY IN THE K TO 12 PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764345	2024-07-09	15:02:40.7285648	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: GABAY ( GUIDE) : STRENGTHENING INCLUSIVE EDUCATION FOR BLIND, DEAF AND DEAFBLIND CHILDREN- PLANNING WORKSHOP FOR YEAR 5 IMPLEMENTATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764347	2024-07-09	15:04:56.4614175	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON THE DEVELOPMENT ON INCLUSIVE LEARNING DELIVERY GUIDE FOR LEARNERS WITH DISABILITY IN THE K TO 12 PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764349	2024-07-09	15:06:46.7109583	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ONLINE MEETING OF REGIONAL AND DIVISION FOCAL PERSONS FOR SPECIAL NEEDS EDUCATION PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764407	2024-07-09	15:39:51.3047962	<Undetected>	Update	BasicInformationId: 3675\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3472\r\n	BasicInformationId: 3675\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: \r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3472\r\n	admin	Questionnaires	1
764292	2024-07-09	14:48:07.4883691	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3674\r\nEmployeeTrainingId: 0\r\nFromDate: July 18, 2023\r\nHours: 24\r\nNatureOfParticipation: INSTRUCTIONAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: July 20, 2023\r\nTrainingId: 15685\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764293	2024-07-09	14:48:07.4923566	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3674\r\nEmployeeTrainingId: 0\r\nFromDate: May 23, 2023\r\nHours: 8\r\nNatureOfParticipation: INSTRUCTIONAL\r\nSponsoringAgency: DEAPRTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: May 23, 2023\r\nTrainingId: 15700\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764294	2024-07-09	14:48:07.4973398	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3674\r\nEmployeeTrainingId: 0\r\nFromDate: May 15, 2023\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: May 17, 2023\r\nTrainingId: 15145\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764295	2024-07-09	14:48:07.5013265	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3674\r\nEmployeeTrainingId: 0\r\nFromDate: April 11, 2023\r\nHours: 40\r\nNatureOfParticipation: INSTRUCTIONAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: April 15, 2023\r\nTrainingId: 15686\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764296	2024-07-09	14:48:07.5063100	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3674\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: INSTRUCTIONAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15725\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764297	2024-07-09	14:48:07.5112934	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3674\r\nEmployeeTrainingId: 0\r\nFromDate: March 21, 2023\r\nHours: 24\r\nNatureOfParticipation: INSTRUCTIONAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: March 23, 2023\r\nTrainingId: 15689\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764298	2024-07-09	14:48:07.5152801	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3674\r\nEmployeeTrainingId: 0\r\nFromDate: March 01, 2023\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: March 01, 2023\r\nTrainingId: 15690\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764299	2024-07-09	14:48:07.5202635	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3674\r\nEmployeeTrainingId: 0\r\nFromDate: January 23, 2023\r\nHours: 40\r\nNatureOfParticipation: LEADERSHIP\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: January 26, 2023\r\nTrainingId: 15726\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764300	2024-07-09	14:48:07.5242498	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3674\r\nEmployeeTrainingId: 0\r\nFromDate: June 28, 2023\r\nHours: 40\r\nNatureOfParticipation: INSTRUCTIONAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: June 30, 2023\r\nTrainingId: 15727\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764301	2024-07-09	14:48:07.5292331	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3674\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 47,448.00\r\nPositionHeld: PUBLIC SCHOOL DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: December 12, 2016\r\n	admin	Experiences	1
764302	2024-07-09	14:48:07.5332198	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3674\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: May 25, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 43,439.00\r\nPositionHeld: PRINCIPAL III \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: March 12, 2015\r\n	admin	Experiences	1
764303	2024-07-09	14:48:07.5382032	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3674\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 39,493.00\r\nPositionHeld: PRINCIPAL III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 21-1\r\nStatus: Permanent\r\nToDate: November 12, 2014\r\n	admin	Experiences	1
764304	2024-07-09	14:48:07.5431866	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3674\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: December 12, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 36,970.00\r\nPositionHeld: PRINCIPAL II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-1\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
765055	2024-07-10	15:25:04.7778971	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DRILLING TECHNOLOGY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764305	2024-07-09	14:48:07.5471732	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3674\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: February 01, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 36,567.00\r\nPositionHeld: PRINCIPAL II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-1\r\nStatus: Permanent\r\nToDate: December 19, 2011\r\n	admin	Experiences	1
764306	2024-07-09	14:48:07.5521566	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3674\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: February 02, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 30,880.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: January 27, 2003\r\n	admin	Experiences	1
764307	2024-07-09	14:48:07.5571403	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3674\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: October 07, 1993\r\nIsGovernmentService: True\r\nMonthlySalary: 30,474.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: February 20, 2002\r\n	admin	Experiences	1
764308	2024-07-09	14:48:07.5611259	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3674\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 07, 1987\r\nIsGovernmentService: True\r\nMonthlySalary: 270,880.00\r\nPositionHeld: PRINCIPAL I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: August 12, 1987\r\n	admin	Experiences	1
764309	2024-07-09	14:48:07.5651131	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3674\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: August 12, 1987\r\nIsGovernmentService: True\r\nMonthlySalary: 23,703.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Casual\r\nToDate: September 09, 1987\r\n	admin	Experiences	1
764310	2024-07-09	14:48:07.5700965	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3674\r\nCharacterReferenceId: 0\r\nCompanyAddress: DEPED, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 043 - 702 - 2094\r\nExtensionName: \r\nFirstName: HERMOGENES\r\nLastName: PANGANIBAN\r\nMiddleName: M.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764311	2024-07-09	14:48:07.5740831	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3674\r\nCharacterReferenceId: 0\r\nCompanyAddress: TALUMPOK WEST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175985168\r\nExtensionName: \r\nFirstName: SACORO \r\nLastName: COMIA\r\nMiddleName: R. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764312	2024-07-09	14:48:07.5800635	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3674\r\nCharacterReferenceId: 0\r\nCompanyAddress: DEPED, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 043 - 702 - 2094\r\nExtensionName: \r\nFirstName: ANGELISA\r\nLastName: AMOTO\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764313	2024-07-09	14:48:07.5840498	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 567\r\nAddress2: \r\nBarangay: SAMPAGA EAST\r\nBasicInformationId: 3674\r\nBirthDate: December 23, 1967\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rowena.asi001@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROWENA\r\nFullName: ROWENA T. ASI\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: TOLENTINO\r\nMobileNumber: 09171600146\r\nNationality: Filipino\r\nPermanentAddress1: 567\r\nPermanentAddress2: \r\nPermanentBarangay: SAMPAGA EAST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LUMANGLAS STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LUMANGLAS STREET\r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 567\r\nAddress2: \r\nBarangay: SAMPAGA EAST\r\nBasicInformationId: 3674\r\nBirthDate: December 23, 1967\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rowena.asi001@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROWENA\r\nFullName: ROWENA T. ASI\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02002993040\r\nHDMF: 1490-0083-4151\r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: TOLENTINO\r\nMobileNumber: 09171600146\r\nNationality: Filipino\r\nPermanentAddress1: 567\r\nPermanentAddress2: \r\nPermanentBarangay: SAMPAGA EAST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LUMANGLAS STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000001262-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LUMANGLAS STREET\r\nTIN: 128-617-118-0000\r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
764314	2024-07-09	14:48:07.5890332	<Undetected>	Update	BasicInformationId: 3674\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09667369533\r\nEmployeeRelativeId: 3557\r\nExtensionName: JR\r\nFirstName: ANTONIO\r\nFullName: ANTONIO RAMOS ASI JR\r\nGender: Male\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: RAMOS\r\nOccupation: SELF EMPLOYED\r\nRelationship: Husband\r\n	BasicInformationId: 3674\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09667369533\r\nEmployeeRelativeId: 3557\r\nExtensionName: JR\r\nFirstName: ANTONIO\r\nFullName: ANTONIO ASI JR\r\nGender: Male\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: RAMOS\r\nOccupation: SELF EMPLOYED\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771106	2025-03-17	16:00:28.7933754	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3795\r\nRecognitionId: 0\r\nRecognitionName: BEST IN PRACTICE TEACHING (BEED)\r\n	admin	Recognitions	1
764315	2024-07-09	14:48:07.5940168	<Undetected>	Update	BasicInformationId: 3674\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3558\r\nExtensionName: \r\nFirstName: MARTIN\r\nFullName: MARTIN MENDOZA TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3674\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3558\r\nExtensionName: \r\nFirstName: MARTIN\r\nFullName: MARTIN TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
764316	2024-07-09	14:48:07.5990002	<Undetected>	Update	BasicInformationId: 3674\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3559\r\nExtensionName: \r\nFirstName: NORMA\r\nFullName: NORMA BOLANOS DIMACULANGAN\r\nGender: Female\r\nLastName: DIMACULANGAN\r\nMaidenName: \r\nMiddleName: BOLANOS\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3674\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3559\r\nExtensionName: \r\nFirstName: NORMA\r\nFullName: NORMA DIMACULANGAN\r\nGender: Female\r\nLastName: DIMACULANGAN\r\nMaidenName: \r\nMiddleName: BOLANOS\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
764317	2024-07-09	14:48:07.6029867	<Undetected>	Update	BasicInformationId: 3674\r\nBirthDate: March 01, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3560\r\nExtensionName: \r\nFirstName: ANTHONY ROWEN\r\nFullName: ANTHONY ROWEN T ASI\r\nGender: Male\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: T\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3674\r\nBirthDate: March 01, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3560\r\nExtensionName: \r\nFirstName: ANTHONY ROWEN\r\nFullName: ANTHONY ROWEN ASI\r\nGender: Male\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: T\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764318	2024-07-09	14:48:07.6069732	<Undetected>	Update	BasicInformationId: 3674\r\nBirthDate: January 24, 1998\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3561\r\nExtensionName: \r\nFirstName: ANDREA MAUREEN\r\nFullName: ANDREA MAUREEN T ASI\r\nGender: Female\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: T\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3674\r\nBirthDate: January 24, 1998\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3561\r\nExtensionName: \r\nFirstName: ANDREA MAUREEN\r\nFullName: ANDREA MAUREEN ASI\r\nGender: Female\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: T\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764319	2024-07-09	14:48:07.6119566	<Undetected>	Update	BasicInformationId: 3674\r\nBirthDate: April 06, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3562\r\nExtensionName: \r\nFirstName: ANGELICA\r\nFullName: ANGELICA T ASI\r\nGender: Female\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: T\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3674\r\nBirthDate: April 06, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3562\r\nExtensionName: \r\nFirstName: ANGELICA\r\nFullName: ANGELICA ASI\r\nGender: Female\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: T\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764320	2024-07-09	14:48:07.6169399	<Undetected>	Update	BasicInformationId: 3674\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3471\r\n	BasicInformationId: 3674\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3471\r\n	admin	Questionnaires	1
764346	2024-07-09	15:02:34.5860648	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: TECH. VOC\r\nLevel: Vocational\r\n	admin	Courses	1
764348	2024-07-09	15:04:48.3706482	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BS INDUSTRIAL EDUCATION \r\nLevel: College\r\n	admin	Courses	1
764350	2024-07-09	15:06:45.1946383	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MAEd - Filipino\r\nLevel: Master's\r\n	admin	Courses	1
764358	2024-07-09	15:07:32.4992133	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MAEd\r\nLevel: College\r\n	admin	Courses	1
764360	2024-07-09	15:09:40.5219800	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: PhD\r\nLevel: Doctorate\r\n	admin	Courses	1
764422	2024-07-09	16:10:42.7838442	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: #410\r\nAddress2: \r\nBarangay: BANABA CENTER\r\nBasicInformationId: 0\r\nBirthDate: July 09, 2024\r\nBirthPlace: \r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: demetrio.bautista001@deped.gov.ph\r\nExtensionName: \r\nFirstName: DEMETRIO\r\nFullName: DEMETRIO B. BAUTISTA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.71\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BAUTISTA\r\nMaidenName: \r\nMiddleName: BALBUENA\r\nMobileNumber: 09295320442\r\nNationality: Filipino\r\nPermanentAddress1: #410\r\nPermanentAddress2: \r\nPermanentBarangay: BANABA CENTER\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO PARANG 1\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO PARANG 1\r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
764423	2024-07-09	16:10:42.8057730	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3677\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1983\r\nDateTo: 1989\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BANABA SOUTH ELEMENTARY SCHOOL\r\nYearGraduated: 1989\r\n	admin	EducationalBackgrounds	1
764424	2024-07-09	16:10:42.8057730	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3677\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1989\r\nDateTo: 1993\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BANABA WEST BARANGAY HIGH SCHOOL\r\nYearGraduated: 1993\r\n	admin	EducationalBackgrounds	1
764551	2024-07-10	09:14:44.0370395	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 NATIONAL TEACHERS' MONTH CELEBRATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764337	2024-07-09	15:01:24.1318928	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: PSB SCHOLAR\r\nBasicInformationId: 3676\r\nCourse: \r\nCourseId: 1317\r\nCourseOrMajor: \r\nDateFrom: 1997\r\nDateTo: 2001\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: RIZAL COLLEGE OF TAAL \r\nYearGraduated: 2001\r\n	admin	EducationalBackgrounds	1
764338	2024-07-09	15:01:24.1318928	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3676\r\nCourse: \r\nCourseId: 1319\r\nCourseOrMajor: \r\nDateFrom: 2014\r\nDateTo: 2015\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: AGONCILLO COLLEGE INC.\r\nYearGraduated: 2015\r\n	admin	EducationalBackgrounds	1
764339	2024-07-09	15:01:24.1318928	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3676\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09276087653\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: BERNARD\r\nFullName: BERNARD TURBANADA CAMACHO\r\nGender: Male\r\nLastName: CAMACHO\r\nMaidenName: \r\nMiddleName: TURBANADA\r\nOccupation: DRIVER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
764340	2024-07-09	15:01:24.1318928	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3676\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOSE\r\nFullName: JOSE BRUCE DE SAGUN\r\nGender: Male\r\nLastName: DE SAGUN\r\nMaidenName: \r\nMiddleName: BRUCE\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
764341	2024-07-09	15:01:24.1318928	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3676\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CARMEN\r\nFullName: CARMEN COSME GAMO\r\nGender: Female\r\nLastName: GAMO\r\nMaidenName: \r\nMiddleName: COSME\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
764342	2024-07-09	15:01:24.1318928	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3676\r\nBirthDate: October 24, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROLF YZEN\r\nFullName: ROLF YZEN D CAMACHO\r\nGender: Male\r\nLastName: CAMACHO\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764343	2024-07-09	15:01:24.1328889	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3676\r\nBirthDate: March 08, 2016\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LEIX YNOEH\r\nFullName: LEIX YNOEH D CAMACHO\r\nGender: Female\r\nLastName: CAMACHO\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764344	2024-07-09	15:01:24.1328889	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3676\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
764380	2024-07-09	15:33:20.5387443	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3676\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
764381	2024-07-09	15:33:20.5427308	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3676\r\nSkillId: 0\r\nSkillName: RECORDS MANAGEMENT SYSTEM\r\n	admin	Skills	1
764382	2024-07-09	15:33:20.5467174	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3676\r\nSkillId: 0\r\nSkillName: DATA ENTRY DOCUMENTATION\r\n	admin	Skills	1
764383	2024-07-09	15:33:20.5517465	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3676\r\nSkillId: 0\r\nSkillName: MEETING MINUTES\r\n	admin	Skills	1
764384	2024-07-09	15:33:20.5557273	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3676\r\nDateOfExamination: September 30, 2018\r\nDateOfRelease: July 12, 2018\r\nEligibilityDocumentTypeId: 0\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 30, 2018\r\nLevelOfEligibility: \r\nLicenseNumber: 1693014\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 75.0 %\r\nTitle: LICENSURE EXAMINATION FOR TEACHER (LET)\r\n	admin	Eligibilities	1
764385	2024-07-09	15:33:20.5607123	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3676\r\nCompanyInstitution: SCHOOL DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 08, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: PROJECT DEVELOPMENT OFFICER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: July 09, 2024\r\n	admin	Experiences	1
764386	2024-07-09	15:33:20.5646990	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3676\r\nCompanyInstitution: SCHOOL DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 05, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 17,553.00\r\nPositionHeld: ADMINISTRATIVE AIDE VI\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 6-\r\nStatus: Permanent\r\nToDate: January 07, 2024\r\n	admin	Experiences	1
765477	2024-07-11	10:06:41.3815628	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INTRODUCTION TO G SUITE FOR EDUCATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764351	2024-07-09	15:07:43.0040781	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3675\r\nEmployeeTrainingId: 0\r\nFromDate: December 13, 2023\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, CENTRAL \r\nStatus: \r\nToDate: December 15, 2023\r\nTrainingId: 15728\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764352	2024-07-09	15:07:43.0090773	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3675\r\nEmployeeTrainingId: 0\r\nFromDate: November 11, 2023\r\nHours: 16\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, CENTRAL & UNIOTED STATES AGENCY INTERNATIONAL DEVELOPMENT \r\nStatus: \r\nToDate: December 11, 2023\r\nTrainingId: 15729\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764353	2024-07-09	15:07:43.0130787	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3675\r\nEmployeeTrainingId: 0\r\nFromDate: June 11, 2023\r\nHours: 40\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, CALABARZON \r\nStatus: \r\nToDate: October 11, 2023\r\nTrainingId: 15730\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764354	2024-07-09	15:07:43.0180788	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3675\r\nEmployeeTrainingId: 0\r\nFromDate: September 10, 2023\r\nHours: 40\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, CALABARZON\r\nStatus: \r\nToDate: October 13, 2023\r\nTrainingId: 15731\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764355	2024-07-09	15:07:43.0230790	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3675\r\nEmployeeTrainingId: 0\r\nFromDate: September 19, 2023\r\nHours: 32\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, CENTRAL & UNITED STATES AGENCY INTERNATIONAL DEVELOPMENT \r\nStatus: \r\nToDate: September 22, 2023\r\nTrainingId: 15733\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764356	2024-07-09	15:07:43.0270785	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3675\r\nEmployeeTrainingId: 0\r\nFromDate: August 05, 2023\r\nHours: 40\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, CALABARZON\r\nStatus: \r\nToDate: December 05, 2023\r\nTrainingId: 15734\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764357	2024-07-09	15:07:43.0320793	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3675\r\nEmployeeTrainingId: 0\r\nFromDate: February 17, 2023\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, CALABARZON\r\nStatus: \r\nToDate: March 17, 2023\r\nTrainingId: 15735\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764359	2024-07-09	15:09:32.2306701	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL WORKSHOP ON THE USE OF FILIPINO SIGN LANGUAGE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764361	2024-07-09	15:12:58.0623126	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON THE UPSKILLING OF SUPERVISORS ON INCLUSIVE EDUCATION ( LUZON CLUSTER)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764362	2024-07-09	15:15:32.1747117	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL POLICY REVIEW WORKSHOP ON VARIOUS LEARNING DELIVERY USED IN TKHE LEARNING RECOVERY AND CONTINUITY PLAN ( LRCP)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764363	2024-07-09	15:17:46.1575051	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PPSS 4.1 DIFFERENTIATING LEARNING AND DEVELOPMENT INTERVENTIONS IN THE NEW NORMAL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764364	2024-07-09	15:19:45.4536406	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PPSS 3.1 RE- ENGINEERING INSTRUCTIONAL LEADERSHIP SUPPORT IN THE NEW NORMAL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764365	2024-07-09	15:21:37.3026873	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PPSS 1.5 TRANSFIGURING LEARNING RESOURCE MANAGEMENT IN THE NEW NORMAL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764366	2024-07-09	15:23:09.8702147	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PPSS 1.6 HARMONIZING LEARNING OUTCOMES ASSESSMENT FOR DATA DRIVEN SUPERVISION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764367	2024-07-09	15:25:13.1822920	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PPSS 3.2 TECHNOLOGY- BASED INNOVATIONS IN SUPERVISING SCHOOLS AT DISTRICT/ DIVISION/ REGIONAL LEVEL LEVELS IN THE NEW NORMAL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764368	2024-07-09	15:27:09.7416790	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PPSS 2.2 REDEFINING THE ROLES AND APPROACHES OF EDUCATION SUPERVISORS IN PROVIDING TECHNICAL ASSISTANCE IN THE NEW NORMAL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764369	2024-07-09	15:27:47.1568492	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3675\r\nEmployeeTrainingId: 0\r\nFromDate: February 05, 2022\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, CALABARZON\r\nStatus: \r\nToDate: April 05, 2022\r\nTrainingId: 15736\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764370	2024-07-09	15:27:47.1628978	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3675\r\nEmployeeTrainingId: 0\r\nFromDate: November 07, 2022\r\nHours: 40\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, CENTRAL \r\nStatus: \r\nToDate: July 15, 2022\r\nTrainingId: 15737\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764371	2024-07-09	15:27:47.1668522	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3675\r\nEmployeeTrainingId: 0\r\nFromDate: March 11, 2022\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, CALABARZON\r\nStatus: \r\nToDate: May 11, 2022\r\nTrainingId: 15738\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764372	2024-07-09	15:27:47.1718524	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3675\r\nEmployeeTrainingId: 0\r\nFromDate: August 15, 2022\r\nHours: 18\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: PHILIPPINE NORMAL UNIVERSITY \r\nStatus: \r\nToDate: August 20, 2022\r\nTrainingId: 15739\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764373	2024-07-09	15:27:47.1773594	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3675\r\nEmployeeTrainingId: 0\r\nFromDate: August 08, 2022\r\nHours: 18\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: PHILIPPINE NORMAL UNIVERSITY \r\nStatus: \r\nToDate: August 13, 2022\r\nTrainingId: 15740\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764374	2024-07-09	15:27:47.1823578	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3675\r\nEmployeeTrainingId: 0\r\nFromDate: July 25, 2022\r\nHours: 18\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: PHILIPPINE NORMAL UNIVERSITY \r\nStatus: \r\nToDate: July 30, 2022\r\nTrainingId: 15741\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764375	2024-07-09	15:27:47.1873574	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3675\r\nEmployeeTrainingId: 0\r\nFromDate: July 18, 2022\r\nHours: 18\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: PHILIPPINE NORMAL UNIVERSITY \r\nStatus: \r\nToDate: July 23, 2022\r\nTrainingId: 15742\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764376	2024-07-09	15:27:47.1913575	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3675\r\nEmployeeTrainingId: 0\r\nFromDate: November 07, 2022\r\nHours: 18\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: PHILIPPINE NORMAL UNIVERSITY \r\nStatus: \r\nToDate: July 16, 2022\r\nTrainingId: 15743\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764377	2024-07-09	15:27:47.1973575	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3675\r\nEmployeeTrainingId: 0\r\nFromDate: April 07, 2022\r\nHours: 18\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: PHILIPPINE NORMAL UNIVERSITY \r\nStatus: \r\nToDate: September 07, 2022\r\nTrainingId: 15744\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764378	2024-07-09	15:29:37.2768340	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ENHANCING THE CAPABILITY OF SCHOOLHEADS AND TEACHERS IN THE IMPLEMENTATION OF PROFESSIONAL PROGRAM VIA SCHOOL LEARNING ACTION CELL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764379	2024-07-09	15:31:47.1588605	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON UPSKILLING OF SUPERVISORS ON INCLUSIVE EDUCATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764400	2024-07-09	15:34:13.0138454	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL POLICY REVIEW WORKSHOP ON VARIOUS LEARNING DELIVERY USED IN THE LEARNING RECOVERY AND CONTINUITY PLAN ( LRCP)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764401	2024-07-09	15:35:04.9619885	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3675\r\nEmployeeTrainingId: 0\r\nFromDate: March 28, 2022\r\nHours: 40\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, CENTRAL \r\nStatus: \r\nToDate: May 04, 2022\r\nTrainingId: 15745\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764402	2024-07-09	15:35:04.9670314	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3675\r\nEmployeeTrainingId: 0\r\nFromDate: July 11, 2022\r\nHours: 40\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: BUREAU OF LEARNING DELIVERY- STUDENT  INCLUSION DIVISION ( BLD-SID) \r\nStatus: \r\nToDate: July 15, 2022\r\nTrainingId: 15746\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764403	2024-07-09	15:35:04.9710321	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3675\r\nEmployeeTrainingId: 0\r\nFromDate: November 03, 2022\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY  \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, CALABARZON \r\nStatus: \r\nToDate: November 05, 2022\r\nTrainingId: 15747\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764387	2024-07-09	15:33:20.5706363	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3676\r\nCompanyInstitution: MME JJ TCM TRANSPORT CORPORATION\r\nExperienceId: 0\r\nFromDate: March 02, 2019\r\nIsGovernmentService: False\r\nMonthlySalary: 9,698.00\r\nPositionHeld: HR/ADMIN OFFICER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: October 15, 2021\r\n	admin	Experiences	1
764388	2024-07-09	15:33:20.5746229	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3676\r\nCompanyInstitution: AGONCILLO COLLEGE INC\r\nExperienceId: 0\r\nFromDate: January 06, 2015\r\nIsGovernmentService: False\r\nMonthlySalary: 6,593.00\r\nPositionHeld: JUNIOR HIGH SCHOOL TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: May 01, 2016\r\n	admin	Experiences	1
764389	2024-07-09	15:33:20.5796065	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3676\r\nCompanyInstitution: TOSHIBA INFORMATION EQUIPMENT (PHILS.) INC.\r\nExperienceId: 0\r\nFromDate: August 05, 2002\r\nIsGovernmentService: False\r\nMonthlySalary: 11,050.00\r\nPositionHeld: PRODUCTION OPERATOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: June 24, 2014\r\n	admin	Experiences	1
764390	2024-07-09	15:33:20.5835934	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3676\r\nCompanyInstitution: DITA ELEMENTARY SCHOOL UNDER AGENCY\r\nExperienceId: 0\r\nFromDate: April 06, 2001\r\nIsGovernmentService: False\r\nMonthlySalary: 4,590.00\r\nPositionHeld: ELEMENTARY COMPUTER TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: April 15, 2002\r\n	admin	Experiences	1
764391	2024-07-09	15:33:20.5876189	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3676\r\nCharacterReferenceId: 0\r\nCompanyAddress: TALUMPOK WEST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09171892566\r\nExtensionName: \r\nFirstName: SACORO\r\nLastName: COMIA\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764392	2024-07-09	15:33:20.5926081	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3676\r\nCharacterReferenceId: 0\r\nCompanyAddress: STA. ROSA LAGUNA\r\nCompanyName: \r\nContactNumber: 09498914720\r\nExtensionName: \r\nFirstName: TRISTAN \r\nLastName: MERCADO \r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764393	2024-07-09	15:33:20.5965907	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: PINAMUCAN PROPER\r\nBasicInformationId: 3676\r\nBirthDate: December 23, 1979\r\nBirthPlace: SUBIO IBABA, AGONCILLO, BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: joseil.camacho@deped.gov.ph\r\nExtensionName: \r\nFirstName: JOSEIL\r\nFullName: JOSEIL DS. CAMACHO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CAMACHO\r\nMaidenName: \r\nMiddleName: DE SAGUN\r\nMobileNumber: 09482503086\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: PINAMUCAN PROPER\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 2\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 2\r\nTIN: \r\nWeight: 49\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: PINAMUCAN PROPER\r\nBasicInformationId: 3676\r\nBirthDate: December 23, 1979\r\nBirthPlace: SUBIO IBABA, AGONCILLO, BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: joseil.camacho@deped.gov.ph\r\nExtensionName: \r\nFirstName: JOSEIL\r\nFullName: JOSEIL DS. CAMACHO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005997399\r\nHDMF: 1211-5406-6634\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CAMACHO\r\nMaidenName: \r\nMiddleName: DE SAGUN\r\nMobileNumber: 09482503086\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: PINAMUCAN PROPER\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 2\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025013765-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1237634-8\r\nStreetName: PUROK 2\r\nTIN: 220-408-587-0000\r\nWeight: 49\r\nZipCode: 4200\r\n	admin	BasicInformation	1
764394	2024-07-09	15:33:20.6015339	<Undetected>	Update	BasicInformationId: 3676\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09276087653\r\nEmployeeRelativeId: 3568\r\nExtensionName: \r\nFirstName: BERNARD\r\nFullName: BERNARD TURBANADA CAMACHO\r\nGender: Male\r\nLastName: CAMACHO\r\nMaidenName: \r\nMiddleName: TURBANADA\r\nOccupation: DRIVER\r\nRelationship: Husband\r\n	BasicInformationId: 3676\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09276087653\r\nEmployeeRelativeId: 3568\r\nExtensionName: \r\nFirstName: BERNARD\r\nFullName: BERNARD CAMACHO\r\nGender: Male\r\nLastName: CAMACHO\r\nMaidenName: \r\nMiddleName: TURBANADA\r\nOccupation: DRIVER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
764395	2024-07-09	15:33:20.6055207	<Undetected>	Update	BasicInformationId: 3676\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3569\r\nExtensionName: \r\nFirstName: JOSE\r\nFullName: JOSE BRUCE DE SAGUN\r\nGender: Male\r\nLastName: DE SAGUN\r\nMaidenName: \r\nMiddleName: BRUCE\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3676\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3569\r\nExtensionName: \r\nFirstName: JOSE\r\nFullName: JOSE DE SAGUN\r\nGender: Male\r\nLastName: DE SAGUN\r\nMaidenName: \r\nMiddleName: BRUCE\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
764396	2024-07-09	15:33:20.6105040	<Undetected>	Update	BasicInformationId: 3676\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3570\r\nExtensionName: \r\nFirstName: CARMEN\r\nFullName: CARMEN COSME GAMO\r\nGender: Female\r\nLastName: GAMO\r\nMaidenName: \r\nMiddleName: COSME\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3676\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3570\r\nExtensionName: \r\nFirstName: CARMEN\r\nFullName: CARMEN GAMO\r\nGender: Female\r\nLastName: GAMO\r\nMaidenName: \r\nMiddleName: COSME\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
764408	2024-07-09	15:44:20.1969242	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3675\r\nCharacterReferenceId: 0\r\nCompanyAddress: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 043-702-0735\r\nExtensionName: \r\nFirstName: CATHERINE \r\nLastName: MARANAN \r\nMiddleName: V\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764397	2024-07-09	15:33:20.6144907	<Undetected>	Update	BasicInformationId: 3676\r\nBirthDate: October 24, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3571\r\nExtensionName: \r\nFirstName: ROLF YZEN\r\nFullName: ROLF YZEN D CAMACHO\r\nGender: Male\r\nLastName: CAMACHO\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3676\r\nBirthDate: October 24, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3571\r\nExtensionName: \r\nFirstName: ROLF YZEN\r\nFullName: ROLF YZEN CAMACHO\r\nGender: Male\r\nLastName: CAMACHO\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764398	2024-07-09	15:33:20.6195139	<Undetected>	Update	BasicInformationId: 3676\r\nBirthDate: March 08, 2016\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3572\r\nExtensionName: \r\nFirstName: LEIX YNOEH\r\nFullName: LEIX YNOEH D CAMACHO\r\nGender: Female\r\nLastName: CAMACHO\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3676\r\nBirthDate: March 08, 2016\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3572\r\nExtensionName: \r\nFirstName: LEIX YNOEH\r\nFullName: LEIX YNOEH CAMACHO\r\nGender: Female\r\nLastName: CAMACHO\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764399	2024-07-09	15:33:20.6235006	<Undetected>	Update	BasicInformationId: 3676\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3473\r\n	BasicInformationId: 3676\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3473\r\n	admin	Questionnaires	1
764414	2024-07-09	15:45:41.8191992	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3676\r\nEmployeeTrainingId: 0\r\nFromDate: September 22, 2023\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: September 22, 2023\r\nTrainingId: 15307\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764415	2024-07-09	15:45:41.8281694	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3676\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15113\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764416	2024-07-09	15:45:41.8321559	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3676\r\nEmployeeTrainingId: 0\r\nFromDate: August 14, 2023\r\nHours: 40\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: August 18, 2023\r\nTrainingId: 15574\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764417	2024-07-09	16:00:49.1260640	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING OF TRAINERS (DTOT) FOR THE EARLY LANGUAGE LITERACY AND NUMERACY (ELLN) IMPLEMENTERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764419	2024-07-09	16:04:57.6788019	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: LEARN HR FUNDAMENTALS FOR A CAREER IN HUMAN RESOURCES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764421	2024-07-09	16:07:27.9660288	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: HOW TO WRITE AN EFFECTIVE RESEARCH PAPER\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764460	2024-07-09	16:12:10.3654506	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING WORKSHOP ON QUALITY MANAGEMENT SYSTEM FOCUSED ON SEVEN S (7S)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764461	2024-07-09	16:13:04.7626391	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3676\r\nEmployeeTrainingId: 0\r\nFromDate: August 11, 2023\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: August 11, 2023\r\nTrainingId: 15534\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764462	2024-07-09	16:13:04.7666250	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3676\r\nEmployeeTrainingId: 0\r\nFromDate: July 21, 2023\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: July 22, 2023\r\nTrainingId: 15308\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764463	2024-07-09	16:13:04.7716084	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3676\r\nEmployeeTrainingId: 0\r\nFromDate: July 07, 2023\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: July 07, 2023\r\nTrainingId: 15539\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764464	2024-07-09	16:13:04.7765921	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3676\r\nEmployeeTrainingId: 0\r\nFromDate: June 07, 2023\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: June 07, 2023\r\nTrainingId: 15420\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764465	2024-07-09	16:13:04.7825713	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3676\r\nEmployeeTrainingId: 0\r\nFromDate: May 19, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: May 19, 2023\r\nTrainingId: 15421\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764553	2024-07-10	09:15:43.4372802	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 DIVISION STORYBOOK WRITING WORKSHOP ANG COMPETITION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764409	2024-07-09	15:44:20.2009233	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3675\r\nCharacterReferenceId: 0\r\nCompanyAddress: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 043-702-2094\r\nExtensionName: \r\nFirstName: MARIETA \r\nLastName: PEREZ \r\nMiddleName: N\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764410	2024-07-09	15:44:20.2059240	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3675\r\nCharacterReferenceId: 0\r\nCompanyAddress: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 043-722-0735\r\nExtensionName: \r\nFirstName: SACORO \r\nLastName: COMIA \r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764411	2024-07-09	15:44:20.2149294	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 211\r\nAddress2: \r\nBarangay: SAN ISIDRO\r\nBasicInformationId: 3675\r\nBirthDate: June 11, 1967\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSALINA.PANGANIBAN@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSALINA\r\nFullName: ROSALINA H. PANGANIBAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0439840619\r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: HERNANDEZ\r\nMobileNumber: 09171151780\r\nNationality: Filipino\r\nPermanentAddress1: 211\r\nPermanentAddress2: \r\nPermanentBarangay: SAN ISIDRO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 61\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 211\r\nAddress2: \r\nBarangay: SAN ISIDRO\r\nBasicInformationId: 3675\r\nBirthDate: June 11, 1967\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSALINA.PANGANIBAN@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSALINA\r\nFullName: ROSALINA H. PANGANIBAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 67061100153\r\nHDMF: 1490-0094-2170\r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0439840619\r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: HERNANDEZ\r\nMobileNumber: 09171151780\r\nNationality: Filipino\r\nPermanentAddress1: 211\r\nPermanentAddress2: \r\nPermanentBarangay: SAN ISIDRO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 19-000442541-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-0631172-0\r\nStreetName: \r\nTIN: 141-003-734-0000\r\nWeight: 61\r\nZipCode: 4200\r\n	admin	BasicInformation	1
764412	2024-07-09	15:44:38.8465534	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 211\r\nAddress2: \r\nBarangay: SAN ISIDRO\r\nBasicInformationId: 3675\r\nBirthDate: June 11, 1967\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSALINA.PANGANIBAN@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSALINA\r\nFullName: ROSALINA H. PANGANIBAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 67061100153\r\nHDMF: 1490-0094-2170\r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0439840619\r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: HERNANDEZ\r\nMobileNumber: 09171151780\r\nNationality: Filipino\r\nPermanentAddress1: 211\r\nPermanentAddress2: \r\nPermanentBarangay: SAN ISIDRO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 19-000442541-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-0631172-0\r\nStreetName: \r\nTIN: 141-003-734-0000\r\nWeight: 61\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 211\r\nAddress2: \r\nBarangay: SAN ISIDRO\r\nBasicInformationId: 3675\r\nBirthDate: June 11, 1967\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSALINA.PANGANIBAN@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSALINA\r\nFullName: ROSALINA H. PANGANIBAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 67061100153\r\nHDMF: 1490-0094-2170\r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0439840619\r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: HERNANDEZ\r\nMobileNumber: 09171151780\r\nNationality: Filipino\r\nPermanentAddress1: 211\r\nPermanentAddress2: \r\nPermanentBarangay: SAN ISIDRO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 19-000442541-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: 04-0631172-0\r\nStreetName: \r\nTIN: 141-003-734-0000\r\nWeight: 61\r\nZipCode: 4200\r\n	admin	BasicInformation	1
764413	2024-07-09	15:45:22.9113269	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 211\r\nAddress2: \r\nBarangay: SAN ISIDRO\r\nBasicInformationId: 3675\r\nBirthDate: June 11, 1967\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSALINA.PANGANIBAN@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSALINA\r\nFullName: ROSALINA H. PANGANIBAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 67061100153\r\nHDMF: 1490-0094-2170\r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0439840619\r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: HERNANDEZ\r\nMobileNumber: 09171151780\r\nNationality: Filipino\r\nPermanentAddress1: 211\r\nPermanentAddress2: \r\nPermanentBarangay: SAN ISIDRO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 19-000442541-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: 04-0631172-0\r\nStreetName: \r\nTIN: 141-003-734-0000\r\nWeight: 61\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 211\r\nAddress2: \r\nBarangay: SAN ISIDRO\r\nBasicInformationId: 3675\r\nBirthDate: June 11, 1967\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSALINA.PANGANIBAN@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSALINA\r\nFullName: ROSALINA H. PANGANIBAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 67061100153\r\nHDMF: 1490-0094-2170\r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0439840619\r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: HERNANDEZ\r\nMobileNumber: 09171151780\r\nNationality: Filipino\r\nPermanentAddress1: 211\r\nPermanentAddress2: \r\nPermanentBarangay: SAN ISIDRO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 19-000442541-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-0631172-0\r\nStreetName: \r\nTIN: 141-003-734-0000\r\nWeight: 61\r\nZipCode: 4200\r\n	admin	BasicInformation	1
764418	2024-07-09	16:03:25.5388492	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: DIPLOMA IN TEACHING READING\r\nLevel: Doctorate\r\n	admin	Courses	1
764420	2024-07-09	16:05:41.9377397	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: PHILOSOPHY  IN READING EDUCATION\r\nLevel: Doctorate\r\n	admin	Courses	1
764492	2024-07-09	16:14:23.1791673	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3678\r\nBirthDate: February 13, 2016\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LEE MAREEON\r\nFullName: LEE MAREEON M SECO\r\nGender: Male\r\nLastName: SECO\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764514	2024-07-09	16:20:19.8317264	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3676\r\nEmployeeTrainingId: 0\r\nFromDate: April 03, 2022\r\nHours: 6\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: April 03, 2022\r\nTrainingId: 15351\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764425	2024-07-09	16:10:42.8057730	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3677\r\nCourse: \r\nCourseId: 1320\r\nCourseOrMajor: \r\nDateFrom: 1993\r\nDateTo: 1995\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Vocational Graduate\r\nMajor: \r\nSchoolorUniversity: PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY\r\nYearGraduated: 1995\r\n	admin	EducationalBackgrounds	1
764426	2024-07-09	16:10:42.8057730	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3677\r\nCourse: \r\nCourseId: 1277\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 1999\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY\r\nYearGraduated: 1999\r\n	admin	EducationalBackgrounds	1
764427	2024-07-09	16:10:42.8057730	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3677\r\nCourse: \r\nCourseId: 1284\r\nCourseOrMajor: \r\nDateFrom: 2000\r\nDateTo: 2004\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: FILIPINO\r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2004\r\n	admin	EducationalBackgrounds	1
764428	2024-07-09	16:10:42.8067699	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3677\r\nCourse: \r\nCourseId: 1324\r\nCourseOrMajor: \r\nDateFrom: 2008\r\nDateTo: 2014\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: FILIPINO\r\nSchoolorUniversity: PHILIPPINE NORMAL UNIVERSITY - MANILA\r\nYearGraduated: 2014\r\n	admin	EducationalBackgrounds	1
764429	2024-07-09	16:10:42.8067699	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3677\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EDUARDO\r\nFullName: EDUARDO ABRIL BAUTISTA\r\nGender: Male\r\nLastName: BAUTISTA\r\nMaidenName: \r\nMiddleName: ABRIL\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
764430	2024-07-09	16:10:42.8067699	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3677\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LUZ\r\nFullName: LUZ PATEÑA BALBUENA\r\nGender: Female\r\nLastName: BALBUENA\r\nMaidenName: BALBUEÑA\r\nMiddleName: PATEÑA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
764431	2024-07-09	16:10:42.8067699	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3677\r\nCharacterReferenceId: 0\r\nCompanyAddress: LYNARS VILLAGE TANGWAY LIPA CITY, BATANGAS \r\nCompanyName: \r\nContactNumber: 095695547105\r\nExtensionName: \r\nFirstName: JHUN-JHUN \r\nLastName: LUCERO \r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764432	2024-07-09	16:10:42.8067699	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3677\r\nCharacterReferenceId: 0\r\nCompanyAddress: TINGA LABAC, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09989700743\r\nExtensionName: \r\nFirstName: HERMAN\r\nLastName: CATAPANG\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764433	2024-07-09	16:10:42.8067699	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3677\r\nCharacterReferenceId: 0\r\nCompanyAddress: BANABA WEST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09228292303\r\nExtensionName: \r\nFirstName: LEILA\r\nLastName: SECO\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764434	2024-07-09	16:10:42.8067699	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3677\r\nCompanyInstitution: DEPED - BATANGAS VITY\r\nExperienceId: 0\r\nFromDate: January 06, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 72,577.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: July 09, 2024\r\n	admin	Experiences	1
764435	2024-07-09	16:10:42.8067699	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3677\r\nCompanyInstitution: DEPED - BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 71,511.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: January 05, 2023\r\n	admin	Experiences	1
764436	2024-07-09	16:10:42.8067699	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3677\r\nCompanyInstitution: DEPED - BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 699,630.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
764437	2024-07-09	16:10:42.8077665	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3677\r\nCompanyInstitution: DEPED - BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 684,150.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
764438	2024-07-09	16:10:42.8077665	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3677\r\nCompanyInstitution: DEPED - BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 06, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 66,867.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
764439	2024-07-09	16:10:42.8077665	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3677\r\nCompanyInstitution: DEPED - BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 06, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 66,867.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
764440	2024-07-09	16:10:42.8077665	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3677\r\nCompanyInstitution: DEPED - BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 47,430.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-2\r\nStatus: Permanent\r\nToDate: January 05, 2020\r\n	admin	Experiences	1
764441	2024-07-09	16:10:42.8077665	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3677\r\nCompanyInstitution: DEPED - BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 13, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 46,008.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-2\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
764442	2024-07-09	16:10:42.8077665	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3677\r\nCompanyInstitution: DEPED - BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 45,269.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: June 12, 2019\r\n	admin	Experiences	1
764443	2024-07-09	16:10:42.8077665	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3677\r\nCompanyInstitution: DEPED - BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 42,099.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
764444	2024-07-09	16:10:42.8077665	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3677\r\nCompanyInstitution: DEPED - BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 39,151.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
764445	2024-07-09	16:10:42.8077665	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3677\r\nCompanyInstitution: DEPED - BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: June 13, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 36,409.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
764446	2024-07-09	16:10:42.8087630	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3677\r\nCompanyInstitution: GOLDEN GATE COLLEGES\r\nExperienceId: 0\r\nFromDate: June 14, 2004\r\nIsGovernmentService: False\r\nMonthlySalary: 10,800.00\r\nPositionHeld: PROFESSOR C\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: June 12, 2005\r\n	admin	Experiences	1
764447	2024-07-09	16:10:42.8087630	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3677\r\nCompanyInstitution: BATANGAS STATE UNIVERSITY\r\nExperienceId: 0\r\nFromDate: June 09, 2003\r\nIsGovernmentService: True\r\nMonthlySalary: 10,160.00\r\nPositionHeld: INSTRUCTOR I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: October 17, 2003\r\n	admin	Experiences	1
764448	2024-07-09	16:10:42.8087630	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3677\r\nCompanyInstitution: BATANGAS STATE UNIVERSITY\r\nExperienceId: 0\r\nFromDate: January 02, 2003\r\nIsGovernmentService: True\r\nMonthlySalary: 10,160.00\r\nPositionHeld: INSTRUCTOR I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: December 28, 2003\r\n	admin	Experiences	1
764449	2024-07-09	16:10:42.8087630	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3677\r\nCompanyInstitution: BATANGAS STATE UNIVERSITY\r\nExperienceId: 0\r\nFromDate: November 04, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 10,160.00\r\nPositionHeld: INSTRUCTOR I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: December 20, 2002\r\n	admin	Experiences	1
764450	2024-07-09	16:10:42.8087630	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3677\r\nCompanyInstitution: BATANGAS STATE UNIVERSITY\r\nExperienceId: 0\r\nFromDate: June 17, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 10,160.00\r\nPositionHeld: INSTRUCTOR I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: July 09, 2024\r\n	admin	Experiences	1
764451	2024-07-09	16:10:42.8087630	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3677\r\nCompanyInstitution: BATANGAS STATE UNIVERSITY \r\nExperienceId: 0\r\nFromDate: April 10, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 10,160.00\r\nPositionHeld: INSTRUCTOR I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: May 31, 2002\r\n	admin	Experiences	1
764452	2024-07-09	16:10:42.8087630	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3677\r\nCompanyInstitution: BATANGAS STATE UNIVERSITY \r\nExperienceId: 0\r\nFromDate: January 02, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 10,160.00\r\nPositionHeld: INSTRUCTOR I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: March 26, 2002\r\n	admin	Experiences	1
764453	2024-07-09	16:10:42.8087630	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3677\r\nCompanyInstitution: BATANGAS STATE UNIVERSITY \r\nExperienceId: 0\r\nFromDate: September 17, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 10,160.00\r\nPositionHeld: INSTRUCTOR I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: December 21, 2001\r\n	admin	Experiences	1
764454	2024-07-09	16:10:42.8087630	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3677\r\nCompanyInstitution: BATANGAS STATE INIVERSITY\r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,662.00\r\nPositionHeld: INSTRUCTOR I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: September 01, 2002\r\n	admin	Experiences	1
764455	2024-07-09	16:10:42.8097597	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3677\r\nCompanyInstitution: BATANGAS STATE UNIVERSITY\r\nExperienceId: 0\r\nFromDate: June 07, 2001\r\nIsGovernmentService: False\r\nMonthlySalary: 9,662.00\r\nPositionHeld: INSTRUCTOR I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: June 13, 2001\r\n	admin	Experiences	1
764456	2024-07-09	16:10:42.8097597	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3677\r\nCompanyInstitution: PABLO BORBON  MEMORIAL INSTITUTE \r\nExperienceId: 0\r\nFromDate: June 05, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 9,662.80\r\nPositionHeld: INSTRUCTOR I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: March 30, 2001\r\n	admin	Experiences	1
764457	2024-07-09	16:10:42.8097597	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3677\r\nCompanyInstitution: PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY\r\nExperienceId: 0\r\nFromDate: September 07, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 8,788.00\r\nPositionHeld: INSTRUCTOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: March 31, 2000\r\n	admin	Experiences	1
764458	2024-07-09	16:10:42.8097597	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3677\r\nSkillId: 0\r\nSkillName: PLANTING, READING\r\n	admin	Skills	1
764459	2024-07-09	16:10:42.8097597	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3677\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
764477	2024-07-09	16:12:57.8808671	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: #410\r\nAddress2: \r\nBarangay: BANABA CENTER\r\nBasicInformationId: 3677\r\nBirthDate: July 09, 2024\r\nBirthPlace: \r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: demetrio.bautista001@deped.gov.ph\r\nExtensionName: \r\nFirstName: DEMETRIO\r\nFullName: DEMETRIO B. BAUTISTA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.71\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BAUTISTA\r\nMaidenName: \r\nMiddleName: BALBUENA\r\nMobileNumber: 09295320442\r\nNationality: Filipino\r\nPermanentAddress1: #410\r\nPermanentAddress2: \r\nPermanentBarangay: BANABA CENTER\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO PARANG 1\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO PARANG 1\r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: #410\r\nAddress2: \r\nBarangay: BANABA CENTER\r\nBasicInformationId: 3677\r\nBirthDate: June 21, 1976\r\nBirthPlace: IBAAN, BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: demetrio.bautista001@deped.gov.ph\r\nExtensionName: \r\nFirstName: DEMETRIO\r\nFullName: DEMETRIO B. BAUTISTA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02002046672\r\nHDMF: 1490-0032-3466\r\nHeight: 1.71\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BAUTISTA\r\nMaidenName: \r\nMiddleName: BALBUENA\r\nMobileNumber: 09295320442\r\nNationality: Filipino\r\nPermanentAddress1: #410\r\nPermanentAddress2: \r\nPermanentBarangay: BANABA CENTER\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO PARANG 1\r\nPermanentZipCode: 4200\r\nPhilhealth: 19-000772834-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-0955292-6\r\nStreetName: SITIO PARANG 1\r\nTIN: 921-649-161-0000\r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
764533	2024-07-09	16:25:56.3783300	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3678\r\nOrganizationId: 0\r\nOrganizationName: REGIONA ASSOCIATION OF COMMUNICATION SUPERVISOR \r\n	admin	Organizations	1
764466	2024-07-09	16:13:04.7875549	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3676\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764467	2024-07-09	16:13:04.7925388	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3676\r\nEmployeeTrainingId: 0\r\nFromDate: April 03, 2023\r\nHours: 5\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: April 03, 2023\r\nTrainingId: 15351\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764468	2024-07-09	16:13:04.7985188	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3676\r\nEmployeeTrainingId: 0\r\nFromDate: February 21, 2023\r\nHours: 5\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: February 21, 2023\r\nTrainingId: 15153\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764469	2024-07-09	16:13:04.8025054	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3676\r\nEmployeeTrainingId: 0\r\nFromDate: September 02, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: September 02, 2023\r\nTrainingId: 15748\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764470	2024-07-09	16:13:04.8074885	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3676\r\nEmployeeTrainingId: 0\r\nFromDate: February 20, 2023\r\nHours: 3\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: February 20, 2023\r\nTrainingId: 15114\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764471	2024-07-09	16:13:04.8124715	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3676\r\nEmployeeTrainingId: 0\r\nFromDate: September 25, 2022\r\nHours: 42\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: UDEMY\r\nStatus: 42 MINUTES\r\nToDate: September 25, 2022\r\nTrainingId: 15749\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764472	2024-07-09	16:13:04.8174564	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3676\r\nEmployeeTrainingId: 0\r\nFromDate: September 25, 2022\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: UDEMY\r\nStatus: \r\nToDate: September 25, 2022\r\nTrainingId: 15750\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764473	2024-07-09	16:13:04.8224389	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3676\r\nEmployeeTrainingId: 0\r\nFromDate: July 09, 2022\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL/TECHNICAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: July 09, 2022\r\nTrainingId: 15174\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764474	2024-07-09	16:13:04.8274223	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3676\r\nEmployeeTrainingId: 0\r\nFromDate: August 12, 2023\r\nHours: 56\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: August 22, 2023\r\nTrainingId: 15235\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764475	2024-07-09	16:13:04.8324047	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3676\r\nEmployeeTrainingId: 0\r\nFromDate: August 11, 2022\r\nHours: 21\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: UDEMY\r\nStatus: \r\nToDate: August 11, 2022\r\nTrainingId: 15292\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764476	2024-07-09	16:13:04.8373884	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3676\r\nEmployeeTrainingId: 0\r\nFromDate: June 30, 2022\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: WASTECON INC.\r\nStatus: \r\nToDate: June 30, 2022\r\nTrainingId: 15751\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764480	2024-07-09	16:14:03.7738974	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: AUTOMATED NATIONAL AND LOCAL ELECTIONS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764499	2024-07-09	16:16:25.9334735	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION WOMEN'S MONTH CELEBRATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764500	2024-07-09	16:18:25.8281302	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BASIC MICROSOFT WORD APPLICATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764511	2024-07-09	16:20:19.8147830	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3676\r\nEmployeeTrainingId: 0\r\nFromDate: September 05, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: AGONCILLO, BATANGAS \r\nStatus: \r\nToDate: September 05, 2022\r\nTrainingId: 15752\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764512	2024-07-09	16:20:19.8197664	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3676\r\nEmployeeTrainingId: 0\r\nFromDate: March 25, 2022\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: March 25, 2022\r\nTrainingId: 15753\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764478	2024-07-09	16:12:57.8848537	<Undetected>	Update	BasicInformationId: 3677\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3573\r\nExtensionName: \r\nFirstName: EDUARDO\r\nFullName: EDUARDO ABRIL BAUTISTA\r\nGender: Male\r\nLastName: BAUTISTA\r\nMaidenName: \r\nMiddleName: ABRIL\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3677\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3573\r\nExtensionName: \r\nFirstName: EDUARDO\r\nFullName: EDUARDO BAUTISTA\r\nGender: Male\r\nLastName: BAUTISTA\r\nMaidenName: \r\nMiddleName: ABRIL\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
764479	2024-07-09	16:12:57.8888404	<Undetected>	Update	BasicInformationId: 3677\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3574\r\nExtensionName: \r\nFirstName: LUZ\r\nFullName: LUZ PATEÑA BALBUENA\r\nGender: Female\r\nLastName: BALBUENA\r\nMaidenName: BALBUEÑA\r\nMiddleName: PATEÑA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3677\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3574\r\nExtensionName: \r\nFirstName: LUZ\r\nFullName: LUZ BALBUENA\r\nGender: Female\r\nLastName: BALBUENA\r\nMaidenName: \r\nMiddleName: PATEÑA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
764516	2024-07-09	16:20:06.9809094	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK 10 LOT 8\r\nAddress2: ST. PAULA HOMES\r\nBarangay: LIBJO\r\nBasicInformationId: 0\r\nBirthDate: March 06, 1990\r\nBirthPlace: VICTORIA, ORIENTAL MINDORO\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: cyrus.festijo@deped.gov.ph\r\nExtensionName: \r\nFirstName: CYRUS\r\nFullName: CYRUS T. FESTIJO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.87\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: FESTIJO\r\nMaidenName: \r\nMiddleName: TAWATAO\r\nMobileNumber: 09165225542\r\nNationality: Filipino\r\nPermanentAddress1: BLK 10 LOT 8\r\nPermanentAddress2: ST. PAULA HOMES\r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: CORNER 4TH STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: CORNER 4TH STREET\r\nTIN: \r\nWeight: 120\r\nZipCode: 4200\r\n	admin	BasicInformation	1
764517	2024-07-09	16:20:06.9954473	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3679\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PEDRO\r\nFullName: PEDRO ASI FESTIJO\r\nGender: Male\r\nLastName: FESTIJO\r\nMaidenName: \r\nMiddleName: ASI\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
764518	2024-07-09	16:20:06.9954473	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3679\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: NANCY\r\nFullName: NANCY GARCIA TAWATAO\r\nGender: Female\r\nLastName: TAWATAO\r\nMaidenName: \r\nMiddleName: GARCIA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
764519	2024-07-09	16:20:06.9954473	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3679\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
764520	2024-07-09	16:23:45.7244690	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: CERTIFICATE IN INDUSTRIAL TECHNOLOGY\r\nLevel: Vocational\r\n	admin	Courses	1
764535	2024-07-09	16:27:20.1723918	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER IN EDUCATION \r\nLevel: Master's\r\n	admin	Courses	1
764481	2024-07-09	16:14:23.1582886	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 0\r\nBirthDate: April 16, 1982\r\nBirthPlace: STA.RITA, BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: LEILA.SECO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: LEILA\r\nFullName: LEILA M. SECO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SECO\r\nMaidenName: \r\nMiddleName: MARANAN\r\nMobileNumber: 09228292303\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO LAGUNDI\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: SITIO LAGUNDI\r\nTIN: \r\nWeight: 57\r\nZipCode: 4200\r\n	admin	BasicInformation	1
764482	2024-07-09	16:14:23.1781675	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: 8TH PLACE\r\nBasicInformationId: 3678\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1987\r\nDateTo: 1993\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BOLBOK ELEMENTARY SCHOOL\r\nYearGraduated: 1993\r\n	admin	EducationalBackgrounds	1
764483	2024-07-09	16:14:23.1781675	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3678\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1993\r\nDateTo: 1997\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1997\r\n	admin	EducationalBackgrounds	1
764484	2024-07-09	16:14:23.1781675	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: INSTITUTE SCHOLAR\r\nBasicInformationId: 3678\r\nCourse: \r\nCourseId: 1270\r\nCourseOrMajor: \r\nDateFrom: 1997\r\nDateTo: 2001\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2001\r\n	admin	EducationalBackgrounds	1
764485	2024-07-09	16:14:23.1781675	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3678\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2014\r\nDateTo: 2015\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2015\r\n	admin	EducationalBackgrounds	1
764486	2024-07-09	16:14:23.1781675	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: RACAS SCHOLARSHIP\r\nBasicInformationId: 3678\r\nCourse: \r\nCourseId: 1325\r\nCourseOrMajor: \r\nDateFrom: 2014\r\nDateTo: 2015\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: \r\nSchoolorUniversity: PHILIPPINE NORMAL UNIVERSITY\r\nYearGraduated: 2015\r\n	admin	EducationalBackgrounds	1
764487	2024-07-09	16:14:23.1781675	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3678\r\nCourse: \r\nCourseId: 1302\r\nCourseOrMajor: \r\nDateFrom: 2014\r\nDateTo: 2015\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: \r\nSchoolorUniversity: NATIONAL UNIVERSITY\r\nYearGraduated: 2015\r\n	admin	EducationalBackgrounds	1
764488	2024-07-09	16:14:23.1781675	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: LISQUP\r\nBasicInformationId: 3678\r\nCourse: \r\nCourseId: 1326\r\nCourseOrMajor: \r\nDateFrom: 2014\r\nDateTo: 2015\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: \r\nSchoolorUniversity: PHILIPPINE NATIONAL UNIVERSITY\r\nYearGraduated: 2015\r\n	admin	EducationalBackgrounds	1
764489	2024-07-09	16:14:23.1791673	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3678\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09996995307\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MAR\r\nFullName: MAR SAEL\r\nGender: Female\r\nLastName: SECO\r\nMaidenName: \r\nMiddleName: SAEL\r\nOccupation: CLERK\r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
764490	2024-07-09	16:14:23.1791673	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3678\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LUIS\r\nFullName: LUIS BLANCO MARANAN\r\nGender: Male\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: BLANCO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
764491	2024-07-09	16:14:23.1791673	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3678\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MATELDE\r\nFullName: MATELDE AGTAY\r\nGender: Female\r\nLastName: RAMOS\r\nMaidenName: \r\nMiddleName: AGTAY\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
764493	2024-07-09	16:14:23.1791673	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3678\r\nDateOfExamination: September 30, 2012\r\nDateOfRelease: April 16, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 30, 2012\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 902005275\r\nPlaceOfExamination: LUCENA\r\nRating: 79.80\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
764494	2024-07-09	16:14:23.1791673	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3678\r\nCompanyInstitution: SDO BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 72,755.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 2-\r\nStatus: Permanent\r\nToDate: July 09, 2024\r\n	admin	Experiences	1
764495	2024-07-09	16:14:23.1791673	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3678\r\nCompanyInstitution: SDO BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: September 25, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 71,029.00\r\nPositionHeld: EDUCATION PROGRAM SUERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
764496	2024-07-09	16:14:23.1791673	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3678\r\nCompanyInstitution: BANABA WEST NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: June 13, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 39,151.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: September 24, 2019\r\n	admin	Experiences	1
764497	2024-07-09	16:14:23.1801674	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3678\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
764498	2024-07-09	16:15:21.4016592	<Undetected>	Update	BasicInformationId: 3622\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3326\r\nExtensionName: \r\nFirstName: LEILA\r\nFullName: LEILA MARANAN\r\nGender: Female\r\nLastName: SECO\r\nMaidenName: \r\nMiddleName: MARANAN\r\nOccupation: DEPED SURPERVISOR\r\nRelationship: Wife\r\n	BasicInformationId: 3622\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3326\r\nExtensionName: \r\nFirstName: LEILA\r\nFullName: LEILA SECO\r\nGender: Female\r\nLastName: SECO\r\nMaidenName: \r\nMiddleName: MARANAN\r\nOccupation: DEPED SURPERVISOR\r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
764501	2024-07-09	16:18:52.9984958	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3678\r\nCharacterReferenceId: 0\r\nCompanyAddress: TALUMPOK ,BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 091718922566\r\nExtensionName: \r\nFirstName: SACORO\r\nLastName: COMIA\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764502	2024-07-09	16:18:53.0134957	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3678\r\nCharacterReferenceId: 0\r\nCompanyAddress: BANABA CENTER,BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09295320442\r\nExtensionName: \r\nFirstName: DEMETRIO\r\nLastName: BAUTISTA\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764503	2024-07-09	16:18:53.0286926	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3678\r\nCharacterReferenceId: 0\r\nCompanyAddress: TINGA LABAC,BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09989700743\r\nExtensionName: \r\nFirstName: HERNAN\r\nLastName: CATAPANG\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764504	2024-07-09	16:18:53.0336920	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3678\r\nBirthDate: April 16, 1982\r\nBirthPlace: STA.RITA, BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: LEILA.SECO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: LEILA\r\nFullName: LEILA M. SECO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SECO\r\nMaidenName: \r\nMiddleName: MARANAN\r\nMobileNumber: 09228292303\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO LAGUNDI\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: SITIO LAGUNDI\r\nTIN: \r\nWeight: 57\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3678\r\nBirthDate: April 16, 1982\r\nBirthPlace: STA.RITA, BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: LEILA.SECO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: LEILA\r\nFullName: LEILA M. SECO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SECO\r\nMaidenName: \r\nMiddleName: MARANAN\r\nMobileNumber: 09228292303\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO LAGUNDI\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO LAGUNDI\r\nTIN: \r\nWeight: 57\r\nZipCode: 4200\r\n	admin	BasicInformation	1
764513	2024-07-09	16:20:19.8267430	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3676\r\nEmployeeTrainingId: 0\r\nFromDate: March 16, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHGNOLOGY\r\nStatus: \r\nToDate: March 16, 2022\r\nTrainingId: 15754\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764505	2024-07-09	16:18:53.0406925	<Undetected>	Update	BasicInformationId: 3678\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09996995307\r\nEmployeeRelativeId: 3575\r\nExtensionName: \r\nFirstName: MAR\r\nFullName: MAR SAEL\r\nGender: Female\r\nLastName: SECO\r\nMaidenName: \r\nMiddleName: SAEL\r\nOccupation: CLERK\r\nRelationship: Wife\r\n	BasicInformationId: 3678\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09996995307\r\nEmployeeRelativeId: 3575\r\nExtensionName: \r\nFirstName: MAR\r\nFullName: MAR SECO\r\nGender: Female\r\nLastName: SECO\r\nMaidenName: \r\nMiddleName: SAEL\r\nOccupation: CLERK\r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
764506	2024-07-09	16:18:53.0446918	<Undetected>	Update	BasicInformationId: 3678\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3576\r\nExtensionName: \r\nFirstName: LUIS\r\nFullName: LUIS BLANCO MARANAN\r\nGender: Male\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: BLANCO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3678\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3576\r\nExtensionName: \r\nFirstName: LUIS\r\nFullName: LUIS MARANAN\r\nGender: Male\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: BLANCO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
764507	2024-07-09	16:18:53.0496931	<Undetected>	Update	BasicInformationId: 3678\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3577\r\nExtensionName: \r\nFirstName: MATELDE\r\nFullName: MATELDE AGTAY\r\nGender: Female\r\nLastName: RAMOS\r\nMaidenName: \r\nMiddleName: AGTAY\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3678\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3577\r\nExtensionName: \r\nFirstName: MATELDE\r\nFullName: MATELDE RAMOS\r\nGender: Female\r\nLastName: RAMOS\r\nMaidenName: \r\nMiddleName: AGTAY\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
764508	2024-07-09	16:18:53.0556919	<Undetected>	Update	BasicInformationId: 3678\r\nBirthDate: February 13, 2016\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3578\r\nExtensionName: \r\nFirstName: LEE MAREEON\r\nFullName: LEE MAREEON M SECO\r\nGender: Male\r\nLastName: SECO\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3678\r\nBirthDate: February 13, 2016\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3578\r\nExtensionName: \r\nFirstName: LEE MAREEON\r\nFullName: LEE MAREEON SECO\r\nGender: Male\r\nLastName: SECO\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764509	2024-07-09	16:18:53.0606926	<Undetected>	Update	BasicInformationId: 3678\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3475\r\n	BasicInformationId: 3678\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3475\r\n	admin	Questionnaires	1
764510	2024-07-09	16:20:11.2312537	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3678\r\nBirthDate: April 16, 1982\r\nBirthPlace: STA.RITA, BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: LEILA.SECO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: LEILA\r\nFullName: LEILA M. SECO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SECO\r\nMaidenName: \r\nMiddleName: MARANAN\r\nMobileNumber: 09228292303\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO LAGUNDI\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO LAGUNDI\r\nTIN: \r\nWeight: 57\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3678\r\nBirthDate: April 16, 1982\r\nBirthPlace: STA.RITA, BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: LEILA.SECO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: LEILA\r\nFullName: LEILA M. SECO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: 1490-0037-0794\r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SECO\r\nMaidenName: \r\nMiddleName: MARANAN\r\nMobileNumber: 09228292303\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO LAGUNDI\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025078388-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1273086-1\r\nStreetName: SITIO LAGUNDI\r\nTIN: 928-521-298-0000\r\nWeight: 57\r\nZipCode: 4200\r\n	admin	BasicInformation	1
764521	2024-07-09	16:24:29.9038293	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3678\r\nSkillId: 0\r\nSkillName: HOSTING EVENTS\r\n	admin	Skills	1
764522	2024-07-09	16:24:29.9178309	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3678\r\nSkillId: 0\r\nSkillName: CAMPUS JOURNALISM \r\n	admin	Skills	1
764523	2024-07-09	16:24:29.9278823	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3678\r\nSkillId: 0\r\nSkillName: VOICE ARTIST\r\n	admin	Skills	1
764524	2024-07-09	16:24:29.9414362	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3678\r\nSkillId: 0\r\nSkillName: SKETCHING\r\n	admin	Skills	1
764525	2024-07-09	16:24:29.9540031	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3678\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
764526	2024-07-09	16:24:29.9580017	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3678\r\nRecognitionId: 0\r\nRecognitionName: EMPLOYEE OF THE YEAR\r\n	admin	Recognitions	1
764527	2024-07-09	16:24:29.9640029	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3678\r\nRecognitionId: 0\r\nRecognitionName: DIVISION OUTSTANDING EDUCATION PROGRAM SUPERVISOR\r\n	admin	Recognitions	1
764528	2024-07-09	16:24:29.9680019	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3678\r\nRecognitionId: 0\r\nRecognitionName: OUTSTANDING EDUCATION PROGRAM SUPERVISOR IN THE CID FOR CY 2021 & 2022 CID \r\n	admin	Recognitions	1
764529	2024-07-09	16:24:29.9730022	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3678\r\nRecognitionId: 0\r\nRecognitionName: BEST LITERACY VIDEO \r\n	admin	Recognitions	1
764530	2024-07-09	16:24:29.9780024	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3678\r\nRecognitionId: 0\r\nRecognitionName: OUTSTANDING RESEARCH \r\n	admin	Recognitions	1
764531	2024-07-09	16:24:29.9830028	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3678\r\nOrganizationId: 0\r\nOrganizationName: INTERNATIONAL LITERACY ASSOCIATION\r\n	admin	Organizations	1
764532	2024-07-09	16:24:29.9870018	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3678\r\nOrganizationId: 0\r\nOrganizationName: LITERATURE EDUCATORS' ASSOCIATION OF THE PHILIPPINES\r\n	admin	Organizations	1
764515	2024-07-09	16:20:19.8367097	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3676\r\nEmployeeTrainingId: 0\r\nFromDate: January 12, 2022\r\nHours: 24\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: January 14, 2022\r\nTrainingId: 15125\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764536	2024-07-10	09:01:33.4026989	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 DIVISION SCHOOLS PRESS CONFERENCE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764537	2024-07-10	09:05:43.9736876	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 DIVISION CONFERENCE OF BASIC RESEACHERS (DCBER) WITH THE THEME "ACTION IMPACT AND EXCELLENCE: UTILIZING RESEARCH\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764538	2024-07-10	09:07:29.7249319	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: Orientation Of The NATIONAL TRAINING OF TRAINERS (NTOT) ON THE NATIONAL READING PROGRAM (LUZON CLUSTER)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764539	2024-07-10	09:12:07.3654158	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL TRAINING OF TRAINERS (RTOT) FOR LEARNING RECOVERY PROGRAM IN LITERACY AND NUMERACY THROUGH SCHOOL BASED LEARNING ACTION CELL - BATCH 2\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764540	2024-07-10	09:13:09.3720688	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3678\r\nCompanyInstitution: BATANGAS NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 18,100.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: June 12, 2016\r\n	admin	Experiences	1
764541	2024-07-10	09:13:09.3770685	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3678\r\nCompanyInstitution: STA TERESA COLLEGE\r\nExperienceId: 0\r\nFromDate: June 01, 2013\r\nIsGovernmentService: False\r\nMonthlySalary: 31,893.00\r\nPositionHeld: COLLEGE TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: April 10, 2014\r\n	admin	Experiences	1
764542	2024-07-10	09:13:09.3820688	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3678\r\nCompanyInstitution: STA TERESA COLLEGE\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: False\r\nMonthlySalary: 27,000.00\r\nPositionHeld: ENGLISH DEPARTMENT HEAD\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 8-\r\nStatus: Permanent\r\nToDate: May 31, 2013\r\n	admin	Experiences	1
764543	2024-07-10	09:13:09.3870691	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3678\r\nCompanyInstitution: STA TERESA COLLEGE\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: False\r\nMonthlySalary: 27,000.00\r\nPositionHeld: COLLEGE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 6-\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
764544	2024-07-10	09:13:09.3920685	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3678\r\nCompanyInstitution: STA TERESA COLLEGE\r\nExperienceId: 0\r\nFromDate: June 01, 2010\r\nIsGovernmentService: False\r\nMonthlySalary: 25,000.00\r\nPositionHeld: HIGH SCHOOL TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 6-\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
764545	2024-07-10	09:13:09.3970683	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3678\r\nCompanyInstitution: STA TERESA COLLEGE\r\nExperienceId: 0\r\nFromDate: June 01, 2006\r\nIsGovernmentService: False\r\nMonthlySalary: 16,000.00\r\nPositionHeld: ENGLISH DEPARTMENT HEAD\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: May 31, 2010\r\n	admin	Experiences	1
764546	2024-07-10	09:13:09.4020688	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3678\r\nCompanyInstitution: STA TERESA COLLEGE\r\nExperienceId: 0\r\nFromDate: June 01, 2004\r\nIsGovernmentService: False\r\nMonthlySalary: 15,000.00\r\nPositionHeld: TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: May 31, 2006\r\n	admin	Experiences	1
764547	2024-07-10	09:13:09.4070685	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3678\r\nCompanyInstitution: BATANGAS SCIENCE HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2002\r\nIsGovernmentService: False\r\nMonthlySalary: 9,000.00\r\nPositionHeld: TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: March 31, 2004\r\n	admin	Experiences	1
764549	2024-07-10	09:13:35.7092062	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EVALUATION WORKSHOP OF SUPPLEMENTARY LEARNING RESOURCES (SLRS) FOR THE NATIONAL READING PROGRAM (NRP)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764548	2024-07-10	09:13:09.4110693	<Undetected>	Update	BasicInformationId: 3678\r\nCompanyInstitution: BANABA WEST NATIONAL HIGH SCHOOL\r\nExperienceId: 10905\r\nFromDate: June 13, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 39,151.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: September 24, 2019\r\n	BasicInformationId: 3678\r\nCompanyInstitution: BANABA WEST NATIONAL HIGH SCHOOL\r\nExperienceId: 10905\r\nFromDate: June 13, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 39,150.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: September 24, 2019\r\n	admin	Experiences	1
764550	2024-07-10	09:14:38.6042939	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF SCIENCE IN INDUSTRIAL EDUCATION\r\nLevel: College\r\n	admin	Courses	1
764552	2024-07-10	09:15:04.4398660	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPACITY BUILDING SCIENCE, MATHEMATICS AND ENGLISH TEACHERS ON THE IMPLEMENTATION OF THE NATIONAL LEARNING CAMP (BATCH 3)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764554	2024-07-10	09:17:18.1954001	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MA-EM & EDD-EM\r\nLevel: Master's\r\n	admin	Courses	1
764555	2024-07-10	09:20:43.1792741	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION ROLL OUT OF THE HIGHER ORDER THINKING SKILLS PLPS FOR ENSCIMA TEACHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764556	2024-07-10	09:22:02.8416043	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CONFERENCE OF BASIC ACTION RESEARCH\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764558	2024-07-10	09:24:31.8939128	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL TRAINING OF TRAINERS (NTOT ON THE NATIONAL READING PROGRAM (LUZON CLUSTER)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764560	2024-07-10	09:26:36.1637442	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FINALIZATION OF LEARNING EXEMPLAR ON FINANCIAL LITERACY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764561	2024-07-10	09:27:51.1106988	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: JOURNALISM BOOTCAMP SERIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764562	2024-07-10	09:29:21.1171637	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INTERNATIONAL CONFERENCE ON LITERATURE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764564	2024-07-10	09:31:54.4837818	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING ON HOTS AND SOLO FRAMEWORK ACROSS THE CURRICUM FOR EDUCATION LEADERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764565	2024-07-10	09:35:23.6098228	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING WORKSHOP ON TEACHING THE CRITICAL COMPETENCIES IN ALL LEARNING AREAS OF KEY STAGE 1-2\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764566	2024-07-10	09:36:53.1042658	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: JUAN KAPATID LEARNING SUMMIT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764568	2024-07-10	09:40:53.7353815	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REVIEW OF REVISED DEPED- DEVELOPED LEARNING RESOURCES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764570	2024-07-10	09:42:48.3152264	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL TRAINING OF TRAINERS ON HOTS- PLPS FOR ENGLISH, SCIENCE AND MATHEMATICS TEACHER\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764572	2024-07-10	09:44:59.3428626	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL MARKET SCOAPING FOR SUPPLEMENTARY LEARNING RESOURCES FOR SCHOL LIBRARIES AND LIBRARY HUBS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764573	2024-07-10	09:46:54.5042249	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL PROGRAM REVIEW ON LEARNING DELIVERY SYSTEMS, MODALITIES AND INNOVATIONS IN VIEW OF LEARNING INITIATIVES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764574	2024-07-10	09:49:39.3790603	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING OF TRAINERS ON ADVANCING BASIC EDUCATION IN THE PHILIPPINES (ABC+) INSTRUCTIONAL LEADERSHI TRAINING (ILT) UPSCALING PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764575	2024-07-10	09:53:58.6631717	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: UPSKINING ON REGIONAL AND DIVISION READING SUPERVISORS/COORDINATORS ON THE EARLY LANGUAGE LITERACY AND NUMERACY ( ELLN) WITH FOCUS ON THE SCIENCE OF READING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764557	2024-07-10	09:24:16.4847073	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION NATIONAL TRAINING OF TRAINERS (NTOT) ON THE NATIONAL READING PROGRAM (LUZON CLUSTER)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764559	2024-07-10	09:25:40.4521191	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON THE NATIONAL TRAINING OF TRAINERS (NTOT) ON THE NATIONAL READING PROGRAM (LUZON CLUSTER)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764563	2024-07-10	09:30:54.9315676	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL TRAINING OF TRAINERS (RToT) FOR LEARNING RECOVERY PROGRAM IN LITERACY AND NUMERACY THROUGH SCHOOL BASED LEARNING ACTION CELL - BATCH 2\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764567	2024-07-10	09:39:23.2991194	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: IMPLEMENTATION OF THE END-OF-SCHOOL-YEAR (EOSY) PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764569	2024-07-10	09:41:28.6113122	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION PROGRAM IMPLEMENTATION REVIEW (PIR) OF THE LEARNING EREAS OF KEY STAGE 1-2\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764571	2024-07-10	09:43:08.5875145	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PANSANGAY NA PAGSASANAY SA PAGLINANG NG KASAYSAYAN SA PAGSASALITA AT PAGBASA AT PAGSULAT NG MGA AKDANG PAMPANITIKAN\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764578	2024-07-10	09:59:34.5059343	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REVISION OF REGIONAL OFFICE (RO) QUALITY ASSURED SDO CONTEXTUALIZED AND DEVELOPED LEARNING RESOURCES ELLN SHS AND TVL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764582	2024-07-10	10:05:59.1767267	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 DIVISION SCREENING AND SELECTION OF LEARNING RESOURCE EVALUATORS (LREs), ILLUSTRATORS, AND LAY-OUT ARTIST\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764609	2024-07-10	10:10:22.9902814	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION AND CAPACITY BUILDING ON LRMDS POLICIES AND GUIDELINES, ORGANIZATION AND MANAGEMENT OF LRCs CUM CRAFTING OF SCHOOL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764610	2024-07-10	10:13:06.0487358	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2022 DIVISION GAWAD ALA EH CUM EDUCATION WEEK CELEBRATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764611	2024-07-10	10:14:48.1047098	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EVALUATION OF READING RECOVERY PROGRAMAS: TRAINING AND CONVERGENCE WITH SCHOOL HEADS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764612	2024-07-10	10:16:36.5438453	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EVALUATION OF READING RECOVERY PROGRAMAS:M TRAINING AND CONVERGENCE WITH SCHOOL HEADS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764613	2024-07-10	10:18:14.6243747	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL TRAINING OF TRAINERS ON SPORTS SKILLS FOR ATHLETICS AND SWIMMING (SOUTHERN LUZON &NCR CLUSTER)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764665	2024-07-10	10:28:19.6795898	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ENHANCING THE CAPABILITY OF SCHOOL HEADS AND TEACHERS IN THE IMPLEMENTATION OF PROFESSIONAL PROGRAM VIA SCHOOL LEARNING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764672	2024-07-10	10:30:21.7439017	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2022 REGIONAL VIRTUAL WORKSHOP ON ASSESSMENT - DRIVEN INTERVENTION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764674	2024-07-10	10:34:29.9903123	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING WORKSHOP ON WRITING QUANTITATIVE AND QUALITATIVE RESEARCH IN EDUCATION CUM UPDATES ON RESEARCH GUIDELINES AND POLICIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764675	2024-07-10	10:36:56.5908811	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INTEGRATIVE ASSESSMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764693	2024-07-10	10:40:02.0710350	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING - WORKSHOP ON HOLISTIC ASSESSMENT KEY STAGES 1-4 (PHASE 1)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764576	2024-07-10	09:55:39.7616588	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EVALUATION OF READING PROGRAM: CONVERGENCE WITH REGIONAL AND DIVISION READING COORDINATORS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764577	2024-07-10	09:57:48.8053519	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING WORKSHOP FOR THE READING RECOVERY BRIGADE (R2B)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764579	2024-07-10	10:02:28.6988115	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ENHANCING THE CAPABILITY OF SCHOOL HEADS AND TEACHERS IN THE IMPLEMENTATION OF PROFESSIONAL PROGRAM VIA SCHOOL LEARNING ACTION CELL BATCH 2 - CLUSTER 3/ (DISTRICT 7)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764580	2024-07-10	10:04:26.4506267	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL VALIDATION OF CURRICULUM DRAFTS OF GRADES 7-10 (KEY STAGE 3)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764581	2024-07-10	10:05:41.3799466	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING FOR NQESH PROCTORS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764583	2024-07-10	10:07:09.7339121	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING WORKSHOP ON HOLISTIC ASSESSMENT FOR KEY STAGE 1-4\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764584	2024-07-10	10:10:20.6411177	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3678\r\nEmployeeTrainingId: 0\r\nFromDate: January 29, 2024\r\nHours: 24\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPED- BUREAU CURRICULUM DELIVERY \r\nStatus: \r\nToDate: January 31, 2024\r\nTrainingId: 15604\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764585	2024-07-10	10:10:20.6456292	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3678\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 36\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPED- BUREAU CURRICULUM DELIVERY\r\nStatus: \r\nToDate: January 27, 2024\r\nTrainingId: 15763\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764586	2024-07-10	10:10:20.6506291	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3678\r\nEmployeeTrainingId: 0\r\nFromDate: April 12, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED- BUREAU CURRICULUM DELIVERY\r\nStatus: \r\nToDate: May 12, 2023\r\nTrainingId: 15764\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764587	2024-07-10	10:10:20.6556289	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3678\r\nEmployeeTrainingId: 0\r\nFromDate: January 12, 2023\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED- BUREAU CURRICULUM DELIVERY\r\nStatus: \r\nToDate: November 27, 2023\r\nTrainingId: 15766\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764588	2024-07-10	10:10:20.6606293	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3678\r\nEmployeeTrainingId: 0\r\nFromDate: November 20, 2023\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED- BUREAU CURRICULUM DELIVERY\r\nStatus: \r\nToDate: November 24, 2023\r\nTrainingId: 15768\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764589	2024-07-10	10:10:20.6646287	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3678\r\nEmployeeTrainingId: 0\r\nFromDate: August 11, 2023\r\nHours: 40\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: October 11, 2023\r\nTrainingId: 15769\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764590	2024-07-10	10:10:20.6696291	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3678\r\nEmployeeTrainingId: 0\r\nFromDate: October 26, 2023\r\nHours: 40\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: October 28, 2023\r\nTrainingId: 15770\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764591	2024-07-10	10:10:20.6746289	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3678\r\nEmployeeTrainingId: 0\r\nFromDate: September 26, 2023\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: September 29, 2023\r\nTrainingId: 15620\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764592	2024-07-10	10:10:20.6796296	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3678\r\nEmployeeTrainingId: 0\r\nFromDate: September 13, 2023\r\nHours: 24\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: November 09, 2023\r\nTrainingId: 15113\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764593	2024-07-10	10:10:20.6836287	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3678\r\nEmployeeTrainingId: 0\r\nFromDate: August 14, 2023\r\nHours: 40\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: August 18, 2023\r\nTrainingId: 15574\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764594	2024-07-10	10:10:20.6896776	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3678\r\nEmployeeTrainingId: 0\r\nFromDate: April 08, 2023\r\nHours: 40\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: AHA LEARNING CENTER AND GOKONGWEI BROS.FOUNDATION\r\nStatus: \r\nToDate: July 31, 2023\r\nTrainingId: 15774\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764595	2024-07-10	10:10:20.6946728	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3678\r\nEmployeeTrainingId: 0\r\nFromDate: July 24, 2023\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED- BUREAU OF LEARNING RESOURCES\r\nStatus: \r\nToDate: July 28, 2023\r\nTrainingId: 15515\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764596	2024-07-10	10:10:20.6986704	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3678\r\nEmployeeTrainingId: 0\r\nFromDate: July 14, 2023\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED- BUREAU OF LEARNING RESOURCES\r\nStatus: \r\nToDate: October 07, 2023\r\nTrainingId: 15776\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764597	2024-07-10	10:10:20.7036260	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3678\r\nEmployeeTrainingId: 0\r\nFromDate: March 07, 2023\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED- BUREAU OF LEARNING RESOURCES\r\nStatus: \r\nToDate: July 07, 2023\r\nTrainingId: 15778\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764598	2024-07-10	10:10:20.7076260	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3678\r\nEmployeeTrainingId: 0\r\nFromDate: January 06, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHICAL\r\nSponsoringAgency: DEPED- BUREAU OF LEARNING RESOURCES\r\nStatus: \r\nToDate: March 06, 2023\r\nTrainingId: 15628\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764599	2024-07-10	10:10:20.7126262	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3678\r\nEmployeeTrainingId: 0\r\nFromDate: October 05, 2022\r\nHours: 16\r\nNatureOfParticipation: MANEGERIAL\r\nSponsoringAgency: REGION IV-A CALABARZON\r\nStatus: \r\nToDate: November 05, 2022\r\nTrainingId: 15781\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764600	2024-07-10	10:10:20.7176263	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3678\r\nEmployeeTrainingId: 0\r\nFromDate: March 20, 2023\r\nHours: 40\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: REGION IV-A CALABARZON\r\nStatus: \r\nToDate: March 24, 2023\r\nTrainingId: 15782\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764601	2024-07-10	10:10:20.7226260	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3678\r\nEmployeeTrainingId: 0\r\nFromDate: December 12, 2022\r\nHours: 56\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: REGION IV-A CALABARZON\r\nStatus: \r\nToDate: December 18, 2022\r\nTrainingId: 15783\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764602	2024-07-10	10:10:20.7266260	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3678\r\nEmployeeTrainingId: 0\r\nFromDate: July 11, 2022\r\nHours: 40\r\nNatureOfParticipation: MANAGEMENT\r\nSponsoringAgency: DEPED- BUREAU CURRICULUM DELIVERY \r\nStatus: \r\nToDate: November 11, 2022\r\nTrainingId: 15784\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764603	2024-07-10	10:10:20.7326294	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3678\r\nEmployeeTrainingId: 0\r\nFromDate: August 22, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: August 24, 2022\r\nTrainingId: 15785\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764604	2024-07-10	10:10:20.7366301	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3678\r\nEmployeeTrainingId: 0\r\nFromDate: August 22, 2022\r\nHours: 36\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: December 08, 2022\r\nTrainingId: 15787\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764605	2024-07-10	10:10:20.7416310	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3678\r\nEmployeeTrainingId: 0\r\nFromDate: April 07, 2022\r\nHours: 40\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: August 07, 2022\r\nTrainingId: 15788\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764606	2024-07-10	10:10:20.7459755	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3678\r\nEmployeeTrainingId: 0\r\nFromDate: May 19, 2022\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: May 20, 2022\r\nTrainingId: 15789\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764607	2024-07-10	10:10:20.7509759	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3678\r\nEmployeeTrainingId: 0\r\nFromDate: March 11, 2021\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: October 11, 2021\r\nTrainingId: 15791\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764608	2024-07-10	10:10:20.7559760	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3678\r\nEmployeeTrainingId: 0\r\nFromDate: October 18, 2021\r\nHours: 32\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: THAMES INTERNATIONAL\r\nStatus: \r\nToDate: October 29, 2021\r\nTrainingId: 15599\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764614	2024-07-10	10:20:08.3434028	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK 15 LOT 38\r\nAddress2: CAMELLA AZIENDA\r\nBarangay: TINGA LABAC\r\nBasicInformationId: 0\r\nBirthDate: December 11, 1975\r\nBirthPlace: PINAMUKAN PROPER BATS. CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: AURELIA.VIVAS@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: AURELIA\r\nFullName: AURELIA G. VIVAS\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.05\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: VIVAS\r\nMaidenName: \r\nMiddleName: GARCIA\r\nMobileNumber: 09088881167\r\nNationality: Filipino\r\nPermanentAddress1: BLK 15 LOT 38\r\nPermanentAddress2: CAMELLA AZIENDA\r\nPermanentBarangay: TINGA LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
764615	2024-07-10	10:20:08.3791966	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3680\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EFRAEM\r\nFullName: EFRAEM ICALLA VIVAS\r\nGender: Male\r\nLastName: VIVAS\r\nMaidenName: \r\nMiddleName: ICALLA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
764616	2024-07-10	10:20:08.3801956	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3680\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ANANIAS\r\nFullName: ANANIAS CARPIO GARCIA\r\nGender: Male\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: CARPIO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
764617	2024-07-10	10:20:08.3801956	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3680\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ELENA\r\nFullName: ELENA PAGSINOHIN\r\nGender: Female\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: PAGSINOHIN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
764618	2024-07-10	10:20:08.3801956	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3680\r\nBirthDate: July 21, 2004\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALEAH SANDRA\r\nFullName: ALEAH SANDRA GARCIA VIVAS\r\nGender: Female\r\nLastName: VIVAS\r\nMaidenName: \r\nMiddleName: GARCIA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764619	2024-07-10	10:20:08.3801956	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3680\r\nBirthDate: July 28, 2006\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LEANA MARIE\r\nFullName: LEANA MARIE GARCIA VIVAS\r\nGender: Female\r\nLastName: VIVAS\r\nMaidenName: \r\nMiddleName: GARCIA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764620	2024-07-10	10:20:08.3801956	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3680\r\nBirthDate: February 07, 2009\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EPHRAIM JYRUS\r\nFullName: EPHRAIM JYRUS GARCIA VIVAS\r\nGender: Male\r\nLastName: VIVAS\r\nMaidenName: \r\nMiddleName: GARCIA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764621	2024-07-10	10:20:08.3801956	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3680\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
764622	2024-07-10	10:22:43.4701688	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: COMPUTER HARDWARE SERVICING (CHS)\r\nLevel: Vocational\r\n	admin	Courses	1
764661	2024-07-10	10:24:20.9616470	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF SCIEENCE IN ELECTRONICS AND COMMUNICATIONS ENGINEERING \r\nLevel: College\r\n	admin	Courses	1
764662	2024-07-10	10:26:27.1773196	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER OF ARTS IN EDUCATION \r\nLevel: Master's\r\n	admin	Courses	1
764663	2024-07-10	10:27:08.3055179	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER OF ARTS IN EDUCATION- MATH\r\nLevel: Vocational\r\n	admin	Courses	1
764664	2024-07-10	10:28:15.7534956	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTERS OF ARTS IN EDUCATION- MATH \r\nLevel: Master's\r\n	admin	Courses	1
764673	2024-07-10	10:31:38.6577662	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: DOCTOR OF PHILOSOPHY IN EDUCATION- MATH \r\nLevel: Doctorate\r\n	admin	Courses	1
764676	2024-07-10	10:38:42.6170007	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3680\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1982\r\nDateTo: 1988\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: PINAMUKAN ELEMENTARY SCHOOL \r\nYearGraduated: 1988\r\n	admin	EducationalBackgrounds	1
764696	2024-07-10	10:45:00.0699243	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SUSTAINING CULTURE OF QUALITY RESEARCH: A SHARED RESPONSIBILITY"\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764623	2024-07-10	10:23:25.3493373	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: #333\r\nAddress2: \r\nBarangay: TINGA LABAC\r\nBasicInformationId: 0\r\nBirthDate: October 23, 1968\r\nBirthPlace: TINGA LABAC\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: herman.catapang001@deped.gov.ph\r\nExtensionName: \r\nFirstName: HERMAN\r\nFullName: HERMAN A. CATAPANG\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.78\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CATAPANG\r\nMaidenName: \r\nMiddleName: ANTE\r\nMobileNumber: 09989700743\r\nNationality: Filipino\r\nPermanentAddress1: #333\r\nPermanentAddress2: \r\nPermanentBarangay: TINGA LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: road 2\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ROAD 2\r\nTIN: \r\nWeight: 165\r\nZipCode: 4200\r\n	admin	BasicInformation	1
764624	2024-07-10	10:23:25.3746171	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: 2ND HONOR\r\nBasicInformationId: 3681\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1976\r\nDateTo: 1982\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: TINGA LABAC ELEMENTARY\r\nYearGraduated: 1982\r\n	admin	EducationalBackgrounds	1
764625	2024-07-10	10:23:25.3746171	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: SALUTATORIAN\r\nBasicInformationId: 3681\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1982\r\nDateTo: 1987\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1987\r\n	admin	EducationalBackgrounds	1
764626	2024-07-10	10:23:25.3756173	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3681\r\nCourse: \r\nCourseId: 1329\r\nCourseOrMajor: \r\nDateFrom: 1987\r\nDateTo: 1991\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY\r\nYearGraduated: 1991\r\n	admin	EducationalBackgrounds	1
764627	2024-07-10	10:23:25.3756173	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3681\r\nCourse: \r\nCourseId: 1330\r\nCourseOrMajor: \r\nDateFrom: 1991\r\nDateTo: 2017\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2017\r\n	admin	EducationalBackgrounds	1
764628	2024-07-10	10:23:25.3756173	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3681\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JUSTINO\r\nFullName: JUSTINO MELO CATAPANG\r\nGender: Male\r\nLastName: CATAPANG\r\nMaidenName: \r\nMiddleName: MELO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
764629	2024-07-10	10:23:25.3766173	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3681\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CAYETANA\r\nFullName: CAYETANA ANTE ANTE\r\nGender: Female\r\nLastName: ANTE\r\nMaidenName: \r\nMiddleName: ANTE\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
764630	2024-07-10	10:23:25.3766173	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3681\r\nDateOfExamination: November 10, 1991\r\nDateOfRelease: November 10, 1991\r\nEligibilityDocumentTypeId: 0\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: 0086823\r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 71.86%\r\nTitle: PBET\r\n	admin	Eligibilities	1
764631	2024-07-10	10:23:25.3766173	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3681\r\nDateOfExamination: November 27, 1994\r\nDateOfRelease: November 27, 1994\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: November 27, 1994\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 95-1003994\r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 80.22\r\nTitle: CSC-PROF \r\n	admin	Eligibilities	1
764632	2024-07-10	10:23:25.3766173	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3681\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 74,762.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-4\r\nStatus: Permanent\r\nToDate: July 10, 2024\r\n	admin	Experiences	1
764694	2024-07-10	10:41:21.8786387	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DEVELOPMENT OF OPERATIONAL GFUIDELINES FOR ELLN THROUGH REACH, READ, AND RICE PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764633	2024-07-10	10:23:25.3766173	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3681\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 73,124.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-4\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
764634	2024-07-10	10:23:25.3806171	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3681\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: May 09, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 71,666.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-4\r\nStatus: Permanent\r\nToDate: January 01, 2023\r\n	admin	Experiences	1
764635	2024-07-10	10:23:25.3806171	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3681\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 70,655.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-3\r\nStatus: Permanent\r\nToDate: May 08, 2021\r\n	admin	Experiences	1
764636	2024-07-10	10:23:25.3806171	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3681\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 69,017.00\r\nPositionHeld:  EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-3\r\nStatus: Probationary\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
764637	2024-07-10	10:23:25.3806171	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3681\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 67,469.00\r\nPositionHeld:  EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-3\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
764638	2024-07-10	10:23:25.3806171	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3681\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: May 09, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 60,491.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
764639	2024-07-10	10:23:25.3816176	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3681\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 59,597.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: May 08, 2018\r\n	admin	Experiences	1
764640	2024-07-10	10:23:25.3816176	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3681\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 53,503.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
764641	2024-07-10	10:23:25.3816176	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3681\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 48,032.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
764642	2024-07-10	10:23:25.3816176	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3681\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: May 09, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 43,121.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
764643	2024-07-10	10:23:25.3816176	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3681\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 42,652.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: May 08, 2015\r\n	admin	Experiences	1
771658	2025-03-18	11:54:11.9206503	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3807\r\nRecognitionId: 0\r\nRecognitionName: OUTSTANDING LEARNING RESOURCE DEVELOPER (SCHOOL LEVEL)\r\n	admin	Recognitions	1
764644	2024-07-10	10:23:25.3816176	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3681\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: May 09, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 37,812.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
764645	2024-07-10	10:23:25.3816176	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3681\r\nCompanyInstitution: NORTH DISTRICT \r\nExperienceId: 0\r\nFromDate: August 22, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 32,810.00\r\nPositionHeld: PRINCIPAL II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-1\r\nStatus: Permanent\r\nToDate: May 08, 2012\r\n	admin	Experiences	1
764646	2024-07-10	10:23:25.3816176	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3681\r\nCompanyInstitution: NORTH DISTRICT \r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 30,830.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: August 21, 2011\r\n	admin	Experiences	1
764647	2024-07-10	10:23:25.3816176	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3681\r\nCompanyInstitution: NORTH DISTRICT \r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 27,528.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
764648	2024-07-10	10:23:25.3826171	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3681\r\nCompanyInstitution: NORTH DISTRICT \r\nExperienceId: 0\r\nFromDate: August 23, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 24,177.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
764649	2024-07-10	10:23:25.3826171	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3681\r\nCompanyInstitution: NORTH DISTRICT \r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 23,703.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: August 22, 2009\r\n	admin	Experiences	1
764650	2024-07-10	10:23:25.3826171	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3681\r\nCompanyInstitution: NORTH DISTRICT \r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 19,168.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
764651	2024-07-10	10:23:25.3826171	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3681\r\nCompanyInstitution: NORTH DISTRICT \r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 19,168.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
764652	2024-07-10	10:23:25.3826171	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3681\r\nCompanyInstitution: NORTH DISTRICT \r\nExperienceId: 0\r\nFromDate: August 22, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 17,425.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
764653	2024-07-10	10:23:25.3826171	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3681\r\nCompanyInstitution: NORTH DISTRICT \r\nExperienceId: 0\r\nFromDate: June 16, 2003\r\nIsGovernmentService: True\r\nMonthlySalary: 11,167.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: August 21, 2006\r\n	admin	Experiences	1
764654	2024-07-10	10:23:25.3826171	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3681\r\nCompanyInstitution: NORTH DISTRICT \r\nExperienceId: 0\r\nFromDate: August 06, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 10,033.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 15, 2003\r\n	admin	Experiences	1
764655	2024-07-10	10:23:25.3826171	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3681\r\nCompanyInstitution: NORTH DISTRICT \r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: August 05, 2001\r\n	admin	Experiences	1
764656	2024-07-10	10:23:25.3826171	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3681\r\nCompanyInstitution: NORTH DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
764657	2024-07-10	10:23:25.3836172	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3681\r\nCompanyInstitution: NORTH DISTRICT \r\nExperienceId: 0\r\nFromDate: January 01, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
764658	2024-07-10	10:23:25.3836172	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3681\r\nCompanyInstitution: BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1998\r\n	admin	Experiences	1
764659	2024-07-10	10:23:25.3836172	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3681\r\nCompanyInstitution: BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: November 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1997\r\n	admin	Experiences	1
764660	2024-07-10	10:23:25.3846175	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3681\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
764666	2024-07-10	10:29:34.6734078	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3681\r\nCompanyInstitution: BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: June 03, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 6,013.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1996\r\n	admin	Experiences	1
764667	2024-07-10	10:29:34.6814080	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3681\r\nCompanyInstitution: STA. TERESA COLLEGE\r\nExperienceId: 0\r\nFromDate: June 01, 1994\r\nIsGovernmentService: False\r\nMonthlySalary: 5,000.00\r\nPositionHeld: SUBJECT TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Probationary\r\nToDate: April 11, 1996\r\n	admin	Experiences	1
764668	2024-07-10	10:29:34.6864078	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3681\r\nCompanyInstitution: STO. NINO FORMATION AND SCIENCE SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 1991\r\nIsGovernmentService: False\r\nMonthlySalary: 3,100.00\r\nPositionHeld: CLASSROOM TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Probationary\r\nToDate: March 31, 1994\r\n	admin	Experiences	1
764669	2024-07-10	10:29:34.6944078	<Undetected>	Update	BasicInformationId: 3681\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3587\r\nExtensionName: \r\nFirstName: JUSTINO\r\nFullName: JUSTINO MELO CATAPANG\r\nGender: Male\r\nLastName: CATAPANG\r\nMaidenName: \r\nMiddleName: MELO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3681\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3587\r\nExtensionName: \r\nFirstName: JUSTINO\r\nFullName: JUSTINO CATAPANG\r\nGender: Male\r\nLastName: CATAPANG\r\nMaidenName: \r\nMiddleName: MELO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
764670	2024-07-10	10:29:34.6994078	<Undetected>	Update	BasicInformationId: 3681\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3588\r\nExtensionName: \r\nFirstName: CAYETANA\r\nFullName: CAYETANA ANTE ANTE\r\nGender: Female\r\nLastName: ANTE\r\nMaidenName: \r\nMiddleName: ANTE\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3681\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3588\r\nExtensionName: \r\nFirstName: CAYETANA\r\nFullName: CAYETANA ANTE\r\nGender: Female\r\nLastName: ANTE\r\nMaidenName: \r\nMiddleName: ANTE\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
764671	2024-07-10	10:29:34.7044078	<Undetected>	Update	BasicInformationId: 3681\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3478\r\n	BasicInformationId: 3681\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3478\r\n	admin	Questionnaires	1
764739	2024-07-10	10:50:22.6618270	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING CUM WORKSHOP WITH SDO COUNTERPARTS ON THE ESTABLISHMENT OF PUBLIC AND PUBLIC AND PRIVATE SCHOOLS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764747	2024-07-10	10:54:02.8114097	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPACITY BUILDING OF SCIENCE, MATHEMATICS AND ENGLISH TEACHERS ON THE IMPLEMENTATION OF THE NATIONAL LEARNING CAMP-BATCH 1\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
771512	2025-03-18	11:21:19.2406670	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3806\r\nRecognitionId: 0\r\nRecognitionName: OUTSTANDING TEACHER SCHOOL- BATANGAS CITY EAST ELEMENTARY SCHOOL 2023\r\n	admin	Recognitions	1
764677	2024-07-10	10:38:42.6220005	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3680\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1988\r\nDateTo: 1992\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: PINAMUKAN NATIONAL HIGH SCHOOL \r\nYearGraduated: 1992\r\n	admin	EducationalBackgrounds	1
764678	2024-07-10	10:38:42.6280451	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3680\r\nCourse: \r\nCourseId: 1331\r\nCourseOrMajor: \r\nDateFrom: 2009\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Vocational Graduate\r\nMajor: \r\nSchoolorUniversity: ST ANTHONY COLLEGE- CALAPAN THRU TESDA \r\nYearGraduated: 2009\r\n	admin	EducationalBackgrounds	1
764679	2024-07-10	10:38:42.6330401	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3680\r\nCourse: \r\nCourseId: 1332\r\nCourseOrMajor: \r\nDateFrom: 1992\r\nDateTo: 1998\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY \r\nYearGraduated: 1998\r\n	admin	EducationalBackgrounds	1
764680	2024-07-10	10:38:42.6370434	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3680\r\nCourse: \r\nCourseId: 1335\r\nCourseOrMajor: \r\nDateFrom: 2007\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: MINSCAT/ UNIVERSITY OF BATANGAS \r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
764681	2024-07-10	10:38:42.6450002	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3680\r\nCourse: \r\nCourseId: 1336\r\nCourseOrMajor: \r\nDateFrom: 2016\r\nDateTo: 2019\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: \r\nSchoolorUniversity: MINSCAT/ UNIVERSITY OF BATANGAS \r\nYearGraduated: 2019\r\n	admin	EducationalBackgrounds	1
764682	2024-07-10	10:38:42.6490003	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3680\r\nDateOfExamination: September 20, 2016\r\nDateOfRelease: November 12, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: December 27, 2016\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1516938\r\nPlaceOfExamination: BATANGAS NATIONAL HIGH SCHOOL/ LUCENA CITY \r\nRating: 80.0%\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS \r\n	admin	Eligibilities	1
764683	2024-07-10	10:38:42.6540002	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3680\r\nDateOfExamination: April 14, 2023\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: April 14, 2023\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 13-111177\r\nPlaceOfExamination: BATANGAS NATIONAL HIGH SCHOOL \r\nRating: 80.0% \r\nTitle: CSC PROFESSIONAL  \r\n	admin	Eligibilities	1
764684	2024-07-10	10:38:42.6590006	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3680\r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 09170302003329\r\nPlaceOfExamination: CALAPAN ORIENTAL MINDORO \r\nRating: COMPETENT \r\nTitle: COMPUTER HARDWARE SERVICING NC II \r\n	admin	Eligibilities	1
764685	2024-07-10	10:38:42.6635070	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLK 15 LOT 38\r\nAddress2: CAMELLA AZIENDA\r\nBarangay: TINGA LABAC\r\nBasicInformationId: 3680\r\nBirthDate: December 11, 1975\r\nBirthPlace: PINAMUKAN PROPER BATS. CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: AURELIA.VIVAS@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: AURELIA\r\nFullName: AURELIA G. VIVAS\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.05\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: VIVAS\r\nMaidenName: \r\nMiddleName: GARCIA\r\nMobileNumber: 09088881167\r\nNationality: Filipino\r\nPermanentAddress1: BLK 15 LOT 38\r\nPermanentAddress2: CAMELLA AZIENDA\r\nPermanentBarangay: TINGA LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK 15 LOT 38\r\nAddress2: CAMELLA AZIENDA\r\nBarangay: TINGA LABAC\r\nBasicInformationId: 3680\r\nBirthDate: December 11, 1975\r\nBirthPlace: PINAMUKAN PROPER BATS. CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: AURELIA.VIVAS@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: AURELIA\r\nFullName: AURELIA G. VIVAS\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.05\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: VIVAS\r\nMaidenName: \r\nMiddleName: GARCIA\r\nMobileNumber: 09088881167\r\nNationality: Filipino\r\nPermanentAddress1: BLK 15 LOT 38\r\nPermanentAddress2: CAMELLA AZIENDA\r\nPermanentBarangay: TINGA LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
764695	2024-07-10	10:43:20.5409369	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PROJECT SALK-SEEK : INTERSERVICE NA PAGSASANAY NG MGA GURO SA PAGPAPAIGTING SA KULTURA NG PANANALIKSIK SA KAGAWARAN NG MGA PILIPINO\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764686	2024-07-10	10:38:42.6685069	<Undetected>	Update	BasicInformationId: 3680\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3581\r\nExtensionName: \r\nFirstName: EFRAEM\r\nFullName: EFRAEM ICALLA VIVAS\r\nGender: Male\r\nLastName: VIVAS\r\nMaidenName: \r\nMiddleName: ICALLA\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3680\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3581\r\nExtensionName: \r\nFirstName: EFRAEM\r\nFullName: EFRAEM VIVAS\r\nGender: Male\r\nLastName: VIVAS\r\nMaidenName: \r\nMiddleName: ICALLA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
764687	2024-07-10	10:38:42.6735078	<Undetected>	Update	BasicInformationId: 3680\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3582\r\nExtensionName: \r\nFirstName: ANANIAS\r\nFullName: ANANIAS CARPIO GARCIA\r\nGender: Male\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: CARPIO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3680\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3582\r\nExtensionName: \r\nFirstName: ANANIAS\r\nFullName: ANANIAS GARCIA\r\nGender: Male\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: CARPIO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
764688	2024-07-10	10:38:42.6775071	<Undetected>	Update	BasicInformationId: 3680\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3583\r\nExtensionName: \r\nFirstName: ELENA\r\nFullName: ELENA PAGSINOHIN\r\nGender: Female\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: PAGSINOHIN\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3680\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3583\r\nExtensionName: \r\nFirstName: ELENA\r\nFullName: ELENA GARCIA\r\nGender: Female\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: PAGSINOHIN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
764689	2024-07-10	10:38:42.6825070	<Undetected>	Update	BasicInformationId: 3680\r\nBirthDate: July 21, 2004\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3584\r\nExtensionName: \r\nFirstName: ALEAH SANDRA\r\nFullName: ALEAH SANDRA GARCIA VIVAS\r\nGender: Female\r\nLastName: VIVAS\r\nMaidenName: \r\nMiddleName: GARCIA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3680\r\nBirthDate: July 21, 2004\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3584\r\nExtensionName: \r\nFirstName: ALEAH SANDRA\r\nFullName: ALEAH SANDRA VIVAS\r\nGender: Female\r\nLastName: VIVAS\r\nMaidenName: \r\nMiddleName: GARCIA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764690	2024-07-10	10:38:42.6875069	<Undetected>	Update	BasicInformationId: 3680\r\nBirthDate: July 28, 2006\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3585\r\nExtensionName: \r\nFirstName: LEANA MARIE\r\nFullName: LEANA MARIE GARCIA VIVAS\r\nGender: Female\r\nLastName: VIVAS\r\nMaidenName: \r\nMiddleName: GARCIA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3680\r\nBirthDate: July 28, 2006\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3585\r\nExtensionName: \r\nFirstName: LEANA MARIE\r\nFullName: LEANA MARIE VIVAS\r\nGender: Female\r\nLastName: VIVAS\r\nMaidenName: \r\nMiddleName: GARCIA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764691	2024-07-10	10:38:42.6915074	<Undetected>	Update	BasicInformationId: 3680\r\nBirthDate: February 07, 2009\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3586\r\nExtensionName: \r\nFirstName: EPHRAIM JYRUS\r\nFullName: EPHRAIM JYRUS GARCIA VIVAS\r\nGender: Male\r\nLastName: VIVAS\r\nMaidenName: \r\nMiddleName: GARCIA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3680\r\nBirthDate: February 07, 2009\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3586\r\nExtensionName: \r\nFirstName: EPHRAIM JYRUS\r\nFullName: EPHRAIM JYRUS VIVAS\r\nGender: Male\r\nLastName: VIVAS\r\nMaidenName: \r\nMiddleName: GARCIA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764692	2024-07-10	10:38:42.6965070	<Undetected>	Update	BasicInformationId: 3680\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3477\r\n	BasicInformationId: 3680\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3477\r\n	admin	Questionnaires	1
764740	2024-07-10	10:52:04.4943944	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3680\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: December 05, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 71,511.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: July 10, 2024\r\n	admin	Experiences	1
764741	2024-07-10	10:52:04.4993959	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3680\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: July 25, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 51,325.00\r\nPositionHeld: SENIOR EDUCATION PROGRAM SPECIALIST- PLANNING & RESEARCH \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-3\r\nStatus: Permanent\r\nToDate: July 10, 2024\r\n	admin	Experiences	1
764742	2024-07-10	10:52:04.5033955	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3680\r\nCompanyInstitution: BATANGAS STATE UNIVERSITY- COLLEGE OF INFORMATION & COMPUTING SCIENCES ( CICS) \r\nExperienceId: 0\r\nFromDate: January 06, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 296.00\r\nPositionHeld: GUEST LECTURER/ PART- TIMER \r\nRateTypeName: Hourly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 17-\r\nStatus: Contract of Service\r\nToDate: July 10, 2024\r\n	admin	Experiences	1
764743	2024-07-10	10:52:04.5094019	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3680\r\nCompanyInstitution: BATANGAS STATE UNIVERSITY- COLLEGE OF INFORMATION & COMPUTING SCIENCES ( CICS) \r\nExperienceId: 0\r\nFromDate: July 02, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 19,940.00\r\nPositionHeld: RESEARCH COORDINATOR/ INSTRUCTOR  \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: May 20, 2016\r\n	admin	Experiences	1
764749	2024-07-10	10:59:07.8496845	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SEMINAR WORKSHOP ON CAPACITY BUILDING FOCUSING ON LEARNER-CENTERED APPROACH FOR EFFECTIVE DELIVERY OF INSTRUCTION IN ENSCIMA\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764697	2024-07-10	10:47:09.3098084	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION SCREENING / SELECTION OF LEARNING RESOURCE EVALUATORS (LREs) AND LEARNING RESOURCE ILLUSTRATORS (LRIs)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764698	2024-07-10	10:48:14.4708321	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: January 29, 2024\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: SDO - BATANGAS CITY\r\nStatus: \r\nToDate: January 31, 2024\r\nTrainingId: 15604\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764699	2024-07-10	10:48:14.4768124	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: November 27, 2023\r\nHours: 24\r\nNatureOfParticipation: CHAR - LOGISTICS\r\nSponsoringAgency: SDO - BATANGAS CITY\r\nStatus: \r\nToDate: December 02, 2023\r\nTrainingId: 15755\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764700	2024-07-10	10:48:14.4807992	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: December 04, 2023\r\nHours: 16\r\nNatureOfParticipation: FACILITATOR\r\nSponsoringAgency: SDO - BATANGAS CITY\r\nStatus: \r\nToDate: December 05, 2023\r\nTrainingId: 15756\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764701	2024-07-10	10:48:14.4857823	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: September 26, 2023\r\nHours: 48\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: DepEd CO\r\nStatus: \r\nToDate: December 01, 2023\r\nTrainingId: 15767\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764702	2024-07-10	10:48:14.4907658	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: December 22, 2023\r\nHours: 8\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: SDO - BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15178\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764703	2024-07-10	10:48:14.4957490	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: November 17, 2023\r\nHours: 8\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: SDO - BATANGAS CITY\r\nStatus: \r\nToDate: November 17, 2023\r\nTrainingId: 15670\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764704	2024-07-10	10:48:14.4997359	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: November 14, 2023\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: RO - CALABARZON\r\nStatus: \r\nToDate: November 17, 2023\r\nTrainingId: 15771\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764705	2024-07-10	10:48:14.5047190	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: October 23, 2023\r\nHours: 40\r\nNatureOfParticipation: TECH / PARTICIPANT\r\nSponsoringAgency: DEPED CO\r\nStatus: \r\nToDate: October 27, 2023\r\nTrainingId: 15759\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764706	2024-07-10	10:48:14.5087056	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: October 02, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO - BATANGAS CITY \r\nStatus: \r\nToDate: October 02, 2023\r\nTrainingId: 15760\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764707	2024-07-10	10:48:14.5136891	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: September 22, 2023\r\nHours: 8\r\nNatureOfParticipation: PARTICIPANT / JUDGE\r\nSponsoringAgency: SDO - BATANGAS CITY\r\nStatus: \r\nToDate: September 22, 2023\r\nTrainingId: 15307\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764708	2024-07-10	10:48:14.5186724	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: SDO - BATANGAS CITY\r\nStatus: \r\nToDate: September 18, 2023\r\nTrainingId: 15045\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764709	2024-07-10	10:48:14.5226589	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: August 14, 2023\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL / PARTICIPANT \r\nSponsoringAgency: SDO - BATANGAS CITY\r\nStatus: \r\nToDate: August 14, 2023\r\nTrainingId: 15574\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764710	2024-07-10	10:48:14.5276423	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: August 08, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL / RESOURCE SPEAKER \r\nSponsoringAgency: SDO - BATANGAS CITY\r\nStatus: \r\nToDate: August 11, 2023\r\nTrainingId: 15534\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764711	2024-07-10	10:48:14.5326256	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: July 24, 2023\r\nHours: 192\r\nNatureOfParticipation: FOCAL PERSON\r\nSponsoringAgency: SDO - BATANGAS CITY\r\nStatus: \r\nToDate: August 25, 2023\r\nTrainingId: 15775\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764712	2024-07-10	10:48:14.5376092	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: July 31, 2023\r\nHours: 8\r\nNatureOfParticipation: CHAIRPERSON\r\nSponsoringAgency: SDO - BATANGAS CITY\r\nStatus: \r\nToDate: July 31, 2023\r\nTrainingId: 15777\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764713	2024-07-10	10:48:14.5415959	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: July 26, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO - BATANGAS CITY\r\nStatus: \r\nToDate: July 28, 2023\r\nTrainingId: 15779\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764714	2024-07-10	10:48:14.5465791	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: July 24, 2023\r\nHours: 40\r\nNatureOfParticipation: VALIDATOR / CHAIRMAN\r\nSponsoringAgency: SDO - BATANGAS CITY\r\nStatus: \r\nToDate: July 28, 2023\r\nTrainingId: 15515\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764715	2024-07-10	10:48:14.5505655	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: July 19, 2023\r\nHours: 8\r\nNatureOfParticipation: EVALUATOR / FACILITATOR\r\nSponsoringAgency: SDO - BATANGAS CITY\r\nStatus: \r\nToDate: July 19, 2023\r\nTrainingId: 15786\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764716	2024-07-10	10:48:14.5555490	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: July 07, 2023\r\nHours: 8\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: SDO - BATANGAS CITY\r\nStatus: \r\nToDate: July 07, 2023\r\nTrainingId: 15539\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764717	2024-07-10	10:48:14.5605324	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: July 06, 2023\r\nHours: 8\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: SDO - BATANGAS CITY\r\nStatus: \r\nToDate: July 06, 2023\r\nTrainingId: 15420\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764718	2024-07-10	10:48:14.5645189	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: June 10, 2023\r\nHours: 8\r\nNatureOfParticipation: CHAIRMAN\r\nSponsoringAgency: SDO - BATANGAS CITY\r\nStatus: \r\nToDate: June 01, 2023\r\nTrainingId: 15790\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764719	2024-07-10	10:48:14.5695022	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: SDO - BATANGAS CITY\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764720	2024-07-10	10:48:14.5744857	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: March 21, 2023\r\nHours: 24\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: SDO - BATANGAS CITY\r\nStatus: \r\nToDate: March 23, 2023\r\nTrainingId: 15792\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764721	2024-07-10	10:48:14.5794690	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: March 07, 2023\r\nHours: 8\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: SDO - BATANGAS CITY\r\nStatus: \r\nToDate: March 07, 2023\r\nTrainingId: 15748\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764722	2024-07-10	10:48:14.5834555	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: December 07, 2022\r\nHours: 8\r\nNatureOfParticipation: EVALUATOR / VALIDATOR \r\nSponsoringAgency: SDO - BATANGAS CITY\r\nStatus: \r\nToDate: December 07, 2022\r\nTrainingId: 15793\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764723	2024-07-10	10:48:14.5884390	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: December 02, 2022\r\nHours: 8\r\nNatureOfParticipation: TRAINING PROPONENT / VICE - CHAIR \r\nSponsoringAgency: SDO - BATANGAS CITY\r\nStatus: \r\nToDate: December 02, 2022\r\nTrainingId: 15794\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764724	2024-07-10	10:48:14.5924255	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: November 06, 2022\r\nHours: 40\r\nNatureOfParticipation: MEMBER\r\nSponsoringAgency: DepEd CO\r\nStatus: \r\nToDate: November 06, 2022\r\nTrainingId: 15796\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764725	2024-07-10	10:48:14.5974089	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: September 07, 2022\r\nHours: 8\r\nNatureOfParticipation: PARTICIPANT \r\nSponsoringAgency: SDO - BATANGAS CITY\r\nStatus: \r\nToDate: September 07, 2022\r\nTrainingId: 15174\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764726	2024-07-10	10:48:14.6023923	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: August 24, 2022\r\nHours: 16\r\nNatureOfParticipation: CO - TRAINING PROPONENT \r\nSponsoringAgency: SDO - BATANGAS CITY \r\nStatus: \r\nToDate: August 26, 2022\r\nTrainingId: 15785\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764727	2024-07-10	10:48:14.6063787	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: August 12, 2022\r\nHours: 56\r\nNatureOfParticipation: RESOURCE SPEAKER \r\nSponsoringAgency: SDO - BATANGAS CITY \r\nStatus: \r\nToDate: August 22, 2022\r\nTrainingId: 15797\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764728	2024-07-10	10:48:14.6113621	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: August 03, 2022\r\nHours: 24\r\nNatureOfParticipation: MEMBER \r\nSponsoringAgency: RO - CALABARZON\r\nStatus: \r\nToDate: August 05, 2022\r\nTrainingId: 15798\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764729	2024-07-10	10:48:14.6153488	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: August 03, 2022\r\nHours: 53\r\nNatureOfParticipation: REACTOR \r\nSponsoringAgency: SDO - BATANGAS CITY \r\nStatus: \r\nToDate: August 11, 2022\r\nTrainingId: 15797\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764730	2024-07-10	10:48:14.6213286	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: August 03, 2022\r\nHours: 16\r\nNatureOfParticipation: MEMBER\r\nSponsoringAgency: SDO - BATANGAS CITY \r\nStatus: \r\nToDate: August 04, 2022\r\nTrainingId: 15799\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764731	2024-07-10	10:48:14.6253156	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: July 25, 2022\r\nHours: 56\r\nNatureOfParticipation: REACTOR \r\nSponsoringAgency: SDO - BATANGAS CITY \r\nStatus: \r\nToDate: August 02, 2022\r\nTrainingId: 15797\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764732	2024-07-10	10:48:14.6302979	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: July 14, 2022\r\nHours: 8\r\nNatureOfParticipation: EVALUATOR / VALIDATOR \r\nSponsoringAgency: SDO - BATANGAS CITY \r\nStatus: \r\nToDate: July 14, 2022\r\nTrainingId: 15800\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764733	2024-07-10	10:48:14.6342843	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: June 30, 2022\r\nHours: 8\r\nNatureOfParticipation: PARTICIPANT \r\nSponsoringAgency: SDO - BATANGAS CITY \r\nStatus: \r\nToDate: June 30, 2022\r\nTrainingId: 15219\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764734	2024-07-10	10:48:14.6392688	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: April 23, 2022\r\nHours: 32\r\nNatureOfParticipation: EVALUATOR / VALIDATOR \r\nSponsoringAgency: SDO - BATANGAS CITY \r\nStatus: \r\nToDate: May 14, 2022\r\nTrainingId: 15801\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764735	2024-07-10	10:48:14.6442522	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: April 27, 2022\r\nHours: 24\r\nNatureOfParticipation: PARTICIPANT \r\nSponsoringAgency: RO - CALABARZON\r\nStatus: \r\nToDate: April 29, 2022\r\nTrainingId: 15802\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764736	2024-07-10	10:48:14.6492356	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: July 11, 2021\r\nHours: 8\r\nNatureOfParticipation: TAGAPANAYAM \r\nSponsoringAgency: SDO - BATANGAS CITY \r\nStatus: \r\nToDate: December 11, 2021\r\nTrainingId: 15803\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764737	2024-07-10	10:48:14.6532210	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: October 17, 2021\r\nHours: 8\r\nNatureOfParticipation: PARTICIPANT\r\nSponsoringAgency: BATANGAS STATE UNIVERSITY \r\nStatus: \r\nToDate: October 17, 2021\r\nTrainingId: 15804\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764738	2024-07-10	10:48:14.6582045	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3677\r\nEmployeeTrainingId: 0\r\nFromDate: February 08, 2021\r\nHours: 40\r\nNatureOfParticipation: CHAIRMAN \r\nSponsoringAgency: SDO - BATANGAS CITY \r\nStatus: \r\nToDate: February 12, 2021\r\nTrainingId: 15805\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764793	2024-07-10	11:38:07.3624450	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION OF PUBLISHERS ON THE DEVELOPMENT OF GRADES 2, 5 AND 8 TEXTBOOKS AND TEACHER'A MANUALS ALIGHNED WITH MATATAG K TO 10 CURRICULUM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764798	2024-07-10	11:45:57.2505075	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: GAWAD TEODORA ALONSO 2023 (5TH NATIONAL COMPETITION ON STORYBOOK WRITING)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764801	2024-07-10	11:49:12.6896113	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FINAL QUALITY ASSURANCE TRAINING/WORKSHOP OF CONTEXTUALIZED AND LOCALIZED LEARNING MATERIALS IN ALL LEARNING AREA - BATCH 1\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
771513	2025-03-18	11:21:19.2456187	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3806\r\nRecognitionId: 0\r\nRecognitionName: OUTSTANDING TEACHER DISTRICT I- 3rd PLACE 2022\r\n	admin	Recognitions	1
764744	2024-07-10	10:52:04.5134009	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3680\r\nCompanyInstitution: ST. ANTHONY COLLEGE- CALAPAN CITY \r\nExperienceId: 0\r\nFromDate: June 13, 2004\r\nIsGovernmentService: False\r\nMonthlySalary: 22,000.00\r\nPositionHeld: DEPARTMENT/ HEAD TEACHER & ITE INSTRUCTOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: March 03, 2010\r\n	admin	Experiences	1
764745	2024-07-10	10:52:04.5194020	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3680\r\nCompanyInstitution: SYSTEM TECHNOLOGY INSTITUTE ( STI) CALAPAN CITY \r\nExperienceId: 0\r\nFromDate: June 15, 2000\r\nIsGovernmentService: False\r\nMonthlySalary: 18,000.00\r\nPositionHeld: IT/ MATH / SCIENCE INSTRUCTOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: March 31, 2004\r\n	admin	Experiences	1
764746	2024-07-10	10:52:04.5229138	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3680\r\nCompanyInstitution: AMATELEC COMMUNICATION ( AMATEL ) CALAPAN CITY \r\nExperienceId: 0\r\nFromDate: June 15, 1998\r\nIsGovernmentService: False\r\nMonthlySalary: 16,000.00\r\nPositionHeld: HARDWARE INSTRUCTOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Probationary\r\nToDate: March 31, 2000\r\n	admin	Experiences	1
764748	2024-07-10	10:57:15.1117679	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL- BASED IN - SERVICE TRAINING FOR TEACHERS ( INSET) FOCUSING ON LEARNING RESOURCE STANDARDS, POLICIES AND GUIDELINES ON SCHOOL LR IMPLEMENTATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764750	2024-07-10	10:59:09.0744640	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL- BASED IN SERVICE TRAINING FOR TEACHERS ( INSET)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764751	2024-07-10	11:00:42.4954017	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INTERVENTION AND LEARNING MATERIALS DEVELOPMENT TO IMPROVE PUPILS' ACADEMIC PERFORMANCE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764770	2024-07-10	11:03:54.3619612	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING/ WORKSHOP ON ENHANCING SCIENTIFIC SKILLS OF ROBO - TECH ENTHUSIASTS AND INTELLIGENT MACHINES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764771	2024-07-10	11:05:29.0994738	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 DIVISION CONFERENCE OF BASIC EDUCATION RESEARCHERS ( DCBER)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764772	2024-07-10	11:08:16.7214337	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DEVELOPMENT AND QUALITY ASSURANCE OF TEACHING AND LEARNING RESOURCES FOR THE PILOT IMPLEMENTATION OF MATATAG CURRICULUM ( QUARTER 1 OF GRADE 7 MATHEMATICS )\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764773	2024-07-10	11:10:23.3788815	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EVALUATION OF RESEARCH ABSTRACTS FOR 2022 VIRTUAL CONFERENCE OF BASIC EDUCATION RESEARCHERS ( VCBER)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764780	2024-07-10	11:12:28.7023810	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING/ WORKSHOP ON POLICY ANALYSIS, IMPLEMENTATION AND REVIEW\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764781	2024-07-10	11:14:59.3350967	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: VIRTUAL COMMENCEMENT ACTIVITY FOR THE SIXTH CYCLE BASIC EDUCATION RESEARCH FUND ( BERF) GRANTEES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764782	2024-07-10	11:16:26.2322983	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CONVERGENCE OF RFTATS AND DFTATS FOCUSED ON THE ORGANIZATION AND MANAGEMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764783	2024-07-10	11:18:23.3259987	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RE- ORIENTATION ON SCHOOL- BASED MANAGEMENT ( SBM) FOR SCHOOL HEADS, SBM COORDINATORS AND SGC CHAIRPERSONS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764784	2024-07-10	11:19:59.4720689	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SESSION 1 & 2 OF THE IEEE XPLORE DIGITAL LIBRARY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764785	2024-07-10	11:24:36.6304385	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2021 VIRTUAL CONFERENCE OF BASIC EDUCATION RESEARCHERS ( VCBER)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
771514	2025-03-18	11:21:19.2506186	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3806\r\nRecognitionId: 0\r\nRecognitionName: SILVER SERVICE AWARD - BOYSCOUT OF THE PHILIPPINES 2012\r\n	admin	Recognitions	1
764752	2024-07-10	11:03:36.4289665	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3681\r\nEmployeeTrainingId: 0\r\nFromDate: January 29, 2024\r\nHours: 24\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: January 31, 2024\r\nTrainingId: 15604\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764753	2024-07-10	11:03:36.4339661	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3681\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 32\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: January 27, 2024\r\nTrainingId: 15605\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764754	2024-07-10	11:03:36.4389658	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3681\r\nEmployeeTrainingId: 0\r\nFromDate: December 04, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: December 05, 2023\r\nTrainingId: 15606\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764755	2024-07-10	11:03:36.4439657	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3681\r\nEmployeeTrainingId: 0\r\nFromDate: November 14, 2023\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: November 17, 2023\r\nTrainingId: 15758\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764756	2024-07-10	11:03:36.4489658	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3681\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764757	2024-07-10	11:03:36.4529655	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3681\r\nEmployeeTrainingId: 0\r\nFromDate: October 02, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: October 02, 2023\r\nTrainingId: 15529\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764758	2024-07-10	11:03:36.4579656	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3681\r\nEmployeeTrainingId: 0\r\nFromDate: November 17, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: November 17, 2023\r\nTrainingId: 15607\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764759	2024-07-10	11:03:36.4629658	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3681\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15113\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764760	2024-07-10	11:03:36.4667598	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3681\r\nEmployeeTrainingId: 0\r\nFromDate: September 26, 2023\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: September 29, 2023\r\nTrainingId: 15531\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764761	2024-07-10	11:03:36.4717623	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3681\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: September 12, 2023\r\nTrainingId: 15806\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764762	2024-07-10	11:03:36.4767624	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3681\r\nEmployeeTrainingId: 0\r\nFromDate: August 14, 2023\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: August 18, 2023\r\nTrainingId: 15574\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764763	2024-07-10	11:03:36.4817627	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3681\r\nEmployeeTrainingId: 0\r\nFromDate: July 06, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: July 06, 2023\r\nTrainingId: 15661\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764764	2024-07-10	11:03:36.4858032	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3681\r\nEmployeeTrainingId: 0\r\nFromDate: July 18, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: July 20, 2023\r\nTrainingId: 15807\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764765	2024-07-10	11:03:36.4908033	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3681\r\nEmployeeTrainingId: 0\r\nFromDate: July 24, 2323\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: July 28, 2023\r\nTrainingId: 15515\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766734	2024-07-12	13:30:05.7524474	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3699\r\nRecognitionId: 0\r\nRecognitionName: OUTSTANDING DEPED ENGINEER, DECEMBER 5-9, 2011, 7TH NATIONAL CONVENTION OF PHYSICAL FACILITIES COORDINATORS AND DEPED PROJECT ENGINEERS\r\n	admin	Recognitions	1
764766	2024-07-10	11:03:36.4958017	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3681\r\nEmployeeTrainingId: 0\r\nFromDate: August 15, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: August 17, 2023\r\nTrainingId: 15809\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764767	2024-07-10	11:03:36.5007628	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3681\r\nEmployeeTrainingId: 0\r\nFromDate: August 09, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: September 11, 2023\r\nTrainingId: 15534\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764768	2024-07-10	11:03:36.5047623	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3681\r\nEmployeeTrainingId: 0\r\nFromDate: March 13, 2023\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: March 17, 2023\r\nTrainingId: 15612\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764769	2024-07-10	11:03:36.5097624	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3681\r\nEmployeeTrainingId: 0\r\nFromDate: August 03, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: August 05, 2023\r\nTrainingId: 15633\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764774	2024-07-10	11:11:00.0378890	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3681\r\nSkillId: 0\r\nSkillName: PLANTING, READING\r\n	admin	Skills	1
764775	2024-07-10	11:11:00.0448889	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3681\r\nCharacterReferenceId: 0\r\nCompanyAddress: BANABA CENTER, BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09295320492\r\nExtensionName: \r\nFirstName: DEMETRIO \r\nLastName: BAUTISTA\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764776	2024-07-10	11:11:00.0498892	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3681\r\nCharacterReferenceId: 0\r\nCompanyAddress: TINGA LABAC, BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09171483671\r\nExtensionName: \r\nFirstName: DEMETRIA \r\nLastName: ANDAL\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764777	2024-07-10	11:11:00.0548892	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3681\r\nCharacterReferenceId: 0\r\nCompanyAddress: BANABA WEST, BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09228292303\r\nExtensionName: \r\nFirstName: LEILA \r\nLastName: SECO\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764778	2024-07-10	11:11:00.0598889	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: #333\r\nAddress2: \r\nBarangay: TINGA LABAC\r\nBasicInformationId: 3681\r\nBirthDate: October 23, 1968\r\nBirthPlace: TINGA LABAC\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: herman.catapang001@deped.gov.ph\r\nExtensionName: \r\nFirstName: HERMAN\r\nFullName: HERMAN A. CATAPANG\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.78\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CATAPANG\r\nMaidenName: \r\nMiddleName: ANTE\r\nMobileNumber: 09989700743\r\nNationality: Filipino\r\nPermanentAddress1: #333\r\nPermanentAddress2: \r\nPermanentBarangay: TINGA LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: road 2\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ROAD 2\r\nTIN: \r\nWeight: 165\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: #333\r\nAddress2: \r\nBarangay: TINGA LABAC\r\nBasicInformationId: 3681\r\nBirthDate: October 23, 1968\r\nBirthPlace: TINGA LABAC\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: herman.catapang001@deped.gov.ph\r\nExtensionName: \r\nFirstName: HERMAN\r\nFullName: HERMAN A. CATAPANG\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02002993686\r\nHDMF: 1490-0098-0971\r\nHeight: 1.78\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CATAPANG\r\nMaidenName: \r\nMiddleName: ANTE\r\nMobileNumber: 09989700743\r\nNationality: Filipino\r\nPermanentAddress1: #333\r\nPermanentAddress2: \r\nPermanentBarangay: TINGA LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: road 2\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000014569-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-0788721-1\r\nStreetName: ROAD 2\r\nTIN: 117-809-553-0000\r\nWeight: 165\r\nZipCode: 4200\r\n	admin	BasicInformation	1
764779	2024-07-10	11:11:00.0638891	<Undetected>	Update	BasicInformationId: 3681\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3478\r\n	BasicInformationId: 3681\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3478\r\n	admin	Questionnaires	1
764802	2024-07-10	11:49:30.1813320	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 4 LOT 17\r\nAddress2: MERCEDES HOMES\r\nBarangay: SORO SORO ILAYA\r\nBasicInformationId: 0\r\nBirthDate: August 05, 1970\r\nBirthPlace: PINAMUKAN EAST, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: nieves.montalbo@deped.gov.ph\r\nExtensionName: \r\nFirstName: NIEVES\r\nFullName: NIEVES A. MONTALBO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MONTALBO\r\nMaidenName: \r\nMiddleName: AGUBA\r\nMobileNumber: 09055132951\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 4 LOT 17\r\nPermanentAddress2: MERCEDES HOMES\r\nPermanentBarangay: SORO SORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
764786	2024-07-10	11:26:21.3528239	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FACULTY DEVELOPMENT WEBINAR ON TEST CONSTRUCTION IN HIGHER EDUCATION : THE BATSTATEU CULTURE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764787	2024-07-10	11:28:12.3999706	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL FIFTH CYCLE BASIC EDUCATION RESEARCH FUN ( BERF) COMMENCEMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764788	2024-07-10	11:30:22.4858197	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PROJECT NEUMANN: NAVIGATING EFFECTIVE USE OF MATERIALS AND APPROACHES TO NURTURE STUIDENT NEES: AN EXTENSION ACTIVITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764789	2024-07-10	11:33:11.8893872	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PAFTER VIRTUAL ANNUAL TEACHERS AND EDUCATORS' CONVENTION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764790	2024-07-10	11:34:24.6506936	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MATLAB EXPO 2021\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764791	2024-07-10	11:35:30.1670538	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2021 SEAMEO CONGRESS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764792	2024-07-10	11:37:24.9220426	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WRITING ACTION RESEARCH FOR TEACHERS ( SCHOOL LEARNING ACTION CELL ) IN GULOD SENIOR HIGH SCHOOL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764794	2024-07-10	11:39:00.9363963	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MICROSOFT VIRTUAL ADOPTION CARAVAN\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764795	2024-07-10	11:41:18.4356233	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WEBINAR ON TRANSITIONING TO THE NEW NORMAL IN SUPPORT TO LEARNING CONTINUITY PLAN ( LCP)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764796	2024-07-10	11:42:53.4140504	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MASSIVE OPEN DISTANCE ELEARNING COURSE: UNDERSTANDING THE CHILD BETTER\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764797	2024-07-10	11:44:48.3856452	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MASSIVE OPEN DISTANCE ELEARNING COURSE: UNDERSTANDING THE CHILD BETTER: TEACHING AND LEARNING WITH MODERN ICTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764799	2024-07-10	11:46:15.2464033	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INTRODUCTION TO CSS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764800	2024-07-10	11:47:51.1585200	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RECEIVING AND RESPONDING TO WORKPLACE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764810	2024-07-10	11:50:28.1715217	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2019 DIVISION CONTINUOUS IMPROVEMENT PROJECT ( CIP) SYMPOSIUM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764811	2024-07-10	11:52:10.4248761	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2019 CONFERENCE OF BASIC EDUCATION RESARCHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764813	2024-07-10	11:53:32.9334758	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3680\r\nEmployeeTrainingId: 0\r\nFromDate: January 30, 2024\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION- BATANGAS CITY \r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 15808\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764814	2024-07-10	11:53:32.9374758	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3680\r\nEmployeeTrainingId: 0\r\nFromDate: January 26, 2024\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION- BATANGAS CITY \r\nStatus: \r\nToDate: January 26, 2024\r\nTrainingId: 15810\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764815	2024-07-10	11:53:32.9429810	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3680\r\nEmployeeTrainingId: 0\r\nFromDate: October 26, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION- BATANGAS CITY \r\nStatus: \r\nToDate: October 26, 2023\r\nTrainingId: 15811\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771515	2025-03-18	11:21:19.2606216	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3806\r\nRecognitionId: 0\r\nRecognitionName: BRONZE ANAHAW AWARD - GIRL SCOUT OF THE PHILIPPINES 2004\r\n	admin	Recognitions	1
764803	2024-07-10	11:49:30.1974579	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3682\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EDWIN\r\nFullName: EDWIN GABA MONTALBO\r\nGender: Male\r\nLastName: MONTALBO\r\nMaidenName: \r\nMiddleName: GABA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
764804	2024-07-10	11:49:30.1974579	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3682\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DAMASO\r\nFullName: DAMASO ABAG AGUBA\r\nGender: Male\r\nLastName: AGUBA\r\nMaidenName: \r\nMiddleName: ABAG\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
764805	2024-07-10	11:49:30.1974579	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3682\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARIA\r\nFullName: MARIA MENDOZA SILANG\r\nGender: Female\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
764806	2024-07-10	11:49:30.1974579	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3682\r\nBirthDate: March 12, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EDEZA VIENNE\r\nFullName: EDEZA VIENNE A MONTALBO\r\nGender: Female\r\nLastName: MONTALBO\r\nMaidenName: \r\nMiddleName: A\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764807	2024-07-10	11:49:30.1984617	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3682\r\nBirthDate: September 30, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ELOISA EDEN\r\nFullName: ELOISA EDEN A MONTALBO\r\nGender: Female\r\nLastName: MONTALBO\r\nMaidenName: \r\nMiddleName: A\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764808	2024-07-10	11:49:30.1984617	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3682\r\nBirthDate: August 20, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ED DARYLL\r\nFullName: ED DARYLL A MONTALBO\r\nGender: Male\r\nLastName: MONTALBO\r\nMaidenName: \r\nMiddleName: A\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764809	2024-07-10	11:49:30.1984617	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3682\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
764874	2024-07-10	13:05:38.1771661	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER OF ARTS IN TEACHING VOCATIONAL EDUCATION\r\nLevel: Master's\r\n	admin	Courses	1
764877	2024-07-10	13:09:23.7211278	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: DOCTOR OF  EDUCATION\r\nLevel: Doctorate\r\n	admin	Courses	1
764896	2024-07-10	14:00:07.6160918	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: SALUTATORIAN\r\nBasicInformationId: 3682\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1977\r\nDateTo: 1983\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: DAO ELEMENTARY SCHOOL\r\nYearGraduated: 1983\r\n	admin	EducationalBackgrounds	1
764897	2024-07-10	14:00:07.6210915	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: HONORABLE MENTION\r\nBasicInformationId: 3682\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1984\r\nDateTo: 1988\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: PINAMUKAN BARANGAY HIGH SCHOOL\r\nYearGraduated: 1988\r\n	admin	EducationalBackgrounds	1
764898	2024-07-10	14:00:07.6260919	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3682\r\nCourse: \r\nCourseId: 1277\r\nCourseOrMajor: \r\nDateFrom: 1988\r\nDateTo: 1992\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MAJOR IN ENGLISH\r\nSchoolorUniversity: UNIVERSITY OF BATANGAS \r\nYearGraduated: 1992\r\n	admin	EducationalBackgrounds	1
764899	2024-07-10	14:00:07.6310917	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: DEPARTMENT OF EDUCATION SCHOLAR\r\nBasicInformationId: 3682\r\nCourse: \r\nCourseId: 1337\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2006\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: PHILIPPINE NORMAL UNIVERSITY \r\nYearGraduated: 2006\r\n	admin	EducationalBackgrounds	1
764900	2024-07-10	14:00:07.6350916	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: DEPARTMENT OF EDUCATION SCHOLAR\r\nBasicInformationId: 3682\r\nCourse: \r\nCourseId: 1338\r\nCourseOrMajor: \r\nDateFrom: 2018\r\nDateTo: 2021\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: \r\nSchoolorUniversity: PHILIPPPINE CHRISTIAN UNIVERSITY \r\nYearGraduated: 2021\r\n	admin	EducationalBackgrounds	1
764936	2024-07-10	14:05:25.1707916	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3679\r\nEmployeeTrainingId: 0\r\nFromDate: August 28, 2023\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - IVA CALABARZON\r\nStatus: \r\nToDate: September 01, 2023\r\nTrainingId: 15846\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764812	2024-07-10	11:51:59.4238991	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REFINEMENT VALIDATION OF THE DEVELOPED ALS LEARNING RESOURCE EXEMPLARS OF LEARNING STRANDS 1, 2 AND 3 FOR BASIC LITERACY, ELEMENTARY AND SECONDARY LEVELS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764844	2024-07-10	11:53:38.1876915	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3679\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 2002\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: ADRIATICO MEMORIAL ELEMENTARY SCHOOL/ STA. RITA ELEMENTARY SCHOOL\r\nYearGraduated: 2002\r\n	admin	EducationalBackgrounds	1
764845	2024-07-10	11:53:38.1926746	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3679\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2002\r\nDateTo: 2006\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SHOOL\r\nYearGraduated: 2006\r\n	admin	EducationalBackgrounds	1
764846	2024-07-10	11:53:38.1966614	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3679\r\nCourse: \r\nCourseId: 1327\r\nCourseOrMajor: \r\nDateFrom: 2007\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Vocational Graduate\r\nMajor: MECHANICAL ENGINEERING TECHNOLOGY\r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY \r\nYearGraduated: 2009\r\n	admin	EducationalBackgrounds	1
764847	2024-07-10	11:53:38.2016438	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3679\r\nCourse: \r\nCourseId: 1270\r\nCourseOrMajor: \r\nDateFrom: 2009\r\nDateTo: 2012\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MUSIC, ARTS, PHYSICAL EDUCATION AND HEALTH\r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY \r\nYearGraduated: 2012\r\n	admin	EducationalBackgrounds	1
764848	2024-07-10	11:53:38.2056311	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3679\r\nCourse: \r\nCourseId: 1284\r\nCourseOrMajor: \r\nDateFrom: 2017\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MUSIC, ARTS, PHYSICAL EDUCATION AND HEALTH\r\nSchoolorUniversity: GOLDEN GATE COLLEGES \r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
764849	2024-07-10	11:53:38.2106147	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3679\r\nEmployeeTrainingId: 0\r\nFromDate: January 29, 2024\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OFFICE BATANGAS CITY \r\nStatus: \r\nToDate: January 31, 2024\r\nTrainingId: 15604\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764850	2024-07-10	11:53:38.2155981	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3679\r\nEmployeeTrainingId: 0\r\nFromDate: December 04, 2023\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - BUREAU OF LEARNING RESOURCES\r\nStatus: \r\nToDate: December 08, 2023\r\nTrainingId: 15829\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764851	2024-07-10	11:53:38.2195847	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3679\r\nEmployeeTrainingId: 0\r\nFromDate: November 21, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - BUREAU OF LEARNING RESOURCES \r\nStatus: \r\nToDate: November 23, 2023\r\nTrainingId: 15834\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764852	2024-07-10	11:53:38.2245680	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3679\r\nEmployeeTrainingId: 0\r\nFromDate: November 13, 2023\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 20, 2023\r\nTrainingId: 15303\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764853	2024-07-10	11:53:38.2285544	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3679\r\nEmployeeTrainingId: 0\r\nFromDate: November 13, 2023\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - IVA CALABARZON\r\nStatus: \r\nToDate: November 17, 2023\r\nTrainingId: 15840\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764854	2024-07-10	11:53:38.2335380	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3679\r\nDateOfExamination: September 30, 2012\r\nDateOfRelease: June 03, 2024\r\nEligibilityDocumentTypeId: 0\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 30, 2012\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1153670\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 79.40\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
764855	2024-07-10	11:53:38.2375244	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3679\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: October 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 36,997.00\r\nPositionHeld: PROJECT DEVELOPMENT OFFICER 2\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-2\r\nStatus: Permanent\r\nToDate: July 10, 2024\r\n	admin	Experiences	1
764816	2024-07-10	11:53:32.9469808	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3680\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: OPERATION \r\nSponsoringAgency: DEPARTMENT OF EDUCATION- BATANGAS CITY \r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764817	2024-07-10	11:53:32.9519811	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3680\r\nEmployeeTrainingId: 0\r\nFromDate: May 06, 2023\r\nHours: 8\r\nNatureOfParticipation: INNOVATION \r\nSponsoringAgency: DEPARTMENT OF EDUCATION- BATANGAS CITY \r\nStatus: \r\nToDate: May 06, 2023\r\nTrainingId: 15812\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764818	2024-07-10	11:53:32.9569808	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3680\r\nEmployeeTrainingId: 0\r\nFromDate: December 04, 2023\r\nHours: 16\r\nNatureOfParticipation: RESEARCH \r\nSponsoringAgency: DEPARTMENT OF EDUCATION- BATANGAS CITY \r\nStatus: \r\nToDate: December 05, 2023\r\nTrainingId: 15813\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764819	2024-07-10	11:53:32.9609808	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3680\r\nEmployeeTrainingId: 0\r\nFromDate: August 01, 2023\r\nHours: 64\r\nNatureOfParticipation: INNOVATION \r\nSponsoringAgency: DEPARTMENT OF EDUCATION- CENTRAL OFFICE \r\nStatus: \r\nToDate: October 01, 2023\r\nTrainingId: 15814\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764820	2024-07-10	11:53:32.9659808	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3680\r\nEmployeeTrainingId: 0\r\nFromDate: October 04, 2022\r\nHours: 24\r\nNatureOfParticipation: RESEARCH \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV A CALABARZON \r\nStatus: \r\nToDate: October 06, 2022\r\nTrainingId: 15815\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764821	2024-07-10	11:53:32.9709830	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3680\r\nEmployeeTrainingId: 0\r\nFromDate: September 19, 2022\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV A CALABARZON\r\nStatus: \r\nToDate: September 23, 2022\r\nTrainingId: 15816\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764822	2024-07-10	11:53:32.9759830	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3680\r\nEmployeeTrainingId: 0\r\nFromDate: March 02, 2022\r\nHours: 16\r\nNatureOfParticipation: RESEARCH \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV A CALABARZON\r\nStatus: \r\nToDate: March 03, 2022\r\nTrainingId: 15817\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764823	2024-07-10	11:53:32.9799836	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3680\r\nEmployeeTrainingId: 0\r\nFromDate: February 07, 2022\r\nHours: 8\r\nNatureOfParticipation: OPERATION \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV A CALABARZON\r\nStatus: \r\nToDate: February 07, 2022\r\nTrainingId: 15818\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764824	2024-07-10	11:53:32.9849836	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3680\r\nEmployeeTrainingId: 0\r\nFromDate: February 02, 2022\r\nHours: 8\r\nNatureOfParticipation: OPERATION \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - BATANGAS CITY \r\nStatus: \r\nToDate: February 02, 2022\r\nTrainingId: 15819\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764825	2024-07-10	11:53:32.9899837	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3680\r\nEmployeeTrainingId: 0\r\nFromDate: January 17, 2022\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: BATANGAS STATE UNIVERSITY \r\nStatus: \r\nToDate: January 20, 2022\r\nTrainingId: 15820\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764826	2024-07-10	11:53:32.9949838	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3680\r\nEmployeeTrainingId: 0\r\nFromDate: January 14, 2022\r\nHours: 8\r\nNatureOfParticipation: OPERATION \r\nSponsoringAgency: DEPARTMENT OF EDUCATION- BATANGAS CITY \r\nStatus: \r\nToDate: January 14, 2022\r\nTrainingId: 15125\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764827	2024-07-10	11:53:32.9989835	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3680\r\nEmployeeTrainingId: 0\r\nFromDate: November 23, 2021\r\nHours: 24\r\nNatureOfParticipation: RESEARCH \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV A CALABARZON\r\nStatus: \r\nToDate: November 25, 2021\r\nTrainingId: 15821\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764828	2024-07-10	11:53:33.0039834	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3680\r\nEmployeeTrainingId: 0\r\nFromDate: July 29, 2021\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: BATANGAS STATE UNIVERSITY- ALANGILAN CAMPUS \r\nStatus: \r\nToDate: July 29, 2021\r\nTrainingId: 15822\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764829	2024-07-10	11:53:33.0079835	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3680\r\nEmployeeTrainingId: 0\r\nFromDate: June 17, 2021\r\nHours: 8\r\nNatureOfParticipation: RESEARCH \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV A CALABARZON\r\nStatus: \r\nToDate: June 17, 2021\r\nTrainingId: 15823\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764952	2024-07-10	14:06:55.0052340	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3680\r\nSkillId: 0\r\nSkillName: COMPUTER PROGRAMMING \r\n	admin	Skills	1
764830	2024-07-10	11:53:33.0129838	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3680\r\nEmployeeTrainingId: 0\r\nFromDate: May 28, 2021\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: BATANGAS STATE UNIVERSITY- MAIN CAMPUS/ COLLEGE OF TEACHER EDUCATION- GRADUATE SCHOOL   \r\nStatus: \r\nToDate: May 28, 2021\r\nTrainingId: 15824\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764831	2024-07-10	11:53:33.0179836	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3680\r\nEmployeeTrainingId: 0\r\nFromDate: May 14, 2021\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: PAFTE- REGION 4 A \r\nStatus: \r\nToDate: May 14, 2021\r\nTrainingId: 15825\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764832	2024-07-10	11:53:33.0219836	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3680\r\nEmployeeTrainingId: 0\r\nFromDate: May 04, 2021\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: MATHWORKS CO \r\nStatus: \r\nToDate: May 05, 2021\r\nTrainingId: 15826\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764833	2024-07-10	11:53:33.0269837	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3680\r\nEmployeeTrainingId: 0\r\nFromDate: April 28, 2021\r\nHours: 16\r\nNatureOfParticipation: RESEARCH \r\nSponsoringAgency: SEAMEO THAILAND \r\nStatus: \r\nToDate: April 29, 2021\r\nTrainingId: 15827\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764834	2024-07-10	11:53:33.0319896	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3680\r\nEmployeeTrainingId: 0\r\nFromDate: April 21, 2021\r\nHours: 8\r\nNatureOfParticipation: RESEARCH \r\nSponsoringAgency: GULOD GULOD SENIOR HIGH SCHOOL \r\nStatus: \r\nToDate: April 21, 2021\r\nTrainingId: 15828\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764835	2024-07-10	11:53:33.0369896	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3680\r\nEmployeeTrainingId: 0\r\nFromDate: April 14, 2021\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION CENTRAL OFFICE \r\nStatus: \r\nToDate: April 14, 2021\r\nTrainingId: 15830\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764836	2024-07-10	11:53:33.0409893	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3680\r\nEmployeeTrainingId: 0\r\nFromDate: April 18, 2020\r\nHours: 8\r\nNatureOfParticipation: PLANNING \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV A CALABARZON\r\nStatus: \r\nToDate: April 18, 2020\r\nTrainingId: 15831\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764837	2024-07-10	11:53:33.0465027	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3680\r\nEmployeeTrainingId: 0\r\nFromDate: April 30, 2020\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: UNIVERSITY OF PHILIPPINES \r\nStatus: \r\nToDate: May 30, 2020\r\nTrainingId: 15832\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764838	2024-07-10	11:53:33.0505028	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3680\r\nEmployeeTrainingId: 0\r\nFromDate: April 30, 2020\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: UNIVERSITY OF THE PHILIPPINES \r\nStatus: \r\nToDate: May 30, 2020\r\nTrainingId: 15833\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764839	2024-07-10	11:53:33.0555022	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3680\r\nEmployeeTrainingId: 0\r\nFromDate: May 01, 2020\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: E-TESDA \r\nStatus: \r\nToDate: May 30, 2020\r\nTrainingId: 15835\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764840	2024-07-10	11:53:33.0595023	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3680\r\nEmployeeTrainingId: 0\r\nFromDate: April 28, 2020\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: E-TESDA \r\nStatus: \r\nToDate: May 28, 2020\r\nTrainingId: 15836\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764841	2024-07-10	11:53:33.0645027	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3680\r\nEmployeeTrainingId: 0\r\nFromDate: December 09, 2019\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION- BATANGAS CITY \r\nStatus: \r\nToDate: December 09, 2019\r\nTrainingId: 15838\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764842	2024-07-10	11:53:33.0695445	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3680\r\nEmployeeTrainingId: 0\r\nFromDate: October 29, 2019\r\nHours: 24\r\nNatureOfParticipation: RESEARCH \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV A CALABARZON\r\nStatus: \r\nToDate: October 31, 2019\r\nTrainingId: 15839\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764843	2024-07-10	11:53:33.0735470	<Undetected>	Insert	BasicInformationId: \r\nCommunityServiceId: \r\nDateFrom: \r\nDateTo: \r\nNumberOfHours: \r\nOrganizationAddress: \r\nOrganizationName: \r\nStatus: \r\n	BasicInformationId: 3680\r\nCommunityServiceId: 0\r\nDateFrom: May 28, 2021\r\nDateTo: May 28, 2021\r\nNumberOfHours: 8\r\nOrganizationAddress: BATANGAS STATE UNIVERSITY \r\nOrganizationName: BATANGAS STATE UNIVERSITY- COLLEGE OF TEACHER EDUCATION GRADUATE SCHOOL ( EXTENSION SERVICE) \r\nStatus: RESOURCE SPEAKER \r\n	admin	CommunityServices	1
764856	2024-07-10	11:53:38.2425076	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3679\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 36,619.00\r\nPositionHeld: PROJECT DEVELOPMENT OFFICER 2\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-\r\nStatus: Permanent\r\nToDate: September 30, 2023\r\n	admin	Experiences	1
764857	2024-07-10	11:53:38.2474915	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3679\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 35,097.00\r\nPositionHeld: PROJECT DEVELOPMENT OFFICER 2\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
764858	2024-07-10	11:53:38.2514779	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3679\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 335,750.00\r\nPositionHeld: PROJECT DEVELOPMENT OFFICER 2\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
764859	2024-07-10	11:53:38.2564615	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3679\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: June 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 32,053.00\r\nPositionHeld: PROJWECT DEVELOPMENT OFFICER 2\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-1\r\nStatus: Permanent\r\nToDate: January 31, 2021\r\n	admin	Experiences	1
764860	2024-07-10	11:53:38.2604477	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3679\r\nCompanyInstitution: BATANGAS NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,889.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: May 31, 2020\r\n	admin	Experiences	1
764861	2024-07-10	11:53:38.2654329	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3679\r\nCompanyInstitution: BATANGAS NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: June 02, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,327.00\r\nPositionHeld: TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
764862	2024-07-10	11:53:38.2694169	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3679\r\nCompanyInstitution: BATANGAS NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,437.00\r\nPositionHeld: TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
764863	2024-07-10	11:53:38.2744003	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3679\r\nCompanyInstitution: BATANGAS NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 21,327.00\r\nPositionHeld: TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
764864	2024-07-10	11:53:38.2793837	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3679\r\nCompanyInstitution: BATANGAS NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,038.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: June 02, 2019\r\n	admin	Experiences	1
764865	2024-07-10	11:53:38.2833703	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3679\r\nCompanyInstitution: BATANGAS NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,427.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
764866	2024-07-10	11:53:38.2883534	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3679\r\nCompanyInstitution: BATANGAS NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,853.00\r\nPositionHeld: TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
764884	2024-07-10	13:39:55.2014412	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DEVELOPMENT OF TEXTBOOKS PROTOTYPES FOR GRADES 1, 4 AND 7\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764953	2024-07-10	14:06:55.0092337	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3680\r\nSkillId: 0\r\nSkillName: WRITING RESEARCH \r\n	admin	Skills	1
764867	2024-07-10	11:53:38.2933370	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3679\r\nCompanyInstitution: BATANGAS NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: June 03, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,286.00\r\nPositionHeld: TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
764868	2024-07-10	11:53:38.2973235	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3679\r\nCompanyInstitution: BATANGAS NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: June 02, 2016\r\n	admin	Experiences	1
764869	2024-07-10	11:53:38.3013101	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3679\r\nCompanyInstitution: BATANGAS NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: June 03, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
764870	2024-07-10	11:53:38.3062934	<Undetected>	Update	BasicInformationId: 3679\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3579\r\nExtensionName: \r\nFirstName: PEDRO\r\nFullName: PEDRO ASI FESTIJO\r\nGender: Male\r\nLastName: FESTIJO\r\nMaidenName: \r\nMiddleName: ASI\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3679\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3579\r\nExtensionName: \r\nFirstName: PEDRO\r\nFullName: PEDRO FESTIJO\r\nGender: Male\r\nLastName: FESTIJO\r\nMaidenName: \r\nMiddleName: ASI\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
764871	2024-07-10	11:53:38.3112768	<Undetected>	Update	BasicInformationId: 3679\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3580\r\nExtensionName: \r\nFirstName: NANCY\r\nFullName: NANCY GARCIA TAWATAO\r\nGender: Female\r\nLastName: TAWATAO\r\nMaidenName: \r\nMiddleName: GARCIA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3679\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3580\r\nExtensionName: \r\nFirstName: NANCY\r\nFullName: NANCY TAWATAO\r\nGender: Female\r\nLastName: TAWATAO\r\nMaidenName: \r\nMiddleName: GARCIA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
764872	2024-07-10	11:53:38.3162610	<Undetected>	Update	BasicInformationId: 3679\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3476\r\n	BasicInformationId: 3679\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3476\r\n	admin	Questionnaires	1
764873	2024-07-10	13:04:47.3726107	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FINALIZATION OF TEXTBOOK AND TEACHER'S MANUAL PROTOTYPES FOR GRADES 2, 5 AND 8\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764875	2024-07-10	13:06:19.4024094	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EVALUATION OF WORKSHOP ON THE DEPED DEVELOPED LEARNING RESOURCES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764876	2024-07-10	13:08:52.2358740	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION STORYBOOK WRITING WORKSHOP AND COMPETITION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764878	2024-07-10	13:10:31.6117733	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DQMS JOURNEY TOWARDS ONE DEPED, ONE QMS CERTIFICATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764879	2024-07-10	13:14:07.5782277	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DEVELOPMENT AND QUALITY ASSURANCE OF TEACHING AND LEARNING RESOURCES FOR THE PILOT IMPLEMENTATION OF THE MATATAG CURRICULUM QUARTER 1 TO GRADE 7 FILIPINO\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764880	2024-07-10	13:16:25.8179090	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ALIGNMENT AND REVIEW OF THE DEVELOPED ALS LEARNING STRANDS 1, 2 AND 3 FOR BASIC LITERACY, ELEMENTARY AND SECONDARY LEVELS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764881	2024-07-10	13:27:31.9457918	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: QUALITY ASSURANCE WORKSHOP ON SDO ELLN, SHS SPECIALIZED TRACK, AND TVL LEARNING RESOURCES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764882	2024-07-10	13:32:14.2971636	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 DIVISION SCREENING/SELECTION OF LEARNING RESOURCES EVALUATORS (LREs), ILLUSTRATORS AND LAYOUT ARTIST\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764883	2024-07-10	13:38:00.1694255	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION WORKSHOP ON THE DEVELOPMENT AND QUALITY ASSURANCE OF SDO CONTEXTUALIZED LEARNING RESOURCES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764954	2024-07-10	14:06:55.0152340	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3680\r\nSkillId: 0\r\nSkillName: WEB PAGE DESIGNING \r\n	admin	Skills	1
764885	2024-07-10	13:45:33.4895546	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL QA OF THE DEVELOPED ALS LEARNING RESOURCE EXEMPLARS FOR LEARNING STRANDS 1, 2, 3 FOR BASIC LITERACY PROGRAM, ELEMENTARY AND SECONDARY LEVELS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764886	2024-07-10	13:47:51.7408027	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: UNIVERSITY OF BATANGAS GRADUATE SCHOOL RESEARCH WORKSHOP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764887	2024-07-10	13:48:46.2368572	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: UNIVERSITY OF BATANGAS GRADUATE SCHOOL RESEARCH FORUM 2019\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764888	2024-07-10	13:49:34.2891124	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING ON SAFE SPACES ACT AND GENDER-RESPONSE POLICIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764889	2024-07-10	13:50:20.7229828	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ZERO HUNGER LABORATORY RESEARCH WORKSHOP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764890	2024-07-10	13:51:55.8570872	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ISO 19011: 2018 QUALITY MANAGEMENT SYSTEM: INTERNAL QUALITY AUDIT TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764891	2024-07-10	13:54:45.2143234	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RESEARCH ADVOCACY AND COMMUNITY EMPOWERMENT ( RACE) EXHIBITION IN ASSOCIATION WITH ASCENDENS ASIA\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764892	2024-07-10	13:55:52.4918790	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3680\r\nEmployeeTrainingId: 0\r\nFromDate: June 30, 2019\r\nHours: 8\r\nNatureOfParticipation: RESEARCH \r\nSponsoringAgency: UNIVERSITY OF BATANGAS- GRADUATE SCHOOL \r\nStatus: \r\nToDate: June 30, 2019\r\nTrainingId: 15853\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764893	2024-07-10	13:55:52.4968756	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3680\r\nEmployeeTrainingId: 0\r\nFromDate: June 13, 2019\r\nHours: 8\r\nNatureOfParticipation: RESEARCH \r\nSponsoringAgency: DELA SALLE MANILA \r\nStatus: \r\nToDate: June 13, 2019\r\nTrainingId: 15855\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764894	2024-07-10	13:55:52.5008783	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3680\r\nEmployeeTrainingId: 0\r\nFromDate: May 23, 2019\r\nHours: 16\r\nNatureOfParticipation: OPERATION \r\nSponsoringAgency: DEPARTMENT OF EDUCATION- BATANGAS CITY \r\nStatus: \r\nToDate: May 24, 2019\r\nTrainingId: 15856\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764895	2024-07-10	13:55:52.5059225	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3680\r\nEmployeeTrainingId: 0\r\nFromDate: February 28, 2019\r\nHours: 8\r\nNatureOfParticipation: RESEARCH \r\nSponsoringAgency: RACE ASCENDENS ASIA LTD. \r\nStatus: \r\nToDate: February 28, 2019\r\nTrainingId: 15857\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764929	2024-07-10	14:05:25.1388463	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3679\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
764930	2024-07-10	14:05:25.1428328	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3679\r\nSkillId: 0\r\nSkillName: ILLUSTRATION/GRAPHIC DESIGN\r\n	admin	Skills	1
764931	2024-07-10	14:05:25.1478152	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3679\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
764932	2024-07-10	14:05:25.1518028	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3679\r\nEmployeeTrainingId: 0\r\nFromDate: September 25, 2023\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - BUREAU OF LEARNING RESOURCES\r\nStatus: \r\nToDate: September 29, 2023\r\nTrainingId: 15842\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764933	2024-07-10	14:05:25.1568383	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3679\r\nEmployeeTrainingId: 0\r\nFromDate: September 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION BATANGAS CITY \r\nStatus: \r\nToDate: September 22, 2023\r\nTrainingId: 15843\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764934	2024-07-10	14:05:25.1618214	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3679\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION BATANGAS CITY \r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15844\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764935	2024-07-10	14:05:25.1658080	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3679\r\nEmployeeTrainingId: 0\r\nFromDate: August 01, 2023\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - BUREAU OF LEARNING RESOURCES\r\nStatus: \r\nToDate: October 31, 2023\r\nTrainingId: 15845\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764901	2024-07-10	14:00:07.6400915	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3682\r\nDateOfExamination: October 29, 1992\r\nDateOfRelease: May 08, 2027\r\nEligibilityDocumentTypeId: 0\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: 0321738\r\nPlaceOfExamination: BATANGAS NATIONAL HIGH SCHOOL\r\nRating: 73.93%\r\nTitle: PBET\r\n	admin	Eligibilities	1
764902	2024-07-10	14:00:07.6450917	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: SDO BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: August 18, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 73,511.00\r\nPositionHeld: PUBLIC SCHOOL DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: July 10, 2024\r\n	admin	Experiences	1
764903	2024-07-10	14:00:07.6500919	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: PINAMUKAN NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 63,977.00\r\nPositionHeld: SECONDARY SCHOOL PRINCIPAL III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 21-1\r\nStatus: Permanent\r\nToDate: August 17, 2023\r\n	admin	Experiences	1
764904	2024-07-10	14:00:07.6540915	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: PINAMUKAN NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 07, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 62,449.00\r\nPositionHeld: SECONDARY SCHOOL PRINCIPAL III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 21-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
764905	2024-07-10	14:00:07.6590916	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: TALAHIB PANDAYAN NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 62,449.00\r\nPositionHeld: SECONDARY SCHOOL PRINCIPAL III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 21-1\r\nStatus: Permanent\r\nToDate: January 06, 2022\r\n	admin	Experiences	1
764906	2024-07-10	14:00:07.6640916	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: TALAHIB PANDAYAN NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 15, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 60,901.00\r\nPositionHeld: SECONDARY SCHOOL PRINCIPAL III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 21-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
764907	2024-07-10	14:00:07.6680915	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: STA. RITA NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 54,251.00\r\nPositionHeld: SECONDARY SCHOOL PRINCIPAL II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-1\r\nStatus: Permanent\r\nToDate: January 14, 2021\r\n	admin	Experiences	1
764908	2024-07-10	14:00:07.6730915	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: STA. RITA NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 52,703.00\r\nPositionHeld: SECONDARY SCHOOL PRINCIPAL II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
764909	2024-07-10	14:00:07.6784353	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: STA. RITA NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: October 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 51,155.00\r\nPositionHeld: SECONDARY SCHOOL PRINCIPAL II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
764910	2024-07-10	14:00:07.6834352	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: STA. RITA NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 45,269.00\r\nPositionHeld: SECONDARY SCHOOL PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-5\r\nStatus: Permanent\r\nToDate: September 30, 2019\r\n	admin	Experiences	1
764911	2024-07-10	14:00:07.6874347	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: STA. RITA NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: July 02, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 42,099.00\r\nPositionHeld: SECONDARY SCHOOL PRINCIPAL III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
764955	2024-07-10	14:06:55.0202341	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3680\r\nRecognitionId: 0\r\nRecognitionName: BEST RESEARCHER PAPER AWARD AND BEST ORAL PRESENTER \r\n	admin	Recognitions	1
764912	2024-07-10	14:00:07.6934345	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: TABANGAO NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 24,799.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: July 01, 2018\r\n	admin	Experiences	1
764913	2024-07-10	14:00:07.6974348	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: TABANGAO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 23,780.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
764914	2024-07-10	14:00:07.7024345	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: TABANGAO NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 22,804.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
764915	2024-07-10	14:00:07.7074348	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: TABANGAO NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: October 01, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 21,867.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
764916	2024-07-10	14:00:07.7114732	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: TABANGAO NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: October 01, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 21,867.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
764917	2024-07-10	14:00:07.7164798	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: TABANGAO NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: June 01, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 21,650.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: September 30, 2015\r\n	admin	Experiences	1
764918	2024-07-10	14:00:07.7204749	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: TABANGAO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 21,650.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
764919	2024-07-10	14:00:07.7254340	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: TABANGAO NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 19,908.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
764920	2024-07-10	14:00:07.7304337	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: TABANGAO NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: False\r\nMonthlySalary: 19,658.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2011\r\n	admin	Experiences	1
764921	2024-07-10	14:00:07.7354336	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: TABANGAO NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 17,880.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
764922	2024-07-10	14:00:07.7394336	<Undetected>	Update	BasicInformationId: 3682\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3589\r\nExtensionName: \r\nFirstName: EDWIN\r\nFullName: EDWIN GABA MONTALBO\r\nGender: Male\r\nLastName: MONTALBO\r\nMaidenName: \r\nMiddleName: GABA\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3682\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3589\r\nExtensionName: \r\nFirstName: EDWIN\r\nFullName: EDWIN MONTALBO\r\nGender: Male\r\nLastName: MONTALBO\r\nMaidenName: \r\nMiddleName: GABA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
764956	2024-07-10	14:06:55.0272330	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3680\r\nRecognitionId: 0\r\nRecognitionName: DATA ANALYTICS AWARD \r\n	admin	Recognitions	1
764957	2024-07-10	14:06:55.0312343	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3680\r\nRecognitionId: 0\r\nRecognitionName: BEST SGOD SECTION EMPLOYEE\r\n	admin	Recognitions	1
764923	2024-07-10	14:00:07.7444353	<Undetected>	Update	BasicInformationId: 3682\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3590\r\nExtensionName: \r\nFirstName: DAMASO\r\nFullName: DAMASO ABAG AGUBA\r\nGender: Male\r\nLastName: AGUBA\r\nMaidenName: \r\nMiddleName: ABAG\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3682\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3590\r\nExtensionName: \r\nFirstName: DAMASO\r\nFullName: DAMASO AGUBA\r\nGender: Male\r\nLastName: AGUBA\r\nMaidenName: \r\nMiddleName: ABAG\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
764924	2024-07-10	14:00:07.7494346	<Undetected>	Update	BasicInformationId: 3682\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3591\r\nExtensionName: \r\nFirstName: MARIA\r\nFullName: MARIA MENDOZA SILANG\r\nGender: Female\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3682\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3591\r\nExtensionName: \r\nFirstName: MARIA\r\nFullName: MARIA SILANG\r\nGender: Female\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
764925	2024-07-10	14:00:07.7544351	<Undetected>	Update	BasicInformationId: 3682\r\nBirthDate: March 12, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3592\r\nExtensionName: \r\nFirstName: EDEZA VIENNE\r\nFullName: EDEZA VIENNE A MONTALBO\r\nGender: Female\r\nLastName: MONTALBO\r\nMaidenName: \r\nMiddleName: A\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3682\r\nBirthDate: March 12, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3592\r\nExtensionName: \r\nFirstName: EDEZA VIENNE\r\nFullName: EDEZA VIENNE MONTALBO\r\nGender: Female\r\nLastName: MONTALBO\r\nMaidenName: \r\nMiddleName: A\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764926	2024-07-10	14:00:07.7594337	<Undetected>	Update	BasicInformationId: 3682\r\nBirthDate: September 30, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3593\r\nExtensionName: \r\nFirstName: ELOISA EDEN\r\nFullName: ELOISA EDEN A MONTALBO\r\nGender: Female\r\nLastName: MONTALBO\r\nMaidenName: \r\nMiddleName: A\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3682\r\nBirthDate: September 30, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3593\r\nExtensionName: \r\nFirstName: ELOISA EDEN\r\nFullName: ELOISA EDEN MONTALBO\r\nGender: Female\r\nLastName: MONTALBO\r\nMaidenName: \r\nMiddleName: A\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764927	2024-07-10	14:00:07.7634732	<Undetected>	Update	BasicInformationId: 3682\r\nBirthDate: August 20, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3594\r\nExtensionName: \r\nFirstName: ED DARYLL\r\nFullName: ED DARYLL A MONTALBO\r\nGender: Male\r\nLastName: MONTALBO\r\nMaidenName: \r\nMiddleName: A\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3682\r\nBirthDate: August 20, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3594\r\nExtensionName: \r\nFirstName: ED DARYLL\r\nFullName: ED DARYLL MONTALBO\r\nGender: Male\r\nLastName: MONTALBO\r\nMaidenName: \r\nMiddleName: A\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764928	2024-07-10	14:00:07.7684832	<Undetected>	Update	BasicInformationId: 3682\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3479\r\n	BasicInformationId: 3682\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3479\r\n	admin	Questionnaires	1
764981	2024-07-10	14:38:44.3133165	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: TABANGAO NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: October 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 16,101.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
764982	2024-07-10	14:38:44.3193123	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: TABANGAO NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 15,733.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: September 30, 2009\r\n	admin	Experiences	1
764983	2024-07-10	14:38:44.3232731	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: TABANGAO NATIONAL HIGH SCHOOL  \r\nExperienceId: 0\r\nFromDate: July 21, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 13,392.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
764984	2024-07-10	14:38:44.3292733	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: TABANGAO NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 13,275.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-6\r\nStatus: Permanent\r\nToDate: July 20, 2008\r\n	admin	Experiences	1
764985	2024-07-10	14:38:44.3332733	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: TABANGAO NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 12,068.00\r\nPositionHeld:  SECONDARY SCHOOL TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-6\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
764986	2024-07-10	14:38:44.3382732	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: TABANGAO NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,971.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
764937	2024-07-10	14:05:25.1747781	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3679\r\nEmployeeTrainingId: 0\r\nFromDate: August 09, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION BATANGAS CITY \r\nStatus: \r\nToDate: August 11, 2023\r\nTrainingId: 15534\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764938	2024-07-10	14:05:25.1797613	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3679\r\nEmployeeTrainingId: 0\r\nFromDate: August 01, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - IVA CALABARZON\r\nStatus: \r\nToDate: August 03, 2023\r\nTrainingId: 15684\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764939	2024-07-10	14:05:25.1837480	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3679\r\nEmployeeTrainingId: 0\r\nFromDate: July 24, 2023\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: July 28, 2023\r\nTrainingId: 15515\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764940	2024-07-10	14:05:25.1887313	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3679\r\nEmployeeTrainingId: 0\r\nFromDate: July 18, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 20, 2023\r\nTrainingId: 15616\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764941	2024-07-10	14:05:25.1937148	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3679\r\nEmployeeTrainingId: 0\r\nFromDate: June 19, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - IVA CALABARZON\r\nStatus: \r\nToDate: December 21, 2023\r\nTrainingId: 15847\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764942	2024-07-10	14:05:25.1986972	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3679\r\nEmployeeTrainingId: 0\r\nFromDate: June 10, 2023\r\nHours: 8\r\nNatureOfParticipation: FOUNDATION\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION BATANGAS\r\nStatus: \r\nToDate: June 10, 2023\r\nTrainingId: 15848\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764943	2024-07-10	14:05:25.2026850	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3679\r\nEmployeeTrainingId: 0\r\nFromDate: June 07, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - IVA CALABARZON\r\nStatus: \r\nToDate: June 09, 2023\r\nTrainingId: 15849\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764944	2024-07-10	14:05:25.2066714	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3679\r\nEmployeeTrainingId: 0\r\nFromDate: May 23, 2024\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATYION BUREAU\r\nStatus: \r\nToDate: June 02, 2023\r\nTrainingId: 15850\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764945	2024-07-10	14:05:25.2116547	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3679\r\nEmployeeTrainingId: 0\r\nFromDate: April 08, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - IVA CALABARZON\r\nStatus: \r\nToDate: April 22, 2023\r\nTrainingId: 15851\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764946	2024-07-10	14:05:25.2156414	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3679\r\nEmployeeTrainingId: 0\r\nFromDate: March 20, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15854\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
764947	2024-07-10	14:05:25.2206248	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3679\r\nCharacterReferenceId: 0\r\nCompanyAddress: BALETE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09395700624\r\nExtensionName: \r\nFirstName: MIGUELA\r\nLastName: DE CHAVEZ\r\nMiddleName: G. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764948	2024-07-10	14:05:25.2256081	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3679\r\nCharacterReferenceId: 0\r\nCompanyAddress: DUMANTAY, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09209002085\r\nExtensionName: \r\nFirstName: GENERIEGO \r\nLastName: JAVIER\r\nMiddleName: O. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764949	2024-07-10	14:05:25.2295949	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3679\r\nCharacterReferenceId: 0\r\nCompanyAddress: NAUJAN, ORIENTAL MINDORO\r\nCompanyName: \r\nContactNumber: 09126190782\r\nExtensionName: \r\nFirstName: ERWIN\r\nLastName: DELOS SANTOS\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764958	2024-07-10	14:06:55.0362356	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3680\r\nOrganizationId: 0\r\nOrganizationName: MATHEMATICAL SOCIETY OF THE PHIL ( MSP) NATIONAL CHAPTER\r\n	admin	Organizations	1
764959	2024-07-10	14:06:55.0412344	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3680\r\nOrganizationId: 0\r\nOrganizationName: MATHEMATICAL SOCIETY OF  THE PHIL ( MSP) CALABARZON CHAPTER \r\n	admin	Organizations	1
764960	2024-07-10	14:06:55.0452343	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3680\r\nOrganizationId: 0\r\nOrganizationName: PHILIPPINE SCIENCE CONSORTIUM ( PSC) \r\n	admin	Organizations	1
764950	2024-07-10	14:05:25.2345781	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLK 10 LOT 8\r\nAddress2: ST. PAULA HOMES\r\nBarangay: LIBJO\r\nBasicInformationId: 3679\r\nBirthDate: March 06, 1990\r\nBirthPlace: VICTORIA, ORIENTAL MINDORO\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: cyrus.festijo@deped.gov.ph\r\nExtensionName: \r\nFirstName: CYRUS\r\nFullName: CYRUS T. FESTIJO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.87\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: FESTIJO\r\nMaidenName: \r\nMiddleName: TAWATAO\r\nMobileNumber: 09165225542\r\nNationality: Filipino\r\nPermanentAddress1: BLK 10 LOT 8\r\nPermanentAddress2: ST. PAULA HOMES\r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: CORNER 4TH STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: CORNER 4TH STREET\r\nTIN: \r\nWeight: 120\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK 10 LOT 8\r\nAddress2: ST. PAULA HOMES\r\nBarangay: LIBJO\r\nBasicInformationId: 3679\r\nBirthDate: March 06, 1990\r\nBirthPlace: VICTORIA, ORIENTAL MINDORO\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: cyrus.festijo@deped.gov.ph\r\nExtensionName: \r\nFirstName: CYRUS\r\nFullName: CYRUS T. FESTIJO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02004360261\r\nHDMF: 1210-9314-9610\r\nHeight: 1.87\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: FESTIJO\r\nMaidenName: \r\nMiddleName: TAWATAO\r\nMobileNumber: 09165225542\r\nNationality: Filipino\r\nPermanentAddress1: BLK 10 LOT 8\r\nPermanentAddress2: ST. PAULA HOMES\r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: CORNER 4TH STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000087723-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: CORNER 4TH STREET\r\nTIN: 436-868-721-0000\r\nWeight: 120\r\nZipCode: 4200\r\n	admin	BasicInformation	1
764951	2024-07-10	14:05:25.2395615	<Undetected>	Update	BasicInformationId: 3679\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3476\r\n	BasicInformationId: 3679\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3476\r\n	admin	Questionnaires	1
764980	2024-07-10	14:37:58.1486088	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: bACHELOR OF SCIENCE IN NURSING\r\nLevel: College\r\n	admin	Courses	1
764998	2024-07-10	14:39:22.2033818	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER OF ARTS IN NURSING\r\nLevel: Master's\r\n	admin	Courses	1
765024	2024-07-10	15:02:20.9933660	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: AUTOMOTIVE BATTERY SERVICING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765025	2024-07-10	15:03:17.0754143	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: HELPING YOUTH DRUG FREE THROUGH LITERACY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765026	2024-07-10	15:04:34.8675640	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2020 NATIONAL DRUG EDUCATION PROGRAM WEBINAR SERIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765028	2024-07-10	15:06:01.5432174	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2020 NATIONAL DRUG EDUCATION PREVENTION WEBINAR SERIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
764962	2024-07-10	14:06:55.0542330	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3680\r\nCharacterReferenceId: 0\r\nCompanyAddress: DEPED- BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09499636976\r\nExtensionName: \r\nFirstName: NIDA\r\nLastName: SANTOS \r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764963	2024-07-10	14:06:55.0592339	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3680\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATSTATEU- CICS\r\nCompanyName: \r\nContactNumber: 09209732337\r\nExtensionName: \r\nFirstName: PRINCESS MARIE \r\nLastName: MELO \r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764964	2024-07-10	14:06:55.0632343	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3680\r\nCharacterReferenceId: 0\r\nCompanyAddress: DEPED- BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 043-702-2094 LOC 103\r\nExtensionName: \r\nFirstName: ANGELISA \r\nLastName: AMOTO \r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
764965	2024-07-10	14:06:55.0692339	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLK 15 LOT 38\r\nAddress2: CAMELLA AZIENDA\r\nBarangay: TINGA LABAC\r\nBasicInformationId: 3680\r\nBirthDate: December 11, 1975\r\nBirthPlace: PINAMUKAN PROPER BATS. CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: AURELIA.VIVAS@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: AURELIA\r\nFullName: AURELIA G. VIVAS\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.05\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: VIVAS\r\nMaidenName: \r\nMiddleName: GARCIA\r\nMobileNumber: 09088881167\r\nNationality: Filipino\r\nPermanentAddress1: BLK 15 LOT 38\r\nPermanentAddress2: CAMELLA AZIENDA\r\nPermanentBarangay: TINGA LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK 15 LOT 38\r\nAddress2: CAMELLA AZIENDA\r\nBarangay: TINGA LABAC\r\nBasicInformationId: 3680\r\nBirthDate: December 11, 1975\r\nBirthPlace: PINAMUKAN PROPER BATS. CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: AURELIA.VIVAS@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: AURELIA\r\nFullName: AURELIA G. VIVAS\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02004002678\r\nHDMF: 4015-6440-9304\r\nHeight: 1.05\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: VIVAS\r\nMaidenName: \r\nMiddleName: GARCIA\r\nMobileNumber: 09088881167\r\nNationality: Filipino\r\nPermanentAddress1: BLK 15 LOT 38\r\nPermanentAddress2: CAMELLA AZIENDA\r\nPermanentBarangay: TINGA LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: 04-3160558-2\r\nStreetName: \r\nTIN: 000-912-636-0000\r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
764966	2024-07-10	14:06:55.0732332	<Undetected>	Update	BasicInformationId: 3680\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3477\r\n	BasicInformationId: 3680\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3477\r\n	admin	Questionnaires	1
764967	2024-07-10	14:25:00.7777601	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: DOCTOR OF PHILOSOPHY IN CURRICULUM & INSTRUCTION\r\nLevel: Doctorate\r\n	admin	Courses	1
764968	2024-07-10	14:25:39.1420778	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: #409\r\nAddress2: \r\nBarangay: MALITAM\r\nBasicInformationId: 0\r\nBirthDate: November 13, 1971\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: LORNA.ASI@DEPED.GOV,PH\r\nExtensionName: \r\nFirstName: LORNA\r\nFullName: LORNA M. ASI\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: MAGPANTAY\r\nMobileNumber: 09985968905\r\nNationality: Filipino\r\nPermanentAddress1: #409\r\nPermanentAddress2: \r\nPermanentBarangay: MALITAM\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ILANG-ILANG\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: ILANG-ILANG\r\nTIN: \r\nWeight: 48\r\nZipCode: 4200\r\n	admin	BasicInformation	1
764969	2024-07-10	14:25:39.1677001	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: GRADES 4 & 5 - 1ST HONOR\r\nBasicInformationId: 3683\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1979\r\nDateTo: 1984\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS CITY EAST ELEMENTARY SCHOOL\r\nYearGraduated: 1984\r\n	admin	EducationalBackgrounds	1
764970	2024-07-10	14:25:39.1677001	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3683\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1984\r\nDateTo: 1988\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1988\r\n	admin	EducationalBackgrounds	1
764971	2024-07-10	14:25:39.1677001	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3683\r\nCourse: \r\nCourseId: 1314\r\nCourseOrMajor: \r\nDateFrom: 1988\r\nDateTo: 1992\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: ENGLISH\r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES\r\nYearGraduated: 1992\r\n	admin	EducationalBackgrounds	1
771516	2025-03-18	11:21:19.2646210	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3806\r\nOrganizationId: 0\r\nOrganizationName: BOYSCOUT OF THE PHILIPPINES\r\n	admin	Organizations	1
764972	2024-07-10	14:25:39.1677001	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3683\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2004\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: SOCIAL STUDIES\r\nSchoolorUniversity: UNIVERSITY OF THE PHILIPPINES\r\nYearGraduated: 2004\r\n	admin	EducationalBackgrounds	1
764973	2024-07-10	14:25:39.1677001	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3683\r\nCourse: \r\nCourseId: 1338\r\nCourseOrMajor: \r\nDateFrom: 2015\r\nDateTo: 2017\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2017\r\n	admin	EducationalBackgrounds	1
764974	2024-07-10	14:25:39.1677001	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3683\r\nCourse: \r\nCourseId: 1339\r\nCourseOrMajor: \r\nDateFrom: 2021\r\nDateTo: 2023\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: \r\nSchoolorUniversity: PHILIPPINE NORMAL UNIVERSITY\r\nYearGraduated: 2023\r\n	admin	EducationalBackgrounds	1
764975	2024-07-10	14:25:39.1677001	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3683\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: TEODORO\r\nFullName: TEODORO ARELLANO ASI\r\nGender: Male\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: ARELLANO\r\nOccupation: TIG WELDER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
764976	2024-07-10	14:25:39.1677001	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3683\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DANIEL\r\nFullName: DANIEL ALMAREZ MAGPANTAY\r\nGender: Male\r\nLastName: MAGPANTAY\r\nMaidenName: \r\nMiddleName: ALMAREZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
764977	2024-07-10	14:25:39.1677001	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3683\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FRUCTUOSA\r\nFullName: FRUCTUOSA TOLENTINO\r\nGender: Female\r\nLastName: MAGPANTAY\r\nMaidenName: \r\nMiddleName: TOLENTINO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
764978	2024-07-10	14:25:39.1687001	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3683\r\nBirthDate: October 05, 2002\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: REINZ JONNEL\r\nFullName: REINZ JONNEL M ASI\r\nGender: Male\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
764979	2024-07-10	14:25:39.1687001	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3683\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
765002	2024-07-10	14:56:42.4133451	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3683\r\nDateOfExamination: October 25, 1992\r\nDateOfRelease: March 10, 1993\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: October 25, 1992\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0061392\r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 73.47%\r\nTitle: PROFESSIONAL BOARD EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
765003	2024-07-10	14:56:42.4183463	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3683\r\nDateOfExamination: July 28, 1991\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 7\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: July 28, 1991\r\nLevelOfEligibility: First Level (Subprofessional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 83.94%\r\nTitle: CAREER SERVICE SUB-PROFESSIONAL \r\n	admin	Eligibilities	1
765004	2024-07-10	14:56:42.4223452	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3683\r\nDateOfExamination: October 17, 1993\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: October 17, 1993\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 80.78%\r\nTitle: CAREER SERVICE PROFESSIONAL\r\n	admin	Eligibilities	1
765005	2024-07-10	14:56:42.4263449	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3683\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: February 16, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 73,661.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-3\r\nStatus: Permanent\r\nToDate: July 10, 2024\r\n	admin	Experiences	1
764987	2024-07-10	14:38:44.3422732	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: TABANGAO NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: June 23, 2003\r\nIsGovernmentService: True\r\nMonthlySalary: 10,442.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: December 31, 2006\r\n	admin	Experiences	1
764988	2024-07-10	14:38:44.3472732	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: PEDRO S. TOLENTINO MEMORIAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: October 01, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 10,442.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: June 22, 2003\r\n	admin	Experiences	1
764989	2024-07-10	14:38:44.3522732	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: PEDRO S. TOLENTINO MEMORIAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: September 30, 2002\r\n	admin	Experiences	1
764990	2024-07-10	14:38:44.3572733	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: PEDRO S. TOLENTINO MEMORIAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
764991	2024-07-10	14:38:44.3612731	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: PEDRO S. TOLENTINO MEMORIAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: November 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
764992	2024-07-10	14:38:44.3662733	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: PEDRO S. TOLENTINO MEMORIAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 7,309.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: October 31, 1997\r\n	admin	Experiences	1
764993	2024-07-10	14:38:44.3702731	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: PEDRO S. TOLENTINO MEMORIAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 6,013.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 1996\r\n	admin	Experiences	1
764994	2024-07-10	14:38:44.3752733	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: PEDRO S. TOLENTINO MEMORIAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 4,902.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1995\r\n	admin	Experiences	1
764995	2024-07-10	14:38:44.3802732	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: PEDRO S. TOLENTINO MEMORIAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 3,902.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1994\r\n	admin	Experiences	1
764996	2024-07-10	14:38:44.3842731	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3682\r\nCompanyInstitution: PEDRO S. TOLENTINO MEMORIAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: June 14, 1993\r\nIsGovernmentService: True\r\nMonthlySalary: 3,102.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1993\r\n	admin	Experiences	1
764997	2024-07-10	14:38:44.3892731	<Undetected>	Update	BasicInformationId: 3682\r\nCompanyInstitution: TABANGAO NATIONAL HIGH SCHOOL \r\nExperienceId: 10985\r\nFromDate: June 01, 2011\r\nIsGovernmentService: False\r\nMonthlySalary: 19,658.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2011\r\n	BasicInformationId: 3682\r\nCompanyInstitution: TABANGAO NATIONAL HIGH SCHOOL \r\nExperienceId: 10985\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 19,658.00\r\nPositionHeld: SECONDARY SCHOOL TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2011\r\n	admin	Experiences	1
771517	2025-03-18	11:21:19.2729834	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3806\r\nOrganizationId: 0\r\nOrganizationName: GIRL SCOOUT OF THE PHILIPPINES\r\n	admin	Organizations	1
764999	2024-07-10	14:48:48.0382669	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL TRAINING OF TRAINERS ON SOLO HOTS FRAMEWORK\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765000	2024-07-10	14:52:11.9254522	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION OF THE KEY LEADERS ON THE IMPLEMENTATION OF NATIONAL LEARNING CAMP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765001	2024-07-10	14:54:36.0125465	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON RECRUITMENT, SELECTION AND APPOINTMENT GUIDELINES IN THE DEPARTMENT OF EDUCATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765021	2024-07-10	14:57:11.1513363	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SEMINAR ON THE ROLE OF PARENTS IN ADDRESSING CHALLENGES AMONG ADOLESCENTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765022	2024-07-10	14:59:21.8371933	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RESULTS-BASED PERFORMANCE MANAGEMENT SYSTEM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765023	2024-07-10	15:01:49.2143023	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION AND CAPACITY BUILDING ON LRMDS POLICIES AND GUIDELINES , ORGANIZATION AND MANAGEMENT OF LRCs CUM CRAFTING OF SCHOOL AND DIVISION LEARNING RESOURCE PLAN\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765027	2024-07-10	15:05:42.3741801	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TECHNICAL ASSISTANCE TO DIVISION PROPONENTS AND SCHOOL LEADERS ON FY BUDGET PREPERATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765030	2024-07-10	15:09:42.9967054	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3682\r\nEmployeeTrainingId: 0\r\nFromDate: August 15, 2023\r\nHours: 40\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, REGION IV-A\r\nStatus: \r\nToDate: August 19, 2023\r\nTrainingId: 15858\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765031	2024-07-10	15:09:43.0007061	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3682\r\nEmployeeTrainingId: 0\r\nFromDate: July 06, 2023\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: July 06, 2023\r\nTrainingId: 15859\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765032	2024-07-10	15:09:43.0067057	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3682\r\nEmployeeTrainingId: 0\r\nFromDate: May 08, 2023\r\nHours: 16\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: May 09, 2023\r\nTrainingId: 15860\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765033	2024-07-10	15:09:43.0107493	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3682\r\nEmployeeTrainingId: 0\r\nFromDate: April 20, 2023\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: April 20, 2023\r\nTrainingId: 15861\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765034	2024-07-10	15:09:43.0157468	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3682\r\nEmployeeTrainingId: 0\r\nFromDate: March 29, 2023\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: March 29, 2023\r\nTrainingId: 15862\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765035	2024-07-10	15:09:43.0207508	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3682\r\nEmployeeTrainingId: 0\r\nFromDate: March 21, 2023\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: March 23, 2024\r\nTrainingId: 15863\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765036	2024-07-10	15:09:43.0257053	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3682\r\nEmployeeTrainingId: 0\r\nFromDate: February 22, 2022\r\nHours: 6\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: February 22, 2022\r\nTrainingId: 15867\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765038	2024-07-10	15:14:21.9740926	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ENHANCEMENT OF CONTINGENCY PLAN FOR DIFFERENT HAZARDS CUM COORDINATION MEETING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765006	2024-07-10	14:56:42.4313862	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3683\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: February 15, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 72,113.00\r\nPositionHeld: PUBLIC SCHOOLS DISTRICT SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-3\r\nStatus: Permanent\r\nToDate: March 01, 2022\r\n	admin	Experiences	1
765007	2024-07-10	14:56:42.4353871	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3683\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 12, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 69,481.00\r\nPositionHeld: PRINCIPAL IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: February 16, 2016\r\n	admin	Experiences	1
765008	2024-07-10	14:56:42.4403422	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3683\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 13, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 39,493.00\r\nPositionHeld: PRINCIPAL III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 21-1\r\nStatus: Permanent\r\nToDate: February 15, 2016\r\n	admin	Experiences	1
765009	2024-07-10	14:56:42.4443423	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3683\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: August 22, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 36,567.00\r\nPositionHeld: PRINCIPAL II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-1\r\nStatus: Permanent\r\nToDate: June 12, 2013\r\n	admin	Experiences	1
765010	2024-07-10	14:56:42.4493422	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3683\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITYP\r\nExperienceId: 0\r\nFromDate: July 03, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 30,880.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: August 21, 2011\r\n	admin	Experiences	1
765011	2024-07-10	14:56:42.4533421	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3683\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: December 11, 2003\r\nIsGovernmentService: True\r\nMonthlySalary: 14,098.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: July 02, 2006\r\n	admin	Experiences	1
765012	2024-07-10	14:56:42.4583426	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3683\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: August 10, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 11,167.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 10, 2003\r\n	admin	Experiences	1
765013	2024-07-10	14:56:42.4623423	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3683\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: October 05, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 10,535.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: August 09, 2001\r\n	admin	Experiences	1
765014	2024-07-10	14:56:42.4673423	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3683\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 06, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: October 04, 1998\r\n	admin	Experiences	1
765015	2024-07-10	14:56:42.4713421	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: #409\r\nAddress2: \r\nBarangay: MALITAM\r\nBasicInformationId: 3683\r\nBirthDate: November 13, 1971\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: LORNA.ASI@DEPED.GOV,PH\r\nExtensionName: \r\nFirstName: LORNA\r\nFullName: LORNA M. ASI\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: MAGPANTAY\r\nMobileNumber: 09985968905\r\nNationality: Filipino\r\nPermanentAddress1: #409\r\nPermanentAddress2: \r\nPermanentBarangay: MALITAM\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ILANG-ILANG\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: ILANG-ILANG\r\nTIN: \r\nWeight: 48\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: #409\r\nAddress2: \r\nBarangay: MALITAM\r\nBasicInformationId: 3683\r\nBirthDate: November 13, 1971\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: LORNA.ASI@DEPED.GOV,PH\r\nExtensionName: \r\nFirstName: LORNA\r\nFullName: LORNA M. ASI\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: MAGPANTAY\r\nMobileNumber: 09985968905\r\nNationality: Filipino\r\nPermanentAddress1: #409\r\nPermanentAddress2: \r\nPermanentBarangay: MALITAM\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ILANG-ILANG\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ILANG-ILANG\r\nTIN: \r\nWeight: 48\r\nZipCode: 4200\r\n	admin	BasicInformation	1
765016	2024-07-10	14:56:42.4753422	<Undetected>	Update	BasicInformationId: 3683\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3595\r\nExtensionName: \r\nFirstName: TEODORO\r\nFullName: TEODORO ARELLANO ASI\r\nGender: Male\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: ARELLANO\r\nOccupation: TIG WELDER\r\nRelationship: Husband\r\n	BasicInformationId: 3683\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3595\r\nExtensionName: \r\nFirstName: TEODORO\r\nFullName: TEODORO ASI\r\nGender: Male\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: ARELLANO\r\nOccupation: TIG WELDER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
765017	2024-07-10	14:56:42.4803423	<Undetected>	Update	BasicInformationId: 3683\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3596\r\nExtensionName: \r\nFirstName: DANIEL\r\nFullName: DANIEL ALMAREZ MAGPANTAY\r\nGender: Male\r\nLastName: MAGPANTAY\r\nMaidenName: \r\nMiddleName: ALMAREZ\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3683\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3596\r\nExtensionName: \r\nFirstName: DANIEL\r\nFullName: DANIEL MAGPANTAY\r\nGender: Male\r\nLastName: MAGPANTAY\r\nMaidenName: \r\nMiddleName: ALMAREZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
765018	2024-07-10	14:56:42.4843423	<Undetected>	Update	BasicInformationId: 3683\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3597\r\nExtensionName: \r\nFirstName: FRUCTUOSA\r\nFullName: FRUCTUOSA TOLENTINO\r\nGender: Female\r\nLastName: MAGPANTAY\r\nMaidenName: \r\nMiddleName: TOLENTINO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3683\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3597\r\nExtensionName: \r\nFirstName: FRUCTUOSA\r\nFullName: FRUCTUOSA MAGPANTAY\r\nGender: Female\r\nLastName: MAGPANTAY\r\nMaidenName: \r\nMiddleName: TOLENTINO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
765019	2024-07-10	14:56:42.4893422	<Undetected>	Update	BasicInformationId: 3683\r\nBirthDate: October 05, 2002\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3598\r\nExtensionName: \r\nFirstName: REINZ JONNEL\r\nFullName: REINZ JONNEL M ASI\r\nGender: Male\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3683\r\nBirthDate: October 05, 2002\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3598\r\nExtensionName: \r\nFirstName: REINZ JONNEL\r\nFullName: REINZ JONNEL ASI\r\nGender: Male\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
765020	2024-07-10	14:56:42.4933425	<Undetected>	Update	BasicInformationId: 3683\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3480\r\n	BasicInformationId: 3683\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3480\r\n	admin	Questionnaires	1
765029	2024-07-10	15:08:17.2645148	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL TRAINING OF TRAINERS FOR LEARNING RECOVERY PROGRAM IN LITERACY AND NUMERACY THROUGH SCHOOL BASED LEARNING ACTION CELL- BATCH 2\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765037	2024-07-10	15:10:20.1580945	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FINAL QUALITY ASSURANCE/ WORKSHOP OF CONTEXTUALIZED AND LOCALIZED MATERIALS IN ALL LEARNING AREAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765039	2024-07-10	15:17:20.3029414	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON THE DIVISION-WIDE E-RAISE UP PROGRMAM JOB-EMBEDDED LEARNING (JEL) EVALUATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765040	2024-07-10	15:18:37.6143702	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 8TH NAPSSPHIL PRINCIPAL'S CONGRESS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765041	2024-07-10	15:20:29.0903701	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INSTITUTION OF OCCUPATIONAL SAFETY AND HEALTH: MANAGING SAFELY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765042	2024-07-10	15:22:46.4714205	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PPSS 4.1 DIFFERENTIATING LEARNING AND DEVELOPEMENT INTERVENTIONS IN THE NEW NORMAL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765043	2024-07-10	15:23:56.7506701	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765044	2024-07-10	15:23:56.7556714	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: November 14, 2023\r\nHours: 32\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPARTMENT OF EDUCATION R4 A- CALABARZON \r\nStatus: \r\nToDate: November 17, 2023\r\nTrainingId: 15771\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765045	2024-07-10	15:23:56.7596712	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: November 17, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY\r\nStatus: \r\nToDate: November 17, 2023\r\nTrainingId: 15303\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765046	2024-07-10	15:23:56.7646718	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15045\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765047	2024-07-10	15:23:56.7696716	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: September 26, 2023\r\nHours: 32\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY\r\nStatus: \r\nToDate: September 29, 2023\r\nTrainingId: 15531\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765048	2024-07-10	15:23:56.7736717	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: April 18, 2023\r\nHours: 40\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY\r\nStatus: \r\nToDate: August 14, 2023\r\nTrainingId: 15574\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765049	2024-07-10	15:23:56.7786716	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: March 10, 2023\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY\r\nStatus: \r\nToDate: March 10, 2023\r\nTrainingId: 15575\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765050	2024-07-10	15:23:56.7826716	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2023\r\nHours: 24\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: PUBLIC SCHOOLS DISTRICT SUPERVISORS' ASSOCIATION INC. \r\nStatus: \r\nToDate: January 26, 2023\r\nTrainingId: 15576\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765051	2024-07-10	15:23:56.7876718	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: March 28, 2022\r\nHours: 56\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY\r\nStatus: \r\nToDate: April 05, 2022\r\nTrainingId: 15577\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765052	2024-07-10	15:23:56.7916717	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: August 15, 2022\r\nHours: 18\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: PHILIPPINE NORMAL UNIVERSITY \r\nStatus: \r\nToDate: August 20, 2022\r\nTrainingId: 15875\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765053	2024-07-10	15:23:56.7966715	<Undetected>	Insert	BasicInformationId: \r\nCommunityServiceId: \r\nDateFrom: \r\nDateTo: \r\nNumberOfHours: \r\nOrganizationAddress: \r\nOrganizationName: \r\nStatus: \r\n	BasicInformationId: 3683\r\nCommunityServiceId: 0\r\nDateFrom: June 28, 1995\r\nDateTo: July 10, 2024\r\nNumberOfHours: 0\r\nOrganizationAddress: PHILIPPINE ELEMENTARY SCHOOLS PRINCIPALS ASSOCIATION\r\nOrganizationName: PHILIPPINE ELEMENTARY SCHOOLS PRINCIPALS ASSOCIATION\r\nStatus: MEMBER\r\n	admin	CommunityServices	1
765054	2024-07-10	15:23:56.8006716	<Undetected>	Insert	BasicInformationId: \r\nCommunityServiceId: \r\nDateFrom: \r\nDateTo: \r\nNumberOfHours: \r\nOrganizationAddress: \r\nOrganizationName: \r\nStatus: \r\n	BasicInformationId: 3683\r\nCommunityServiceId: 0\r\nDateFrom: December 07, 1905\r\nDateTo: July 10, 2024\r\nNumberOfHours: 0\r\nOrganizationAddress: BATANGAS CITY EAST DISTRICT EMPLOYEES COOPERATIVE\r\nOrganizationName: BATANGAS CITY EAST DISTRICT EMPLOYEES COOPERATIVE\r\nStatus: BOD\r\n	admin	CommunityServices	1
765058	2024-07-10	15:32:29.3765951	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL ORIENTATION AND WORKSHOP ON ALIVE CURRICULUM AND ALIVE MELCS FOR MADRASAH EDUCATION PROGRAM ( MEP)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765061	2024-07-10	15:36:55.4955094	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING ON RESKILLING AND UPSKILLING OF SCHOOL LABORATORY TECHNICIANS / MANAGERS IN THE DEVELOPMENT OF LOCALIZED SAFETY MANAGEMENT SYSTEM MANUAL FOR TECHNICAL AND FUNCTIONALITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765062	2024-07-10	15:40:24.5946554	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EMPLOYEES RESKILLING ADVOCACY, INITIATIVES, SUPPORT FOR EXCELLENCE AND UPSKILLING PROGRAM ( E-RAISE UP)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765064	2024-07-10	15:41:23.0892853	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: August 08, 2022\r\nHours: 18\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: PHILIPPINE NORMAL UNIVERSITY\r\nStatus: \r\nToDate: August 13, 2022\r\nTrainingId: 15740\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765065	2024-07-10	15:41:23.0932910	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: July 25, 2022\r\nHours: 18\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: PHILIPPINE NORMAL UNIVERSITY\r\nStatus: \r\nToDate: July 30, 2022\r\nTrainingId: 15741\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765066	2024-07-10	15:41:23.0982913	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: July 18, 2022\r\nHours: 18\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: PHILIPPINE NORMAL UNIVERSITY\r\nStatus: \r\nToDate: July 23, 2023\r\nTrainingId: 15742\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765067	2024-07-10	15:41:23.1032910	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: July 11, 2022\r\nHours: 18\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: PHILIPPINE NORMAL UNIVERSITY\r\nStatus: \r\nToDate: July 16, 2022\r\nTrainingId: 15743\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765056	2024-07-10	15:28:06.2632512	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ONLINE VALUES RESTORATION PROGRAM ON ORGANIC-VRO TRAINING THE TRAINERS EXCELLENCE WORKSHOP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765063	2024-07-10	15:41:07.1731721	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TEACHING GRAMMAR COMMUNICATIVELY IN THE PHILIPPINES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765074	2024-07-10	15:45:10.1895925	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL ON THE IMPLEMENTATION OF LDM 2\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765075	2024-07-10	15:46:23.0491393	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL ORIENTATION ON THE IMPLEMENTATION OF LDM 2\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765120	2024-07-10	15:47:43.6741600	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL ORIENTATION ON THE IMPLEMENTATION OF LDM 1\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765122	2024-07-10	15:51:46.9883755	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION ROLL-OUT OF DEPED ORDER NO. 89, S. 2019 PROCEDURAL GUIDELINES ON CASH ADVANCE MANAGEMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765128	2024-07-10	15:55:14.7506418	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION WORKSHOP ON THE USE OF ADM MODULES FOR LEARNERS IN DISASTER AREAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765130	2024-07-10	15:57:10.2316930	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3682\r\nEmployeeTrainingId: 0\r\nFromDate: January 20, 2023\r\nHours: 4\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: February 20, 2023\r\nTrainingId: 15114\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765131	2024-07-10	15:57:10.2356931	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3682\r\nEmployeeTrainingId: 0\r\nFromDate: September 29, 2022\r\nHours: 14\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: September 30, 2022\r\nTrainingId: 15871\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765132	2024-07-10	15:57:10.2416929	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3682\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2022\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: July 15, 2022\r\nTrainingId: 15872\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765133	2024-07-10	15:57:10.2456929	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3682\r\nEmployeeTrainingId: 0\r\nFromDate: May 30, 2022\r\nHours: 80\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: NATIONAL ASSOCIATION OF PUBLIC SECONDARY SCHOOL PRINCIPLES OF THE PHILIPPINES (NAPSSPHIL) INC.\r\nStatus: \r\nToDate: June 08, 2022\r\nTrainingId: 15873\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765134	2024-07-10	15:57:10.2506931	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3682\r\nEmployeeTrainingId: 0\r\nFromDate: April 18, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: April 18, 2022\r\nTrainingId: 15350\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765135	2024-07-10	15:57:10.2556932	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3682\r\nEmployeeTrainingId: 0\r\nFromDate: March 28, 2022\r\nHours: 72\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: April 05, 2022\r\nTrainingId: 15577\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765136	2024-07-10	15:57:10.2606929	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3682\r\nEmployeeTrainingId: 0\r\nFromDate: February 22, 2022\r\nHours: 32\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: COUNCIL FOR THE RESTORATION OF FILIPINO VALUES\r\nStatus: \r\nToDate: February 25, 2022\r\nTrainingId: 15877\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765137	2024-07-10	15:57:10.2657658	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3682\r\nEmployeeTrainingId: 0\r\nFromDate: October 18, 2021\r\nHours: 32\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: THAMES INTERNATIONAL\r\nStatus: \r\nToDate: October 29, 2021\r\nTrainingId: 15599\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765138	2024-07-10	15:57:10.2707654	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3682\r\nEmployeeTrainingId: 0\r\nFromDate: December 02, 2021\r\nHours: 32\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: December 09, 2021\r\nTrainingId: 15479\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765057	2024-07-10	15:31:59.5514164	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: STANDARD FIRST AIDE WITH PROFESSIONAL CPR AND AED INSTRUCTION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765059	2024-07-10	15:33:25.8241542	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BASIC RIGPASS SAFETY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765060	2024-07-10	15:34:44.0496542	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: HYDROGENN SULFIDE SAFETY AND SCBA INSTRUCTION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765076	2024-07-10	15:46:45.0296306	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 130\r\nAddress2: \r\nBarangay: GULOD TABAC\r\nBasicInformationId: 0\r\nBirthDate: October 06, 1989\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: genekarlo.abag@deped.gov.ph\r\nExtensionName: \r\nFirstName: GENE KARLO\r\nFullName: GENE KARLO D. ABAG\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02003403978\r\nHDMF: 1210-6054-4755\r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ABAG\r\nMaidenName: \r\nMiddleName: DISTOR\r\nMobileNumber: 09171350689\r\nNationality: Filipino\r\nPermanentAddress1: 2\r\nPermanentAddress2: RK SUBDIVISION\r\nPermanentBarangay: CALICANTO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050291146-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 284-064-531-0000\r\nWeight: 85\r\nZipCode: 4200\r\n	admin	BasicInformation	1
765077	2024-07-10	15:46:45.2708458	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3684\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1999\r\nDateTo: 2002\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS CITY SOUTH ELEMENTARY SCHOOL\r\nYearGraduated: 2002\r\n	admin	EducationalBackgrounds	1
765078	2024-07-10	15:46:45.2758293	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3684\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2002\r\nDateTo: 2006\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAINT BRIDGET COLLEGE\r\nYearGraduated: 2006\r\n	admin	EducationalBackgrounds	1
765079	2024-07-10	15:46:45.2808126	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3684\r\nCourse: \r\nCourseId: 1340\r\nCourseOrMajor: \r\nDateFrom: 2006\r\nDateTo: 2010\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: LYCEUM OF THE PHILIPPINES UNIVERSITY\r\nYearGraduated: 2010\r\n	admin	EducationalBackgrounds	1
765080	2024-07-10	15:46:45.2847990	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3684\r\nCourse: \r\nCourseId: 1341\r\nCourseOrMajor: \r\nDateFrom: 2022\r\nDateTo: 2023\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2023\r\n	admin	EducationalBackgrounds	1
765081	2024-07-10	15:46:45.2897827	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3684\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CHRISTINE\r\nFullName: CHRISTINE MARASIGAN\r\nGender: Female\r\nLastName: ABAG\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nOccupation: GOVERNMENT EMPLOYEE\r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
765082	2024-07-10	15:46:45.2947661	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3684\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CARMELITA\r\nFullName: CARMELITA CABUILING DISTOR\r\nGender: Female\r\nLastName: DISTOR\r\nMaidenName: \r\nMiddleName: CABUILING\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
765083	2024-07-10	15:46:45.2987525	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3684\r\nEmployeeTrainingId: 0\r\nFromDate: February 07, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: TECHNICAL EDUCATIOPN AND SKILLS DEVELOPMENT AUTHORITY\r\nStatus: \r\nToDate: February 07, 2022\r\nTrainingId: 15864\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765084	2024-07-10	15:46:45.3037359	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3684\r\nEmployeeTrainingId: 0\r\nFromDate: June 04, 2021\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: June 04, 2021\r\nTrainingId: 15865\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765159	2024-07-10	16:13:07.2768974	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CONSULTATION WORKSHOPO ON THE REVISED ACTION PLANS ON QUALITY INDICATORS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765068	2024-07-10	15:41:23.1072921	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: July 04, 2022\r\nHours: 18\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: PHILIPPINE NORMAL UNIVERSITY\r\nStatus: \r\nToDate: July 09, 2022\r\nTrainingId: 15744\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765069	2024-07-10	15:41:23.1122915	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: July 12, 2022\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPARTMENT OF EDUCATION R4- A CALABARZON \r\nStatus: \r\nToDate: July 14, 2022\r\nTrainingId: 15879\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765070	2024-07-10	15:41:23.1162919	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: June 30, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY \r\nStatus: \r\nToDate: June 30, 2022\r\nTrainingId: 15225\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765071	2024-07-10	15:41:23.1212916	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: June 09, 2022\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY \r\nStatus: \r\nToDate: June 10, 2022\r\nTrainingId: 15578\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765072	2024-07-10	15:41:23.1252918	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: January 12, 2022\r\nHours: 24\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SDO BATANGAS CITY\r\nStatus: \r\nToDate: January 14, 2022\r\nTrainingId: 15085\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765073	2024-07-10	15:41:23.1302918	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: October 05, 2021\r\nHours: 32\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPARTMENT OF EDUCATION R4-A CALABARZON \r\nStatus: \r\nToDate: October 08, 2021\r\nTrainingId: 15883\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765113	2024-07-10	15:47:10.9021103	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3683\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE \r\n	admin	Skills	1
765114	2024-07-10	15:47:10.9061113	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3683\r\nOrganizationId: 0\r\nOrganizationName: PHILIPPINE PUBLIC SCHOOL TEACHERS ASSOCIATION ( PPSTA) \r\n	admin	Organizations	1
765115	2024-07-10	15:47:10.9101113	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3683\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY PUBLIC SCHOOLS TEACHERS AND EMPLOYEES ASSOCIATION ( BCPSTEA)\r\n	admin	Organizations	1
765116	2024-07-10	15:47:10.9191114	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3683\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY EAST DISTRICT EMPLOYEES CREDIT COOPERATIVE ( BCEDECC) \r\n	admin	Organizations	1
765117	2024-07-10	15:47:10.9231115	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3683\r\nOrganizationId: 0\r\nOrganizationName: WEST DISTRICT TEACHERS AND EMPLOYEES CREDIT COOPERATIVE ( WEDTEMCO) \r\n	admin	Organizations	1
765118	2024-07-10	15:47:10.9291122	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3683\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY PUBLIC SCHOOL HEADS ASSOCIATION ( BCPSHA) \r\n	admin	Organizations	1
765119	2024-07-10	15:47:10.9331113	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3683\r\nOrganizationId: 0\r\nOrganizationName: PHILIPPINE ELEMENTARY SCHOOL PRINCIPALS ASSOCIATION ( PESPA) \r\n	admin	Organizations	1
765123	2024-07-10	15:51:47.0781354	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3683\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09215155505\r\nExtensionName: PHD \r\nFirstName: VICTORIA \r\nLastName: FABARIER \r\nMiddleName: G\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
765124	2024-07-10	15:51:47.0851358	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3683\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09182980596\r\nExtensionName: PHD\r\nFirstName: MARIETA\r\nLastName: PEREZ\r\nMiddleName: N\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
765125	2024-07-10	15:51:47.0891353	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3683\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09171600146\r\nExtensionName: PHD\r\nFirstName: ROWENA \r\nLastName: ASI\r\nMiddleName: T\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
765126	2024-07-10	15:51:47.0951357	<Undetected>	Update	BasicInformationId: 3683\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3480\r\n	BasicInformationId: 3683\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3480\r\n	admin	Questionnaires	1
765139	2024-07-10	15:57:10.2757652	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3682\r\nEmployeeTrainingId: 0\r\nFromDate: September 23, 2021\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, REGION IV A\r\nStatus: \r\nToDate: September 23, 2021\r\nTrainingId: 15601\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772150	2025-03-18	16:15:39.8238000	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3822\r\nRecognitionId: 0\r\nRecognitionName: OLCA'S TOP 10 MOST OUTSTANDING TEACHER\r\n	admin	Recognitions	1
765085	2024-07-10	15:46:45.3077223	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3684\r\nEmployeeTrainingId: 0\r\nFromDate: September 08, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: September 08, 2020\r\nTrainingId: 15866\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765086	2024-07-10	15:46:45.3127068	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3684\r\nEmployeeTrainingId: 0\r\nFromDate: October 13, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: TECHNICAL\r\nStatus: \r\nToDate: October 13, 2020\r\nTrainingId: 15868\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765087	2024-07-10	15:46:45.3166935	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3684\r\nEmployeeTrainingId: 0\r\nFromDate: October 20, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: October 20, 2020\r\nTrainingId: 15868\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765088	2024-07-10	15:46:45.3217162	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3684\r\nEmployeeTrainingId: 0\r\nFromDate: October 27, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: October 27, 2020\r\nTrainingId: 15868\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765089	2024-07-10	15:46:45.3267012	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3684\r\nEmployeeTrainingId: 0\r\nFromDate: November 17, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: November 17, 2020\r\nTrainingId: 15868\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765090	2024-07-10	15:46:45.3316440	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3684\r\nEmployeeTrainingId: 0\r\nFromDate: October 07, 2015\r\nHours: 20\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: ENERTECH QATAR\r\nStatus: \r\nToDate: October 11, 2015\r\nTrainingId: 15874\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765091	2024-07-10	15:46:45.3356301	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3684\r\nEmployeeTrainingId: 0\r\nFromDate: August 05, 2013\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: RODECH TRAINING SERVICES\r\nStatus: \r\nToDate: August 07, 2013\r\nTrainingId: 15876\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765092	2024-07-10	15:46:45.3396168	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3684\r\nEmployeeTrainingId: 0\r\nFromDate: August 08, 2013\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: RODECH TRAINING SERVICES\r\nStatus: \r\nToDate: August 12, 2013\r\nTrainingId: 15878\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765093	2024-07-10	15:46:45.3445990	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3684\r\nEmployeeTrainingId: 0\r\nFromDate: August 13, 2013\r\nHours: 80\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: RODECH TRAINING SERVICES\r\nStatus: \r\nToDate: August 22, 2013\r\nTrainingId: 15880\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765094	2024-07-10	15:46:45.3495825	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3684\r\nEmployeeTrainingId: 0\r\nFromDate: August 26, 2013\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: RODECH TRAINING SERVICES\r\nStatus: \r\nToDate: August 26, 2013\r\nTrainingId: 15881\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765095	2024-07-10	15:46:45.3546061	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3684\r\nEmployeeTrainingId: 0\r\nFromDate: October 26, 2011\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SAFELINE CONSULTANCY\r\nStatus: \r\nToDate: October 30, 2011\r\nTrainingId: 3640\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765096	2024-07-10	15:46:45.3585945	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3684\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09614965059\r\nExtensionName: \r\nFirstName: LEODIVINA\r\nLastName: BAUAN\r\nMiddleName: M. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
765097	2024-07-10	15:46:45.3635753	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3684\r\nCharacterReferenceId: 0\r\nCompanyAddress: SOROSORO ILAYA BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09171495489\r\nExtensionName: \r\nFirstName: MENIANO \r\nLastName: EBORA\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
765098	2024-07-10	15:46:45.3675637	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3684\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09356196936\r\nExtensionName: \r\nFirstName: RANDY\r\nLastName: BAJA\r\nMiddleName: M.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
765140	2024-07-10	15:57:10.2807653	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3682\r\nEmployeeTrainingId: 0\r\nFromDate: March 22, 2021\r\nHours: 400\r\nNatureOfParticipation: SUPERVISORY/ TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION RELCN AND US EMBASSY IN THE PHILIPPINES \r\nStatus: \r\nToDate: May 06, 2021\r\nTrainingId: 15884\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765099	2024-07-10	15:46:45.3725062	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3684\r\nDateOfExamination: December 19, 2010\r\nDateOfRelease: October 06, 2024\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: December 19, 2010\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0681817\r\nPlaceOfExamination: MANILA\r\nRating: 78.0\r\nTitle: RA 1080 - NURSES' LICENSURE EXAMINATION\r\n	admin	Eligibilities	1
765100	2024-07-10	15:46:45.3764925	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3684\r\nDateOfExamination: March 29, 2009\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: March 29, 2009\r\nLevelOfEligibility: First Level (Subprofessional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS STATE UNIVERSITY\r\nRating: 80.0\r\nTitle: CAREER SERVICE EXAMINATION - PROFESSIONAL\r\n	admin	Eligibilities	1
765101	2024-07-10	15:46:45.3814758	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3684\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: April 03, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 405,090.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-3\r\nStatus: Permanent\r\nToDate: July 10, 2024\r\n	admin	Experiences	1
765102	2024-07-10	15:46:45.3864591	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3684\r\nCompanyInstitution: DOHA CABLES\r\nExperienceId: 0\r\nFromDate: February 03, 2016\r\nIsGovernmentService: False\r\nMonthlySalary: 30,804.00\r\nPositionHeld: COMPANY NURSE/SAFETY OFFICER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: July 27, 2016\r\n	admin	Experiences	1
765103	2024-07-10	15:46:45.3904458	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3684\r\nCompanyInstitution: GAD BUILDERS AND INTERPRISES INCORPORATED\r\nExperienceId: 0\r\nFromDate: April 01, 2013\r\nIsGovernmentService: False\r\nMonthlySalary: 18,000.00\r\nPositionHeld: COMPANY NURSE/SAFETY OFFICER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: August 01, 2015\r\n	admin	Experiences	1
765104	2024-07-10	15:46:45.3954291	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3684\r\nCompanyInstitution: MONOLOTH CONSTRUCTION AND DEVELOPMENT CORPORATION\r\nExperienceId: 0\r\nFromDate: September 01, 2012\r\nIsGovernmentService: False\r\nMonthlySalary: 12,000.00\r\nPositionHeld: COMPANY NURSE/SAFETY OFFICER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: March 02, 2013\r\n	admin	Experiences	1
765105	2024-07-10	15:46:45.3994157	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3684\r\nCompanyInstitution: GAD BUILDERS AND ENTERPRISES INCORPORATED \r\nExperienceId: 0\r\nFromDate: January 02, 2012\r\nIsGovernmentService: False\r\nMonthlySalary: 12,000.00\r\nPositionHeld: COMPANY NURSE/SAFETY OFFICER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: July 01, 2012\r\n	admin	Experiences	1
765106	2024-07-10	15:46:45.4043991	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3684\r\nCompanyInstitution: RSP LIM CONSTRUCTION COMPANY \r\nExperienceId: 0\r\nFromDate: May 02, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 10,000.00\r\nPositionHeld: COMPANY NURSE/SAFETY OFFICER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: December 01, 2011\r\n	admin	Experiences	1
765107	2024-07-10	15:46:45.4093825	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3684\r\nSkillId: 0\r\nSkillName: DRIVING\r\n	admin	Skills	1
765108	2024-07-10	15:46:45.4143657	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3684\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
765109	2024-07-10	15:46:45.4183524	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3684\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
765110	2024-07-10	15:46:45.4233358	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3684\r\nOrganizationId: 0\r\nOrganizationName: DEPARTMENT OF EDUCATION-NATIONAL EMPLOYESS UNION\r\n	admin	Organizations	1
765111	2024-07-10	15:46:45.4273224	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3684\r\nOrganizationId: 0\r\nOrganizationName: PHILIPPINE NURSES ASSOCIATION\r\n	admin	Organizations	1
765112	2024-07-10	15:46:45.4323059	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3684\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: Yes\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
765141	2024-07-10	15:57:10.2857653	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3682\r\nEmployeeTrainingId: 0\r\nFromDate: September 01, 2020\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL / SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, REGION IV A\r\nStatus: \r\nToDate: September 01, 2020\r\nTrainingId: 15886\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765121	2024-07-10	15:48:41.7530395	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: PUROK 3\r\nBarangay: TINGA ITAAS\r\nBasicInformationId: 3655\r\nBirthDate: April 27, 1973\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ricky.realingo@deped.gov.ph\r\nExtensionName: \r\nFirstName: RICKY\r\nFullName: RICKY M. REALINGO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02004977074\r\nHDMF: 1490-0033-8351\r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: REALINGO\r\nMaidenName: \r\nMiddleName: MEDINA\r\nMobileNumber: 09260391368\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: PUROK 3\r\nPermanentBarangay: TINGA ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050039648-1\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3036087-3\r\nStreetName: \r\nTIN: 083-220-042-0000\r\nWeight: 80\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: PUROK 3\r\nBarangay: TINGA ITAAS\r\nBasicInformationId: 3655\r\nBirthDate: April 27, 1973\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ricky.realingo@deped.gov.ph\r\nExtensionName: \r\nFirstName: RICKY\r\nFullName: RICKY M. REALINGO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02004977074\r\nHDMF: 1490-0033-8351\r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: REALINGO\r\nMaidenName: \r\nMiddleName: MEDINA\r\nMobileNumber: 09260391368\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: PUROK 3\r\nPermanentBarangay: TINGA ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050039648-1\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3036087-3\r\nStreetName: \r\nTIN: 083-220-042-0000\r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
765149	2024-07-10	16:03:31.7003143	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OR SCIENCE IN NURSING\r\nLevel: College\r\n	admin	Courses	1
765179	2024-07-10	16:15:54.0355226	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: BEREDO SUBDIVISION\r\nBarangay: ALANGILAN\r\nBasicInformationId: 0\r\nBirthDate: June 04, 1984\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: june.untalan@deped.gov.ph\r\nExtensionName: \r\nFirstName: JUNE\r\nFullName: JUNE G. UNTALAN\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0434250163\r\nLastName: UNTALAN\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nMobileNumber: 09177282933\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: BEREDO SUBDIVISION\r\nPermanentBarangay: ALANGILAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: OPAL STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: OPAL STREET\r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
765180	2024-07-10	16:15:54.0566584	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3685\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1991\r\nDateTo: 1997\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: MAHACOT ELEMENTARY SCHOOL\r\nYearGraduated: 1997\r\n	admin	EducationalBackgrounds	1
765181	2024-07-10	16:15:54.0566584	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3685\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1997\r\nDateTo: 2001\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2001\r\n	admin	EducationalBackgrounds	1
765182	2024-07-10	16:15:54.0576548	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3685\r\nCourse: \r\nCourseId: 1340\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 2007\r\n	admin	EducationalBackgrounds	1
765183	2024-07-10	16:15:54.0576548	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3685\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 7233586\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JANIZE\r\nFullName: JANIZE MACATANGAY\r\nGender: Female\r\nLastName: UNTALAN\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: NURSE II\r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
765184	2024-07-10	16:15:54.0576548	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3685\r\nBirthDate: January 17, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MIGGZ ESTEFAN\r\nFullName: MIGGZ ESTEFAN M. UNTALAN\r\nGender: Male\r\nLastName: UNTALAN\r\nMaidenName: \r\nMiddleName: M.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
765185	2024-07-10	16:15:54.0576548	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3685\r\nBirthDate: November 18, 2016\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARC JACOBZ\r\nFullName: MARC JACOBZ M. UNTALAN\r\nGender: Male\r\nLastName: UNTALAN\r\nMaidenName: \r\nMiddleName: M.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
765186	2024-07-10	16:15:54.0576548	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3685\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JUAN\r\nFullName: JUAN ACLAN UNTALAN\r\nGender: Male\r\nLastName: UNTALAN\r\nMaidenName: \r\nMiddleName: ACLAN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
771659	2025-03-18	11:54:11.9256504	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3807\r\nRecognitionId: 0\r\nRecognitionName: RESOURCE SPEAKER IN SCHOOL IN-SERVICE TRAINING FOIR ELLN DIGITAL COURSE SESSION 14 (SCHOOL LEVEL)\r\n	admin	Recognitions	1
765127	2024-07-10	15:53:50.3877892	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: #409\r\nAddress2: \r\nBarangay: MALITAM\r\nBasicInformationId: 3683\r\nBirthDate: November 13, 1971\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: LORNA.ASI@DEPED.GOV,PH\r\nExtensionName: \r\nFirstName: LORNA\r\nFullName: LORNA M. ASI\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: MAGPANTAY\r\nMobileNumber: 09985968905\r\nNationality: Filipino\r\nPermanentAddress1: #409\r\nPermanentAddress2: \r\nPermanentBarangay: MALITAM\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ILANG-ILANG\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ILANG-ILANG\r\nTIN: \r\nWeight: 48\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: #409\r\nAddress2: \r\nBarangay: MALITAM\r\nBasicInformationId: 3683\r\nBirthDate: November 13, 1971\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: LORNA.ASI@DEPED.GOV,PH\r\nExtensionName: \r\nFirstName: LORNA\r\nFullName: LORNA M. ASI\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 71111300881\r\nHDMF: 1490-0098-0960\r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: MAGPANTAY\r\nMobileNumber: 09985968905\r\nNationality: Filipino\r\nPermanentAddress1: #409\r\nPermanentAddress2: \r\nPermanentBarangay: MALITAM\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ILANG-ILANG\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000021827-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ILANG-ILANG\r\nTIN: 183-229-725-0000\r\nWeight: 48\r\nZipCode: 4200\r\n	admin	BasicInformation	1
765129	2024-07-10	15:56:42.2651571	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING WORKSHOP FOR SCHOOL HEADS ON THE DEVELPMENT O\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765146	2024-07-10	15:58:01.8621194	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING WORKSHOP FOR SCHOOL HEADS ON THE DEVELOPMENT OF OPCRF ALIGNED WIT PPSSH\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765147	2024-07-10	16:00:29.4446193	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION SYMPOSIUMON CONTINOUS IMPROVEMENT PROGRAM(CIP)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765148	2024-07-10	16:02:51.0623122	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: VIRTUAL LIBRARY ORIENTATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765150	2024-07-10	16:04:14.5397184	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: October 26, 2021\r\nHours: 16\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: October 28, 2021\r\nTrainingId: 15891\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765151	2024-07-10	16:04:14.5447187	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: October 18, 2021\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: October 18, 2021\r\nTrainingId: 15892\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765152	2024-07-10	16:04:14.5497184	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: September 21, 2021\r\nHours: 2\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: PHILIPPINE NORMAL UNIVERSITY\r\nStatus: \r\nToDate: September 21, 2021\r\nTrainingId: 15893\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765153	2024-07-10	16:05:34.3111767	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL ORIENTATION ON HE IMPLEMENTATION OF HOMEROOM GUIDANDANCE PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765154	2024-07-10	16:07:46.3810322	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CANVA FOR EDUCATION 101\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765155	2024-07-10	16:09:59.6750048	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING ON THE UTILIZATION OF MFAT FOR LEARNERS WITH DISABILITIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765156	2024-07-10	16:11:36.9811026	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: September 23, 2021\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: REGION IV-A CALABARZON \r\nStatus: \r\nToDate: September 23, 2021\r\nTrainingId: 15894\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765157	2024-07-10	16:11:36.9851020	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: October 26, 2021\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: PHILIPPINE NORMAL UNIVERSITY\r\nStatus: \r\nToDate: October 26, 2021\r\nTrainingId: 15895\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765158	2024-07-10	16:11:36.9911038	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: June 16, 2021\r\nHours: 16\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: GABAY - RESOURCES FOR THE BLIND, INC.\r\nStatus: \r\nToDate: June 17, 2021\r\nTrainingId: 15896\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765142	2024-07-10	15:57:10.2897646	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3682\r\nEmployeeTrainingId: 0\r\nFromDate: July 10, 2020\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL / SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, REGION IV A\r\nStatus: \r\nToDate: July 10, 2020\r\nTrainingId: 15887\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765143	2024-07-10	15:57:10.2958058	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3682\r\nEmployeeTrainingId: 0\r\nFromDate: August 13, 2020\r\nHours: 16\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: August 14, 2020\r\nTrainingId: 15888\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765144	2024-07-10	15:57:10.2998042	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3682\r\nEmployeeTrainingId: 0\r\nFromDate: January 30, 2020\r\nHours: 16\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, REGION IV-A\r\nStatus: \r\nToDate: January 31, 2020\r\nTrainingId: 15889\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765145	2024-07-10	15:57:10.3047648	<Undetected>	Update	BasicInformationId: 3682\r\nEmployeeTrainingId: 8728\r\nFromDate: February 22, 2022\r\nHours: 6.00\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: February 22, 2022\r\nTrainingId: 15867\r\nTrainingPerformanceRate: 0\r\n	BasicInformationId: 3682\r\nEmployeeTrainingId: 8728\r\nFromDate: February 22, 2023\r\nHours: 6\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: February 22, 2023\r\nTrainingId: 15867\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765160	2024-07-10	16:13:42.1884607	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3682\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
765161	2024-07-10	16:13:42.1965022	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3682\r\nSkillId: 0\r\nSkillName: ENCODING\r\n	admin	Skills	1
765162	2024-07-10	16:13:42.2014607	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3682\r\nSkillId: 0\r\nSkillName: WRITING\r\n	admin	Skills	1
765163	2024-07-10	16:13:42.2064610	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3682\r\nRecognitionId: 0\r\nRecognitionName: OUTSTANDING SCHOOL HEAD IN DISTRICT, DIVISION AND REGIONAL LEVEL\r\n	admin	Recognitions	1
765164	2024-07-10	16:13:42.2114606	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3682\r\nRecognitionId: 0\r\nRecognitionName: WITH SCHOOL BEST BRIGADA ESKWELA IMPLEMENTER 2021 AND 2022 AWARD\r\n	admin	Recognitions	1
765165	2024-07-10	16:13:42.2164605	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3682\r\nRecognitionId: 0\r\nRecognitionName: NOMINEE FOR THE SCHOOL SBM IMPLEMENTER AWARD 2021/ AWARDEE IN THE SAME CATEGORY FOR 2022\r\n	admin	Recognitions	1
765166	2024-07-10	16:13:42.2214608	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3682\r\nRecognitionId: 0\r\nRecognitionName: NOMINEE FOR THE BEST PERFORMING SCHOOL AWARD 2021/ AWARDEE IN THE SAME CATEGORY FOR 2022\r\n	admin	Recognitions	1
765167	2024-07-10	16:13:42.2264606	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3682\r\nRecognitionId: 0\r\nRecognitionName: NOMINEE READING PROGRAM AWARD 2021, AWARDEE FOR 2022\r\n	admin	Recognitions	1
765168	2024-07-10	16:13:42.2304606	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3682\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY SCHOOL HEADS ASSOCIATION \r\n	admin	Organizations	1
765169	2024-07-10	16:13:42.2354605	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3682\r\nOrganizationId: 0\r\nOrganizationName: ALOYSIAN PUBLICATION \r\n	admin	Organizations	1
765170	2024-07-10	16:13:42.2404618	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3682\r\nOrganizationId: 0\r\nOrganizationName: NATIONAL ASSOCIATION OF SECONDARY SCHOOL PRINCIPAL IN THE PHILIPPINES\r\n	admin	Organizations	1
765171	2024-07-10	16:13:42.2454617	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3682\r\nOrganizationId: 0\r\nOrganizationName: BAGWIS OFFICER\r\n	admin	Organizations	1
765172	2024-07-10	16:13:42.2504617	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3682\r\nCharacterReferenceId: 0\r\nCompanyAddress: LIBJO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09173658065\r\nExtensionName: \r\nFirstName: LILIBETH\r\nLastName: VIRTUS\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
765173	2024-07-10	16:13:42.2544608	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3682\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES, SORO SORO ILAYA\r\nCompanyName: \r\nContactNumber: 09156598816\r\nExtensionName: \r\nFirstName: MENA \r\nLastName: DE TORRES\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
765174	2024-07-10	16:13:42.2595085	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3682\r\nCharacterReferenceId: 0\r\nCompanyAddress: TALUMPOK, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09171524836\r\nExtensionName: \r\nFirstName: SACORRO\r\nLastName: COMIA\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
765177	2024-07-10	16:14:24.0680777	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: June 15, 2021\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: GABAY - RESOURCES FOR THE BLIND, INC\r\nStatus: \r\nToDate: June 15, 2021\r\nTrainingId: 15897\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765178	2024-07-10	16:15:55.3338448	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING OF TEACHERS ON THE UTILIZATION OF EQUIPMENT AND ASSISTIVE TECHNOLOGY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765175	2024-07-10	16:13:42.2645003	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 4 LOT 17\r\nAddress2: MERCEDES HOMES\r\nBarangay: SORO SORO ILAYA\r\nBasicInformationId: 3682\r\nBirthDate: August 05, 1970\r\nBirthPlace: PINAMUKAN EAST, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: nieves.montalbo@deped.gov.ph\r\nExtensionName: \r\nFirstName: NIEVES\r\nFullName: NIEVES A. MONTALBO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MONTALBO\r\nMaidenName: \r\nMiddleName: AGUBA\r\nMobileNumber: 09055132951\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 4 LOT 17\r\nPermanentAddress2: MERCEDES HOMES\r\nPermanentBarangay: SORO SORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 4 LOT 17\r\nAddress2: MERCEDES HOMES\r\nBarangay: SORO SORO ILAYA\r\nBasicInformationId: 3682\r\nBirthDate: August 05, 1970\r\nBirthPlace: PINAMUKAN EAST, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: nieves.montalbo@deped.gov.ph\r\nExtensionName: \r\nFirstName: NIEVES\r\nFullName: NIEVES A. MONTALBO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 06006276816\r\nHDMF: 0403-0702-0110\r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MONTALBO\r\nMaidenName: \r\nMiddleName: AGUBA\r\nMobileNumber: 09055132951\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 4 LOT 17\r\nPermanentAddress2: MERCEDES HOMES\r\nPermanentBarangay: SORO SORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000010546-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 912-183-340-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
765176	2024-07-10	16:13:42.2695078	<Undetected>	Update	BasicInformationId: 3682\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3479\r\n	BasicInformationId: 3682\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: 2023-093-011\r\nQ40c: No\r\nQuestionnaireId: 3479\r\n	admin	Questionnaires	1
765187	2024-07-10	16:15:54.0576548	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3685\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: NIEVES\r\nFullName: NIEVES GUTIERREZ\r\nGender: Female\r\nLastName: GUTIERREZ\r\nMaidenName: ALCANTARA\r\nMiddleName: \r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
765188	2024-07-10	16:15:54.0586509	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3685\r\nDateOfExamination: November 01, 2008\r\nDateOfRelease: June 24, 2019\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: November 01, 2008\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0546514\r\nPlaceOfExamination: LUCENA\r\nRating: 75%\r\nTitle: NURSE LICENSURE EXAM\r\n	admin	Eligibilities	1
765189	2024-07-10	16:15:54.0586509	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3685\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 41,367.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-5\r\nStatus: Permanent\r\nToDate: July 10, 2024\r\n	admin	Experiences	1
765190	2024-07-10	16:15:54.0586509	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3685\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 26,489.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-2\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
765191	2024-07-10	16:15:54.0586509	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3685\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 09, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 25,161.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-2\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
765192	2024-07-10	16:15:54.0586509	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3685\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 24,887.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-1\r\nStatus: Permanent\r\nToDate: November 08, 2014\r\n	admin	Experiences	1
765193	2024-07-10	16:15:54.0586509	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3685\r\nCompanyInstitution: DEPARTMENT OF EDUCATION`\r\nExperienceId: 0\r\nFromDate: November 08, 2011\r\nIsGovernmentService: False\r\nMonthlySalary: 0.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: May 10, 2024\r\n	admin	Experiences	1
765194	2024-07-10	16:15:54.0586509	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3685\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
765197	2024-07-10	16:18:58.7581423	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PROMOTING AND STRENGTHENING TB PREVENTION IN THE WORKPLACE PROGRAM IN BATANGAS PROVINCE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765199	2024-07-10	16:20:50.3897253	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON THE GUIDELINES ON THE IMPLEMENTATION OF SBFP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765201	2024-07-10	16:22:01.5675700	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3685\r\nEmployeeTrainingId: 0\r\nFromDate: August 16, 2023\r\nHours: 16\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: August 17, 2023\r\nTrainingId: 15900\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765202	2024-07-10	16:22:01.5765400	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3685\r\nEmployeeTrainingId: 0\r\nFromDate: April 20, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: April 20, 2023\r\nTrainingId: 15901\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765203	2024-07-10	16:22:01.5815232	<Undetected>	Update	BasicInformationId: 3685\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 7233586\r\nEmployeeRelativeId: 3601\r\nExtensionName: \r\nFirstName: JANIZE\r\nFullName: JANIZE MACATANGAY\r\nGender: Female\r\nLastName: UNTALAN\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: NURSE II\r\nRelationship: Wife\r\n	BasicInformationId: 3685\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 7233586\r\nEmployeeRelativeId: 3601\r\nExtensionName: \r\nFirstName: JANIZE\r\nFullName: JANIZE UNTALAN\r\nGender: Female\r\nLastName: UNTALAN\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: NURSE II\r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
771660	2025-03-18	11:54:11.9306504	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3807\r\nRecognitionId: 0\r\nRecognitionName: RESOURCE SPEAKER IN SCHOOL IN-SERVICE TRAINING FOR ELLN DIGITAL COURSE SESSION 7 (SCHOOL LEVEL)\r\n	admin	Recognitions	1
765195	2024-07-10	16:16:46.5011763	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: May 18, 2021\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: GABAY - RESOURCES FOR THE BLIND, INC\r\nStatus: \r\nToDate: May 19, 2021\r\nTrainingId: 15898\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765196	2024-07-10	16:17:40.1947268	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: LIFE COACHING ON THE VALUE OF HARDWORK AND DISCIPLINE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765198	2024-07-10	16:19:24.8894428	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: April 28, 2021\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: FORTUNE LIFE & MARY LINDBERT INTERNATIONAL\r\nStatus: \r\nToDate: April 28, 2021\r\nTrainingId: 15899\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765200	2024-07-10	16:21:45.1814836	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING-WORKSHOP ON THE DEVELOPMENT OF PROGRAM DESIGN & LEARNING RESOURCE PACKAGES FOR CAPABILITY BUILDING OF TEACHERS, SCHOOL LEADERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765210	2024-07-10	16:22:53.4838129	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: March 22, 2021\r\nHours: 40\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 26, 2021\r\nTrainingId: 15902\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765211	2024-07-10	16:24:25.5642363	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: VIRTUAL TRAINING ON THE INTENSIVE IMPLEMENTATION OF WINS PROGRAM IN SDO BATANGAS CITY IN THIS PANDEMIC TIME\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765213	2024-07-10	16:25:26.7648092	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2021\r\nHours: 16\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 31, 2021\r\nTrainingId: 15903\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765215	2024-07-10	16:26:49.8060488	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RESOURCE PACKAGES FOR THE CAPABILITY BUILDING OF TEACHERS,SCHOOL LEADERS AND NON-TEACHING PERSONNEL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765217	2024-07-10	16:27:53.2962133	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: March 22, 2021\r\nHours: 40\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 26, 2021\r\nTrainingId: 15906\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765221	2024-07-10	16:29:01.8215750	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIGITAL POETRY : A COLLABORATIVE PERFORMANCE PROJECT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765222	2024-07-10	16:29:48.4438219	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: March 19, 2021\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 19, 2021\r\nTrainingId: 15908\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765223	2024-07-10	16:30:47.2823390	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CREATING INTERACTIVE MATERIALS USING SCRATCH ANIMATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765224	2024-07-10	16:31:26.0028509	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: March 19, 2021\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 19, 2021\r\nTrainingId: 15909\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765225	2024-07-10	16:32:26.2300084	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: HOUR OF CODE(PROGRAMMING FOR WOMEN)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765226	2024-07-10	16:33:12.6315696	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: March 19, 2021\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 19, 2021\r\nTrainingId: 15910\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765228	2024-07-10	16:33:51.8540048	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INTERACTIVE INSTRUCTIONAL MATERIALS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765258	2024-07-11	08:34:06.4979499	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RPMS- PPST NATIONAL ORIENTATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765204	2024-07-10	16:22:01.5865067	<Undetected>	Update	BasicInformationId: 3685\r\nBirthDate: January 17, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3602\r\nExtensionName: \r\nFirstName: MIGGZ ESTEFAN\r\nFullName: MIGGZ ESTEFAN M. UNTALAN\r\nGender: Male\r\nLastName: UNTALAN\r\nMaidenName: \r\nMiddleName: M.\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3685\r\nBirthDate: January 17, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3602\r\nExtensionName: \r\nFirstName: MIGGZ ESTEFAN\r\nFullName: MIGGZ ESTEFAN UNTALAN\r\nGender: Male\r\nLastName: UNTALAN\r\nMaidenName: \r\nMiddleName: M.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
765205	2024-07-10	16:22:01.5904932	<Undetected>	Update	BasicInformationId: 3685\r\nBirthDate: November 18, 2016\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3603\r\nExtensionName: \r\nFirstName: MARC JACOBZ\r\nFullName: MARC JACOBZ M. UNTALAN\r\nGender: Male\r\nLastName: UNTALAN\r\nMaidenName: \r\nMiddleName: M.\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3685\r\nBirthDate: November 18, 2016\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3603\r\nExtensionName: \r\nFirstName: MARC JACOBZ\r\nFullName: MARC JACOBZ UNTALAN\r\nGender: Male\r\nLastName: UNTALAN\r\nMaidenName: \r\nMiddleName: M.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
765206	2024-07-10	16:22:01.5954766	<Undetected>	Update	BasicInformationId: 3685\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3604\r\nExtensionName: \r\nFirstName: JUAN\r\nFullName: JUAN ACLAN UNTALAN\r\nGender: Male\r\nLastName: UNTALAN\r\nMaidenName: \r\nMiddleName: ACLAN\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3685\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3604\r\nExtensionName: \r\nFirstName: JUAN\r\nFullName: JUAN UNTALAN\r\nGender: Male\r\nLastName: UNTALAN\r\nMaidenName: \r\nMiddleName: ACLAN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
765207	2024-07-10	16:22:01.5994631	<Undetected>	Update	BasicInformationId: 3685\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3605\r\nExtensionName: \r\nFirstName: NIEVES\r\nFullName: NIEVES GUTIERREZ\r\nGender: Female\r\nLastName: GUTIERREZ\r\nMaidenName: ALCANTARA\r\nMiddleName: \r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3685\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3605\r\nExtensionName: \r\nFirstName: NIEVES\r\nFullName: NIEVES GUTIERREZ\r\nGender: Female\r\nLastName: GUTIERREZ\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
765208	2024-07-10	16:22:01.6044465	<Undetected>	Update	BasicInformationId: 3685\r\nCompanyInstitution: DEPARTMENT OF EDUCATION`\r\nExperienceId: 11023\r\nFromDate: November 08, 2011\r\nIsGovernmentService: False\r\nMonthlySalary: 0.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: May 10, 2024\r\n	BasicInformationId: 3685\r\nCompanyInstitution: DEPARTMENT OF EDUCATION`\r\nExperienceId: 11023\r\nFromDate: November 08, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 22,688.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-1\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
765209	2024-07-10	16:22:01.6094300	<Undetected>	Update	BasicInformationId: 3685\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3482\r\n	BasicInformationId: 3685\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3482\r\n	admin	Questionnaires	1
765212	2024-07-10	16:25:09.8143002	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING OF TRAINORS ON NUTRITIONAL ASSESSMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765214	2024-07-10	16:25:56.3815023	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING ON TRAINORS ON NUTRITIONAL ASSESSMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765216	2024-07-10	16:27:29.3977835	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION TRAINING ON THE DRUG TESTING PROGRAM CLUSTER II 4A AND B\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765218	2024-07-10	16:28:33.0585174	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3685\r\nEmployeeTrainingId: 0\r\nFromDate: April 20, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: April 20, 2023\r\nTrainingId: 15861\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765219	2024-07-10	16:28:33.0625041	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3685\r\nEmployeeTrainingId: 0\r\nFromDate: April 18, 2017\r\nHours: 16\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: April 19, 2017\r\nTrainingId: 15905\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765220	2024-07-10	16:28:33.0694808	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3685\r\nEmployeeTrainingId: 0\r\nFromDate: March 07, 2017\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: March 09, 2017\r\nTrainingId: 15907\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765227	2024-07-10	16:33:15.0544366	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PROGRAM IMPLEMENTATION REVIEW (PIR) OF EDUCATION SUPPORT SERVICES DIVISION (ESSDS)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765232	2024-07-10	16:35:41.3641786	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION OF THE POLICIES AND PROCEDURES OF THE NATIONAL TB CONTROL PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765234	2024-07-10	16:36:25.7493124	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3685\r\nEmployeeTrainingId: 0\r\nFromDate: November 14, 2016\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: November 19, 2016\r\nTrainingId: 15911\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765229	2024-07-10	16:34:27.9234426	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: March 18, 2021\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 18, 2021\r\nTrainingId: 15912\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765230	2024-07-10	16:34:58.7167518	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SOLVING PEOPLE PUZZLE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765231	2024-07-10	16:35:30.8974516	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: March 17, 2021\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 17, 2021\r\nTrainingId: 15913\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765233	2024-07-10	16:36:15.5943451	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: GOOGLE WORKSPACE FOR STUDENT FUNDAMENTALS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765237	2024-07-10	16:36:45.9353368	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: March 17, 2021\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 17, 2021\r\nTrainingId: 15915\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765238	2024-07-10	16:37:45.7422070	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EFFECTIVE UTILIZATION OF MULTIMEDIA MATERIALS; DEPED TV\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765240	2024-07-10	16:38:21.9091162	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: March 16, 2021\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 16, 2021\r\nTrainingId: 15916\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765241	2024-07-10	16:40:27.4446465	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: A NEW NORMAL: THE CRITICAL ROLE OF ASSESSMENT IN ONLINE LEARNING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765243	2024-07-10	16:41:01.5544909	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: March 16, 2021\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 16, 2021\r\nTrainingId: 15918\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765246	2024-07-10	16:42:08.9942404	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EFFECTIVE DELIVERY OF SYNCHRONOUS/ASYNCHRONOUS TEACHING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765247	2024-07-10	16:42:54.5702518	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: March 15, 2015\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 15, 2015\r\nTrainingId: 15920\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765235	2024-07-10	16:36:25.7542959	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3685\r\nEmployeeTrainingId: 0\r\nFromDate: September 29, 2016\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF HEALTH\r\nStatus: \r\nToDate: September 29, 2016\r\nTrainingId: 8348\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765236	2024-07-10	16:36:25.7592792	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3685\r\nEmployeeTrainingId: 0\r\nFromDate: September 20, 2016\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF HEALTH\r\nStatus: \r\nToDate: September 22, 2016\r\nTrainingId: 15914\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765239	2024-07-10	16:37:56.6592420	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ADVOCACY ORIENTATION ON RA9482 (ANTI RABIES ACT OF 2007) FOR DEPED MEDICAL PERSONNEL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765242	2024-07-10	16:40:28.9564681	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL BASED IMMUNIZATION MEASLES RUBELLA TETANUS DIPTHERIA (MR-TD) ORIENTATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765244	2024-07-10	16:41:40.8560158	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3685\r\nEmployeeTrainingId: 0\r\nFromDate: August 17, 2016\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF HEALTH\r\nStatus: \r\nToDate: August 18, 2016\r\nTrainingId: 15917\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765245	2024-07-10	16:41:40.8609990	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3685\r\nEmployeeTrainingId: 0\r\nFromDate: August 19, 2016\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF HEALTH\r\nStatus: \r\nToDate: August 19, 2016\r\nTrainingId: 15919\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765248	2024-07-11	08:03:56.4002926	<Undetected>	Update	BasicInformationId: 3684\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3599\r\nExtensionName: \r\nFirstName: CHRISTINE\r\nFullName: CHRISTINE MARASIGAN\r\nGender: Female\r\nLastName: ABAG\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nOccupation: GOVERNMENT EMPLOYEE\r\nRelationship: Wife\r\n	BasicInformationId: 3684\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3599\r\nExtensionName: \r\nFirstName: CHRISTINE\r\nFullName: CHRISTINE ABAG\r\nGender: Female\r\nLastName: ABAG\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nOccupation: GOVERNMENT EMPLOYEE\r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
765249	2024-07-11	08:03:56.4112925	<Undetected>	Update	BasicInformationId: 3684\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3600\r\nExtensionName: \r\nFirstName: CARMELITA\r\nFullName: CARMELITA CABUILING DISTOR\r\nGender: Female\r\nLastName: DISTOR\r\nMaidenName: \r\nMiddleName: CABUILING\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3684\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3600\r\nExtensionName: \r\nFirstName: CARMELITA\r\nFullName: CARMELITA DISTOR\r\nGender: Female\r\nLastName: DISTOR\r\nMaidenName: \r\nMiddleName: CABUILING\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
765250	2024-07-11	08:11:59.8566887	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF SCIENCE IN NURSING\r\nLevel: College\r\n	admin	Courses	1
765251	2024-07-11	08:14:44.3806768	<Undetected>	Insert	ApplicationStatus: \r\nApproverBasicInformationId: \r\nBasicInformationId: \r\nDateApproved: \r\nDateCreated: \r\nDateHired: \r\nEffectivityDate: \r\nEmploymentStatusId: \r\nEncoderBasicInformationId: \r\nFromStep: \r\nJobVacancyId: \r\nNonPlantillaRecordId: \r\nPersonnelActionMemoId: \r\nPlantillaRecordId: \r\nPositionId: \r\nPurposeOfMovement: \r\nRateTypeId: \r\nRemarks: \r\nSalaryRate: \r\nStatus: \r\nToStep: \r\nValue: \r\n	ApplicationStatus: Pending\r\nApproverBasicInformationId: 0\r\nBasicInformationId: 3639\r\nDateApproved: January 01, 0001\r\nDateCreated: July 11, 2024\r\nDateHired: January 01, 0001\r\nEffectivityDate: January 01, 0001\r\nEmploymentStatusId: 1\r\nEncoderBasicInformationId: 1\r\nFromStep: 0\r\nJobVacancyId: 379\r\nNonPlantillaRecordId: 0\r\nPersonnelActionMemoId: 0\r\nPlantillaRecordId: 0\r\nPositionId: 2009\r\nPurposeOfMovement: New Employee\r\nRateTypeId: 2\r\nRemarks: \r\nSalaryRate: 235116.00\r\nStatus: Pending\r\nToStep: 1\r\nValue: 0\r\n	admin	PersonnelActionMemos	1
765252	2024-07-11	08:19:04.3718875	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPABILITY- BUILDING ON SCHOOL- BASED MANAGEMENT IN THE BETTER NORMAL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765253	2024-07-11	08:21:42.5522730	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NAVIGATING COMPUTER APPLICATIONS ON COMMUNICATION PLATFORMS AND ITS UTILIZATION FOR THE IMPROVEMENT OF SCHOOL OPERATIONS AND LEARNING MANAGEMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765254	2024-07-11	08:23:05.4214425	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL- BASED WEBINAR ON WINS PROGRAM IMPLEMENTATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765255	2024-07-11	08:26:25.2705533	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: LIKAS 2020- 2021 WEBINAR SERIES: LIBRARIES' EFFECTIVE RESPONSES AND PREPAREDNESS IN THIS TIME OF PANDEMIC\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765256	2024-07-11	08:30:30.2370352	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: LEADING WINS: SCHOOL LEVEL WASH IN SCHOOLS MASSIVE OPEN ONLINE COURSE ( MOOC)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765257	2024-07-11	08:33:05.8065308	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BUSINESS AND TECHNOLOGY EDUCATION COUNCIL HIGHER NATIONAL DIPLOMA IN HEALTH AND SOCIAL CARE\r\nLevel: Master's\r\n	admin	Courses	1
765259	2024-07-11	08:36:10.8704688	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ONLINE TRAINING FOR SPECIAL CURRICULAR PROGRAMS ( SCP'S) IN THE NEW NORMAL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765260	2024-07-11	08:37:51.7779219	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON THE PHILIPPINE PROFESSIONAL STANDARDS FOR SCHOOL HEADS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765261	2024-07-11	08:39:06.2671225	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DEVELOPING OUTSTANDING LEADERSHIP SKILLS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765262	2024-07-11	08:43:11.2372395	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING ON QUALITY INDICATORS FOR EDUCATION PROGRAM SERVING CHILDREN WITH SENSORIAL DISABILITIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765264	2024-07-11	08:47:23.8404457	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL WEBINAR ON KINDERGARTEN REMOTE TEACHING AND LEARNING : DEVELOPMENTALLY APPROPRIATE RESPONSES IN THE TIME OF COVID 19\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765267	2024-07-11	08:49:21.5343319	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING ON ONLINE TRAINERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765270	2024-07-11	08:55:35.4462092	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: LAL SESSION 2: SCHOOL LEARNING CONTINUITY PLAN OPERATIONALIZATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765272	2024-07-11	08:57:13.9487897	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MELC MANAGEMENT AND SAMPLE IDEA LESSON EXEMPLAR PRESENTATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765274	2024-07-11	08:59:12.5690427	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL ORIENTATION ON THE IMPLEMENTATION OF LDM 1 COURSE FOR DIVISION AND SCHOOL LEADERS UNDER BE- LCP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765321	2024-07-11	09:00:45.1280949	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SUPER SCHOOLS SERIES: BEST PRACTICES OF MOREH ACADEMY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765325	2024-07-11	09:05:23.1195890	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION WIDE TRAINING ON THE ENHANCEMENT OF SPED- INCLUSIVE PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765326	2024-07-11	09:06:17.1088106	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: March 11, 2021\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: March 11, 2021\r\nTrainingId: 15921\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765327	2024-07-11	09:06:17.1128106	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: March 01, 2021\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED REGION IV A CALABARZON \r\nStatus: \r\nToDate: March 05, 2021\r\nTrainingId: 15922\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765328	2024-07-11	09:06:17.1178105	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: February 24, 2021\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: February 26, 2021\r\nTrainingId: 15923\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765329	2024-07-11	09:06:17.1218108	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: February 19, 2021\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: ASOSASYON NG AKLATAN AT SINUPAN NG DILIMAN, INC. ( AASDI) \r\nStatus: \r\nToDate: February 19, 2021\r\nTrainingId: 15924\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765330	2024-07-11	09:06:17.1268105	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: February 08, 2021\r\nHours: 40\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: SEAMEO INNOTECH,  DEPED, GERMAN CO\r\nStatus: \r\nToDate: April 16, 2021\r\nTrainingId: 15925\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765331	2024-07-11	09:06:17.1308109	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: February 01, 2021\r\nHours: 24\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION  \r\nStatus: \r\nToDate: February 03, 2021\r\nTrainingId: 15926\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765263	2024-07-11	08:44:19.2198855	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INTEGRATED CONSULTATIVE MEETING ON VECTOR BORNE AND INFECTIOUS DISEASES FOR DEPED SCHOOL DIVISION OFFICES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765265	2024-07-11	08:47:10.9145096	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INTEGRATED CONSULTATIVE MEETING AND PLANNING OF INTEGRATED HELMINTHIASIS CONTROL PROGRAM COORDINATORS OF CALABARZON\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765268	2024-07-11	08:49:08.8197746	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PROMOTING AND STRENGTHENING TB IN THE WORKPLACE IN BATANGAS PROVINCE: A CAPACITY BUILDING FOR DEPED DIVISION OF BATANGAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765269	2024-07-11	08:50:47.3781544	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INTEGRATED CONSULTATIVE MEETING ON DEWORMING AND NUTRITION IN PREPARATION FOR DEVOLUTION TRANSITION PLAN BATANGAS PROVINCE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765275	2024-07-11	08:59:00.4169268	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 198 KWIKSET STREET\r\nAddress2: ST.PETER SUBDIVISION\r\nBarangay: ALANGILAN\r\nBasicInformationId: 0\r\nBirthDate: December 29, 1975\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: shiela.buenafe001@deped.gov.ph\r\nExtensionName: \r\nFirstName: SHIELA\r\nFullName: SHIELA L. BUENAFE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02002895916\r\nHDMF: 1490-0091-9598\r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0439844470\r\nLastName: BUENAFE\r\nMaidenName: \r\nMiddleName: LUISTRO\r\nMobileNumber: 09177282933\r\nNationality: Filipino\r\nPermanentAddress1: 198 KWIKSET STREET\r\nPermanentAddress2: ST.PETER SUBDIVISION\r\nPermanentBarangay: ALANGILAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000052028-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 72\r\nZipCode: 4200\r\n	admin	BasicInformation	1
765276	2024-07-11	08:59:00.7410603	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3686\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1981\r\nDateTo: 1988\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: HOLY CHILD SCHOOL \r\nYearGraduated: 1988\r\n	admin	EducationalBackgrounds	1
765277	2024-07-11	08:59:00.7460436	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3686\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1988\r\nDateTo: 1992\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: ST. BRIDGET'S COLLEGE \r\nYearGraduated: 1992\r\n	admin	EducationalBackgrounds	1
765278	2024-07-11	08:59:00.7510269	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3686\r\nCourse: \r\nCourseId: 1343\r\nCourseOrMajor: \r\nDateFrom: 1992\r\nDateTo: 1996\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: LYCEUM OF BATANGAS \r\nYearGraduated: 1996\r\n	admin	EducationalBackgrounds	1
765279	2024-07-11	08:59:00.7560103	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3686\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: SR\r\nFirstName: CELSO\r\nFullName: CELSO MANALO BUENAFE SR\r\nGender: Male\r\nLastName: BUENAFE\r\nMaidenName: \r\nMiddleName: MANALO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
765280	2024-07-11	08:59:00.7609940	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3686\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EDITHA\r\nFullName: EDITHA HERNANDEZ LUISTRO\r\nGender: Female\r\nLastName: LUISTRO\r\nMaidenName: \r\nMiddleName: HERNANDEZ\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
765281	2024-07-11	08:59:00.7669737	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3686\r\nEmployeeTrainingId: 0\r\nFromDate: August 23, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF HEALTH\r\nStatus: \r\nToDate: August 25, 2023\r\nTrainingId: 15931\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765282	2024-07-11	08:59:00.7719570	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3686\r\nEmployeeTrainingId: 0\r\nFromDate: October 25, 2022\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF HEALTH\r\nStatus: \r\nToDate: October 26, 2022\r\nTrainingId: 15933\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765348	2024-07-11	09:12:07.5349129	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SUPER SCHOOLS SERIES: BEST PRACTICES OF NAGA PAROCHIAL SCHOOL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765266	2024-07-11	08:48:58.8400806	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION GUIDELINES ON THE IMPLEMENTATION OF SCHOOL-BASED PROGRAMS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765271	2024-07-11	08:55:44.2937906	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: LEADERSHIP: PRACTICAL LEADERSHIP SKILLS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765273	2024-07-11	08:57:15.7334702	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EMERGENCY LIFE SUPPORT: FIRST AID TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765320	2024-07-11	08:59:23.6683491	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: POWER OF THE MIND IN HEALTH AND HEALING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765322	2024-07-11	09:02:19.7259103	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CANVA: DESIGN LOGOS, SOCIAL MEDIA CONTENT AND MORE WITH CANVA\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765323	2024-07-11	09:03:49.0771155	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: IELTS PREPERATION MASTERCLASS: A COMPLETE GUIDE TO THE IELTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765324	2024-07-11	09:05:12.5728010	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MICROSOFT EXCEL: EXCEL FROM BEGINNER TO ADVANCED\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765349	2024-07-11	09:12:47.3409763	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 1 LOT 19 PARCEL 2\r\nAddress2: MERCEDES HOMES\r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 0\r\nBirthDate: November 10, 1986\r\nBirthPlace: QUEZON CITY, METRO MANILA\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: redelinejoyce.cabatay@deped.gov.ph\r\nExtensionName: \r\nFirstName: REDELINE JOYCE\r\nFullName: REDELINE JOYCE L. CABATAY\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02004709081\r\nHDMF: 1490-0011-3584\r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CABATAY\r\nMaidenName: \r\nMiddleName: LAGMAN\r\nMobileNumber: 09778361949\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 1 LOT 19 PARCEL 2\r\nPermanentAddress2: MERCEDES HOMES\r\nPermanentBarangay: SOROSORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: MERCEDES AVENUE\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: MERCEDES AVENUE\r\nTIN: 254-738-078-0000\r\nWeight: 63\r\nZipCode: 4200\r\n	admin	BasicInformation	1
765350	2024-07-11	09:12:47.5564436	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: SOCIAL APOSTOLATE AWARD\r\nBasicInformationId: 3687\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1993\r\nDateTo: 1999\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: DIIVINE CHILD ACADEMY\r\nYearGraduated: 1999\r\n	admin	EducationalBackgrounds	1
765351	2024-07-11	09:12:47.5604436	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3687\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1999\r\nDateTo: 2003\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: MARIAN LEARNING CENTER AND SCIENCE HIGH SCHOOL\r\nYearGraduated: 2003\r\n	admin	EducationalBackgrounds	1
765352	2024-07-11	09:12:47.5654437	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3687\r\nCourse: \r\nCourseId: 1343\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: LYCEUM OF BATANGAS \r\nYearGraduated: 2007\r\n	admin	EducationalBackgrounds	1
765353	2024-07-11	09:12:47.5704436	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3687\r\nCourse: \r\nCourseId: 1344\r\nCourseOrMajor: \r\nDateFrom: 2010\r\nDateTo: 2011\r\nEducationalAttainment: 18 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: CITY OF LONDON BUSINESS COLLEGE \r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
765354	2024-07-11	09:12:47.5754438	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3687\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARIA JOSEFINA\r\nFullName: MARIA JOSEFINA ALVAREZ MARANAN\r\nGender: Female\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: ALVAREZ\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
765382	2024-07-11	09:13:08.7680760	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: GUIDING YOUNG LEARNERS TO ONLINE DISTANCE LEARNING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765283	2024-07-11	08:59:00.7769403	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3686\r\nEmployeeTrainingId: 0\r\nFromDate: August 16, 2022\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF HEALTH\r\nStatus: \r\nToDate: August 17, 2022\r\nTrainingId: 15936\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765284	2024-07-11	08:59:00.7819237	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3686\r\nEmployeeTrainingId: 0\r\nFromDate: May 12, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF HEALTH\r\nStatus: \r\nToDate: May 12, 2022\r\nTrainingId: 15937\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765285	2024-07-11	08:59:00.7869069	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3686\r\nCharacterReferenceId: 0\r\nCompanyAddress: KUMINTANG ILAYA, BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09778046804\r\nExtensionName: \r\nFirstName: BELINDA\r\nLastName: SABELLANO\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
765286	2024-07-11	08:59:00.7908936	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3686\r\nCharacterReferenceId: 0\r\nCompanyAddress: TIERRA VERDE SUBD., BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09684929508\r\nExtensionName: \r\nFirstName: MARIBEL \r\nLastName: MAGPANTAY\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
765287	2024-07-11	08:59:00.7948804	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3686\r\nCharacterReferenceId: 0\r\nCompanyAddress: NATIVIDAD ST., BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09192980703\r\nExtensionName: \r\nFirstName: JOEL \r\nLastName: PEREZ\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
765288	2024-07-11	08:59:00.7998636	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3686\r\nDateOfExamination: April 28, 1996\r\nDateOfRelease: December 29, 2024\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: April 28, 1996\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0297127\r\nPlaceOfExamination: MANILA\r\nRating: 78.4%\r\nTitle: NURSE LICENSURE EXAMINATION\r\n	admin	Eligibilities	1
765289	2024-07-11	08:59:00.8048469	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3686\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 42,694.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-8\r\nStatus: Permanent\r\nToDate: July 11, 2024\r\n	admin	Experiences	1
765290	2024-07-11	08:59:00.8098303	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3686\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: August 13, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 41,172.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-8\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
765291	2024-07-11	08:59:00.8138170	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3686\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 40,725.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-7\r\nStatus: Permanent\r\nToDate: August 12, 2022\r\n	admin	Experiences	1
765292	2024-07-11	08:59:00.8188003	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3686\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 35,915.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-7\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
765293	2024-07-11	08:59:00.8237837	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3686\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 34,393.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-7\r\nStatus: Permanent\r\nToDate: May 31, 2021\r\n	admin	Experiences	1
765294	2024-07-11	08:59:00.8287669	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3686\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 33,391.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-6\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
765332	2024-07-11	09:06:17.1358105	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: December 10, 2020\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: December 10, 2020\r\nTrainingId: 15927\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765295	2024-07-11	08:59:00.8337504	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3686\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 13, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 32,469.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-6\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
765296	2024-07-11	08:59:00.8387336	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3686\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 32,053.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-6\r\nStatus: Permanent\r\nToDate: August 12, 2019\r\n	admin	Experiences	1
765297	2024-07-11	08:59:00.8427203	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3686\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 30,799.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-6\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
765298	2024-07-11	08:59:00.8477036	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3686\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 29,214.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-6\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
765299	2024-07-11	08:59:00.8526869	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3686\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 13, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 27,712.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-6\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
765300	2024-07-11	08:59:00.8566737	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3686\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 27,401.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-6\r\nStatus: Permanent\r\nToDate: August 12, 2016\r\n	admin	Experiences	1
765301	2024-07-11	08:59:00.8616569	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3686\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 27,401.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-5\r\nStatus: Permanent\r\nToDate: August 12, 2016\r\n	admin	Experiences	1
765302	2024-07-11	08:59:00.8666403	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3686\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 14, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 26,000.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-5\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
765303	2024-07-11	08:59:00.8706270	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3686\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 25,718.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-4\r\nStatus: Permanent\r\nToDate: August 13, 2013\r\n	admin	Experiences	1
765304	2024-07-11	08:59:00.8756103	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3686\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 23,621.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-4\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
765305	2024-07-11	08:59:00.8805936	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3686\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 14, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 21,523.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-4\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
765306	2024-07-11	08:59:00.8845803	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3686\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 21,172.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-3\r\nStatus: Permanent\r\nToDate: August 13, 2010\r\n	admin	Experiences	1
765307	2024-07-11	08:59:00.8895635	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3686\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 19,040.00\r\nPositionHeld: PUBLIC HEALTH NURSE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-3\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
765308	2024-07-11	08:59:00.8945469	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3686\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: July 01, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 14,197.00\r\nPositionHeld: PUBLIC HEALTH NURSE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
765309	2024-07-11	08:59:00.8985336	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3686\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,906.00\r\nPositionHeld: PUBLIC HEALTH NURSE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
765310	2024-07-11	08:59:00.9035169	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3686\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 12,591.00\r\nPositionHeld: PUBLIC HEALTH NURSE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: December 31, 2007\r\n	admin	Experiences	1
765311	2024-07-11	08:59:00.9075037	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3686\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 11,446.00\r\nPositionHeld: DEPARTMENT OF EDUCATION PUBLIC HEALTH NURSE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
765312	2024-07-11	08:59:00.9124869	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3686\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 13, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 11,167.00\r\nPositionHeld: PUBLIC HEALTH NURSE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2004\r\n	admin	Experiences	1
765313	2024-07-11	08:59:00.9174704	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3686\r\nCompanyInstitution: MARY MEDIATRIX MEDICAL CENTER\r\nExperienceId: 0\r\nFromDate: May 17, 2001\r\nIsGovernmentService: False\r\nMonthlySalary: 6,000.00\r\nPositionHeld: STAFF NURSE\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: July 31, 2001\r\n	admin	Experiences	1
765314	2024-07-11	08:59:00.9224536	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3686\r\nCompanyInstitution: MARY MEDIATRIX MEDICAL NURSE \r\nExperienceId: 0\r\nFromDate: February 16, 2001\r\nIsGovernmentService: False\r\nMonthlySalary: 2,000.00\r\nPositionHeld: NURSE TRAINEE\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Temporary\r\nToDate: May 16, 2001\r\n	admin	Experiences	1
765315	2024-07-11	08:59:00.9264402	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3686\r\nCompanyInstitution: BATANGAS REGIONAL HOSPITAL \r\nExperienceId: 0\r\nFromDate: September 23, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 0.00\r\nPositionHeld: NURSE TRAINEE\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Volunteer\r\nToDate: April 11, 1997\r\n	admin	Experiences	1
765316	2024-07-11	08:59:00.9314235	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3686\r\nSkillId: 0\r\nSkillName: BAKING\r\n	admin	Skills	1
765317	2024-07-11	08:59:00.9364069	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3686\r\nSkillId: 0\r\nSkillName: PLAYING THE PIANO\r\n	admin	Skills	1
765318	2024-07-11	08:59:00.9413902	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3686\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY PUBLIC SCHOOLS TEACHERS AND EMPLOYEES ASSOCIATION\r\n	admin	Organizations	1
765319	2024-07-11	08:59:00.9463735	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3686\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: RESIGNATION\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
765393	2024-07-11	09:28:59.9367889	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MENTAL HEALTH AWARENESS SEMINAR\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765395	2024-07-11	09:31:21.8629564	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON THE DEVELOPMENT OF CONTEXTUALIZED TEACHING AND LEARNING RESOURCE PACKAGE FOR COMPREHENSIVE SEXUALITY EDUCATION FOR ALTERNATIVE LEARNING SYSTEM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765333	2024-07-11	09:06:17.1398110	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: December 08, 2020\r\nHours: 16\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: December 09, 2020\r\nTrainingId: 15928\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765334	2024-07-11	09:06:17.1448132	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: October 23, 2020\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: October 23, 2020\r\nTrainingId: 15929\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765335	2024-07-11	09:06:17.1488131	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: September 28, 2020\r\nHours: 20\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: October 02, 2020\r\nTrainingId: 15927\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765336	2024-07-11	09:06:17.1538134	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: October 27, 2020\r\nHours: 1\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: GABAY & PERKINS INTERNATIONAL, USA \r\nStatus: \r\nToDate: November 06, 2020\r\nTrainingId: 15930\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765337	2024-07-11	09:06:17.1583196	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: September 14, 2020\r\nHours: 40\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: September 18, 2020\r\nTrainingId: 15932\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765338	2024-07-11	09:06:17.1623193	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: August 11, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: JCI CABALLERO \r\nStatus: \r\nToDate: August 11, 2020\r\nTrainingId: 15935\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765339	2024-07-11	09:06:17.1673192	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: July 28, 2020\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: July 29, 2020\r\nTrainingId: 15364\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765340	2024-07-11	09:06:17.1713192	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: July 17, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: July 17, 2020\r\nTrainingId: 15938\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765341	2024-07-11	09:06:17.1753190	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: July 07, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DISTRICT II- BATANGAS CITY \r\nStatus: \r\nToDate: July 07, 2020\r\nTrainingId: 15940\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765342	2024-07-11	09:06:17.1803191	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: July 10, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - NEAP \r\nStatus: \r\nToDate: July 10, 2020\r\nTrainingId: 15942\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765343	2024-07-11	09:06:17.1843191	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: June 26, 2020\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: VIBAL GROUP \r\nStatus: \r\nToDate: June 26, 2020\r\nTrainingId: 15944\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765344	2024-07-11	09:06:17.1893191	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: January 30, 2020\r\nHours: 16\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: DEPD REGION IV-A-  CALABARZON \r\nStatus: \r\nToDate: January 31, 2020\r\nTrainingId: 15889\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765345	2024-07-11	09:06:17.1933190	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: August 26, 2021\r\nHours: 16\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: August 27, 2021\r\nTrainingId: 15948\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765346	2024-07-11	09:09:24.7977588	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DEACO GENERAL WEBINAR SERIES : NEW NORMAL LCP AND NEW DEVELOPMENT FOR TEACHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765347	2024-07-11	09:10:36.5042066	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EMPOWER STUDENT LEARNING WITH TEACHER CLARITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
772151	2025-03-18	16:15:39.8287975	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3822\r\nRecognitionId: 0\r\nRecognitionName: ISTAR INTERNATIONAL BEST DEMONSTRATION TEACHER\r\n	admin	Recognitions	1
765355	2024-07-11	09:12:47.5804439	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3687\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: REDENTOR\r\nFullName: REDENTOR VIRAY LAGMAN\r\nGender: Male\r\nLastName: LAGMAN\r\nMaidenName: \r\nMiddleName: VIRAY\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
765356	2024-07-11	09:12:47.5854437	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3687\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARIA JOSEFINA\r\nFullName: MARIA JOSEFINA ALVAREZ MARANAN\r\nGender: Female\r\nLastName: MARANAN\r\nMaidenName: \r\nMiddleName: ALVAREZ\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
765357	2024-07-11	09:12:47.5894436	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3687\r\nBirthDate: December 02, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: TINSLEY CASSIDY\r\nFullName: TINSLEY CASSIDY L CABATAY\r\nGender: Female\r\nLastName: CABATAY\r\nMaidenName: \r\nMiddleName: L\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
765358	2024-07-11	09:12:47.5944436	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3687\r\nBirthDate: October 22, 2018\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: NATE ZACHARY\r\nFullName: NATE ZACHARY L CABATAY\r\nGender: Male\r\nLastName: CABATAY\r\nMaidenName: \r\nMiddleName: L\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
765359	2024-07-11	09:12:47.5994436	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3687\r\nEmployeeTrainingId: 0\r\nFromDate: August 01, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: August 01, 2023\r\nTrainingId: 15934\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765360	2024-07-11	09:12:47.6044437	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3687\r\nEmployeeTrainingId: 0\r\nFromDate: April 20, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: April 20, 2023\r\nTrainingId: 15861\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765361	2024-07-11	09:12:47.6094443	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3687\r\nEmployeeTrainingId: 0\r\nFromDate: February 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: February 22, 2023\r\nTrainingId: 15153\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765362	2024-07-11	09:12:47.6144439	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3687\r\nEmployeeTrainingId: 0\r\nFromDate: February 20, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: February 20, 2023\r\nTrainingId: 15114\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765363	2024-07-11	09:12:47.6204437	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3687\r\nEmployeeTrainingId: 0\r\nFromDate: August 16, 2022\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: August 17, 2022\r\nTrainingId: 15900\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765364	2024-07-11	09:12:47.6254436	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3687\r\nEmployeeTrainingId: 0\r\nFromDate: July 20, 2022\r\nHours: 3\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 20, 2022\r\nTrainingId: 15939\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765365	2024-07-11	09:12:47.6304438	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3687\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 15, 2022\r\nTrainingId: 15941\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765366	2024-07-11	09:12:47.6354436	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3687\r\nEmployeeTrainingId: 0\r\nFromDate: July 13, 2022\r\nHours: 6\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 13, 2022\r\nTrainingId: 15943\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765367	2024-07-11	09:12:47.6404437	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3687\r\nEmployeeTrainingId: 0\r\nFromDate: July 12, 2022\r\nHours: 5\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 12, 2022\r\nTrainingId: 15288\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765368	2024-07-11	09:12:47.6454437	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3687\r\nEmployeeTrainingId: 0\r\nFromDate: July 11, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 11, 2022\r\nTrainingId: 15945\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772152	2025-03-18	16:15:39.8337569	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3822\r\nRecognitionId: 0\r\nRecognitionName: CARMEL SCHOOL OF BATANGAS SERVICE AWARD\r\n	admin	Recognitions	1
765369	2024-07-11	09:12:47.6504437	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3687\r\nEmployeeTrainingId: 0\r\nFromDate: July 08, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 07, 2022\r\nTrainingId: 15946\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765370	2024-07-11	09:12:47.6544436	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3687\r\nEmployeeTrainingId: 0\r\nFromDate: July 04, 2022\r\nHours: 10\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 04, 2022\r\nTrainingId: 15947\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765371	2024-07-11	09:12:47.6604436	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3687\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175017184\r\nExtensionName: \r\nFirstName: MIKKO PAOLO\r\nLastName: PEREZ\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
765372	2024-07-11	09:12:47.6644437	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3687\r\nCharacterReferenceId: 0\r\nCompanyAddress: BAUAN, BATANGAS\r\nCompanyName: \r\nContactNumber: 0939665149\r\nExtensionName: \r\nFirstName: MADONNA\r\nLastName: ABRUGENA\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
765373	2024-07-11	09:12:47.6694435	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3687\r\nDateOfExamination: January 06, 2007\r\nDateOfRelease: July 16, 1905\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: January 06, 2007\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0446612\r\nPlaceOfExamination: LUCENA CITY \r\nRating: 78.4\r\nTitle: LICENSED PROFESSIONAL NURSE\r\n	admin	Eligibilities	1
765374	2024-07-11	09:12:47.6744437	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3687\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: September 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 40,509.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-\r\nStatus: Permanent\r\nToDate: July 11, 2024\r\n	admin	Experiences	1
765375	2024-07-11	09:12:47.6784436	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3687\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: June 01, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 13,378.00\r\nPositionHeld: ADMINISTRATIVE AIDE VI\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 6-\r\nStatus: Permanent\r\nToDate: August 31, 2015\r\n	admin	Experiences	1
765376	2024-07-11	09:12:47.6844435	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3687\r\nCompanyInstitution: LIPA MEDIX MEDICAL CENTER \r\nExperienceId: 0\r\nFromDate: October 05, 2012\r\nIsGovernmentService: False\r\nMonthlySalary: 12,000.00\r\nPositionHeld: NEOTAL WARD NURSE\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: April 08, 2013\r\n	admin	Experiences	1
765377	2024-07-11	09:12:47.6884435	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3687\r\nCompanyInstitution: BEIS PINCHOS & FRADEL LODGE AGUDAS ISRAEL HOUSING ASSOCIATION\r\nExperienceId: 0\r\nFromDate: March 08, 2010\r\nIsGovernmentService: False\r\nMonthlySalary: 140,000.00\r\nPositionHeld: HEALTH CARE ASSISTANT \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: January 04, 2012\r\n	admin	Experiences	1
765378	2024-07-11	09:12:47.6934436	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3687\r\nCompanyInstitution: LIPA MEDIX MEDICAL CENTER\r\nExperienceId: 0\r\nFromDate: September 08, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 9,000.00\r\nPositionHeld: NEONATAL INTENSIVE CARE UNIT NURSE\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: December 08, 2024\r\n	admin	Experiences	1
765379	2024-07-11	09:12:47.6984437	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3687\r\nCompanyInstitution: LIPA MEDIX MEDICAL CENTER\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: False\r\nMonthlySalary: 0.00\r\nPositionHeld: VOLUNTEER NURSE\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Volunteer\r\nToDate: August 01, 2007\r\n	admin	Experiences	1
765380	2024-07-11	09:12:47.7034436	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3687\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CROWN LIONS CLUB\r\n	admin	Organizations	1
765381	2024-07-11	09:12:47.7085162	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3687\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: RESIGNATION\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
765400	2024-07-11	09:36:59.7773311	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: ASSOCIATE IN BUSINESS MANAGEMENT\r\nLevel: College\r\n	admin	Courses	1
765383	2024-07-11	09:15:01.1113961	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ENGAGAGING THE LEARNERS OF TODAY, THEIR WAY : MOTIVATION AND APPLICATIONS OF GAMEFUL LEARNING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765384	2024-07-11	09:16:57.7484612	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SUPER SCHOOLS SERIES : BEST PRACTICES OF SHEKINAH LEARNING SCHOOL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765385	2024-07-11	09:18:12.9978908	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EMPOWERING THE FAMILY TO MAKE THE SCHOOL COME TO LIFE IN EVERY HOME\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765386	2024-07-11	09:20:48.8890109	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SUPER SCHOOL SERIES: BEST PRACTICES OF SCUOLA DEL BAMBINI DI STA. TERESITA, INTERNATIONAL MONTESSORI,INC\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765387	2024-07-11	09:22:28.9852248	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SUPER SCHOOLS SERIES: BEST PRACTICES OF ST. MARU'S SCHOOL OF CAGAYAN DE ORO, INC.\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765388	2024-07-11	09:23:34.4781635	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIGITAL TOOLS AND TECHNIQUES IN THE NEW NORMAL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765389	2024-07-11	09:24:58.9102321	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: HARNESSING ADAPTIVE LEADERSHIP IN TIMES OF CRISIS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765390	2024-07-11	09:25:58.9770208	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORGANIZATION DEVELOPMENT IN THE NEW NORMAL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765391	2024-07-11	09:27:42.6338437	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: A JOURNEY TO GROWTH MINDSET FOR SUCCESS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765392	2024-07-11	09:29:06.4969577	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: GLOBALISASYON AT ANG NEW NORMAL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765394	2024-07-11	09:30:46.4858409	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PAGLIKHA NG MGA PINALATUNTUNANG KAGAMITANG PANTURO TUNGO SA SARILING PAGKATUTO NG MGA MAG-AARAL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765396	2024-07-11	09:32:07.1863797	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CONDUCTING ONLINE CLASS 101: WHAT TO KNOW AND HOW TO DO IT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765398	2024-07-11	09:34:27.8003469	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PARENTS AS TEACHERS , TEACHERS AS COACHES, AND SCHOOLS AS INNOVATION AS INNOVATION LABS: EDUCATION IN THE NEW NORMAL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765399	2024-07-11	09:35:41.8520886	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ENHANCING THE USE OF VIDEOS FOR ONLINE INSTRUCTION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765401	2024-07-11	09:37:54.1717765	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INSTRUCTIONAL TRANSITION PROCESS: MIGRATING F2F PRACTICE TO REMOTE LEARNING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765402	2024-07-11	09:39:10.3825352	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MAXIMIZING THE MELCS ( MOST ESSENTIAL LEARNING COMPETENCIES)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765404	2024-07-11	09:40:27.4996447	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MODULAR DISTANCE LEARNING: A KEY IN DEVELOPING LEARNERS' AUTONOMY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765405	2024-07-11	09:41:00.1424780	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: June 26, 2020\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: June 26, 2020\r\nTrainingId: 15949\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765475	2024-07-11	10:04:01.8934124	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TEACH WITH QUIPPER IN THE NEW NORMAL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765397	2024-07-11	09:33:15.9773136	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WRITESHOP ON THE DEVELOPMENT OF CONTEXTUALIZED TEACHING AND LEARNING RESOURCE PACKAGE FOR COMPREHENSIVE SEXUALITY EDUCATION FOR ALTERNATIVE LEARNING SYSTEM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765403	2024-07-11	09:39:02.6073136	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON THE DEVELOPMENT OF POSITIVE LEARNING ACTION CELL (LAC) SESSION GUIDES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765429	2024-07-11	09:48:16.1128125	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WRITESHOP FOR THE DEVELOPMENT OF TRAINING SESSION GUIDE SKILL BUILDING ON ADDRESSING CHILD LABOR ISSUES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765432	2024-07-11	09:51:37.3129971	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION WORKSHOP ON THE DEVELOPMENT OF PROGRAM DESIGN AND LEARNING PACKAGE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765434	2024-07-11	09:52:45.1048111	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REFINEMENT OF SHS SUPPLEMENTARY LEARNING MATERIALS ON SELECTED LEARNING AREAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765436	2024-07-11	09:54:36.9126063	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DEVELOPMENT OF SHS SUPPLEMENTARY LEARNING MATERIALS ON SELECTED LEARNING AREA\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765443	2024-07-11	10:03:44.1631596	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: ALANGILAN\r\nBasicInformationId: 0\r\nBirthDate: May 03, 1972\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mariahvinnah.delgado@deped.gov\r\nExtensionName: \r\nFirstName: MARIA VINNAH\r\nFullName: MARIA VINNAH C. DELGADO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: 1210-5062-5806\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DELGADO\r\nMaidenName: \r\nMiddleName: CULLA\r\nMobileNumber: 09683099125\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: ALANGILAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: NATIONAL HIGHWAY\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000023138-9\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: NATIONAL HIGHWAY\r\nTIN: 150-051-389-0000\r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
765444	2024-07-11	10:03:44.3904980	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3688\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1978\r\nDateTo: 1984\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: ALANGILAN ELEMENTARY SCHOOL\r\nYearGraduated: 1984\r\n	admin	EducationalBackgrounds	1
765445	2024-07-11	10:03:44.3954811	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3688\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1984\r\nDateTo: 1988\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1988\r\n	admin	EducationalBackgrounds	1
765446	2024-07-11	10:03:44.3994679	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3688\r\nCourse: \r\nCourseId: 1318\r\nCourseOrMajor: \r\nDateFrom: 1988\r\nDateTo: 1992\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: ST. BRIDGET'S COLLEGE\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
765447	2024-07-11	10:03:44.4044511	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3688\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2014\r\nDateTo: 2015\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2015\r\n	admin	EducationalBackgrounds	1
765448	2024-07-11	10:03:44.4084376	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3688\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO - BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15178\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765449	2024-07-11	10:03:44.4134208	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3688\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO - BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15045\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772153	2025-03-18	16:15:39.8387555	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3822\r\nRecognitionId: 0\r\nRecognitionName: BATANGAS CITY PRIVATE SCHOOLS SERVICE AWARDEE\r\n	admin	Recognitions	1
765406	2024-07-11	09:41:00.1474784	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: June 25, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: VIBAL GROUP \r\nStatus: \r\nToDate: June 25, 2020\r\nTrainingId: 15950\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765407	2024-07-11	09:41:00.1514782	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: June 24, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: VIBAL GROUP\r\nStatus: \r\nToDate: June 24, 2020\r\nTrainingId: 15951\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765408	2024-07-11	09:41:00.1574820	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: June 23, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: VIBAL GROUP\r\nStatus: \r\nToDate: June 23, 2020\r\nTrainingId: 15952\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765409	2024-07-11	09:41:00.1614813	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: June 23, 2020\r\nHours: 1\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: REX ACADEMY \r\nStatus: \r\nToDate: June 23, 2020\r\nTrainingId: 15953\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765410	2024-07-11	09:41:00.1654809	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: June 22, 2020\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: VIBAL GROUP\r\nStatus: \r\nToDate: June 22, 2020\r\nTrainingId: 15954\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765411	2024-07-11	09:41:00.1704792	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: June 19, 2020\r\nHours: 1\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: ABIVA PUBLISHING HOUSE, INC.\r\nStatus: \r\nToDate: June 19, 2020\r\nTrainingId: 15955\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765412	2024-07-11	09:41:00.1754812	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: June 15, 2020\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: VIBAL GROUP\r\nStatus: \r\nToDate: June 15, 2020\r\nTrainingId: 15956\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765413	2024-07-11	09:41:00.1804813	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: June 18, 2020\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: VIBAL GROUP\r\nStatus: \r\nToDate: June 18, 2020\r\nTrainingId: 15957\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765414	2024-07-11	09:41:00.1844815	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: June 12, 2020\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: VIBAL GROUP\r\nStatus: \r\nToDate: June 12, 2020\r\nTrainingId: 15958\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765415	2024-07-11	09:41:00.1894817	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: June 12, 2020\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: VIBAL GROUP\r\nStatus: \r\nToDate: June 12, 2020\r\nTrainingId: 15959\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765416	2024-07-11	09:41:00.1934808	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: June 10, 2020\r\nHours: 4\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: CAREER EXECUTIVE SERVICE BOARD \r\nStatus: \r\nToDate: June 10, 2020\r\nTrainingId: 15960\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765417	2024-07-11	09:41:00.1984809	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: June 10, 2020\r\nHours: 4\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: REX ACADEMY\r\nStatus: \r\nToDate: June 10, 2020\r\nTrainingId: 15961\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765418	2024-07-11	09:41:00.2024788	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: June 08, 2020\r\nHours: 4\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: VIBAL GROUP\r\nStatus: \r\nToDate: June 08, 2020\r\nTrainingId: 15962\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765419	2024-07-11	09:41:00.2074807	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: June 08, 2020\r\nHours: 4\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: VIBAL GROUP\r\nStatus: \r\nToDate: June 08, 2020\r\nTrainingId: 15964\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765420	2024-07-11	09:41:00.2124848	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: June 08, 2020\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: ABIVA PUBLISHING HOUSE, INC.\r\nStatus: \r\nToDate: June 08, 2020\r\nTrainingId: 15966\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765421	2024-07-11	09:41:00.2174851	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: June 05, 2020\r\nHours: 4\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: VIBAL GROUP\r\nStatus: \r\nToDate: June 05, 2020\r\nTrainingId: 15968\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765422	2024-07-11	09:41:00.2214843	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: June 05, 2020\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: ABIVA PUBLISHING HOUSE,INC.\r\nStatus: \r\nToDate: June 05, 2020\r\nTrainingId: 15969\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765423	2024-07-11	09:41:00.2259892	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: June 04, 2020\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: ABIVA PUBLISHING HOUSE,INC.\r\nStatus: \r\nToDate: June 04, 2020\r\nTrainingId: 15970\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765424	2024-07-11	09:41:00.2309926	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: June 03, 2020\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: ABIVA PUBLISHING HOUSE,INC.\r\nStatus: \r\nToDate: June 03, 2020\r\nTrainingId: 15971\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765425	2024-07-11	09:41:00.2349918	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: June 02, 2020\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: VIVAL GROUP\r\nStatus: \r\nToDate: June 02, 2020\r\nTrainingId: 15973\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765426	2024-07-11	09:44:10.0360131	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RIZAL ON LOCKDOWN: SOURCES SA PAGTUTURO NG ARALING PANLIPUNAN, KASAYSAYAN\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765427	2024-07-11	09:46:15.8616475	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: OFFLINE LEARNING OPPOTUNITIES: IMPLEMENTING MODULAR APPROACH IN THE CURRENT EDUCATIONS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765428	2024-07-11	09:48:01.1489514	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MERGING LEARNING COMPETENCIES AND PRACTICES TO FACILITATE THE SHIFT TO THE NEW NORMAL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765430	2024-07-11	09:49:18.4978620	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ADDRESSING THE CHALLENGES IN LEADING THE SCHOOL TO ONLINE TEACHING AND LEARNING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765431	2024-07-11	09:50:37.0941797	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ADDRESSING THE CHALLENGES IN DELIVERING REMOTE LEARNING FOR OFFLINE LEARNERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765433	2024-07-11	09:52:52.9820942	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CONTEXTUALIZED LEARNING DELIVERY MODALITIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765435	2024-07-11	09:54:38.4217900	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SHIFTING ON ONLINE LEARNING: THE EFFECTS ON STUDENT'S AND TEACHERS MENTAL HEALTH\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765437	2024-07-11	09:56:00.8014451	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: HORIZONTAL INTEGRATION OF SUBJECTS AREA COMPETENCIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765438	2024-07-11	09:57:09.6334718	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ONCE UPON A TIME : A DISCUSSION ON CHILDREN'S LITERATURE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765439	2024-07-11	09:58:51.5774172	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ALIGNMENT OF DIFFERENT LEARNING TASKS TO MOST ESSENTIAL LEARNING COMPETENCY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765440	2024-07-11	10:00:01.7498444	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DEPED: MAKING LEARNING HAPPEN DURING COVID 19 EMERGENCY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765441	2024-07-11	10:01:40.2923737	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BACK TO NORMAL: POST- PANDEMIC REALIGNMENT OF LEARNERS' PREDISPOSITION TO LEARNING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765442	2024-07-11	10:02:57.2339221	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PRIORITIZING CURRICULAR CONCERNS: PUSHING THE BOUNDARIES OF THE NEW NORMAL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765450	2024-07-11	10:03:44.4184044	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3688\r\nEmployeeTrainingId: 0\r\nFromDate: August 18, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO - BATANGAS CITY\r\nStatus: \r\nToDate: August 18, 2023\r\nTrainingId: 15963\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765451	2024-07-11	10:03:44.4223909	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3688\r\nEmployeeTrainingId: 0\r\nFromDate: July 25, 2023\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED CENTRAL OFFICE \r\nStatus: \r\nToDate: July 25, 2023\r\nTrainingId: 15967\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765452	2024-07-11	10:03:44.4273751	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3688\r\nEmployeeTrainingId: 0\r\nFromDate: October 17, 2022\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED CENTRAL OFFICE\r\nStatus: \r\nToDate: October 21, 2022\r\nTrainingId: 15965\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765453	2024-07-11	10:03:44.4313608	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3688\r\nEmployeeTrainingId: 0\r\nFromDate: June 20, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: TECHNICAL\r\nStatus: \r\nToDate: June 22, 2023\r\nTrainingId: 15977\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765454	2024-07-11	10:03:44.4363441	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3688\r\nEmployeeTrainingId: 0\r\nFromDate: August 17, 2022\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED CENTRAL OFFICE\r\nStatus: \r\nToDate: October 21, 2022\r\nTrainingId: 15972\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765455	2024-07-11	10:03:44.4413277	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3688\r\nEmployeeTrainingId: 0\r\nFromDate: May 04, 2022\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO - BATANGAS CITY\r\nStatus: \r\nToDate: May 26, 2022\r\nTrainingId: 15703\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765456	2024-07-11	10:03:44.4463109	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3688\r\nEmployeeTrainingId: 0\r\nFromDate: May 04, 2020\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED CENTRAL OFFICE\r\nStatus: \r\nToDate: May 08, 2020\r\nTrainingId: 15982\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765457	2024-07-11	10:03:44.4502975	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3688\r\nEmployeeTrainingId: 0\r\nFromDate: April 27, 2020\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED CENTRAL OFFICE\r\nStatus: \r\nToDate: April 30, 2020\r\nTrainingId: 15984\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765458	2024-07-11	10:03:44.4552810	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3688\r\nCharacterReferenceId: 0\r\nCompanyAddress: BARCENAGA, CALAPAN CITY \r\nCompanyName: \r\nContactNumber: 09175620432\r\nExtensionName: \r\nFirstName: DONATO\r\nLastName: BUENO\r\nMiddleName: G\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
765459	2024-07-11	10:03:44.4592675	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3688\r\nCharacterReferenceId: 0\r\nCompanyAddress: SDO- BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09083549822\r\nExtensionName: \r\nFirstName: PONCIANA\r\nLastName: AREVALO \r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
765460	2024-07-11	10:03:44.4642510	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3688\r\nCharacterReferenceId: 0\r\nCompanyAddress: SDO-BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09017516928\r\nExtensionName: \r\nFirstName: MAGIELYN \r\nLastName: BABAO\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
765461	2024-07-11	10:03:44.4692342	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3688\r\nDateOfExamination: October 25, 1992\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: October 25, 1992\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 84.1\r\nTitle: CAREER SERVICE PROFESSIONAL EXAM\r\n	admin	Eligibilities	1
765462	2024-07-11	10:03:44.4742177	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3688\r\nDateOfExamination: July 26, 1992\r\nDateOfRelease: June 03, 2024\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: July 26, 1992\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0453371\r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 77\r\nTitle: PHILIPPINE BOARD EXAM FOR TEACHERS\r\n	admin	Eligibilities	1
765476	2024-07-11	10:05:39.7900298	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TEACHERS' RESPONSE AND ACTION TO CHALLENGE IN DISTANCE TEACHING AND LEARNING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765463	2024-07-11	10:03:44.4782043	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3688\r\nCompanyInstitution: SGOD - SDO BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: August 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 40,800.00\r\nPositionHeld: EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-\r\nStatus: Permanent\r\nToDate: July 11, 2024\r\n	admin	Experiences	1
765464	2024-07-11	10:03:44.4821908	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3688\r\nCompanyInstitution: ALANGILAN SENIOR HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: June 13, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,000.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: July 31, 2018\r\n	admin	Experiences	1
765465	2024-07-11	10:03:44.4871741	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3688\r\nCompanyInstitution: BATANGAS NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: June 13, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 10,000.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: May 31, 2016\r\n	admin	Experiences	1
765466	2024-07-11	10:03:44.4921575	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3688\r\nCompanyInstitution: ST. BRIDGET'S COLLEGE\r\nExperienceId: 0\r\nFromDate: January 08, 1992\r\nIsGovernmentService: False\r\nMonthlySalary: 8,000.00\r\nPositionHeld: CLASSROOM TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: January 06, 1997\r\n	admin	Experiences	1
765467	2024-07-11	10:03:44.4961441	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3688\r\nSkillId: 0\r\nSkillName: EVENT MANAGEMENT \r\n	admin	Skills	1
765468	2024-07-11	10:03:44.5011276	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3688\r\nSkillId: 0\r\nSkillName: EMCEEING/ HOSTING\r\n	admin	Skills	1
765469	2024-07-11	10:03:44.5061108	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3688\r\nSkillId: 0\r\nSkillName: TRAINER- ORATION ETC\r\n	admin	Skills	1
765470	2024-07-11	10:03:44.5100974	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3688\r\nSkillId: 0\r\nSkillName: SCHOOL PAPER ADVISER\r\n	admin	Skills	1
765471	2024-07-11	10:03:44.5150807	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3688\r\nRecognitionId: 0\r\nRecognitionName: MERITORIOUS AWARDEE\r\n	admin	Recognitions	1
765472	2024-07-11	10:03:44.5200641	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3688\r\nOrganizationId: 0\r\nOrganizationName: PHIL. FOLKDANCE SOCIETY\r\n	admin	Organizations	1
765473	2024-07-11	10:03:44.5250477	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3688\r\nOrganizationId: 0\r\nOrganizationName: WORLD APOSTOLATE OF FATIMA \r\n	admin	Organizations	1
765474	2024-07-11	10:03:44.5290340	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3688\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: Yes\r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
765514	2024-07-11	10:28:46.6486823	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK. 14, LOT 17\r\nAddress2: PARCEL 1, MERCEDES HOMES SUBDIVISION\r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 0\r\nBirthDate: September 16, 1981\r\nBirthPlace: STO.NIÑO BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: meniano.ebora@deped.gov.ph\r\nExtensionName: \r\nFirstName: MENIANO\r\nFullName: MENIANO DT. EBORA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.7\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: DE TORRES\r\nMobileNumber: 09186704877\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STO.NIÑO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LEGASPI ST.\r\nTIN: \r\nWeight: 66\r\nZipCode: 4200\r\n	admin	BasicInformation	1
765515	2024-07-11	10:28:46.6673305	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3689\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1988\r\nDateTo: 1993\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: STO. NIÑO ELEMENTARY SCHOOL \r\nYearGraduated: 1993\r\n	admin	EducationalBackgrounds	1
765516	2024-07-11	10:28:46.6673305	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3689\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 2001\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: STO. NIÑO NATIONAL HIGH SCHOOL \r\nYearGraduated: 2001\r\n	admin	EducationalBackgrounds	1
765577	2024-07-11	10:37:27.4986664	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WEBINAR ON THE IPCRF DATA COLLECTION SYSTEM FOR SY 2019-2020 (IPCRF E-TOOL)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765478	2024-07-11	10:08:28.0673204	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TEACHER AND PARENT PARTNERSHIP: BUILDING THE FUTURE OF THE NEW NOW IN EDUCATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765479	2024-07-11	10:09:40.3026287	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INSIGHTS INTO THE NEW NORMAL OF LEARNING BY DOING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765480	2024-07-11	10:11:03.7692810	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: THE HUMANIZING PEDAGOGIES: A TEACHING- LEARNING FRAMEWORK IN THE POST PANDEMIC TIME\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765481	2024-07-11	10:12:21.2704729	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EDUCATION IN THE NEW NORMAL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765483	2024-07-11	10:13:50.9151860	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: APRIL 30, 2020: DEVELOPING SELF- PACED- LEARNING THROUGH DIGITAL CONTENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765484	2024-07-11	10:14:34.0225283	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: June 02, 2020\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: VIBAL GROUP \r\nStatus: \r\nToDate: June 02, 2020\r\nTrainingId: 15974\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765485	2024-07-11	10:14:34.0275279	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: June 02, 2020\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: VIBAL GROUP \r\nStatus: \r\nToDate: June 02, 2020\r\nTrainingId: 15975\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765486	2024-07-11	10:14:34.0315279	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: May 29, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: VIBAL GROUP \r\nStatus: \r\nToDate: May 29, 2020\r\nTrainingId: 15976\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765487	2024-07-11	10:14:34.0365280	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: May 28, 2020\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: VIBAL GROUP \r\nStatus: \r\nToDate: May 28, 2020\r\nTrainingId: 15978\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765488	2024-07-11	10:14:34.0415282	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: May 28, 2020\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: VIBAL GROUP \r\nStatus: \r\nToDate: May 28, 2020\r\nTrainingId: 15979\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765489	2024-07-11	10:14:34.0465279	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: May 27, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: VIBAL GROUP \r\nStatus: \r\nToDate: May 27, 2020\r\nTrainingId: 15981\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765490	2024-07-11	10:14:34.0505279	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: May 26, 2020\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: VIBAL GROUP \r\nStatus: \r\nToDate: May 26, 2020\r\nTrainingId: 15983\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765491	2024-07-11	10:14:34.0555279	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: May 26, 2020\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: VIBAL GROUP \r\nStatus: \r\nToDate: May 26, 2020\r\nTrainingId: 15985\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765492	2024-07-11	10:14:34.0595279	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: May 25, 2020\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: VIBAL GROUP \r\nStatus: \r\nToDate: May 25, 2020\r\nTrainingId: 15986\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765493	2024-07-11	10:14:34.0645279	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: May 25, 2020\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: VIBAL GROUP \r\nStatus: \r\nToDate: May 25, 2020\r\nTrainingId: 15987\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765494	2024-07-11	10:14:34.0695281	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: May 22, 2020\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: VIBAL GROUP \r\nStatus: \r\nToDate: May 22, 2020\r\nTrainingId: 15988\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772154	2025-03-18	16:15:39.8437558	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3822\r\nRecognitionId: 0\r\nRecognitionName: BOY SCOUT OF THE PHILIPPINES BRONZE AWARD\r\n	admin	Recognitions	1
765482	2024-07-11	10:12:36.4026417	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DEPED 12 DAYS OF CHRISTAMS WITH THE TEAEM: MAKULAY AND PASKO NG PAMILYANG PILIPINO\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765505	2024-07-11	10:17:46.6109794	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 DIVISION LEADERSHIP TRAINING: "EMPOWERING STUDENT-LEADERS OF TODAY TOWARDS LEADERS OF TOMORROW" CUM OATH TAKING CEREMONY OF SCHOOLS CO-CURRICULAR ORGANIZATIONS OFFICERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765508	2024-07-11	10:21:05.9235184	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 WOMEN'S MONTH CELEBRATION WITH THE THEME WE FOR GENDER EQUALITY & INCLUSIVE SOCIETY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765510	2024-07-11	10:22:40.4324618	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION WORKSHOP ON LRCP M&E TOOL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765512	2024-07-11	10:25:33.0507589	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CASCADING ON FOUNDATIONAL COURSE ADOLESCENT HEALTH\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765537	2024-07-11	10:33:10.4844672	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO BAGONG POOK\r\nBarangay: SAN MIGUEL\r\nBasicInformationId: 0\r\nBirthDate: February 10, 1988\r\nBirthPlace: BATANGAS CITY\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jessa.dionaldo001@deped.gov.ph\r\nExtensionName: \r\nFirstName: JESSA\r\nFullName: JESSA F. DIONALDO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006270222\r\nHDMF: 1210-0580-4656\r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DIONALDO\r\nMaidenName: \r\nMiddleName: FATAL\r\nMobileNumber: 09351181382\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO BAGONG POOK\r\nPermanentBarangay: SAN MIGUEL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-052083637-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1940093-2\r\nStreetName: \r\nTIN: 295-075-076-0000\r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
765538	2024-07-11	10:33:10.7328615	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3690\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1995\r\nDateTo: 2001\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAN MIGUEL ELEMENTARY SCHOOL\r\nYearGraduated: 2001\r\n	admin	EducationalBackgrounds	1
765539	2024-07-11	10:33:10.7368615	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3690\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2005\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2005\r\n	admin	EducationalBackgrounds	1
765540	2024-07-11	10:33:10.7428613	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3690\r\nCourse: \r\nCourseId: 1345\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2007\r\nEducationalAttainment: 1ST YEAR COLLEGE\r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
765541	2024-07-11	10:33:10.7478613	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3690\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DONALD REY\r\nFullName: DONALD REY ARNOCO DIONALDO\r\nGender: Male\r\nLastName: DIONALDO\r\nMaidenName: \r\nMiddleName: ARNOCO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
765542	2024-07-11	10:33:10.7528615	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3690\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARIO\r\nFullName: MARIO ASI FATAL\r\nGender: Male\r\nLastName: FATAL\r\nMaidenName: \r\nMiddleName: ASI\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
765543	2024-07-11	10:33:10.7568616	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3690\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: QUINCIANA\r\nFullName: QUINCIANA ANDAL GUICO\r\nGender: Female\r\nLastName: GUICO\r\nMaidenName: \r\nMiddleName: ANDAL\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
765578	2024-07-11	10:39:20.9850880	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRANSITIONING TO THE NEW NORMAL IN SUPPORT TO LEARNING CONTINUITY PLAN\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765495	2024-07-11	10:14:34.0745281	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: May 21, 2020\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: VIBAL GROUP \r\nStatus: \r\nToDate: May 21, 2020\r\nTrainingId: 15989\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765496	2024-07-11	10:14:34.0785280	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: May 16, 2020\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: VIBAL GROUP \r\nStatus: \r\nToDate: May 16, 2020\r\nTrainingId: 15990\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765497	2024-07-11	10:14:34.0835279	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: May 14, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: QUIPPER PH& BOUNCE BACK PH\r\nStatus: \r\nToDate: May 14, 2020\r\nTrainingId: 15991\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765498	2024-07-11	10:14:34.0875280	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: May 13, 2020\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: VIBAL GROUP \r\nStatus: \r\nToDate: May 13, 2020\r\nTrainingId: 15992\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765499	2024-07-11	10:14:34.0925279	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: May 06, 2020\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: BOUNCE BACK PH MOVEMENT \r\nStatus: \r\nToDate: May 06, 2020\r\nTrainingId: 15993\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765500	2024-07-11	10:14:34.0975281	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: May 06, 2020\r\nHours: 4\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: VIBAL GROUP \r\nStatus: \r\nToDate: May 06, 2020\r\nTrainingId: 15994\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765501	2024-07-11	10:14:34.1015876	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: May 05, 2020\r\nHours: 4\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: VIBAL GROUP \r\nStatus: \r\nToDate: May 05, 2020\r\nTrainingId: 15995\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765502	2024-07-11	10:14:34.1066026	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: May 04, 2020\r\nHours: 4\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: VIBAL GROUP \r\nStatus: \r\nToDate: May 04, 2020\r\nTrainingId: 15996\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765503	2024-07-11	10:14:34.1116028	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: April 30, 2020\r\nHours: 4\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: BOUNCE BACK PH MOVEMENT \r\nStatus: \r\nToDate: April 30, 2020\r\nTrainingId: 15997\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765504	2024-07-11	10:14:34.1156023	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: April 30, 2020\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: VIBAL GROUP \r\nStatus: \r\nToDate: April 30, 2020\r\nTrainingId: 15999\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765506	2024-07-11	10:17:46.4893927	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTANCE LEARNING: ONLINE TEACHING TECHNIQUES AND APPROACHES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765507	2024-07-11	10:19:56.5503620	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TEACHING AND LEARNING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765509	2024-07-11	10:21:52.4816941	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FROM PHYSICAL TO VIRTUAL: THE SHIFT TO ONLINE TEACHING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765511	2024-07-11	10:24:31.1639797	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RAPID TRANSITIONING TO HYBRID EDUCATION IN THE" AGE OF COVID\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765513	2024-07-11	10:28:59.2292036	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION SEMINAR ON SYSTEMATIC TRAINING FOR EFFECTIVE PARENTING (STEP) UNDER THE NATIONAL DRUG EDUCATION PROGRAM (NDEP}\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765575	2024-07-11	10:35:53.7106881	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WEBINAR ON ICPRF DATA COLLECTION SYSTEM FOR SY 2019-2020 (ICPRF}E-TOOL)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766735	2024-07-12	13:30:05.7564339	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3699\r\nRecognitionId: 0\r\nRecognitionName: OUTSTANDING DEPED PROJECT ENGINEER, DECEMBER 2, 2008, 4TH NATIONAL CONVENTION OF PHYSICAL FACILITIES COORDINATORS AND DEPED PROJECT ENGINEERS\r\n	admin	Recognitions	1
765517	2024-07-11	10:28:46.6673305	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3689\r\nCourse: \r\nCourseId: 1270\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2005\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: ENGLISH\r\nSchoolorUniversity: UNIVERSITY OF BATANGAS \r\nYearGraduated: 2005\r\n	admin	EducationalBackgrounds	1
765518	2024-07-11	10:28:46.6673305	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3689\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2008\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: RIZAL COLLEGE OF TAAL \r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
765519	2024-07-11	10:28:46.6673305	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3689\r\nCourse: \r\nCourseId: 1338\r\nCourseOrMajor: \r\nDateFrom: 2011\r\nDateTo: 2015\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY \r\nYearGraduated: 2015\r\n	admin	EducationalBackgrounds	1
765520	2024-07-11	10:28:46.6683274	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3689\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09064697268\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JUANA\r\nFullName: JUANA ASI\r\nGender: Female\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: ASI\r\nOccupation: BEHAVIORAL THERAPIST \r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
765521	2024-07-11	10:28:46.6683274	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3689\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARCIANO\r\nFullName: MARCIANO CASTILLO EBORA\r\nGender: Male\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: CASTILLO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
765522	2024-07-11	10:28:46.6683274	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3689\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ILUMINADA\r\nFullName: ILUMINADA CLOSA DE TORRES\r\nGender: Female\r\nLastName: DE TORRES\r\nMaidenName: \r\nMiddleName: CLOSA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
765523	2024-07-11	10:28:46.6683274	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3689\r\nBirthDate: December 26, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LUCKY GEO\r\nFullName: LUCKY GEO A EBORA\r\nGender: Male\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: A\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
765524	2024-07-11	10:28:46.6683274	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3689\r\nBirthDate: January 01, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: AYESZA\r\nFullName: AYESZA FREIGN EBORA\r\nGender: Female\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: FREIGN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
765525	2024-07-11	10:28:46.6693240	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3689\r\nDateOfExamination: August 30, 2016\r\nDateOfRelease: September 16, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 30, 2016\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0933942\r\nPlaceOfExamination: LUCENA CITY \r\nRating: 75.00%\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS (LET)\r\n	admin	Eligibilities	1
765526	2024-07-11	10:28:46.6693240	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3689\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 20, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 51,357.00\r\nPositionHeld: SENIOR EDUCATION PROGRAM SPECIALIST \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: July 11, 2024\r\n	admin	Experiences	1
765527	2024-07-11	10:28:46.6693240	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3689\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 05, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 37,465.00\r\nPositionHeld: OIC- EDUCATION PROGRAM SUPERVISOR- ESP/HGP/CGP/ALS \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 2-\r\nStatus: Permanent\r\nToDate: June 30, 2021\r\n	admin	Experiences	1
765528	2024-07-11	10:28:46.6693240	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3689\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 34,000.00\r\nPositionHeld: OIC- EDUCATION PROGRAM SUPERVISOR- ENGLISH \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 2-\r\nStatus: Permanent\r\nToDate: September 25, 2019\r\n	admin	Experiences	1
772155	2025-03-18	16:15:39.8487546	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3822\r\nOrganizationId: 0\r\nOrganizationName: SCHOOL GOVERNING COUNCIL PRESIDENT\r\n	admin	Organizations	1
765529	2024-07-11	10:28:46.6693240	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3689\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: May 25, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 37,465.00\r\nPositionHeld: EDUCATION PROGRAM SPECIALIST II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 2-\r\nStatus: Permanent\r\nToDate: February 20, 2023\r\n	admin	Experiences	1
765530	2024-07-11	10:28:46.6693240	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3689\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 04, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 21,436.00\r\nPositionHeld: TEACHER III \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: May 24, 2015\r\n	admin	Experiences	1
765531	2024-07-11	10:28:46.6693240	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3689\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 19,940.00\r\nPositionHeld: TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: November 03, 2013\r\n	admin	Experiences	1
765532	2024-07-11	10:28:46.6693240	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3689\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 10, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 17,099.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: June 30, 2011\r\n	admin	Experiences	1
765533	2024-07-11	10:28:46.6703199	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3689\r\nCompanyInstitution: UNIVERSITY OF BATANGAS \r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 12,224.00\r\nPositionHeld: TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Probationary\r\nToDate: March 31, 2008\r\n	admin	Experiences	1
765534	2024-07-11	10:28:46.6703199	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3689\r\nCompanyInstitution: SAINT FRANCIS SCHOOL\r\nExperienceId: 0\r\nFromDate: June 06, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 7,770.00\r\nPositionHeld: TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Probationary\r\nToDate: March 31, 2007\r\n	admin	Experiences	1
765535	2024-07-11	10:28:46.6703199	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3689\r\nCompanyInstitution: REGIS BENEDICTINE ACADEMY \r\nExperienceId: 0\r\nFromDate: November 06, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 4,800.00\r\nPositionHeld: TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Probationary\r\nToDate: March 31, 2006\r\n	admin	Experiences	1
765536	2024-07-11	10:28:46.6703199	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3689\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
765576	2024-07-11	10:36:24.9597904	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: THREE- DAY TRAINING WORKSHOP ON THE UPDATING OF THE BATANGAS CITY COMPREHENSIVE DEVELOPMENT PLAN (CDP) CY 2019- CY 2025 AND LOCAL DEVELOPMENT INVESTMENT PLAN\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765579	2024-07-11	10:39:17.2796101	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PAFTE IV- A CALABARZON VIRTUAL ANNUAL TEACHERS AND EDUCATORS ' CONVENTION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765580	2024-07-11	10:41:12.9829402	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION GUIDELINES ON THE COUNSELING AND REFERRAL SYSTEM OF LEARNERS FOR SY 2020- 2021\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765582	2024-07-11	10:43:01.7114669	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON THE DEVELOPMENT OF PIVOT CURRICULUM MAPS FOR ALL LEARNING AREAS IN ALL KEY STAGES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765583	2024-07-11	10:45:03.2638704	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ACCREDITATION TRAINING FOR LIONS QUEST SKILLS FOR ADOLESCENCE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765585	2024-07-11	10:47:08.0071615	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ONLINE NATIONAL TRAINING OF MASTER TRAINERS ON THE DELIVERY OF ALS LIFE SKILLS SELF- DIRECTED MODULES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766736	2024-07-12	13:30:05.7614174	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3699\r\nOrganizationId: 0\r\nOrganizationName: PHILIPPINE INSTITURE OF CIVIL ENGINEERS, INC. (PIPE) OR. MINDORO CHAPTER RFID MEMBER NO. 09-88-661191\r\n	admin	Organizations	1
765544	2024-07-11	10:33:10.7628614	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3690\r\nBirthDate: August 26, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ARDLEIGH CODY\r\nFullName: ARDLEIGH CODY F DIONALDO\r\nGender: Male\r\nLastName: DIONALDO\r\nMaidenName: \r\nMiddleName: F\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
765545	2024-07-11	10:33:10.7668613	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3690\r\nBirthDate: September 27, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: STEPHEN ARDIE\r\nFullName: STEPHEN ARDIE F DIONALDO\r\nGender: Male\r\nLastName: DIONALDO\r\nMaidenName: \r\nMiddleName: F\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
765546	2024-07-11	10:33:10.7718613	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3690\r\nEmployeeTrainingId: 0\r\nFromDate: December 18, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: December 18, 2023\r\nTrainingId: 15998\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765547	2024-07-11	10:33:10.7768614	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3690\r\nEmployeeTrainingId: 0\r\nFromDate: September 08, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: September 08, 2023\r\nTrainingId: 15673\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765548	2024-07-11	10:33:10.7818613	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3690\r\nEmployeeTrainingId: 0\r\nFromDate: April 01, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: April 01, 2023\r\nTrainingId: 16000\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765549	2024-07-11	10:33:10.7858613	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3690\r\nEmployeeTrainingId: 0\r\nFromDate: March 13, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: March 17, 2023\r\nTrainingId: 16003\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765550	2024-07-11	10:33:10.7908616	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3690\r\nEmployeeTrainingId: 0\r\nFromDate: March 01, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: March 01, 2023\r\nTrainingId: 16005\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765551	2024-07-11	10:33:10.7958613	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3690\r\nEmployeeTrainingId: 0\r\nFromDate: December 14, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: December 14, 2022\r\nTrainingId: 15230\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765552	2024-07-11	10:33:10.8008614	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3690\r\nEmployeeTrainingId: 0\r\nFromDate: October 04, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: October 07, 2022\r\nTrainingId: 16007\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765553	2024-07-11	10:33:10.8058613	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3690\r\nEmployeeTrainingId: 0\r\nFromDate: September 29, 2022\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: September 03, 2022\r\nTrainingId: 15871\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765554	2024-07-11	10:33:10.8098613	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3690\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 0935174459\r\nExtensionName: \r\nFirstName: VICTORIA \r\nLastName: FABABIER\r\nMiddleName: G\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
765555	2024-07-11	10:33:10.8148615	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3690\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09759239814\r\nExtensionName: \r\nFirstName: MARCELO\r\nLastName: GUICO\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
765556	2024-07-11	10:33:10.8198614	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3690\r\nDateOfExamination: June 19, 2022\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 7\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: June 19, 2022\r\nLevelOfEligibility: First Level (Subprofessional)\r\nLicenseNumber: 177/760650\r\nPlaceOfExamination: BATANGAS STATE UNIVERSITY, BATANGAS CITY\r\nRating: 80.85\r\nTitle: CAREER SERVICE EXAMINATION- PEN AND PAPER TEST (SUBPROFESSIONAL)\r\n	admin	Eligibilities	1
765581	2024-07-11	10:41:30.0988012	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION ROLL-OUT OF DEPED ORDER NO.029, S. 2019\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
772156	2025-03-18	16:15:39.8542239	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3822\r\nOrganizationId: 0\r\nOrganizationName: CLIS ALUMNI ASSOCIATION\r\n	admin	Organizations	1
765557	2024-07-11	10:33:10.8248614	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3690\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: March 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 13,000.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: July 11, 2024\r\n	admin	Experiences	1
765558	2024-07-11	10:33:10.8298613	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3690\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 12,790.00\r\nPositionHeld: JOB ORDER OFFICE CLERK \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: February 28, 2023\r\n	admin	Experiences	1
765559	2024-07-11	10:33:10.8348615	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3690\r\nCompanyInstitution: ST. PETER D'ROCK SCHOOL\r\nExperienceId: 0\r\nFromDate: January 03, 2018\r\nIsGovernmentService: False\r\nMonthlySalary: 0.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: December 15, 2019\r\n	admin	Experiences	1
765560	2024-07-11	10:33:10.8388613	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3690\r\nCompanyInstitution: LIBJO CENTRAL, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: March 02, 2016\r\nIsGovernmentService: False\r\nMonthlySalary: 10,000.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: March 15, 2017\r\n	admin	Experiences	1
765561	2024-07-11	10:33:10.8438613	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3690\r\nCompanyInstitution: SM BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: April 14, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 10,000.00\r\nPositionHeld: CASHIER /CHECKER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: October 15, 2017\r\n	admin	Experiences	1
765562	2024-07-11	10:33:10.8489458	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3690\r\nCompanyInstitution: PSA BATANGAS PROVINCIAL OFFICE\r\nExperienceId: 0\r\nFromDate: January 11, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 6,000.00\r\nPositionHeld: INTERVIEWER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: February 04, 2016\r\n	admin	Experiences	1
765563	2024-07-11	10:33:10.8539450	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3690\r\nCompanyInstitution: PSA BATANGAS PROVINCIAL OFFICE\r\nExperienceId: 0\r\nFromDate: November 02, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 6,000.00\r\nPositionHeld: DATA ENCODER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: December 29, 2015\r\n	admin	Experiences	1
765564	2024-07-11	10:33:10.8589840	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3690\r\nCompanyInstitution: PSA BATANGAS PROVINCIAL OFFICE\r\nExperienceId: 0\r\nFromDate: August 10, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 8,000.00\r\nPositionHeld: TEAM SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: September 06, 2015\r\n	admin	Experiences	1
765565	2024-07-11	10:33:10.8639830	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3690\r\nCompanyInstitution: 24/7 SUPPORT SERVICES\r\nExperienceId: 0\r\nFromDate: March 23, 2015\r\nIsGovernmentService: False\r\nMonthlySalary: 6,000.00\r\nPositionHeld: NON-VOICE AGENT\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: July 31, 2015\r\n	admin	Experiences	1
765566	2024-07-11	10:33:10.8689830	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3690\r\nCompanyInstitution: PSA BATANGAS PROVINCIAL OFFICE\r\nExperienceId: 0\r\nFromDate: June 03, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 7,000.00\r\nPositionHeld: MANUAL PROCESSOR/EDITOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: September 15, 2013\r\n	admin	Experiences	1
765567	2024-07-11	10:33:10.8739853	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3690\r\nCompanyInstitution: PSA BATANGAS PROVINCIAL OFFICE\r\nExperienceId: 0\r\nFromDate: March 04, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 6,000.00\r\nPositionHeld: ENUMERATOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: May 17, 2013\r\n	admin	Experiences	1
765568	2024-07-11	10:33:10.8789861	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3690\r\nCompanyInstitution: PSA BATANGAS PROVINCIAL OFFICE\r\nExperienceId: 0\r\nFromDate: January 07, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 7,000.00\r\nPositionHeld: STATISTICAL RESEARCHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: February 15, 2013\r\n	admin	Experiences	1
765569	2024-07-11	10:33:10.8839862	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3690\r\nCompanyInstitution: PSA BATANGAS PROVINCIAL OFFICE\r\nExperienceId: 0\r\nFromDate: September 24, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 6,000.00\r\nPositionHeld: ENUMERATOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: December 14, 2012\r\n	admin	Experiences	1
765570	2024-07-11	10:33:10.8889853	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3690\r\nCompanyInstitution: PSA BATANGAS PROVINCIAL OFFICE\r\nExperienceId: 0\r\nFromDate: June 04, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 8,000.00\r\nPositionHeld: MAP DATA COLLECTOR (EN)\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: August 31, 2012\r\n	admin	Experiences	1
765571	2024-07-11	10:33:10.8939448	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3690\r\nCompanyInstitution: IBIDEN PHILIPPINES INC.\r\nExperienceId: 0\r\nFromDate: January 25, 2011\r\nIsGovernmentService: False\r\nMonthlySalary: 10,000.00\r\nPositionHeld: PRODUCTION OPERATOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: June 24, 2011\r\n	admin	Experiences	1
765572	2024-07-11	10:33:10.8989448	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3690\r\nCompanyInstitution: LAMCOR\r\nExperienceId: 0\r\nFromDate: April 19, 2010\r\nIsGovernmentService: False\r\nMonthlySalary: 8,000.00\r\nPositionHeld: PRODUCTION OPERATOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: September 04, 2010\r\n	admin	Experiences	1
765573	2024-07-11	10:33:10.9029450	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3690\r\nRecognitionId: 0\r\nRecognitionName: MERITORIOUS PERFORMANCE AWARD\r\n	admin	Recognitions	1
765574	2024-07-11	10:33:10.9079451	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3690\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
765628	2024-07-11	11:17:29.0821939	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: MAHACOT WEST\r\nBasicInformationId: 0\r\nBirthDate: June 04, 1989\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: janize.untalan@deped.gov.ph\r\nExtensionName: \r\nFirstName: JANIZE\r\nFullName: JANIZE M. UNTALAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: UNTALAN\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nMobileNumber: 09268518730\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: MAHACOT WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 78\r\nZipCode: 4200\r\n	admin	BasicInformation	1
765629	2024-07-11	11:17:29.0948115	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3691\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1995\r\nDateTo: 2001\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: ALANGILAN CENTRAL ELEMENTARY SCHOOL\r\nYearGraduated: 2001\r\n	admin	EducationalBackgrounds	1
765630	2024-07-11	11:17:29.0948115	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3691\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2005\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2005\r\n	admin	EducationalBackgrounds	1
765631	2024-07-11	11:17:29.0948115	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3691\r\nCourse: \r\nCourseId: 1343\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: LYCEUM OF THE PHILIPPINES UNIVERSITY- BATANGAS\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
765632	2024-07-11	11:17:29.0948115	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3691\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JUNE\r\nFullName: JUNE GUTIERREZ UNTALAN\r\nGender: Male\r\nLastName: UNTALAN\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: NURSE II\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
766737	2024-07-12	13:30:05.7664006	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3699\r\nOrganizationId: 0\r\nOrganizationName: CONTRUCTORS PERFORMANCE EVALUATORS (CPES) CPE ACCREDITATION NO. 2010-0717\r\n	admin	Organizations	1
765584	2024-07-11	10:45:42.0820088	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: HOME-BASED LEARNING UNWIRED: NO GADGETS , NO INTERNET\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765586	2024-07-11	10:48:33.3027331	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EARLY LANGUAGE LITERACY AND NUMERACY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765589	2024-07-11	10:51:56.1531841	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOLS LAC SESSION ON INTEGRATING HOTS IN CLASSROOM INSTRUCTION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765592	2024-07-11	10:56:58.9176220	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL-BASED CAPACITY BUILDING OF TEACHERS FOR THE NEW NORMAL IN EDUCATION: THE IPCRF DATA COLLECTION SYSTEM FOR SY 2019-2020 AND IDEA LESSON EXEMPLAR\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765594	2024-07-11	10:59:47.9263537	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2019 DIVISION DRRM CAMP (PSYCHOSOCIAL FIRST AID )\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765598	2024-07-11	11:05:17.3338196	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING - WORKSHOP ON ENHANCEMENT OF PEDAGOGICAL SKILLS IN TEACHING READING IN THE MOTHER TOUNGE, BRIDGING PROCESS OF GRADE 2 AND CRITICAL CONTENT OF GRADE 7\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765600	2024-07-11	11:06:54.6593527	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION PERFORMANCE REVIEW ON PROGRAMS AND PROJECT IMPLEMENTATION, PROVISION OF TECHNICAL ASSISTANCE AND PLANNING FOR SY 2020\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765603	2024-07-11	11:08:58.4898190	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON OMNIBUS RULES ON APPOINTMENT AND OTHER HUMAN RESOURCES ACTIONS ORA OHRA CUM RCCP MANUAL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765626	2024-07-11	11:10:46.2218266	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING WORKSHOP ON UPDATING LEARNERS AND SCHOOLS' PROFILE IN THE LEARNER INFORMATION SYSTEM FOR BOSY 2019 - 2020\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765627	2024-07-11	11:16:52.1893801	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2020 DIVISION LEARNING RESOURCE EXPO,\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765655	2024-07-11	11:20:05.4307387	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PUPILS AND TEACHERS' WELFARE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765656	2024-07-11	11:24:13.5988748	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION ORIENTATION ON IPCRF - RPMS DATA COLLECTION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765657	2024-07-11	11:28:51.1265527	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION SEMINAR ON STEP UNDER NDEP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765659	2024-07-11	11:32:28.1473401	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION KICK-OFF FOR OPLAN KALUSUGAN SA DEPED ONE HEALTH WEEK\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765671	2024-07-11	11:35:45.5704714	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SURVEY ON THE DRAFT OF PHILIPPINE PROFESSIONAL STANDARDS FOR SCHOOL HEADS AND SUPERVISORS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765672	2024-07-11	11:38:20.0879406	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING WORKSHOP ON GENDER AND DEVELOPMENT ( GAD ) RESEARCH, STATISTICS AND ANALYSIS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765673	2024-07-11	11:40:59.0668240	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ASSIMILATION AND ORIENTATION OF SBM AND UPHOLD E-SIP CUM SGC\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765692	2024-07-11	11:45:38.7065266	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RESEARCH ADVOCACY FOR COMMUNITY EMPOWERMEBT(RACE)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765693	2024-07-11	11:48:35.3312132	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: YEAR-END IPED PROGRAM REVIEW AND PLANNING CUM COMMUNITY ENGAGEMENT ACTIVITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765587	2024-07-11	10:48:47.4792444	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MAKING CLASSROOM WORK: INSTERNATIONAL TRAINING ON INNOVATIONS IN PEDAGOGY AND CLASSROOM LEADERSHIP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765588	2024-07-11	10:51:10.3596668	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL ORIENTATION ON THE ADOPTION OF BLENDED DELIVERY MODEL FOR TPD; ROLL- OUT OF THE ELLN DIGITAL FOR K TO 3 TEACHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765590	2024-07-11	10:53:34.2888868	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REVISION AND FINALIZATION OF THE ALS K TO 12 BASIC EDUCATION CURRICULUM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765591	2024-07-11	10:55:19.1923005	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL TRAINING OF TRAINERS ONN ALTERNATIVE LEARNING SYSTEM K TO 12 BASIC EDUCATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765593	2024-07-11	10:57:33.3722311	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING OF TRAINERS ON LIFE SKILLS CURRICULUM FOR MASTER TRAINERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765595	2024-07-11	10:59:43.6547803	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING OF TRAINERS ON LIFE SKILLS CURRICULUM FOR DEPED ALS IMPLEMENTERS OF LUZON\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765596	2024-07-11	11:01:15.6870667	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION ROLL- OUT ONJ PPST AND RPMS MANUAL FOR TEACHERS AND SCHOOL FUNDS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765597	2024-07-11	11:03:10.4866280	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING FOR EDUCATION PROGRAM SPECIALIST FOR ALS ON FUNDAMENTALS OF ALS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765599	2024-07-11	11:05:17.7345291	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WRITESHOP IN THE DEVELOPMENT OF NEW POLICIES AND REVISION OF EXISTING ALS POLICIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765601	2024-07-11	11:06:46.6144700	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WRITESHOP ON THE DEVELOPMENT OF NEW POLICIES AND REVISION OF EXISTING ALS POLICIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765602	2024-07-11	11:08:19.2539733	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPABILITY BUILDING WORKSHOP ON QUALITATIVE RESEARCH WRITING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765604	2024-07-11	11:09:23.7537844	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3689\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 24\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: BATANGAS CITY GOVERNMENT \r\nStatus: \r\nToDate: January 26, 2024\r\nTrainingId: 16010\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765605	2024-07-11	11:09:23.7587678	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3689\r\nEmployeeTrainingId: 0\r\nFromDate: May 13, 2021\r\nHours: 16\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: PAFTE REGION IV-A \r\nStatus: \r\nToDate: May 14, 2021\r\nTrainingId: 15825\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765606	2024-07-11	11:09:23.7637511	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3689\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2021\r\nHours: 2\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: March 30, 2021\r\nTrainingId: 16014\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765607	2024-07-11	11:09:23.7687345	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3689\r\nEmployeeTrainingId: 0\r\nFromDate: March 15, 2021\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION- REGION IV A \r\nStatus: \r\nToDate: March 19, 2021\r\nTrainingId: 16016\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765608	2024-07-11	11:09:23.7727210	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3689\r\nEmployeeTrainingId: 0\r\nFromDate: November 14, 2020\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: LIONS QUEST PHILIPPINES \r\nStatus: \r\nToDate: November 21, 2020\r\nTrainingId: 16017\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765609	2024-07-11	11:09:23.7777045	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3689\r\nEmployeeTrainingId: 0\r\nFromDate: August 18, 2020\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: August 20, 2020\r\nTrainingId: 16019\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765610	2024-07-11	11:09:23.7826877	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3689\r\nEmployeeTrainingId: 0\r\nFromDate: June 12, 2019\r\nHours: 36\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: ASIAN CENTER OF EDUCATION RESEARCH AND TRAINING FOR INNOVATION \r\nStatus: \r\nToDate: August 12, 2019\r\nTrainingId: 16021\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765611	2024-07-11	11:09:23.7876710	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3689\r\nEmployeeTrainingId: 0\r\nFromDate: August 12, 2019\r\nHours: 40\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: August 16, 2019\r\nTrainingId: 16022\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765612	2024-07-11	11:09:23.7916577	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3689\r\nEmployeeTrainingId: 0\r\nFromDate: May 14, 2019\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: ALS TASK FORCE, DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: May 18, 2019\r\nTrainingId: 16024\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765613	2024-07-11	11:09:23.7966410	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3689\r\nEmployeeTrainingId: 0\r\nFromDate: March 18, 2019\r\nHours: 72\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: ALS TASK FORCE, DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: March 27, 2019\r\nTrainingId: 16025\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765614	2024-07-11	11:09:23.8016244	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3689\r\nEmployeeTrainingId: 0\r\nFromDate: January 21, 2019\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: USAID EDUCATION DEVELOPMENT CENTER\r\nStatus: \r\nToDate: January 25, 2019\r\nTrainingId: 16027\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765615	2024-07-11	11:09:23.8056110	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3689\r\nEmployeeTrainingId: 0\r\nFromDate: September 10, 2018\r\nHours: 40\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: USAID EDUCATION DEVELOPMENT CENTER\r\nStatus: \r\nToDate: September 14, 2018\r\nTrainingId: 16029\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765616	2024-07-11	11:09:23.8105943	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3689\r\nEmployeeTrainingId: 0\r\nFromDate: July 20, 2018\r\nHours: 16\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: DEPED BATANGAS CITY \r\nStatus: \r\nToDate: July 21, 2018\r\nTrainingId: 16030\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765617	2024-07-11	11:09:23.8155777	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3689\r\nEmployeeTrainingId: 0\r\nFromDate: June 06, 2018\r\nHours: 16\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: DEPED- BUREAU OF LEARNING DELIVERY \r\nStatus: \r\nToDate: June 07, 2018\r\nTrainingId: 16031\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765618	2024-07-11	11:09:23.8205610	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3689\r\nEmployeeTrainingId: 0\r\nFromDate: March 20, 2018\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED- BUREAU OF LEARNING DELIVERY\r\nStatus: \r\nToDate: March 22, 2018\r\nTrainingId: 16035\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765619	2024-07-11	11:09:23.8255444	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3689\r\nEmployeeTrainingId: 0\r\nFromDate: January 30, 2018\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED REGION IV- A CALABARZON \r\nStatus: \r\nToDate: January 31, 2018\r\nTrainingId: 16036\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765620	2024-07-11	11:09:23.8305276	<Undetected>	Update	BasicInformationId: 3689\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09064697268\r\nEmployeeRelativeId: 3613\r\nExtensionName: \r\nFirstName: JUANA\r\nFullName: JUANA ASI\r\nGender: Female\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: ASI\r\nOccupation: BEHAVIORAL THERAPIST \r\nRelationship: Wife\r\n	BasicInformationId: 3689\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09064697268\r\nEmployeeRelativeId: 3613\r\nExtensionName: \r\nFirstName: JUANA\r\nFullName: JUANA EBORA\r\nGender: Female\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: ASI\r\nOccupation: BEHAVIORAL THERAPIST \r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
765621	2024-07-11	11:09:23.8345143	<Undetected>	Update	BasicInformationId: 3689\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3614\r\nExtensionName: \r\nFirstName: MARCIANO\r\nFullName: MARCIANO CASTILLO EBORA\r\nGender: Male\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: CASTILLO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3689\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3614\r\nExtensionName: \r\nFirstName: MARCIANO\r\nFullName: MARCIANO EBORA\r\nGender: Male\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: CASTILLO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
765622	2024-07-11	11:09:23.8394978	<Undetected>	Update	BasicInformationId: 3689\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3615\r\nExtensionName: \r\nFirstName: ILUMINADA\r\nFullName: ILUMINADA CLOSA DE TORRES\r\nGender: Female\r\nLastName: DE TORRES\r\nMaidenName: \r\nMiddleName: CLOSA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3689\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3615\r\nExtensionName: \r\nFirstName: ILUMINADA\r\nFullName: ILUMINADA DE TORRES\r\nGender: Female\r\nLastName: DE TORRES\r\nMaidenName: \r\nMiddleName: CLOSA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
765670	2024-07-11	11:34:14.1932618	<Undetected>	Update	BasicInformationId: 3691\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3488\r\n	BasicInformationId: 3691\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: FINISHED CONTRACT\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3488\r\n	admin	Questionnaires	1
765623	2024-07-11	11:09:23.8444810	<Undetected>	Update	BasicInformationId: 3689\r\nBirthDate: December 26, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3616\r\nExtensionName: \r\nFirstName: LUCKY GEO\r\nFullName: LUCKY GEO A EBORA\r\nGender: Male\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: A\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3689\r\nBirthDate: December 26, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3616\r\nExtensionName: \r\nFirstName: LUCKY GEO\r\nFullName: LUCKY GEO EBORA\r\nGender: Male\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: A\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
765624	2024-07-11	11:09:23.8494644	<Undetected>	Update	BasicInformationId: 3689\r\nBirthDate: January 01, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3617\r\nExtensionName: \r\nFirstName: AYESZA\r\nFullName: AYESZA FREIGN EBORA\r\nGender: Female\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: FREIGN\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3689\r\nBirthDate: January 01, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3617\r\nExtensionName: \r\nFirstName: AYESZA\r\nFullName: AYESZA EBORA\r\nGender: Female\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: FREIGN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
765625	2024-07-11	11:09:23.8534510	<Undetected>	Update	BasicInformationId: 3689\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3486\r\n	BasicInformationId: 3689\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3486\r\n	admin	Questionnaires	1
765638	2024-07-11	11:19:16.7432190	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3689\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE \r\n	admin	Skills	1
765639	2024-07-11	11:19:16.7501982	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3689\r\nSkillId: 0\r\nSkillName: GOOD COMMUNICATION SKILLS \r\n	admin	Skills	1
765640	2024-07-11	11:19:16.7541414	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3689\r\nSkillId: 0\r\nSkillName: MANAGERIAL & SUPERVISORY SKILLS\r\n	admin	Skills	1
765641	2024-07-11	11:19:16.7591247	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3689\r\nRecognitionId: 0\r\nRecognitionName: MOST PUNCTUAL EMPLOYEE AWARD \r\n	admin	Recognitions	1
765642	2024-07-11	11:19:16.7661013	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3689\r\nRecognitionId: 0\r\nRecognitionName: BSP- BRONZE  SERVICE AWARD\r\n	admin	Recognitions	1
765643	2024-07-11	11:19:16.7700881	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3689\r\nRecognitionId: 0\r\nRecognitionName: FIRST PLACE AWARD- EDITORIAL WRITING \r\n	admin	Recognitions	1
765644	2024-07-11	11:19:16.7750714	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3689\r\nRecognitionId: 0\r\nRecognitionName: OUTSTANDING ALUMNI AWARD\r\n	admin	Recognitions	1
765645	2024-07-11	11:19:16.7800547	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3689\r\nRecognitionId: 0\r\nRecognitionName: AUTHOR/ RESEARCHER OF RESEARCH PRESENTED & PUBLISHED  \r\n	admin	Recognitions	1
765646	2024-07-11	11:19:16.7850380	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3689\r\nRecognitionId: 0\r\nRecognitionName: OUTSTANDOIING RESEARCHER OF THE YEAR \r\n	admin	Recognitions	1
765647	2024-07-11	11:19:16.7890246	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3689\r\nOrganizationId: 0\r\nOrganizationName: PHILIPPINE ASSOCIATION FOR GRADUATE EDUCATION ( PAGE) \r\n	admin	Organizations	1
765648	2024-07-11	11:19:16.7940082	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3689\r\nOrganizationId: 0\r\nOrganizationName: CALABARZON ASSOCIATION OF EDUCATION PROGRAM SPECIALIST FOR ALS\r\n	admin	Organizations	1
765649	2024-07-11	11:19:16.7989913	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3689\r\nOrganizationId: 0\r\nOrganizationName: PCEI21 PHILIPPINE INSTITUTE OF 21ST CENTURY EDUCATORS, INC\r\n	admin	Organizations	1
765650	2024-07-11	11:19:16.8039748	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3689\r\nCharacterReferenceId: 0\r\nCompanyAddress: CALACA CITY, BATANGAS \r\nCompanyName: \r\nContactNumber: (043)-702-2094\r\nExtensionName: \r\nFirstName: HERMOGENES \r\nLastName: PANGANIBAN \r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
765651	2024-07-11	11:19:16.8079613	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3689\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN PASCUAL, BATANGAS \r\nCompanyName: \r\nContactNumber: (043)-702-2094\r\nExtensionName: \r\nFirstName: CATHERINE \r\nLastName: MARANAN \r\nMiddleName: V\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
765652	2024-07-11	11:19:16.8129447	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3689\r\nCharacterReferenceId: 0\r\nCompanyAddress: TINGA LABAC, BATANGAS CITY \r\nCompanyName: \r\nContactNumber: (043)-702-2094\r\nExtensionName: \r\nFirstName: ANGELISA \r\nLastName: AMOTO\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
765668	2024-07-11	11:34:14.1832617	<Undetected>	Update	BasicInformationId: 3691\r\nBirthDate: January 17, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3626\r\nExtensionName: \r\nFirstName: MIGGZ ESTEFAN\r\nFullName: MIGGZ ESTEFAN M UNTALAN\r\nGender: Male\r\nLastName: UNTALAN\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3691\r\nBirthDate: January 17, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3626\r\nExtensionName: \r\nFirstName: MIGGZ ESTEFAN\r\nFullName: MIGGZ ESTEFAN UNTALAN\r\nGender: Male\r\nLastName: UNTALAN\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
765669	2024-07-11	11:34:14.1882617	<Undetected>	Update	BasicInformationId: 3691\r\nBirthDate: November 18, 2016\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3627\r\nExtensionName: \r\nFirstName: MARC JACOBZ\r\nFullName: MARC JACOBZ M UNTALAN\r\nGender: Male\r\nLastName: UNTALAN\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3691\r\nBirthDate: November 18, 2016\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3627\r\nExtensionName: \r\nFirstName: MARC JACOBZ\r\nFullName: MARC JACOBZ UNTALAN\r\nGender: Male\r\nLastName: UNTALAN\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772157	2025-03-18	16:15:39.8592243	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3822\r\nOrganizationId: 0\r\nOrganizationName: CIES ALUMNI ASSOCIATION\r\n	admin	Organizations	1
765633	2024-07-11	11:17:29.0948115	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3691\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CESAR\r\nFullName: CESAR CLARETE MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: CLARETE\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
765634	2024-07-11	11:17:29.0958116	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3691\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LOURDESITA\r\nFullName: LOURDESITA CONTRERAS BEREDO\r\nGender: Male\r\nLastName: BEREDO\r\nMaidenName: \r\nMiddleName: CONTRERAS\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
765635	2024-07-11	11:17:29.0958116	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3691\r\nBirthDate: January 17, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MIGGZ ESTEFAN\r\nFullName: MIGGZ ESTEFAN M UNTALAN\r\nGender: Male\r\nLastName: UNTALAN\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
765636	2024-07-11	11:17:29.0958116	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3691\r\nBirthDate: November 18, 2016\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARC JACOBZ\r\nFullName: MARC JACOBZ M UNTALAN\r\nGender: Male\r\nLastName: UNTALAN\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
765637	2024-07-11	11:17:29.0958116	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3691\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
765661	2024-07-11	11:34:14.1215733	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3691\r\nDateOfExamination: November 29, 2009\r\nDateOfRelease: June 04, 2025\r\nEligibilityDocumentTypeId: 0\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: November 30, 2009\r\nLevelOfEligibility: \r\nLicenseNumber: 0622362\r\nPlaceOfExamination: LUCENA\r\nRating: 78.6%\r\nTitle: NURSE LICENSURE EXAMINATION\r\n	admin	Eligibilities	1
765662	2024-07-11	11:34:14.1265730	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3691\r\nDateOfExamination: October 01, 2016\r\nDateOfRelease: October 07, 2021\r\nEligibilityDocumentTypeId: 0\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: October 01, 2016\r\nLevelOfEligibility: \r\nLicenseNumber: 160410020022659\r\nPlaceOfExamination: TESDA REGION IV-A (BATANGAS)\r\nRating: PASSED\r\nTitle: HEALTH CARE SERVICES NC II\r\n	admin	Eligibilities	1
765663	2024-07-11	11:34:14.1345731	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3691\r\nCharacterReferenceId: 0\r\nCompanyAddress: BAUAN, BATANGAS\r\nCompanyName: \r\nContactNumber: 09393665149\r\nExtensionName: \r\nFirstName: MADONNA \r\nLastName: ABRUGENA\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
765664	2024-07-11	11:34:14.1445730	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3691\r\nCharacterReferenceId: 0\r\nCompanyAddress: KUMINTANG ILAYA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09778046804\r\nExtensionName: \r\nFirstName: BELINDA\r\nLastName: SABELLANO\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
765665	2024-07-11	11:34:14.1602617	<Undetected>	Update	BasicInformationId: 3691\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3623\r\nExtensionName: \r\nFirstName: JUNE\r\nFullName: JUNE GUTIERREZ UNTALAN\r\nGender: Male\r\nLastName: UNTALAN\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: NURSE II\r\nRelationship: Husband\r\n	BasicInformationId: 3691\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3623\r\nExtensionName: \r\nFirstName: JUNE\r\nFullName: JUNE UNTALAN\r\nGender: Male\r\nLastName: UNTALAN\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: NURSE II\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
765666	2024-07-11	11:34:14.1712620	<Undetected>	Update	BasicInformationId: 3691\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3624\r\nExtensionName: \r\nFirstName: CESAR\r\nFullName: CESAR CLARETE MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: CLARETE\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3691\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3624\r\nExtensionName: \r\nFirstName: CESAR\r\nFullName: CESAR MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: CLARETE\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
765667	2024-07-11	11:34:14.1782618	<Undetected>	Update	BasicInformationId: 3691\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3625\r\nExtensionName: \r\nFirstName: LOURDESITA\r\nFullName: LOURDESITA CONTRERAS BEREDO\r\nGender: Male\r\nLastName: BEREDO\r\nMaidenName: \r\nMiddleName: CONTRERAS\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3691\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3625\r\nExtensionName: \r\nFirstName: LOURDESITA\r\nFullName: LOURDESITA BEREDO\r\nGender: Male\r\nLastName: BEREDO\r\nMaidenName: \r\nMiddleName: CONTRERAS\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
765727	2024-07-11	13:17:46.4121450	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2018 DIVISION CONFERENCE OF BASIC EDUCATION RESEARCHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765653	2024-07-11	11:19:16.8179280	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLK. 14, LOT 17\r\nAddress2: PARCEL 1, MERCEDES HOMES SUBDIVISION\r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 3689\r\nBirthDate: September 16, 1981\r\nBirthPlace: STO.NIÑO BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: meniano.ebora@deped.gov.ph\r\nExtensionName: \r\nFirstName: MENIANO\r\nFullName: MENIANO DT. EBORA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.7\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: DE TORRES\r\nMobileNumber: 09186704877\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STO.NIÑO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LEGASPI ST.\r\nTIN: \r\nWeight: 66\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK. 14, LOT 17\r\nAddress2: PARCEL 1, MERCEDES HOMES SUBDIVISION\r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 3689\r\nBirthDate: September 16, 1981\r\nBirthPlace: STO.NIÑO BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: meniano.ebora@deped.gov.ph\r\nExtensionName: \r\nFirstName: MENIANO\r\nFullName: MENIANO DT. EBORA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02003562526\r\nHDMF: 1490-0099-0037\r\nHeight: 1.7\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: DE TORRES\r\nMobileNumber: 09186704877\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STO.NIÑO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050084187-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1216963-6\r\nStreetName: LEGASPI ST.\r\nTIN: 934-303-403-0000\r\nWeight: 66\r\nZipCode: 4200\r\n	admin	BasicInformation	1
765654	2024-07-11	11:19:16.8219146	<Undetected>	Update	BasicInformationId: 3689\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3486\r\n	BasicInformationId: 3689\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3486\r\n	admin	Questionnaires	1
765658	2024-07-11	11:31:04.0353599	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF SCIENCE IN NURSING \r\nLevel: College\r\n	admin	Courses	1
765660	2024-07-11	11:33:08.0513896	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER OF ARTS IN PUBLIC ADMINISTRATION \r\nLevel: Master's\r\n	admin	Courses	1
765674	2024-07-11	11:45:20.7752084	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 094\r\nAddress2: \r\nBarangay: TULO\r\nBasicInformationId: 0\r\nBirthDate: September 28, 1970\r\nBirthPlace: TAYSAN, BATANGAS\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: IREN.SORIANO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: IREN\r\nFullName: IREN C. SORIANO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: CORDERO\r\nMobileNumber: 09998889052\r\nNationality: Filipino\r\nPermanentAddress1: 094\r\nPermanentAddress2: \r\nPermanentBarangay: TULO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO KANLURAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: SITIO KANLURAN\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
765675	2024-07-11	11:45:20.7929324	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: SECOND HONORS \r\nBasicInformationId: 3692\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1977\r\nDateTo: 1983\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAN MARCELINO ELEMENTARY SCHOOL \r\nYearGraduated: 1983\r\n	admin	EducationalBackgrounds	1
765676	2024-07-11	11:45:20.7929324	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: SPECIAL MENTION \r\nBasicInformationId: 3692\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1983\r\nDateTo: 1987\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: TAYAN HIGH SCHOOL \r\nYearGraduated: 1996\r\n	admin	EducationalBackgrounds	1
765677	2024-07-11	11:45:20.7929324	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3692\r\nCourse: \r\nCourseId: 1342\r\nCourseOrMajor: \r\nDateFrom: 1987\r\nDateTo: 1991\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: LYCEUM OF BATANGAS \r\nYearGraduated: 1991\r\n	admin	EducationalBackgrounds	1
765678	2024-07-11	11:45:20.7929324	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3692\r\nCourse: \r\nCourseId: 1347\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 1999\r\nEducationalAttainment: 15 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY GRADUATE SCHOOL\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
765679	2024-07-11	11:45:20.7929324	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3692\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JAIME\r\nFullName: JAIME DELISO SORIANO\r\nGender: Male\r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: DELISO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
765680	2024-07-11	11:45:20.7929324	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3692\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FELIMON\r\nFullName: FELIMON ABAJA CORDERO\r\nGender: Male\r\nLastName: CORDERO\r\nMaidenName: \r\nMiddleName: ABAJA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
765681	2024-07-11	11:45:20.7939287	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3692\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARCELA\r\nFullName: MARCELA BAUTISTA\r\nGender: Female\r\nLastName: MALALUAN\r\nMaidenName: \r\nMiddleName: BAUTISTA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
765682	2024-07-11	11:45:20.7939287	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3692\r\nBirthDate: August 20, 1999\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: IRISH JANELLE\r\nFullName: IRISH JANELLE C SORIANO\r\nGender: Female\r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: C\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
765683	2024-07-11	11:45:20.7979154	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3692\r\nDateOfExamination: December 04, 1995\r\nDateOfRelease: September 28, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: December 04, 1995\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0288383\r\nPlaceOfExamination: MANILA \r\nRating: 79.20%\r\nTitle: NURSE LICENSURE EXAMINATION \r\n	admin	Eligibilities	1
765684	2024-07-11	11:45:20.7979154	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3692\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 39,672.00\r\nPositionHeld: NURSE II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: July 11, 2024\r\n	admin	Experiences	1
765685	2024-07-11	11:45:20.7979154	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3692\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 38,150.00\r\nPositionHeld: NURSE II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
765686	2024-07-11	11:45:20.7989121	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3692\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 33,575.00\r\nPositionHeld: NURSE II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
765687	2024-07-11	11:45:20.7989121	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3692\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 32,053.00\r\nPositionHeld: NURSE II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
765688	2024-07-11	11:45:20.7989121	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3692\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 32,053.00\r\nPositionHeld: NURSE II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
765689	2024-07-11	11:45:20.7989121	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3692\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 32,053.00\r\nPositionHeld: NURSE II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
765690	2024-07-11	11:45:20.7989121	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3692\r\nCompanyInstitution: MUNICIPAL GOVERNMENT OF TAYSAN - OFFICE OF THE MUNICIPAL HEALTH OFFICER \r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 18,008.80\r\nPositionHeld: NURSE I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: September 30, 2018\r\n	admin	Experiences	1
765691	2024-07-11	11:45:20.7989121	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3692\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
765728	2024-07-11	13:20:02.3615257	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3692\r\nCompanyInstitution: MUNICIPAL GOVERNMENT OF TAYSAN - OFFICE OF THE MUNICIPAL HEALTH OFFICER565\r\nExperienceId: 0\r\nFromDate: January 07, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 17,296.00\r\nPositionHeld: NURSE I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
765694	2024-07-11	11:49:35.2855005	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: April 25, 2020\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: VIBAL GROUP\r\nStatus: \r\nToDate: April 25, 2020\r\nTrainingId: 16001\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765695	2024-07-11	11:49:35.2915003	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: April 24, 2020\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: VIBAL GROUP \r\nStatus: \r\nToDate: April 24, 2024\r\nTrainingId: 16002\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765696	2024-07-11	11:49:35.2955004	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: April 22, 2020\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: VIBAL GROUP \r\nStatus: \r\nToDate: April 22, 2020\r\nTrainingId: 16004\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765697	2024-07-11	11:49:35.3005003	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: April 16, 2020\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: VIBAL GROUP \r\nStatus: \r\nToDate: April 16, 2020\r\nTrainingId: 16006\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765698	2024-07-11	11:49:35.3055002	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: July 25, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 25, 2020\r\nTrainingId: 16008\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765699	2024-07-11	11:49:35.3105003	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: June 09, 2020\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: June 09, 2020\r\nTrainingId: 16011\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765700	2024-07-11	11:49:35.3145003	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: May 19, 2020\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: May 19, 2020\r\nTrainingId: 16012\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765701	2024-07-11	11:49:35.3195006	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: February 13, 2020\r\nHours: 16\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: February 14, 2020\r\nTrainingId: 16015\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765702	2024-07-11	11:49:35.3235003	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: June 17, 2020\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: ABIVA PUBLISHING HOUSE, INC.\r\nStatus: \r\nToDate: June 17, 2020\r\nTrainingId: 16018\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765703	2024-07-11	11:49:35.3285004	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: June 11, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DIVISIONS OF BATANGAS CITY- DISTRICT II\r\nStatus: \r\nToDate: June 11, 2020\r\nTrainingId: 16026\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765704	2024-07-11	11:49:35.3325003	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: November 28, 2019\r\nHours: 16\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 29, 2019\r\nTrainingId: 16028\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765705	2024-07-11	11:49:35.3375034	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2019\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 27, 2019\r\nTrainingId: 16032\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765706	2024-07-11	11:49:35.3425032	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: November 13, 2019\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 15, 2019\r\nTrainingId: 16034\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765707	2024-07-11	11:49:35.3465031	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: October 18, 2019\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: October 18, 2019\r\nTrainingId: 16037\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765708	2024-07-11	11:49:35.3515031	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: August 30, 2019\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 30, 2019\r\nTrainingId: 16038\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765709	2024-07-11	11:49:35.3560091	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: July 30, 2019\r\nHours: 16\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 31, 2019\r\nTrainingId: 15324\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765710	2024-07-11	11:49:35.3610090	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 30, 2020\r\nTrainingId: 16039\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765711	2024-07-11	11:49:35.3650094	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: June 19, 2019\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: June 19, 2019\r\nTrainingId: 16040\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765712	2024-07-11	11:49:35.3700091	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: July 30, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 31, 2019\r\nTrainingId: 15062\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765713	2024-07-11	11:49:35.3740091	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: July 25, 2019\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 25, 2019\r\nTrainingId: 16042\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765714	2024-07-11	11:49:35.3790091	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: July 22, 2019\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 22, 2019\r\nTrainingId: 16043\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765715	2024-07-11	11:49:35.3830094	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: July 18, 2019\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-BHROD\r\nStatus: \r\nToDate: July 18, 2019\r\nTrainingId: 16044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765716	2024-07-11	11:49:35.3880091	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: June 18, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: June 19, 2019\r\nTrainingId: 16045\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765717	2024-07-11	11:49:35.3930090	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: June 03, 2019\r\nHours: 16\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: REGION IV-A CALABARZON\r\nStatus: \r\nToDate: July 03, 2019\r\nTrainingId: 16046\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765718	2024-07-11	11:49:35.3980094	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: February 28, 2019\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: ASCEDENS ASIA \r\nStatus: \r\nToDate: February 28, 2019\r\nTrainingId: 16047\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765719	2024-07-11	11:49:35.4020091	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: December 13, 2018\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: December 13, 2018\r\nTrainingId: 16048\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765722	2024-07-11	13:02:28.6488967	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2018 CONFERENCE OF BASIC EDUCATION RESEARCHERS SOUTH-EAST ASIA\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765723	2024-07-11	13:06:14.2031848	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2018 DIVISION CI, SCH.CLIQUE: A TOUR DE FORCE & PROJECT 555 SYMPOSIUM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765724	2024-07-11	13:09:20.3802450	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONWIDE TRAINING ON EARLY LANGUAGE LITERACY AND NUMERACY:PROFESSIONAL DEVELOPMENT COMPONENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765725	2024-07-11	13:12:00.0121165	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TECHNICAL ASSISTANCE PROVISION ON SCHOOL-BASED MANAGEMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765726	2024-07-11	13:14:53.9176695	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WELLNESS RETTREAT WORKSHOP: THE POWER OF A TEACHERS HEART\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765720	2024-07-11	11:49:51.2484034	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: DALIG\r\nBasicInformationId: 0\r\nBirthDate: April 15, 1978\r\nBirthPlace: ISLA VERDE, BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: magielyn.babao@deped.gov.ph\r\nExtensionName: \r\nFirstName: MAGIELYN\r\nFullName: MAGIELYN R. BABAO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BABAO\r\nMaidenName: \r\nMiddleName: RAYOS\r\nMobileNumber: 09217516928\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: DALIG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 2\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 2\r\nTIN: \r\nWeight: 58\r\nZipCode: 4200\r\n	admin	BasicInformation	1
765721	2024-07-11	11:49:51.2562805	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3693\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
765729	2024-07-11	13:20:02.3665089	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3692\r\nCompanyInstitution: MUNICIPAL GOVERNMENT OF TAYSAN - OFFICE OF THE MUNICIPAL HEALTH OFFICER\r\nExperienceId: 0\r\nFromDate: January 01, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 17,099.00\r\nPositionHeld: NURSE I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2016\r\n	admin	Experiences	1
765730	2024-07-11	13:20:02.3704958	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3692\r\nCompanyInstitution: MUNICIPAL GOVERNMENT OF TAYSAN - OFFICE OF THE MUNICIPAL HEALTH OFFICER\r\nExperienceId: 0\r\nFromDate: January 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 15,649.00\r\nPositionHeld: NURSE I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 2014\r\n	admin	Experiences	1
765731	2024-07-11	13:20:02.3764760	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3692\r\nCompanyInstitution: MUNICIPAL GOVERNMENT OF TAYSAN - OFFICE OF THE MUNICIPAL HEALTH OFFICER\r\nExperienceId: 0\r\nFromDate: January 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 14,923.00\r\nPositionHeld: NURSE I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 2011\r\n	admin	Experiences	1
765732	2024-07-11	13:20:02.3804623	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3692\r\nCompanyInstitution: MUNICIPAL GOVERNMENT OF TAYSAN - OFFICE OF THE MUNICIPAL HEALTH OFFICER\r\nExperienceId: 0\r\nFromDate: January 01, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 14,198.00\r\nPositionHeld: NURSE I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 2010\r\n	admin	Experiences	1
765733	2024-07-11	13:20:02.3854456	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3692\r\nCompanyInstitution: MUNICIPAL GOVERNMENT OF TAYSAN - OFFICE OF THE MUNICIPAL HEALTH OFFICER\r\nExperienceId: 0\r\nFromDate: January 07, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,026.00\r\nPositionHeld: NURSE I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 2009\r\n	admin	Experiences	1
765734	2024-07-11	13:20:02.3904292	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3692\r\nCompanyInstitution: MUNICIPAL GOVERNMENT OF TAYSAN - OFFICE OF THE MUNICIPAL HEALTH OFFICER\r\nExperienceId: 0\r\nFromDate: January 07, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,933.00\r\nPositionHeld: NURSE I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
765735	2024-07-11	13:20:02.3954122	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3692\r\nCompanyInstitution: MUNICIPAL GOVERNMENT OF TAYSAN - OFFICE OF THE MUNICIPAL HEALTH OFFICER\r\nExperienceId: 0\r\nFromDate: July 28, 2004\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: NURSE I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
765736	2024-07-11	13:20:02.4003958	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3692\r\nCompanyInstitution: MUNICIPAL GOVERNMENT OF TAYSAN - OFFICE OF THE MUNICIPAL HEALTH OFFICER\r\nExperienceId: 0\r\nFromDate: August 01, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 5,635.00\r\nPositionHeld: REVENUE COLLECTION CLERK I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 51-\r\nStatus: Permanent\r\nToDate: July 27, 2004\r\n	admin	Experiences	1
765737	2024-07-11	13:20:02.4053791	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3692\r\nCompanyInstitution: MUNICIPAL GOVERNMENT OF TAYSAN - OFFICE OF THE MUNICIPAL HEALTH OFFICER\r\nExperienceId: 0\r\nFromDate: January 01, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 5,283.00\r\nPositionHeld: ACCOUNTING CLERK I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-1\r\nStatus: Permanent\r\nToDate: July 01, 2002\r\n	admin	Experiences	1
765738	2024-07-11	13:20:02.4093656	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3692\r\nCompanyInstitution: MUNICIPAL GOVERNMENT OF TAYSAN - OFFICE OF THE MUNICIPAL HEALTH OFFICER\r\nExperienceId: 0\r\nFromDate: January 07, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 5,013.00\r\nPositionHeld: ACCOUNTING CLERK I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 41-\r\nStatus: Permanent\r\nToDate: December 31, 2001\r\n	admin	Experiences	1
765739	2024-07-11	13:20:02.4143489	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3692\r\nCompanyInstitution: MUNICIPAL GOVERNMENT OF TAYSAN - OFFICE OF THE MUNICIPAL HEALTH OFFICER\r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 4,775.00\r\nPositionHeld: ACCOUNTING CLERK I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 41-\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
772158	2025-03-18	16:15:39.8642236	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3822\r\nOrganizationId: 0\r\nOrganizationName: LIBJO ES SGC MEMBER\r\n	admin	Organizations	1
765740	2024-07-11	13:20:02.4193329	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3692\r\nCompanyInstitution: MUNICIPAL GOVERNMENT OF TAYSAN - OFFICE OF THE MUNICIPAL HEALTH OFFICER\r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 4,235.00\r\nPositionHeld: ACCOUNTING CLERK I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 41-\r\nStatus: Permanent\r\nToDate: December 31, 1998\r\n	admin	Experiences	1
765741	2024-07-11	13:20:02.4243159	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3692\r\nCompanyInstitution: MUNICIPAL GOVERNMENT OF TAYSAN - OFFICE OF THE MUNICIPAL HEALTH OFFICER\r\nExperienceId: 0\r\nFromDate: January 01, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 3,788.00\r\nPositionHeld: ACCOUNTING CLERK I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-1\r\nStatus: Permanent\r\nToDate: December 31, 1996\r\n	admin	Experiences	1
765742	2024-07-11	13:20:02.4283024	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3692\r\nCompanyInstitution: MUNICIPAL GOVERNMENT OF TAYSAN - OFFICE OF THE MUNICIPAL HEALTH OFFICER\r\nExperienceId: 0\r\nFromDate: December 20, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 3,488.00\r\nPositionHeld: ACCOUNTING CLERK I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 41-\r\nStatus: Permanent\r\nToDate: December 31, 1995\r\n	admin	Experiences	1
765743	2024-07-11	13:20:02.4332857	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3692\r\nCompanyInstitution: MUNICIPAL GOVERNMENT OF TAYSAN - OFFICE OF THE MUNICIPAL HEALTH OFFICER\r\nExperienceId: 0\r\nFromDate: January 08, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 2,488.00\r\nPositionHeld: ACCOUNTING CLERK I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-1\r\nStatus: Temporary\r\nToDate: December 19, 1995\r\n	admin	Experiences	1
765744	2024-07-11	13:20:02.4382692	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3692\r\nCompanyInstitution: ASSOCIATED WIRE CORPORATION OF THE PHILIPPINES \r\nExperienceId: 0\r\nFromDate: October 25, 1991\r\nIsGovernmentService: False\r\nMonthlySalary: 0.00\r\nPositionHeld: COMPANY NURSE \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: December 31, 1993\r\n	admin	Experiences	1
765745	2024-07-11	13:20:02.4432526	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 094\r\nAddress2: \r\nBarangay: TULO\r\nBasicInformationId: 3692\r\nBirthDate: September 28, 1970\r\nBirthPlace: TAYSAN, BATANGAS\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: IREN.SORIANO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: IREN\r\nFullName: IREN C. SORIANO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: CORDERO\r\nMobileNumber: 09998889052\r\nNationality: Filipino\r\nPermanentAddress1: 094\r\nPermanentAddress2: \r\nPermanentBarangay: TULO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO KANLURAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: SITIO KANLURAN\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 094\r\nAddress2: \r\nBarangay: TULO\r\nBasicInformationId: 3692\r\nBirthDate: September 28, 1970\r\nBirthPlace: TAYSAN, BATANGAS\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: IREN.SORIANO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: IREN\r\nFullName: IREN C. SORIANO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: CORDERO\r\nMobileNumber: 09998889052\r\nNationality: Filipino\r\nPermanentAddress1: 094\r\nPermanentAddress2: \r\nPermanentBarangay: TULO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO KANLURAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO KANLURAN\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
765746	2024-07-11	13:20:02.4482357	<Undetected>	Update	BasicInformationId: 3692\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3628\r\nExtensionName: \r\nFirstName: JAIME\r\nFullName: JAIME DELISO SORIANO\r\nGender: Male\r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: DELISO\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3692\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3628\r\nExtensionName: \r\nFirstName: JAIME\r\nFullName: JAIME SORIANO\r\nGender: Male\r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: DELISO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
765747	2024-07-11	13:20:02.4522221	<Undetected>	Update	BasicInformationId: 3692\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3629\r\nExtensionName: \r\nFirstName: FELIMON\r\nFullName: FELIMON ABAJA CORDERO\r\nGender: Male\r\nLastName: CORDERO\r\nMaidenName: \r\nMiddleName: ABAJA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3692\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3629\r\nExtensionName: \r\nFirstName: FELIMON\r\nFullName: FELIMON CORDERO\r\nGender: Male\r\nLastName: CORDERO\r\nMaidenName: \r\nMiddleName: ABAJA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
765748	2024-07-11	13:20:02.4572055	<Undetected>	Update	BasicInformationId: 3692\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3630\r\nExtensionName: \r\nFirstName: MARCELA\r\nFullName: MARCELA BAUTISTA\r\nGender: Female\r\nLastName: MALALUAN\r\nMaidenName: \r\nMiddleName: BAUTISTA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3692\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3630\r\nExtensionName: \r\nFirstName: MARCELA\r\nFullName: MARCELA MALALUAN\r\nGender: Female\r\nLastName: MALALUAN\r\nMaidenName: \r\nMiddleName: BAUTISTA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
765751	2024-07-11	13:20:51.2179783	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL IMPLEMENTATION OF TRAINING WORKSHOP ON AERCA\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765749	2024-07-11	13:20:02.4621890	<Undetected>	Update	BasicInformationId: 3692\r\nBirthDate: August 20, 1999\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3631\r\nExtensionName: \r\nFirstName: IRISH JANELLE\r\nFullName: IRISH JANELLE C SORIANO\r\nGender: Female\r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: C\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3692\r\nBirthDate: August 20, 1999\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3631\r\nExtensionName: \r\nFirstName: IRISH JANELLE\r\nFullName: IRISH JANELLE SORIANO\r\nGender: Female\r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: C\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
765750	2024-07-11	13:20:02.4681680	<Undetected>	Update	BasicInformationId: 3692\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3489\r\n	BasicInformationId: 3692\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3489\r\n	admin	Questionnaires	1
765754	2024-07-11	13:26:12.0914802	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 101ST FOUNDING ANNIVERSARY, 68TH NURSES WEEK CELEBRATION, PNA AND ANNUAL NATIONAL CONVENTION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765755	2024-07-11	13:27:08.8202145	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAUMA- INFORMED INTERVENTION FOR SERVICE PROVIDERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765757	2024-07-11	13:28:40.2592513	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TEENAGE PREGNANCY FORUM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765758	2024-07-11	13:29:53.2839815	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ADEPT TRAINING CUM HEEADSS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765760	2024-07-11	13:31:32.0190430	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ADOLESCENT HEALTH EDUCATION AND PRACTICAL TRAINING ( ADEPT)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765774	2024-07-11	13:34:37.1007563	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3692\r\nEmployeeTrainingId: 0\r\nFromDate: October 24, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: PHILIPPINE NURSES ASSOCIATION \r\nStatus: \r\nToDate: October 26, 2023\r\nTrainingId: 16058\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765775	2024-07-11	13:34:37.1067364	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3692\r\nEmployeeTrainingId: 0\r\nFromDate: October 17, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: SHARE INC/ BREAK THE SILENCE LLOCAL NETWORK- WESTERN BATANGAS \r\nStatus: \r\nToDate: October 18, 2023\r\nTrainingId: 16059\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765776	2024-07-11	13:34:37.1107230	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3692\r\nEmployeeTrainingId: 0\r\nFromDate: August 31, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: PSWDO, BATANGAS \r\nStatus: \r\nToDate: August 31, 2023\r\nTrainingId: 16061\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765777	2024-07-11	13:34:37.1157064	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3692\r\nEmployeeTrainingId: 0\r\nFromDate: April 25, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: CHD 4A\r\nStatus: \r\nToDate: April 26, 2023\r\nTrainingId: 16062\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765778	2024-07-11	13:34:37.1206897	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3692\r\nEmployeeTrainingId: 0\r\nFromDate: April 26, 2023\r\nHours: 9\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DOH ACADEMY \r\nStatus: \r\nToDate: April 26, 2023\r\nTrainingId: 16064\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765779	2024-07-11	13:34:37.1256731	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3692\r\nEmployeeTrainingId: 0\r\nFromDate: April 20, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: April 20, 2023\r\nTrainingId: 15861\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765780	2024-07-11	13:59:32.5099148	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ADOLESCENT REPRODUCTIVE HEALTH\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765781	2024-07-11	14:01:11.7248095	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ADOLESCENT REPRODUCTIVE HEALTH: SOCIAL BEHAVIORAL CHANGE ( SBC) MATERIALS DEVELOPMENT ( ADEPT) CONTEXTUALIZATION) PART 2 VIDEO SHOOTING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765782	2024-07-11	14:04:49.5890953	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TOGETHER THROUGH TRANSITIONS: PROMOTING MENTAL HEALTH AND SELF EXPRESSIONS IN THE NEW NORMAL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765783	2024-07-11	14:06:44.1805909	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINER'S TRAINING ON ADOLESCENT HEALTH AND DEVELOPMENT PROGRAM FOR AHD FOCAL AND ADVISERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765752	2024-07-11	13:23:14.5772847	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MONITORING AND VALIDATION OF DIVISION RESEARCH MANAGEMENT PERFOMANCE MEASURE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765753	2024-07-11	13:25:51.7118748	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION OF TEACHERS AND SCHOOL HEADS ON PPST\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765756	2024-07-11	13:27:40.2676429	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SLAC ON EARLY LANGUAGE LITERACY AND NUMERACY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765759	2024-07-11	13:30:35.2083878	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION SEMINAR-WORKSHOPON SBFP, MENTAL HEALTH,ARH&DPE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765761	2024-07-11	13:32:31.3275633	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING-WORKSHOP ON SCHOOL-BASED LAC SESSION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765762	2024-07-11	13:34:19.8084756	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: November 27, 2018\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: REGION IV-A CALABARZON\r\nStatus: \r\nToDate: November 29, 2018\r\nTrainingId: 16049\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765763	2024-07-11	13:34:19.8134763	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: November 08, 2018\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 08, 2018\r\nTrainingId: 16050\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765764	2024-07-11	13:34:19.8184760	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: October 19, 2018\r\nHours: 72\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: REGION IV-A CALABARZON\r\nStatus: \r\nToDate: October 28, 2018\r\nTrainingId: 16051\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765765	2024-07-11	13:34:19.8234817	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: October 12, 2018\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: October 12, 2018\r\nTrainingId: 16052\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765766	2024-07-11	13:34:19.8284823	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: October 17, 2018\r\nHours: 72\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: REGION IV-A CALABARZON/TEACHER'S GALLERY\r\nStatus: \r\nToDate: October 19, 2018\r\nTrainingId: 16053\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765767	2024-07-11	13:34:19.8324822	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: October 16, 2018\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: October 17, 2018\r\nTrainingId: 16054\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765768	2024-07-11	13:34:19.8379942	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: October 01, 2018\r\nHours: 48\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: REGIONAL IV-A CALABARZON\r\nStatus: \r\nToDate: October 06, 2018\r\nTrainingId: 16055\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765769	2024-07-11	13:34:19.8419950	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: August 14, 2018\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 14, 2018\r\nTrainingId: 16056\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765770	2024-07-11	13:34:19.8459944	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: April 26, 2018\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: April 26, 2018\r\nTrainingId: 16057\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765771	2024-07-11	13:34:19.8509939	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: January 23, 2018\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: ALANGILAN CENTRAL ES\r\nStatus: \r\nToDate: March 05, 2018\r\nTrainingId: 16060\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765772	2024-07-11	13:34:19.8559947	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: February 20, 2018\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: February 22, 2022\r\nTrainingId: 16063\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765773	2024-07-11	13:34:19.8609949	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3683\r\nEmployeeTrainingId: 0\r\nFromDate: February 05, 2018\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: February 08, 2018\r\nTrainingId: 16065\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765794	2024-07-11	14:23:43.2111043	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 DIVISION CONFERENCE OF BASIC EDUCATION RESEARCHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765811	2024-07-11	14:31:24.0117214	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION ROLL OUT OF HIGHER ORDER THINKING SKILLS PROFESSIONAL LEARNING PACKAGES (HOTS - PLPS) FOR ENGLISH, SCIENCE AND MATHEMATICS TEACHERS (BATCH 1)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765812	2024-07-11	14:33:51.8988015	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 DIVISION SCHOOL DAYS MANAGEMENT (SBM) CONVERGENCE UNDER PROJECT SHARE IT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765821	2024-07-11	14:36:54.4113406	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PHYSICAL WELLNESS ACTIVITIES FOR EMPLOYEES' WELFARE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765822	2024-07-11	14:39:30.7179499	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 DIVISION WOMEN'S MONTH CELEBRATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765825	2024-07-11	14:43:39.3440787	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION PROPONENTS AND SCHOOL LEADERS ON FY 2024 BUDGET PREPARATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765829	2024-07-11	14:46:17.5024441	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2022 ANTI - VAWC CAMPAIGN MATERIALS DEVELOPMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765832	2024-07-11	14:49:29.2222293	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL LEADERS TRAINING ON PAGHUBOG: PILLAR OF YOUTH CUM LAUNCHING OF PROJECT DISCOVER\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765836	2024-07-11	14:51:45.8236440	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ENHANCING OF CONTIGENCY PLAN FOR DIFFERENT HAZARDS CUM COORDINATION MEETING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765860	2024-07-11	14:56:10.5916319	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING WORKSHOP ON QUALITY SYSTEM FOCUS ON SEVEN S (7S)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765784	2024-07-11	14:08:52.4841127	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: STRENGTHENING " TB IN THE WORKPLACE" IMPLEMENTATION IN DEPED BATANGAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765785	2024-07-11	14:10:31.0595887	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKPLACE MENTAL HEALTH: A MANAGER'S LEARN TO TYPE CORRECTLY ( UDEMY)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765786	2024-07-11	14:12:21.2113286	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKPLACE MENTAL HEALTH: A MANAGER'S ULTIMATE GUIDE ( UDEMY)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765787	2024-07-11	14:13:43.9691747	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TOUCH TYPING MASTERY- LEARN TO TYPE CORRECTLY ( UDEMY)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765788	2024-07-11	14:15:10.9005211	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MANAGE CHANGE THROUGH COLLABORATION AND TEAM WORK ( UDEMY)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765789	2024-07-11	14:17:05.4992590	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: LEARN MEDITATION WITH CERTIFICATION TO GUIDE OTHERS ( UDEMY)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765790	2024-07-11	14:18:42.7556828	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MICROSOFT ACCESS 2016 MASTER CLASS: BEGINNER TO ADVANCED ( UDEMY)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765791	2024-07-11	14:19:52.2117717	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MENTAL HEALTH FIRST AID SKILLS ( UDEMY)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765792	2024-07-11	14:21:43.6832223	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RECHARGE: RENEWING PASSION AND COMPASSPION AMONG HEALTH PROFESSIONALS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765793	2024-07-11	14:23:16.6219881	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BEYOND THE RN : MAXIMIZING YOUR GROWTH POTENTIAL IN THE FIELD OF NURSING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765795	2024-07-11	14:25:25.1003073	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PSYCHOSOCIAL SUPPORT FOR STUDENTS AT RISK OF SUBSTANCE USE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765796	2024-07-11	14:26:43.1061454	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ADOLESCENT REPRODUCTIVE HEALTH FOUNDATIONAL COURSE CALABARZON CASCADE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765797	2024-07-11	14:27:53.9610019	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3692\r\nEmployeeTrainingId: 0\r\nFromDate: April 15, 2023\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED CENTRAL OFFICE \r\nStatus: \r\nToDate: November 04, 2023\r\nTrainingId: 16067\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765798	2024-07-11	14:27:53.9659851	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3692\r\nEmployeeTrainingId: 0\r\nFromDate: January 25, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: January 26, 2023\r\nTrainingId: 15299\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765799	2024-07-11	14:27:53.9709681	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3692\r\nEmployeeTrainingId: 0\r\nFromDate: December 31, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: POPULATION COMMISSION REGIONAL OFFICE/ BATANGAS CITY HEALTH OFFICE \r\nStatus: \r\nToDate: December 15, 2022\r\nTrainingId: 16069\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765800	2024-07-11	14:27:53.9759515	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3692\r\nEmployeeTrainingId: 0\r\nFromDate: August 16, 2022\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: \r\nStatus: \r\nToDate: August 17, 2022\r\nTrainingId: 16070\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765801	2024-07-11	14:27:53.9809351	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3692\r\nEmployeeTrainingId: 0\r\nFromDate: February 10, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: UDEMY \r\nStatus: \r\nToDate: February 10, 2022\r\nTrainingId: 16072\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766043	2024-07-11	16:10:49.3923588	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FINALIZATION OF M&E TOOL FOR THE IMPLEMENTED GAD PPAS AND OTHER STRUCTURES, FACILITIES AND POLICIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765802	2024-07-11	14:27:53.9859171	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3692\r\nEmployeeTrainingId: 0\r\nFromDate: September 26, 2022\r\nHours: 1\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: UDEMY \r\nStatus: \r\nToDate: September 26, 2022\r\nTrainingId: 16073\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765803	2024-07-11	14:27:53.9909008	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3692\r\nEmployeeTrainingId: 0\r\nFromDate: September 22, 2022\r\nHours: 1\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: UDEMY \r\nStatus: \r\nToDate: September 22, 2022\r\nTrainingId: 16074\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765804	2024-07-11	14:27:53.9958852	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3692\r\nEmployeeTrainingId: 0\r\nFromDate: September 20, 2022\r\nHours: 1\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: UDEMY \r\nStatus: \r\nToDate: September 20, 2022\r\nTrainingId: 16075\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765805	2024-07-11	14:27:54.0008685	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3692\r\nEmployeeTrainingId: 0\r\nFromDate: September 21, 2022\r\nHours: 7\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: UDEMY \r\nStatus: \r\nToDate: September 21, 2022\r\nTrainingId: 16076\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765806	2024-07-11	14:27:54.0058521	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3692\r\nEmployeeTrainingId: 0\r\nFromDate: September 18, 2022\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: UDEMY \r\nStatus: \r\nToDate: September 18, 2022\r\nTrainingId: 16077\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765807	2024-07-11	14:27:54.0098382	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3692\r\nEmployeeTrainingId: 0\r\nFromDate: August 10, 2022\r\nHours: 7\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: UDEMY \r\nStatus: \r\nToDate: December 08, 2022\r\nTrainingId: 16078\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765808	2024-07-11	14:27:54.0148216	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3692\r\nEmployeeTrainingId: 0\r\nFromDate: July 30, 2022\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: July 30, 2022\r\nTrainingId: 16079\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765809	2024-07-11	14:27:54.0198052	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3692\r\nEmployeeTrainingId: 0\r\nFromDate: July 22, 2022\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: July 22, 2022\r\nTrainingId: 16081\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765810	2024-07-11	14:27:54.0247884	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3692\r\nEmployeeTrainingId: 0\r\nFromDate: May 17, 2022\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: May 20, 2022\r\nTrainingId: 16082\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765813	2024-07-11	14:35:28.6143981	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3692\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE ( MS OFFICE, CANVA AND OTHER APPLICATIONS) \r\n	admin	Skills	1
765814	2024-07-11	14:35:28.6223712	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3692\r\nOrganizationId: 0\r\nOrganizationName: PHILIPPINE NURSES ASSOCIATION \r\n	admin	Organizations	1
765815	2024-07-11	14:35:28.6273549	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3692\r\nOrganizationId: 0\r\nOrganizationName: ROVER SCOUTS\r\n	admin	Organizations	1
765816	2024-07-11	14:35:28.6343314	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3692\r\nCharacterReferenceId: 0\r\nCompanyAddress: ALANGILAN, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09177001613\r\nExtensionName: \r\nFirstName: MARIA ROSA VILLA\r\nLastName: CLET\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
765817	2024-07-11	14:35:28.6393139	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3692\r\nCharacterReferenceId: 0\r\nCompanyAddress: TULO, BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09944093567\r\nExtensionName: \r\nFirstName: JUDITH \r\nLastName: LUMANGLAS \r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
765818	2024-07-11	14:35:28.6433012	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3692\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09778046804\r\nExtensionName: \r\nFirstName: BELINDA\r\nLastName: SABELLANO \r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
765839	2024-07-11	14:55:54.5769817	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3691\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15113\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765840	2024-07-11	14:55:54.5829820	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3691\r\nEmployeeTrainingId: 0\r\nFromDate: August 01, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: August 01, 2023\r\nTrainingId: 16091\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765819	2024-07-11	14:35:28.6492814	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 094\r\nAddress2: \r\nBarangay: TULO\r\nBasicInformationId: 3692\r\nBirthDate: September 28, 1970\r\nBirthPlace: TAYSAN, BATANGAS\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: IREN.SORIANO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: IREN\r\nFullName: IREN C. SORIANO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: CORDERO\r\nMobileNumber: 09998889052\r\nNationality: Filipino\r\nPermanentAddress1: 094\r\nPermanentAddress2: \r\nPermanentBarangay: TULO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO KANLURAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO KANLURAN\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 094\r\nAddress2: \r\nBarangay: TULO\r\nBasicInformationId: 3692\r\nBirthDate: September 28, 1970\r\nBirthPlace: TAYSAN, BATANGAS\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: IREN.SORIANO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: IREN\r\nFullName: IREN C. SORIANO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02002031132\r\nHDMF: 1490-0035-0432\r\nHeight: 5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: CORDERO\r\nMobileNumber: 09998889052\r\nNationality: Filipino\r\nPermanentAddress1: 094\r\nPermanentAddress2: \r\nPermanentBarangay: TULO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO KANLURAN\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000000535-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO KANLURAN\r\nTIN: 148-667-758-0000\r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
765820	2024-07-11	14:35:28.6532678	<Undetected>	Update	BasicInformationId: 3692\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3489\r\n	BasicInformationId: 3692\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3489\r\n	admin	Questionnaires	1
765823	2024-07-11	14:40:05.7715651	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL BASED IMMUNIZATION MEASLES RUBELLA TETANUS DIPTHERIA ( MR- TD) ORIENTATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765824	2024-07-11	14:41:48.4594770	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION FOR THE HARMONIZED SCHEDULE AND COMBINED MASS DRUG ADMINISTRATION IN CALABARZON\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765826	2024-07-11	14:43:26.1218476	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ADOLESCENT HEALTH AND DEVELOPMENT PROGRAM ( AHDP) TRI CITY MODEL IN BATANGAS PROVINCE LAUNCHING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765827	2024-07-11	14:44:05.4841726	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON THE GUIDELINES ON THE IMP-LEMENTATION OF SCHOOL-BASED FEEDING PROGRAM (SBFP) FOR SY 2023-2024\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765828	2024-07-11	14:45:07.3159333	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION AND UPDATES ON THE PREVENTION OF BLINDNESS PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765830	2024-07-11	14:46:38.6027211	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION WORKSHOP FOR SCHOOL- BASED DENGUE IMMUNIZATION FOR BATANGAS PROVINCE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765831	2024-07-11	14:48:04.4817541	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ADOLESCENT HEALTH AND DEVELOPMENT PROGRAM ( AHDP) COORDINATION MEETING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765833	2024-07-11	14:49:52.2424398	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION AND PLANNING WORKSHOP FOR SCHOOL BASED IMMUNIZATION PROVINCE OF BATANGAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765834	2024-07-11	14:50:08.8455444	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CASCADING ON FOUNDATIONAL COURSE ADOLESCENT HEALTH WEBINAR\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765835	2024-07-11	14:51:11.4830442	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION AND PLANNING WORKSHOP FOR SCHOOL BASED IMMUNIZATION IN CALABARZON\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765837	2024-07-11	14:52:51.0495487	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON DEPARTMENT OF HEALTH TO 2015- 0030: GUIDELINES ON ( NSDD)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765838	2024-07-11	14:54:49.8662888	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL PREVALENCE SURVEY OF SOIL- TRANSMITTED HELMINTHIASIS AND OTHER PARASITIC INFECTIONS AMONG PUBLIC SCHOOL CHILDREN IN THE PHILIPPINES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766006	2024-07-11	15:53:54.0273193	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DEVELOPING MONITORING AND EVALUATION (M&E) TOOL FORB LEARNING RECOVERY CONTINUITY PLAN (LRCP)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765841	2024-07-11	14:55:54.5877362	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3691\r\nEmployeeTrainingId: 0\r\nFromDate: April 20, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: April 20, 2023\r\nTrainingId: 15861\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765842	2024-07-11	14:55:54.5927362	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3691\r\nEmployeeTrainingId: 0\r\nFromDate: February 20, 2024\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nStatus: \r\nToDate: February 22, 2003\r\nTrainingId: 15153\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765843	2024-07-11	14:55:54.5967360	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3691\r\nEmployeeTrainingId: 0\r\nFromDate: October 04, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: October 07, 2022\r\nTrainingId: 16098\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765844	2024-07-11	14:55:54.6027363	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3691\r\nEmployeeTrainingId: 0\r\nFromDate: August 16, 2022\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: August 17, 2022\r\nTrainingId: 15900\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765845	2024-07-11	14:55:54.6067360	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3691\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: April 03, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 40,509.00\r\nPositionHeld: NURSE 2\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-3\r\nStatus: Permanent\r\nToDate: July 11, 2024\r\n	admin	Experiences	1
765846	2024-07-11	14:55:54.6117360	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3691\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 13,851.00\r\nPositionHeld: ADMINISTRATIVE AIDE VI (DEMO I)\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 6-1\r\nStatus: Permanent\r\nToDate: July 11, 2024\r\n	admin	Experiences	1
765847	2024-07-11	14:55:54.6167361	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3691\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 13,378.00\r\nPositionHeld: ADMINISTRATIVE AIDE VI (DEMO I)\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 06-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
765848	2024-07-11	14:55:54.6217363	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3691\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: May 19, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 12,921.00\r\nPositionHeld: ADMINISTRATIVE AIDE VI (DEMO I)\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 06-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
765849	2024-07-11	14:55:54.6257360	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3691\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 02, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 9,000.00\r\nPositionHeld: CLERK I- JOB ORDER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: June 30, 2013\r\n	admin	Experiences	1
765850	2024-07-11	14:55:54.6307361	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3691\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: July 03, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 9,000.00\r\nPositionHeld: CLERK I- JOB ORDER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: December 31, 2012\r\n	admin	Experiences	1
765851	2024-07-11	14:55:54.6367363	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3691\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 02, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 9,000.00\r\nPositionHeld: CLERK I- JOB ORDER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: July 02, 2012\r\n	admin	Experiences	1
765852	2024-07-11	14:55:54.6407360	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3691\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: November 28, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 9,000.00\r\nPositionHeld: CLERK I- JOB ORDER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: December 31, 2011\r\n	admin	Experiences	1
766216	2024-07-12	08:46:10.2483453	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON INTENSIFYING SCHOOL-BASED FEEDING PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765853	2024-07-11	14:55:54.6457360	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3691\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: August 25, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 9,000.00\r\nPositionHeld: CLERK I- JOB ORDER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: November 25, 2011\r\n	admin	Experiences	1
765854	2024-07-11	14:55:54.6507361	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3691\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: May 19, 2011\r\nIsGovernmentService: False\r\nMonthlySalary: 9,000.00\r\nPositionHeld: CLERK I- JOB ORDER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: August 19, 2011\r\n	admin	Experiences	1
765855	2024-07-11	14:55:54.6557360	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3691\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: February 15, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 9,000.00\r\nPositionHeld: CLERK I- JOB ORDER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: May 15, 2011\r\n	admin	Experiences	1
765856	2024-07-11	14:55:54.6607370	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3691\r\nCompanyInstitution: GOLDEN GATE HOSPITAL\r\nExperienceId: 0\r\nFromDate: September 16, 2011\r\nIsGovernmentService: False\r\nMonthlySalary: 0.00\r\nPositionHeld: VOLUNTEER NURSE\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Volunteer\r\nToDate: December 15, 2011\r\n	admin	Experiences	1
765857	2024-07-11	14:55:54.6657371	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3691\r\nCompanyInstitution: GOLDEN GATE GENERAL HOSPITAL\r\nExperienceId: 0\r\nFromDate: June 01, 2010\r\nIsGovernmentService: False\r\nMonthlySalary: 0.00\r\nPositionHeld: NURSE TRAINEE\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: August 31, 2010\r\n	admin	Experiences	1
765858	2024-07-11	14:55:54.6697810	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3691\r\nCompanyInstitution: ROMULO L. ROSALES MEDICAL/SURGICAL CLININC (GOLDENN GATE GENERAL HOSPITAL)\r\nExperienceId: 0\r\nFromDate: June 01, 2009\r\nIsGovernmentService: False\r\nMonthlySalary: 4,500.00\r\nPositionHeld: \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: May 31, 2010\r\n	admin	Experiences	1
765859	2024-07-11	14:55:54.6757371	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: MAHACOT WEST\r\nBasicInformationId: 3691\r\nBirthDate: June 04, 1989\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: janize.untalan@deped.gov.ph\r\nExtensionName: \r\nFirstName: JANIZE\r\nFullName: JANIZE M. UNTALAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: UNTALAN\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nMobileNumber: 09268518730\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: MAHACOT WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 78\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: MAHACOT WEST\r\nBasicInformationId: 3691\r\nBirthDate: June 04, 1989\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: janize.untalan@deped.gov.ph\r\nExtensionName: \r\nFirstName: JANIZE\r\nFullName: JANIZE M. UNTALAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02003172346\r\nHDMF: 1211-4432-6906\r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: UNTALAN\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nMobileNumber: 09268518730\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: MAHACOT WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025291446-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-2341946-9\r\nStreetName: \r\nTIN: 403-534-688-0000\r\nWeight: 78\r\nZipCode: 4200\r\n	admin	BasicInformation	1
765861	2024-07-11	14:57:01.9675534	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3685\r\nEmployeeTrainingId: 0\r\nFromDate: August 19, 2016\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF HEALTH \r\nStatus: \r\nToDate: August 19, 2016\r\nTrainingId: 16087\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765862	2024-07-11	14:57:01.9725366	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3685\r\nEmployeeTrainingId: 0\r\nFromDate: June 24, 2016\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF HEALTH \r\nStatus: \r\nToDate: June 24, 2016\r\nTrainingId: 16088\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765863	2024-07-11	14:57:01.9775200	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3685\r\nEmployeeTrainingId: 0\r\nFromDate: June 09, 2016\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: PROVINCIAL HEALTH OFFICE \r\nStatus: \r\nToDate: June 09, 2016\r\nTrainingId: 16090\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765864	2024-07-11	14:57:01.9825034	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3685\r\nEmployeeTrainingId: 0\r\nFromDate: March 17, 2016\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF HEALTH \r\nStatus: \r\nToDate: March 18, 2016\r\nTrainingId: 16092\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765865	2024-07-11	14:57:01.9874866	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3685\r\nEmployeeTrainingId: 0\r\nFromDate: March 02, 2016\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF HEALTH \r\nStatus: \r\nToDate: March 02, 2016\r\nTrainingId: 16094\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765866	2024-07-11	14:57:01.9914734	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3685\r\nEmployeeTrainingId: 0\r\nFromDate: September 15, 2016\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF HEALTH \r\nStatus: \r\nToDate: September 15, 2016\r\nTrainingId: 16095\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765867	2024-07-11	14:57:01.9964567	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3685\r\nEmployeeTrainingId: 0\r\nFromDate: September 03, 2015\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF HEALTH \r\nStatus: \r\nToDate: September 03, 2015\r\nTrainingId: 16097\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765868	2024-07-11	14:57:02.0014400	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3685\r\nEmployeeTrainingId: 0\r\nFromDate: July 22, 2015\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF HEALTH \r\nStatus: \r\nToDate: July 24, 2015\r\nTrainingId: 16099\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765869	2024-07-11	14:57:02.0064233	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3685\r\nEmployeeTrainingId: 0\r\nFromDate: June 18, 2015\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF HEALTH \r\nStatus: \r\nToDate: June 18, 2015\r\nTrainingId: 16101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765870	2024-07-11	14:57:02.0114067	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3685\r\nEmployeeTrainingId: 0\r\nFromDate: April 13, 2015\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF HEALTH \r\nStatus: \r\nToDate: April 15, 2015\r\nTrainingId: 16102\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765871	2024-07-11	14:57:02.0163901	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3685\r\nEmployeeTrainingId: 0\r\nFromDate: October 12, 2014\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: December 12, 2014\r\nTrainingId: 15495\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765872	2024-07-11	15:01:24.5181657	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BASIC LIFE SUPPORT TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765873	2024-07-11	15:03:02.6686249	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3685\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
765874	2024-07-11	15:03:02.6736084	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3685\r\nSkillId: 0\r\nSkillName: DRIVING SKILLS\r\n	admin	Skills	1
765875	2024-07-11	15:03:02.6805849	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3685\r\nSkillId: 0\r\nSkillName: PLAYING BALL GAMES\r\n	admin	Skills	1
765876	2024-07-11	15:03:02.6855683	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3685\r\nCharacterReferenceId: 0\r\nCompanyAddress: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY, P.HERRERA ST. BATS.CITY\r\nCompanyName: \r\nContactNumber: 702-2094\r\nExtensionName: \r\nFirstName: SHIELA \r\nLastName: BUENAFE\r\nMiddleName: L\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
765877	2024-07-11	15:03:02.6905517	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3685\r\nCharacterReferenceId: 0\r\nCompanyAddress: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY, P.HERRERA ST. BATS.CITY\r\nCompanyName: \r\nContactNumber: 702-2094\r\nExtensionName: \r\nFirstName: MARIANNE \r\nLastName: MEDINA\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
765878	2024-07-11	15:03:02.6955351	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3685\r\nCharacterReferenceId: 0\r\nCompanyAddress: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY, P.HERRERA ST. BATS.CITY\r\nCompanyName: \r\nContactNumber: 702-2094\r\nExtensionName: \r\nFirstName: REDELINE JOYCE \r\nLastName: CABATAY\r\nMiddleName: L\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
765879	2024-07-11	15:03:02.7005187	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: BEREDO SUBDIVISION\r\nBarangay: ALANGILAN\r\nBasicInformationId: 3685\r\nBirthDate: June 04, 1984\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: june.untalan@deped.gov.ph\r\nExtensionName: \r\nFirstName: JUNE\r\nFullName: JUNE G. UNTALAN\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0434250163\r\nLastName: UNTALAN\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nMobileNumber: 09177282933\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: BEREDO SUBDIVISION\r\nPermanentBarangay: ALANGILAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: OPAL STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: OPAL STREET\r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: BEREDO SUBDIVISION\r\nBarangay: ALANGILAN\r\nBasicInformationId: 3685\r\nBirthDate: June 04, 1984\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: june.untalan@deped.gov.ph\r\nExtensionName: \r\nFirstName: JUNE\r\nFullName: JUNE G. UNTALAN\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02004176272\r\nHDMF: 1210-3324-9674\r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0434250163\r\nLastName: UNTALAN\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nMobileNumber: 09177282933\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: BEREDO SUBDIVISION\r\nPermanentBarangay: ALANGILAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: OPAL STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000083402-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: OPAL STREET\r\nTIN: 277-766-937-0000\r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
765880	2024-07-11	15:03:02.7055018	<Undetected>	Update	BasicInformationId: 3685\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3482\r\n	BasicInformationId: 3685\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: RESIGNATION- I ACCEPTED MY JOB IN DEPED\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3482\r\n	admin	Questionnaires	1
765881	2024-07-11	15:05:21.3085031	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 198 KWIKSET STREET\r\nAddress2: ST.PETER SUBDIVISION\r\nBarangay: ALANGILAN\r\nBasicInformationId: 3686\r\nBirthDate: December 29, 1975\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: shiela.buenafe001@deped.gov.ph\r\nExtensionName: \r\nFirstName: SHIELA\r\nFullName: SHIELA L. BUENAFE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02002895916\r\nHDMF: 1490-0091-9598\r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0439844470\r\nLastName: BUENAFE\r\nMaidenName: \r\nMiddleName: LUISTRO\r\nMobileNumber: 09177282933\r\nNationality: Filipino\r\nPermanentAddress1: 198 KWIKSET STREET\r\nPermanentAddress2: ST.PETER SUBDIVISION\r\nPermanentBarangay: ALANGILAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000052028-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 72\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 198 KWIKSET STREET\r\nAddress2: ST.PETER SUBDIVISION\r\nBarangay: ALANGILAN\r\nBasicInformationId: 3686\r\nBirthDate: December 29, 1975\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: shiela.buenafe001@deped.gov.ph\r\nExtensionName: \r\nFirstName: SHIELA\r\nFullName: SHIELA L. BUENAFE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02002895916\r\nHDMF: 1490-0091-9598\r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0439844470\r\nLastName: BUENAFE\r\nMaidenName: \r\nMiddleName: LUISTRO\r\nMobileNumber: 09177282933\r\nNationality: Filipino\r\nPermanentAddress1: 198 KWIKSET STREET\r\nPermanentAddress2: ST.PETER SUBDIVISION\r\nPermanentBarangay: ALANGILAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000052028-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 72\r\nZipCode: 4200\r\n	admin	BasicInformation	1
765882	2024-07-11	15:05:21.3194676	<Undetected>	Update	BasicInformationId: 3686\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3606\r\nExtensionName: SR\r\nFirstName: CELSO\r\nFullName: CELSO MANALO BUENAFE SR\r\nGender: Male\r\nLastName: BUENAFE\r\nMaidenName: \r\nMiddleName: MANALO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3686\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3606\r\nExtensionName: SR\r\nFirstName: CELSO\r\nFullName: CELSO BUENAFE SR\r\nGender: Male\r\nLastName: BUENAFE\r\nMaidenName: \r\nMiddleName: MANALO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
765883	2024-07-11	15:05:21.3244506	<Undetected>	Update	BasicInformationId: 3686\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3607\r\nExtensionName: \r\nFirstName: EDITHA\r\nFullName: EDITHA HERNANDEZ LUISTRO\r\nGender: Female\r\nLastName: LUISTRO\r\nMaidenName: \r\nMiddleName: HERNANDEZ\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3686\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3607\r\nExtensionName: \r\nFirstName: EDITHA\r\nFullName: EDITHA LUISTRO\r\nGender: Female\r\nLastName: LUISTRO\r\nMaidenName: \r\nMiddleName: HERNANDEZ\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
765884	2024-07-11	15:06:03.3785279	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER OF EDUCATION \r\nLevel: Master's\r\n	admin	Courses	1
765885	2024-07-11	15:09:23.0180718	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: DOCTOR OF PHILOSOPHY\r\nLevel: Doctorate\r\n	admin	Courses	1
765927	2024-07-11	15:21:59.9515284	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF ARTS IN ELEMENTARY EDUCATION \r\nLevel: College\r\n	admin	Courses	1
765928	2024-07-11	15:25:57.3601823	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 12, LOT 2\r\nAddress2: CENTER PLAIN HOMES\r\nBarangay: TINGA LABAC\r\nBasicInformationId: 0\r\nBirthDate: October 01, 1972\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ANGELISA.AMOTO001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ANGELISA\r\nFullName: ANGELISA A. AMOTO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.05\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: AMOTO\r\nMaidenName: \r\nMiddleName: AREVALO\r\nMobileNumber: 09338688795\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 12, LOT 2\r\nPermanentAddress2: CENTER PLAIN HOMES\r\nPermanentBarangay: TINGA LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ÑINA,ST\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: ÑINA,ST\r\nTIN: \r\nWeight: 64\r\nZipCode: 4200\r\n	admin	BasicInformation	1
765886	2024-07-11	15:17:53.8207189	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: TINGA LABAK\r\nBasicInformationId: 0\r\nBirthDate: December 03, 1994\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MARIALUZMAGADIA@GMAIL.COM\r\nExtensionName: \r\nFirstName: MARIA LUZ\r\nFullName: MARIA LUZ V. MAGADIA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02006270123\r\nHDMF: 1212-8780-9560\r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MAGADIA\r\nMaidenName: \r\nMiddleName: VILLANUEVA\r\nMobileNumber: 09067171189\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: TINGA LABAK\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO 2\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-250003340-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: 34-5673879-0\r\nStreetName: SITIO 2\r\nTIN: 480-547-655-0000\r\nWeight: 64\r\nZipCode: 4200\r\n	admin	BasicInformation	1
765887	2024-07-11	15:17:54.0864826	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3694\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: TINGA LABAC ELEMENTARY SCHOOL\r\nYearGraduated: 2007\r\n	admin	EducationalBackgrounds	1
765888	2024-07-11	15:17:54.0904822	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3694\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2007\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
765889	2024-07-11	15:17:54.0954831	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3694\r\nCourse: \r\nCourseId: 1268\r\nCourseOrMajor: \r\nDateFrom: 2011\r\nDateTo: 2015\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY- ALANGILAN CAMPUS\r\nYearGraduated: 2015\r\n	admin	EducationalBackgrounds	1
765890	2024-07-11	15:17:54.1004834	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3694\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROLANDO\r\nFullName: ROLANDO ANTENOR MAGADIA\r\nGender: Male\r\nLastName: MAGADIA\r\nMaidenName: \r\nMiddleName: ANTENOR\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
765891	2024-07-11	15:17:54.1044866	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3694\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: AURORA\r\nFullName: AURORA ALBERTO\r\nGender: Female\r\nLastName: VILLANUEVA\r\nMaidenName: \r\nMiddleName: ALBERTO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
765892	2024-07-11	15:17:54.1094895	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3694\r\nEmployeeTrainingId: 0\r\nFromDate: December 04, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: December 05, 2023\r\nTrainingId: 16080\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765893	2024-07-11	15:17:54.1135298	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3694\r\nEmployeeTrainingId: 0\r\nFromDate: November 23, 2023\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 23, 2023\r\nTrainingId: 15107\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765894	2024-07-11	15:17:54.1181323	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3694\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765895	2024-07-11	15:17:54.1221305	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3694\r\nEmployeeTrainingId: 0\r\nFromDate: October 02, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: October 02, 2023\r\nTrainingId: 15529\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765896	2024-07-11	15:17:54.1271316	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3694\r\nEmployeeTrainingId: 0\r\nFromDate: September 20, 2023\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 23, 2023\r\nTrainingId: 16083\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766007	2024-07-11	15:57:05.9640124	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING CUM WORKSHOP OF RO AND SDO M&E FOCAL PERSONS ON QATAME & LEARNING & DEVELOPMENT ACTIVITIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765897	2024-07-11	15:17:54.1320892	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3694\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15045\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765898	2024-07-11	15:17:54.1360889	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3694\r\nEmployeeTrainingId: 0\r\nFromDate: September 08, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 08, 2023\r\nTrainingId: 16084\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765899	2024-07-11	15:17:54.1410870	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3694\r\nEmployeeTrainingId: 0\r\nFromDate: August 24, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 24, 2023\r\nTrainingId: 16085\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765900	2024-07-11	15:17:54.1450863	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3694\r\nEmployeeTrainingId: 0\r\nFromDate: March 20, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 20, 2023\r\nTrainingId: 15148\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765901	2024-07-11	15:17:54.1501322	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3694\r\nEmployeeTrainingId: 0\r\nFromDate: March 20, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 20, 2023\r\nTrainingId: 15221\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765902	2024-07-11	15:17:54.1541288	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3694\r\nEmployeeTrainingId: 0\r\nFromDate: March 01, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 01, 2023\r\nTrainingId: 16005\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765903	2024-07-11	15:17:54.1590868	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3694\r\nEmployeeTrainingId: 0\r\nFromDate: February 23, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 23, 2023\r\nTrainingId: 16089\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765904	2024-07-11	15:17:54.1630859	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3694\r\nEmployeeTrainingId: 0\r\nFromDate: December 21, 2022\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: December 21, 2022\r\nTrainingId: 16093\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765905	2024-07-11	15:17:54.1681322	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3694\r\nEmployeeTrainingId: 0\r\nFromDate: December 14, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: December 14, 2022\r\nTrainingId: 15230\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765906	2024-07-11	15:17:54.1721314	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3694\r\nEmployeeTrainingId: 0\r\nFromDate: November 21, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 21, 2022\r\nTrainingId: 16096\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765907	2024-07-11	15:17:54.1771297	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3694\r\nEmployeeTrainingId: 0\r\nFromDate: September 29, 2022\r\nHours: 14\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 30, 2022\r\nTrainingId: 15871\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765908	2024-07-11	15:17:54.1811397	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3694\r\nEmployeeTrainingId: 0\r\nFromDate: June 30, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: June 30, 2022\r\nTrainingId: 15751\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765909	2024-07-11	15:17:54.1851331	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3694\r\nEmployeeTrainingId: 0\r\nFromDate: May 27, 2022\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: May 27, 2022\r\nTrainingId: 15339\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765910	2024-07-11	15:17:54.1900858	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3694\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2021\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 25, 2021\r\nTrainingId: 15568\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765911	2024-07-11	15:17:54.1950861	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3694\r\nEmployeeTrainingId: 0\r\nFromDate: August 15, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BATANGAS CITY DISASTER RISK REDUCTION AND MANAGEMENT COUNCIL\r\nStatus: \r\nToDate: August 16, 2019\r\nTrainingId: 8752\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
765912	2024-07-11	15:17:54.1990858	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3694\r\nCharacterReferenceId: 0\r\nCompanyAddress: TINGA LABAC, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09338688795\r\nExtensionName: \r\nFirstName: ANGELISA\r\nLastName: AMOTO\r\nMiddleName: A.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
765913	2024-07-11	15:17:54.2030884	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3694\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN TEODORO BAUAN, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09956184811\r\nExtensionName: \r\nFirstName: MADONNA\r\nLastName: ABRUGENA\r\nMiddleName: B.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
765914	2024-07-11	15:17:54.2080886	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3694\r\nCharacterReferenceId: 0\r\nCompanyAddress: LIPA BATANGAS \r\nCompanyName: \r\nContactNumber: 702-2024 LOC 103\r\nExtensionName: \r\nFirstName: FE\r\nLastName: FALLURIN\r\nMiddleName: M.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
765915	2024-07-11	15:17:54.2130895	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3694\r\nDateOfExamination: March 26, 2023\r\nDateOfRelease: June 09, 2023\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: March 26, 2023\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 827/763737\r\nPlaceOfExamination: BATANGAS CITY ,BATANGAS\r\nRating: 80.75\r\nTitle: CAREER SERVICE PROFESSIONAL EXAMINATION\r\n	admin	Eligibilities	1
765916	2024-07-11	15:17:54.2176522	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3694\r\nCompanyInstitution: DEPARTMENT OF EDUCATION,SCHOOLS DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: March 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 13,000.00\r\nPositionHeld: ADMIN AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-\r\nStatus: Permanent\r\nToDate: July 11, 2024\r\n	admin	Experiences	1
765917	2024-07-11	15:17:54.2216055	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3694\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 06, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 581.36\r\nPositionHeld: OFFICE CLERK\r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Job Order\r\nToDate: March 01, 2023\r\n	admin	Experiences	1
765918	2024-07-11	15:17:54.2266053	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3694\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
765919	2024-07-11	15:17:54.2306055	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3694\r\nSkillId: 0\r\nSkillName: PHOTO AND VIDEO EDITING\r\n	admin	Skills	1
765920	2024-07-11	15:17:54.2356082	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3694\r\nSkillId: 0\r\nSkillName: TROUBLESHOOTING OF BASIC COMPUTER, LAPTOP, AND PRINTER ISSUES\r\n	admin	Skills	1
765921	2024-07-11	15:17:54.2396055	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3694\r\nSkillId: 0\r\nSkillName: PLAYING VOLLEYBALL, BADMINTON, AND BASKETBALL\r\n	admin	Skills	1
765922	2024-07-11	15:17:54.2446061	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3694\r\nRecognitionId: 0\r\nRecognitionName: MERITORIOUS PERFORMANCE AWARD\r\n	admin	Recognitions	1
765923	2024-07-11	15:17:54.2496086	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3694\r\nRecognitionId: 0\r\nRecognitionName: DEALT (DEDICATED, EMPLOYEES WITHOUT ABSENCES, LEAVES AND TARDINESS) AWARD\r\n	admin	Recognitions	1
765924	2024-07-11	15:17:54.2536086	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3694\r\nRecognitionId: 0\r\nRecognitionName: EDUCATIONAL ADVANCEMENT AWARD\r\n	admin	Recognitions	1
765925	2024-07-11	15:17:54.2586084	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3694\r\nRecognitionId: 0\r\nRecognitionName: POSITIVE PARTICIPATOR AWARD\r\n	admin	Recognitions	1
765926	2024-07-11	15:17:54.2626082	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3694\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
765990	2024-07-11	15:48:08.8217110	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BS PSYCHOLOGY\r\nLevel: College\r\n	admin	Courses	1
765991	2024-07-11	15:48:56.5694266	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MA IN PSYCHOLOGY\r\nLevel: Master's\r\n	admin	Courses	1
766009	2024-07-11	16:00:35.5840045	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 PRIVATE EDUCATION NATIONAL CONFERENCE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766026	2024-07-11	16:03:40.2487554	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CULMINATING ACTIVITY ON INDIGENOUS PEOPLES' MONTH CELEBRATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765929	2024-07-11	15:25:57.3744319	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3695\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1979\r\nDateTo: 1985\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: DAO ELEMENTARY SCHOOL \r\nYearGraduated: 1985\r\n	admin	EducationalBackgrounds	1
765930	2024-07-11	15:25:57.3744319	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: WITH HONORS\r\nBasicInformationId: 3695\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1989\r\nDateTo: 1993\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: TABANGAO NATIONAL HIGH SCHOOL TESDA/ DYNED\r\nYearGraduated: 1993\r\n	admin	EducationalBackgrounds	1
765931	2024-07-11	15:25:57.3744319	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3695\r\nCourse: \r\nCourseId: 1350\r\nCourseOrMajor: \r\nDateFrom: 1989\r\nDateTo: 1993\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS \r\nYearGraduated: 1993\r\n	admin	EducationalBackgrounds	1
765932	2024-07-11	15:25:57.3744319	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3695\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 0437239428\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DANILO\r\nFullName: DANILO PIZAÑA AMOTO\r\nGender: Male\r\nLastName: AMOTO\r\nMaidenName: \r\nMiddleName: PIZAÑA\r\nOccupation: ELECTRICAL ENGINEER \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
765933	2024-07-11	15:25:57.3744319	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3695\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LUCIO\r\nFullName: LUCIO BAES AREVALO\r\nGender: Male\r\nLastName: AREVALO\r\nMaidenName: \r\nMiddleName: BAES\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
765934	2024-07-11	15:25:57.3744319	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3695\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EUFROSINA\r\nFullName: EUFROSINA CANTOS\r\nGender: Female\r\nLastName: AGUADO\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
765935	2024-07-11	15:25:57.3744319	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3695\r\nBirthDate: October 18, 2005\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: AARON DANIEL\r\nFullName: AARON DANIEL A AMOTO\r\nGender: Male\r\nLastName: AMOTO\r\nMaidenName: \r\nMiddleName: A\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
765936	2024-07-11	15:25:57.3754282	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3695\r\nBirthDate: July 24, 2014\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: A\r\nFullName: A AMOTO INDIGO NATANIEL\r\nGender: Male\r\nLastName: INDIGO NATANIEL\r\nMaidenName: \r\nMiddleName: AMOTO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
765937	2024-07-11	15:25:57.3754282	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3695\r\nDateOfExamination: May 30, 1993\r\nDateOfRelease: October 01, 2024\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: May 30, 1993\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0066190\r\nPlaceOfExamination: BATANGAS CITY \r\nRating: 73.92%\r\nTitle: PHILIPPINE PROFESSIONAL BOARD FOR TEACHERS\r\n	admin	Eligibilities	1
765938	2024-07-11	15:25:57.3754282	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3695\r\nDateOfExamination: December 18, 2022\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: December 18, 2022\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: UNIVERSITY OF PHILIPPINES DILIMAN \r\nRating: 83.70%\r\nTitle: CAREER SERVICE WRITTEN EXAMINATION \r\n	admin	Eligibilities	1
765939	2024-07-11	15:25:57.3754282	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3695\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
765972	2024-07-11	15:38:35.4129914	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3695\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 90,078.00\r\nPositionHeld: CHIEF EDUCATION SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 0-0\r\nStatus: Permanent\r\nToDate: July 11, 2024\r\n	admin	Experiences	1
766965	2024-07-12	15:43:59.1982905	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3707\r\nRecognitionId: 0\r\nRecognitionName: MERITORIOUS PERFORMANCE AWARD FOR OBTAINING OUTSTANDING PERFORMANCE AND DILIGENT WORK WITH UTMOST PATIENCE AND ATTENTION TO DETAILS \r\n	admin	Recognitions	1
765940	2024-07-11	15:32:49.7026119	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: ACHIEVER\r\nBasicInformationId: 3693\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1985\r\nDateTo: 1991\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL\r\nYearGraduated: 1991\r\n	admin	EducationalBackgrounds	1
765941	2024-07-11	15:32:49.7086117	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: ACHIEVER\r\nBasicInformationId: 3693\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1993\r\nDateTo: 1996\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: ISLA VERDE CATHOLIC HIGH SCHOOL\r\nYearGraduated: 1996\r\n	admin	EducationalBackgrounds	1
765942	2024-07-11	15:32:49.7126117	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3693\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 1997\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: SAINT. BRIDGET COLLEGE\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
765943	2024-07-11	15:32:49.7186119	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3693\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1997\r\nDateTo: 2000\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: LIPA CITY COLLEGES\r\nYearGraduated: 2000\r\n	admin	EducationalBackgrounds	1
765944	2024-07-11	15:32:49.7236117	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3693\r\nCourse: \r\nCourseId: 1348\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES \r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
765945	2024-07-11	15:32:49.7286116	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3693\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2016\r\nDateTo: 2017\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES \r\nYearGraduated: 2017\r\n	admin	EducationalBackgrounds	1
765946	2024-07-11	15:32:49.7326116	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3693\r\nCourse: \r\nCourseId: 1349\r\nCourseOrMajor: \r\nDateFrom: 2017\r\nDateTo: 2024\r\nEducationalAttainment: 32 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: MAJOR IN EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
765947	2024-07-11	15:32:49.7386117	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3693\r\nBirthDate: January 01, 0001\r\nCivilStatus: Widow\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JIMMY\r\nFullName: JIMMY CASTILLO BABAO\r\nGender: Male\r\nLastName: BABAO\r\nMaidenName: \r\nMiddleName: CASTILLO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
765948	2024-07-11	15:32:49.7436117	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3693\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RAFAEL\r\nFullName: RAFAEL PENTINIO RAYOS\r\nGender: Male\r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: PENTINIO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
765949	2024-07-11	15:32:49.7486118	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3693\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SIOMANDA\r\nFullName: SIOMANDA CUTETO MEDINA\r\nGender: Female\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: CUTETO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
765950	2024-07-11	15:32:49.7536118	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3693\r\nDateOfExamination: August 01, 2000\r\nDateOfRelease: April 15, 2025\r\nEligibilityDocumentTypeId: 0\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 01, 2000\r\nLevelOfEligibility: \r\nLicenseNumber: 0658044\r\nPlaceOfExamination: CAINTA, RIZAL\r\nRating: 76.8%\r\nTitle: LICENSURE EXAMINATION FOR ELEMENTARY TEACHERS\r\n	admin	Eligibilities	1
765951	2024-07-11	15:32:49.7576116	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3693\r\nCompanyInstitution: SDO- BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: November 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 528,470.00\r\nPositionHeld: SENIOR EDUCATION PROGRAM SPECIALIST\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-3\r\nStatus: Permanent\r\nToDate: July 11, 2024\r\n	admin	Experiences	1
766008	2024-07-11	16:00:25.2338153	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REORIENTATION CUM TECHNICAL ASSISTANCE PROVISION FOR RECOGNITION EVALUATION COMMITTEE MEMBERS AND PROFESSIONAL DEVELOPMENT PROGRAMS PROPONENTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765952	2024-07-11	15:32:49.7626116	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3693\r\nCompanyInstitution: SDO- BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: November 02, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 47,530.00\r\nPositionHeld: SENIOR EDUCATION PROGRAM SPECIALIST\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-2\r\nStatus: Permanent\r\nToDate: November 01, 2023\r\n	admin	Experiences	1
765953	2024-07-11	15:32:49.7676117	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3693\r\nCompanyInstitution: SDO- BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: November 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 42,099.00\r\nPositionHeld: SENIOR EDUCATION PROGRAM SPECIALIST\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: November 01, 2020\r\n	admin	Experiences	1
765954	2024-07-11	15:32:49.7736116	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3693\r\nCompanyInstitution: SDO- BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: November 02, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 39,151.00\r\nPositionHeld: SENIOR EDUCATION PROGRAM SPECIALIST\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
765955	2024-07-11	15:32:49.7776116	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3693\r\nCompanyInstitution: SDO- BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: June 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 30,044.00\r\nPositionHeld: EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: November 01, 2017\r\n	admin	Experiences	1
765956	2024-07-11	15:32:49.7826116	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3693\r\nCompanyInstitution: SDO- BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 28,417.00\r\nPositionHeld: EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
765957	2024-07-11	15:32:49.7876116	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3693\r\nCompanyInstitution: SDO- BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: June 01, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 26,878.00\r\nPositionHeld: EDUCATION PROGRAM SPECIALIST II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
765958	2024-07-11	15:32:49.7936116	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3693\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- SAN ISIDRO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 26, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 21,867.00\r\nPositionHeld:  TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: May 31, 2015\r\n	admin	Experiences	1
765959	2024-07-11	15:32:49.7976117	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3693\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- SAN ISIDRO ELEMENTARY SCHOOL \r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 21,650.00\r\nPositionHeld:  TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: August 25, 2014\r\n	admin	Experiences	1
765960	2024-07-11	15:32:49.8036117	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3693\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- SAN ISIDRO ELEMENTARY SCHOOL \r\nExperienceId: 0\r\nFromDate: August 27, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 19,908.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
765961	2024-07-11	15:32:49.8076116	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3693\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- SAN ISIDRO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 19,658.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: August 26, 2011\r\n	admin	Experiences	1
765962	2024-07-11	15:32:49.8136116	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3693\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- SAN ISIDRO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 04, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 17,880.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
766024	2024-07-11	16:01:32.5486878	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BREAD MAKING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765963	2024-07-11	15:32:49.8176118	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3693\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- SAN ISIDRO ELEMENTARY SCHOOL  \r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 16,101.00\r\nPositionHeld:  TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
765964	2024-07-11	15:32:49.8236117	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3693\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- SAN ISIDRO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 26, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 13,512.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
765965	2024-07-11	15:32:49.8276116	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3693\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- SAN ISIDRO ELEMENTARY SCHOOL  \r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,748.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: August 25, 2008\r\n	admin	Experiences	1
765966	2024-07-11	15:32:49.8326119	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3693\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- SAN ISIDRO ELEMENTARY SCHOOL \r\nExperienceId: 0\r\nFromDate: September 10, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 11,589.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
765967	2024-07-11	15:32:49.8376118	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3693\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- SAN ISIDRO ELEMENTARY SCHOOL   \r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,933.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: September 09, 2007\r\n	admin	Experiences	1
765968	2024-07-11	15:32:49.8426118	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3693\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- SAN ISIDRO ELEMENTARY SCHOOL  \r\nExperienceId: 0\r\nFromDate: July 17, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
765969	2024-07-11	15:32:49.8487286	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3693\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- JULIAN A. PASTOR ELEMENTARY SCHOOL \r\nExperienceId: 0\r\nFromDate: September 19, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: July 16, 2006\r\n	admin	Experiences	1
765970	2024-07-11	15:32:49.8537288	<Undetected>	Update	BasicInformationId: 3693\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3490\r\n	BasicInformationId: 3693\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3490\r\n	admin	Questionnaires	1
765971	2024-07-11	15:34:50.9316772	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL GOVERNANCE COUNCIL FUNCTIONALITY ASSESSMENT TOOL CAPACITY BUILDING WORKSHOP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765986	2024-07-11	15:39:47.5862571	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL ORIENTAION ON THE STANDARDIZED ADMINISTRATION OF VARIOUS ASSESSMENT PROGRAMS FOR FISCAL YEAR 2023\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765987	2024-07-11	15:43:16.1654287	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION EDUCATION DEVELOPMENT PLANNING ADJUSTMENT CUM POST PLANNING WORKSHOP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765988	2024-07-11	15:46:15.7156259	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 1ST DEPED NATIONAL CONFERENCE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765989	2024-07-11	15:47:03.6335826	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 1st DEPED NATIONAL CONFERENCE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
765992	2024-07-11	15:50:48.6115174	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL GOVERNANCE COUNCIL FUNCTIONALITY ASSESSMENT TOOL CAPACITY BUILDING WORKSHOP BY BUREAU OF HUMAN RESOURCE AND ORGANIZATIONAL DEVELOPMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766966	2024-07-12	15:43:59.2211004	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3707\r\nRecognitionId: 0\r\nRecognitionName: GAWAD KAWANI FOR HAVING WON TASK CHAMP AWARD (PRODUCTIVE EMPLOYEE)\r\n	admin	Recognitions	1
765973	2024-07-11	15:38:35.4189716	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3695\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: July 04, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 88,410.00\r\nPositionHeld: CHIEF EDUCATION SUPERVISOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 0-0\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
765974	2024-07-11	15:38:35.4229582	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3695\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 73,214.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 0-0\r\nStatus: Permanent\r\nToDate: July 03, 2022\r\n	admin	Experiences	1
765975	2024-07-11	15:38:35.4279415	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3695\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 71,666.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 0-0\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
765976	2024-07-11	15:38:35.4329250	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3695\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: June 08, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 70,118.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 0-0\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
765977	2024-07-11	15:38:35.4379084	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3695\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 69,067.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 0-0\r\nStatus: Permanent\r\nToDate: June 07, 2020\r\n	admin	Experiences	1
765978	2024-07-11	15:38:35.4428917	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3695\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 67,469.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 0-0\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
765979	2024-07-11	15:38:35.4478749	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 12, LOT 2\r\nAddress2: CENTER PLAIN HOMES\r\nBarangay: TINGA LABAC\r\nBasicInformationId: 3695\r\nBirthDate: October 01, 1972\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ANGELISA.AMOTO001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ANGELISA\r\nFullName: ANGELISA A. AMOTO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.05\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: AMOTO\r\nMaidenName: \r\nMiddleName: AREVALO\r\nMobileNumber: 09338688795\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 12, LOT 2\r\nPermanentAddress2: CENTER PLAIN HOMES\r\nPermanentBarangay: TINGA LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ÑINA,ST\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: ÑINA,ST\r\nTIN: \r\nWeight: 64\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 12, LOT 2\r\nAddress2: CENTER PLAIN HOMES\r\nBarangay: TINGA LABAC\r\nBasicInformationId: 3695\r\nBirthDate: October 01, 1972\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ANGELISA.AMOTO001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ANGELISA\r\nFullName: ANGELISA A. AMOTO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.05\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: AMOTO\r\nMaidenName: \r\nMiddleName: AREVALO\r\nMobileNumber: 09338688795\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 12, LOT 2\r\nPermanentAddress2: CENTER PLAIN HOMES\r\nPermanentBarangay: TINGA LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ÑINA,ST\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ÑINA,ST\r\nTIN: \r\nWeight: 64\r\nZipCode: 4200\r\n	admin	BasicInformation	1
765980	2024-07-11	15:38:35.4518615	<Undetected>	Update	BasicInformationId: 3695\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 0437239428\r\nEmployeeRelativeId: 3634\r\nExtensionName: \r\nFirstName: DANILO\r\nFullName: DANILO PIZAÑA AMOTO\r\nGender: Male\r\nLastName: AMOTO\r\nMaidenName: \r\nMiddleName: PIZAÑA\r\nOccupation: ELECTRICAL ENGINEER \r\nRelationship: Husband\r\n	BasicInformationId: 3695\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 0437239428\r\nEmployeeRelativeId: 3634\r\nExtensionName: \r\nFirstName: DANILO\r\nFullName: DANILO AMOTO\r\nGender: Male\r\nLastName: AMOTO\r\nMaidenName: \r\nMiddleName: PIZAÑA\r\nOccupation: ELECTRICAL ENGINEER \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
765981	2024-07-11	15:38:35.4568449	<Undetected>	Update	BasicInformationId: 3695\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3635\r\nExtensionName: \r\nFirstName: LUCIO\r\nFullName: LUCIO BAES AREVALO\r\nGender: Male\r\nLastName: AREVALO\r\nMaidenName: \r\nMiddleName: BAES\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3695\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3635\r\nExtensionName: \r\nFirstName: LUCIO\r\nFullName: LUCIO AREVALO\r\nGender: Male\r\nLastName: AREVALO\r\nMaidenName: \r\nMiddleName: BAES\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
766967	2024-07-12	15:43:59.2311468	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3707\r\nRecognitionId: 0\r\nRecognitionName: DEALT AWARD (DEDICATED EMPLOYEE WITHOUT ABSENCE, LEAVES AND TARDINESS) FOR MANIFEST PUNCTUALITY  AND COMMITMENT TO WORK AND DEDICATION TO DUTY \r\n	admin	Recognitions	1
765982	2024-07-11	15:38:35.4618282	<Undetected>	Update	BasicInformationId: 3695\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3636\r\nExtensionName: \r\nFirstName: EUFROSINA\r\nFullName: EUFROSINA CANTOS\r\nGender: Female\r\nLastName: AGUADO\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3695\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3636\r\nExtensionName: \r\nFirstName: EUFROSINA\r\nFullName: EUFROSINA AGUADO\r\nGender: Female\r\nLastName: AGUADO\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
765983	2024-07-11	15:38:35.4668118	<Undetected>	Update	BasicInformationId: 3695\r\nBirthDate: October 18, 2005\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3637\r\nExtensionName: \r\nFirstName: AARON DANIEL\r\nFullName: AARON DANIEL A AMOTO\r\nGender: Male\r\nLastName: AMOTO\r\nMaidenName: \r\nMiddleName: A\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3695\r\nBirthDate: October 18, 2005\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3637\r\nExtensionName: \r\nFirstName: AARON DANIEL\r\nFullName: AARON DANIEL AMOTO\r\nGender: Male\r\nLastName: AMOTO\r\nMaidenName: \r\nMiddleName: A\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
765984	2024-07-11	15:38:35.4707981	<Undetected>	Update	BasicInformationId: 3695\r\nBirthDate: July 24, 2014\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3638\r\nExtensionName: \r\nFirstName: A\r\nFullName: A AMOTO INDIGO NATANIEL\r\nGender: Male\r\nLastName: INDIGO NATANIEL\r\nMaidenName: \r\nMiddleName: AMOTO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3695\r\nBirthDate: July 24, 2014\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3638\r\nExtensionName: \r\nFirstName: A\r\nFullName: A INDIGO NATANIEL\r\nGender: Male\r\nLastName: INDIGO NATANIEL\r\nMaidenName: \r\nMiddleName: AMOTO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
765985	2024-07-11	15:38:35.4757817	<Undetected>	Update	BasicInformationId: 3695\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3492\r\n	BasicInformationId: 3695\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3492\r\n	admin	Questionnaires	1
765993	2024-07-11	15:51:02.8872579	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3695\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 60,491.00\r\nPositionHeld: EDUCATION PROGRAM SPECIALIST \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 0-0\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
765994	2024-07-11	15:51:02.8922414	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3695\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: June 09, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 54,234.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 0-0\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
765995	2024-07-11	15:51:02.8962279	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3695\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 53,503.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 0-0\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
765996	2024-07-11	15:51:02.9022079	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3695\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 48,032.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 0-0\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
765997	2024-07-11	15:51:02.9061946	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3695\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: June 09, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 37,812.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 0-0\r\nStatus: Permanent\r\nToDate: December 31, 2014\r\n	admin	Experiences	1
765998	2024-07-11	15:51:02.9111779	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3695\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 42,652.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 0-0\r\nStatus: Permanent\r\nToDate: June 08, 2014\r\n	admin	Experiences	1
765999	2024-07-11	15:51:02.9161613	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3695\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: June 08, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 37,812.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 0-0\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
766025	2024-07-11	16:03:33.1946502	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING ON CRAFTING M&E TOOL FOR THE IMPLEMENTED GAD PPAS AND OTHER STRUCTURES, FACILITIES AND POLICIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766000	2024-07-11	15:51:02.9211446	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3695\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 32,810.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 0-0\r\nStatus: Permanent\r\nToDate: June 07, 2011\r\n	admin	Experiences	1
766001	2024-07-11	15:51:02.9261279	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3695\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 29,052.00\r\nPositionHeld: PRINCIPAL II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 0-0\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
766002	2024-07-11	15:51:02.9311112	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3695\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 25,295.00\r\nPositionHeld: PRINCIPAL II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 0-0\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
766003	2024-07-11	15:51:02.9350979	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3695\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 12, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 20,318.00\r\nPositionHeld: PRINCIPAL II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 0-0\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
766004	2024-07-11	15:51:02.9400814	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3695\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 17,425.00\r\nPositionHeld: PRINCIPAL I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 0-0\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
766005	2024-07-11	15:51:02.9450647	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3695\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 16, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 15,841.00\r\nPositionHeld: PRINCIPAL I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 0-0\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
766010	2024-07-11	16:00:33.2483711	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3695\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: August 07, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 13,300.00\r\nPositionHeld: EHT III \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 0-0\r\nStatus: Permanent\r\nToDate: January 15, 2006\r\n	admin	Experiences	1
766011	2024-07-11	16:00:33.2533544	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3695\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: December 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 11,167.00\r\nPositionHeld: TEACHER III \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 0-0\r\nStatus: Permanent\r\nToDate: August 06, 2002\r\n	admin	Experiences	1
766012	2024-07-11	16:00:33.2593343	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3695\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 10,535.00\r\nPositionHeld: TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 0-0\r\nStatus: Permanent\r\nToDate: November 30, 2001\r\n	admin	Experiences	1
766013	2024-07-11	16:00:33.2633210	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3695\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 10,033.00\r\nPositionHeld: TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 0-0\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
766014	2024-07-11	16:00:33.2693011	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3695\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 9,121.00\r\nPositionHeld: TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 0-0\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
766027	2024-07-11	16:05:42.5071596	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING WORKSHOP ON WRITING QUANTITATIVE AND QUALITATIVE RESEARCH IN EDUCATION CUM UPDATES ON RESEARCH GUIDLINES AND POLICIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766015	2024-07-11	16:00:33.2732876	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3695\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: December 01, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 9,121.00\r\nPositionHeld: TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 0-0\r\nStatus: Permanent\r\nToDate: December 31, 1998\r\n	admin	Experiences	1
766016	2024-07-11	16:00:33.2782711	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3695\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: November 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 0-0\r\nStatus: Permanent\r\nToDate: November 30, 1998\r\n	admin	Experiences	1
766017	2024-07-11	16:00:33.2832543	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3695\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 7,309.00\r\nPositionHeld: TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 0-0\r\nStatus: Permanent\r\nToDate: October 30, 1997\r\n	admin	Experiences	1
766018	2024-07-11	16:00:33.2882376	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3695\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 6,013.00\r\nPositionHeld: TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 0-0\r\nStatus: Permanent\r\nToDate: December 31, 1996\r\n	admin	Experiences	1
766019	2024-07-11	16:00:33.2932211	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3695\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: July 25, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 4,902.00\r\nPositionHeld: TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 0-0\r\nStatus: Permanent\r\nToDate: December 31, 1995\r\n	admin	Experiences	1
766020	2024-07-11	16:00:33.2982044	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3695\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: February 04, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 3,102.00\r\nPositionHeld: TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 0-0\r\nStatus: Permanent\r\nToDate: March 05, 1994\r\n	admin	Experiences	1
766021	2024-07-11	16:00:59.2621310	<Undetected>	Update	BasicInformationId: 3693\r\nBirthDate: January 01, 0001\r\nCivilStatus: Widow\r\nContactNumber: \r\nEmployeeRelativeId: 3639\r\nExtensionName: \r\nFirstName: JIMMY\r\nFullName: JIMMY CASTILLO BABAO\r\nGender: Male\r\nLastName: BABAO\r\nMaidenName: \r\nMiddleName: CASTILLO\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3693\r\nBirthDate: January 01, 0001\r\nCivilStatus: Widow\r\nContactNumber: \r\nEmployeeRelativeId: 3639\r\nExtensionName: \r\nFirstName: JIMMY\r\nFullName: JIMMY BABAO\r\nGender: Male\r\nLastName: BABAO\r\nMaidenName: \r\nMiddleName: CASTILLO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
766022	2024-07-11	16:00:59.2671139	<Undetected>	Update	BasicInformationId: 3693\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3640\r\nExtensionName: \r\nFirstName: RAFAEL\r\nFullName: RAFAEL PENTINIO RAYOS\r\nGender: Male\r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: PENTINIO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3693\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3640\r\nExtensionName: \r\nFirstName: RAFAEL\r\nFullName: RAFAEL RAYOS\r\nGender: Male\r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: PENTINIO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
766023	2024-07-11	16:00:59.2720973	<Undetected>	Update	BasicInformationId: 3693\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3641\r\nExtensionName: \r\nFirstName: SIOMANDA\r\nFullName: SIOMANDA CUTETO MEDINA\r\nGender: Female\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: CUTETO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3693\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3641\r\nExtensionName: \r\nFirstName: SIOMANDA\r\nFullName: SIOMANDA MEDINA\r\nGender: Female\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: CUTETO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
766028	2024-07-11	16:05:44.2602674	<Undetected>	Insert	BasicInformationId: \r\nCommunityServiceId: \r\nDateFrom: \r\nDateTo: \r\nNumberOfHours: \r\nOrganizationAddress: \r\nOrganizationName: \r\nStatus: \r\n	BasicInformationId: 3695\r\nCommunityServiceId: 0\r\nDateFrom: April 04, 2022\r\nDateTo: April 04, 2022\r\nNumberOfHours: 0\r\nOrganizationAddress: CARRER SERVICE WRITTEN EXAMINATION\r\nOrganizationName: CARRER SERVICE WRITTEN EXAMINATION \r\nStatus: MEMBER-ADVOCATE \r\n	admin	CommunityServices	1
766029	2024-07-11	16:05:44.2652507	<Undetected>	Insert	BasicInformationId: \r\nCommunityServiceId: \r\nDateFrom: \r\nDateTo: \r\nNumberOfHours: \r\nOrganizationAddress: \r\nOrganizationName: \r\nStatus: \r\n	BasicInformationId: 3695\r\nCommunityServiceId: 0\r\nDateFrom: June 25, 2021\r\nDateTo: June 25, 2021\r\nNumberOfHours: 0\r\nOrganizationAddress: THE EDUCATOR'S LINK: CONNECTING TEACHERS AROUND THE GLOBE\r\nOrganizationName: THE EDUCATOR'S LINK: CONNECTING TEACHERS AROUND THE GLOBE \r\nStatus: MEMBER- ADVOCATE \r\n	admin	CommunityServices	1
766031	2024-07-11	16:10:24.7854346	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3695\r\nSkillId: 0\r\nSkillName: DRIVING \r\n	admin	Skills	1
766032	2024-07-11	16:10:24.7954014	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3695\r\nSkillId: 0\r\nSkillName: SEWING \r\n	admin	Skills	1
766033	2024-07-11	16:10:24.8003845	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3695\r\nSkillId: 0\r\nSkillName: COOKING \r\n	admin	Skills	1
766030	2024-07-11	16:09:45.5631019	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING CUM WORKSHOP FOR SDO M&E FOCAL PERSONS ON DEVELOPING MONITORING TOOLS FOR DIFFERENT PROGRAMS, PROJECTS AND ACTIVITIES (PPAS)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766044	2024-07-11	16:11:31.5310427	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ROVER SCOUT ORIENTATION VIGIL AND INVESTITURE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766045	2024-07-11	16:12:42.8345725	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3693\r\nEmployeeTrainingId: 0\r\nFromDate: December 06, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: REGION IV-A (CALABARZON)- FTAD\r\nStatus: \r\nToDate: December 07, 2023\r\nTrainingId: 16105\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766046	2024-07-11	16:12:42.8395725	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3693\r\nEmployeeTrainingId: 0\r\nFromDate: November 06, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BUREAU OF EDUCATION ASSESSMENT (BEA)\r\nStatus: \r\nToDate: November 08, 2023\r\nTrainingId: 16106\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766047	2024-07-11	16:12:42.8445723	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3693\r\nEmployeeTrainingId: 0\r\nFromDate: September 25, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: September 26, 2023\r\nTrainingId: 16107\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766048	2024-07-11	16:12:42.8505723	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3693\r\nEmployeeTrainingId: 0\r\nFromDate: June 19, 2023\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: BHROB-CENTRAL OFFICE\r\nStatus: \r\nToDate: June 23, 2023\r\nTrainingId: 16109\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766049	2024-07-11	16:12:42.8545723	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3693\r\nEmployeeTrainingId: 0\r\nFromDate: December 06, 2022\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: HUMAN RESOURCE AND ORGANIZATIONAL DEVELOPMENT, NEAP, MARIKINA \r\nStatus: \r\nToDate: December 07, 2022\r\nTrainingId: 16110\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766050	2024-07-11	16:12:42.8605723	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3693\r\nEmployeeTrainingId: 0\r\nFromDate: November 08, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: REGION IV-A (CALABARZON) - QAD\r\nStatus: \r\nToDate: November 10, 2022\r\nTrainingId: 16111\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766051	2024-07-11	16:12:42.8645723	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3693\r\nEmployeeTrainingId: 0\r\nFromDate: October 25, 2022\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: REGION IV-A (CALABARZON) QAD\r\nStatus: \r\nToDate: October 27, 2022\r\nTrainingId: 16112\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766052	2024-07-11	16:12:42.8705723	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3693\r\nEmployeeTrainingId: 0\r\nFromDate: October 11, 2022\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: REGION IV-A (CALABARZON) QAD\r\nStatus: \r\nToDate: October 14, 2022\r\nTrainingId: 16113\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766053	2024-07-11	16:12:42.8745723	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3693\r\nEmployeeTrainingId: 0\r\nFromDate: October 05, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: TESDA\r\nStatus: \r\nToDate: October 05, 2022\r\nTrainingId: 16115\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766054	2024-07-11	16:12:42.8805724	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3693\r\nEmployeeTrainingId: 0\r\nFromDate: September 19, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: REGION IV-A (CALABARZON) QAD\r\nStatus: \r\nToDate: September 21, 2022\r\nTrainingId: 16116\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766055	2024-07-11	16:12:42.8845724	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3693\r\nEmployeeTrainingId: 0\r\nFromDate: August 03, 2022\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: August 04, 2022\r\nTrainingId: 15799\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766056	2024-07-11	16:12:42.8895723	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3693\r\nEmployeeTrainingId: 0\r\nFromDate: June 30, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: June 30, 2022\r\nTrainingId: 15751\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766057	2024-07-11	16:12:42.8945723	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3693\r\nEmployeeTrainingId: 0\r\nFromDate: June 16, 2022\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: REGION IV-A (CALABARZON) QAD\r\nStatus: \r\nToDate: June 17, 2022\r\nTrainingId: 16119\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766058	2024-07-11	16:12:42.8995724	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3693\r\nEmployeeTrainingId: 0\r\nFromDate: March 31, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BOYSCOUT OF THE PHILIPPINES\r\nStatus: \r\nToDate: March 31, 2022\r\nTrainingId: 16121\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766094	2024-07-11	16:21:09.7081967	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3693\r\nSkillId: 0\r\nSkillName: CREATING POEM\r\n	admin	Skills	1
766095	2024-07-11	16:21:09.7161959	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3693\r\nRecognitionId: 0\r\nRecognitionName: MERITORIOUS PERFORMANCE AWARD\r\n	admin	Recognitions	1
766096	2024-07-11	16:21:09.7212340	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3693\r\nRecognitionId: 0\r\nRecognitionName: DEALT AWARD\r\n	admin	Recognitions	1
766097	2024-07-11	16:21:09.7302331	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3693\r\nOrganizationId: 0\r\nOrganizationName: NATIONAL EMPLOYEES UNION\r\n	admin	Organizations	1
766098	2024-07-11	16:21:09.7341961	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3693\r\nOrganizationId: 0\r\nOrganizationName: LIONS CLUB INTERNATIONAL\r\n	admin	Organizations	1
766099	2024-07-11	16:21:09.7401957	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3693\r\nOrganizationId: 0\r\nOrganizationName: ROVER SCOUTS OF THE PHILIPPINES\r\n	admin	Organizations	1
766100	2024-07-11	16:21:09.7441957	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3693\r\nCharacterReferenceId: 0\r\nCompanyAddress: CENTRAL PLAIN HOMES, TINGA LABAC, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09338688795\r\nExtensionName: \r\nFirstName: ANGELISA \r\nLastName: AMOTO\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766101	2024-07-11	16:21:09.7491958	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3693\r\nCharacterReferenceId: 0\r\nCompanyAddress: MALVAR, BATANGAS\r\nCompanyName: \r\nContactNumber: 09688568869\r\nExtensionName: \r\nFirstName: FE\r\nLastName: FALLURIN\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766102	2024-07-11	16:21:09.7541965	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3693\r\nCharacterReferenceId: 0\r\nCompanyAddress: BLK 15 357, MERCEDES HOMES, SOROSORO ILAYA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09178213626\r\nExtensionName: \r\nFirstName: MARIA JOSEFINA\r\nLastName: LAGMAN\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766103	2024-07-11	16:21:09.7591968	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: DALIG\r\nBasicInformationId: 3693\r\nBirthDate: April 15, 1978\r\nBirthPlace: ISLA VERDE, BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: magielyn.babao@deped.gov.ph\r\nExtensionName: \r\nFirstName: MAGIELYN\r\nFullName: MAGIELYN R. BABAO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BABAO\r\nMaidenName: \r\nMiddleName: RAYOS\r\nMobileNumber: 09217516928\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: DALIG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 2\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 2\r\nTIN: \r\nWeight: 58\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: DALIG\r\nBasicInformationId: 3693\r\nBirthDate: April 15, 1978\r\nBirthPlace: ISLA VERDE, BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: magielyn.babao@deped.gov.ph\r\nExtensionName: \r\nFirstName: MAGIELYN\r\nFullName: MAGIELYN R. BABAO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02002087497\r\nHDMF: 1490-0097-4541\r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BABAO\r\nMaidenName: \r\nMiddleName: RAYOS\r\nMobileNumber: 09217516928\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: DALIG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 2\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050077619-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1123217-9\r\nStreetName: PUROK 2\r\nTIN: 929-380-075-0000\r\nWeight: 58\r\nZipCode: 4200\r\n	admin	BasicInformation	1
766104	2024-07-11	16:21:09.7641968	<Undetected>	Update	BasicInformationId: 3693\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3490\r\n	BasicInformationId: 3693\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3490\r\n	admin	Questionnaires	1
766059	2024-07-11	16:13:04.3006807	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3695\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS \r\nCompanyName: \r\nContactNumber: 723-3586\r\nExtensionName: \r\nFirstName: HERMOGENES \r\nLastName: PANGANIBAN \r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766060	2024-07-11	16:13:04.3076573	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3695\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS \r\nCompanyName: \r\nContactNumber: 786-0296\r\nExtensionName: \r\nFirstName: CATHERINE \r\nLastName: MARANAN\r\nMiddleName: V\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766061	2024-07-11	16:13:04.3126407	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3695\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 723-3586 LOCAL 103\r\nExtensionName: \r\nFirstName: SACORO \r\nLastName: COMIA \r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766062	2024-07-11	16:13:04.3206140	<Undetected>	Update	BasicInformationId: 3695\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3492\r\n	BasicInformationId: 3695\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3492\r\n	admin	Questionnaires	1
766063	2024-07-11	16:14:23.0504743	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 12, LOT 2\r\nAddress2: CENTER PLAIN HOMES\r\nBarangay: TINGA LABAC\r\nBasicInformationId: 3695\r\nBirthDate: October 01, 1972\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ANGELISA.AMOTO001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ANGELISA\r\nFullName: ANGELISA A. AMOTO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.05\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: AMOTO\r\nMaidenName: \r\nMiddleName: AREVALO\r\nMobileNumber: 09338688795\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 12, LOT 2\r\nPermanentAddress2: CENTER PLAIN HOMES\r\nPermanentBarangay: TINGA LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ÑINA,ST\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ÑINA,ST\r\nTIN: \r\nWeight: 64\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 12, LOT 2\r\nAddress2: CENTER PLAIN HOMES\r\nBarangay: TINGA LABAC\r\nBasicInformationId: 3695\r\nBirthDate: October 01, 1972\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ANGELISA.AMOTO001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ANGELISA\r\nFullName: ANGELISA A. AMOTO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02002927797\r\nHDMF: 1490-0096-8890\r\nHeight: 1.05\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: AMOTO\r\nMaidenName: \r\nMiddleName: AREVALO\r\nMobileNumber: 09338688795\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 12, LOT 2\r\nPermanentAddress2: CENTER PLAIN HOMES\r\nPermanentBarangay: TINGA LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ÑINA,ST\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000007016-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ÑINA,ST\r\nTIN: 174-047-079-0000\r\nWeight: 64\r\nZipCode: 4200\r\n	admin	BasicInformation	1
766086	2024-07-11	16:16:09.6555024	<Undetected>	Update	BasicInformationId: 3695\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3636\r\nExtensionName: \r\nFirstName: EUFROSINA\r\nFullName: EUFROSINA AGUADO\r\nGender: Female\r\nLastName: AGUADO\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3695\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3636\r\nExtensionName: \r\nFirstName: EUFROSINA\r\nFullName: EUFROSINA CANTOS\r\nGender: Female\r\nLastName: AGUADO\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
766087	2024-07-11	16:16:09.6604859	<Undetected>	Update	BasicInformationId: 3695\r\nBirthDate: July 24, 2014\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3638\r\nExtensionName: \r\nFirstName: A\r\nFullName: A INDIGO NATANIEL\r\nGender: Male\r\nLastName: INDIGO NATANIEL\r\nMaidenName: \r\nMiddleName: AMOTO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3695\r\nBirthDate: July 24, 2014\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3638\r\nExtensionName: \r\nFirstName: A\r\nFullName: A AMOTO INDIGO NATANIEL\r\nGender: Male\r\nLastName: INDIGO NATANIEL\r\nMaidenName: \r\nMiddleName: AMOTO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766088	2024-07-11	16:18:45.7767812	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PROGRAM IMPLEMENTATION REVIEW AND TECHNICAL ASSISTANCE PROVISION ON THE DEVELOPMENT OF DIVISION STRATEGIC HRD PLANS FOR 2024\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766090	2024-07-11	16:19:24.0824318	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3695\r\nEmployeeTrainingId: 0\r\nFromDate: January 11, 2024\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: SCHOOLS DIVISION OFFICE OF BATANGAS CITY \r\nStatus: \r\nToDate: January 12, 2024\r\nTrainingId: 15232\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766091	2024-07-11	16:19:24.0923979	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3695\r\nEmployeeTrainingId: 0\r\nFromDate: November 28, 2023\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: REGION IV A CALABARZON \r\nStatus: \r\nToDate: November 30, 2023\r\nTrainingId: 16123\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766092	2024-07-11	16:19:24.1103787	<Undetected>	Update	BasicInformationId: 3695\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3636\r\nExtensionName: \r\nFirstName: EUFROSINA\r\nFullName: EUFROSINA CANTOS\r\nGender: Female\r\nLastName: AGUADO\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3695\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3636\r\nExtensionName: \r\nFirstName: EUFROSINA\r\nFullName: EUFROSINA AGUADO\r\nGender: Female\r\nLastName: AGUADO\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
766093	2024-07-11	16:19:24.1252883	<Undetected>	Update	BasicInformationId: 3695\r\nBirthDate: July 24, 2014\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3638\r\nExtensionName: \r\nFirstName: A\r\nFullName: A AMOTO INDIGO NATANIEL\r\nGender: Male\r\nLastName: INDIGO NATANIEL\r\nMaidenName: \r\nMiddleName: AMOTO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3695\r\nBirthDate: July 24, 2014\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3638\r\nExtensionName: \r\nFirstName: A\r\nFullName: A INDIGO NATANIEL\r\nGender: Male\r\nLastName: INDIGO NATANIEL\r\nMaidenName: \r\nMiddleName: AMOTO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766064	2024-07-11	16:15:05.8365588	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION AND CAPACITY BUILDING ON LRMBS POLICIES AND GUIDELINES, ORGANIZATION AND MANAGEMENT OF LRCS SCHOOL CUM CRAFTING OF SCHOOL AND DIVISION LEARNING RESOURCE PLAN SY 2023 - 2024\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766065	2024-07-11	16:16:16.9163254	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: EL SITIO\r\nBarangay: DUMANTAY\r\nBasicInformationId: 0\r\nBirthDate: September 19, 1987\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: con.balse@deped.gov.ph\r\nExtensionName: \r\nFirstName: CONIE\r\nFullName: CONIE M. BALSE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 5.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BALSE\r\nMaidenName: \r\nMiddleName: MENIA\r\nMobileNumber: 09506940675\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN JUAN\r\nPermanentCity: TINGLOY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4203\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: 5TH\r\nTIN: \r\nWeight: 74\r\nZipCode: 4200\r\n	admin	BasicInformation	1
766066	2024-07-11	16:16:17.0818800	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: 3RD HONOR\r\nBasicInformationId: 3696\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 2000\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAN JUAN ELEMENTARY SCHOOL\r\nYearGraduated: 2000\r\n	admin	EducationalBackgrounds	1
766067	2024-07-11	16:16:17.0858800	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: 7TH PLACER \r\nBasicInformationId: 3696\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2000\r\nDateTo: 2004\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: TINGLOY NATIONAL HIGH SCHOOL\r\nYearGraduated: 2004\r\n	admin	EducationalBackgrounds	1
766068	2024-07-11	16:16:17.0903835	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3696\r\nCourse: \r\nCourseId: 1351\r\nCourseOrMajor: \r\nDateFrom: 2004\r\nDateTo: 2008\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: LPU - BATANGAS \r\nYearGraduated: 2008\r\n	admin	EducationalBackgrounds	1
766069	2024-07-11	16:16:17.0953861	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3696\r\nCourse: \r\nCourseId: 1352\r\nCourseOrMajor: \r\nDateFrom: 2011\r\nDateTo: 2012\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: LPU - BATANGAS\r\nYearGraduated: 2012\r\n	admin	EducationalBackgrounds	1
766070	2024-07-11	16:16:17.0993861	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3696\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JEFFERSON\r\nFullName: JEFFERSON ALVAREZ BALSE\r\nGender: Male\r\nLastName: BALSE\r\nMaidenName: \r\nMiddleName: ALVAREZ\r\nOccupation: CHIEF COOK\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
766071	2024-07-11	16:16:17.1043860	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3696\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ELPIDIO\r\nFullName: ELPIDIO HERILLA MENIA\r\nGender: Male\r\nLastName: MENIA\r\nMaidenName: \r\nMiddleName: HERILLA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
766072	2024-07-11	16:16:17.1083868	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3696\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LEONA\r\nFullName: LEONA BINAY ALBANIA\r\nGender: Female\r\nLastName: ALBANIA\r\nMaidenName: \r\nMiddleName: BINAY\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
766073	2024-07-11	16:16:17.1133860	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3696\r\nEmployeeTrainingId: 0\r\nFromDate: December 12, 2023\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPED CENTRAL OFFICE\r\nStatus: \r\nToDate: December 12, 2023\r\nTrainingId: 16114\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766074	2024-07-11	16:16:17.1183861	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3696\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: SDO - BATANGAS CITY \r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15178\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773254	2025-03-20	09:16:44.7574595	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3841\r\nOrganizationId: 0\r\nOrganizationName: GIRL SCOUT OF THE PHILIPPINES, BATANGAS CITY COUNCIL\r\n	admin	Organizations	1
766075	2024-07-11	16:16:17.1223860	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3696\r\nEmployeeTrainingId: 0\r\nFromDate: November 17, 2023\r\nHours: 8\r\nNatureOfParticipation: TEHCNICAL\r\nSponsoringAgency: SDO - BATANGAS CITY \r\nStatus: \r\nToDate: November 17, 2023\r\nTrainingId: 15303\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766076	2024-07-11	16:16:17.1263860	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3696\r\nEmployeeTrainingId: 0\r\nFromDate: November 19, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO - BATANGAS CITY \r\nStatus: \r\nToDate: November 19, 2023\r\nTrainingId: 16117\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766077	2024-07-11	16:16:17.1313860	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3696\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO - BATANGAS CITY \r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15045\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766078	2024-07-11	16:16:17.1353859	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3696\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO - BATANGAS CITY \r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15725\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766079	2024-07-11	16:16:17.1403860	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3696\r\nEmployeeTrainingId: 0\r\nFromDate: March 22, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED REGION IV-A \r\nStatus: \r\nToDate: March 24, 2023\r\nTrainingId: 16120\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766080	2024-07-11	16:16:17.1443861	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3696\r\nEmployeeTrainingId: 0\r\nFromDate: March 21, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO - BATANGAS CITY \r\nStatus: \r\nToDate: March 24, 2023\r\nTrainingId: 16122\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766081	2024-07-11	16:16:17.1493860	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3696\r\nDateOfExamination: August 01, 2014\r\nDateOfRelease: September 19, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 01, 2014\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1355516\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 80.4\r\nTitle: LICENSE PROFESSIONAL TEACHER\r\n	admin	Eligibilities	1
766082	2024-07-11	16:16:17.1533859	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3696\r\nCompanyInstitution: LPU - BATANGAS\r\nExperienceId: 0\r\nFromDate: April 28, 2008\r\nIsGovernmentService: False\r\nMonthlySalary: 14,000.00\r\nPositionHeld: GUIDANCE COUNSELOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: -\r\nStatus: Casual\r\nToDate: September 15, 2016\r\n	admin	Experiences	1
766083	2024-07-11	16:16:17.1583859	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3696\r\nCompanyInstitution: DEPED BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: September 16, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 22,892.00\r\nPositionHeld: PROJECT DEVELOPMENT OFFICER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: August 12, 2018\r\n	admin	Experiences	1
766084	2024-07-11	16:16:17.1623861	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3696\r\nCompanyInstitution: DEPED BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: August 13, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 40,800.00\r\nPositionHeld: EDUCATION PROGRAM SPEACIALIST II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-2\r\nStatus: Permanent\r\nToDate: July 11, 2024\r\n	admin	Experiences	1
766085	2024-07-11	16:16:17.1673859	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3696\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
766089	2024-07-11	16:19:19.1035630	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2022 PRIVATE SCHOOLS SUMMIT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766105	2024-07-11	16:21:32.4700077	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CONSULTATIVE WORKSHOP ON A DEVELOPMENT OF TECHNICAL ASSISTANCE RESOURCE PACKAGE FOR LEARNING CONTINUITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766112	2024-07-11	16:25:42.1155140	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING CUM WORKSHOP ON THE PROCESSING OF THE APPLICATION OF SPECIAL ORDER\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773255	2025-03-20	09:16:44.7624609	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3841\r\nOrganizationId: 0\r\nOrganizationName: SCHOOL FACULTY ORGANIZATION\r\n	admin	Organizations	1
766106	2024-07-11	16:21:44.9461902	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3695\r\nEmployeeTrainingId: 0\r\nFromDate: November 28, 2023\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: REGION IV A CALABARZON \r\nStatus: \r\nToDate: November 28, 2023\r\nTrainingId: 16123\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766107	2024-07-11	16:21:44.9511735	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3695\r\nEmployeeTrainingId: 0\r\nFromDate: April 11, 2023\r\nHours: 40\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPARTMENT OF EDUCATION- CENTRAL OFFICE\r\nStatus: \r\nToDate: April 15, 2023\r\nTrainingId: 16067\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766108	2024-07-11	16:23:56.4727559	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL DRRM EVALUATION AND PLANNING CONFERENCE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766109	2024-07-11	16:24:29.5007546	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3695\r\nEmployeeTrainingId: 0\r\nFromDate: February 20, 2023\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPARTMENT OF EDUCATION- CENTRAL OFFICE \r\nStatus: \r\nToDate: February 20, 2023\r\nTrainingId: 15114\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766110	2024-07-11	16:24:29.5057378	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3695\r\nEmployeeTrainingId: 0\r\nFromDate: June 27, 2023\r\nHours: 32\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPARTMENT OF EDUCATION- CENTRAL OFFICE \r\nStatus: \r\nToDate: June 30, 2023\r\nTrainingId: 16126\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766111	2024-07-11	16:25:15.6239169	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RO POLICY REVIEW AND ASSESSMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766124	2024-07-11	16:26:31.4958033	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RO TRAINING ON DEPED CHILD PROTECTION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766125	2024-07-11	16:27:09.4180189	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3695\r\nEmployeeTrainingId: 0\r\nFromDate: July 11, 2023\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: REGION IV A CALABARZON \r\nStatus: \r\nToDate: July 13, 2023\r\nTrainingId: 16127\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766126	2024-07-11	16:27:09.4220067	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3695\r\nEmployeeTrainingId: 0\r\nFromDate: September 26, 2023\r\nHours: 32\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: REGION IV A CALABARZON \r\nStatus: \r\nToDate: September 29, 2023\r\nTrainingId: 16129\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766127	2024-07-11	16:28:00.8641190	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING WORKSHOP ON INTENSIFYING SBFP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766128	2024-07-11	16:28:52.1072566	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3695\r\nEmployeeTrainingId: 0\r\nFromDate: September 14, 2023\r\nHours: 16\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: REGION IV A CALABARZON \r\nStatus: \r\nToDate: September 15, 2023\r\nTrainingId: 16130\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766129	2024-07-11	16:30:03.9023827	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL CONSULTATIVE WORKSHOP ON THE IMPLEMENTATION OF PROGRAMS, PROJECTS, AND ACTIVITES ( PPAS)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766131	2024-07-11	16:31:25.2004738	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3695\r\nEmployeeTrainingId: 0\r\nFromDate: May 16, 2023\r\nHours: 32\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPARTMENT OF EDUCATION- CENTRAL OFFICE \r\nStatus: \r\nToDate: May 19, 2023\r\nTrainingId: 16131\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766134	2024-07-11	16:32:11.1415491	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BEMEF ORIENTATION WORKSHOP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766135	2024-07-11	16:32:41.0167321	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3695\r\nEmployeeTrainingId: 0\r\nFromDate: January 26, 2023\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPARTMENT OF EDUCATION- CENTRAL OFFICE\r\nStatus: \r\nToDate: January 27, 2023\r\nTrainingId: 16133\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766136	2024-07-11	16:33:58.5762166	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FINAL PLANNING CONVERGENCE FOR THE COMPLETION OF THE REGIONAL AND DIVISION EDUCATION DEVELOPMENT PLAN 2023-2028 CUM REDP REFINEMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774539	2025-03-21	16:06:08.8568805	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3870\r\nRecognitionId: 0\r\nRecognitionName: OUTSTANDING NON-TEACHING PERSONNEL FRONTLINER LEVEL I 2021\r\n	admin	Recognitions	1
766113	2024-07-11	16:26:09.3532967	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3696\r\nEmployeeTrainingId: 0\r\nFromDate: March 01, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO - BATANGAS CITY \r\nStatus: \r\nToDate: March 01, 2023\r\nTrainingId: 16005\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766114	2024-07-11	16:26:09.3582957	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3696\r\nEmployeeTrainingId: 0\r\nFromDate: February 20, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO - BATANGAS CITY \r\nStatus: \r\nToDate: February 20, 2023\r\nTrainingId: 15114\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766115	2024-07-11	16:26:09.3632972	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3696\r\nEmployeeTrainingId: 0\r\nFromDate: October 20, 2022\r\nHours: 16\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPED REGION IV-A\r\nStatus: \r\nToDate: October 21, 2022\r\nTrainingId: 16124\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766116	2024-07-11	16:26:09.3682970	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3696\r\nEmployeeTrainingId: 0\r\nFromDate: October 24, 2022\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED REGION IV-A\r\nStatus: \r\nToDate: October 25, 2022\r\nTrainingId: 16125\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766117	2024-07-11	16:26:09.3722970	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3696\r\nEmployeeTrainingId: 0\r\nFromDate: August 04, 2022\r\nHours: 16\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPED REGION IV-A\r\nStatus: \r\nToDate: August 05, 2022\r\nTrainingId: 15699\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766118	2024-07-11	16:26:09.3772971	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3696\r\nEmployeeTrainingId: 0\r\nFromDate: June 27, 2022\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED REGION IV-A\r\nStatus: \r\nToDate: June 28, 2022\r\nTrainingId: 16119\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766119	2024-07-11	16:26:09.3822973	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: EL SITIO\r\nBarangay: DUMANTAY\r\nBasicInformationId: 3696\r\nBirthDate: September 19, 1987\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: con.balse@deped.gov.ph\r\nExtensionName: \r\nFirstName: CONIE\r\nFullName: CONIE M. BALSE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 5.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BALSE\r\nMaidenName: \r\nMiddleName: MENIA\r\nMobileNumber: 09506940675\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN JUAN\r\nPermanentCity: TINGLOY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4203\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: 5TH\r\nTIN: \r\nWeight: 74\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: EL SITIO\r\nBarangay: DUMANTAY\r\nBasicInformationId: 3696\r\nBirthDate: September 19, 1987\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: con.balse@deped.gov.ph\r\nExtensionName: \r\nFirstName: CONIE\r\nFullName: CONIE M. BALSE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 5.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BALSE\r\nMaidenName: \r\nMiddleName: MENIA\r\nMobileNumber: 09506940675\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN JUAN\r\nPermanentCity: TINGLOY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4203\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: 5TH\r\nTIN: \r\nWeight: 74\r\nZipCode: 4200\r\n	admin	BasicInformation	1
766120	2024-07-11	16:26:09.3872957	<Undetected>	Update	BasicInformationId: 3696\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3642\r\nExtensionName: \r\nFirstName: JEFFERSON\r\nFullName: JEFFERSON ALVAREZ BALSE\r\nGender: Male\r\nLastName: BALSE\r\nMaidenName: \r\nMiddleName: ALVAREZ\r\nOccupation: CHIEF COOK\r\nRelationship: Husband\r\n	BasicInformationId: 3696\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3642\r\nExtensionName: \r\nFirstName: JEFFERSON\r\nFullName: JEFFERSON BALSE\r\nGender: Male\r\nLastName: BALSE\r\nMaidenName: \r\nMiddleName: ALVAREZ\r\nOccupation: CHIEF COOK\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
766121	2024-07-11	16:26:09.3922960	<Undetected>	Update	BasicInformationId: 3696\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3643\r\nExtensionName: \r\nFirstName: ELPIDIO\r\nFullName: ELPIDIO HERILLA MENIA\r\nGender: Male\r\nLastName: MENIA\r\nMaidenName: \r\nMiddleName: HERILLA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3696\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3643\r\nExtensionName: \r\nFirstName: ELPIDIO\r\nFullName: ELPIDIO MENIA\r\nGender: Male\r\nLastName: MENIA\r\nMaidenName: \r\nMiddleName: HERILLA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
766122	2024-07-11	16:26:09.3973372	<Undetected>	Update	BasicInformationId: 3696\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3644\r\nExtensionName: \r\nFirstName: LEONA\r\nFullName: LEONA BINAY ALBANIA\r\nGender: Female\r\nLastName: ALBANIA\r\nMaidenName: \r\nMiddleName: BINAY\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3696\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3644\r\nExtensionName: \r\nFirstName: LEONA\r\nFullName: LEONA ALBANIA\r\nGender: Female\r\nLastName: ALBANIA\r\nMaidenName: \r\nMiddleName: BINAY\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
766123	2024-07-11	16:26:09.4013406	<Undetected>	Update	BasicInformationId: 3696\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3493\r\n	BasicInformationId: 3696\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3493\r\n	admin	Questionnaires	1
766130	2024-07-11	16:30:40.3447485	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FOSTERING EFFECTIVE AND EFFICIENT UTILIZATION OF SCHOOL RESOURCES THORUGH THE IMPLEMENTATION OF FINANCIAL MANAGEMENT OPERATION MANUEL FOR IMPLEMENTING UNITS AND SELECTED SECONDARY NON-IMPLEMENTING UNITS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766132	2024-07-11	16:31:43.2687309	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3696\r\nEmployeeTrainingId: 0\r\nFromDate: August 17, 2021\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: SDO - BATANGAS CITY\r\nStatus: \r\nToDate: August 19, 2021\r\nTrainingId: 15054\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766133	2024-07-11	16:31:43.2727306	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3696\r\nEmployeeTrainingId: 0\r\nFromDate: April 19, 2021\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO - BATANGAS CITY\r\nStatus: \r\nToDate: April 21, 2021\r\nTrainingId: 15158\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766139	2024-07-11	16:36:01.1899321	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL CONFERENCE ON STANDARDIZED TEST ADMINISTRATION OF BEA TESTING PROGRAMS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766142	2024-07-11	16:38:30.5603076	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION PERFORMANCE REVIEW ON PROGRAMS AND PROJECTS IMPLEMENTATION, PROIVISION OF TA\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766144	2024-07-11	16:40:09.2391556	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2018 DIVISION PERFORMANCE REVIEW & FINALIZATION OF DIVISION & SCHOOLS AIP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766145	2024-07-11	16:41:13.6091242	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3696\r\nEmployeeTrainingId: 0\r\nFromDate: October 07, 2019\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED REGION IV-A\r\nStatus: \r\nToDate: October 11, 2019\r\nTrainingId: 16136\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766146	2024-07-11	16:41:13.6141255	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3696\r\nEmployeeTrainingId: 0\r\nFromDate: November 13, 2019\r\nHours: 40\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: SDO - BATANGAS CITY\r\nStatus: \r\nToDate: November 15, 2019\r\nTrainingId: 16138\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766147	2024-07-11	16:41:13.6191254	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3696\r\nEmployeeTrainingId: 0\r\nFromDate: November 19, 2018\r\nHours: 22\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPED REGION IV-A\r\nStatus: \r\nToDate: November 22, 2018\r\nTrainingId: 16139\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766148	2024-07-11	16:44:05.5605872	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING WORKSHOP ON QATAME & VARIED TOOLS IN MONITORING & EVALUATION OF PROGRAMS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766149	2024-07-11	16:49:54.4990309	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3696\r\nSkillId: 0\r\nSkillName: SKILLS OF MULTIMEDIA AND TECHNOLOGY\r\n	admin	Skills	1
766150	2024-07-11	16:49:54.5030304	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3696\r\nRecognitionId: 0\r\nRecognitionName: MERITORIOUS PERFORMANCE AWARD\r\n	admin	Recognitions	1
766151	2024-07-11	16:49:54.5090309	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3696\r\nEmployeeTrainingId: 0\r\nFromDate: December 03, 2018\r\nHours: 40\r\nNatureOfParticipation: SUPERVISORY\r\nSponsoringAgency: DEPED REGION IV-A\r\nStatus: \r\nToDate: December 07, 2018\r\nTrainingId: 16140\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766152	2024-07-11	16:49:54.5130304	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3696\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 702-2094\r\nExtensionName: \r\nFirstName: ANGELISA\r\nLastName: AMOTO\r\nMiddleName: A. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766153	2024-07-11	16:49:54.5180308	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3696\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 702-2094\r\nExtensionName: \r\nFirstName: MAGIELYN \r\nLastName: BABAO\r\nMiddleName: R.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766165	2024-07-12	08:15:02.6311961	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3697\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROBERTO\r\nFullName: ROBERTO CARANDANG PANALIGAN\r\nGender: Male\r\nLastName: PANALIGAN\r\nMaidenName: \r\nMiddleName: CARANDANG\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
766166	2024-07-12	08:15:02.6311961	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3697\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JENNIFER\r\nFullName: JENNIFER ALEA FAJILAN\r\nGender: Female\r\nLastName: FAJILAN\r\nMaidenName: \r\nMiddleName: ALEA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
766167	2024-07-12	08:15:02.6321964	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3697\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
766137	2024-07-11	16:34:40.0835382	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3695\r\nEmployeeTrainingId: 0\r\nFromDate: October 19, 2022\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: REGION IV A CALABARZON \r\nStatus: \r\nToDate: October 19, 2022\r\nTrainingId: 16134\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766138	2024-07-11	16:35:38.0000749	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CALABARZON CONVERGENCE FOR THE LEARNING RECOVERY AND CONTINUITY PLAN ( LRCP)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766140	2024-07-11	16:36:09.3084693	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3695\r\nEmployeeTrainingId: 0\r\nFromDate: September 21, 2022\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: REGION IV A CALABARZON \r\nStatus: \r\nToDate: September 23, 2022\r\nTrainingId: 16135\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766141	2024-07-11	16:36:56.8876986	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2ND INTERNATIONAL WEBINAR MARATHON ON EDUCATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766143	2024-07-11	16:38:20.9472112	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3695\r\nEmployeeTrainingId: 0\r\nFromDate: September 17, 2021\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: ALOYSIAN PULICATIONS ( PHILIPPINES) IN COOPERATION WITH BETMA ENGLISH ( VIETNAM )\r\nStatus: \r\nToDate: September 17, 2021\r\nTrainingId: 16137\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766154	2024-07-11	16:49:54.5220304	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: EL SITIO\r\nBarangay: DUMANTAY\r\nBasicInformationId: 3696\r\nBirthDate: September 19, 1987\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: con.balse@deped.gov.ph\r\nExtensionName: \r\nFirstName: CONIE\r\nFullName: CONIE M. BALSE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 5.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BALSE\r\nMaidenName: \r\nMiddleName: MENIA\r\nMobileNumber: 09506940675\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN JUAN\r\nPermanentCity: TINGLOY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4203\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: 5TH\r\nTIN: \r\nWeight: 74\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: EL SITIO\r\nBarangay: DUMANTAY\r\nBasicInformationId: 3696\r\nBirthDate: September 19, 1987\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: con.balse@deped.gov.ph\r\nExtensionName: \r\nFirstName: CONIE\r\nFullName: CONIE M. BALSE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005059868\r\nHDMF: 1490-0040-5625\r\nHeight: 5.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BALSE\r\nMaidenName: \r\nMiddleName: MENIA\r\nMobileNumber: 09506940675\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN JUAN\r\nPermanentCity: TINGLOY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4203\r\nPhilhealth: 09-050231530-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: 5TH\r\nTIN: 270-020-821-0000\r\nWeight: 74\r\nZipCode: 4200\r\n	admin	BasicInformation	1
766155	2024-07-11	16:49:54.5270318	<Undetected>	Update	BasicInformationId: 3696\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3493\r\n	BasicInformationId: 3696\r\nQ34a: No\r\nQ34b: No\r\nQ35a: \r\nQ35b: No\r\nQ36a: No\r\nQ37a: RESIGNED - LPU BATANGAS\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3493\r\n	admin	Questionnaires	1
766156	2024-07-12	08:08:18.2630696	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPABILITY BUILDING PROGRAM FOR DIVISION GAD LEARNING FACILITATORS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766157	2024-07-12	08:09:44.2795146	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF AR5TS IN PSYCHOLOGY\r\nLevel: College\r\n	admin	Courses	1
766158	2024-07-12	08:10:59.0904455	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RECEIVING AND RESPONDING TO WORKPLACE COMMUNICATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766159	2024-07-12	08:13:27.5894618	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER IN DISASTER RISK MANAGEMENT\r\nLevel: Master's\r\n	admin	Courses	1
766160	2024-07-12	08:15:02.4835885	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: MAHABANG PARANG\r\nBasicInformationId: 0\r\nBirthDate: December 09, 1993\r\nBirthPlace: NAUJAN, ORIENTAL MINDORO\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jesricbrian.panaligan@deped.gov.ph\r\nExtensionName: \r\nFirstName: JESRIC BRIAN\r\nFullName: JESRIC BRIAN F. PANALIGAN\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.76\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PANALIGAN\r\nMaidenName: \r\nMiddleName: FAJILAN\r\nMobileNumber: 09953412459\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: MAHABANG PARANG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 87\r\nZipCode: 4200\r\n	admin	BasicInformation	1
766161	2024-07-12	08:15:02.6301962	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3697\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2000\r\nDateTo: 2006\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: CONCEPCION ELEMENTARY SCHOOL\r\nYearGraduated: 2006\r\n	admin	EducationalBackgrounds	1
766162	2024-07-12	08:15:02.6301962	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3697\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2006\r\nDateTo: 2010\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: NAVERA BATANGAS NATIONAL HIGH SCHOOL ANNEX\r\nYearGraduated: 2010\r\n	admin	EducationalBackgrounds	1
766163	2024-07-12	08:15:02.6301962	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3697\r\nCourse: \r\nCourseId: 1353\r\nCourseOrMajor: \r\nDateFrom: 2010\r\nDateTo: 2014\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS- MAIN CAMPUS\r\nYearGraduated: 2014\r\n	admin	EducationalBackgrounds	1
766164	2024-07-12	08:15:02.6301962	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3697\r\nCourse: \r\nCourseId: 1344\r\nCourseOrMajor: \r\nDateFrom: 2022\r\nDateTo: 2024\r\nEducationalAttainment: 18 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY- MAIN CAMPUS\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
766168	2024-07-12	08:17:28.5456153	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DEAL WITH INTOXICATED GUESTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766169	2024-07-12	08:18:03.2785652	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3695\r\nEmployeeTrainingId: 0\r\nFromDate: October 18, 2021\r\nHours: 32\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: THAMES INTERNATIONAL \r\nStatus: \r\nToDate: October 29, 2021\r\nTrainingId: 15599\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766170	2024-07-12	08:18:03.2825516	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3695\r\nEmployeeTrainingId: 0\r\nFromDate: May 24, 2021\r\nHours: 20\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: REGION IV A CALABARZON \r\nStatus: \r\nToDate: May 26, 2021\r\nTrainingId: 16141\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766171	2024-07-12	08:18:03.2875351	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3695\r\nEmployeeTrainingId: 0\r\nFromDate: May 25, 2020\r\nHours: 42\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: TECHNICAL EDDUCATION AND SKILLS DEVELOPMENT AUTHORITY ( TESDA) \r\nStatus: \r\nToDate: June 02, 2020\r\nTrainingId: 16142\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766172	2024-07-12	08:18:03.2925181	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3695\r\nEmployeeTrainingId: 0\r\nFromDate: June 02, 2020\r\nHours: 42\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: TECHNICAL EDDUCATION AND SKILLS DEVELOPMENT AUTHORITY ( TESDA)\r\nStatus: \r\nToDate: June 08, 2020\r\nTrainingId: 15371\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766173	2024-07-12	08:18:03.2975016	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3695\r\nEmployeeTrainingId: 0\r\nFromDate: June 08, 2020\r\nHours: 42\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: TECHNICAL EDDUCATION AND SKILLS DEVELOPMENT AUTHORITY ( TESDA)\r\nStatus: \r\nToDate: June 16, 2020\r\nTrainingId: 16143\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766174	2024-07-12	08:25:18.2406030	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF SECONDARY EDUCATION \r\nLevel: Vocational\r\n	admin	Courses	1
766175	2024-07-12	08:27:43.7426673	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: DOKTOR NG PILOSOPIYA SA PANGWIKANG FILIPINO \r\nLevel: Doctorate\r\n	admin	Courses	1
766176	2024-07-12	08:30:57.4319409	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF SCIENCE IN BIOLOGY\r\nLevel: College\r\n	admin	Courses	1
766177	2024-07-12	08:31:42.7576517	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF SCIENCE IN CIVIL ENGINEERING\r\nLevel: College\r\n	admin	Courses	1
766178	2024-07-12	08:33:02.8261604	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: DOCTOR OF MEDICINE\r\nLevel: College\r\n	admin	Courses	1
766192	2024-07-12	08:43:05.1154591	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 113\r\nAddress2: \r\nBarangay: LOOB\r\nBasicInformationId: 0\r\nBirthDate: October 31, 1989\r\nBirthPlace: BRGY. LOOB, MATAAS NA KAHOY, BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: MATAAS NA KAHOY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ALVIN.METRILLO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ALVIN\r\nFullName: ALVIN P. METRILLO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: METRILLO\r\nMaidenName: \r\nMiddleName: PRICAS\r\nMobileNumber: 09054794042\r\nNationality: Filipino\r\nPermanentAddress1: 113\r\nPermanentAddress2: \r\nPermanentBarangay: LOOB\r\nPermanentCity: MATAAS NA KAHOY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4223\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 60\r\nZipCode: 4223\r\n	admin	BasicInformation	1
766193	2024-07-12	08:43:05.1415450	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3698\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 2002\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: LOOB ELEMENTARY SCHOOL \r\nYearGraduated: 2002\r\n	admin	EducationalBackgrounds	1
766194	2024-07-12	08:43:05.1415450	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3698\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2002\r\nDateTo: 2006\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: MATAAS NA KAHOY NATIONAL HIGH SCHOOL \r\nYearGraduated: 2006\r\n	admin	EducationalBackgrounds	1
766195	2024-07-12	08:43:05.1425414	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: DEAN'S LISTER \r\nBasicInformationId: 3698\r\nCourse: \r\nCourseId: 1355\r\nCourseOrMajor: \r\nDateFrom: 2006\r\nDateTo: 2013\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Vocational Graduate\r\nMajor: FILIPINO \r\nSchoolorUniversity: KOLEHIYO NG LUNSOD NG BATANGAS \r\nYearGraduated: 2013\r\n	admin	EducationalBackgrounds	1
766213	2024-07-12	08:43:35.0909761	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ADOLESCENT REPRODUCTIVE HEALTH PROGRAM IMPLEMENTATION REVIEW CUM GENDER - RESPONSIVE PLANNING WORKSHOP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766179	2024-07-12	08:38:26.7186938	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3697\r\nDateOfExamination: April 06, 2014\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: April 06, 2014\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS STATE UNIVERSITY- PABLO BORBON CAMPUS, BATANGAS CITY\r\nRating: 81.4%\r\nTitle: CAREER SERVICE PROFESSIONAL EXAMINATION \r\n	admin	Eligibilities	1
766180	2024-07-12	08:38:26.7237317	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3697\r\nCompanyInstitution: SDO BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: March 04, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 27,284.00\r\nPositionHeld: PROJECT DEVELOPMENT OFFICER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: July 12, 2024\r\n	admin	Experiences	1
766181	2024-07-12	08:38:26.7287300	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3697\r\nCompanyInstitution: PROVINCIAL SOCIAL WELFARE AND DEVELOPMENT OFFICE\r\nExperienceId: 0\r\nFromDate: January 02, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 395.86\r\nPositionHeld: SOCIAL WELFARE ASSISTANT\r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-\r\nStatus: Casual\r\nToDate: June 30, 2018\r\n	admin	Experiences	1
766182	2024-07-12	08:38:26.7327300	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3697\r\nCompanyInstitution: PROVINCIAL SOCIAL WELFARE AND DEVELOPMENT OFFICE \r\nExperienceId: 0\r\nFromDate: January 07, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 395.86\r\nPositionHeld: SOCIAL WELFARE ASSISTANT\r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-\r\nStatus: Casual\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
766183	2024-07-12	08:38:26.7386935	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3697\r\nCompanyInstitution: PROVINCIAL SOCIAL WELFARE AND DEVELOPMENT OFFICE\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 395.86\r\nPositionHeld: SOCIAL WELFARE ASSISTANT\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-\r\nStatus: Casual\r\nToDate: June 30, 2017\r\n	admin	Experiences	1
766184	2024-07-12	08:38:26.7427314	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3697\r\nCompanyInstitution: PROVINCIAL SOCIAL WELFARE AND DEVELOPMENT OFFICE \r\nExperienceId: 0\r\nFromDate: January 07, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 395.86\r\nPositionHeld: SOCIAL WELFARE ASSISTANT\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-\r\nStatus: Casual\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
766185	2024-07-12	08:38:26.7476923	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3697\r\nCompanyInstitution: PROVINCIAL SOCIAL WELFARE AND DEVELOPMENT OFFICE \r\nExperienceId: 0\r\nFromDate: January 07, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 395.86\r\nPositionHeld: SOCIAL WELFARE ASSISTANT\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-\r\nStatus: Casual\r\nToDate: January 31, 2016\r\n	admin	Experiences	1
766186	2024-07-12	08:38:26.7527315	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3697\r\nCompanyInstitution: PROVINCIAL SOCIAL WELFARE AND DEVELOPMENT OFFICE\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 395.86\r\nPositionHeld: SOCIAL WELFARE ASSISTANT\r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-\r\nStatus: Casual\r\nToDate: June 30, 2016\r\n	admin	Experiences	1
766187	2024-07-12	08:38:26.7576924	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3697\r\nCompanyInstitution: PROVINCIAL SOCIAL WELFARE AND DEVELOPMENT OFFICE \r\nExperienceId: 0\r\nFromDate: January 07, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 395.86\r\nPositionHeld: SOCIAL WELFARE ASSISTANT\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-\r\nStatus: Casual\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
766188	2024-07-12	08:38:26.7616924	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3697\r\nCompanyInstitution: PROVINCIAL SOCIAL WELFARE AND DEVELOPMENT OFFICE \r\nExperienceId: 0\r\nFromDate: June 15, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 395.86\r\nPositionHeld: SOCIAL WELFARE ASSISTANT\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-\r\nStatus: Casual\r\nToDate: June 30, 2015\r\n	admin	Experiences	1
766189	2024-07-12	08:38:26.7666925	<Undetected>	Update	BasicInformationId: 3697\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3645\r\nExtensionName: \r\nFirstName: ROBERTO\r\nFullName: ROBERTO CARANDANG PANALIGAN\r\nGender: Male\r\nLastName: PANALIGAN\r\nMaidenName: \r\nMiddleName: CARANDANG\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3697\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3645\r\nExtensionName: \r\nFirstName: ROBERTO\r\nFullName: ROBERTO PANALIGAN\r\nGender: Male\r\nLastName: PANALIGAN\r\nMaidenName: \r\nMiddleName: CARANDANG\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774540	2025-03-21	16:06:08.8608689	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3870\r\nRecognitionId: 0\r\nRecognitionName: OUTSTANDING NON-TEACHING PERSONNEL FRONTLINER LEVEL I 2021\r\n	admin	Recognitions	1
766190	2024-07-12	08:38:26.7716929	<Undetected>	Update	BasicInformationId: 3697\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3646\r\nExtensionName: \r\nFirstName: JENNIFER\r\nFullName: JENNIFER ALEA FAJILAN\r\nGender: Female\r\nLastName: FAJILAN\r\nMaidenName: \r\nMiddleName: ALEA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3697\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3646\r\nExtensionName: \r\nFirstName: JENNIFER\r\nFullName: JENNIFER FAJILAN\r\nGender: Female\r\nLastName: FAJILAN\r\nMaidenName: \r\nMiddleName: ALEA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
766191	2024-07-12	08:38:26.7766925	<Undetected>	Update	BasicInformationId: 3697\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3494\r\n	BasicInformationId: 3697\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3494\r\n	admin	Questionnaires	1
766218	2024-07-12	08:49:01.3589125	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3697\r\nCompanyInstitution: EMPLOI AGENCY/HYSONIC PHILIPPINES INC. \r\nExperienceId: 0\r\nFromDate: September 02, 2015\r\nIsGovernmentService: False\r\nMonthlySalary: 8,000.00\r\nPositionHeld: HR SUPPORT (EMPLOYEE RELATIONS)\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: September 05, 2015\r\n	admin	Experiences	1
766219	2024-07-12	08:49:01.3689128	<Undetected>	Update	BasicInformationId: 3697\r\nCompanyInstitution: PROVINCIAL SOCIAL WELFARE AND DEVELOPMENT OFFICE\r\nExperienceId: 11183\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 395.86\r\nPositionHeld: SOCIAL WELFARE ASSISTANT\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-\r\nStatus: Casual\r\nToDate: June 30, 2017\r\n	BasicInformationId: 3697\r\nCompanyInstitution: PROVINCIAL SOCIAL WELFARE AND DEVELOPMENT OFFICE\r\nExperienceId: 11183\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 395.86\r\nPositionHeld: SOCIAL WELFARE ASSISTANT\r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-\r\nStatus: Casual\r\nToDate: June 30, 2017\r\n	admin	Experiences	1
766220	2024-07-12	08:49:01.3739125	<Undetected>	Update	BasicInformationId: 3697\r\nCompanyInstitution: PROVINCIAL SOCIAL WELFARE AND DEVELOPMENT OFFICE \r\nExperienceId: 11184\r\nFromDate: January 07, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 395.86\r\nPositionHeld: SOCIAL WELFARE ASSISTANT\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-\r\nStatus: Casual\r\nToDate: December 31, 2016\r\n	BasicInformationId: 3697\r\nCompanyInstitution: PROVINCIAL SOCIAL WELFARE AND DEVELOPMENT OFFICE \r\nExperienceId: 11184\r\nFromDate: January 07, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 395.86\r\nPositionHeld: SOCIAL WELFARE ASSISTANT\r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-\r\nStatus: Casual\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
766221	2024-07-12	08:49:01.3779124	<Undetected>	Update	BasicInformationId: 3697\r\nCompanyInstitution: PROVINCIAL SOCIAL WELFARE AND DEVELOPMENT OFFICE \r\nExperienceId: 11188\r\nFromDate: June 15, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 395.86\r\nPositionHeld: SOCIAL WELFARE ASSISTANT\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-\r\nStatus: Casual\r\nToDate: June 30, 2015\r\n	BasicInformationId: 3697\r\nCompanyInstitution: PROVINCIAL SOCIAL WELFARE AND DEVELOPMENT OFFICE \r\nExperienceId: 11188\r\nFromDate: June 15, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 395.86\r\nPositionHeld: SOCIAL WELFARE ASSISTANT\r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-\r\nStatus: Casual\r\nToDate: June 30, 2015\r\n	admin	Experiences	1
766222	2024-07-12	08:49:01.3839124	<Undetected>	Update	BasicInformationId: 3697\r\nCompanyInstitution: PROVINCIAL SOCIAL WELFARE AND DEVELOPMENT OFFICE \r\nExperienceId: 11187\r\nFromDate: January 07, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 395.86\r\nPositionHeld: SOCIAL WELFARE ASSISTANT\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-\r\nStatus: Casual\r\nToDate: December 31, 2015\r\n	BasicInformationId: 3697\r\nCompanyInstitution: PROVINCIAL SOCIAL WELFARE AND DEVELOPMENT OFFICE \r\nExperienceId: 11187\r\nFromDate: January 07, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 395.86\r\nPositionHeld: SOCIAL WELFARE ASSISTANT\r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-\r\nStatus: Casual\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
766223	2024-07-12	08:49:01.3889125	<Undetected>	Delete	BasicInformationId: 3697\r\nCompanyInstitution: PROVINCIAL SOCIAL WELFARE AND DEVELOPMENT OFFICE \r\nExperienceId: 11185\r\nFromDate: January 07, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 395.86\r\nPositionHeld: SOCIAL WELFARE ASSISTANT\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-\r\nStatus: Casual\r\nToDate: January 31, 2016\r\n	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	admin	Experiences	1
766227	2024-07-12	08:52:05.3759974	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: LEARNERS' CONVERGENCEB PH 2023\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766233	2024-07-12	08:56:54.9177105	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION GUIDANCE ANDN COUNSELING PROGRAM AND PSYCHOLOGICAL FIRST AID APPROACH IN COUNSELING FOR SCHOOL GUIDANCE COORDINATOR\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766236	2024-07-12	09:00:42.1148649	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON GUIDANCE AND COUNSELING PROGRAM AND PSYCHOLOGICAL FIRST AID APPROACH IN COUNSELING FOR SCHOOL GUIDANCE COORDINATOR\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766238	2024-07-12	09:04:20.4002827	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL CONTINGENCY PLAN REVIERW AND ENHANCEMENT WORKSHOP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766297	2024-07-12	09:18:37.6049570	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL TRAINING OF TRAINERS ON YOUTH DISASTER READINESS DEVELOPMENT PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766196	2024-07-12	08:43:05.1425414	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3698\r\nCourse: \r\nCourseId: 1348\r\nCourseOrMajor: \r\nDateFrom: 2015\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: LANGUAGE TEACHING \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY \r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
766197	2024-07-12	08:43:05.1425414	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3698\r\nCourse: \r\nCourseId: 1356\r\nCourseOrMajor: \r\nDateFrom: 2019\r\nDateTo: 2022\r\nEducationalAttainment: COMPLETE ACADEMIC REQUIREMENTS \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: \r\nSchoolorUniversity: PHILIPPINE NORMAL SCHOOL \r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
766198	2024-07-12	08:43:05.1425414	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3698\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FELICISIMO\r\nFullName: FELICISIMO MAQUINTO METRILLO\r\nGender: Male\r\nLastName: METRILLO\r\nMaidenName: \r\nMiddleName: MAQUINTO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
766199	2024-07-12	08:43:05.1425414	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3698\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GERTRUDES\r\nFullName: GERTRUDES ARELLANO PRICAS\r\nGender: Male\r\nLastName: PRICAS\r\nMaidenName: \r\nMiddleName: ARELLANO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
766200	2024-07-12	08:43:05.1425414	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3698\r\nDateOfExamination: September 29, 2013\r\nDateOfRelease: October 31, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 29, 2013\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1245083\r\nPlaceOfExamination: LUCENA CITY \r\nRating: 78.20%\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS \r\n	admin	Eligibilities	1
766201	2024-07-12	08:43:05.1425414	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3698\r\nDateOfExamination: \r\nDateOfRelease: October 31, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: DO8-20-102307\r\nPlaceOfExamination: \r\nRating: \r\nTitle: DRIVER' LICENSE \r\n	admin	Eligibilities	1
766202	2024-07-12	08:43:05.1435378	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3698\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SDO BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: March 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 51,357.00\r\nPositionHeld: SENIOR EDUCATION PROGRAM SPECIALIST \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: July 12, 2024\r\n	admin	Experiences	1
766203	2024-07-12	08:43:05.1435378	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3698\r\nCompanyInstitution: DEPARTMENT OF EDUCATION REGION IV A ( CALABARZON)\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 38,150.00\r\nPositionHeld: EDUCATION PROGRAM SPECIALIST II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: February 28, 2023\r\n	admin	Experiences	1
766204	2024-07-12	08:43:05.1435378	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3698\r\nCompanyInstitution: DEPARTMENT OF EDUCATION REGION IV A ( CALABARZON)\r\nExperienceId: 0\r\nFromDate: April 20, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 38,150.00\r\nPositionHeld: EDUCATION PROGRAM SPECIALIST \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
766205	2024-07-12	08:43:05.1435378	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3698\r\nCompanyInstitution: DEPARTMENT OF EDUCATION MATAAS NA KAHOY SENIOR HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: June 13, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 23,222.00\r\nPositionHeld: TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: April 19, 2021\r\n	admin	Experiences	1
766206	2024-07-12	08:43:05.1435378	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3698\r\nCompanyInstitution: DEPARTMENT OF EDUCATION MATAAS NA KAHOY SENIOR HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 22,938.00\r\nPositionHeld: TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 12, 2019\r\n	admin	Experiences	1
766215	2024-07-12	08:45:27.4117990	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP OIN INTENSIFYING SCHOOL-BASED FEEDING PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766207	2024-07-12	08:43:05.1435378	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3698\r\nCompanyInstitution: DEPARTMENT OF EDUCATION MATAAS NA KAHOY SENIOR HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 22,149.00\r\nPositionHeld: TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
766208	2024-07-12	08:43:05.1475243	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3698\r\nCompanyInstitution: DEPARTMENT OF EDUCATION MATAAS NA KAHOY SENIOR HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 21,387.00\r\nPositionHeld: TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
766209	2024-07-12	08:43:05.1475243	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3698\r\nCompanyInstitution: DEPARTMENT OF EDUCATION MATAAS NA KAHOY SENIOR HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: June 13, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 20,651.00\r\nPositionHeld: TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
766210	2024-07-12	08:43:05.1485211	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3698\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BAYORBOR NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 12, 2016\r\n	admin	Experiences	1
766211	2024-07-12	08:43:05.1485211	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3698\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BAYORBOR NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: June 03, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 18,547.00\r\nPositionHeld: TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
766212	2024-07-12	08:43:05.1485211	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3698\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
766214	2024-07-12	08:44:44.3836466	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING OF NEAP- R AND SDO HRDS SEPS IN MANAGING AND IMPLEMENTING NEAP PROGRAMS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766217	2024-07-12	08:47:10.6392375	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NEAP'S FY 2022 YEAR-END PERFORMANCE ASSESSMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766224	2024-07-12	08:49:06.7201835	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CONSOLIDATION ACTIVITY ON THE REVIEW OF D.O. 1S. 2020 IMPLEMENTATION AND PROVISION OF TECHNICAL ASSESSMENT TO NEAP- R/ HRDD\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766226	2024-07-12	08:50:49.6066244	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: COMPETENCY ENHANCEMENT TRAINING FOR REGIONAL OFFICE EMPLOYEES LEVEL 2 ( CENTRE 2) BATCH 1\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766228	2024-07-12	08:52:19.4773222	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPACITY BUILDING OF SCIENCE, MATHEMATICS, AND ENGLISH ( SME) TEACHERS ON THE IMPLEMENTATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766230	2024-07-12	08:53:27.6226403	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPACITY BUILDING OF SCIENCE, MATHEMATICS, AND ENGLISH ( SME) TEACHERS ON THE IMPLEMENTATION OF NATIONAL LEARNING CAMP ( NLC)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766231	2024-07-12	08:55:24.6141341	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REVIEW OF D.O.1 S. 2020 IMPLEMENTATION AND PROVISION OF TECHNICAL ASSISTANCE TO NEAP- R/HRDD- CLUSTER I\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766232	2024-07-12	08:56:37.5098753	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING WORKSHOP FOR THE TRAINING AND ADVOCACY TEAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766234	2024-07-12	08:58:31.1341140	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DEVELOPING MONITORING AND EVALUATION ( M&E) TOOLS FOR LEARNING RECOVERY AND CONTINUITY PLAN ( LCRP) PHASE 2\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766225	2024-07-12	08:50:35.9704305	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INTEGRATED MEETING ON INFECTIOUS DISEASE WITH EMPHASIS TO WILD (WATER AND FOOD-BORNE, INFLUENZA, LEPTOSPIROSIS AND DENGUE) DISEASES IN ALIGNMENT WITH UHC DESIGNATING SCHOOL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766229	2024-07-12	08:52:48.9266014	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NEW HORIZONS IN HYPERTENSION AND LIPID MANAGEMENT (ONLINE)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766298	2024-07-12	09:20:09.8235635	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FOR A CARDIOLOGIC XIX: CARDIOLOGY MODE RIDICULOUSLY SIMPLE (ONLINE)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766299	2024-07-12	09:21:47.4716076	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EXPANDING HORIZONS ON CHILD HEALTH\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766302	2024-07-12	09:23:53.6771924	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PEDIATRIC G.I.T.: ADDRESSING CONCERNS IN PEDIATRIC GASTROENTOLOGY, HEPATOLOGY AND NUTRITION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766303	2024-07-12	09:25:00.4652253	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: KUNG ALAM MO LUNGS: UNDERSTANDING AND OVERCOMING PNEUMONIA\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766321	2024-07-12	09:32:11.4504376	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: MARINERS RESIDENCE\r\nBarangay: KUMINTANG ILAYA\r\nBasicInformationId: 0\r\nBirthDate: June 12, 2024\r\nBirthPlace: BACO, ORIENTAL MINDORO\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: belinda.sabellano067@gmail.com\r\nExtensionName: \r\nFirstName: BELINDA\r\nFullName: BELINDA D. SABELLANO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005275173\r\nHDMF: 1212-1075-0877\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SABELLANO\r\nMaidenName: \r\nMiddleName: DALANGIN\r\nMobileNumber: 09778046804\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: TAGUMPAY\r\nPermanentCity: BACO\r\nPermanentCountry: Philippines\r\nPermanentProvince: ORIENTAL MINDORO\r\nPermanentStreetName: BARACAN 1\r\nPermanentZipCode: 5201\r\nPhilhealth: 09-025276105-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: BLOCK 3 LOT 5\r\nTIN: 308-172-559-0000\r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
766322	2024-07-12	09:32:11.6512707	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: FIRST HONOR\r\nBasicInformationId: 3700\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1991\r\nDateTo: 1997\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: DUOLANGAN I ELEMENTARY SCHOOL\r\nYearGraduated: 1997\r\n	admin	EducationalBackgrounds	1
766323	2024-07-12	09:32:11.6562703	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: TOP 10\r\nBasicInformationId: 3700\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1997\r\nDateTo: 2001\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: HOLY INFANT ACADEMY\r\nYearGraduated: 2001\r\n	admin	EducationalBackgrounds	1
766324	2024-07-12	09:32:11.6602689	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: CUM LAUDE\r\nBasicInformationId: 3700\r\nCourse: \r\nCourseId: 1357\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2005\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF EAST - MANILA\r\nYearGraduated: 2005\r\n	admin	EducationalBackgrounds	1
766325	2024-07-12	09:32:11.6652675	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3700\r\nCourse: \r\nCourseId: 1325\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF THE EAST RAMON MAGSAYSAY MEMORIAL MEDICAL CENTER (UERMMMC)\r\nYearGraduated: 2009\r\n	admin	EducationalBackgrounds	1
766326	2024-07-12	09:32:11.6702676	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3700\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SHERARD\r\nFullName: SHERARD CEPILLO SABELLANO\r\nGender: Male\r\nLastName: SABELLANO\r\nMaidenName: \r\nMiddleName: CEPILLO\r\nOccupation: SUPPLY CHAIN - PLANNING OFFICER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
766327	2024-07-12	09:32:11.6762686	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3700\r\nBirthDate: June 16, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PAUL ALEXANDER\r\nFullName: PAUL ALEXANDER D. SABELLANO\r\nGender: Male\r\nLastName: SABELLANO\r\nMaidenName: \r\nMiddleName: D.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766235	2024-07-12	08:59:56.4697039	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DEVELOPING MONITORING AND EVALUATION ( M&E) TOOLS FOR LEARNING RECOVERY AND CONTINUITY PLAN ( LCRP) PHASE 1\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766237	2024-07-12	09:02:22.5414875	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING CUM WORKSHOP OF RO AND SDO M&E FOCAL PERSONS ON QATAME OF LEARNING AND DEVELOPMENT ( L&D) ACTIVITIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766239	2024-07-12	09:04:58.3969317	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: VETTING AND FINALIZATION OF LEARNING RESOURCE PACKAGE FOR MASTERS TEACHERS PROFESSIONAL DEVELOPMENT PROGRAM 2.0 ( MTPDP 2.0 ) ( VETTING STAGE)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766240	2024-07-12	09:06:37.4449296	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: KNOWLEDGE SHARING SESSION ON NOTABLE PROFESSIONAL DEVELOPMENT PRACTICE FOR TEACHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766241	2024-07-12	09:08:00.6372695	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: KNOWLEDGE SHARING SESSION ( KSS) IN NOTABLE PROFESSIONAL DEVELOPMENT PRACTICES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766272	2024-07-12	09:11:30.0049778	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ONLINE TRAINING ON REPUBLIC ACT NO. 9184 AND ITS 2016 REVISEDI IMPLEMENTING RULES AND REGULATIONS RECOGNIZED BY THE GOVERNMENT PROCUREMENT POLICY BOARD ( GPPB)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766273	2024-07-12	09:13:44.0850413	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REORIENTATION ON THE ENHANCED RECOGNITION EVALUATION TOOL IN THE CENTRAL OFFICE AND REGIONAL OFFICES FOR NEAP- R AND RECOGNITION EVALUATION COMMITTEE ( REC)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766274	2024-07-12	09:15:20.7164575	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING- WORKSHOP FOR REGIONAL OFFICE PERSONNEL ON CONTINUOUS IMPROVEMENT PROGRAM ( CIP) UNDER THE NEW NORMAL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766275	2024-07-12	09:16:34.8687016	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NEAP ONBOARDING PROGRAM FOR NEWLY HIRED PERSONNEL - BATCH 3\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766276	2024-07-12	09:17:06.1308368	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3698\r\nEmployeeTrainingId: 0\r\nFromDate: October 16, 2023\r\nHours: 28\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: October 20, 2023\r\nTrainingId: 16145\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766277	2024-07-12	09:17:06.1358202	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3698\r\nEmployeeTrainingId: 0\r\nFromDate: January 09, 2023\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: January 13, 2023\r\nTrainingId: 16148\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766278	2024-07-12	09:17:06.1408035	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3698\r\nEmployeeTrainingId: 0\r\nFromDate: October 10, 2023\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: October 14, 2023\r\nTrainingId: 16149\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766279	2024-07-12	09:17:06.1457867	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3698\r\nEmployeeTrainingId: 0\r\nFromDate: March 07, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: March 09, 2023\r\nTrainingId: 16151\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766280	2024-07-12	09:17:06.1507700	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3698\r\nEmployeeTrainingId: 0\r\nFromDate: July 18, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: July 20, 2023\r\nTrainingId: 15685\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766281	2024-07-12	09:17:06.1547568	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3698\r\nEmployeeTrainingId: 0\r\nFromDate: June 14, 2023\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: June 17, 2023\r\nTrainingId: 16156\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766282	2024-07-12	09:17:06.1597403	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3698\r\nEmployeeTrainingId: 0\r\nFromDate: August 03, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: August 05, 2023\r\nTrainingId: 16157\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766242	2024-07-12	09:08:44.0464605	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: LOT 8 BLK. 6\r\nAddress2: ECOVERDE HOMES\r\nBarangay: QUILIB\r\nBasicInformationId: 0\r\nBirthDate: November 01, 1977\r\nBirthPlace: CALAPAN, ORIENTAL MINDORO\r\nBloodType: O\r\nCitizenshipType: \r\nCity: ROSARIO\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: EDUARDO.ULIT@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: EDUARDO\r\nFullName: EDUARDO M. ULIT\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ULIT\r\nMaidenName: \r\nMiddleName: MAGPILI\r\nMobileNumber: 0917421116\r\nNationality: Filipino\r\nPermanentAddress1: LOT 8 BLK. 6\r\nPermanentAddress2: ECOVERDE HOMES\r\nPermanentBarangay: QUILIB\r\nPermanentCity: ROSARIO\r\nPermanentCountry: Philippines\r\nPermanentProvince: BAtangas\r\nPermanentStreetName: \r\nPermanentZipCode: 4225\r\nPhilhealth: \r\nProvince: BAtangas\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 103\r\nZipCode: 4225\r\n	admin	BasicInformation	1
766243	2024-07-12	09:08:44.0734410	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3699\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1985\r\nDateTo: 1991\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: ROSARIO EAST CENTRAL SCHOOL\r\nYearGraduated: 1991\r\n	admin	EducationalBackgrounds	1
766244	2024-07-12	09:08:44.0734410	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3699\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1991\r\nDateTo: 1995\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAINT JOSEPH INSTITUTE\r\nYearGraduated: 1995\r\n	admin	EducationalBackgrounds	1
766245	2024-07-12	09:08:44.0734410	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3699\r\nCourse: \r\nCourseId: 1358\r\nCourseOrMajor: \r\nDateFrom: 1995\r\nDateTo: 2000\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF THE EAST \r\nYearGraduated: 2000\r\n	admin	EducationalBackgrounds	1
766246	2024-07-12	09:08:44.0744377	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3699\r\nBirthDate: November 25, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EHLEEN GENETRIE\r\nFullName: EHLEEN GENETRIE R ULIT\r\nGender: Female\r\nLastName: ULIT\r\nMaidenName: \r\nMiddleName: R\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766247	2024-07-12	09:08:44.0744377	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3699\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EDUARDO\r\nFullName: EDUARDO SUMANDE ULIT\r\nGender: Male\r\nLastName: ULIT\r\nMaidenName: \r\nMiddleName: SUMANDE\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
766248	2024-07-12	09:08:44.0744377	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3699\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: VERONIDIA\r\nFullName: VERONIDIA MASANGYA MAGPILI\r\nGender: Female\r\nLastName: MAGPILI\r\nMaidenName: \r\nMiddleName: MASANGYA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
766249	2024-07-12	09:08:44.0744377	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3699\r\nBirthDate: May 04, 2010\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ELONAH GENIEL\r\nFullName: ELONAH GENIEL R ULIT\r\nGender: Male\r\nLastName: ULIT\r\nMaidenName: \r\nMiddleName: R\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766250	2024-07-12	09:08:44.0744377	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3699\r\nBirthDate: December 02, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GENESON EDUARDO II\r\nFullName: GENESON EDUARDO II R ULIT\r\nGender: Male\r\nLastName: ULIT\r\nMaidenName: \r\nMiddleName: R\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766251	2024-07-12	09:08:44.0744377	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3699\r\nBirthDate: November 25, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EHLEEN GENETRIE\r\nFullName: EHLEEN GENETRIE R ULIT\r\nGender: Female\r\nLastName: ULIT\r\nMaidenName: \r\nMiddleName: R\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766252	2024-07-12	09:08:44.0784242	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3699\r\nDateOfExamination: November 18, 2000\r\nDateOfRelease: December 18, 2000\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: November 19, 2000\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 88173\r\nPlaceOfExamination: MANUEL L. QUEZON UNIVERSITY, MANILA\r\nRating: 76.15\r\nTitle: LICENSURE EXAMINATION FOR CIVIL ENGINEER\r\n	admin	Eligibilities	1
766253	2024-07-12	09:08:44.0784242	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3699\r\nCompanyInstitution: DEPARTMENT OF EDUCATION,SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 52,847.00\r\nPositionHeld: ENGINEER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: July 12, 2024\r\n	admin	Experiences	1
766254	2024-07-12	09:08:44.0784242	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3699\r\nCompanyInstitution: DEPARTMENT OF EDUCATION,SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: February 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 51,325.00\r\nPositionHeld: ENGINEER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
766255	2024-07-12	09:08:44.0784242	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3699\r\nCompanyInstitution: DEPARTMENT OF EDUCATION,SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: September 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 49,803.00\r\nPositionHeld: ENGINEER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: January 31, 2022\r\n	admin	Experiences	1
766256	2024-07-12	09:08:44.0794209	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3699\r\nCompanyInstitution: DEPARTMENT OF EDUCATION,SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: February 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 49,052.00\r\nPositionHeld: ENGINEER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: August 31, 2021\r\n	admin	Experiences	1
766257	2024-07-12	09:08:44.0794209	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3699\r\nCompanyInstitution: DEPARTMENT OF EDUCATION,SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: March 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 47,530.00\r\nPositionHeld: ENGINEER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: January 31, 2021\r\n	admin	Experiences	1
766258	2024-07-12	09:08:44.0794209	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3699\r\nCompanyInstitution: DEPARTMENT OF EDUCATION,SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: May 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 46,008.00\r\nPositionHeld: ENGINEER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: February 29, 2020\r\n	admin	Experiences	1
766259	2024-07-12	09:08:44.0794209	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3699\r\nCompanyInstitution: DEPARTMENT OF EDUCATION,SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: September 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 42,730.00\r\nPositionHeld: ENGINEER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: April 30, 2019\r\n	admin	Experiences	1
766260	2024-07-12	09:08:44.0794209	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3699\r\nCompanyInstitution: DEPARTMENT OF EDUCATION,SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 42,099.00\r\nPositionHeld: ENGINEER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: August 31, 2018\r\n	admin	Experiences	1
766261	2024-07-12	09:08:44.0794209	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3699\r\nCompanyInstitution: DEPARTMENT OF EDUCATION,SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 39,151.00\r\nPositionHeld: ENGINEER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
766262	2024-07-12	09:08:44.0794209	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3699\r\nCompanyInstitution: DEPARTMENT OF EDUCATION,SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 38,409.00\r\nPositionHeld: ENGINEER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
766263	2024-07-12	09:08:44.0794209	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3699\r\nCompanyInstitution: DEPARTMENT OF EDUCATION,SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 01, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 33,859.00\r\nPositionHeld: ENGINEER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
766301	2024-07-12	09:22:33.9970042	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING-WORKSHOP ON FACILITATION SKILLS AND MANAGEMENT OF LEARNING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766264	2024-07-12	09:08:44.0794209	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3699\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, PHYSICAL FACILITIES AND SCHOOLS ENGINEERING DIVISION (PFSED)\r\nExperienceId: 0\r\nFromDate: January 01, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 32,500.00\r\nPositionHeld: REGIONAL LEAD ENGINEER/ DEPED PROJECT ENGINEER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contract of Service\r\nToDate: June 30, 2015\r\n	admin	Experiences	1
766265	2024-07-12	09:08:44.0804177	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3699\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, PHYSICAL FACILITIES AND SCHOOLS ENGINEERING DIVISION (PFSED)\r\nExperienceId: 0\r\nFromDate: July 01, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 26,000.00\r\nPositionHeld: REGIONAL LEAD ENGINEER/DEPED PROJECT ENGINEER IV\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contract of Service\r\nToDate: December 31, 2014\r\n	admin	Experiences	1
766266	2024-07-12	09:08:44.0804177	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3699\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, PHYSICAL FACILITIES AND SCHOOLS ENGINEERING DIVISION (PFSED)\r\nExperienceId: 0\r\nFromDate: January 01, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 23,000.00\r\nPositionHeld: REGIONAL LEAD ENGINEER/ DEPED PROJECT ENGINEER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contract of Service\r\nToDate: June 30, 2013\r\n	admin	Experiences	1
766267	2024-07-12	09:08:44.0804177	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3699\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, PHYSICAL FACILITIES AND SCHOOLS ENGINEERING DIVISION (PFSED)\r\nExperienceId: 0\r\nFromDate: January 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 20,000.00\r\nPositionHeld: REGIONAL LEAD ENGINEER/ DEPED PROJECT ENGINEER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contract of Service\r\nToDate: December 31, 2012\r\n	admin	Experiences	1
766268	2024-07-12	09:08:44.0804177	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3699\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, PHYSICAL FACILITIES AND SCHOOLS ENGINEERING DIVISION (PFSED)\r\nExperienceId: 0\r\nFromDate: January 01, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 14,098.00\r\nPositionHeld: DEPARTMENT OF EDUCATION- PROJECT ENGINEER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contract of Service\r\nToDate: December 31, 2008\r\n	admin	Experiences	1
766269	2024-07-12	09:08:44.0804177	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3699\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, TASK FORCE ENGINEERING ASSESMENT AND MONITORING (TFEAM)\r\nExperienceId: 0\r\nFromDate: March 01, 2003\r\nIsGovernmentService: True\r\nMonthlySalary: 11,157.00\r\nPositionHeld: TASK FORCE ENGINEERING ASSESMENT AND MONITORING (TFEAM) PROJECT ENGINEER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contract of Service\r\nToDate: December 31, 2004\r\n	admin	Experiences	1
766270	2024-07-12	09:08:44.0804177	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3699\r\nCompanyInstitution: FIRST ATLAS CONTRACTORS, INC.(FACI)\r\nExperienceId: 0\r\nFromDate: April 01, 2000\r\nIsGovernmentService: False\r\nMonthlySalary: 6,500.00\r\nPositionHeld: PROJECT ENGINEER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: February 28, 2003\r\n	admin	Experiences	1
766271	2024-07-12	09:08:44.0814143	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3699\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
766296	2024-07-12	09:18:30.0875925	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TECHNICAL ASSISTANCE TO DIVISION PROPONENTS AND SCHOOL LEADERS ON FY 2024 BUDGET PREPARATION, BULWAGANG ALA EH, SCHOOLS DIVISION OFFICE OF BATANGAS CITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766300	2024-07-12	09:22:29.7102216	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON THE PREPARATION OF FY 2024 FORWARD ESTIMATES ON BASIC EDUCATION CRUCIAL RESOURCES, BALAI ISABE , TALISAY, BATANGAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766317	2024-07-12	09:26:50.3987547	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2024 NATIONAL PLANNING CONFERENCE: SCHOOL BUILDING PROGRAM,SUBIC BAY EXHIBITION AND COVENTION CENTER,SUBIC,ZAMBALES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766318	2024-07-12	09:29:49.8143644	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 6TH NATIONAL CONFERENCE OF DEPED ENGINEERS AND ARCHITECTS MEZZO HOTEL ,CEBU CITY ,CEBU\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766522	2024-07-12	10:37:27.2738642	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3703\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
766283	2024-07-12	09:17:06.1647234	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3698\r\nEmployeeTrainingId: 0\r\nFromDate: November 16, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: November 18, 2022\r\nTrainingId: 16159\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766284	2024-07-12	09:17:06.1697067	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3698\r\nEmployeeTrainingId: 0\r\nFromDate: November 08, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: November 10, 2022\r\nTrainingId: 16160\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766285	2024-07-12	09:17:06.1746902	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3698\r\nEmployeeTrainingId: 0\r\nFromDate: October 25, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: October 27, 2022\r\nTrainingId: 16162\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766286	2024-07-12	09:17:06.1786769	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3698\r\nEmployeeTrainingId: 0\r\nFromDate: February 21, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: February 23, 2022\r\nTrainingId: 16164\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766287	2024-07-12	09:17:06.1836602	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3698\r\nEmployeeTrainingId: 0\r\nFromDate: May 25, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: May 27, 2022\r\nTrainingId: 16165\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766288	2024-07-12	09:17:06.1886436	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3698\r\nEmployeeTrainingId: 0\r\nFromDate: October 27, 2021\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: October 29, 2021\r\nTrainingId: 16166\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766289	2024-07-12	09:17:06.1936267	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3698\r\nEmployeeTrainingId: 0\r\nFromDate: October 04, 2021\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: October 04, 2021\r\nTrainingId: 16167\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766290	2024-07-12	09:17:06.1976135	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3698\r\nEmployeeTrainingId: 0\r\nFromDate: May 11, 2021\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: May 14, 2021\r\nTrainingId: 16168\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766291	2024-07-12	09:17:06.2025967	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3698\r\nEmployeeTrainingId: 0\r\nFromDate: April 20, 2021\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: April 22, 2021\r\nTrainingId: 16169\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766292	2024-07-12	09:17:06.2075801	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3698\r\nEmployeeTrainingId: 0\r\nFromDate: April 17, 2021\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: April 20, 2021\r\nTrainingId: 16170\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766293	2024-07-12	09:17:06.2125633	<Undetected>	Update	BasicInformationId: 3698\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3647\r\nExtensionName: \r\nFirstName: FELICISIMO\r\nFullName: FELICISIMO MAQUINTO METRILLO\r\nGender: Male\r\nLastName: METRILLO\r\nMaidenName: \r\nMiddleName: MAQUINTO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3698\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3647\r\nExtensionName: \r\nFirstName: FELICISIMO\r\nFullName: FELICISIMO METRILLO\r\nGender: Male\r\nLastName: METRILLO\r\nMaidenName: \r\nMiddleName: MAQUINTO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
766294	2024-07-12	09:17:06.2175467	<Undetected>	Update	BasicInformationId: 3698\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3648\r\nExtensionName: \r\nFirstName: GERTRUDES\r\nFullName: GERTRUDES ARELLANO PRICAS\r\nGender: Male\r\nLastName: PRICAS\r\nMaidenName: \r\nMiddleName: ARELLANO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3698\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3648\r\nExtensionName: \r\nFirstName: GERTRUDES\r\nFullName: GERTRUDES PRICAS\r\nGender: Male\r\nLastName: PRICAS\r\nMaidenName: \r\nMiddleName: ARELLANO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
766295	2024-07-12	09:17:06.2225301	<Undetected>	Update	BasicInformationId: 3698\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3495\r\n	BasicInformationId: 3698\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3495\r\n	admin	Questionnaires	1
766304	2024-07-12	09:25:00.1377056	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3698\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE \r\n	admin	Skills	1
766305	2024-07-12	09:25:00.1426970	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3698\r\nSkillId: 0\r\nSkillName: CAN DRIVE 2 CAND 4 WHEELED MOTORIZED VEHICLE\r\n	admin	Skills	1
766306	2024-07-12	09:25:00.1486745	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3698\r\nOrganizationId: 0\r\nOrganizationName: MEMBER, REGIONAL RECOGNITION EVALUATION COMMITTEE ( REC)\r\n	admin	Organizations	1
766311	2024-07-12	09:25:00.1745444	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3698\r\nCharacterReferenceId: 0\r\nCompanyAddress: TANAUAN, BATANGAS \r\nCompanyName: \r\nContactNumber: 09266147276\r\nExtensionName: \r\nFirstName: EDNA \r\nLastName: MENDOZA \r\nMiddleName: U\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766312	2024-07-12	09:25:00.1795275	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3698\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09165879239\r\nExtensionName: \r\nFirstName: ANGELISA\r\nLastName: AMOTO\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766313	2024-07-12	09:25:00.1845113	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3698\r\nCharacterReferenceId: 0\r\nCompanyAddress: LIPA CITY, BATANGAS \r\nCompanyName: \r\nContactNumber: 09688568869\r\nExtensionName: \r\nFirstName: FE\r\nLastName: FALLURIN\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766314	2024-07-12	09:25:00.1894944	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 113\r\nAddress2: \r\nBarangay: LOOB\r\nBasicInformationId: 3698\r\nBirthDate: October 31, 1989\r\nBirthPlace: BRGY. LOOB, MATAAS NA KAHOY, BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: MATAAS NA KAHOY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ALVIN.METRILLO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ALVIN\r\nFullName: ALVIN P. METRILLO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: METRILLO\r\nMaidenName: \r\nMiddleName: PRICAS\r\nMobileNumber: 09054794042\r\nNationality: Filipino\r\nPermanentAddress1: 113\r\nPermanentAddress2: \r\nPermanentBarangay: LOOB\r\nPermanentCity: MATAAS NA KAHOY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4223\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 60\r\nZipCode: 4223\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 113\r\nAddress2: \r\nBarangay: LOOB\r\nBasicInformationId: 3698\r\nBirthDate: October 31, 1989\r\nBirthPlace: BRGY. LOOB, MATAAS NA KAHOY, BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: MATAAS NA KAHOY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ALVIN.METRILLO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ALVIN\r\nFullName: ALVIN P. METRILLO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02004602517\r\nHDMF: 1210-4384-4175\r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: METRILLO\r\nMaidenName: \r\nMiddleName: PRICAS\r\nMobileNumber: 09054794042\r\nNationality: Filipino\r\nPermanentAddress1: 113\r\nPermanentAddress2: \r\nPermanentBarangay: LOOB\r\nPermanentCity: MATAAS NA KAHOY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4223\r\nPhilhealth: 09-050317603-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1917755-3\r\nStreetName: \r\nTIN: 417-160-149-0000\r\nWeight: 60\r\nZipCode: 4223\r\n	admin	BasicInformation	1
766315	2024-07-12	09:25:00.1944777	<Undetected>	Update	BasicInformationId: 3698\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3495\r\n	BasicInformationId: 3698\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3495\r\n	admin	Questionnaires	1
766362	2024-07-12	09:37:21.6550436	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 18 LOT 7\r\nAddress2: SUNRISE POINT SUBDIVISION\r\nBarangay: INOSLUBAN\r\nBasicInformationId: 0\r\nBirthDate: September 20, 1969\r\nBirthPlace: BATANGAS CITY, BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: LIPA CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: FE.FALLURIN001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: FE\r\nFullName: FE M. FALLURIN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.47\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7221704\r\nLastName: FALLURIN\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nMobileNumber: 09688568869\r\nNationality: Filipino\r\nPermanentAddress1: 1222\r\nPermanentAddress2: TWINVILLA SUBDIVISION\r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: BORIN STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 44\r\nZipCode: 4217\r\n	admin	BasicInformation	1
766363	2024-07-12	09:37:21.6754426	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3701\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1976\r\nDateTo: 1982\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BUCAYAO ELEMENTARY SCHOOL \r\nYearGraduated: 1982\r\n	admin	EducationalBackgrounds	1
766364	2024-07-12	09:37:21.6754426	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3701\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1982\r\nDateTo: 1986\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: CALAPAN SCHOOL OF ARTS AND TRADES\r\nYearGraduated: 1986\r\n	admin	EducationalBackgrounds	1
766365	2024-07-12	09:37:21.6754426	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3701\r\nCourse: \r\nCourseId: 1270\r\nCourseOrMajor: \r\nDateFrom: 1986\r\nDateTo: 1990\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS \r\nYearGraduated: 1990\r\n	admin	EducationalBackgrounds	1
766366	2024-07-12	09:37:21.6764391	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3701\r\nCourse: \r\nCourseId: 1310\r\nCourseOrMajor: \r\nDateFrom: 2016\r\nDateTo: 2019\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS \r\nYearGraduated: 2020\r\n	admin	EducationalBackgrounds	1
766316	2024-07-12	09:26:36.1098264	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 6TH REGIONAL CAREER ADVOCACY CONGRESS- PH 4.0: PREPARING FOR A DIGITAL-READY WORKFORCE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766319	2024-07-12	09:31:21.5176515	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FERDERATION OF SUPREME STUDENT GOVERNMENT LEADERSHIP FORUM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766320	2024-07-12	09:31:57.6136508	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FEDERATION OF SUPREME STUDENT GOVERNMENT LEADERSHIP FORUM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766351	2024-07-12	09:34:21.0963822	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3697\r\nEmployeeTrainingId: 0\r\nFromDate: September 12, 2023\r\nHours: 24\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15113\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766352	2024-07-12	09:34:21.1013831	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3697\r\nEmployeeTrainingId: 0\r\nFromDate: July 29, 2023\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: August 03, 2023\r\nTrainingId: 16152\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766353	2024-07-12	09:34:21.1063820	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3697\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766354	2024-07-12	09:34:21.1114289	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3697\r\nEmployeeTrainingId: 0\r\nFromDate: December 05, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: December 06, 2019\r\nTrainingId: 16161\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766355	2024-07-12	09:34:21.1164215	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3697\r\nEmployeeTrainingId: 0\r\nFromDate: December 02, 2019\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: December 04, 2019\r\nTrainingId: 16163\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766356	2024-07-12	09:34:21.1214231	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3697\r\nEmployeeTrainingId: 0\r\nFromDate: November 03, 2019\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: November 07, 2019\r\nTrainingId: 16172\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766357	2024-07-12	09:34:21.1263819	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3697\r\nEmployeeTrainingId: 0\r\nFromDate: October 07, 2019\r\nHours: 40\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: October 11, 2019\r\nTrainingId: 16176\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766358	2024-07-12	09:34:21.1313818	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3697\r\nEmployeeTrainingId: 0\r\nFromDate: September 06, 2019\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF LABOR AND EMPLOYMENT REGION IV-A & ADVOCATES FOR CAREER AND EDUCATION SUPPPORT, INC. (ACESI)\r\nStatus: \r\nToDate: September 06, 2019\r\nTrainingId: 16179\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766359	2024-07-12	09:34:21.1353818	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3697\r\nEmployeeTrainingId: 0\r\nFromDate: July 09, 2019\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 12, 2019\r\nTrainingId: 536\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766360	2024-07-12	09:34:21.1413823	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3697\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2019\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency:  DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: March 30, 2019\r\nTrainingId: 16183\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766376	2024-07-12	09:47:12.6941771	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3697\r\nSkillId: 0\r\nSkillName: MUSIC (SINGING)\r\n	admin	Skills	1
766377	2024-07-12	09:47:12.6991771	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3697\r\nSkillId: 0\r\nSkillName: VISUAL ARTS (PAINTING & SKETCHING)\r\n	admin	Skills	1
766378	2024-07-12	09:47:12.7061775	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3697\r\nSkillId: 0\r\nSkillName: CANVA EDITING\r\n	admin	Skills	1
766379	2024-07-12	09:47:12.7111780	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3697\r\nRecognitionId: 0\r\nRecognitionName: MERITORIOUS PERFORMANCE AWARD- SDO BATANGAS CITY\r\n	admin	Recognitions	1
766380	2024-07-12	09:47:12.7191784	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3697\r\nRecognitionId: 0\r\nRecognitionName: CERTIFIED HU,AM RESOURCE ASSOCIATE (CHRA)\r\n	admin	Recognitions	1
766328	2024-07-12	09:32:11.6872683	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3700\r\nBirthDate: December 20, 2016\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MA. YSABELLE PAULINE\r\nFullName: MA. YSABELLE PAULINE D. SABELLANO\r\nGender: Female\r\nLastName: SABELLANO\r\nMaidenName: \r\nMiddleName: D.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766329	2024-07-12	09:32:11.6992684	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3700\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RUFINO\r\nFullName: RUFINO MARAMOT DALANGIN\r\nGender: Male\r\nLastName: DALANGIN\r\nMaidenName: \r\nMiddleName: MARAMOT\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
766330	2024-07-12	09:32:11.7222680	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3700\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EMELINDA\r\nFullName: EMELINDA BILBES ABDON\r\nGender: Female\r\nLastName: ABDON\r\nMaidenName: \r\nMiddleName: BILBES\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
766331	2024-07-12	09:32:11.7342750	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3700\r\nEmployeeTrainingId: 0\r\nFromDate: September 19, 2023\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED CENTRAL OFFICE - BLSS SCHOOL HEALTH DIVISION\r\nStatus: \r\nToDate: September 22, 2023\r\nTrainingId: 16144\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766332	2024-07-12	09:32:11.7382740	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3700\r\nEmployeeTrainingId: 0\r\nFromDate: September 14, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED CALABARZON - ESSD REGIONAL OFFICE\r\nStatus: \r\nToDate: September 15, 2023\r\nTrainingId: 16147\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766333	2024-07-12	09:32:11.7437797	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3700\r\nEmployeeTrainingId: 0\r\nFromDate: August 23, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARMENT OF HEALTH - CALABARZON\r\nStatus: \r\nToDate: August 25, 2023\r\nTrainingId: 16150\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766334	2024-07-12	09:32:11.7487793	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3700\r\nEmployeeTrainingId: 0\r\nFromDate: February 15, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: PHILIPPINES SOCIETY OF HYPERTENSION PHILIPPINE LIPID AND ATHERIOSCIEROSIS\r\nStatus: \r\nToDate: February 17, 2023\r\nTrainingId: 16154\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766335	2024-07-12	09:32:11.7527793	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3700\r\nEmployeeTrainingId: 0\r\nFromDate: February 21, 2022\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: MAKATI MEDICAL CENTER SECTION OF CARDIOLOGY\r\nStatus: \r\nToDate: February 22, 2022\r\nTrainingId: 16173\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766336	2024-07-12	09:32:11.7577793	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3700\r\nEmployeeTrainingId: 0\r\nFromDate: March 01, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: PHILIPPINE AMBULATORY PEDIATRIC ASSOCIATION, INC.\r\nStatus: \r\nToDate: March 02, 2023\r\nTrainingId: 16174\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766337	2024-07-12	09:32:11.7617792	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3700\r\nEmployeeTrainingId: 0\r\nFromDate: March 09, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: PSPGHAN, INC.\r\nStatus: \r\nToDate: March 11, 2023\r\nTrainingId: 16177\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766338	2024-07-12	09:32:11.7667792	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3700\r\nEmployeeTrainingId: 0\r\nFromDate: April 01, 2023\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: XAVIER UNIVERSITY COLLEGE OF MEDICINE\r\nStatus: \r\nToDate: April 01, 2023\r\nTrainingId: 16178\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766339	2024-07-12	09:32:11.7707791	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3700\r\nCharacterReferenceId: 0\r\nCompanyAddress: POBLACION BACO, ORIENTAL MINDORO\r\nCompanyName: \r\nContactNumber: 91585196443\r\nExtensionName: \r\nFirstName: GRACHELA\r\nLastName: MALIWANAG\r\nMiddleName: V.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766340	2024-07-12	09:32:11.7757793	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3700\r\nCharacterReferenceId: 0\r\nCompanyAddress: CAMILMIL CALAPAN CITY\r\nCompanyName: \r\nContactNumber: 917858519643\r\nExtensionName: \r\nFirstName: COLETA \r\nLastName: QUINDONG\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766341	2024-07-12	09:32:11.7797794	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3700\r\nCharacterReferenceId: 0\r\nCompanyAddress: BARANGAY 20, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 9561407829\r\nExtensionName: \r\nFirstName: MARIANNE \r\nLastName: MEDINA\r\nMiddleName: R.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766342	2024-07-12	09:32:11.7847793	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3700\r\nDateOfExamination: August 01, 2010\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 01, 2010\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0118498\r\nPlaceOfExamination: MANILA\r\nRating: 80%\r\nTitle: PHYSICIAN LICENSURE EXAM\r\n	admin	Eligibilities	1
766343	2024-07-12	09:32:11.7887793	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3700\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: August 14, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 63,997.00\r\nPositionHeld: MNEDICAL OFFIECER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 21-1\r\nStatus: Permanent\r\nToDate: July 12, 2024\r\n	admin	Experiences	1
766344	2024-07-12	09:32:11.7937795	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3700\r\nCompanyInstitution: BATANGAS STATE UNIVERSITY P\r\nExperienceId: 0\r\nFromDate: June 16, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: PART TIME PHYSICIAN \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Temporary\r\nToDate: August 10, 2023\r\n	admin	Experiences	1
766345	2024-07-12	09:32:11.7977791	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3700\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - CALAPAN CITY\r\nExperienceId: 0\r\nFromDate: September 22, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 61,844.00\r\nPositionHeld: MEDICAL OFFICER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 21-2\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
766346	2024-07-12	09:32:11.8017791	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3700\r\nCompanyInstitution: DALANGIN CHILD CARE MEDICAL CLINIC\r\nExperienceId: 0\r\nFromDate: May 01, 2015\r\nIsGovernmentService: False\r\nMonthlySalary: 20,000.00\r\nPositionHeld: PHYSICIAN\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: November 30, 2016\r\n	admin	Experiences	1
766347	2024-07-12	09:32:11.8067793	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3700\r\nCompanyInstitution: UNITED DOCTORS MEDICAL CENTER\r\nExperienceId: 0\r\nFromDate: January 01, 2012\r\nIsGovernmentService: False\r\nMonthlySalary: 12,000.00\r\nPositionHeld: PEDIATRIC RESIDENT PHYSICIAN\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: December 31, 2012\r\n	admin	Experiences	1
766348	2024-07-12	09:32:11.8117795	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3700\r\nSkillId: 0\r\nSkillName: GOOD COMPUTER SKILLS\r\n	admin	Skills	1
766349	2024-07-12	09:32:11.8157792	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3700\r\nSkillId: 0\r\nSkillName: GOOD INTERPERSONAL SKILLS\r\n	admin	Skills	1
766350	2024-07-12	09:32:11.8207795	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3700\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
766375	2024-07-12	09:46:55.1821585	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BS ACCOUNTANCY\r\nLevel: College\r\n	admin	Courses	1
766462	2024-07-12	10:35:36.1144985	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN TEODORO\r\nBasicInformationId: 0\r\nBirthDate: May 11, 1974\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: madonna.abrugena@deped.gov.ph\r\nExtensionName: \r\nFirstName: MADONNA\r\nFullName: MADONNA B. ABRUGENA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437022094\r\nLastName: ABRUGENA\r\nMaidenName: \r\nMiddleName: BORILLO\r\nMobileNumber: 09393665149\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN TEODORO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ILAYA\r\nPermanentZipCode: 4201\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ILAYA\r\nTIN: \r\nWeight: 68\r\nZipCode: 4201\r\n	admin	BasicInformation	1
766463	2024-07-12	10:35:36.1364966	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3702\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1981\r\nDateTo: 1987\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS CITY SOUTH ELEMENTARY SCHOOL\r\nYearGraduated: 1987\r\n	admin	EducationalBackgrounds	1
766524	2024-07-12	10:40:26.2458702	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CALABARZON REGIONAL AND SDO ONLINE ORIENTATION ON D.O. 14, S. 2020 AND ORGANIZING THE CALABARZON COVID -19TASK FORCE VIA GOOGLE MEET\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766361	2024-07-12	09:34:36.6615580	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CONSTRUCTION OCCUPATIONAL SAFETY AND HEALTH TRAINING FOR SAFETY OFFICER 2(SO2),EL CIETO HOTEL,STA, ROSA CITY, LAGUNA INFRASTUCTURE AUDIT TRAINING WORKSHOP BATANGAS CITY CONVENTION CENTER, BATANGAS CITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766373	2024-07-12	09:41:47.4843204	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CONSTRUCTION OCCUPATIONAL SAFETY AND HEALTH TRAINING FOR SAFETY OFFICER 2(SO2),EL CIETO HOTEL,STA, ROSA CITY, LAGUNA\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766374	2024-07-12	09:45:48.9586100	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ENHANCEMENT OF CONTINGENCY PLAN FOR DIFFERENT HAZARDS CUM COORDINATION MEETING, BULWAGANG ALA EH,SCHOOLS DIVISION OFFICE OF BATANGAS CITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766388	2024-07-12	09:48:50.1586425	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PROVISION OF TECHNICAL ASSITANCE OF PLANNING AND MANAGING RESOURCES, BULWAGANG ALA EH SCHOOLS DIVISION OFFICE OF BATANGAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766389	2024-07-12	09:52:15.1029720	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION WORKSHOP ON THE DEVELOPMENT OF PROGRAM FOR CAPABILITY BUILDING OF TEACHERS AND SCHOOL LEADERS ,SOLANA EVENT CENTER , ALANGILAN, BATANGAS CITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766390	2024-07-12	09:58:40.0071150	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION TRAINING COURSE FOR SAFETY OFFICER I (SO1) WITH 2-HOUR TRAIN THE TRAINERS TRAINING,VIA ZOOM ,(ASPREC-MANALO OCCUPATIONAL SAFETY & HEALTH DEPARTMENT OF LABOR AND EMPLOYMENT)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766391	2024-07-12	09:59:51.0872836	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION /TRAINING COURSE FOR SAFETY OFFICER I (SO1) WITH 2-HOUR TRAIN THE TRAINERS TRAINING,VIA ZOOM ,(ASPREC-MANALO OCCUPATIONAL SAFETY & HEALTH DEPARTMENT OF LABOR AND EMPLOYMENT)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766392	2024-07-12	10:03:01.8885516	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: VIRTUAL TRAINING ON INTENSIVE IMPLEMENTATION OF WINS PROGRAM ON SDO BATANGAS CITY IN THIS PANDEMIC TIME ,VIA ZOOM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766429	2024-07-12	10:06:34.3123874	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL VIRTUAL TECHNICAL ASSISTANCE DELIVERY ON SCHOOL TITLING AND PHYSICAL FACILITY MANAGEMENT IN THE NEW NOTRMAL, VIA YOUTUBE LIVE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766430	2024-07-12	10:07:12.9325512	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL VIRTUAL TECHNICAL ASSISTANCE DELIVERY ON SCHOOL TITLING AND PHYSICAL FACILITY MANAGEMENT IN THE NEW NORMAL, VIA YOUTUBE LIVE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766431	2024-07-12	10:12:55.8314445	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: VIRTUAL ORIENTATION OF THE CONDUCT OF ONE-TIME CLEANSING OF PPE ACCOUNT BALANCES TO SCHOOLS DIVISION OFFICES,VIA GOOGLE MEET,(DEPARTMENT OF EDUCATION CALABARZON,VIA GOOGLE MEET)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766442	2024-07-12	10:17:41.8476311	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ACCELERATING WINS DIVISION-LEVEL WASH-IN SCHOOLS (WINS) MASSIVE OPEN ONLINE COURSE (MOOC), DEPARTMENT OF EDUCATION- CENTRAL OFFICE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766445	2024-07-12	10:20:49.3924977	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON CONTRACT TRACINGREFERRAL AND MANAGEMENT OF COVID-19 CASES IN DEPED CALABARZON, VIA GOOGLE MEET\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766449	2024-07-12	10:28:33.8985122	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CALABARZON REGIONAL AND SDO WEBSHOP CONTINGENCY PLANNING AMIDST COVID-19,VIA GOOGLE MEET\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766451	2024-07-12	10:31:50.4074990	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WEBINAR ON MENTAL HEALTH AND PSYCHOSOCIAL SUPPORT IN THE NEW NORMAL, VIA ZOOM AND FACEBOOK LIVE STREAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766367	2024-07-12	09:37:21.6764391	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3701\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FERNANDO\r\nFullName: FERNANDO FALCULAN FALLURIN\r\nGender: Male\r\nLastName: FALLURIN\r\nMaidenName: \r\nMiddleName: FALCULAN\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
766368	2024-07-12	09:37:21.6764391	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3701\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOSE\r\nFullName: JOSE ROBLES MASANGKAY\r\nGender: Male\r\nLastName: MASANGKAY\r\nMaidenName: \r\nMiddleName: ROBLES\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
766369	2024-07-12	09:37:21.6764391	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3701\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JUANA\r\nFullName: JUANA DE GUZMAN\r\nGender: Female\r\nLastName: VILLANUEVA\r\nMaidenName: \r\nMiddleName: DE GUZMAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
766370	2024-07-12	09:37:21.6764391	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3701\r\nBirthDate: May 02, 2018\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JUSTEEN FAYE\r\nFullName: JUSTEEN FAYE M FALLURIN\r\nGender: Female\r\nLastName: FALLURIN\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766371	2024-07-12	09:37:21.6764391	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3701\r\nBirthDate: February 06, 2002\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JEREMEINE FEI\r\nFullName: JEREMEINE FEI M FALLURIN\r\nGender: Female\r\nLastName: FALLURIN\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766372	2024-07-12	09:37:21.6774355	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3701\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
766393	2024-07-12	10:05:15.7018905	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3701\r\nDateOfExamination: November 10, 1991\r\nDateOfRelease: September 01, 2024\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: November 10, 1991\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0039877\r\nPlaceOfExamination: BATANGAS NATIONAL HIGH SCHOOL \r\nRating: 70.1%\r\nTitle: PROFESSIONAL BOARD EXAMINATION FOR TEACHERS \r\n	admin	Eligibilities	1
766394	2024-07-12	10:05:15.7058773	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 71,511.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: July 12, 2024\r\n	admin	Experiences	1
766395	2024-07-12	10:05:15.7108604	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 71,511.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
766396	2024-07-12	10:05:15.7158441	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 69,963.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
766397	2024-07-12	10:05:15.7208274	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: July 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 68,415.00\r\nPositionHeld: EDUCATION PROGRAM SUPERVISOR \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
766398	2024-07-12	10:05:15.7258107	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 54,251.00\r\nPositionHeld: PRINCIPAL II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-\r\nStatus: Permanent\r\nToDate: June 30, 2021\r\n	admin	Experiences	1
774653	2025-03-21	16:40:07.6666356	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3873\r\nRecognitionId: 0\r\nRecognitionName: BOY SCOUTS OF THE PHILIPPINES - BRONZE MERIT AWARD 2023\r\n	admin	Recognitions	1
766383	2024-07-12	09:47:12.7342166	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3697\r\nCharacterReferenceId: 0\r\nCompanyAddress: KUMINTANG IBABA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09499952632\r\nExtensionName: \r\nFirstName: JOANNE \r\nLastName: DOCE\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766384	2024-07-12	09:47:12.7401787	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3697\r\nCharacterReferenceId: 0\r\nCompanyAddress: BAUAN BATANGAS\r\nCompanyName: \r\nContactNumber: 09393665149\r\nExtensionName: \r\nFirstName: MADONNA\r\nLastName: ABRUGENA\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766385	2024-07-12	09:47:12.7441782	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3697\r\nCharacterReferenceId: 0\r\nCompanyAddress: GULOD ITAAS, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 723-3779\r\nExtensionName: \r\nFirstName: GRENA\r\nLastName: PEREZ\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766386	2024-07-12	09:47:12.7502389	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: MAHABANG PARANG\r\nBasicInformationId: 3697\r\nBirthDate: December 09, 1993\r\nBirthPlace: NAUJAN, ORIENTAL MINDORO\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jesricbrian.panaligan@deped.gov.ph\r\nExtensionName: \r\nFirstName: JESRIC BRIAN\r\nFullName: JESRIC BRIAN F. PANALIGAN\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.76\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PANALIGAN\r\nMaidenName: \r\nMiddleName: FAJILAN\r\nMobileNumber: 09953412459\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: MAHABANG PARANG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 87\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: MAHABANG PARANG\r\nBasicInformationId: 3697\r\nBirthDate: December 09, 1993\r\nBirthPlace: NAUJAN, ORIENTAL MINDORO\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jesricbrian.panaligan@deped.gov.ph\r\nExtensionName: \r\nFirstName: JESRIC BRIAN\r\nFullName: JESRIC BRIAN F. PANALIGAN\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02115819374\r\nHDMF: 1211-6176-9440\r\nHeight: 1.76\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PANALIGAN\r\nMaidenName: \r\nMiddleName: FAJILAN\r\nMobileNumber: 09953412459\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: MAHABANG PARANG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000092686-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 471-834-835-0000\r\nWeight: 87\r\nZipCode: 4200\r\n	admin	BasicInformation	1
766387	2024-07-12	09:47:12.7542386	<Undetected>	Update	BasicInformationId: 3697\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3494\r\n	BasicInformationId: 3697\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3494\r\n	admin	Questionnaires	1
766399	2024-07-12	10:05:15.7307939	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 52,703.00\r\nPositionHeld: PRINCIPAL II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
766400	2024-07-12	10:05:15.7357773	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: September 02, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 51,155.00\r\nPositionHeld: PRINCIPAL II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
766401	2024-07-12	10:05:15.7397641	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 45,269.00\r\nPositionHeld: PRINCIPAL I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: September 01, 2019\r\n	admin	Experiences	1
766402	2024-07-12	10:05:15.7447472	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: July 02, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 42,730.00\r\nPositionHeld: PRINCIPAL I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
766403	2024-07-12	10:05:15.7497301	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 42,730.00\r\nPositionHeld: SENIOR EDUCATION PROGRAM SPECIALIST \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: July 01, 2018\r\n	admin	Experiences	1
766404	2024-07-12	10:05:15.7547138	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 39,685.00\r\nPositionHeld: SENIOR EDUCATION PROGRAM SPECIALIST \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
766405	2024-07-12	10:05:15.7596973	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: May 25, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 36,409.00\r\nPositionHeld: SENIOR EDUCATION PROGRAM SPECIALIST \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
766406	2024-07-12	10:05:15.7646807	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 36,409.00\r\nPositionHeld: SENIOE EDUCATION PROGRAM SPECIALIST \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: May 24, 2016\r\n	admin	Experiences	1
766407	2024-07-12	10:05:15.7686671	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: May 25, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 33,856.00\r\nPositionHeld: SENIOR EDUCATION PROGRAM SPECIALIST \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-2\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
766408	2024-07-12	10:05:15.7746470	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: June 04, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 33,856.00\r\nPositionHeld: MASTER TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: May 24, 2015\r\n	admin	Experiences	1
766409	2024-07-12	10:05:15.7786337	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 31,696.00\r\nPositionHeld: MASTER TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: June 03, 2012\r\n	admin	Experiences	1
766410	2024-07-12	10:05:15.7836718	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 28,684.00\r\nPositionHeld: MASTER TEACJER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
766411	2024-07-12	10:05:15.7886590	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 25,671.00\r\nPositionHeld: MASTER TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
766412	2024-07-12	10:05:15.7926452	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: February 19, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 22,659.00\r\nPositionHeld: MASTER TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
766413	2024-07-12	10:05:15.7976286	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 22,214.00\r\nPositionHeld: MASTER TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-\r\nStatus: Permanent\r\nToDate: February 18, 2010\r\n	admin	Experiences	1
766414	2024-07-12	10:05:15.8026120	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 17,059.00\r\nPositionHeld: MASTER TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
766415	2024-07-12	10:05:15.8075953	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 15,508.00\r\nPositionHeld: MASTER TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
766416	2024-07-12	10:05:15.8125784	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: February 19, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 14,098.00\r\nPositionHeld: MASTER TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
766417	2024-07-12	10:05:15.8175618	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: November 17, 2003\r\nIsGovernmentService: True\r\nMonthlySalary: 11,167.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-\r\nStatus: Permanent\r\nToDate: February 18, 2007\r\n	admin	Experiences	1
766418	2024-07-12	10:05:15.8215483	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 10,798.00\r\nPositionHeld: TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-\r\nStatus: Permanent\r\nToDate: November 16, 2003\r\n	admin	Experiences	1
766419	2024-07-12	10:05:15.8265316	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 10,535.00\r\nPositionHeld: TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 2001\r\n	admin	Experiences	1
766420	2024-07-12	10:05:15.8315151	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 10,033.00\r\nPositionHeld: TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
766421	2024-07-12	10:05:15.8364983	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 9,121.00\r\nPositionHeld: TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
766435	2024-07-12	10:13:27.4103940	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: September 02, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 6,243.00\r\nPositionHeld: TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 1996\r\n	admin	Experiences	1
766422	2024-07-12	10:05:15.8404850	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 18 LOT 7\r\nAddress2: SUNRISE POINT SUBDIVISION\r\nBarangay: INOSLUBAN\r\nBasicInformationId: 3701\r\nBirthDate: September 20, 1969\r\nBirthPlace: BATANGAS CITY, BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: LIPA CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: FE.FALLURIN001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: FE\r\nFullName: FE M. FALLURIN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.47\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7221704\r\nLastName: FALLURIN\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nMobileNumber: 09688568869\r\nNationality: Filipino\r\nPermanentAddress1: 1222\r\nPermanentAddress2: TWINVILLA SUBDIVISION\r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: BORIN STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 44\r\nZipCode: 4217\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 18 LOT 7\r\nAddress2: SUNRISE POINT SUBDIVISION\r\nBarangay: INOSLUBAN\r\nBasicInformationId: 3701\r\nBirthDate: September 20, 1969\r\nBirthPlace: BATANGAS CITY, BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: LIPA CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: FE.FALLURIN001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: FE\r\nFullName: FE M. FALLURIN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.47\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7221704\r\nLastName: FALLURIN\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nMobileNumber: 09688568869\r\nNationality: Filipino\r\nPermanentAddress1: 1222\r\nPermanentAddress2: TWINVILLA SUBDIVISION\r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: BORIN STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 44\r\nZipCode: 4217\r\n	admin	BasicInformation	1
766423	2024-07-12	10:05:15.8464651	<Undetected>	Update	BasicInformationId: 3701\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3660\r\nExtensionName: \r\nFirstName: FERNANDO\r\nFullName: FERNANDO FALCULAN FALLURIN\r\nGender: Male\r\nLastName: FALLURIN\r\nMaidenName: \r\nMiddleName: FALCULAN\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3701\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3660\r\nExtensionName: \r\nFirstName: FERNANDO\r\nFullName: FERNANDO FALLURIN\r\nGender: Male\r\nLastName: FALLURIN\r\nMaidenName: \r\nMiddleName: FALCULAN\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
766424	2024-07-12	10:05:15.8504517	<Undetected>	Update	BasicInformationId: 3701\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3661\r\nExtensionName: \r\nFirstName: JOSE\r\nFullName: JOSE ROBLES MASANGKAY\r\nGender: Male\r\nLastName: MASANGKAY\r\nMaidenName: \r\nMiddleName: ROBLES\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3701\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3661\r\nExtensionName: \r\nFirstName: JOSE\r\nFullName: JOSE MASANGKAY\r\nGender: Male\r\nLastName: MASANGKAY\r\nMaidenName: \r\nMiddleName: ROBLES\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
766425	2024-07-12	10:05:15.8554351	<Undetected>	Update	BasicInformationId: 3701\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3662\r\nExtensionName: \r\nFirstName: JUANA\r\nFullName: JUANA DE GUZMAN\r\nGender: Female\r\nLastName: VILLANUEVA\r\nMaidenName: \r\nMiddleName: DE GUZMAN\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3701\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3662\r\nExtensionName: \r\nFirstName: JUANA\r\nFullName: JUANA VILLANUEVA\r\nGender: Female\r\nLastName: VILLANUEVA\r\nMaidenName: \r\nMiddleName: DE GUZMAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
766426	2024-07-12	10:05:15.8604183	<Undetected>	Update	BasicInformationId: 3701\r\nBirthDate: May 02, 2018\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3663\r\nExtensionName: \r\nFirstName: JUSTEEN FAYE\r\nFullName: JUSTEEN FAYE M FALLURIN\r\nGender: Female\r\nLastName: FALLURIN\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3701\r\nBirthDate: May 02, 2018\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3663\r\nExtensionName: \r\nFirstName: JUSTEEN FAYE\r\nFullName: JUSTEEN FAYE FALLURIN\r\nGender: Female\r\nLastName: FALLURIN\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766427	2024-07-12	10:05:15.8654016	<Undetected>	Update	BasicInformationId: 3701\r\nBirthDate: February 06, 2002\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3664\r\nExtensionName: \r\nFirstName: JEREMEINE FEI\r\nFullName: JEREMEINE FEI M FALLURIN\r\nGender: Female\r\nLastName: FALLURIN\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3701\r\nBirthDate: February 06, 2002\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3664\r\nExtensionName: \r\nFirstName: JEREMEINE FEI\r\nFullName: JEREMEINE FEI FALLURIN\r\nGender: Female\r\nLastName: FALLURIN\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766428	2024-07-12	10:05:15.8693882	<Undetected>	Update	BasicInformationId: 3701\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3498\r\n	BasicInformationId: 3701\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3498\r\n	admin	Questionnaires	1
766432	2024-07-12	10:13:27.3954436	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 9,121.00\r\nPositionHeld: TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 1998\r\n	admin	Experiences	1
766433	2024-07-12	10:13:27.4004277	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: November 17, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 9,121.00\r\nPositionHeld: TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 1997\r\n	admin	Experiences	1
766434	2024-07-12	10:13:27.4054104	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 7,862.00\r\nPositionHeld: TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: October 31, 1997\r\n	admin	Experiences	1
766550	2024-07-12	11:00:11.1724667	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING ON THE PROVISIONS OF RA 1650\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766436	2024-07-12	10:13:27.4153772	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 6,013.00\r\nPositionHeld: TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-\r\nStatus: Permanent\r\nToDate: September 01, 1996\r\n	admin	Experiences	1
766437	2024-07-12	10:13:27.4193637	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 4,092.00\r\nPositionHeld: TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-\r\nStatus: Permanent\r\nToDate: December 31, 1995\r\n	admin	Experiences	1
766438	2024-07-12	10:13:27.4253441	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: July 14, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 3,902.00\r\nPositionHeld: TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-\r\nStatus: Permanent\r\nToDate: December 31, 1994\r\n	admin	Experiences	1
766439	2024-07-12	10:13:27.4293304	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS PROVINCE \r\nExperienceId: 0\r\nFromDate: January 01, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 3,902.00\r\nPositionHeld: TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-\r\nStatus: Permanent\r\nToDate: July 13, 1994\r\n	admin	Experiences	1
766440	2024-07-12	10:13:27.4343138	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3701\r\nCompanyInstitution: DEPED BATANGAS PROVINCE \r\nExperienceId: 0\r\nFromDate: January 19, 1993\r\nIsGovernmentService: True\r\nMonthlySalary: 3,102.00\r\nPositionHeld: TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-\r\nStatus: Permanent\r\nToDate: December 31, 1993\r\n	admin	Experiences	1
766441	2024-07-12	10:15:08.6547867	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL ROLL- OUT OF THE SCHOOL GOVERNANCE COUNCIL: FUNCTIONALTY ASSESSMENT TOOL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766443	2024-07-12	10:18:32.5588853	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING WORKSHOP ON SYNCHRONIZED GAD PLANNING AND BUDGETING CUM PREPARATION OF GAD ACCOMPLISHMENT REPORT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766444	2024-07-12	10:20:03.5020121	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING WORKSHOP ON ESTABLISHING FUNCTIONAL CHILD PROTECTION COMMITTEES IN SCHOOLS DIVISION OFFICE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766446	2024-07-12	10:22:09.0704957	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON THE DEVELOPMENT OF LIBRARY OF VALIDATED KNOWLEDGE ON EMERGING BEST PRACTICES IN RESOLVING BLICS& TECHNICAL ASSISTANCE RESOURCE PACKAGE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766447	2024-07-12	10:25:14.4062162	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FINAL VETTING ON THE DEVELOPED IMPLEMENTING GUIDELINES ON THE REVIEWED GENDER RELATED POLICIES IN DEPED\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766448	2024-07-12	10:27:12.7662574	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FINALIZATION OF THE IMPLEMENTING GUIDELINES ON THE REVIEWED GENDER-RELATED POLICIES IN DEPED\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766450	2024-07-12	10:30:53.2458286	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DEEPINING SESSIONS FOR RO AND SDO GAD LEARNING FACILITATORS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766452	2024-07-12	10:35:05.1943683	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3701\r\nEmployeeTrainingId: 0\r\nFromDate: November 06, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: REGION IV A CALABARZON \r\nStatus: \r\nToDate: November 08, 2023\r\nTrainingId: 16195\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766453	2024-07-12	10:35:05.1993517	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3701\r\nEmployeeTrainingId: 0\r\nFromDate: November 04, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: November 05, 2023\r\nTrainingId: 15813\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766454	2024-07-12	10:35:05.2043351	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3701\r\nEmployeeTrainingId: 0\r\nFromDate: October 11, 2023\r\nHours: 24\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: REGION IV A CALABARZON \r\nStatus: \r\nToDate: October 13, 2023\r\nTrainingId: 16197\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766455	2024-07-12	10:35:05.2093183	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3701\r\nEmployeeTrainingId: 0\r\nFromDate: September 26, 2023\r\nHours: 32\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: REGION IV A CALABARZON \r\nStatus: \r\nToDate: September 29, 2023\r\nTrainingId: 16198\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766456	2024-07-12	10:35:05.2143016	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3701\r\nEmployeeTrainingId: 0\r\nFromDate: September 21, 2023\r\nHours: 16\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: REGION IV A CALABARZON \r\nStatus: \r\nToDate: September 22, 2023\r\nTrainingId: 16200\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766457	2024-07-12	10:35:05.2182883	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3701\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 15045\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766458	2024-07-12	10:35:05.2232716	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3701\r\nEmployeeTrainingId: 0\r\nFromDate: March 20, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: REGION IV A CALABARZON \r\nStatus: \r\nToDate: March 21, 2023\r\nTrainingId: 16201\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766459	2024-07-12	10:35:05.2282549	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3701\r\nEmployeeTrainingId: 0\r\nFromDate: February 22, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: REGION IV A CALABARZON \r\nStatus: \r\nToDate: February 20, 2023\r\nTrainingId: 16202\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766460	2024-07-12	10:35:05.2332383	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3701\r\nEmployeeTrainingId: 0\r\nFromDate: February 21, 2023\r\nHours: 6\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: February 21, 2023\r\nTrainingId: 15153\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766461	2024-07-12	10:35:05.2382216	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3701\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: REGION IV A CALABARZON \r\nStatus: \r\nToDate: November 24, 2022\r\nTrainingId: 16204\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766523	2024-07-12	10:38:36.2204910	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL TRAINING OF TRAINERS FOR MASTER TEACHERS PROFESSIONAL DEVELOPMENT PROGRAM 2.0 BATCH 2\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766525	2024-07-12	10:43:06.3325268	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION CUM TECHNICAL ASSISTANCE PROVISION FOR NEW RECOGNITION EVALUATION COMMITTEE ( REC) MEMBERS AND PROFESSIONAL DEVELOPMENT PROGRAM PROPONENTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766529	2024-07-12	10:46:13.2430737	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL TRAINING OF THE REGIONAL CORE OF TRAINERS FORV ALS ACT AND ITS IRR- SPEAKERS BUREAU\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766532	2024-07-12	10:48:03.0969952	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3701\r\nEmployeeTrainingId: 0\r\nFromDate: August 03, 2022\r\nHours: 48\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: August 05, 2022\r\nTrainingId: 15577\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766533	2024-07-12	10:48:03.1019786	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3701\r\nEmployeeTrainingId: 0\r\nFromDate: August 08, 2022\r\nHours: 48\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: August 11, 2022\r\nTrainingId: 15577\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766534	2024-07-12	10:48:03.1069618	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3701\r\nEmployeeTrainingId: 0\r\nFromDate: August 13, 2022\r\nHours: 48\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: REGION IV A CALABARZON \r\nStatus: \r\nToDate: August 13, 2022\r\nTrainingId: 16206\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766535	2024-07-12	10:48:03.1119451	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3701\r\nEmployeeTrainingId: 0\r\nFromDate: August 03, 2022\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: August 04, 2022\r\nTrainingId: 15799\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766536	2024-07-12	10:48:03.1169285	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3701\r\nEmployeeTrainingId: 0\r\nFromDate: July 26, 2022\r\nHours: 48\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: REGION IV A CALABARZON \r\nStatus: \r\nToDate: July 29, 2022\r\nTrainingId: 16208\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766464	2024-07-12	10:35:36.1364966	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3702\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1981\r\nDateTo: 1987\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS CITY SOUTH ELEMENTARY SCHOOL\r\nYearGraduated: 1987\r\n	admin	EducationalBackgrounds	1
766465	2024-07-12	10:35:36.1364966	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3702\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1987\r\nDateTo: 1991\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES (FORMER UNIVERSITY OF BATANGAS)\r\nYearGraduated: 1991\r\n	admin	EducationalBackgrounds	1
766466	2024-07-12	10:35:36.1364966	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3702\r\nCourse: \r\nCourseId: 1360\r\nCourseOrMajor: \r\nDateFrom: 1991\r\nDateTo: 1995\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES (FORMER UNIVERSITY OF BATANGAS)\r\nYearGraduated: 1995\r\n	admin	EducationalBackgrounds	1
766467	2024-07-12	10:35:36.1364966	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3702\r\nCourse: \r\nCourseId: 1255\r\nCourseOrMajor: \r\nDateFrom: 2004\r\nDateTo: 2006\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2006\r\n	admin	EducationalBackgrounds	1
766468	2024-07-12	10:35:36.1364966	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3702\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROGELIO\r\nFullName: ROGELIO SUGABO ABRUGENA\r\nGender: Male\r\nLastName: ABRUGENA\r\nMaidenName: \r\nMiddleName: SUGABO\r\nOccupation: NDT TECHNICIAN\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
766469	2024-07-12	10:35:36.1364966	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3702\r\nBirthDate: June 08, 2015\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DANNAH GAIL\r\nFullName: DANNAH GAIL B. ABRUGENA\r\nGender: Male\r\nLastName: ABRUGENA\r\nMaidenName: \r\nMiddleName: B.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766470	2024-07-12	10:35:36.1364966	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3702\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: VICENTE\r\nFullName: VICENTE ALCANTARA BORILLO\r\nGender: Male\r\nLastName: BORILLO\r\nMaidenName: \r\nMiddleName: ALCANTARA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
766471	2024-07-12	10:35:36.1374967	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3702\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ERIBERTA\r\nFullName: ERIBERTA RIANO RAMOS\r\nGender: Female\r\nLastName: RAMOS\r\nMaidenName: \r\nMiddleName: RIANO\r\nOccupation: \r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
766472	2024-07-12	10:35:36.1374967	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3702\r\nDateOfExamination: November 17, 1998\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: November 17, 1998\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: CSC - REGION IV\r\nRating: 81.08%\r\nTitle: CAREER SERVICE PROFESSIONAL \r\n	admin	Eligibilities	1
766473	2024-07-12	10:35:36.1374967	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3702\r\nDateOfExamination: January 24, 1994\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 7\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: January 24, 1994\r\nLevelOfEligibility: First Level (Subprofessional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 82.15\r\nTitle: CAREER SERVICE SUB-PROFESSIONAL\r\n	admin	Eligibilities	1
766474	2024-07-12	10:35:36.1374967	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3702\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 47,738.00\r\nPositionHeld: PLANNING OFFICER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-3\r\nStatus: Permanent\r\nToDate: July 12, 2024\r\n	admin	Experiences	1
766475	2024-07-12	10:35:36.1374967	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3702\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 46,216.00\r\nPositionHeld: PLANNING OFFICER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-3\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
766476	2024-07-12	10:35:36.1374967	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3702\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: May 25, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 44,694.00\r\nPositionHeld: PLANNING OFFICER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-3\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
766477	2024-07-12	10:35:36.1374967	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3702\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 44,184.00\r\nPositionHeld: PLANNING OFFICER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-3\r\nStatus: Permanent\r\nToDate: May 24, 2021\r\n	admin	Experiences	1
766478	2024-07-12	10:35:36.1374967	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3702\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 42,662.00\r\nPositionHeld: PLANNING OFFICER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-2\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
766479	2024-07-12	10:35:36.1384968	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3702\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 41,140.00\r\nPositionHeld: PLANNING OFFICER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-2\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
766480	2024-07-12	10:35:36.1384968	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3702\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: May 25, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 38,543.00\r\nPositionHeld: PLANNING OFFICER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-2\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
766481	2024-07-12	10:35:36.1384968	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3702\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 38,085.00\r\nPositionHeld: PLANNING OFFICER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-2\r\nStatus: Permanent\r\nToDate: May 24, 2018\r\n	admin	Experiences	1
766482	2024-07-12	10:35:36.1384968	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3702\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 35,693.00\r\nPositionHeld: PLANNING OFFICER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
766483	2024-07-12	10:35:36.1384968	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3702\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 33,452.00\r\nPositionHeld: PLANNING OFFICER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
766484	2024-07-12	10:35:36.1384968	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3702\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: May 25, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 31,351.00\r\nPositionHeld: PLANNING OFFICER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
766485	2024-07-12	10:35:36.1384968	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3702\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: February 12, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 17,255.00\r\nPositionHeld: ADMINISTRATIVE OFFICER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: May 24, 2015\r\n	admin	Experiences	1
766486	2024-07-12	10:35:36.1384968	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3702\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 11,405.00\r\nPositionHeld: STATISTICIAN AIDE\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-3\r\nStatus: Permanent\r\nToDate: February 11, 2013\r\n	admin	Experiences	1
766989	2024-07-12	15:49:21.0537018	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SBFP PROGRAM SUPPLIERS'/PARTNERS' FORUM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766487	2024-07-12	10:35:36.1394967	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3702\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 10,626.00\r\nPositionHeld: STATISTICIAN AIDE\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-3\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
766488	2024-07-12	10:35:36.1394967	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3702\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: False\r\nMonthlySalary: 0.00\r\nPositionHeld: STATISTICIAN AIDE\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: July 12, 2024\r\n	admin	Experiences	1
766489	2024-07-12	10:35:36.1394967	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3702\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
766490	2024-07-12	10:35:54.4329162	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3699\r\nEmployeeTrainingId: 0\r\nFromDate: February 21, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATIONSCHOOLS DIVISION OFFICE OF BATANGAS CITY \r\nStatus: \r\nToDate: February 21, 2023\r\nTrainingId: 16171\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766491	2024-07-12	10:35:54.4369030	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3699\r\nEmployeeTrainingId: 0\r\nFromDate: February 16, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGIONAL OFFICE\r\nStatus: \r\nToDate: February 17, 2023\r\nTrainingId: 16175\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766492	2024-07-12	10:35:54.4418866	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3699\r\nEmployeeTrainingId: 0\r\nFromDate: February 07, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOL INFRASTRACTURE AND FACILITIES,DEPARTMENT OF EDUCATION CENTRAL OFFICE \r\nStatus: \r\nToDate: February 09, 2023\r\nTrainingId: 16180\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766493	2024-07-12	10:35:54.4458730	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3699\r\nEmployeeTrainingId: 0\r\nFromDate: December 13, 2022\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATIONSCHOOLS DIVISION OFFICE OF BATANGAS CITY \r\nStatus: \r\nToDate: December 16, 2022\r\nTrainingId: 16181\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766494	2024-07-12	10:35:54.4508564	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3699\r\nEmployeeTrainingId: 0\r\nFromDate: October 24, 2022\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF SCIENCE AND TECHNOLOGY , PROVINCIAL SCIENCE AND TECHNOLOGYOFFICE - BATANGAS\r\nStatus: \r\nToDate: October 25, 2022\r\nTrainingId: 16184\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766495	2024-07-12	10:35:54.4548431	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3699\r\nEmployeeTrainingId: 0\r\nFromDate: November 07, 2022\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: WHITE CLIFF HEALTH AND SAFETY SERVICES\r\nStatus: \r\nToDate: November 11, 2022\r\nTrainingId: 16185\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766496	2024-07-12	10:35:54.4598263	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3699\r\nEmployeeTrainingId: 0\r\nFromDate: September 29, 2022\r\nHours: 14\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OFFICE ODF BATANGAS CITY\r\nStatus: \r\nToDate: September 30, 2022\r\nTrainingId: 16186\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766497	2024-07-12	10:35:54.4638130	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3699\r\nEmployeeTrainingId: 0\r\nFromDate: September 07, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OFFICE ODF BATANGAS CITY\r\nStatus: \r\nToDate: September 07, 2022\r\nTrainingId: 16187\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766498	2024-07-12	10:35:54.4687964	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3699\r\nEmployeeTrainingId: 0\r\nFromDate: September 04, 2022\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OFFICE ODF BATANGAS CITY\r\nStatus: \r\nToDate: September 26, 2022\r\nTrainingId: 16188\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766499	2024-07-12	10:35:54.4727830	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3699\r\nEmployeeTrainingId: 0\r\nFromDate: June 08, 2021\r\nHours: 10\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: ASPREC-MANALO OCCUPATIONAL SAFETY & HEALTH DEPARTMENT OF LABOR AND EMPLOYMENT\r\nStatus: \r\nToDate: June 09, 2021\r\nTrainingId: 16190\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766526	2024-07-12	10:44:34.8539534	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING ON ONLINE ENCODING AND VALIDATION OF THE NATIONAL PUBLIC SCHOOL BUILDING INVENTORY(NSBI) FOR SY 2019-2020, KUMINTANG ELEMENTARY SCHOOL , BATANGAS CITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766500	2024-07-12	10:35:54.4777663	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3699\r\nEmployeeTrainingId: 0\r\nFromDate: May 30, 2021\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OFFICE OF BATANGAS CITY\r\nStatus: \r\nToDate: May 31, 2021\r\nTrainingId: 16191\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766501	2024-07-12	10:35:54.4817529	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3699\r\nEmployeeTrainingId: 0\r\nFromDate: May 28, 2021\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: ASPREC-MANALO OCCUPATIONAL SAFETY & HEALTH DEPARTMENT OF LABOR AND EMPLOYMENT \r\nStatus: \r\nToDate: May 28, 2021\r\nTrainingId: 16193\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766502	2024-07-12	10:35:54.4867364	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3699\r\nEmployeeTrainingId: 0\r\nFromDate: May 27, 2021\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED CALABARZON REGIONAL OFFICE\r\nStatus: \r\nToDate: May 27, 2021\r\nTrainingId: 16194\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766503	2024-07-12	10:35:54.4907231	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3699\r\nEmployeeTrainingId: 0\r\nFromDate: January 25, 2021\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED CALABARZON REGIONAL OFFICE\r\nStatus: \r\nToDate: March 19, 2021\r\nTrainingId: 16196\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766504	2024-07-12	10:35:54.4957063	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3699\r\nEmployeeTrainingId: 0\r\nFromDate: October 14, 2020\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: EDUCATION SUPPORT SERVICES DIVISION, ESSDWITH HUMAN RESOURCES DEVELOPMENT DIVISION ,HRRD ,DEPARTMENT OF EDUCATION CALABARZON REGIONAL OFFICE\r\nStatus: \r\nToDate: October 15, 2020\r\nTrainingId: 16199\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766505	2024-07-12	10:35:54.4996930	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3699\r\nEmployeeTrainingId: 0\r\nFromDate: July 28, 2020\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: EDUCATION SUPPORT SERVICES DIVISION, ESSDWITH HUMAN RESOURCES DEVELOPMENT DIVISION ,HRRD ,DEPARTMENT OF EDUCATION CALABARZON REGIONAL OFFICE\r\nStatus: \r\nToDate: July 31, 2020\r\nTrainingId: 16203\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766506	2024-07-12	10:35:54.5046766	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3699\r\nEmployeeTrainingId: 0\r\nFromDate: July 27, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 28, 2020\r\nTrainingId: 16205\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766507	2024-07-12	10:35:54.5096596	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: LOT 8 BLK. 6\r\nAddress2: ECOVERDE HOMES\r\nBarangay: QUILIB\r\nBasicInformationId: 3699\r\nBirthDate: November 01, 1977\r\nBirthPlace: CALAPAN, ORIENTAL MINDORO\r\nBloodType: O\r\nCitizenshipType: \r\nCity: ROSARIO\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: EDUARDO.ULIT@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: EDUARDO\r\nFullName: EDUARDO M. ULIT\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ULIT\r\nMaidenName: \r\nMiddleName: MAGPILI\r\nMobileNumber: 0917421116\r\nNationality: Filipino\r\nPermanentAddress1: LOT 8 BLK. 6\r\nPermanentAddress2: ECOVERDE HOMES\r\nPermanentBarangay: QUILIB\r\nPermanentCity: ROSARIO\r\nPermanentCountry: Philippines\r\nPermanentProvince: BAtangas\r\nPermanentStreetName: \r\nPermanentZipCode: 4225\r\nPhilhealth: \r\nProvince: BAtangas\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 103\r\nZipCode: 4225\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: LOT 8 BLK. 6\r\nAddress2: ECOVERDE HOMES\r\nBarangay: QUILIB\r\nBasicInformationId: 3699\r\nBirthDate: November 01, 1977\r\nBirthPlace: CALAPAN, ORIENTAL MINDORO\r\nBloodType: O\r\nCitizenshipType: \r\nCity: ROSARIO\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: EDUARDO.ULIT@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: EDUARDO\r\nFullName: EDUARDO M. ULIT\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ULIT\r\nMaidenName: \r\nMiddleName: MAGPILI\r\nMobileNumber: 0917421116\r\nNationality: Filipino\r\nPermanentAddress1: LOT 8 BLK. 6\r\nPermanentAddress2: ECOVERDE HOMES\r\nPermanentBarangay: QUILIB\r\nPermanentCity: ROSARIO\r\nPermanentCountry: Philippines\r\nPermanentProvince: BAtangas\r\nPermanentStreetName: \r\nPermanentZipCode: 4225\r\nPhilhealth: \r\nProvince: BAtangas\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 103\r\nZipCode: 4225\r\n	admin	BasicInformation	1
766508	2024-07-12	10:35:54.5146432	<Undetected>	Update	BasicInformationId: 3699\r\nBirthDate: November 25, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3649\r\nExtensionName: \r\nFirstName: EHLEEN GENETRIE\r\nFullName: EHLEEN GENETRIE R ULIT\r\nGender: Female\r\nLastName: ULIT\r\nMaidenName: \r\nMiddleName: R\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3699\r\nBirthDate: November 25, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3649\r\nExtensionName: \r\nFirstName: EHLEEN GENETRIE\r\nFullName: EHLEEN GENETRIE ULIT\r\nGender: Female\r\nLastName: ULIT\r\nMaidenName: \r\nMiddleName: R\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766509	2024-07-12	10:35:54.5186297	<Undetected>	Update	BasicInformationId: 3699\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3650\r\nExtensionName: \r\nFirstName: EDUARDO\r\nFullName: EDUARDO SUMANDE ULIT\r\nGender: Male\r\nLastName: ULIT\r\nMaidenName: \r\nMiddleName: SUMANDE\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3699\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3650\r\nExtensionName: \r\nFirstName: EDUARDO\r\nFullName: EDUARDO ULIT\r\nGender: Male\r\nLastName: ULIT\r\nMaidenName: \r\nMiddleName: SUMANDE\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
766521	2024-07-12	10:37:27.2738642	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3703\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MERLY\r\nFullName: MERLY DE TORRES MAGBOO\r\nGender: Female\r\nLastName: MAGBOO\r\nMaidenName: \r\nMiddleName: DE TORRES\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
766510	2024-07-12	10:35:54.5226164	<Undetected>	Update	BasicInformationId: 3699\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3651\r\nExtensionName: \r\nFirstName: VERONIDIA\r\nFullName: VERONIDIA MASANGYA MAGPILI\r\nGender: Female\r\nLastName: MAGPILI\r\nMaidenName: \r\nMiddleName: MASANGYA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3699\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3651\r\nExtensionName: \r\nFirstName: VERONIDIA\r\nFullName: VERONIDIA MAGPILI\r\nGender: Female\r\nLastName: MAGPILI\r\nMaidenName: \r\nMiddleName: MASANGYA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
766511	2024-07-12	10:35:54.5275997	<Undetected>	Update	BasicInformationId: 3699\r\nBirthDate: May 04, 2010\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3652\r\nExtensionName: \r\nFirstName: ELONAH GENIEL\r\nFullName: ELONAH GENIEL R ULIT\r\nGender: Male\r\nLastName: ULIT\r\nMaidenName: \r\nMiddleName: R\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3699\r\nBirthDate: May 04, 2010\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3652\r\nExtensionName: \r\nFirstName: ELONAH GENIEL\r\nFullName: ELONAH GENIEL ULIT\r\nGender: Male\r\nLastName: ULIT\r\nMaidenName: \r\nMiddleName: R\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766512	2024-07-12	10:35:54.5315864	<Undetected>	Update	BasicInformationId: 3699\r\nBirthDate: December 02, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3653\r\nExtensionName: \r\nFirstName: GENESON EDUARDO II\r\nFullName: GENESON EDUARDO II R ULIT\r\nGender: Male\r\nLastName: ULIT\r\nMaidenName: \r\nMiddleName: R\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3699\r\nBirthDate: December 02, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3653\r\nExtensionName: \r\nFirstName: GENESON EDUARDO II\r\nFullName: GENESON EDUARDO II ULIT\r\nGender: Male\r\nLastName: ULIT\r\nMaidenName: \r\nMiddleName: R\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766513	2024-07-12	10:35:54.5365697	<Undetected>	Update	BasicInformationId: 3699\r\nBirthDate: November 25, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3654\r\nExtensionName: \r\nFirstName: EHLEEN GENETRIE\r\nFullName: EHLEEN GENETRIE R ULIT\r\nGender: Female\r\nLastName: ULIT\r\nMaidenName: \r\nMiddleName: R\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3699\r\nBirthDate: November 25, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3654\r\nExtensionName: \r\nFirstName: EHLEEN GENETRIE\r\nFullName: EHLEEN GENETRIE ULIT\r\nGender: Female\r\nLastName: ULIT\r\nMaidenName: \r\nMiddleName: R\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766514	2024-07-12	10:35:54.5405564	<Undetected>	Update	BasicInformationId: 3699\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3496\r\n	BasicInformationId: 3699\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3496\r\n	admin	Questionnaires	1
766515	2024-07-12	10:37:27.2548965	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK. 12, LOT 21\r\nAddress2: MERCEDES HOMES\r\nBarangay: SORO-SORO ILAYA\r\nBasicInformationId: 0\r\nBirthDate: October 11, 1990\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rizza.ebora@deped.gov.ph\r\nExtensionName: \r\nFirstName: RIZZA\r\nFullName: RIZZA E. BAUAL\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BAUAL\r\nMaidenName: \r\nMiddleName: EBORA\r\nMobileNumber: 09084587588\r\nNationality: Filipino\r\nPermanentAddress1: BLK. 12, LOT 21\r\nPermanentAddress2: MERCEDES HOMES\r\nPermanentBarangay: SORO-SORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 64\r\nZipCode: 4200\r\n	admin	BasicInformation	1
766516	2024-07-12	10:37:27.2738642	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: WITH HONORS\r\nBasicInformationId: 3703\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1997\r\nDateTo: 2003\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS CITY EAST ELEMENTARY SCHOOL\r\nYearGraduated: 2003\r\n	admin	EducationalBackgrounds	1
766517	2024-07-12	10:37:27.2738642	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3703\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL \r\nYearGraduated: 2007\r\n	admin	EducationalBackgrounds	1
766518	2024-07-12	10:37:27.2738642	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3703\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: BAYANI\r\nFullName: BAYANI FERRER BAUAL\r\nGender: Male\r\nLastName: BAUAL\r\nMaidenName: \r\nMiddleName: FERRER\r\nOccupation: DOCUMENT CONTROLLER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
766519	2024-07-12	10:37:27.2738642	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3703\r\nBirthDate: August 30, 2021\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ELIJAH\r\nFullName: ELIJAH E BAUAL\r\nGender: Male\r\nLastName: BAUAL\r\nMaidenName: \r\nMiddleName: E\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766520	2024-07-12	10:37:27.2738642	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3703\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ANTIFAS\r\nFullName: ANTIFAS EBORA EBORA\r\nGender: Male\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
766531	2024-07-12	10:47:45.9201698	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER OF ARTS IN EDUCATION MAJOR IN ENGLISH\r\nLevel: Master's\r\n	admin	Courses	1
766527	2024-07-12	10:45:35.8382455	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3699\r\nEmployeeTrainingId: 0\r\nFromDate: July 20, 2020\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED CALABARZON REGINAL OFFICE,(ESSD WITH FTAD AND HRDD)\r\nStatus: \r\nToDate: July 20, 2020\r\nTrainingId: 16207\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766528	2024-07-12	10:45:35.8462186	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3699\r\nEmployeeTrainingId: 0\r\nFromDate: February 21, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: February 21, 2020\r\nTrainingId: 16209\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766530	2024-07-12	10:47:43.5765208	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING ON AUDIT MANAGEMENT SYSTEM, BATANGAS CITY INTEGRATED HIGH SCHOOL ,BATANGAS CITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766540	2024-07-12	10:50:51.2645451	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL IMPLEMENTATION PLANNING WORKSHOP ON THE COMPREHENSIVE SCHOOL FACILITIES DEVELOPMENT PLAN , DEPED ECOTECH CENTER, LAHUG , CEBU CITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766541	2024-07-12	10:53:02.5361261	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: VAW FREE SDO AND GENDER- FAIR LANGUAGE ADVOCACY IN THE WORKPLACE, BULWAGANG ALA EH, SCHOOLS DIVISION OFFICE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766549	2024-07-12	10:59:21.8485934	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION EDUCATION DEVELOPMENT PLAN ADJUSTMENT CUM POST PLANNING ACTIVITIES, NAWAWALANG PARAISO RESORT AND HOTEL CAMAYSA,TAYABAS CITY, QUEZON\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766551	2024-07-12	11:03:25.3427918	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION QUALITY MANAGEMENT (DQMS) JOURNEY TOWARDS ONE DEPED, ONE QMS CERTIFICATION, M.I. SEVILLA'S RESORT ,LUCENA CITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766567	2024-07-12	11:07:02.3446924	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SAFE SPACES, ACT AND GENDER-RESPONSIVE POLICIES, BATIS ARAMIN RESORT AND HOTEL , LUCBAN QUEZON\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766569	2024-07-12	11:09:43.3688993	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RESULT-BASED PERFORMANCE MANAGEMENT SYSTEM, INDIVIDUAL PERFORMANCE COMMITMENT AND REVIEW FORMS (IPCRF) AND OFFICE PERFORMANCE COMMITMENT AND REVIEW FORM (OPCRF) RECALIBRATION, LAWAS SEASIDE RESORT, LOBO BATANGAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766571	2024-07-12	11:14:23.6667879	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 DIVISION WOMEN'S MONTH CELEBRATION WELLNESS DANCE CONTEST, BULWAGANG ALA EH SCHOOLS DIVISION OFFICE OF BATANGAS CITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766587	2024-07-12	11:18:22.5127764	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TECHNICAL ASSISTANCE TO DIVISION PROPONENTS AND SCHOOL LEADERS ON FY 2024 BUDGET PREPARATION, BULWAGANG ALA EH , SDO BATANGAS CITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766616	2024-07-12	11:24:46.1284919	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING SEMINAR ON GOVERNMENT PROCUREMENT FOR DIVISION OFFICE PERSONNEL,BULWAGANG ALA EH, SCHOOLS DIVISION OFFICE OF BATANGAS CITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766631	2024-07-12	11:28:15.7852762	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 NATIONAL PLANNING CONFERENCE : SCHOOL BUILDING PROGRAM, SUBIC BAY EXHIBITION AND CONVENTION CENTER ,SUBIC ZAMBALES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766636	2024-07-12	11:37:14.3785010	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RESULTS-BASED PERFORMANCE MANAGEMENT SYSTEM: IPCRFS AND OPCRFS RECALIBRATION,LAWAS SEASIDE RESORT, LOBO BATANGAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766639	2024-07-12	11:41:27.9954092	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3699\r\nEmployeeTrainingId: 0\r\nFromDate: January 11, 2024\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: January 12, 2024\r\nTrainingId: 16211\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766640	2024-07-12	11:41:27.9993956	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3699\r\nEmployeeTrainingId: 0\r\nFromDate: December 11, 2023\r\nHours: 27\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: SCHOOL INFRASTRUCTUTRE AND FACILITIES,DEPARTMENT OF EDUCATION CENTRAL OFFICE\r\nStatus: \r\nToDate: December 15, 2023\r\nTrainingId: 16212\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766537	2024-07-12	10:48:03.1219118	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3701\r\nEmployeeTrainingId: 0\r\nFromDate: June 30, 2022\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: June 30, 2022\r\nTrainingId: 15289\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766538	2024-07-12	10:48:03.1268951	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3701\r\nEmployeeTrainingId: 0\r\nFromDate: May 17, 2022\r\nHours: 24\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: ALS TASK FORCE, DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: May 19, 2022\r\nTrainingId: 16210\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766539	2024-07-12	10:48:03.1318786	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3701\r\nEmployeeTrainingId: 0\r\nFromDate: May 17, 2022\r\nHours: 24\r\nNatureOfParticipation: MANAGERIAL \r\nSponsoringAgency: ALS TASK FORCE, DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: May 17, 2022\r\nTrainingId: 16210\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766542	2024-07-12	10:54:01.0002502	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3701\r\nSkillId: 0\r\nSkillName: BAKING\r\n	admin	Skills	1
766543	2024-07-12	10:54:01.0042366	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3701\r\nSkillId: 0\r\nSkillName: COOKING \r\n	admin	Skills	1
766544	2024-07-12	10:54:01.0132070	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3701\r\nCharacterReferenceId: 0\r\nCompanyAddress: TINGA LABAC, BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09171158903\r\nExtensionName: \r\nFirstName: ANGELISA\r\nLastName: AMOTO \r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766545	2024-07-12	10:54:01.0171935	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3701\r\nCharacterReferenceId: 0\r\nCompanyAddress: KUMINTANG ILAYA, BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09285244985\r\nExtensionName: \r\nFirstName: ROSALINDA\r\nLastName: COMIA\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766546	2024-07-12	10:54:01.0232222	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3701\r\nCharacterReferenceId: 0\r\nCompanyAddress: GULOD ITAAS, BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09338522620\r\nExtensionName: \r\nFirstName: RANDY \r\nLastName: BAJA\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766547	2024-07-12	10:54:01.0271997	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 18 LOT 7\r\nAddress2: SUNRISE POINT SUBDIVISION\r\nBarangay: INOSLUBAN\r\nBasicInformationId: 3701\r\nBirthDate: September 20, 1969\r\nBirthPlace: BATANGAS CITY, BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: LIPA CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: FE.FALLURIN001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: FE\r\nFullName: FE M. FALLURIN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.47\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7221704\r\nLastName: FALLURIN\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nMobileNumber: 09688568869\r\nNationality: Filipino\r\nPermanentAddress1: 1222\r\nPermanentAddress2: TWINVILLA SUBDIVISION\r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: BORIN STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 44\r\nZipCode: 4217\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 18 LOT 7\r\nAddress2: SUNRISE POINT SUBDIVISION\r\nBarangay: INOSLUBAN\r\nBasicInformationId: 3701\r\nBirthDate: September 20, 1969\r\nBirthPlace: BATANGAS CITY, BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: LIPA CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: FE.FALLURIN001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: FE\r\nFullName: FE M. FALLURIN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 20029991535\r\nHDMF: 1490-0085-4500\r\nHeight: 1.47\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7221704\r\nLastName: FALLURIN\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nMobileNumber: 09688568869\r\nNationality: Filipino\r\nPermanentAddress1: 1222\r\nPermanentAddress2: TWINVILLA SUBDIVISION\r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: BORIN STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000085450-0\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-4408829-3\r\nStreetName: \r\nTIN: 158-012-045-0000\r\nWeight: 44\r\nZipCode: 4217\r\n	admin	BasicInformation	1
766548	2024-07-12	10:54:01.0321831	<Undetected>	Update	BasicInformationId: 3701\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3498\r\n	BasicInformationId: 3701\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3498\r\n	admin	Questionnaires	1
766552	2024-07-12	11:03:51.9846040	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: AB- PSYCHOLOGY \r\nLevel: College\r\n	admin	Courses	1
766553	2024-07-12	11:05:04.5922680	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER OF ARTS IN COUNSELING \r\nLevel: Master's\r\n	admin	Courses	1
766554	2024-07-12	11:06:08.4510425	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 1114\r\nAddress2: TWINVILLA SUBDIVISION\r\nBarangay: KUMINTANG ILAYA\r\nBasicInformationId: 0\r\nBirthDate: March 20, 1975\r\nBirthPlace: SAN PASCUAL, BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RHUBIE.SILANG001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RHUBIE\r\nFullName: RHUBIE S. SILANG\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437402914\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: SILANG\r\nMobileNumber: 09260391429\r\nNationality: Filipino\r\nPermanentAddress1: 1114\r\nPermanentAddress2: TWINVILLA SUBDIVISION\r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ARGON STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ARGON STREET\r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
766555	2024-07-12	11:06:08.4731331	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3704\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1982\r\nDateTo: 1988\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS CITY SOUTH ELEM. SCHOOL \r\nYearGraduated: 1988\r\n	admin	EducationalBackgrounds	1
766556	2024-07-12	11:06:08.4741298	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3704\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1988\r\nDateTo: 1992\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL \r\nYearGraduated: 1992\r\n	admin	EducationalBackgrounds	1
766557	2024-07-12	11:06:08.4741298	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3704\r\nCourse: \r\nCourseId: 1362\r\nCourseOrMajor: \r\nDateFrom: 1992\r\nDateTo: 1996\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: LYCEUM OF THE PHILIPPINES UNIVERSITY- BATANGAS \r\nYearGraduated: 1996\r\n	admin	EducationalBackgrounds	1
766558	2024-07-12	11:06:08.4741298	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3704\r\nCourse: \r\nCourseId: 1363\r\nCourseOrMajor: \r\nDateFrom: 2014\r\nDateTo: 2016\r\nEducationalAttainment: CAR\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: NATIONAL TEACHERS COLLEGE \r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
766559	2024-07-12	11:06:08.4741298	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3704\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RANDY\r\nFullName: RANDY CEPILLO SILANG\r\nGender: Male\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: CEPILLO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
766560	2024-07-12	11:06:08.4741298	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3704\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROMUALDO\r\nFullName: ROMUALDO ARELLANO MAUHAY\r\nGender: Male\r\nLastName: MAUHAY\r\nMaidenName: \r\nMiddleName: ARELLANO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
766561	2024-07-12	11:06:08.4741298	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3704\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: NATIVIDAD\r\nFullName: NATIVIDAD GARCIA\r\nGender: Female\r\nLastName: MASANGCAY\r\nMaidenName: \r\nMiddleName: GARCIA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
766562	2024-07-12	11:06:08.4751259	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3704\r\nBirthDate: January 25, 1996\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JIM DANRY\r\nFullName: JIM DANRY M SILANG\r\nGender: Male\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766563	2024-07-12	11:06:08.4751259	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3704\r\nBirthDate: June 03, 1998\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOHN ANDRY\r\nFullName: JOHN ANDRY M SILANG\r\nGender: Male\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766564	2024-07-12	11:06:08.4751259	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3704\r\nBirthDate: May 09, 2002\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ANGELICA ARBIE\r\nFullName: ANGELICA ARBIE M SILANG\r\nGender: Female\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766565	2024-07-12	11:06:08.4751259	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3704\r\nBirthDate: February 21, 2006\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MIKAELA AUBREY\r\nFullName: MIKAELA AUBREY M SILANG\r\nGender: Female\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766566	2024-07-12	11:06:08.4751259	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3704\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
766572	2024-07-12	11:16:45.1683301	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3704\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 12, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 27,284.00\r\nPositionHeld: PROJECT DEVELOPMENT OFFICER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: July 12, 2024\r\n	admin	Experiences	1
774654	2025-03-21	16:40:07.6716190	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3873\r\nRecognitionId: 0\r\nRecognitionName: BOY SCOUTS OF THE PHILIPPINES - GOLD SERVICE AWARD 2020\r\n	admin	Recognitions	1
766568	2024-07-12	11:08:09.6149109	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON THE PREPARATION OF FY 2024 FORWARD ESTIMATES ON BASIC EDUCATION CRUCIAL RESOURCES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766570	2024-07-12	11:11:32.0131831	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL PLANNING CONFERENCE ON THE SCHOOL BUILDING PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766588	2024-07-12	11:20:43.9184150	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING ON INCLUSIVE EDUCATION AS A WHOLE SYSTEM APPROACH\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766614	2024-07-12	11:22:44.6236387	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2022 NATIONAL PLANNING CONFERENCE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766615	2024-07-12	11:24:29.7933076	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DATA MANAGEMENT INFORMATION REQUIREMENTS FOR SY 2022-2023\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766630	2024-07-12	11:28:00.2560521	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SEMINAR WORKSHOP ON SYNCHRONIZED GAD PLANNING AND BUDGETING CUM PREPARATION OF GAD ACCOMPLISHMENT REPORT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766633	2024-07-12	11:31:11.4305980	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 - 2028 DIVISION EDUCATION DEVELOPMENT PLAN WORKSHOP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766635	2024-07-12	11:33:43.3661541	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING ON KEY PERFORMANCE INDICATORS WORKSHOP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766637	2024-07-12	11:40:01.2566623	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SHARING THE BASIC EDUCATION PLAN IN CALABARZON (PHASE 3)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766651	2024-07-12	11:43:21.2222607	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL TRAINING OF TRAINERS ON PROGRAM INFORMATION SYSTEM (PMIS)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766662	2024-07-12	12:02:56.8185250	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3702\r\nSkillId: 0\r\nSkillName: COMPUTER SKILLS, BASIC SIGN LANGUAGE\r\n	admin	Skills	1
766663	2024-07-12	12:02:56.8235249	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3702\r\nSkillId: 0\r\nSkillName: WRITING AND COMPREHENSION, BOOKEEPING\r\n	admin	Skills	1
766664	2024-07-12	12:02:56.8275247	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3702\r\nSkillId: 0\r\nSkillName: BOWLING\r\n	admin	Skills	1
766665	2024-07-12	12:02:56.8335258	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3702\r\nOrganizationId: 0\r\nOrganizationName: COLLEGE EDITORS GUILD OF THE PHILIPPINES 1992 - 1995\r\n	admin	Organizations	1
766666	2024-07-12	12:02:56.8375253	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3702\r\nOrganizationId: 0\r\nOrganizationName: BUSINESS MANAGER - THE WESTERNIAN ADVOCATE 1992 - 1995\r\n	admin	Organizations	1
766667	2024-07-12	12:02:56.8425250	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3702\r\nEmployeeTrainingId: 0\r\nFromDate: December 13, 2023\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY/TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - CENTRAL OFFICE\r\nStatus: \r\nToDate: December 15, 2023\r\nTrainingId: 16215\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766668	2024-07-12	12:02:56.8475712	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3702\r\nEmployeeTrainingId: 0\r\nFromDate: September 25, 2023\r\nHours: 16\r\nNatureOfParticipation: SUPERVISORY/TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION BATANGAS CITY\r\nStatus: \r\nToDate: September 26, 2023\r\nTrainingId: 15140\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766669	2024-07-12	12:02:56.8525721	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3702\r\nEmployeeTrainingId: 0\r\nFromDate: March 21, 2023\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY/TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 23, 2023\r\nTrainingId: 16122\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766670	2024-07-12	12:02:56.8565646	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3702\r\nEmployeeTrainingId: 0\r\nFromDate: February 16, 2023\r\nHours: 16\r\nNatureOfParticipation: SUPERVISORY/TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - REGIONAL IV A - CALABARZON\r\nStatus: \r\nToDate: February 17, 2023\r\nTrainingId: 16218\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766717	2024-07-12	13:08:44.0749877	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ONLINE TRAINING ON TEACHERS' COMPETENCE IMPROVEMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766573	2024-07-12	11:16:45.1743105	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3704\r\nCompanyInstitution: DEPED BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: November 16, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 23,877.00\r\nPositionHeld: ADMINISTRATIVE OFFICER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: November 30, 2021\r\n	admin	Experiences	1
766574	2024-07-12	11:16:45.1782971	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3704\r\nCompanyInstitution: DEPED BATANGAS PROVINCE \r\nExperienceId: 0\r\nFromDate: March 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 18,758.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 91-\r\nStatus: Permanent\r\nToDate: November 15, 2020\r\n	admin	Experiences	1
766575	2024-07-12	11:16:45.1842772	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3704\r\nCompanyInstitution: DEPED BATANGAS PROVINCE\r\nExperienceId: 0\r\nFromDate: April 03, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 17,818.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 81-\r\nStatus: Permanent\r\nToDate: February 28, 2019\r\n	admin	Experiences	1
766576	2024-07-12	11:16:45.1882635	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3704\r\nCompanyInstitution: RAYTHEON EBASCO OVERSEAS LTD. \r\nExperienceId: 0\r\nFromDate: December 06, 1999\r\nIsGovernmentService: False\r\nMonthlySalary: 15,000.00\r\nPositionHeld: SECRETARY \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: August 31, 2002\r\n	admin	Experiences	1
766577	2024-07-12	11:16:45.1942435	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3704\r\nCompanyInstitution: CRISTO REY INSTITUTE FOR CAREER DEVELOPMENT \r\nExperienceId: 0\r\nFromDate: April 01, 1997\r\nIsGovernmentService: False\r\nMonthlySalary: 4,500.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: September 30, 1997\r\n	admin	Experiences	1
766578	2024-07-12	11:16:45.1982303	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3704\r\nCompanyInstitution: OFFICE OF THE CITY MAYOR BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: November 25, 1996\r\nIsGovernmentService: False\r\nMonthlySalary: 4,000.00\r\nPositionHeld: CLERK I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: March 31, 1997\r\n	admin	Experiences	1
766579	2024-07-12	11:16:45.2042520	<Undetected>	Update	BasicInformationId: 3704\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3673\r\nExtensionName: \r\nFirstName: RANDY\r\nFullName: RANDY CEPILLO SILANG\r\nGender: Male\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: CEPILLO\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3704\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3673\r\nExtensionName: \r\nFirstName: RANDY\r\nFullName: RANDY SILANG\r\nGender: Male\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: CEPILLO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
766580	2024-07-12	11:16:45.2082478	<Undetected>	Update	BasicInformationId: 3704\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3674\r\nExtensionName: \r\nFirstName: ROMUALDO\r\nFullName: ROMUALDO ARELLANO MAUHAY\r\nGender: Male\r\nLastName: MAUHAY\r\nMaidenName: \r\nMiddleName: ARELLANO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3704\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3674\r\nExtensionName: \r\nFirstName: ROMUALDO\r\nFullName: ROMUALDO MAUHAY\r\nGender: Male\r\nLastName: MAUHAY\r\nMaidenName: \r\nMiddleName: ARELLANO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
766581	2024-07-12	11:16:45.2131794	<Undetected>	Update	BasicInformationId: 3704\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3675\r\nExtensionName: \r\nFirstName: NATIVIDAD\r\nFullName: NATIVIDAD GARCIA\r\nGender: Female\r\nLastName: MASANGCAY\r\nMaidenName: \r\nMiddleName: GARCIA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3704\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3675\r\nExtensionName: \r\nFirstName: NATIVIDAD\r\nFullName: NATIVIDAD MASANGCAY\r\nGender: Female\r\nLastName: MASANGCAY\r\nMaidenName: \r\nMiddleName: GARCIA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
766582	2024-07-12	11:16:45.2181625	<Undetected>	Update	BasicInformationId: 3704\r\nBirthDate: January 25, 1996\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3676\r\nExtensionName: \r\nFirstName: JIM DANRY\r\nFullName: JIM DANRY M SILANG\r\nGender: Male\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3704\r\nBirthDate: January 25, 1996\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3676\r\nExtensionName: \r\nFirstName: JIM DANRY\r\nFullName: JIM DANRY SILANG\r\nGender: Male\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766583	2024-07-12	11:16:45.2231460	<Undetected>	Update	BasicInformationId: 3704\r\nBirthDate: June 03, 1998\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3677\r\nExtensionName: \r\nFirstName: JOHN ANDRY\r\nFullName: JOHN ANDRY M SILANG\r\nGender: Male\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3704\r\nBirthDate: June 03, 1998\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3677\r\nExtensionName: \r\nFirstName: JOHN ANDRY\r\nFullName: JOHN ANDRY SILANG\r\nGender: Male\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766720	2024-07-12	13:11:28.9857587	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISASTER RISK REDUCTION MANAGEMENT (DRRM) REVIEW AND UPDATES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766584	2024-07-12	11:16:45.2281291	<Undetected>	Update	BasicInformationId: 3704\r\nBirthDate: May 09, 2002\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3678\r\nExtensionName: \r\nFirstName: ANGELICA ARBIE\r\nFullName: ANGELICA ARBIE M SILANG\r\nGender: Female\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3704\r\nBirthDate: May 09, 2002\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3678\r\nExtensionName: \r\nFirstName: ANGELICA ARBIE\r\nFullName: ANGELICA ARBIE SILANG\r\nGender: Female\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766585	2024-07-12	11:16:45.2331126	<Undetected>	Update	BasicInformationId: 3704\r\nBirthDate: February 21, 2006\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3679\r\nExtensionName: \r\nFirstName: MIKAELA AUBREY\r\nFullName: MIKAELA AUBREY M SILANG\r\nGender: Female\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3704\r\nBirthDate: February 21, 2006\r\nCivilStatus: Single\r\nContactNumber: \r\nEmployeeRelativeId: 3679\r\nExtensionName: \r\nFirstName: MIKAELA AUBREY\r\nFullName: MIKAELA AUBREY SILANG\r\nGender: Female\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766586	2024-07-12	11:16:45.2380958	<Undetected>	Update	BasicInformationId: 3704\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3501\r\n	BasicInformationId: 3704\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3501\r\n	admin	Questionnaires	1
766618	2024-07-12	11:27:13.1951686	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3704\r\nRecognitionId: 0\r\nRecognitionName: TOP EMPLOYEE PERFORMER AWARD- LPU- B \r\n	admin	Recognitions	1
766619	2024-07-12	11:27:13.2001509	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3704\r\nRecognitionId: 0\r\nRecognitionName: 10- YEAR SERVICE AWARDEE- LPU-B \r\n	admin	Recognitions	1
766620	2024-07-12	11:27:13.2061310	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3704\r\nRecognitionId: 0\r\nRecognitionName: EMPLOYEE OF THE MONTH- MARCH- DEPED BATANGAS PROVINCE \r\n	admin	Recognitions	1
766621	2024-07-12	11:27:13.2111140	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3704\r\nRecognitionId: 0\r\nRecognitionName: EXEMPLARY PERFORMANCE AND OUTSTANDING ACCOMPLISHMENT- 2018- DEPED BATANGAS PROVINCE \r\n	admin	Recognitions	1
766622	2024-07-12	11:27:13.2160974	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3704\r\nRecognitionId: 0\r\nRecognitionName: MERITORIOUS PERFORMANCE AWARD- 2023- DEPED- BATANGAS CITY \r\n	admin	Recognitions	1
766623	2024-07-12	11:27:13.2200839	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3704\r\nOrganizationId: 0\r\nOrganizationName: PHILIPPINE GUIDANCE AND COUNSELING ASSOCIATION \r\n	admin	Organizations	1
766624	2024-07-12	11:27:13.2260643	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3704\r\nOrganizationId: 0\r\nOrganizationName: PSYCHOLOGICAL ASSOCIATION OF THE PHILIPPINES ( PAP)\r\n	admin	Organizations	1
766625	2024-07-12	11:27:13.2300506	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3704\r\nCharacterReferenceId: 0\r\nCompanyAddress: SDO BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 043 702 2094\r\nExtensionName: \r\nFirstName: CATHERINE \r\nLastName: MARANAN \r\nMiddleName: V\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766626	2024-07-12	11:27:13.2350352	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3704\r\nCharacterReferenceId: 0\r\nCompanyAddress: ALANGILAN, BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09959959454\r\nExtensionName: \r\nFirstName: AMELIA \r\nLastName: RGC\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766627	2024-07-12	11:27:13.2400185	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3704\r\nCharacterReferenceId: 0\r\nCompanyAddress: SDO BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 043 702 2094\r\nExtensionName: PHD\r\nFirstName: ANGELISA \r\nLastName: AMOTO \r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766628	2024-07-12	11:27:13.2450019	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 1114\r\nAddress2: TWINVILLA SUBDIVISION\r\nBarangay: KUMINTANG ILAYA\r\nBasicInformationId: 3704\r\nBirthDate: March 20, 1975\r\nBirthPlace: SAN PASCUAL, BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RHUBIE.SILANG001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RHUBIE\r\nFullName: RHUBIE S. SILANG\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437402914\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: SILANG\r\nMobileNumber: 09260391429\r\nNationality: Filipino\r\nPermanentAddress1: 1114\r\nPermanentAddress2: TWINVILLA SUBDIVISION\r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ARGON STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ARGON STREET\r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 1114\r\nAddress2: TWINVILLA SUBDIVISION\r\nBarangay: KUMINTANG ILAYA\r\nBasicInformationId: 3704\r\nBirthDate: March 20, 1975\r\nBirthPlace: SAN PASCUAL, BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RHUBIE.SILANG001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RHUBIE\r\nFullName: RHUBIE S. SILANG\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005197054\r\nHDMF: 1490-0031-3829\r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437402914\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: SILANG\r\nMobileNumber: 09260391429\r\nNationality: Filipino\r\nPermanentAddress1: 1114\r\nPermanentAddress2: TWINVILLA SUBDIVISION\r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ARGON STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: 19-089229129-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1034298-9\r\nStreetName: ARGON STREET\r\nTIN: 205-475-667-0000\r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
766629	2024-07-12	11:27:13.2499852	<Undetected>	Update	BasicInformationId: 3704\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3501\r\n	BasicInformationId: 3704\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: RESIGNATION- PRIVATE SECTOR\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3501\r\n	admin	Questionnaires	1
766641	2024-07-12	11:41:28.0043789	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3699\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OFFICE OF BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 16213\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766589	2024-07-12	11:21:09.8463941	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: MSFP SCHOLAR, EBD SCHOLAR\r\nBasicInformationId: 3703\r\nCourse: \r\nCourseId: 1318\r\nCourseOrMajor: \r\nDateFrom: 2007\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MAJOR IN ENGLISH  \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
766590	2024-07-12	11:21:09.8523944	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3703\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2016\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN ENGLISH\r\nSchoolorUniversity: GOLDEN GATE COLLEGES \r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
766591	2024-07-12	11:21:09.8573941	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3703\r\nCourse: \r\nCourseId: 1333\r\nCourseOrMajor: \r\nDateFrom: 2011\r\nDateTo: 2016\r\nEducationalAttainment: 39 UNITS WITH COMPREHENSIVE EXAMINATION \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN ENGLISH LANGUAGE TEACHING \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
766592	2024-07-12	11:21:09.8624330	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3703\r\nDateOfExamination: September 26, 2012\r\nDateOfRelease: October 11, 2018\r\nEligibilityDocumentTypeId: 0\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 26, 2012\r\nLevelOfEligibility: \r\nLicenseNumber: 1124602\r\nPlaceOfExamination: LUCENA CITY \r\nRating: 75.4%\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS \r\n	admin	Eligibilities	1
766593	2024-07-12	11:21:09.8674380	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3703\r\nCompanyInstitution: SDO BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: March 20, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 39,672.00\r\nPositionHeld: EDUCATION PROGRAM SPECIALIST\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: July 12, 2024\r\n	admin	Experiences	1
766594	2024-07-12	11:21:09.8723953	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3703\r\nCompanyInstitution: BATANGAS CITY INTEGRATED HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: March 19, 2023\r\n	admin	Experiences	1
766595	2024-07-12	11:21:09.8773952	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3703\r\nCompanyInstitution: BATANGAS CITY INTEGRATED HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 30,111.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
766596	2024-07-12	11:21:09.8823950	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3703\r\nCompanyInstitution: BATANGAS CITY INTEGRATED HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: September 03, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 28,589.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
766597	2024-07-12	11:21:09.8874347	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3703\r\nCompanyInstitution: BATANGAS NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 28,276.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: September 02, 2021\r\n	admin	Experiences	1
766598	2024-07-12	11:21:09.8924346	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3703\r\nCompanyInstitution: BATANGAS NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 26,754.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
766599	2024-07-12	11:21:09.8973941	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3703\r\nCompanyInstitution: BATANGAS NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 25,232.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
766642	2024-07-12	11:41:28.0093635	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3699\r\nEmployeeTrainingId: 0\r\nFromDate: September 25, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OFFICE OF BATANGAS CITY\r\nStatus: \r\nToDate: September 26, 2023\r\nTrainingId: 16214\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766600	2024-07-12	11:21:09.9023942	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3703\r\nCompanyInstitution: BATANGAS NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: September 03, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 24,224.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
766601	2024-07-12	11:21:09.9074396	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3703\r\nCompanyInstitution: BATANGAS NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,437.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: September 02, 2018\r\n	admin	Experiences	1
766602	2024-07-12	11:21:09.9124346	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3703\r\nCompanyInstitution: BATANGAS NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,853.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
766603	2024-07-12	11:21:09.9174363	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3703\r\nCompanyInstitution: BATANGAS NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: June 03, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,286.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
766604	2024-07-12	11:21:09.9223950	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3703\r\nCompanyInstitution: BATANGAS NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 02, 2016\r\n	admin	Experiences	1
766605	2024-07-12	11:21:09.9273950	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3703\r\nCompanyInstitution: BATANGAS NATIONAL HIGH SCHOOL \r\nExperienceId: 0\r\nFromDate: June 03, 2013\r\nIsGovernmentService: False\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
766606	2024-07-12	11:21:09.9313949	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3703\r\nCompanyInstitution: UNIVERSITY OF BATANGAS  \r\nExperienceId: 0\r\nFromDate: September 17, 2012\r\nIsGovernmentService: False\r\nMonthlySalary: 15,800.00\r\nPositionHeld: TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Probationary\r\nToDate: March 22, 2013\r\n	admin	Experiences	1
766607	2024-07-12	11:21:09.9373950	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3703\r\nCompanyInstitution: KING'S KIDS CHRISTIAN ACADEMY \r\nExperienceId: 0\r\nFromDate: June 15, 2011\r\nIsGovernmentService: False\r\nMonthlySalary: 7,000.00\r\nPositionHeld: TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: March 30, 2012\r\n	admin	Experiences	1
766608	2024-07-12	11:21:09.9413948	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLK. 12, LOT 21\r\nAddress2: MERCEDES HOMES\r\nBarangay: SORO-SORO ILAYA\r\nBasicInformationId: 3703\r\nBirthDate: October 11, 1990\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rizza.ebora@deped.gov.ph\r\nExtensionName: \r\nFirstName: RIZZA\r\nFullName: RIZZA E. BAUAL\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BAUAL\r\nMaidenName: \r\nMiddleName: EBORA\r\nMobileNumber: 09084587588\r\nNationality: Filipino\r\nPermanentAddress1: BLK. 12, LOT 21\r\nPermanentAddress2: MERCEDES HOMES\r\nPermanentBarangay: SORO-SORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 64\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK. 12, LOT 21\r\nAddress2: MERCEDES HOMES\r\nBarangay: SORO-SORO ILAYA\r\nBasicInformationId: 3703\r\nBirthDate: October 11, 1990\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rizza.ebora@deped.gov.ph\r\nExtensionName: \r\nFirstName: RIZZA\r\nFullName: RIZZA E. BAUAL\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BAUAL\r\nMaidenName: \r\nMiddleName: EBORA\r\nMobileNumber: 09084587588\r\nNationality: Filipino\r\nPermanentAddress1: BLK. 12, LOT 21\r\nPermanentAddress2: MERCEDES HOMES\r\nPermanentBarangay: SORO-SORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 64\r\nZipCode: 4200\r\n	admin	BasicInformation	1
766609	2024-07-12	11:21:09.9473950	<Undetected>	Update	BasicInformationId: 3703\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3669\r\nExtensionName: \r\nFirstName: BAYANI\r\nFullName: BAYANI FERRER BAUAL\r\nGender: Male\r\nLastName: BAUAL\r\nMaidenName: \r\nMiddleName: FERRER\r\nOccupation: DOCUMENT CONTROLLER\r\nRelationship: Husband\r\n	BasicInformationId: 3703\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3669\r\nExtensionName: \r\nFirstName: BAYANI\r\nFullName: BAYANI BAUAL\r\nGender: Male\r\nLastName: BAUAL\r\nMaidenName: \r\nMiddleName: FERRER\r\nOccupation: DOCUMENT CONTROLLER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
766610	2024-07-12	11:21:09.9513949	<Undetected>	Update	BasicInformationId: 3703\r\nBirthDate: August 30, 2021\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3670\r\nExtensionName: \r\nFirstName: ELIJAH\r\nFullName: ELIJAH E BAUAL\r\nGender: Male\r\nLastName: BAUAL\r\nMaidenName: \r\nMiddleName: E\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3703\r\nBirthDate: August 30, 2021\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3670\r\nExtensionName: \r\nFirstName: ELIJAH\r\nFullName: ELIJAH BAUAL\r\nGender: Male\r\nLastName: BAUAL\r\nMaidenName: \r\nMiddleName: E\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766611	2024-07-12	11:21:09.9563950	<Undetected>	Update	BasicInformationId: 3703\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3671\r\nExtensionName: \r\nFirstName: ANTIFAS\r\nFullName: ANTIFAS EBORA EBORA\r\nGender: Male\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3703\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3671\r\nExtensionName: \r\nFirstName: ANTIFAS\r\nFullName: ANTIFAS EBORA\r\nGender: Male\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
766612	2024-07-12	11:21:09.9613951	<Undetected>	Update	BasicInformationId: 3703\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3672\r\nExtensionName: \r\nFirstName: MERLY\r\nFullName: MERLY DE TORRES MAGBOO\r\nGender: Female\r\nLastName: MAGBOO\r\nMaidenName: \r\nMiddleName: DE TORRES\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3703\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3672\r\nExtensionName: \r\nFirstName: MERLY\r\nFullName: MERLY MAGBOO\r\nGender: Female\r\nLastName: MAGBOO\r\nMaidenName: \r\nMiddleName: DE TORRES\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
766613	2024-07-12	11:21:09.9663953	<Undetected>	Update	BasicInformationId: 3703\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3500\r\n	BasicInformationId: 3703\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3500\r\n	admin	Questionnaires	1
766617	2024-07-12	11:26:05.7593131	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DESIGNING AND ALIGNING INSTRUCTIONAL MATERIALS FOR LEARNERS' INCREASED LEVEL OF PERFORMANCE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766632	2024-07-12	11:28:52.3757846	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INITIATING RESEARCH PRACTICE UTILIZING PROJECT CARE- CONVENING AND ACTIVATING RESEARCHERS AND EDUCATORS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766634	2024-07-12	11:31:34.4634580	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EMPOWERING THE FD4S RESEARCHULTURE THROUGH PROJECT 4D (DRIVE, DISCOVER, DESIGN AND DELIVER)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766657	2024-07-12	11:45:47.4228220	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3703\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2023\r\nTrainingId: 15044\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766658	2024-07-12	11:45:47.4278222	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3703\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15725\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766659	2024-07-12	11:45:47.4328220	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3703\r\nEmployeeTrainingId: 0\r\nFromDate: February 07, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BATANGAS CITY INTEGRATED HIGH SCHOOL\r\nStatus: \r\nToDate: February 09, 2023\r\nTrainingId: 16227\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766660	2024-07-12	11:45:47.4378219	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3703\r\nEmployeeTrainingId: 0\r\nFromDate: August 17, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BATANGAS CITY INTEGRATED HIGH SCHOOL\r\nStatus: \r\nToDate: August 19, 2022\r\nTrainingId: 16230\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766661	2024-07-12	11:45:47.4428218	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3703\r\nEmployeeTrainingId: 0\r\nFromDate: April 25, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: April 27, 2022\r\nTrainingId: 16232\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766707	2024-07-12	12:50:19.1812381	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FOCUS ON WHAT MATTERS TO YOU: BE CYBERSAFE IN CYBERSPACE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766708	2024-07-12	12:53:54.9162518	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FOUNDATION OF COMPUTER EMERGENCY RESPONSE TEAM OPERATIONS (CERT)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766709	2024-07-12	13:00:49.4579698	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3703\r\nEmployeeTrainingId: 0\r\nFromDate: August 11, 2021\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: BATANGAS NATIONAL HIGH SCHOOL\r\nStatus: \r\nToDate: August 13, 2021\r\nTrainingId: 16237\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774655	2025-03-21	16:40:07.6766026	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3873\r\nRecognitionId: 0\r\nRecognitionName: DISTRICT VII GAWAD STAR WRITER\r\n	admin	Recognitions	1
766638	2024-07-12	11:40:44.0471460	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 1114\r\nAddress2: TWINVILLA SUBDIVISION\r\nBarangay: KUMINTANG ILAYA\r\nBasicInformationId: 3704\r\nBirthDate: March 20, 1975\r\nBirthPlace: SAN PASCUAL, BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RHUBIE.SILANG001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RHUBIE\r\nFullName: RHUBIE S. SILANG\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005197054\r\nHDMF: 1490-0031-3829\r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437402914\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: SILANG\r\nMobileNumber: 09260391429\r\nNationality: Filipino\r\nPermanentAddress1: 1114\r\nPermanentAddress2: TWINVILLA SUBDIVISION\r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ARGON STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: 19-089229129-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1034298-9\r\nStreetName: ARGON STREET\r\nTIN: 205-475-667-0000\r\nWeight: 65\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 1114\r\nAddress2: TWINVILLA SUBDIVISION\r\nBarangay: KUMINTANG ILAYA\r\nBasicInformationId: 3704\r\nBirthDate: March 20, 1975\r\nBirthPlace: SAN PASCUAL, BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RHUBIE.SILANG001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RHUBIE\r\nFullName: RHUBIE S. SILANG\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005197054\r\nHDMF: 1490-0031-3829\r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437402914\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: SILANG\r\nMobileNumber: 09260391429\r\nNationality: Filipino\r\nPermanentAddress1: 1114\r\nPermanentAddress2: TWINVILLA SUBDIVISION\r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ARGON STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: 19-089229129-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: 04-1034298-9\r\nStreetName: ARGON STREET\r\nTIN: 205-475-667-0000\r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
766711	2024-07-12	13:00:54.6400245	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING WORKSHOP ON ESTABLISHING FUNCTIONAL CHILD PROTECTION COMMITTEES IN SCHOOLS DIVISION OFFICES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766713	2024-07-12	13:04:14.1677578	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON THE DEVELOPMENT OF FOUR LEGACIES FOR CHILDREN\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766714	2024-07-12	13:05:40.0629529	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DEPED YOUTH FORMATORS CONVERGENCE 2023\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766716	2024-07-12	13:07:15.1832131	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: E-LEARNING FOR LOCAL COUNCILS FOR THE PROTECTION OF CHILDREN ( LCPCS) 2023\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766718	2024-07-12	13:08:50.0305978	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION SEED EXCHANGE PROGRAM CUM ENVIRONMENTAL EDUCATION SEMINAR\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766719	2024-07-12	13:10:37.6069574	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CONVERGENCE IN INVIGORATING CHILD RIGHTS IN EDUCATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766721	2024-07-12	13:14:06.1584875	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: JOINT WORKSHOP ON PLANNING AND BUDGETING OF THE CITY COUNCIL FOR THE PROTECTION OF CHILDREN ( CCPC) & GAD FOCAL POINT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766724	2024-07-12	13:17:28.2545955	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INTEGRATED SCHOOL NUTRITION MODEL( ISNM) ONLINE CONFERENCE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766726	2024-07-12	13:24:57.6935457	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PHILIPPINE YOUTH CONVERGENCE 2022' YOUTH BELONG EMBRACING DIVERSITY, ACHIEVING QUALITY, AND INCLUSIVE EDUCATION FOR ALL''\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766727	2024-07-12	13:26:42.1560527	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: COMPETENCY ENHANCEMENT COURSES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766740	2024-07-12	13:30:04.7579610	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: STUDENT TESTING & EVALUATION ( STE) SEMINAR- WORKSHOP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766741	2024-07-12	13:31:51.7398475	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ADOLESCENT REPRODUCTIVE HEALTH FOUNDATION COURSE CALABARZON CASCADE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766744	2024-07-12	13:34:16.1891279	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL BARKADA KONTRA DROGA ( BKD) CONVENTION 2022\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766745	2024-07-12	13:35:59.7803202	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL ORIENTATION FOR THE NEW CHILD PROTECTION FOCAL PERSONS IN THE REGIONAL AND SCHOOLS DIVISION OFFICES OF THE DEPARTMENT OF EDUCATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
771775	2025-03-18	14:12:09.5300082	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MATATAG CURRICULUM TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766643	2024-07-12	11:41:28.0133502	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3699\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 16216\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766644	2024-07-12	11:41:28.0183335	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3699\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OFFICE OF BATANGAS CITY\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 16217\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766645	2024-07-12	11:41:28.0233170	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3699\r\nEmployeeTrainingId: 0\r\nFromDate: March 29, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 29, 2023\r\nTrainingId: 16219\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766646	2024-07-12	11:41:28.0273036	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3699\r\nEmployeeTrainingId: 0\r\nFromDate: March 17, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 17, 2023\r\nTrainingId: 16221\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766647	2024-07-12	11:41:28.0322868	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3699\r\nEmployeeTrainingId: 0\r\nFromDate: February 20, 2023\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: February 20, 2023\r\nTrainingId: 16226\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766648	2024-07-12	11:41:28.0362734	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3699\r\nEmployeeTrainingId: 0\r\nFromDate: February 07, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHINAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: February 09, 2023\r\nTrainingId: 16229\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766649	2024-07-12	11:41:28.0412557	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3699\r\nEmployeeTrainingId: 0\r\nFromDate: March 29, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 29, 2023\r\nTrainingId: 16234\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766650	2024-07-12	11:41:28.0452434	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3699\r\nEmployeeTrainingId: 0\r\nFromDate: March 17, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 17, 2023\r\nTrainingId: 16180\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766652	2024-07-12	11:44:52.3919883	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3699\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
766653	2024-07-12	11:44:52.4019549	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3699\r\nSkillId: 0\r\nSkillName: DRAWING/SKETCHING\r\n	admin	Skills	1
766654	2024-07-12	11:44:52.4069382	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3699\r\nSkillId: 0\r\nSkillName: DANCING/SINGING\r\n	admin	Skills	1
766655	2024-07-12	11:44:52.4149115	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3699\r\nSkillId: 0\r\nSkillName: PLAYING BALL GAMES AND BOARD GAMES\r\n	admin	Skills	1
766656	2024-07-12	11:44:52.4188984	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3699\r\nRecognitionId: 0\r\nRecognitionName: MERITORIOUS PERFORMANCE AWARD,JANUARY 23, 2024 AT BULWAGANG ALA EH \r\n	admin	Recognitions	1
766712	2024-07-12	13:03:14.9099433	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DEPARTMENT OF EDUCATION SCHOOLS DIVISION BATANGAS CITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766728	2024-07-12	13:30:05.7135185	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3699\r\nRecognitionId: 0\r\nRecognitionName: AGARANG GAWAD, DECEMBER 18, 2023, BULWAGANG ALA EH\r\n	admin	Recognitions	1
766729	2024-07-12	13:30:05.7234848	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3699\r\nRecognitionId: 0\r\nRecognitionName: AMBASSADOR AWARD (CONSUMER-FRIENDLY PUBLIC SERVANT), GAWAD KAWANI, DECEMBER 11, 2023, 1ST GAWAD KAWANI\r\n	admin	Recognitions	1
766730	2024-07-12	13:30:05.7284680	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3699\r\nRecognitionId: 0\r\nRecognitionName: PRUDENT WORKER AWARD (MOST PUNCTUAL EMPLOYEE), GAWAD KAWANI, DECEMBER 11, 2023\r\n	admin	Recognitions	1
766731	2024-07-12	13:30:05.7364418	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3699\r\nRecognitionId: 0\r\nRecognitionName: DEALT AWARD (DEDICATED EMPLOYEES WITHOUT ABSENCES, LEAVES AND TARDINESS) FOR THE MONTH OF SEPTEMBER 2023, GAWAD KAWANI, DECEMBER 11, 2023\r\n	admin	Recognitions	1
766732	2024-07-12	13:30:05.7404280	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3699\r\nRecognitionId: 0\r\nRecognitionName: DEALT AWARD (DEDICATED EMPLOYEES WITHOUT ABSENCES, LEAVES, AND TARDINESS) FOR THE MONTH OF OCTOBER 2023, GAWAD KAWANI, DECEMBER 11, 2023\r\n	admin	Recognitions	1
766733	2024-07-12	13:30:05.7484608	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3699\r\nRecognitionId: 0\r\nRecognitionName: OUTSTANDING DIVISION ENGINEER, NOVEMBER 14, 2017, IMPLEMENTATION OF DEPED-LED PROJECTS\r\n	admin	Recognitions	1
766671	2024-07-12	12:02:56.8615688	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3702\r\nEmployeeTrainingId: 0\r\nFromDate: February 06, 2023\r\nHours: 32\r\nNatureOfParticipation: SUPERVISORY/TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - CENTRAL OFFICE\r\nStatus: \r\nToDate: February 10, 2023\r\nTrainingId: 16220\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766672	2024-07-12	12:02:56.8655225	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3702\r\nEmployeeTrainingId: 0\r\nFromDate: February 20, 2023\r\nHours: 4\r\nNatureOfParticipation: SUPERVISORY/TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS OF DIVISION BATANGAS CITY\r\nStatus: \r\nToDate: February 20, 2023\r\nTrainingId: 15114\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766673	2024-07-12	12:02:56.8705219	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3702\r\nEmployeeTrainingId: 0\r\nFromDate: December 20, 2022\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY/TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: December 20, 2022\r\nTrainingId: 16223\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766674	2024-07-12	12:02:56.8745219	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3702\r\nEmployeeTrainingId: 0\r\nFromDate: November 15, 2022\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY/TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - CENTRAL OFFICE\r\nStatus: \r\nToDate: November 17, 2022\r\nTrainingId: 16224\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766675	2024-07-12	12:02:56.8795220	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3702\r\nEmployeeTrainingId: 0\r\nFromDate: November 08, 2022\r\nHours: 32\r\nNatureOfParticipation: SUPERVISORY/TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - CENTRAL OFFICE\r\nStatus: \r\nToDate: November 11, 2022\r\nTrainingId: 16225\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766676	2024-07-12	12:02:56.8845219	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3702\r\nEmployeeTrainingId: 0\r\nFromDate: October 20, 2022\r\nHours: 16\r\nNatureOfParticipation: SUPERVISORY/TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - REGIONAL IV A - CALABARZON\r\nStatus: \r\nToDate: October 21, 2022\r\nTrainingId: 16124\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766677	2024-07-12	12:02:56.8885220	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3702\r\nEmployeeTrainingId: 0\r\nFromDate: October 12, 2022\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY/TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - REGIONAL IV A- CALABARZON\r\nStatus: \r\nToDate: October 14, 2022\r\nTrainingId: 16228\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766678	2024-07-12	12:02:56.8935220	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3702\r\nEmployeeTrainingId: 0\r\nFromDate: June 10, 2022\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY/TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: June 10, 2022\r\nTrainingId: 16231\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766679	2024-07-12	12:02:56.8985245	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3702\r\nEmployeeTrainingId: 0\r\nFromDate: June 06, 2022\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY/TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - CENTRAL OFFICE\r\nStatus: \r\nToDate: June 08, 2022\r\nTrainingId: 16233\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766680	2024-07-12	12:02:56.9025244	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3702\r\nEmployeeTrainingId: 0\r\nFromDate: May 04, 2022\r\nHours: 40\r\nNatureOfParticipation: SUPERVISORY/TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: May 26, 2022\r\nTrainingId: 15703\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766681	2024-07-12	12:02:56.9075248	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3702\r\nEmployeeTrainingId: 0\r\nFromDate: April 26, 2022\r\nHours: 16\r\nNatureOfParticipation: SUPERVISORY/TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - REGIONAL IV A - CALABARZON\r\nStatus: \r\nToDate: April 27, 2022\r\nTrainingId: 16235\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766682	2024-07-12	12:02:56.9120297	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3702\r\nEmployeeTrainingId: 0\r\nFromDate: March 31, 2022\r\nHours: 8\r\nNatureOfParticipation: SUPERVISORY/TECHNICAL\r\nSponsoringAgency: BOY SCOUT OF THE PHILIPPINES, BATANGAS CITY COUNCIL\r\nStatus: \r\nToDate: March 31, 2022\r\nTrainingId: 15220\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766683	2024-07-12	12:02:56.9170295	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3702\r\nEmployeeTrainingId: 0\r\nFromDate: February 16, 2024\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY/TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - REGIONAL IV A-CALABARZON\r\nStatus: \r\nToDate: February 18, 2022\r\nTrainingId: 16236\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766710	2024-07-12	13:00:49.4619698	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3703\r\nEmployeeTrainingId: 0\r\nFromDate: June 01, 2021\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY- LUZON\r\nStatus: \r\nToDate: June 02, 2021\r\nTrainingId: 16238\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766684	2024-07-12	12:02:56.9210296	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3702\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: March 01, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 9,069.00\r\nPositionHeld: STATISTICIAN AIDE\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-3\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
766685	2024-07-12	12:02:56.9250297	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3702\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 8,888.00\r\nPositionHeld: STATISTICIAN AIDE\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-2\r\nStatus: Permanent\r\nToDate: February 28, 2010\r\n	admin	Experiences	1
766686	2024-07-12	12:02:56.9300295	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3702\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 8,087.00\r\nPositionHeld: STATISTICIAN AIDE\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-2\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
766687	2024-07-12	12:02:56.9340296	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3702\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 7,352.00\r\nPositionHeld: STATISTICIAN AIDE\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-2\r\nStatus: Permanent\r\nToDate: July 30, 2008\r\n	admin	Experiences	1
766688	2024-07-12	12:02:56.9390294	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3702\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 6,684.00\r\nPositionHeld: STATISTICIAN AIDE\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-2\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
766689	2024-07-12	12:02:56.9440294	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3702\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: March 01, 2004\r\nIsGovernmentService: True\r\nMonthlySalary: 6,522.00\r\nPositionHeld: STATISTICIAN AIDE\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-1\r\nStatus: Permanent\r\nToDate: December 31, 2006\r\n	admin	Experiences	1
766690	2024-07-12	12:02:56.9490295	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3702\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: March 03, 2003\r\nIsGovernmentService: True\r\nMonthlySalary: 6,039.00\r\nPositionHeld: CLERK I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 3-1\r\nStatus: Permanent\r\nToDate: February 29, 2004\r\n	admin	Experiences	1
766691	2024-07-12	12:02:56.9530295	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3702\r\nCompanyInstitution: SOUTHPOST BAUAN ELECTRIC\r\nExperienceId: 0\r\nFromDate: July 05, 2002\r\nIsGovernmentService: False\r\nMonthlySalary: 0.00\r\nPositionHeld: DIBURSEMENT OFFICER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: March 02, 2003\r\n	admin	Experiences	1
766692	2024-07-12	12:02:56.9580294	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3702\r\nCompanyInstitution: CITIMART GROUP OF COMPANIES\r\nExperienceId: 0\r\nFromDate: March 10, 2001\r\nIsGovernmentService: False\r\nMonthlySalary: 0.00\r\nPositionHeld: ACCOUNTING PAYABLES CLERK \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: July 04, 2002\r\n	admin	Experiences	1
766693	2024-07-12	12:02:56.9620294	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3702\r\nCompanyInstitution: BATANGAS STATE UNIVERSITY \r\nExperienceId: 0\r\nFromDate: May 02, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 0.00\r\nPositionHeld: CLERK (REGISTRAR)\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: July 31, 2001\r\n	admin	Experiences	1
766694	2024-07-12	12:02:56.9670295	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3702\r\nCompanyInstitution: PHILIPPINE DEPOSIT INSURANCE CORPORATION\r\nExperienceId: 0\r\nFromDate: September 03, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 0.00\r\nPositionHeld: RETAINED EMPLOYEE\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: February 28, 1999\r\n	admin	Experiences	1
766715	2024-07-12	13:06:59.3951555	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL DRUG EDUCATION PROGRAM IMPLEMENTATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766695	2024-07-12	12:02:56.9710295	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3702\r\nCompanyInstitution: UNIFIED SAVINGS BANK AND LOAN ASSOCIATION, INC.\r\nExperienceId: 0\r\nFromDate: February 01, 1996\r\nIsGovernmentService: False\r\nMonthlySalary: 0.00\r\nPositionHeld: SR. ACCOUNTING ASSISTANT\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: September 02, 1998\r\n	admin	Experiences	1
766696	2024-07-12	12:02:56.9760294	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3702\r\nCompanyInstitution: FORTUNE GUARANTEE AND INSURANCE CORPORATION\r\nExperienceId: 0\r\nFromDate: August 01, 1995\r\nIsGovernmentService: False\r\nMonthlySalary: 0.00\r\nPositionHeld: CREDIT AND COLLECTION CLERK\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: November 30, 1995\r\n	admin	Experiences	1
766697	2024-07-12	12:02:56.9810295	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3702\r\nCharacterReferenceId: 0\r\nCompanyAddress: CALICANTO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 043-7238507\r\nExtensionName: \r\nFirstName: LOURDES\r\nLastName: ZARASPE\r\nMiddleName: M. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766698	2024-07-12	12:02:56.9850295	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3702\r\nCharacterReferenceId: 0\r\nCompanyAddress: ALANGILAN, BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 043-7237319\r\nExtensionName: \r\nFirstName: MARIA JOSEFINA\r\nLastName: LAGMAN\r\nMiddleName: M. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766699	2024-07-12	12:02:56.9900295	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3702\r\nCharacterReferenceId: 0\r\nCompanyAddress: TINGA LABAK, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 043-7022094\r\nExtensionName: \r\nFirstName: ANGELISA \r\nLastName: AMOTO\r\nMiddleName: A. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766700	2024-07-12	12:02:56.9950320	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN TEODORO\r\nBasicInformationId: 3702\r\nBirthDate: May 11, 1974\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: madonna.abrugena@deped.gov.ph\r\nExtensionName: \r\nFirstName: MADONNA\r\nFullName: MADONNA B. ABRUGENA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437022094\r\nLastName: ABRUGENA\r\nMaidenName: \r\nMiddleName: BORILLO\r\nMobileNumber: 09393665149\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN TEODORO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ILAYA\r\nPermanentZipCode: 4201\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ILAYA\r\nTIN: \r\nWeight: 68\r\nZipCode: 4201\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN TEODORO\r\nBasicInformationId: 3702\r\nBirthDate: May 11, 1974\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: madonna.abrugena@deped.gov.ph\r\nExtensionName: \r\nFirstName: MADONNA\r\nFullName: MADONNA B. ABRUGENA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 74051101018\r\nHDMF: 1490-0093-1244\r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437022094\r\nLastName: ABRUGENA\r\nMaidenName: \r\nMiddleName: BORILLO\r\nMobileNumber: 09393665149\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN TEODORO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ILAYA\r\nPermanentZipCode: 4201\r\nPhilhealth: 19-089570368-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-0942246-7\r\nStreetName: ILAYA\r\nTIN: 181-575-624-0000\r\nWeight: 68\r\nZipCode: 4201\r\n	admin	BasicInformation	1
766701	2024-07-12	12:02:57.0000319	<Undetected>	Update	BasicInformationId: 3702\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3665\r\nExtensionName: \r\nFirstName: ROGELIO\r\nFullName: ROGELIO SUGABO ABRUGENA\r\nGender: Male\r\nLastName: ABRUGENA\r\nMaidenName: \r\nMiddleName: SUGABO\r\nOccupation: NDT TECHNICIAN\r\nRelationship: Husband\r\n	BasicInformationId: 3702\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3665\r\nExtensionName: \r\nFirstName: ROGELIO\r\nFullName: ROGELIO ABRUGENA\r\nGender: Male\r\nLastName: ABRUGENA\r\nMaidenName: \r\nMiddleName: SUGABO\r\nOccupation: NDT TECHNICIAN\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
766702	2024-07-12	12:02:57.0050321	<Undetected>	Update	BasicInformationId: 3702\r\nBirthDate: June 08, 2015\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3666\r\nExtensionName: \r\nFirstName: DANNAH GAIL\r\nFullName: DANNAH GAIL B. ABRUGENA\r\nGender: Male\r\nLastName: ABRUGENA\r\nMaidenName: \r\nMiddleName: B.\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3702\r\nBirthDate: June 08, 2015\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3666\r\nExtensionName: \r\nFirstName: DANNAH GAIL\r\nFullName: DANNAH GAIL ABRUGENA\r\nGender: Male\r\nLastName: ABRUGENA\r\nMaidenName: \r\nMiddleName: B.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766703	2024-07-12	12:02:57.0090321	<Undetected>	Update	BasicInformationId: 3702\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3667\r\nExtensionName: \r\nFirstName: VICENTE\r\nFullName: VICENTE ALCANTARA BORILLO\r\nGender: Male\r\nLastName: BORILLO\r\nMaidenName: \r\nMiddleName: ALCANTARA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3702\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3667\r\nExtensionName: \r\nFirstName: VICENTE\r\nFullName: VICENTE BORILLO\r\nGender: Male\r\nLastName: BORILLO\r\nMaidenName: \r\nMiddleName: ALCANTARA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
766704	2024-07-12	12:02:57.0144795	<Undetected>	Update	BasicInformationId: 3702\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3668\r\nExtensionName: \r\nFirstName: ERIBERTA\r\nFullName: ERIBERTA RIANO RAMOS\r\nGender: Female\r\nLastName: RAMOS\r\nMaidenName: \r\nMiddleName: RIANO\r\nOccupation: \r\nRelationship: Wife\r\n	BasicInformationId: 3702\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3668\r\nExtensionName: \r\nFirstName: ERIBERTA\r\nFullName: ERIBERTA RAMOS\r\nGender: Female\r\nLastName: RAMOS\r\nMaidenName: \r\nMiddleName: RIANO\r\nOccupation: \r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
775151	2025-03-24	16:24:47.1197210	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3917\r\nOrganizationId: 0\r\nOrganizationName: LIBJO ELEMENTARY SCHOOL TEACHERS AND EMPLOYEES ASSOCIATION\r\n	admin	Organizations	1
766705	2024-07-12	12:02:57.0184795	<Undetected>	Update	BasicInformationId: 3702\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nExperienceId: 11274\r\nFromDate: June 24, 2010\r\nIsGovernmentService: False\r\nMonthlySalary: 0.00\r\nPositionHeld: STATISTICIAN AIDE\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: July 12, 2024\r\n	BasicInformationId: 3702\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nExperienceId: 11274\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 9,848.00\r\nPositionHeld: STATISTICIAN AIDE\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 4-3\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
766706	2024-07-12	12:02:57.0224796	<Undetected>	Update	BasicInformationId: 3702\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3499\r\n	BasicInformationId: 3702\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: Yes\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3499\r\n	admin	Questionnaires	1
766817	2024-07-12	14:32:44.2248454	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: DOCTOR OF PHILOSOPHY IN EDUCATION\r\nLevel: Doctorate\r\n	admin	Courses	1
766722	2024-07-12	13:14:38.3366749	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DEEPENING THE 4F'S (FAITH, FAMILY, FRIENDSHIP AND FINANCIAL)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766723	2024-07-12	13:16:16.8424138	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2020 DIVISION CONFERENCE OF BASIC EDUCATION RESEARCHERS (DCBER)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766725	2024-07-12	13:18:21.2600947	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL-BASED WEBINAR/TRAINING ON "MULTIMODAL-LEARNING ASSESSMENT"\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766742	2024-07-12	13:32:13.8176789	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL CAPACITY BUILDING ON THE DEVELOPMENT AND UTILIZATION OF IDEA EXEMPLARS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766743	2024-07-12	13:33:56.4406954	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DATA INNOVATION: KEY TO A BETTER NATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766746	2024-07-12	13:38:12.4003909	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2019 CALABARZON ENGLISH LANGUAGE CONFERENCE (CELCON): A TRAINING WORKSHOP ON PEDAGOGY, CRITICAL CONTENT, ISSUES AND PRACTICES IN SECOND LANGUAGE TEACHING AND LEARNING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766748	2024-07-12	13:40:56.7682878	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: OVERCOMING EMOTIONAL TENSION AND STRAIN OF THEN 21ST CENTURY TEACHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766750	2024-07-12	13:42:22.9767751	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2019 DIVISION ROBOTICS COMPETITION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766752	2024-07-12	13:44:35.8739176	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PAGKAKAUNAWAAN, PAGKAKAISA AT PAGMAMAHALAN (3PS) SANDATA SA PANGKALAHATANG KAUNLARAN\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766754	2024-07-12	13:46:23.4885425	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 4TH CYCLE BASIC EDUCATION RESEARCH FUND (BERF) PROPOSAL PRESENTATION- BATCH 2\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766755	2024-07-12	13:48:48.8193825	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3703\r\nEmployeeTrainingId: 0\r\nFromDate: May 05, 2021\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- SDO BATANGAS CITY\r\nStatus: \r\nToDate: May 06, 2021\r\nTrainingId: 16243\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766756	2024-07-12	13:48:48.8243820	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3703\r\nEmployeeTrainingId: 0\r\nFromDate: March 04, 2021\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SOUTH EAST ASIA MINISTERS OF EDUCATION ORGANIZATION- INDONESIA \r\nStatus: \r\nToDate: March 04, 2021\r\nTrainingId: 16245\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766757	2024-07-12	13:48:48.8303820	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3703\r\nEmployeeTrainingId: 0\r\nFromDate: December 16, 2020\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BATANGAS NATIONAL HIGH SCHOOL\r\nStatus: \r\nToDate: December 18, 2020\r\nTrainingId: 16248\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766758	2024-07-12	13:48:48.8353823	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3703\r\nEmployeeTrainingId: 0\r\nFromDate: December 14, 2020\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BATANGAS NATIONAL HIGH SCHOOL\r\nStatus: \r\nToDate: December 16, 2020\r\nTrainingId: 16250\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766759	2024-07-12	13:48:48.8403820	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3703\r\nEmployeeTrainingId: 0\r\nFromDate: November 26, 2020\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- SDO BATANGAS CITY\r\nStatus: \r\nToDate: November 27, 2020\r\nTrainingId: 16251\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766760	2024-07-12	13:48:48.8453820	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3703\r\nEmployeeTrainingId: 0\r\nFromDate: July 13, 2020\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 15, 2020\r\nTrainingId: 16258\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766761	2024-07-12	13:48:48.8503822	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3703\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2019\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BATANGAS NATIONAL HIGH SCHOOL\r\nStatus: \r\nToDate: November 29, 2019\r\nTrainingId: 16259\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766738	2024-07-12	13:30:05.7703872	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: LOT 8 BLK. 6\r\nAddress2: ECOVERDE HOMES\r\nBarangay: QUILIB\r\nBasicInformationId: 3699\r\nBirthDate: November 01, 1977\r\nBirthPlace: CALAPAN, ORIENTAL MINDORO\r\nBloodType: O\r\nCitizenshipType: \r\nCity: ROSARIO\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: EDUARDO.ULIT@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: EDUARDO\r\nFullName: EDUARDO M. ULIT\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ULIT\r\nMaidenName: \r\nMiddleName: MAGPILI\r\nMobileNumber: 0917421116\r\nNationality: Filipino\r\nPermanentAddress1: LOT 8 BLK. 6\r\nPermanentAddress2: ECOVERDE HOMES\r\nPermanentBarangay: QUILIB\r\nPermanentCity: ROSARIO\r\nPermanentCountry: Philippines\r\nPermanentProvince: BAtangas\r\nPermanentStreetName: \r\nPermanentZipCode: 4225\r\nPhilhealth: \r\nProvince: BAtangas\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 103\r\nZipCode: 4225\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: LOT 8 BLK. 6\r\nAddress2: ECOVERDE HOMES\r\nBarangay: QUILIB\r\nBasicInformationId: 3699\r\nBirthDate: November 01, 1977\r\nBirthPlace: CALAPAN, ORIENTAL MINDORO\r\nBloodType: O\r\nCitizenshipType: \r\nCity: ROSARIO\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: EDUARDO.ULIT@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: EDUARDO\r\nFullName: EDUARDO M. ULIT\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02004739844\r\nHDMF: 1211-5412-9168\r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ULIT\r\nMaidenName: \r\nMiddleName: MAGPILI\r\nMobileNumber: 0917421116\r\nNationality: Filipino\r\nPermanentAddress1: LOT 8 BLK. 6\r\nPermanentAddress2: ECOVERDE HOMES\r\nPermanentBarangay: QUILIB\r\nPermanentCity: ROSARIO\r\nPermanentCountry: Philippines\r\nPermanentProvince: BAtangas\r\nPermanentStreetName: \r\nPermanentZipCode: 4225\r\nPhilhealth: 19-089606673-4\r\nProvince: BAtangas\r\nReligion: \r\nSalutation: \r\nSSS: 33-6217940-1\r\nStreetName: \r\nTIN: 217-956-268-0000\r\nWeight: 103\r\nZipCode: 4225\r\n	admin	BasicInformation	1
766739	2024-07-12	13:30:05.7753707	<Undetected>	Update	BasicInformationId: 3699\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3496\r\n	BasicInformationId: 3699\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3496\r\n	admin	Questionnaires	1
766749	2024-07-12	13:41:57.9880301	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF SCIENCE IN ENGINEERING\r\nLevel: College\r\n	admin	Courses	1
766806	2024-07-12	14:10:49.4655935	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL CLIMATE CONFERENCE AND DRRM 2023 NATIONAL DRRM YEAR-END EVALUATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766807	2024-07-12	14:13:16.7270414	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RESEARCH AGENDA WORKSHOP - DRRM CCAM AND CAPACITY BUILDING ON THE USE OF DRRM INFORMATION SYSTEM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766808	2024-07-12	14:18:22.6240349	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TSUNAMI CONTINGENCY PLANNING WORKSHOP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766809	2024-07-12	14:20:50.1125372	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON THE DEVELOPMENT OF SCHOOL SAFETY PLAN\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766810	2024-07-12	14:22:21.6480957	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION QMS JOURNEY TOWARD ONE QMS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766814	2024-07-12	14:25:20.3276012	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON PUBLIC SERVICE CONTINUITY PLAN CUM ENHANCEMENT OF CONTINGENCY PLAN AMIDST COVID-19\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766815	2024-07-12	14:27:54.5605552	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INFRASTRACTURE AUDIT TRAINING WORKSHOP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766816	2024-07-12	14:29:22.9437016	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL DRRM MID YEAR EVALUATION AND PLANNING WORKSHOP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766818	2024-07-12	14:33:27.1981524	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ENHANCEMENT OF MULTI-HAZARD CONTINGENCY PLAN AND SCHOOL SAFETY PLAN\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766819	2024-07-12	14:35:11.9005148	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BASIC SWIMMING ABD WATER SURVIVAL COURSE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766820	2024-07-12	14:35:34.7692867	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BASIC SWIMMING AND WATER SURVIVAL COURSE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766833	2024-07-12	14:49:06.6000513	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPABILITY DEVELOPMENT TRAINING ON DISASTER RESPONSE AND AVACUATION AND CAMP MANAGEMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766834	2024-07-12	14:51:16.4078881	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 NATIONAL RISK REDUCTION AND MANAGEMENT PLANNING CONFERENCE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766835	2024-07-12	14:53:48.3687290	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: KNOW MINE, KNOW LIFE: ELEVATING THE MISSION OF RESPONSIBLE MINING THOUGH ZOOM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766747	2024-07-12	13:38:53.2755877	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MID- YEAR HUMAN RESOURCE MANAGEMENT AND ADMINISTRATIVE OFFICERS ASSEMBLY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766751	2024-07-12	13:42:35.4055342	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FIRST QUARTER CONFERENCE FOR ADMINISTRATIVE OFFICERS II/V AND PERSONNEL ACTIONS ON GUIDELINES ON THE IMPLEMENTATION OF RECLASS, ERF AND OTHER PERSONNEL ACTIONS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766753	2024-07-12	13:45:15.5801322	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: VIRTUAL TRAINING FOR THE NEWLY HIRED OR APPOINTED ADAS II & III, ADMIN OFFICER II ( HRMO I) ON WORK ORIENTATION, JOB ROTATION INTERFACE, AND GMIS UPDATING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766768	2024-07-12	13:49:28.9156078	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 3RD PGCA- BATANGAS CHAPTER PROFESSIONAL ASSEMBLY W/ THE THEME ' GETTING EVERYONE TOWARDS A COMPREHENSIVE APPROACH TO SUICIDE PREVENTION IN SCHOOL AND WORKPLACE'\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766769	2024-07-12	13:51:59.8486009	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING- WORKSHOP ON FINANCIAL MANAGEMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766779	2024-07-12	13:56:08.7787722	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REFRESHER COURSE ON RISK- BASED ASSSESSMENT AND OPPORTUNITIES MANAGEMENT RELATIVE TO ISO 9001: 2015 QMS STANDARDS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766780	2024-07-12	14:03:46.8579021	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION GST AND REVIEW ON GAD POLICIES AND MANDATE FOR SDO EMPLOYEES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766781	2024-07-12	14:04:19.8933621	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3704\r\nEmployeeTrainingId: 0\r\nFromDate: September 26, 2023\r\nHours: 32\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPED REGION IV - CALABARZON \r\nStatus: \r\nToDate: September 29, 2023\r\nTrainingId: 16198\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766782	2024-07-12	14:04:19.8983452	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3704\r\nEmployeeTrainingId: 0\r\nFromDate: August 31, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: PSWDO BATANGAS \r\nStatus: \r\nToDate: August 31, 2023\r\nTrainingId: 16061\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766783	2024-07-12	14:04:19.9033285	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3704\r\nEmployeeTrainingId: 0\r\nFromDate: August 22, 2023\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: PSWDO BATANGAS \r\nStatus: \r\nToDate: August 22, 2023\r\nTrainingId: 16241\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766784	2024-07-12	14:04:19.9083120	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3704\r\nEmployeeTrainingId: 0\r\nFromDate: June 20, 2023\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: June 23, 2023\r\nTrainingId: 16242\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766785	2024-07-12	14:04:19.9132952	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3704\r\nEmployeeTrainingId: 0\r\nFromDate: September 09, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF LOCAL GOVERNMENT \r\nStatus: \r\nToDate: September 09, 2023\r\nTrainingId: 16244\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766786	2024-07-12	14:04:19.9182786	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3704\r\nEmployeeTrainingId: 0\r\nFromDate: May 23, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: May 23, 2023\r\nTrainingId: 16246\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766787	2024-07-12	14:04:19.9232619	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3704\r\nEmployeeTrainingId: 0\r\nFromDate: May 17, 2023\r\nHours: 24\r\nNatureOfParticipation: SUPERVISORY \r\nSponsoringAgency: DEPED REGION IV A CALABARZON \r\nStatus: \r\nToDate: May 19, 2023\r\nTrainingId: 16247\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766788	2024-07-12	14:04:19.9272483	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3704\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED REGION IV A CALABARZON \r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766789	2024-07-12	14:04:19.9332288	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3704\r\nEmployeeTrainingId: 0\r\nFromDate: February 03, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: BATANGAS CITY PLANING & DEVELOPMENT OFFICE \r\nStatus: \r\nToDate: March 03, 2023\r\nTrainingId: 16249\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766762	2024-07-12	13:48:48.8553821	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3703\r\nEmployeeTrainingId: 0\r\nFromDate: November 21, 2019\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: November 23, 2019\r\nTrainingId: 16262\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766763	2024-07-12	13:48:48.8603821	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3703\r\nEmployeeTrainingId: 0\r\nFromDate: October 29, 2019\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: October 31, 2019\r\nTrainingId: 15839\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766764	2024-07-12	13:48:48.8653820	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3703\r\nEmployeeTrainingId: 0\r\nFromDate: October 23, 2019\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BATANGAS NATIONAL HIGH SCHOOL\r\nStatus: \r\nToDate: October 25, 2019\r\nTrainingId: 16264\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766765	2024-07-12	13:48:48.8703822	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3703\r\nEmployeeTrainingId: 0\r\nFromDate: August 14, 2019\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BATANGAS NATIONAL HIGH SCHOOL\r\nStatus: \r\nToDate: August 14, 2019\r\nTrainingId: 16265\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766766	2024-07-12	13:48:48.8743820	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3703\r\nEmployeeTrainingId: 0\r\nFromDate: August 11, 2019\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BATANGAS NATIONAL HIGH SCHOOL\r\nStatus: \r\nToDate: August 11, 2019\r\nTrainingId: 16267\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766767	2024-07-12	13:48:48.8793820	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3703\r\nEmployeeTrainingId: 0\r\nFromDate: June 12, 2019\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: June 12, 2019\r\nTrainingId: 16269\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766770	2024-07-12	13:55:30.0203409	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3703\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE \r\n	admin	Skills	1
766771	2024-07-12	13:55:30.0253342	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3703\r\nSkillId: 0\r\nSkillName: CONSTANT LEARNER\r\n	admin	Skills	1
766772	2024-07-12	13:55:30.0322967	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3703\r\nSkillId: 0\r\nSkillName: RESEARCHER\r\n	admin	Skills	1
766773	2024-07-12	13:55:30.0362979	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3703\r\nSkillId: 0\r\nSkillName: RISK TAKER\r\n	admin	Skills	1
766774	2024-07-12	13:55:30.0452975	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3703\r\nSkillId: 0\r\nSkillName: LEADERSHIP\r\n	admin	Skills	1
766775	2024-07-12	13:55:30.0492974	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3703\r\nCharacterReferenceId: 0\r\nCompanyAddress: SDO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: (403) 702-2094\r\nExtensionName: \r\nFirstName: ALVIN \r\nLastName: METRILLO\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766776	2024-07-12	13:55:30.0553415	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3703\r\nCharacterReferenceId: 0\r\nCompanyAddress:  SDO BATANGAS CITY \r\nCompanyName: \r\nContactNumber: (043) 702-2094\r\nExtensionName: \r\nFirstName: CATHERINE\r\nLastName: MARANAN\r\nMiddleName: V\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766777	2024-07-12	13:55:30.0593406	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3703\r\nCharacterReferenceId: 0\r\nCompanyAddress:  SDO BATANGAS CITY \r\nCompanyName: \r\nContactNumber: (043) 702-2094\r\nExtensionName: \r\nFirstName: ANGELISA \r\nLastName: AMOTO\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766778	2024-07-12	13:55:30.0653373	<Undetected>	Update	BasicInformationId: 3703\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3500\r\n	BasicInformationId: 3703\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3500\r\n	admin	Questionnaires	1
766811	2024-07-12	14:23:41.0426209	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: VILLA JESUS SUBD.\r\nBarangay: BARANGAY 20\r\nBasicInformationId: 0\r\nBirthDate: April 02, 1974\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marianne.medina001@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIANNE\r\nFullName: MARIANNE R. MEDINA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: RAYOS\r\nMobileNumber: 09237418686\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: VILLA JESUS SUBD.\r\nPermanentBarangay: BARANGAY 20\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ARIETTA ROAD II\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ARIETTA ROAD II\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
766790	2024-07-12	14:04:19.9372150	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3704\r\nEmployeeTrainingId: 0\r\nFromDate: February 20, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: February 20, 2023\r\nTrainingId: 15114\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766791	2024-07-12	14:04:19.9421984	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3704\r\nEmployeeTrainingId: 0\r\nFromDate: January 19, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: INTERNATIONAL INSTITUTE OF RURAL RECONSTRUCTION \r\nStatus: \r\nToDate: January 20, 2023\r\nTrainingId: 16252\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766792	2024-07-12	14:04:19.9471817	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3704\r\nEmployeeTrainingId: 0\r\nFromDate: June 15, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: June 17, 2022\r\nTrainingId: 16254\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766793	2024-07-12	14:04:19.9521650	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3704\r\nEmployeeTrainingId: 0\r\nFromDate: June 17, 2022\r\nHours: 51\r\nNatureOfParticipation: SUPERVISORY/ TECHNICAL \r\nSponsoringAgency: ASEAMETRIC W/ UDEMY E-LEARNING SOLUTION \r\nStatus: \r\nToDate: June 10, 2022\r\nTrainingId: 16255\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766794	2024-07-12	14:04:19.9571487	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3704\r\nEmployeeTrainingId: 0\r\nFromDate: May 10, 2022\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: PHILIPPINE PSYCHOLOGICAL CORPORATION \r\nStatus: \r\nToDate: June 10, 2022\r\nTrainingId: 16256\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766795	2024-07-12	14:04:19.9621317	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3704\r\nEmployeeTrainingId: 0\r\nFromDate: May 17, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: May 20, 2022\r\nTrainingId: 16257\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766796	2024-07-12	14:04:19.9671151	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3704\r\nEmployeeTrainingId: 0\r\nFromDate: July 26, 2022\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: July 27, 2022\r\nTrainingId: 16260\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766797	2024-07-12	14:04:19.9720985	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3704\r\nEmployeeTrainingId: 0\r\nFromDate: April 01, 2022\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: April 01, 2022\r\nTrainingId: 16261\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766798	2024-07-12	14:04:19.9770817	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3704\r\nEmployeeTrainingId: 0\r\nFromDate: June 04, 2021\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED REGION IV A CALABARZON \r\nStatus: \r\nToDate: June 04, 2021\r\nTrainingId: 16263\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766799	2024-07-12	14:04:19.9820650	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3704\r\nEmployeeTrainingId: 0\r\nFromDate: February 04, 2021\r\nHours: 12\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED REGION IV A CALABARZON \r\nStatus: \r\nToDate: February 05, 2021\r\nTrainingId: 16266\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766800	2024-07-12	14:04:19.9870483	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3704\r\nEmployeeTrainingId: 0\r\nFromDate: January 21, 2021\r\nHours: 12\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPED REGION IV A CALABARZON \r\nStatus: \r\nToDate: January 22, 2021\r\nTrainingId: 16268\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766801	2024-07-12	14:04:19.9920318	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3704\r\nEmployeeTrainingId: 0\r\nFromDate: March 05, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: PHILIPPINE GUIDANCE AND COUNSELING ASSOCIATION \r\nStatus: \r\nToDate: March 05, 2020\r\nTrainingId: 16270\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766802	2024-07-12	14:04:19.9960182	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3704\r\nEmployeeTrainingId: 0\r\nFromDate: August 28, 2019\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: SDO BATANGAS PROVINCE \r\nStatus: \r\nToDate: August 30, 2019\r\nTrainingId: 16271\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766803	2024-07-12	14:04:20.0019983	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3704\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2019\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: SDO BATANGAS PROVINCE \r\nStatus: \r\nToDate: July 17, 2019\r\nTrainingId: 16272\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766804	2024-07-12	14:04:20.0059852	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3704\r\nEmployeeTrainingId: 0\r\nFromDate: June 13, 2019\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: SDO BATANGAS PROVINCE \r\nStatus: \r\nToDate: June 15, 2019\r\nTrainingId: 16273\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766805	2024-07-12	14:04:20.0119650	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 1114\r\nAddress2: TWINVILLA SUBDIVISION\r\nBarangay: KUMINTANG ILAYA\r\nBasicInformationId: 3704\r\nBirthDate: March 20, 1975\r\nBirthPlace: SAN PASCUAL, BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RHUBIE.SILANG001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RHUBIE\r\nFullName: RHUBIE S. SILANG\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005197054\r\nHDMF: 1490-0031-3829\r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437402914\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: SILANG\r\nMobileNumber: 09260391429\r\nNationality: Filipino\r\nPermanentAddress1: 1114\r\nPermanentAddress2: TWINVILLA SUBDIVISION\r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ARGON STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: 19-089229129-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: 04-1034298-9\r\nStreetName: ARGON STREET\r\nTIN: 205-475-667-0000\r\nWeight: 65\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 1114\r\nAddress2: TWINVILLA SUBDIVISION\r\nBarangay: KUMINTANG ILAYA\r\nBasicInformationId: 3704\r\nBirthDate: March 20, 1975\r\nBirthPlace: SAN PASCUAL, BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RHUBIE.SILANG001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RHUBIE\r\nFullName: RHUBIE S. SILANG\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005197054\r\nHDMF: 1490-0031-3829\r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437402914\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: SILANG\r\nMobileNumber: 09260391429\r\nNationality: Filipino\r\nPermanentAddress1: 1114\r\nPermanentAddress2: TWINVILLA SUBDIVISION\r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ARGON STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: 19-089229129-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1034298-9\r\nStreetName: ARGON STREET\r\nTIN: 205-475-667-0000\r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
766812	2024-07-12	14:23:41.0555683	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3705\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
766813	2024-07-12	14:25:01.4463309	<Undetected>	Update	BasicInformationId: 3705\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3502\r\n	BasicInformationId: 3705\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3502\r\n	admin	Questionnaires	1
766821	2024-07-12	14:40:57.7750720	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTERS IN NURSING\r\nLevel: College\r\n	admin	Courses	1
766822	2024-07-12	14:48:16.2819883	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3705\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1981\r\nDateTo: 1987\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES\r\nYearGraduated: 1987\r\n	admin	EducationalBackgrounds	1
766823	2024-07-12	14:48:16.2869882	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3705\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1987\r\nDateTo: 1991\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY\r\nYearGraduated: 1991\r\n	admin	EducationalBackgrounds	1
766824	2024-07-12	14:48:16.2939505	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: WITH ACADEMIC/ DISTINCTION \r\nBasicInformationId: 3705\r\nCourse: \r\nCourseId: 1346\r\nCourseOrMajor: \r\nDateFrom: 1991\r\nDateTo: 1995\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES \r\nYearGraduated: 1995\r\n	admin	EducationalBackgrounds	1
766825	2024-07-12	14:48:16.2989504	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3705\r\nCourse: \r\nCourseId: 1253\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 1999\r\nEducationalAttainment: COMPLETED ACADEMIC REQUIREMENTS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
766826	2024-07-12	14:48:16.3039504	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3705\r\nCourse: \r\nCourseId: 1341\r\nCourseOrMajor: \r\nDateFrom: 2013\r\nDateTo: 2014\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: LYCEUM OF THE PHILIPPPINES UNIVERSITY\r\nYearGraduated: 2014\r\n	admin	EducationalBackgrounds	1
766827	2024-07-12	14:48:16.3109505	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3705\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RAQUE\r\nFullName: RAQUE NAPAGAL MEDINA\r\nGender: Male\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: NAPAGAL\r\nOccupation: OFW\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
766828	2024-07-12	14:48:16.3159505	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3705\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ANSELMO\r\nFullName: ANSELMO SALAZAR RAYOS\r\nGender: Male\r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: SALAZAR\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
766829	2024-07-12	14:48:16.3209503	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3705\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARGARITA\r\nFullName: MARGARITA CARINGAL TALAIN\r\nGender: Female\r\nLastName: TALAIN\r\nMaidenName: \r\nMiddleName: CARINGAL\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
766830	2024-07-12	14:48:16.3249503	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3705\r\nBirthDate: December 26, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOHN ANTHON\r\nFullName: JOHN ANTHON RAYOS MEDINA\r\nGender: Male\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: RAYOS\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766831	2024-07-12	14:48:16.3309506	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3705\r\nDateOfExamination: June 11, 1995\r\nDateOfRelease: August 25, 1995\r\nEligibilityDocumentTypeId: 0\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: June 12, 1995\r\nLevelOfEligibility: \r\nLicenseNumber: 0277220\r\nPlaceOfExamination: MANILA\r\nRating: 75.20%\r\nTitle: NURSE LICENSURE EXAMINATION \r\n	admin	Eligibilities	1
766848	2024-07-12	14:59:39.2236507	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3706\r\nEmployeeTrainingId: 0\r\nFromDate: August 09, 2023\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPED (BATANGAS CITY)\r\nStatus: \r\nToDate: September 11, 2023\r\nTrainingId: 15534\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766832	2024-07-12	14:48:16.3349503	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3705\r\nDateOfExamination: October 17, 1993\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 7\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: First Level (Subprofessional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 81.85%\r\nTitle: CIVIL SERVICE SUB-PROFESSIONAL\r\n	admin	Eligibilities	1
766836	2024-07-12	14:59:38.8934452	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: 0\r\nBirthDate: January 02, 1965\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: raquel.ranchez002@deped.gov.ph\r\nExtensionName: \r\nFirstName: RAQUEL\r\nFullName: RAQUEL B. RANCHEZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02002896815\r\nHDMF: 1490-0089-7986\r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437027770\r\nLastName: RANCHEZ\r\nMaidenName: \r\nMiddleName: BARROLA\r\nMobileNumber: 09176220151\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000022214-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 128-315-255-0000\r\nWeight: 75\r\nZipCode: 4200\r\n	admin	BasicInformation	1
766837	2024-07-12	14:59:39.1738174	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3706\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1971\r\nDateTo: 1977\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAINT BRIDGET COLLEGE\r\nYearGraduated: 1977\r\n	admin	EducationalBackgrounds	1
766838	2024-07-12	14:59:39.1778039	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3706\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1977\r\nDateTo: 1981\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAINT BRIDGET COLLEGE\r\nYearGraduated: 1981\r\n	admin	EducationalBackgrounds	1
766839	2024-07-12	14:59:39.1827874	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3706\r\nCourse: \r\nCourseId: 1362\r\nCourseOrMajor: \r\nDateFrom: 1931\r\nDateTo: 1986\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY (NOW BATANGAS STATE UNIVERSITY)\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
766840	2024-07-12	14:59:39.1867739	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3706\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RIZALITO\r\nFullName: RIZALITO SANTISO RANCHEZ\r\nGender: Male\r\nLastName: RANCHEZ\r\nMaidenName: \r\nMiddleName: SANTISO\r\nOccupation: GOVERNMENT EMPLOYEE\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
766841	2024-07-12	14:59:39.1917573	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3706\r\nBirthDate: June 28, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: NEOL JOSEPH\r\nFullName: NEOL JOSEPH B. RANCHEZ\r\nGender: Male\r\nLastName: RANCHEZ\r\nMaidenName: \r\nMiddleName: B.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766842	2024-07-12	14:59:39.1957439	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3706\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ANTONIO\r\nFullName: ANTONIO TORRES BARROLA\r\nGender: Male\r\nLastName: BARROLA\r\nMaidenName: \r\nMiddleName: TORRES\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
766843	2024-07-12	14:59:39.2007274	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3706\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROSARIO\r\nFullName: ROSARIO DE GUZMAN PEREZ\r\nGender: Female\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: DE GUZMAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
766844	2024-07-12	14:59:39.2047139	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3706\r\nEmployeeTrainingId: 0\r\nFromDate: January 22, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION (DRRMS)\r\nStatus: \r\nToDate: January 26, 2024\r\nTrainingId: 16274\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766845	2024-07-12	14:59:39.2096974	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3706\r\nEmployeeTrainingId: 0\r\nFromDate: October 02, 2023\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION (DRRMS)\r\nStatus: \r\nToDate: October 06, 2023\r\nTrainingId: 16275\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766846	2024-07-12	14:59:39.2136839	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3706\r\nEmployeeTrainingId: 0\r\nFromDate: August 11, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DIVISION OF BATANGAS CITY (DEPED)\r\nStatus: \r\nToDate: August 11, 2023\r\nTrainingId: 15162\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766847	2024-07-12	14:59:39.2186672	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3706\r\nEmployeeTrainingId: 0\r\nFromDate: August 18, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: ROTARY CLUB BATANGAS CITY\r\nStatus: \r\nToDate: August 18, 2023\r\nTrainingId: 15963\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766849	2024-07-12	14:59:39.2276377	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3706\r\nEmployeeTrainingId: 0\r\nFromDate: July 27, 2023\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: PDRRMO\r\nStatus: \r\nToDate: July 28, 2023\r\nTrainingId: 16276\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766850	2024-07-12	14:59:39.2326208	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3706\r\nEmployeeTrainingId: 0\r\nFromDate: May 24, 2023\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION (RO)\r\nStatus: \r\nToDate: May 26, 2023\r\nTrainingId: 16277\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766851	2024-07-12	14:59:39.2366073	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3706\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DIVISION OF BATANGAS CITY (DEPED)\r\nStatus: \r\nToDate: September 13, 2023\r\nTrainingId: 16278\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766852	2024-07-12	14:59:39.2415909	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3706\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DIVISION OF BATANGAS CITY (DEPED)\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15725\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766853	2024-07-12	14:59:39.2455772	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3706\r\nEmployeeTrainingId: 0\r\nFromDate: January 23, 2023\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION (RO)\r\nStatus: \r\nToDate: January 23, 2023\r\nTrainingId: 16279\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766854	2024-07-12	14:59:39.2505609	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3706\r\nEmployeeTrainingId: 0\r\nFromDate: October 24, 2023\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: DOST\r\nStatus: \r\nToDate: October 25, 2023\r\nTrainingId: 16280\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766855	2024-07-12	14:59:39.2545472	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3706\r\nEmployeeTrainingId: 0\r\nFromDate: June 27, 2023\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION (DRRMS)\r\nStatus: \r\nToDate: June 30, 2023\r\nTrainingId: 16281\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766856	2024-07-12	14:59:39.2595309	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3706\r\nEmployeeTrainingId: 0\r\nFromDate: May 04, 2022\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DIVISION OF BATANGAS CITY (DEPED)\r\nStatus: \r\nToDate: May 26, 2022\r\nTrainingId: 15714\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766857	2024-07-12	14:59:39.2635172	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3706\r\nEmployeeTrainingId: 0\r\nFromDate: October 27, 2023\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DIVISION OF BATANGAS CITY (DEPED)\r\nStatus: \r\nToDate: October 27, 2023\r\nTrainingId: 15871\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766858	2024-07-12	14:59:39.2685008	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3706\r\nEmployeeTrainingId: 0\r\nFromDate: December 03, 2023\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: CITY DISASTER RISK REDUCTION AND MANAGEMENT OFFICE\r\nStatus: \r\nToDate: December 28, 2023\r\nTrainingId: 16284\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766859	2024-07-12	14:59:39.2724872	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3706\r\nEmployeeTrainingId: 0\r\nFromDate: December 20, 2022\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DIVISION OF BATANGAS CITY (DEPED)\r\nStatus: \r\nToDate: December 20, 2022\r\nTrainingId: 16223\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766860	2024-07-12	14:59:39.2774708	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3706\r\nEmployeeTrainingId: 0\r\nFromDate: September 29, 2022\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: DIVISION OF BATANGAS CITY (DEPED)\r\nStatus: \r\nToDate: September 30, 2022\r\nTrainingId: 16186\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766861	2024-07-12	14:59:39.2814572	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3706\r\nEmployeeTrainingId: 0\r\nFromDate: May 03, 2023\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: CDRRMO - LGU\r\nStatus: \r\nToDate: May 05, 2023\r\nTrainingId: 16285\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766862	2024-07-12	14:59:39.2864408	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3706\r\nEmployeeTrainingId: 0\r\nFromDate: March 06, 2023\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION (DRRMS)\r\nStatus: \r\nToDate: March 10, 2023\r\nTrainingId: 16286\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766863	2024-07-12	14:59:39.2904273	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3706\r\nEmployeeTrainingId: 0\r\nFromDate: February 20, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DIVISION OF BATANGAS CITY (DEPED)\r\nStatus: \r\nToDate: December 20, 2023\r\nTrainingId: 15114\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766864	2024-07-12	14:59:39.2954106	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3706\r\nEmployeeTrainingId: 0\r\nFromDate: February 10, 2023\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: PRIVATE STAKEHOLDER\r\nStatus: \r\nToDate: February 11, 2023\r\nTrainingId: 16287\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766865	2024-07-12	14:59:39.2993973	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3706\r\nCharacterReferenceId: 0\r\nCompanyAddress: BARSINAGA, CALAPAN CITY\r\nCompanyName: \r\nContactNumber: 9175620432\r\nExtensionName: \r\nFirstName: DONATO\r\nLastName: BUENO\r\nMiddleName: G.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766866	2024-07-12	14:59:39.3033840	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3706\r\nCharacterReferenceId: 0\r\nCompanyAddress: CUTA LOOBAN BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 9088950611\r\nExtensionName: \r\nFirstName: LORETO \r\nLastName: GUTIERREZ\r\nMiddleName: P. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766867	2024-07-12	14:59:39.3083676	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3706\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN WEST BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 9209476705\r\nExtensionName: \r\nFirstName: JEFFREY\r\nLastName: MARANAN\r\nMiddleName: P. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766868	2024-07-12	14:59:39.3123539	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3706\r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS NATIONAL HIGH SCHOOL\r\nRating: \r\nTitle: CAREER SERVICE PROFESSIONAL\r\n	admin	Eligibilities	1
766869	2024-07-12	14:59:39.3173376	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3706\r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 7\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: First Level (Subprofessional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS NATIONAL HIGH SCHOOL\r\nRating: \r\nTitle: CAREER SERVICE SUB PROFESSIONAL\r\n	admin	Eligibilities	1
766870	2024-07-12	14:59:39.3223207	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3706\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: May 19, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 5,228.00\r\nPositionHeld: CLERK I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: December 31, 1998\r\n	admin	Experiences	1
766871	2024-07-12	14:59:39.3263073	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3706\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 5,288.00\r\nPositionHeld: CLERK I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
766872	2024-07-12	14:59:39.3312909	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3706\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 5,751.00\r\nPositionHeld: CLERK I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
766873	2024-07-12	14:59:39.3352773	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3706\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 6,039.00\r\nPositionHeld: CLERK I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: December 31, 2001\r\n	admin	Experiences	1
766874	2024-07-12	14:59:39.3402607	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3706\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 8,409.00\r\nPositionHeld: CLERK I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: May 31, 2010\r\n	admin	Experiences	1
766875	2024-07-12	14:59:39.3442473	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3706\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 10,931.00\r\nPositionHeld: CLERK I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: May 31, 2015\r\n	admin	Experiences	1
766990	2024-07-12	15:50:55.6294183	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING ON PRIMARY EYE CARE FOR DEPED NURSES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766876	2024-07-12	14:59:39.3492307	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3706\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 24,887.00\r\nPositionHeld: PROJECT DEVELOPMENT OFFICER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
766877	2024-07-12	14:59:39.3532170	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3706\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 26,192.00\r\nPositionHeld: PROJECT DEVELOPMENT OFFICER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
766878	2024-07-12	14:59:39.3582007	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3706\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 27,565.00\r\nPositionHeld: PROJECT DEVELOPMENT OFFICER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
766879	2024-07-12	14:59:39.3631831	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3706\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 29,395.00\r\nPositionHeld: PROJECT DEVELOPMENT OFFICER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
766880	2024-07-12	14:59:39.3671697	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3706\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 37,380.00\r\nPositionHeld: PROJECT DEVELOPMEMENT II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: July 12, 2024\r\n	admin	Experiences	1
766881	2024-07-12	14:59:39.3721531	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3706\r\nSkillId: 0\r\nSkillName: SEWING, BIKING AND READING NOVEL\r\n	admin	Skills	1
766882	2024-07-12	14:59:39.3761397	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3706\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: \r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
766883	2024-07-12	15:02:46.1345643	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MENTAL AWARENESS SEMINAR: '"PAHALAGAHAN ANG KASALUSUGAN NG KAISIPAN, TUNGO SA TAMANG PAGTUTURO NG KABATAAN"\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766884	2024-07-12	15:05:15.7778232	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 DIVISION LEADERSHIP TRAINING "EMPOWERING STUDENT-LEADERS OF TODAY TOWARDS LEADERS OF TOMORROW"\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766885	2024-07-12	15:07:59.1460426	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TECHNICAL ASSITANCE TO DIVISION PROPONENT AND SCHOOL LEADERS ON PY 2023 BUDGET PREPARATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766886	2024-07-12	15:13:54.2155241	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL PARENT- TEACHER ASSOCIATIONS (PTAS) FORUM FOR CITY FEDERATED PTA OFFICERS AND CITY SCHOOLS DIVISION PTA COORDINATORS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766887	2024-07-12	15:15:15.4374562	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 NATIONAL EDUCATION SUMMIT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766888	2024-07-12	15:16:58.1138964	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY DEVELOPMENT/ STRESS DEBRIEFING ACTIVITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766900	2024-07-12	15:19:21.0663252	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3707\r\nEmployeeTrainingId: 0\r\nFromDate: April 01, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency:  DEPARTMENT OF EDUCATION-SDO BATANGAS CITY\r\nStatus: \r\nToDate: April 01, 2023\r\nTrainingId: 16289\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766901	2024-07-12	15:19:21.0713651	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3707\r\nEmployeeTrainingId: 0\r\nFromDate: February 21, 2023\r\nHours: 8\r\nNatureOfParticipation: MANAGEMENT\r\nSponsoringAgency:  DEPARTMENT OF EDUCATION-SDO BATANGAS CITY\r\nStatus: \r\nToDate: February 21, 2023\r\nTrainingId: 16290\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766889	2024-07-12	15:19:20.7897917	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 516A\r\nAddress2: \r\nBarangay: TULO\r\nBasicInformationId: 0\r\nBirthDate: September 24, 1989\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: caroline.claveria@deped.gov.ph/ caroline.claveria@yahoo.com\r\nExtensionName: \r\nFirstName: CAROLINE\r\nFullName: CAROLINE C. GAYETA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.45\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GAYETA\r\nMaidenName: \r\nMiddleName: CLAVERIA\r\nMobileNumber: 09088166537\r\nNationality: Filipino\r\nPermanentAddress1: 516A\r\nPermanentAddress2: \r\nPermanentBarangay: TULO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
766890	2024-07-12	15:19:21.0213244	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: SECOND HONOR \r\nBasicInformationId: 3707\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 2002\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: TUOLO 1 ELEMENTARY SCHOOL \r\nYearGraduated: 2002\r\n	admin	EducationalBackgrounds	1
766891	2024-07-12	15:19:21.0253255	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3707\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2002\r\nDateTo: 2006\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL \r\nYearGraduated: 2006\r\n	admin	EducationalBackgrounds	1
766892	2024-07-12	15:19:21.0303257	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: CLB SCHOLAR\r\nBasicInformationId: 3707\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2006\r\nDateTo: 2010\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MAJOR IN CONTENT COURSE\r\nSchoolorUniversity: COLEGIO NG LUNGSOD NG BATANGAS \r\nYearGraduated: 2010\r\n	admin	EducationalBackgrounds	1
766893	2024-07-12	15:19:21.0343251	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3707\r\nCourse: \r\nCourseId: 1365\r\nCourseOrMajor: \r\nDateFrom: 2015\r\nDateTo: 2019\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: MAJOR IN EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: UNIVERSITY OF BATANGAS \r\nYearGraduated: 2019\r\n	admin	EducationalBackgrounds	1
766894	2024-07-12	15:19:21.0393257	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3707\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09084965912\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: IAN FLOYD\r\nFullName: IAN FLOYD MENDOZA GAYETA\r\nGender: Male\r\nLastName: GAYETA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: MECHANICAL ENGINEER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
766895	2024-07-12	15:19:21.0433251	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3707\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SONNY\r\nFullName: SONNY DE CASTRO CLAVERIA\r\nGender: Male\r\nLastName: CLAVERIA\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
766896	2024-07-12	15:19:21.0483241	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3707\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ZOILA\r\nFullName: ZOILA MUNDIN ATIENZA\r\nGender: Female\r\nLastName: ATIENZA\r\nMaidenName: \r\nMiddleName: MUNDIN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
766897	2024-07-12	15:19:21.0533240	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3707\r\nBirthDate: December 29, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: XIAN CARL\r\nFullName: XIAN CARL C GAYETA\r\nGender: Male\r\nLastName: GAYETA\r\nMaidenName: \r\nMiddleName: C\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766898	2024-07-12	15:19:21.0573253	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3707\r\nBirthDate: July 13, 2019\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: AHLIAH CELINE\r\nFullName: AHLIAH CELINE C GAYETA\r\nGender: Female\r\nLastName: GAYETA\r\nMaidenName: \r\nMiddleName: C\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766899	2024-07-12	15:19:21.0623255	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3707\r\nEmployeeTrainingId: 0\r\nFromDate: April 18, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION- SDO BATANGAS CITY\r\nStatus: \r\nToDate: April 18, 2023\r\nTrainingId: 16288\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766902	2024-07-12	15:19:21.0763684	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3707\r\nEmployeeTrainingId: 0\r\nFromDate: February 20, 2023\r\nHours: 8\r\nNatureOfParticipation: MANAGEMENT \r\nSponsoringAgency:  DEPARTMENT OF EDUCATION-SDO BATANGAS CITY\r\nStatus: \r\nToDate: February 20, 2023\r\nTrainingId: 15114\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766903	2024-07-12	15:19:21.0813261	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3707\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency:  DEPARTMENT OF EDUCATION-SDO BATANGAS CITY\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 15101\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766904	2024-07-12	15:19:21.0853258	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3707\r\nEmployeeTrainingId: 0\r\nFromDate: February 21, 2023\r\nHours: 8\r\nNatureOfParticipation: MANAGEMENT \r\nSponsoringAgency:  DEPARTMENT OF EDUCATION-SDO BATANGAS CITY\r\nStatus: \r\nToDate: February 21, 2023\r\nTrainingId: 15153\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766905	2024-07-12	15:19:21.0903693	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3707\r\nEmployeeTrainingId: 0\r\nFromDate: October 13, 2023\r\nHours: 16\r\nNatureOfParticipation: MANAGEMENT \r\nSponsoringAgency:  DEPARTMENT OF EDUCATION- CENTRAL OFFICE \r\nStatus: \r\nToDate: October 14, 2023\r\nTrainingId: 16291\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766906	2024-07-12	15:19:21.0943742	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3707\r\nEmployeeTrainingId: 0\r\nFromDate: September 28, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency:  DEPARTMENT OF EDUCATION-SDO BATANGAS CITY\r\nStatus: \r\nToDate: September 29, 2023\r\nTrainingId: 16292\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766907	2024-07-12	15:19:21.0999708	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3707\r\nEmployeeTrainingId: 0\r\nFromDate: September 15, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency:  DEPARTMENT OF EDUCATION-SDO BATANGAS CITY\r\nStatus: \r\nToDate: September 15, 2023\r\nTrainingId: 16293\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766908	2024-07-12	15:19:21.1039786	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3707\r\nEmployeeTrainingId: 0\r\nFromDate: September 07, 2023\r\nHours: 8\r\nNatureOfParticipation: MANAGEMENT \r\nSponsoringAgency:  DEPARTMENT OF EDUCATION-SDO BATANGAS CITY\r\nStatus: \r\nToDate: September 07, 2023\r\nTrainingId: 15174\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766909	2024-07-12	15:19:21.1089709	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3707\r\nDateOfExamination: September 26, 2010\r\nDateOfRelease: September 24, 2024\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 26, 2010\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1085450\r\nPlaceOfExamination: QUEZON MEMORIAL ELEMENTARY SCHOOL \r\nRating: 75.0%\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS \r\n	admin	Eligibilities	1
766910	2024-07-12	15:19:21.1139801	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3707\r\nCompanyInstitution: DEPARTMENT OF EDUCATION/ SDO BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 616,284.00\r\nPositionHeld: SENIOR EDUCATION PROGRAM SPECIALIST \r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: July 12, 2024\r\n	admin	Experiences	1
766911	2024-07-12	15:19:21.1189271	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3707\r\nCompanyInstitution: DEPARTMENT OF EDUCATION/ SDO BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: July 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 598,020.00\r\nPositionHeld: SENIOR EDUCATION PROGRAM SPECIALIST \r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
766912	2024-07-12	15:19:21.1229270	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3707\r\nCompanyInstitution:  DEPARTMENT OF EDUCATION/ MELECIO ARCEO MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 356,576.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: January 06, 2022\r\n	admin	Experiences	1
766913	2024-07-12	15:19:21.1279271	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3707\r\nCompanyInstitution:  DEPARTMENT OF EDUCATION/ MELECIO ARCEO MEMORIAL ELEMENTARY SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 339,312.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
766925	2024-07-12	15:19:21.1829296	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3707\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
766914	2024-07-12	15:19:21.1319272	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3707\r\nCompanyInstitution:  DEPARTMENT OF EDUCATION/ MELECIO ARCEO MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 26,754.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
766915	2024-07-12	15:19:21.1369274	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3707\r\nCompanyInstitution:  DEPARTMENT OF EDUCATION/ MELECIO ARCEO MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: November 04, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 25,232.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
766916	2024-07-12	15:19:21.1419270	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3707\r\nCompanyInstitution:  DEPARTMENT OF EDUCATION/ MELECIO ARCEO MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 23,222.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: November 03, 2019\r\n	admin	Experiences	1
766917	2024-07-12	15:19:21.1469273	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3707\r\nCompanyInstitution:  DEPARTMENT OF EDUCATION/ MELECIO ARCEO MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 22,149.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
766918	2024-07-12	15:19:21.1509270	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3707\r\nCompanyInstitution:  DEPARTMENT OF EDUCATION/ MELECIO ARCEO MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 21,387.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
766919	2024-07-12	15:19:21.1559383	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3707\r\nCompanyInstitution:  DEPARTMENT OF EDUCATION/ MELECIO ARCEO MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 20,651.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
766920	2024-07-12	15:19:21.1599271	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3707\r\nCompanyInstitution:  DEPARTMENT OF EDUCATION/ MELECIO ARCEO MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: October 26, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 19,940.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
766921	2024-07-12	15:19:21.1649272	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3707\r\nCompanyInstitution:  DEPARTMENT OF EDUCATION/ MELECIO ARCEO MEMORIAL ELEMENTARY SCHOOL \r\nExperienceId: 0\r\nFromDate: January 04, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: October 25, 2013\r\n	admin	Experiences	1
766922	2024-07-12	15:19:21.1699272	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3707\r\nCompanyInstitution:  DEPARTMENT OF EDUCATION/ MELECIO ARCEO MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: October 10, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: November 06, 2012\r\n	admin	Experiences	1
766923	2024-07-12	15:19:21.1739270	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3707\r\nCompanyInstitution:  DEPARTMENT OF EDUCATION/ MELECIO ARCEO MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: September 19, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: October 09, 2012\r\n	admin	Experiences	1
766924	2024-07-12	15:19:21.1789271	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3707\r\nCompanyInstitution:  DEPARTMENT OF EDUCATION/ MELECIO ARCEO MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 04, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: July 23, 2012\r\n	admin	Experiences	1
766961	2024-07-12	15:43:59.1712917	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3707\r\nSkillId: 0\r\nSkillName: KNOWLEDGEABLE ON MICROSOFT OFFICE AND OTHER A LIKE PROGRAMS\r\n	admin	Skills	1
766926	2024-07-12	15:20:35.8282590	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PTA FORUM ON THE OMNIBUG GUIDELINE ON THE REGULATION OF OPERATIONS OF PTA\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766927	2024-07-12	15:33:35.0705377	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3705\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY  \r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 42,694.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-8\r\nStatus: Permanent\r\nToDate: July 12, 2024\r\n	admin	Experiences	1
766928	2024-07-12	15:33:35.0755366	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3705\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY  \r\nExperienceId: 0\r\nFromDate: June 25, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 41,172.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-8\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
766929	2024-07-12	15:33:35.0805365	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3705\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY  \r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 40,725.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-7\r\nStatus: Permanent\r\nToDate: June 24, 2022\r\n	admin	Experiences	1
766930	2024-07-12	15:33:35.0855364	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3705\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: June 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 39,203.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-7\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
766931	2024-07-12	15:33:35.0915376	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3705\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY  \r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 35,915.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-7\r\nStatus: Permanent\r\nToDate: May 31, 2021\r\n	admin	Experiences	1
766932	2024-07-12	15:33:35.0955374	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3705\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY  \r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 34,393.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-7\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
766933	2024-07-12	15:33:35.1005374	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3705\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 25, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 32,871.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-7\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
766934	2024-07-12	15:33:35.1055375	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3705\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 32,469.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-6\r\nStatus: Permanent\r\nToDate: June 24, 2019\r\n	admin	Experiences	1
766935	2024-07-12	15:33:35.1105762	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3705\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY  \r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 30,799.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-6\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
766936	2024-07-12	15:33:35.1165780	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3705\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY  \r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 29,214.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-6\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
766937	2024-07-12	15:33:35.1205363	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3705\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 25, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 27,712.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-6\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
766938	2024-07-12	15:33:35.1265373	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3705\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 27,401.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-5\r\nStatus: Permanent\r\nToDate: June 24, 2016\r\n	admin	Experiences	1
766939	2024-07-12	15:33:35.1315373	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3705\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: June 25, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 26,000.00\r\nPositionHeld:  NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-4\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
766940	2024-07-12	15:33:35.1365375	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3705\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY  \r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 25,718.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-4\r\nStatus: Permanent\r\nToDate: June 24, 2013\r\n	admin	Experiences	1
766941	2024-07-12	15:33:35.1416659	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3705\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 23,621.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-4\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
766942	2024-07-12	15:33:35.1466703	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3705\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 26, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 21,523.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-4\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
766943	2024-07-12	15:33:35.1516652	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3705\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY  \r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 21,172.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: June 25, 2010\r\n	admin	Experiences	1
766944	2024-07-12	15:33:35.1566649	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3705\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY  \r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 19,040.00\r\nPositionHeld: NURSE II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
766945	2024-07-12	15:33:35.1616662	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3705\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 14,197.00\r\nPositionHeld: PUBLIC HEALTH NURSE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
766946	2024-07-12	15:33:35.1666658	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3705\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 12, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,906.00\r\nPositionHeld: PUBLIC HEALTH NURSE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
766947	2024-07-12	15:33:35.1716662	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3705\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: January 07, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 12,591.00\r\nPositionHeld: PUBLIC HEALTH NURSE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: December 31, 2007\r\n	admin	Experiences	1
766948	2024-07-12	15:33:35.1767105	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3705\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 11,446.00\r\nPositionHeld: PUBLIC HEALTH NURSE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
766962	2024-07-12	15:43:59.1762917	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3707\r\nSkillId: 0\r\nSkillName: BASIC SKILLS IN ADOBE PHOTOSHOP \r\n	admin	Skills	1
766963	2024-07-12	15:43:59.1802913	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3707\r\nSkillId: 0\r\nSkillName: DRIVING \r\n	admin	Skills	1
766949	2024-07-12	15:33:35.1816649	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3705\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 11,167.00\r\nPositionHeld: PUBLIC HEALTH NURSE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2004\r\n	admin	Experiences	1
766950	2024-07-12	15:33:35.1876652	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3705\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 25, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 10,635.00\r\nPositionHeld: PUBLIC HEALTH NURSE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
766951	2024-07-12	15:33:35.1917046	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3705\r\nCompanyInstitution: CAPHEALTH MAINTENANCE ORG. INC\r\nExperienceId: 0\r\nFromDate: October 03, 1996\r\nIsGovernmentService: False\r\nMonthlySalary: 10,000.00\r\nPositionHeld: ADMINISTRATIVE CLERK III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: June 18, 2001\r\n	admin	Experiences	1
766952	2024-07-12	15:33:35.1977096	<Undetected>	Update	BasicInformationId: 3705\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3680\r\nExtensionName: \r\nFirstName: RAQUE\r\nFullName: RAQUE NAPAGAL MEDINA\r\nGender: Male\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: NAPAGAL\r\nOccupation: OFW\r\nRelationship: Husband\r\n	BasicInformationId: 3705\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3680\r\nExtensionName: \r\nFirstName: RAQUE\r\nFullName: RAQUE MEDINA\r\nGender: Male\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: NAPAGAL\r\nOccupation: OFW\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
766953	2024-07-12	15:33:35.2027080	<Undetected>	Update	BasicInformationId: 3705\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3681\r\nExtensionName: \r\nFirstName: ANSELMO\r\nFullName: ANSELMO SALAZAR RAYOS\r\nGender: Male\r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: SALAZAR\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3705\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3681\r\nExtensionName: \r\nFirstName: ANSELMO\r\nFullName: ANSELMO RAYOS\r\nGender: Male\r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: SALAZAR\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
766954	2024-07-12	15:33:35.2077342	<Undetected>	Update	BasicInformationId: 3705\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3682\r\nExtensionName: \r\nFirstName: MARGARITA\r\nFullName: MARGARITA CARINGAL TALAIN\r\nGender: Female\r\nLastName: TALAIN\r\nMaidenName: \r\nMiddleName: CARINGAL\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3705\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3682\r\nExtensionName: \r\nFirstName: MARGARITA\r\nFullName: MARGARITA TALAIN\r\nGender: Female\r\nLastName: TALAIN\r\nMaidenName: \r\nMiddleName: CARINGAL\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
766955	2024-07-12	15:33:35.2127096	<Undetected>	Update	BasicInformationId: 3705\r\nBirthDate: December 26, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3683\r\nExtensionName: \r\nFirstName: JOHN ANTHON\r\nFullName: JOHN ANTHON RAYOS MEDINA\r\nGender: Male\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: RAYOS\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3705\r\nBirthDate: December 26, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3683\r\nExtensionName: \r\nFirstName: JOHN ANTHON\r\nFullName: JOHN ANTHON MEDINA\r\nGender: Male\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: RAYOS\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766956	2024-07-12	15:35:08.6704174	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SBFP PROGRAM IMPLEMENTATION REVIEW AND PLANNING WORKSHOP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766957	2024-07-12	15:36:27.1182064	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON THE DEVELOPMENT OF SCHOOL CANTEEN AND SBFP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766958	2024-07-12	15:39:10.9984210	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON DISASTER RISK REDUCTION AND MANAGEMENT (DRRM) AND FORMULATION OF LOCAL NUTRITION ACTION PLAN (LNAP)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766959	2024-07-12	15:40:29.5098182	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING ON FOOD SAFETY COMPLIANCE OFFICER (FSCO)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766960	2024-07-12	15:43:44.8857247	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WORKSHOP ON THE FINALIZATION OF THE SCHOOL-BASED FEEDING PROGRAM (SBFP) FOOD SAFETY PROTOCOLS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766987	2024-07-12	15:46:15.1976710	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING ON BASIC FOOD SAFETY (BFS) AND HAZARD ANALYSIS ANAD CRITICAL CONTROL POINT (HACCP)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766988	2024-07-12	15:48:09.8698475	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL FOOD EXCHANGE AND FOOD EXHIBITION SEMINAR\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766968	2024-07-12	15:43:59.2361467	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3707\r\nRecognitionId: 0\r\nRecognitionName: CERTIFICATE OF RECOGNITION IN GRATEFUL ACKNOWLEDGEMENT FOR HER INVALUABLE SERVICES RENDERED AS MEMBER IN REWARDS AND RECOGNITION WHO SUPPORTS THE COMMITTE TO ACHIEVE MATURITY LEVEL 2 AND BE RECOGNIZED BY TYHE CSC REGIONAL OFFICE\r\n	admin	Recognitions	1
766969	2024-07-12	15:43:59.2411468	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3707\r\nRecognitionId: 0\r\nRecognitionName: CERTIFICATE OF RECOGNITION IN GRATEFUL ACKNOWLEDGEMENT ON HER INVALUABLE SERVICE RENDERED AS EVALUATOR DURING 2023 DIVISION SCHOOL BASED- MANAGEMENT (SBM) CONVERGENCE UNDER PROJECT SHARE IT\r\n	admin	Recognitions	1
766970	2024-07-12	15:43:59.2457525	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3707\r\nRecognitionId: 0\r\nRecognitionName: CERTIFICATE OF RECOGNITION IN GRATEFUL ACKNOWLEDGEMENT ON HER INVALUABLE SERVICE RENDERED A SPEAKER DURING THE CONDUCT OF BRIGADA ESKWELA KICK-BACK \r\n	admin	Recognitions	1
766971	2024-07-12	15:43:59.2497575	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3707\r\nRecognitionId: 0\r\nRecognitionName: CERTIFICATE OF RECOGNITION IN GRATEFUL ACKNOWLEDGEMENT ON HER INVALUABLE SERVICE RENDERED AS CHAIR/FOCAL PERSON DURING THE BRIGADA ESKWELA KICK-BACK \r\n	admin	Recognitions	1
766972	2024-07-12	15:43:59.2547567	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3707\r\nOrganizationId: 0\r\nOrganizationName: ASCENDES ASIA INTERNATIONAL RESEARCH CLUB\r\n	admin	Organizations	1
766973	2024-07-12	15:43:59.2597086	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3707\r\nOrganizationId: 0\r\nOrganizationName: BOY SCOUT OF THE PHILIPPINES \r\n	admin	Organizations	1
766974	2024-07-12	15:43:59.2637087	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3707\r\nEmployeeTrainingId: 0\r\nFromDate: July 07, 2022\r\nHours: 16\r\nNatureOfParticipation: MANAGEMENT \r\nSponsoringAgency:  DEPARTMENT OF EDUCATION-SDO BATANGAS CITY\r\nStatus: \r\nToDate: July 07, 2022\r\nTrainingId: 16294\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766975	2024-07-12	15:43:59.2687086	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3707\r\nEmployeeTrainingId: 0\r\nFromDate: June 27, 2022\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency:  DEPARTMENT OF EDUCATION-SDO BATANGAS CITY\r\nStatus: \r\nToDate: June 28, 2022\r\nTrainingId: 16128\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766976	2024-07-12	15:43:59.2727086	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3707\r\nEmployeeTrainingId: 0\r\nFromDate: May 27, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency:  DEPARTMENT OF EDUCATION-SDO BATANGAS CITY\r\nStatus: \r\nToDate: May 27, 2022\r\nTrainingId: 15339\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766977	2024-07-12	15:43:59.2777085	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3707\r\nCharacterReferenceId: 0\r\nCompanyAddress: TULO, BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09088618532\r\nExtensionName: \r\nFirstName: SHERLY \r\nLastName: PEREZ\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766978	2024-07-12	15:43:59.2827085	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3707\r\nCharacterReferenceId: 0\r\nCompanyAddress: ALANGILAN, BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09165700579\r\nExtensionName: \r\nFirstName: EDELYN \r\nLastName: BRIONES \r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766979	2024-07-12	15:43:59.2877085	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3707\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ISIDRO, BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09959788178\r\nExtensionName: \r\nFirstName: REBECCA\r\nLastName: RIVERA \r\nMiddleName: E\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
766980	2024-07-12	15:43:59.2917086	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 516A\r\nAddress2: \r\nBarangay: TULO\r\nBasicInformationId: 3707\r\nBirthDate: September 24, 1989\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: caroline.claveria@deped.gov.ph/ caroline.claveria@yahoo.com\r\nExtensionName: \r\nFirstName: CAROLINE\r\nFullName: CAROLINE C. GAYETA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.45\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GAYETA\r\nMaidenName: \r\nMiddleName: CLAVERIA\r\nMobileNumber: 09088166537\r\nNationality: Filipino\r\nPermanentAddress1: 516A\r\nPermanentAddress2: \r\nPermanentBarangay: TULO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 516A\r\nAddress2: \r\nBarangay: TULO\r\nBasicInformationId: 3707\r\nBirthDate: September 24, 1989\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: caroline.claveria@deped.gov.ph/ caroline.claveria@yahoo.com\r\nExtensionName: \r\nFirstName: CAROLINE\r\nFullName: CAROLINE C. GAYETA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02004232292\r\nHDMF: 0449-2773-9008\r\nHeight: 1.45\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GAYETA\r\nMaidenName: \r\nMiddleName: CLAVERIA\r\nMobileNumber: 09088166537\r\nNationality: Filipino\r\nPermanentAddress1: 516A\r\nPermanentAddress2: \r\nPermanentBarangay: TULO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050258874-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-2235967-2\r\nStreetName: \r\nTIN: 294-094-192-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
766991	2024-07-12	15:53:05.8857114	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: HARMONIZATION OF EDUCATION SUPPORT SERVICES PROGRAMS AND PROJECTS IMPLEMENTATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766981	2024-07-12	15:43:59.2967087	<Undetected>	Update	BasicInformationId: 3707\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09084965912\r\nEmployeeRelativeId: 3688\r\nExtensionName: \r\nFirstName: IAN FLOYD\r\nFullName: IAN FLOYD MENDOZA GAYETA\r\nGender: Male\r\nLastName: GAYETA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: MECHANICAL ENGINEER\r\nRelationship: Husband\r\n	BasicInformationId: 3707\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09084965912\r\nEmployeeRelativeId: 3688\r\nExtensionName: \r\nFirstName: IAN FLOYD\r\nFullName: IAN FLOYD GAYETA\r\nGender: Male\r\nLastName: GAYETA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: MECHANICAL ENGINEER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
766982	2024-07-12	15:43:59.3017085	<Undetected>	Update	BasicInformationId: 3707\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3689\r\nExtensionName: \r\nFirstName: SONNY\r\nFullName: SONNY DE CASTRO CLAVERIA\r\nGender: Male\r\nLastName: CLAVERIA\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3707\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3689\r\nExtensionName: \r\nFirstName: SONNY\r\nFullName: SONNY CLAVERIA\r\nGender: Male\r\nLastName: CLAVERIA\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
766983	2024-07-12	15:43:59.3067087	<Undetected>	Update	BasicInformationId: 3707\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3690\r\nExtensionName: \r\nFirstName: ZOILA\r\nFullName: ZOILA MUNDIN ATIENZA\r\nGender: Female\r\nLastName: ATIENZA\r\nMaidenName: \r\nMiddleName: MUNDIN\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3707\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3690\r\nExtensionName: \r\nFirstName: ZOILA\r\nFullName: ZOILA ATIENZA\r\nGender: Female\r\nLastName: ATIENZA\r\nMaidenName: \r\nMiddleName: MUNDIN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
766984	2024-07-12	15:43:59.3107084	<Undetected>	Update	BasicInformationId: 3707\r\nBirthDate: December 29, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3691\r\nExtensionName: \r\nFirstName: XIAN CARL\r\nFullName: XIAN CARL C GAYETA\r\nGender: Male\r\nLastName: GAYETA\r\nMaidenName: \r\nMiddleName: C\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3707\r\nBirthDate: December 29, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3691\r\nExtensionName: \r\nFirstName: XIAN CARL\r\nFullName: XIAN CARL GAYETA\r\nGender: Male\r\nLastName: GAYETA\r\nMaidenName: \r\nMiddleName: C\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766985	2024-07-12	15:43:59.3157085	<Undetected>	Update	BasicInformationId: 3707\r\nBirthDate: July 13, 2019\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3692\r\nExtensionName: \r\nFirstName: AHLIAH CELINE\r\nFullName: AHLIAH CELINE C GAYETA\r\nGender: Female\r\nLastName: GAYETA\r\nMaidenName: \r\nMiddleName: C\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3707\r\nBirthDate: July 13, 2019\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3692\r\nExtensionName: \r\nFirstName: AHLIAH CELINE\r\nFullName: AHLIAH CELINE GAYETA\r\nGender: Female\r\nLastName: GAYETA\r\nMaidenName: \r\nMiddleName: C\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
766986	2024-07-12	15:43:59.3197084	<Undetected>	Update	BasicInformationId: 3707\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3504\r\n	BasicInformationId: 3707\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3504\r\n	admin	Questionnaires	1
766992	2024-07-12	15:55:50.5078061	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 1ST JOINT VIRTUAL CONVENTION FOR HEALTH PROFESSIONALS IN CALABARZON "RECHARGE: RENEWING PASSION AND COMPASSION AMONG HEALTH PROFESSIONALS"\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
766993	2024-07-12	15:57:35.4546434	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3705\r\nEmployeeTrainingId: 0\r\nFromDate: November 07, 2023\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: November 10, 2023\r\nTrainingId: 16295\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766994	2024-07-12	15:57:35.4606435	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3705\r\nEmployeeTrainingId: 0\r\nFromDate: November 16, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: November 17, 2023\r\nTrainingId: 16296\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766995	2024-07-12	15:57:35.4656435	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3705\r\nEmployeeTrainingId: 0\r\nFromDate: October 05, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: CITY HEALTH OFFICE\r\nStatus: \r\nToDate: October 06, 2023\r\nTrainingId: 16297\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766996	2024-07-12	15:57:35.4706435	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3705\r\nEmployeeTrainingId: 0\r\nFromDate: September 11, 2023\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: September 15, 2023\r\nTrainingId: 16298\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766997	2024-07-12	15:57:35.4756435	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3705\r\nEmployeeTrainingId: 0\r\nFromDate: August 01, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: August 01, 2023\r\nTrainingId: 15901\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766998	2024-07-12	15:57:35.4796434	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3705\r\nEmployeeTrainingId: 0\r\nFromDate: July 04, 2023\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 07, 2023\r\nTrainingId: 16299\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
766999	2024-07-12	15:57:35.4856434	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3705\r\nEmployeeTrainingId: 0\r\nFromDate: May 29, 2023\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: June 02, 2023\r\nTrainingId: 16300\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767000	2024-07-12	15:57:35.4906435	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3705\r\nEmployeeTrainingId: 0\r\nFromDate: May 23, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: May 23, 2023\r\nTrainingId: 16246\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767001	2024-07-12	15:57:35.4956437	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3705\r\nEmployeeTrainingId: 0\r\nFromDate: March 12, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: March 12, 2023\r\nTrainingId: 16301\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767002	2024-07-12	15:57:35.4996434	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3705\r\nEmployeeTrainingId: 0\r\nFromDate: April 11, 2023\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: April 14, 2023\r\nTrainingId: 16302\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767003	2024-07-12	15:57:35.5056435	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3705\r\nEmployeeTrainingId: 0\r\nFromDate: March 29, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: March 30, 2023\r\nTrainingId: 16303\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767004	2024-07-12	15:57:35.5106434	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3705\r\nEmployeeTrainingId: 0\r\nFromDate: April 20, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: April 20, 2023\r\nTrainingId: 15861\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767005	2024-07-12	15:57:35.5156434	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3705\r\nEmployeeTrainingId: 0\r\nFromDate: February 21, 2023\r\nHours: 6\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: February 21, 2023\r\nTrainingId: 16304\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767006	2024-07-12	15:57:35.5206435	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3705\r\nEmployeeTrainingId: 0\r\nFromDate: February 20, 2023\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: February 20, 2023\r\nTrainingId: 15114\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767007	2024-07-12	15:57:35.5256434	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3705\r\nEmployeeTrainingId: 0\r\nFromDate: August 10, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: August 12, 2022\r\nTrainingId: 16305\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767008	2024-07-12	15:57:35.5306436	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3705\r\nEmployeeTrainingId: 0\r\nFromDate: September 07, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: September 07, 2022\r\nTrainingId: 15174\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767009	2024-07-12	16:07:06.6353139	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL BASED FEEDING PROGRAM NATIONAL WORK CONFERENCE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
767010	2024-07-12	16:07:05.6895697	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: LAUNCHING OF THE ARALIN SA MADISKARTENG PANANALAPI OF RCBC DISKARTECH PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
767011	2024-07-12	16:08:18.3633488	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: VIRTUAL WORKSHOP ON SBFP INITIAL MILK SUPPLY MAPPING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
767012	2024-07-12	16:10:34.3936402	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3705\r\nEmployeeTrainingId: 0\r\nFromDate: June 30, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: June 30, 2022\r\nTrainingId: 15751\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767013	2024-07-12	16:10:34.3996405	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3705\r\nEmployeeTrainingId: 0\r\nFromDate: May 02, 2022\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: May 05, 2022\r\nTrainingId: 16306\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767014	2024-07-12	16:10:34.4046399	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3705\r\nEmployeeTrainingId: 0\r\nFromDate: March 18, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: March 18, 2022\r\nTrainingId: 16308\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767015	2024-07-12	16:10:34.4096398	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3705\r\nEmployeeTrainingId: 0\r\nFromDate: March 31, 2022\r\nHours: 5\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BOYSCOUT OF THE PHILIPPINES\r\nStatus: \r\nToDate: March 31, 2022\r\nTrainingId: 15220\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767016	2024-07-12	16:10:34.4156394	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3705\r\nEmployeeTrainingId: 0\r\nFromDate: March 04, 2022\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: March 07, 2022\r\nTrainingId: 15258\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767017	2024-07-12	16:11:21.9305925	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PSYCHOSOCIAL THERAPEUTIC ACTIVITIES AND TEAM- BUILDING FOR THE ASSOCIATION OF BARANGAY DRRM OFFICERS TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
767018	2024-07-12	16:14:05.2987023	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ENGLISH FOR MEDIA LITERACY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
767019	2024-07-12	16:16:31.6573897	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TESOL METHODOLOGY (K-12/ HE)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
767020	2024-07-12	16:16:56.9157890	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3705\r\nSkillId: 0\r\nSkillName: LEADERSHIP\r\n	admin	Skills	1
767021	2024-07-12	16:16:56.9247889	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3705\r\nOrganizationId: 0\r\nOrganizationName: DEPARTMENT OF EDUCATION NURSES ASSOCIATION\r\n	admin	Organizations	1
767022	2024-07-12	16:16:56.9297890	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3705\r\nOrganizationId: 0\r\nOrganizationName: PROVINCIAL MULTISECTIONAL ALLIANCE\r\n	admin	Organizations	1
767023	2024-07-12	16:16:56.9367895	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3705\r\nCharacterReferenceId: 0\r\nCompanyAddress: KUMINTANG ILAYA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09778046804\r\nExtensionName: \r\nFirstName: BELINDA\r\nLastName: SABELLANO\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767024	2024-07-12	16:16:56.9417891	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3705\r\nCharacterReferenceId: 0\r\nCompanyAddress: BAUAN BATANGAS\r\nCompanyName: \r\nContactNumber: 09393665149\r\nExtensionName: \r\nFirstName: MADONNA\r\nLastName: ABRUGENA\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767025	2024-07-12	16:16:56.9467889	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3705\r\nCharacterReferenceId: 0\r\nCompanyAddress: SOROSORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09778361949\r\nExtensionName: \r\nFirstName: REDELINE JOYCE\r\nLastName: CABATAY\r\nMiddleName: L\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767026	2024-07-12	16:16:56.9517889	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: VILLA JESUS SUBD.\r\nBarangay: BARANGAY 20\r\nBasicInformationId: 3705\r\nBirthDate: April 02, 1974\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marianne.medina001@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIANNE\r\nFullName: MARIANNE R. MEDINA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: RAYOS\r\nMobileNumber: 09237418686\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: VILLA JESUS SUBD.\r\nPermanentBarangay: BARANGAY 20\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ARIETTA ROAD II\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ARIETTA ROAD II\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: VILLA JESUS SUBD.\r\nBarangay: BARANGAY 20\r\nBasicInformationId: 3705\r\nBirthDate: April 02, 1974\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marianne.medina001@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIANNE\r\nFullName: MARIANNE R. MEDINA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: 1490-0091-8076\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: RAYOS\r\nMobileNumber: 09237418686\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: VILLA JESUS SUBD.\r\nPermanentBarangay: BARANGAY 20\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ARIETTA ROAD II\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000051803-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-0942067-6\r\nStreetName: ARIETTA ROAD II\r\nTIN: 194-224-461-0000\r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767027	2024-07-12	16:16:56.9567889	<Undetected>	Update	BasicInformationId: 3705\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3502\r\n	BasicInformationId: 3705\r\nQ34a: No\r\nQ34b: No\r\nQ35a: No\r\nQ35b: No\r\nQ36a: No\r\nQ37a: No\r\nQ38a: No\r\nQ38b: No\r\nQ39: No\r\nQ40a: No\r\nQ40b: No\r\nQ40c: No\r\nQuestionnaireId: 3502\r\n	admin	Questionnaires	1
767028	2024-07-12	16:18:39.3870658	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION ROLL OUT ON PHILIPPINE PROFESSIONAL STANDARD FOR TEACHERS (PPST) AND RESULT-BASED PERFORMANCE MANAGEMENT SYSTEM (RPMS) MANUAL FOR TEACHERS AND SCHOOL HEADS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
767029	2024-07-12	16:19:33.8129430	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3707\r\nEmployeeTrainingId: 0\r\nFromDate: May 26, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION- SDO BATANGAS CITY \r\nStatus: \r\nToDate: May 26, 2023\r\nTrainingId: 16307\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767030	2024-07-12	16:19:33.8189493	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3707\r\nEmployeeTrainingId: 0\r\nFromDate: May 04, 2023\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION-SDO BATANGAS CITY \r\nStatus: \r\nToDate: May 26, 2023\r\nTrainingId: 15703\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767031	2024-07-12	16:19:33.8239483	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3707\r\nEmployeeTrainingId: 0\r\nFromDate: April 07, 2022\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION- SDO BATANGAS CITY \r\nStatus: \r\nToDate: April 09, 2022\r\nTrainingId: 16309\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767032	2024-07-12	16:19:33.8289496	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3707\r\nEmployeeTrainingId: 0\r\nFromDate: March 31, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION-SDO BATANGAS CITY \r\nStatus: \r\nToDate: March 31, 2023\r\nTrainingId: 15220\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767033	2024-07-12	16:19:33.8329494	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3707\r\nEmployeeTrainingId: 0\r\nFromDate: October 21, 2019\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: US EMBASSY- PHILIPPINES\r\nStatus: \r\nToDate: February 25, 2020\r\nTrainingId: 16310\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767034	2024-07-12	16:19:33.8379490	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3707\r\nEmployeeTrainingId: 0\r\nFromDate: January 20, 2020\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: US EMBASSY-PHILIPPINES\r\nStatus: \r\nToDate: February 24, 2020\r\nTrainingId: 16311\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767035	2024-07-12	16:19:33.8429473	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3707\r\nEmployeeTrainingId: 0\r\nFromDate: July 20, 2018\r\nHours: 16\r\nNatureOfParticipation: MANAGEMENT \r\nSponsoringAgency: DEPARTMENT OF EDUCATION- SDO BATANGAS CITY \r\nStatus: \r\nToDate: July 21, 2018\r\nTrainingId: 16312\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767036	2024-07-12	16:19:33.8479473	<Undetected>	Update	BasicInformationId: 3707\r\nEmployeeTrainingId: 9244\r\nFromDate: July 07, 2022\r\nHours: 16.00\r\nNatureOfParticipation: MANAGEMENT \r\nSponsoringAgency:  DEPARTMENT OF EDUCATION-SDO BATANGAS CITY\r\nStatus: \r\nToDate: July 07, 2022\r\nTrainingId: 16294\r\nTrainingPerformanceRate: 0\r\n	BasicInformationId: 3707\r\nEmployeeTrainingId: 9244\r\nFromDate: July 07, 2023\r\nHours: 16\r\nNatureOfParticipation: MANAGEMENT \r\nSponsoringAgency:  DEPARTMENT OF EDUCATION-SDO BATANGAS CITY\r\nStatus: \r\nToDate: July 07, 2023\r\nTrainingId: 16294\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767037	2024-07-12	16:19:33.8519462	<Undetected>	Update	BasicInformationId: 3707\r\nEmployeeTrainingId: 9245\r\nFromDate: June 27, 2022\r\nHours: 16.00\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency:  DEPARTMENT OF EDUCATION-SDO BATANGAS CITY\r\nStatus: \r\nToDate: June 28, 2022\r\nTrainingId: 16128\r\nTrainingPerformanceRate: 0\r\n	BasicInformationId: 3707\r\nEmployeeTrainingId: 9245\r\nFromDate: June 27, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency:  DEPARTMENT OF EDUCATION-SDO BATANGAS CITY\r\nStatus: \r\nToDate: June 28, 2023\r\nTrainingId: 16128\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767038	2024-07-12	16:19:33.8569464	<Undetected>	Update	BasicInformationId: 3707\r\nEmployeeTrainingId: 9246\r\nFromDate: May 27, 2022\r\nHours: 8.00\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency:  DEPARTMENT OF EDUCATION-SDO BATANGAS CITY\r\nStatus: \r\nToDate: May 27, 2022\r\nTrainingId: 15339\r\nTrainingPerformanceRate: 0\r\n	BasicInformationId: 3707\r\nEmployeeTrainingId: 9246\r\nFromDate: May 27, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency:  DEPARTMENT OF EDUCATION-SDO BATANGAS CITY\r\nStatus: \r\nToDate: May 27, 2023\r\nTrainingId: 15339\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767039	2024-07-19	09:54:51.3851075	<Undetected>	Update	BasicInformationId: 3602\r\nBirthDate: October 15, 2020\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3261\r\nExtensionName: \r\nFirstName: CHANCE GABRIEL\r\nFullName: CHANCE GABRIEL B BREGONIA\r\nGender: Male\r\nLastName: BREGONIA\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3602\r\nBirthDate: October 15, 2020\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3261\r\nExtensionName: \r\nFirstName: CHANCE GABRIEL\r\nFullName: CHANCE GABRIEL BREGONIA\r\nGender: Male\r\nLastName: BREGONIA\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767040	2024-07-19	09:54:51.3986835	<Undetected>	Update	BasicInformationId: 3602\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3265\r\nExtensionName: \r\nFirstName: LOLITA\r\nFullName: LOLITA VILLA-REAL GUILLO\r\nGender: Female\r\nLastName: GUILLO\r\nMaidenName: \r\nMiddleName: VILLA-REAL\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3602\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3265\r\nExtensionName: \r\nFirstName: LOLITA\r\nFullName: LOLITA GUILLO\r\nGender: Female\r\nLastName: GUILLO\r\nMaidenName: \r\nMiddleName: VILLA-REAL\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
767342	2025-03-07	08:36:24.1577552	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3713\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
767041	2024-07-19	09:54:51.4036846	<Undetected>	Delete	BasicInformationId: 3602\r\nCompanyInstitution: COPPER TIP SECURITY AND INVESTIGATION AGENCY INC.\r\nExperienceId: 9979\r\nFromDate: January 15, 2019\r\nIsGovernmentService: False\r\nMonthlySalary: 12,000.00\r\nPositionHeld: COMPANY DRIVER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: December 31, 2020\r\n	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	admin	Experiences	1
767042	2024-07-19	09:54:51.4076839	<Undetected>	Delete	BasicInformationId: 3602\r\nCompanyInstitution: LBC BUILDER AND GENERAL SERVICES\r\nExperienceId: 9980\r\nFromDate: February 06, 2016\r\nIsGovernmentService: False\r\nMonthlySalary: 9,200.00\r\nPositionHeld: INSULATOR / THINSMITH\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: March 05, 2018\r\n	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	admin	Experiences	1
767043	2024-07-19	09:54:51.4136845	<Undetected>	Delete	BasicInformationId: 3602\r\nCompanyInstitution: ASIAI SECURITY AGENCY BATANGAS CITY\r\nExperienceId: 9981\r\nFromDate: September 14, 2013\r\nIsGovernmentService: False\r\nMonthlySalary: 8,200.00\r\nPositionHeld: OPERATION ASSISTANT / DRIVER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: January 25, 2016\r\n	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	admin	Experiences	1
767044	2024-07-22	12:10:05.8675307	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK 10, LOT 16\r\nAddress2: TIERRA VERDE\r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 0\r\nBirthDate: March 25, 1981\r\nBirthPlace: DAO, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: cruzatjesusa25@gmail.com\r\nExtensionName: \r\nFirstName: JESUSA\r\nFullName: JESUSA A. CRUZAT\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CRUZAT\r\nMaidenName: \r\nMiddleName: AREVALO\r\nMobileNumber: 09475856631\r\nNationality: Filipino\r\nPermanentAddress1: BLK 10, LOT 16\r\nPermanentAddress2: TIERRA VERDE\r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SAINT LUKE ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SAINT LUKE ST.\r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767045	2024-07-22	12:10:06.2442562	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: 2nd HONOR\r\nBasicInformationId: 3708\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1988\r\nDateTo: 1994\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS CITY SOUTH ELEMENTARY SCHOOL\r\nYearGraduated: 1994\r\n	admin	EducationalBackgrounds	1
767046	2024-07-22	12:10:06.2442562	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3708\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 1998\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 1998\r\n	admin	EducationalBackgrounds	1
767047	2024-07-22	12:10:06.2452546	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3708\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CHRISTOPHER\r\nFullName: CHRISTOPHER MARASIGAN CRUZAT\r\nGender: Male\r\nLastName: CRUZAT\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
767048	2024-07-22	12:10:06.2452546	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3708\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LUCIO\r\nFullName: LUCIO BAES AREVALO\r\nGender: Male\r\nLastName: AREVALO\r\nMaidenName: \r\nMiddleName: BAES\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
767049	2024-07-22	12:10:06.2452546	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3708\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CHRISTOPHER\r\nFullName: CHRISTOPHER MARASIGAN CRUZAT\r\nGender: Male\r\nLastName: CRUZAT\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
767050	2024-07-22	12:10:06.2452546	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3708\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EUFROSINA\r\nFullName: EUFROSINA CANTOS AGUADO\r\nGender: Male\r\nLastName: AGUADO\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
767051	2024-07-22	12:10:06.2462568	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3708\r\nCompanyInstitution: COLGATE-PALMOLIVE, INC.\r\nExperienceId: 0\r\nFromDate: April 01, 2004\r\nIsGovernmentService: False\r\nMonthlySalary: 0.00\r\nPositionHeld: SALES REPRESENTATIVE\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: April 30, 2004\r\n	admin	Experiences	1
767052	2024-07-22	12:10:06.2462568	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3708\r\nCompanyInstitution: OSTREA DENTAL CLINIC\r\nExperienceId: 0\r\nFromDate: May 01, 2004\r\nIsGovernmentService: False\r\nMonthlySalary: 0.00\r\nPositionHeld: DENTAL ASSISTANT\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: May 31, 2004\r\n	admin	Experiences	1
767053	2024-07-22	12:10:06.2462568	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3708\r\nCompanyInstitution: ERCIA DENTAL CLINIC\r\nExperienceId: 0\r\nFromDate: February 01, 2005\r\nIsGovernmentService: False\r\nMonthlySalary: 0.00\r\nPositionHeld: DENTAL ASSISTANT\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: February 28, 2005\r\n	admin	Experiences	1
767054	2024-07-22	12:10:06.2472557	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3708\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
767055	2024-07-22	14:22:05.6403696	<Undetected>	Update	BasicInformationId: 3708\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3693\r\nExtensionName: \r\nFirstName: CHRISTOPHER\r\nFullName: CHRISTOPHER MARASIGAN CRUZAT\r\nGender: Male\r\nLastName: CRUZAT\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3708\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3693\r\nExtensionName: \r\nFirstName: CHRISTOPHER\r\nFullName: CHRISTOPHER CRUZAT\r\nGender: Male\r\nLastName: CRUZAT\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
767056	2024-07-22	14:22:05.6523770	<Undetected>	Update	BasicInformationId: 3708\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3694\r\nExtensionName: \r\nFirstName: LUCIO\r\nFullName: LUCIO BAES AREVALO\r\nGender: Male\r\nLastName: AREVALO\r\nMaidenName: \r\nMiddleName: BAES\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3708\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3694\r\nExtensionName: \r\nFirstName: LUCIO\r\nFullName: LUCIO AREVALO\r\nGender: Male\r\nLastName: AREVALO\r\nMaidenName: \r\nMiddleName: BAES\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
767057	2024-07-22	14:22:05.6553767	<Undetected>	Update	BasicInformationId: 3708\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3696\r\nExtensionName: \r\nFirstName: EUFROSINA\r\nFullName: EUFROSINA CANTOS AGUADO\r\nGender: Male\r\nLastName: AGUADO\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3708\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3696\r\nExtensionName: \r\nFirstName: EUFROSINA\r\nFullName: EUFROSINA AGUADO\r\nGender: Male\r\nLastName: AGUADO\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
767058	2024-07-22	14:22:05.6608877	<Undetected>	Update	BasicInformationId: 3708\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3505\r\n	BasicInformationId: 3708\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3505\r\n	admin	Questionnaires	1
767059	2024-07-22	14:22:05.6708887	<Undetected>	Delete	BasicInformationId: 3708\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3695\r\nExtensionName: \r\nFirstName: CHRISTOPHER\r\nFullName: CHRISTOPHER MARASIGAN CRUZAT\r\nGender: Male\r\nLastName: CRUZAT\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	admin	EmployeeRelatives	1
767060	2024-07-22	15:45:08.0388900	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO FERRY\r\nBarangay: KUMINTANG IBABA\r\nBasicInformationId: 3660\r\nBirthDate: November 02, 1967\r\nBirthPlace: \r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: bekkasgabriel@yahoo.com\r\nExtensionName: \r\nFirstName: REBECCA\r\nFullName: REBECCA S. GARIEL\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 67110201254\r\nHDMF: \r\nHeight: 1.61\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GARIEL\r\nMaidenName: \r\nMiddleName: SALVACION\r\nMobileNumber: 06194342121\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO FERRY\r\nPermanentBarangay: KUMINTANG IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000010293-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 68\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO FERRY\r\nBarangay: KUMINTANG IBABA\r\nBasicInformationId: 3660\r\nBirthDate: November 02, 1967\r\nBirthPlace: \r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: bekkasgabriel@yahoo.com\r\nExtensionName: \r\nFirstName: REBECCA\r\nFullName: REBECCA S. GABRIEL\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 67110201254\r\nHDMF: \r\nHeight: 1.61\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GABRIEL\r\nMaidenName: \r\nMiddleName: SALVACION\r\nMobileNumber: 06194342121\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO FERRY\r\nPermanentBarangay: KUMINTANG IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000010293-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 68\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767061	2024-07-22	15:45:08.0438916	<Undetected>	Update	BasicInformationId: 3660\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3481\r\nExtensionName: \r\nFirstName: ARTURO\r\nFullName: ARTURO DE GUZMAN SALVACION\r\nGender: Male\r\nLastName: SALVACION\r\nMaidenName: \r\nMiddleName: DE GUZMAN\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3660\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3481\r\nExtensionName: \r\nFirstName: ARTURO\r\nFullName: ARTURO SALVACION\r\nGender: Male\r\nLastName: SALVACION\r\nMaidenName: \r\nMiddleName: DE GUZMAN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
767165	2025-03-06	13:58:36.4707405	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3709\r\nEmployeeTrainingId: 0\r\nFromDate: December 02, 2024\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, SDO BATANGAS CITY\r\nStatus: \r\nToDate: December 04, 2024\r\nTrainingId: 16315\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767062	2024-07-22	15:45:08.0544026	<Undetected>	Update	BasicInformationId: 3660\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3482\r\nExtensionName: \r\nFirstName: IRMA\r\nFullName: IRMA MANZO SALVACION\r\nGender: Female\r\nLastName: SALVACION\r\nMaidenName: \r\nMiddleName: MANZO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3660\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3482\r\nExtensionName: \r\nFirstName: IRMA\r\nFullName: IRMA SALVACION\r\nGender: Female\r\nLastName: SALVACION\r\nMaidenName: \r\nMiddleName: MANZO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
767063	2024-07-22	15:45:08.0584033	<Undetected>	Update	BasicInformationId: 3660\r\nBirthDate: January 18, 1992\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3483\r\nExtensionName: \r\nFirstName: JOANE RUSCHEL\r\nFullName: JOANE RUSCHEL S GABRIEL\r\nGender: Female\r\nLastName: GABRIEL\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3660\r\nBirthDate: January 18, 1992\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3483\r\nExtensionName: \r\nFirstName: JOANE RUSCHEL\r\nFullName: JOANE RUSCHEL GABRIEL\r\nGender: Female\r\nLastName: GABRIEL\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767064	2024-07-22	15:45:08.0654040	<Undetected>	Update	BasicInformationId: 3660\r\nBirthDate: July 20, 1993\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3484\r\nExtensionName: \r\nFirstName: JAYNE ROXANE\r\nFullName: JAYNE ROXANE S GABRIEL\r\nGender: Female\r\nLastName: GABRIEL\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3660\r\nBirthDate: July 20, 1993\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3484\r\nExtensionName: \r\nFirstName: JAYNE ROXANE\r\nFullName: JAYNE ROXANE GABRIEL\r\nGender: Female\r\nLastName: GABRIEL\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767065	2024-07-22	15:45:08.0694038	<Undetected>	Update	BasicInformationId: 3660\r\nBirthDate: October 22, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3485\r\nExtensionName: \r\nFirstName: JOHN RAFAEL\r\nFullName: JOHN RAFAEL S GABRIEL\r\nGender: Male\r\nLastName: GABRIEL\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3660\r\nBirthDate: October 22, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3485\r\nExtensionName: \r\nFirstName: JOHN RAFAEL\r\nFullName: JOHN RAFAEL GABRIEL\r\nGender: Male\r\nLastName: GABRIEL\r\nMaidenName: \r\nMiddleName: S\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767066	2025-03-05	10:52:17.5578381	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 0276\r\nAddress2: BULIHAN\r\nBarangay: TABANGAO AMBULONG\r\nBasicInformationId: 0\r\nBirthDate: December 06, 1976\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marites.tarcelo@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARITES\r\nFullName: MARITES DC. TARCELO\r\nGender: Female\r\nGovernmentIdIssuedDate: December 26, 2024\r\nGovernmentIdNumber: 0498801\r\nGovernmentIdPlaceIssued: STA.MESA MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: TARCELO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nMobileNumber: 09151454687\r\nNationality: Filipino\r\nPermanentAddress1: 0276\r\nPermanentAddress2: BULIHAN\r\nPermanentBarangay: TABANGAO AMBULONG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 63\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767067	2025-03-05	10:52:17.9635492	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: FIRST HONORABLE MENTION\r\nBasicInformationId: 3709\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1984\r\nDateTo: 1990\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: TABANGAO ELEMENTARY SCHOOL\r\nYearGraduated: 1990\r\n	admin	EducationalBackgrounds	1
767068	2025-03-05	10:52:17.9645459	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: PESFA SCHOLAR\r\nBasicInformationId: 3709\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 1998\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 1998\r\n	admin	EducationalBackgrounds	1
767069	2025-03-05	10:52:17.9645459	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3709\r\nBirthDate: January 01, 0001\r\nCivilStatus: Widow\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALVIN\r\nFullName: ALVIN CANTOS TARCELO\r\nGender: Male\r\nLastName: TARCELO\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: OFW (SCAFFOLDING INSPECTOR)\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
767070	2025-03-05	10:52:17.9645459	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3709\r\nBirthDate: August 24, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALTHEA\r\nFullName: ALTHEA DE CASTRO TARCELO\r\nGender: Female\r\nLastName: TARCELO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767071	2025-03-05	10:52:17.9655425	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3709\r\nDateOfExamination: August 01, 1998\r\nDateOfRelease: December 26, 2024\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 01, 1998\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0498801\r\nPlaceOfExamination: STA. MESA MANILA\r\nRating: 78.8\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
767169	2025-03-06	14:06:56.6654275	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3709\r\nSkillId: 0\r\nSkillName: WRITING ESSAYS, POEMS ETC.\r\n	admin	Skills	1
767072	2025-03-05	10:52:17.9655425	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3709\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 70,013.00\r\nPositionHeld: PRINCIPAL III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 21-1\r\nStatus: Permanent\r\nToDate: March 05, 2025\r\n	admin	Experiences	1
767073	2025-03-05	10:52:17.9655425	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3709\r\nSkillId: 0\r\nSkillName: COOKING \r\n	admin	Skills	1
767074	2025-03-05	10:52:17.9665393	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3709\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
767075	2025-03-05	10:55:03.5846686	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 0276\r\nAddress2: BULIHAN\r\nBarangay: TABANGAO AMBULONG\r\nBasicInformationId: 3709\r\nBirthDate: December 06, 1976\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marites.tarcelo@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARITES\r\nFullName: MARITES DC. TARCELO\r\nGender: Female\r\nGovernmentIdIssuedDate: December 26, 2024\r\nGovernmentIdNumber: 0498801\r\nGovernmentIdPlaceIssued: STA.MESA MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: TARCELO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nMobileNumber: 09151454687\r\nNationality: Filipino\r\nPermanentAddress1: 0276\r\nPermanentAddress2: BULIHAN\r\nPermanentBarangay: TABANGAO AMBULONG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 63\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 0276\r\nAddress2: BULIHAN\r\nBarangay: TABANGAO AMBULONG\r\nBasicInformationId: 3709\r\nBirthDate: December 06, 1976\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marites.tarcelo@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARITES\r\nFullName: MARITES DC. TARCELO\r\nGender: Female\r\nGovernmentIdIssuedDate: December 26, 2024\r\nGovernmentIdNumber: 0498801\r\nGovernmentIdPlaceIssued: STA.MESA MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: TARCELO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nMobileNumber: 09151454687\r\nNationality: Filipino\r\nPermanentAddress1: 0276\r\nPermanentAddress2: BULIHAN\r\nPermanentBarangay: TABANGAO AMBULONG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 63\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767076	2025-03-05	10:55:03.5946353	<Undetected>	Update	BasicInformationId: 3709\r\nBirthDate: January 01, 0001\r\nCivilStatus: Widow\r\nContactNumber: \r\nEmployeeRelativeId: 3697\r\nExtensionName: \r\nFirstName: ALVIN\r\nFullName: ALVIN CANTOS TARCELO\r\nGender: Male\r\nLastName: TARCELO\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: OFW (SCAFFOLDING INSPECTOR)\r\nRelationship: Husband\r\n	BasicInformationId: 3709\r\nBirthDate: January 01, 0001\r\nCivilStatus: Widow\r\nContactNumber: \r\nEmployeeRelativeId: 3697\r\nExtensionName: \r\nFirstName: ALVIN\r\nFullName: ALVIN TARCELO\r\nGender: Male\r\nLastName: TARCELO\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: OFW (SCAFFOLDING INSPECTOR)\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
767077	2025-03-05	10:55:03.6046018	<Undetected>	Update	BasicInformationId: 3709\r\nBirthDate: August 24, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3698\r\nExtensionName: \r\nFirstName: ALTHEA\r\nFullName: ALTHEA DE CASTRO TARCELO\r\nGender: Female\r\nLastName: TARCELO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3709\r\nBirthDate: August 24, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3698\r\nExtensionName: \r\nFirstName: ALTHEA\r\nFullName: ALTHEA TARCELO\r\nGender: Female\r\nLastName: TARCELO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767078	2025-03-05	10:55:03.6085884	<Undetected>	Update	BasicInformationId: 3709\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3506\r\n	BasicInformationId: 3709\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3506\r\n	admin	Questionnaires	1
767079	2025-03-06	10:53:20.7315218	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3709\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 67,005.00\r\nPositionHeld: PRINCIPAL III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 21-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
767080	2025-03-06	10:55:58.1814736	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3709\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 63,997.00\r\nPositionHeld: PRINCIPALL III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 21-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
767081	2025-03-06	10:57:25.5941622	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3709\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 57,347.00\r\nPositionHeld: PRINCIPAL II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-1\r\nStatus: Permanent\r\nToDate: July 31, 2023\r\n	admin	Experiences	1
767082	2025-03-06	11:01:42.3199630	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3709\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 55,799.00\r\nPositionHeld: PRINCIPAL II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
767170	2025-03-06	14:06:56.6738131	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3709\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
767083	2025-03-06	11:01:42.3269394	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3709\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 54,251.00\r\nPositionHeld: PRINCIPAL II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
767084	2025-03-06	11:05:22.4547242	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO SUPREME\r\nBarangay: STO. NINO\r\nBasicInformationId: 0\r\nBirthDate: March 07, 1978\r\nBirthPlace: CULASI, ANTIQUE\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: analyn.dinglasan@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANALYN\r\nFullName: ANALYN A. DINGLASAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: ALORRO\r\nMobileNumber: 09053647110\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 53\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767085	2025-03-06	11:05:22.6215957	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3710\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1985\r\nDateTo: 1991\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAN LUIS-CONDES ELEMENTARY SCHOOL\r\nYearGraduated: 1991\r\n	admin	EducationalBackgrounds	1
767086	2025-03-06	11:05:22.6215957	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3710\r\nCourse: \r\nCourseId: 1303\r\nCourseOrMajor: \r\nDateFrom: 1995\r\nDateTo: 1999\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: THE NATION TEACHERS COLLEGE\r\nYearGraduated: 1999\r\n	admin	EducationalBackgrounds	1
767087	2025-03-06	11:05:22.6215957	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3710\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2018\r\nDateTo: 2020\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: ELEMENTARY EDUCATION\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2020\r\n	admin	EducationalBackgrounds	1
767088	2025-03-06	11:05:22.6225956	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3710\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09165148021\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PASENCIO\r\nFullName: PASENCIO EBORA DINGLASAN\r\nGender: Male\r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: DRIVER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
767089	2025-03-06	11:05:22.6225956	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3710\r\nBirthDate: September 29, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EJAY\r\nFullName: EJAY ALORRO DINGLASAN\r\nGender: Male\r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: ALORRO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767090	2025-03-06	11:05:22.6235955	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3710\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
767091	2025-03-06	11:09:35.4510124	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3710\r\nBirthDate: September 19, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ELIJAH\r\nFullName: ELIJAH ALORRO DINGLASAN\r\nGender: Male\r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: ALORRO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767092	2025-03-06	11:09:35.4560124	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3710\r\nBirthDate: November 28, 2020\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SOPHIA MARIE\r\nFullName: SOPHIA MARIE ALORRO DINGLASAN\r\nGender: Male\r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: ALORRO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767101	2025-03-06	11:11:29.0879061	<Undetected>	Update	BasicInformationId: 3710\r\nBirthDate: September 19, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3701\r\nExtensionName: \r\nFirstName: ELIJAH\r\nFullName: ELIJAH ALORRO DINGLASAN\r\nGender: Male\r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: ALORRO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3710\r\nBirthDate: September 19, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3701\r\nExtensionName: \r\nFirstName: ELIJAH\r\nFullName: ELIJAH DINGLASAN\r\nGender: Male\r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: ALORRO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767093	2025-03-06	11:09:35.4610126	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO SUPREME\r\nBarangay: STO. NINO\r\nBasicInformationId: 3710\r\nBirthDate: March 07, 1978\r\nBirthPlace: CULASI, ANTIQUE\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: analyn.dinglasan@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANALYN\r\nFullName: ANALYN A. DINGLASAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: ALORRO\r\nMobileNumber: 09053647110\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 53\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO SUPREME\r\nBarangay: STO. NINO\r\nBasicInformationId: 3710\r\nBirthDate: March 07, 1978\r\nBirthPlace: CULASI, ANTIQUE\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: analyn.dinglasan@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANALYN\r\nFullName: ANALYN A. DINGLASAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: ALORRO\r\nMobileNumber: 09053647110\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO SUPREME\r\nPermanentBarangay: STO. NINO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 53\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767094	2025-03-06	11:09:35.4710124	<Undetected>	Update	BasicInformationId: 3710\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3507\r\n	BasicInformationId: 3710\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3507\r\n	admin	Questionnaires	1
767095	2025-03-06	11:11:19.0841426	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3709\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 48,313.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: June 30, 2021\r\n	admin	Experiences	1
767096	2025-03-06	11:11:29.0409050	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3710\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1991\r\nDateTo: 1995\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: NORTHERN ANTIQUE VOCATIONAL SCHOOL\r\nYearGraduated: 1995\r\n	admin	EducationalBackgrounds	1
767097	2025-03-06	11:11:29.0559056	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO SUPREME\r\nBarangay: STO. NINO\r\nBasicInformationId: 3710\r\nBirthDate: March 07, 1978\r\nBirthPlace: CULASI, ANTIQUE\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: analyn.dinglasan@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANALYN\r\nFullName: ANALYN A. DINGLASAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: ALORRO\r\nMobileNumber: 09053647110\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO SUPREME\r\nPermanentBarangay: STO. NINO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 53\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO SUPREME\r\nBarangay: STO. NINO\r\nBasicInformationId: 3710\r\nBirthDate: March 07, 1978\r\nBirthPlace: CULASI, ANTIQUE\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: analyn.dinglasan@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANALYN\r\nFullName: ANALYN A. DINGLASAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: ALORRO\r\nMobileNumber: 09053647110\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO SUPREME\r\nPermanentBarangay: STO. NINO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 53\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767098	2025-03-06	11:11:29.0619046	<Undetected>	Update	Awards: \r\nBasicInformationId: 3710\r\nCourse: \r\nCourseId: 1303\r\nCourseOrMajor: \r\nDateFrom: 1995\r\nDateTo: 1999\r\nEducationalAttainment: \r\nEducationalBackgroundId: 13919\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: THE NATION TEACHERS COLLEGE\r\nYearGraduated: 1999\r\n	Awards: \r\nBasicInformationId: 3710\r\nCourse: \r\nCourseId: 1303\r\nCourseOrMajor: \r\nDateFrom: 1995\r\nDateTo: 1999\r\nEducationalAttainment: \r\nEducationalBackgroundId: 13919\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: THE NATIONAL TEACHERS COLLEGE\r\nYearGraduated: 1999\r\n	admin	EducationalBackgrounds	1
767099	2025-03-06	11:11:29.0739045	<Undetected>	Update	BasicInformationId: 3710\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09165148021\r\nEmployeeRelativeId: 3699\r\nExtensionName: \r\nFirstName: PASENCIO\r\nFullName: PASENCIO EBORA DINGLASAN\r\nGender: Male\r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: DRIVER\r\nRelationship: Husband\r\n	BasicInformationId: 3710\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09165148021\r\nEmployeeRelativeId: 3699\r\nExtensionName: \r\nFirstName: PASENCIO\r\nFullName: PASENCIO DINGLASAN\r\nGender: Male\r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: DRIVER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
767100	2025-03-06	11:11:29.0809046	<Undetected>	Update	BasicInformationId: 3710\r\nBirthDate: September 29, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3700\r\nExtensionName: \r\nFirstName: EJAY\r\nFullName: EJAY ALORRO DINGLASAN\r\nGender: Male\r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: ALORRO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3710\r\nBirthDate: September 29, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3700\r\nExtensionName: \r\nFirstName: EJAY\r\nFullName: EJAY DINGLASAN\r\nGender: Male\r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: ALORRO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767171	2025-03-06	14:06:56.6788525	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3709\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
767172	2025-03-06	14:06:56.6838690	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3709\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
767102	2025-03-06	11:11:29.0959040	<Undetected>	Update	BasicInformationId: 3710\r\nBirthDate: November 28, 2020\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3702\r\nExtensionName: \r\nFirstName: SOPHIA MARIE\r\nFullName: SOPHIA MARIE ALORRO DINGLASAN\r\nGender: Male\r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: ALORRO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3710\r\nBirthDate: November 28, 2020\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3702\r\nExtensionName: \r\nFirstName: SOPHIA MARIE\r\nFullName: SOPHIA MARIE DINGLASAN\r\nGender: Male\r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: ALORRO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767105	2025-03-06	11:18:19.5608233	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3710\r\nDateOfExamination: August 08, 1999\r\nDateOfRelease: November 15, 1999\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 08, 1999\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0612339\r\nPlaceOfExamination: SAMPALOC, MANILA\r\nRating: 80\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
767109	2025-03-06	11:25:20.0636896	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,733.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
767110	2025-03-06	11:30:37.5066911	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: April 10, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 33,183.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
767111	2025-03-06	11:30:37.5146912	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: March 10, 2024\r\n	admin	Experiences	1
767112	2025-03-06	11:30:37.5196912	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
767117	2025-03-06	11:35:01.8186242	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,798.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
767118	2025-03-06	11:35:01.8306240	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: April 10, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 28,276.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
767119	2025-03-06	11:35:01.8506241	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 24,450.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: March 10, 2021\r\n	admin	Experiences	1
767120	2025-03-06	11:35:01.8587688	<Undetected>	Update	BasicInformationId: 3710\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11377\r\nFromDate: April 10, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 33,183.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11377\r\nFromDate: April 10, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 33,183.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
767121	2025-03-06	11:38:43.8737178	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,889.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
767173	2025-03-06	14:06:56.6966692	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3709\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
767103	2025-03-06	11:13:56.6586954	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3709\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 46,791.00\r\nPositionHeld: PRINCIPAL I W/ SALARY ADJUSTMENT\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
767104	2025-03-06	11:16:11.4585176	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3709\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 45,269.00\r\nPositionHeld: PRINCIPAL I W/ SALARY ADJUSTMENT\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
767106	2025-03-06	11:18:56.0820102	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3709\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 02, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 42,099.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
767107	2025-03-06	11:23:35.7392049	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3709\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 24,799.00\r\nPositionHeld: TEACHER III W/ SALARY ADJ.\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: July 01, 2018\r\n	admin	Experiences	1
767108	2025-03-06	11:24:40.1794590	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3709\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 23,780.00\r\nPositionHeld: TEACHER III W/ SALARY ADJ.\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
767113	2025-03-06	11:31:00.1550155	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3709\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 22,804.00\r\nPositionHeld: TEACHER III W/ SALARY ADJ.\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
767114	2025-03-06	11:31:00.1599989	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3709\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 16, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 21,867.00\r\nPositionHeld: TEACHER III W/ STEP\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
767115	2025-03-06	11:31:00.1669755	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3709\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 17, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 21,650.00\r\nPositionHeld: TEACHER III W/ STEP\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: June 15, 2015\r\n	admin	Experiences	1
767116	2025-03-06	11:31:00.1719588	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3709\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 19,658.00\r\nPositionHeld: TEACHER III W/ SALARY ADJ.\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
767126	2025-03-06	11:41:45.7450422	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3709\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 19,658.00\r\nPositionHeld: TEACHER III W/ SALARY ADJ.\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
767127	2025-03-06	11:41:45.7500256	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3709\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 17,880.00\r\nPositionHeld: TEACHER III W/ SALARY ADJ.\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
767128	2025-03-06	11:41:45.7550856	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3709\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 16,101.00\r\nPositionHeld: TEACHER III W/ SALARY ADJ.\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
767122	2025-03-06	11:38:43.8837179	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 07, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,327.00\r\nPositionHeld: TEACGER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
767123	2025-03-06	11:41:40.3014782	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,038.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: June 30, 2019\r\n	admin	Experiences	1
767124	2025-03-06	11:41:40.3174783	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,437.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
767125	2025-03-06	11:41:40.3243910	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,853.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
767129	2025-03-06	11:41:45.7590723	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3709\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 16, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 13,512.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
767130	2025-03-06	11:41:45.7640557	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3709\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,748.00\r\nPositionHeld: TEACHER II W/ SALARY ADJ.\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 15, 2009\r\n	admin	Experiences	1
767131	2025-03-06	11:41:45.7680423	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3709\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 15, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 11,589.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
767132	2025-03-06	11:41:45.7730255	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3709\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 11,207.00\r\nPositionHeld: TEACHER I W/ SALARY ADJ.\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-2\r\nStatus: Permanent\r\nToDate: November 14, 2007\r\n	admin	Experiences	1
767133	2025-03-06	11:41:45.7780088	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3709\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 10,188.00\r\nPositionHeld: TEACHER I W/ STEP\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-2\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
767134	2025-03-06	11:41:45.7829920	<Undetected>	Update	BasicInformationId: 3709\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11383\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 19,658.00\r\nPositionHeld: TEACHER III W/ SALARY ADJ.\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	BasicInformationId: 3709\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11383\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 21,436.00\r\nPositionHeld: TEACHER III W/ SALARY ADJ.\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: June 16, 2012\r\n	admin	Experiences	1
767135	2025-03-06	11:46:59.9332997	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3709\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,748.00\r\nPositionHeld: TEACHER II W/ SALARY ADJ.\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 15, 2009\r\n	admin	Experiences	1
767136	2025-03-06	11:46:59.9402751	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3709\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 15, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 11,589.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
767137	2025-03-06	11:46:59.9452597	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3709\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 11,207.00\r\nPositionHeld: TEACHER I W/ SALARY ADJ.\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-2\r\nStatus: Permanent\r\nToDate: November 14, 2007\r\n	admin	Experiences	1
767138	2025-03-06	11:46:59.9502431	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3709\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 10,188.00\r\nPositionHeld: TEACHER I W/ STEP\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-2\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
767139	2025-03-06	11:46:59.9542297	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3709\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 04, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 2004\r\n	admin	Experiences	1
767164	2025-03-06	13:58:36.4667283	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3709\r\nEmployeeTrainingId: 0\r\nFromDate: November 04, 2024\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, SDO BATANGAS CITY\r\nStatus: \r\nToDate: November 08, 2024\r\nTrainingId: 16314\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767140	2025-03-06	13:25:42.9857050	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 07, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,286.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
767141	2025-03-06	13:25:42.9906883	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2016\r\n	admin	Experiences	1
767142	2025-03-06	13:27:20.6842631	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 07, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
767143	2025-03-06	13:27:20.6892464	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 02, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 21,436.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: June 30, 2013\r\n	admin	Experiences	1
767144	2025-03-06	13:28:08.0064659	<Undetected>	Update	BasicInformationId: 3710\r\nCompanyInstitution: DEPARMENT OF EDUCATION\r\nExperienceId: 11405\r\nFromDate: January 07, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,286.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11405\r\nFromDate: January 07, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,286.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
767145	2025-03-06	13:28:08.0174290	<Undetected>	Update	BasicInformationId: 3710\r\nCompanyInstitution: DEPARMENT OF EDUCATION\r\nExperienceId: 11406\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2016\r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11406\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2016\r\n	admin	Experiences	1
767146	2025-03-06	13:28:08.0224124	<Undetected>	Update	BasicInformationId: 3710\r\nCompanyInstitution: DEPARMENT OF EDUCATION\r\nExperienceId: 11408\r\nFromDate: January 02, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 21,436.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: June 30, 2013\r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11408\r\nFromDate: January 02, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 21,436.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: June 30, 2013\r\n	admin	Experiences	1
767147	2025-03-06	13:29:06.7407995	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 06, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 19,940.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: January 31, 2013\r\n	admin	Experiences	1
767148	2025-03-06	13:31:18.1258824	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 22, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,333.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
767149	2025-03-06	13:31:18.1348525	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 16, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,333.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 21, 2012\r\n	admin	Experiences	1
767150	2025-03-06	13:34:31.1656397	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 06, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 17,318.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: June 15, 2011\r\n	admin	Experiences	1
767174	2025-03-06	14:06:56.7095853	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3709\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
767151	2025-03-06	13:34:31.1696264	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 16,157.00\r\nPositionHeld: TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
767152	2025-03-06	13:34:31.1775998	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 07, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 14,775.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
767153	2025-03-06	13:34:31.1915531	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 23, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 12,635.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
767154	2025-03-06	13:36:10.0092704	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: March 11, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,328.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 22, 2009\r\n	admin	Experiences	1
767155	2025-03-06	13:38:31.6729584	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPACITY BUILDING FOR EDUCATORS ON INCLUSIVE EDUCATION CUM AWARENESS ON FILIPINO LANGUANGE\r\nTrainingId: 0\r\nType:  TECHNICAL\r\n	admin	Trainings	1
767156	2025-03-06	13:40:11.2291744	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3709\r\nEmployeeTrainingId: 0\r\nFromDate: December 02, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: December 02, 2024\r\nTrainingId: 16313\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767157	2025-03-06	13:43:54.6702825	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 07, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,328.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: February 11, 2008\r\n	admin	Experiences	1
767158	2025-03-06	13:43:54.6752658	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 07, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 11,207.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
767159	2025-03-06	13:43:54.6805895	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 23, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,188.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
767160	2025-03-06	13:43:54.6855727	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 23, 2003\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 22, 2007\r\n	admin	Experiences	1
767161	2025-03-06	13:44:12.4619157	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DESIGNING OF PROFESSIONAL DEVELOPMENT PROGRAMS FOR TEACHERS AND SCHOOL LEADERS\r\nTrainingId: 0\r\nType:  TECHNICAL\r\n	admin	Trainings	1
767162	2025-03-06	13:44:22.9249157	<Undetected>	Update	BasicInformationId: 3710\r\nCompanyInstitution: DEPARMENT OF EDUCATION\r\nExperienceId: 11407\r\nFromDate: January 07, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11407\r\nFromDate: January 07, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
767163	2025-03-06	13:57:11.5802336	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPACITY BUILDING FOR EDUCATORS ON INCLUSIVE EDUCATION CUM AWARENESS ON FILIPINO SIGN LANGUAGE\r\nTrainingId: 0\r\nType:  TECHNICAL\r\n	admin	Trainings	1
767166	2025-03-06	14:00:26.3374323	<Undetected>	Update	BasicInformationId: 3710\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11388\r\nFromDate: January 07, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,327.00\r\nPositionHeld: TEACGER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11388\r\nFromDate: January 07, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,327.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
767167	2025-03-06	14:00:26.3424151	<Undetected>	Update	BasicInformationId: 3710\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11411\r\nFromDate: June 16, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,333.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 21, 2012\r\n	BasicInformationId: 3710\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11411\r\nFromDate: June 16, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,333.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 01, 2012\r\n	admin	Experiences	1
767168	2025-03-06	14:03:36.3106310	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPACITY BUILDING FOR GRADE 4 TO 6 TEACHERS ON THE IMPLEMENTATION OF END OF SCHOOL YEAR REMEDIAL ACTIVITIES\r\nTrainingId: 0\r\nType: Participant\r\n	admin	Trainings	1
767180	2025-03-06	14:10:06.8771728	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: HEALTH AND WELLNESS CUM AND GAD SENSITIVITY CAPABILITY BUILDING\r\nTrainingId: 0\r\nType: Participant\r\n	admin	Trainings	1
767181	2025-03-06	14:11:04.0067815	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3710\r\nEmployeeTrainingId: 0\r\nFromDate: November 18, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 20, 2024\r\nTrainingId: 16316\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767182	2025-03-06	14:11:04.0157512	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3710\r\nEmployeeTrainingId: 0\r\nFromDate: August 02, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 02, 2023\r\nTrainingId: 15143\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767183	2025-03-06	14:11:04.0207346	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3710\r\nEmployeeTrainingId: 0\r\nFromDate: August 16, 2022\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 16, 2022\r\nTrainingId: 16317\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767185	2025-03-06	14:16:30.2591820	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3710\r\nCharacterReferenceId: 0\r\nCompanyAddress: ALANGILAN, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09455314703\r\nExtensionName: \r\nFirstName: MARILOU\r\nLastName: CORDERO\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767186	2025-03-06	14:16:30.2631685	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3710\r\nCharacterReferenceId: 0\r\nCompanyAddress: NOBLE ST. BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09757328865\r\nExtensionName: \r\nFirstName: BELYNDA\r\nLastName: PEREZ\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767187	2025-03-06	14:16:30.2681521	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3710\r\nCharacterReferenceId: 0\r\nCompanyAddress: STO. NINO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09272481486\r\nExtensionName: \r\nFirstName: LEONORA\r\nLastName: HERNANDEZ\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767188	2025-03-06	14:16:30.2731361	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO SUPREME\r\nBarangay: STO. NINO\r\nBasicInformationId: 3710\r\nBirthDate: March 07, 1978\r\nBirthPlace: CULASI, ANTIQUE\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: analyn.dinglasan@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANALYN\r\nFullName: ANALYN A. DINGLASAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: ALORRO\r\nMobileNumber: 09053647110\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO SUPREME\r\nPermanentBarangay: STO. NINO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 53\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO SUPREME\r\nBarangay: STO. NINO\r\nBasicInformationId: 3710\r\nBirthDate: March 07, 1978\r\nBirthPlace: CULASI, ANTIQUE\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: analyn.dinglasan@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANALYN\r\nFullName: ANALYN A. DINGLASAN\r\nGender: Female\r\nGovernmentIdIssuedDate: November 15, 1999\r\nGovernmentIdNumber: 0612339\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 78030700693\r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: ALORRO\r\nMobileNumber: 09053647110\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO SUPREME\r\nPermanentBarangay: STO. NINO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 19-000786890-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 33-6782729-5\r\nStreetName: \r\nTIN: 226-354-262-0000\r\nWeight: 53\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767320	2025-03-07	08:27:44.3003890	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING OF SCHOOL TRAINERS ON MATATAG CURICULUM IMPLEMENTATION\r\nTrainingId: 0\r\nType:  TECHNICAL\r\n	admin	Trainings	1
767177	2025-03-06	14:06:56.7343963	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3709\r\nCharacterReferenceId: 0\r\nCompanyAddress: GULOD ITAAS, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: CHARITY\r\nLastName: MAGADIA\r\nMiddleName: S.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767178	2025-03-06	14:06:56.7384104	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3709\r\nCharacterReferenceId: 0\r\nCompanyAddress: CONDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 0906109637\r\nExtensionName: \r\nFirstName: GEMMA\r\nLastName: DE TORRES\r\nMiddleName: C.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767179	2025-03-06	14:06:56.7435213	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3709\r\nCharacterReferenceId: 0\r\nCompanyAddress: DAO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09279802637\r\nExtensionName: \r\nFirstName: RICA\r\nLastName: SAUAREZ\r\nMiddleName: A.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767184	2025-03-06	14:13:55.9774351	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 0276\r\nAddress2: BULIHAN\r\nBarangay: TABANGAO AMBULONG\r\nBasicInformationId: 3709\r\nBirthDate: December 06, 1976\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marites.tarcelo@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARITES\r\nFullName: MARITES DC. TARCELO\r\nGender: Female\r\nGovernmentIdIssuedDate: December 26, 2024\r\nGovernmentIdNumber: 0498801\r\nGovernmentIdPlaceIssued: STA.MESA MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: TARCELO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nMobileNumber: 09151454687\r\nNationality: Filipino\r\nPermanentAddress1: 0276\r\nPermanentAddress2: BULIHAN\r\nPermanentBarangay: TABANGAO AMBULONG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 63\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 0276\r\nAddress2: BULIHAN\r\nBarangay: TABANGAO AMBULONG\r\nBasicInformationId: 3709\r\nBirthDate: December 06, 1976\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marites.tarcelo@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARITES\r\nFullName: MARITES DC. TARCELO\r\nGender: Female\r\nGovernmentIdIssuedDate: December 26, 2024\r\nGovernmentIdNumber: 0498801\r\nGovernmentIdPlaceIssued: STA.MESA MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 20029993890\r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: TARCELO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nMobileNumber: 09151454687\r\nNationality: Filipino\r\nPermanentAddress1: 0276\r\nPermanentAddress2: BULIHAN\r\nPermanentBarangay: TABANGAO AMBULONG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000051603-0\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-0944844-1\r\nStreetName: \r\nTIN: 188-268-709-0000\r\nWeight: 63\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767189	2025-03-06	14:18:03.0735722	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO SUPREME\r\nBarangay: STO. NINO\r\nBasicInformationId: 3710\r\nBirthDate: March 07, 1978\r\nBirthPlace: CULASI, ANTIQUE\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: analyn.dinglasan@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANALYN\r\nFullName: ANALYN A. DINGLASAN\r\nGender: Female\r\nGovernmentIdIssuedDate: November 15, 1999\r\nGovernmentIdNumber: 0612339\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 78030700693\r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: ALORRO\r\nMobileNumber: 09053647110\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO SUPREME\r\nPermanentBarangay: STO. NINO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 19-000786890-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 33-6782729-5\r\nStreetName: \r\nTIN: 226-354-262-0000\r\nWeight: 53\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO SUPREME\r\nBarangay: STO. NINO\r\nBasicInformationId: 3710\r\nBirthDate: March 07, 1978\r\nBirthPlace: CULASI, ANTIQUE\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: analyn.dinglasan@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANALYN\r\nFullName: ANALYN A. DINGLASAN\r\nGender: Female\r\nGovernmentIdIssuedDate: November 15, 1999\r\nGovernmentIdNumber: 0612339\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 78030700693\r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: ALORRO\r\nMobileNumber: 09053647110\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO SUPREME\r\nPermanentBarangay: STO. NINO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 19-000786890-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: 33-6782729-5\r\nStreetName: \r\nTIN: 226-354-262-0000\r\nWeight: 53\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767190	2025-03-06	14:21:01.1131766	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STO. NINO\r\nBasicInformationId: 0\r\nBirthDate: January 31, 1976\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marcela.estero@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARCELA\r\nFullName: MARCELA R. ESTERO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ESTERO\r\nMaidenName: \r\nMiddleName: REGALARIO\r\nMobileNumber: 09065878996\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STO. NINO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 70\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767191	2025-03-06	14:21:01.1487371	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3711\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
767192	2025-03-06	14:41:16.2165033	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: MALIGAYA VILLAGE ROAD\r\nAddress2: PUROK 1\r\nBarangay: GULOD ITAAS\r\nBasicInformationId: 0\r\nBirthDate: October 15, 1989\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lucia.adeva@depe.gov.ph\r\nExtensionName: \r\nFirstName: LUCIA\r\nFullName: LUCIA C. ADEVA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ADEVA\r\nMaidenName: \r\nMiddleName: CAMACHO\r\nMobileNumber: 09127705002\r\nNationality: Filipino\r\nPermanentAddress1: MALIGAYA VILLAGE ROAD\r\nPermanentAddress2: PUROK 1\r\nPermanentBarangay: GULOD ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO KANLURAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: SITIO KANLURAN\r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767193	2025-03-06	14:41:16.5000075	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3712\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARK JYCER\r\nFullName: MARK JYCER CAMACHO ADEVA\r\nGender: Male\r\nLastName: ADEVA\r\nMaidenName: \r\nMiddleName: CAMACHO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
767194	2025-03-06	14:41:16.5010094	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3712\r\nBirthDate: May 04, 2015\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ZEION LUCHO\r\nFullName: ZEION LUCHO CAMACHO ADEVA\r\nGender: Male\r\nLastName: ADEVA\r\nMaidenName: \r\nMiddleName: CAMACHO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767195	2025-03-06	14:41:16.5010094	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3712\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARK JYCER\r\nFullName: MARK JYCER CAMACHO ADEVA\r\nGender: Male\r\nLastName: ADEVA\r\nMaidenName: \r\nMiddleName: CAMACHO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
767196	2025-03-06	14:41:16.5010094	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3712\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
767197	2025-03-06	14:43:06.7534473	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3711\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ARRE\r\nFullName: ARRE VALENZUELA ESTERO\r\nGender: Male\r\nLastName: ESTERO\r\nMaidenName: \r\nMiddleName: VALENZUELA\r\nOccupation: MILITARY (PHILIPPINE AIR FORCE)\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
767198	2025-03-06	14:43:06.7584306	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STO. NINO\r\nBasicInformationId: 3711\r\nBirthDate: January 31, 1976\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marcela.estero@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARCELA\r\nFullName: MARCELA R. ESTERO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ESTERO\r\nMaidenName: \r\nMiddleName: REGALARIO\r\nMobileNumber: 09065878996\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STO. NINO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 70\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STO. NINO\r\nBasicInformationId: 3711\r\nBirthDate: January 31, 1976\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marcela.estero@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARCELA\r\nFullName: MARCELA R. ESTERO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ESTERO\r\nMaidenName: \r\nMiddleName: REGALARIO\r\nMobileNumber: 09065878996\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STO. NINO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 70\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767199	2025-03-06	14:43:06.7683974	<Undetected>	Update	BasicInformationId: 3711\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3508\r\n	BasicInformationId: 3711\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3508\r\n	admin	Questionnaires	1
767205	2025-03-06	14:44:26.5554908	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3711\r\nBirthDate: September 05, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOHN SELWYN HARRIES\r\nFullName: JOHN SELWYN HARRIES REGALARIO ESTERO\r\nGender: Male\r\nLastName: ESTERO\r\nMaidenName: \r\nMiddleName: REGALARIO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767206	2025-03-06	14:44:26.5654576	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3711\r\nBirthDate: April 05, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOHN JARREL\r\nFullName: JOHN JARREL REGALARIO ESTERO\r\nGender: Male\r\nLastName: ESTERO\r\nMaidenName: \r\nMiddleName: REGALARIO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767207	2025-03-06	14:44:26.5704410	<Undetected>	Update	BasicInformationId: 3711\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3706\r\nExtensionName: \r\nFirstName: ARRE\r\nFullName: ARRE VALENZUELA ESTERO\r\nGender: Male\r\nLastName: ESTERO\r\nMaidenName: \r\nMiddleName: VALENZUELA\r\nOccupation: MILITARY (PHILIPPINE AIR FORCE)\r\nRelationship: Husband\r\n	BasicInformationId: 3711\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3706\r\nExtensionName: \r\nFirstName: ARRE\r\nFullName: ARRE ESTERO\r\nGender: Male\r\nLastName: ESTERO\r\nMaidenName: \r\nMiddleName: VALENZUELA\r\nOccupation: MILITARY (PHILIPPINE AIR FORCE)\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
767211	2025-03-06	14:54:51.4418570	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3711\r\nBirthDate: December 13, 2015\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOHN ZARRE\r\nFullName: JOHN ZARRE REGALARIO ESTERO\r\nGender: Male\r\nLastName: ESTERO\r\nMaidenName: \r\nMiddleName: REGALARIO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767212	2025-03-06	14:54:51.4538170	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3711\r\nBirthDate: January 01, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARRESHIEL JOAHNA\r\nFullName: MARRESHIEL JOAHNA REGALARIO ESTERO\r\nGender: Male\r\nLastName: ESTERO\r\nMaidenName: \r\nMiddleName: REGALARIO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767213	2025-03-06	14:54:51.4588003	<Undetected>	Update	BasicInformationId: 3711\r\nBirthDate: September 05, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3707\r\nExtensionName: \r\nFirstName: JOHN SELWYN HARRIES\r\nFullName: JOHN SELWYN HARRIES REGALARIO ESTERO\r\nGender: Male\r\nLastName: ESTERO\r\nMaidenName: \r\nMiddleName: REGALARIO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3711\r\nBirthDate: September 05, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3707\r\nExtensionName: \r\nFirstName: JOHN SELWYN HARRIES\r\nFullName: JOHN SELWYN HARRIES ESTERO\r\nGender: Male\r\nLastName: ESTERO\r\nMaidenName: \r\nMiddleName: REGALARIO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767214	2025-03-06	14:54:51.4677703	<Undetected>	Update	BasicInformationId: 3711\r\nBirthDate: April 05, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3708\r\nExtensionName: \r\nFirstName: JOHN JARREL\r\nFullName: JOHN JARREL REGALARIO ESTERO\r\nGender: Male\r\nLastName: ESTERO\r\nMaidenName: \r\nMiddleName: REGALARIO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3711\r\nBirthDate: April 05, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3708\r\nExtensionName: \r\nFirstName: JOHN JARREL\r\nFullName: JOHN JARREL ESTERO\r\nGender: Male\r\nLastName: ESTERO\r\nMaidenName: \r\nMiddleName: REGALARIO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767718	2025-03-07	15:06:28.3275932	<Undetected>	Update	BasicInformationId: 3720\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3517\r\n	BasicInformationId: 3720\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3517\r\n	admin	Questionnaires	1
767200	2025-03-06	14:43:27.3989832	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: MALIGAYA VILLAGE ROAD\r\nAddress2: PUROK 1\r\nBarangay: GULOD ITAAS\r\nBasicInformationId: 3712\r\nBirthDate: October 15, 1989\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lucia.adeva@depe.gov.ph\r\nExtensionName: \r\nFirstName: LUCIA\r\nFullName: LUCIA C. ADEVA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ADEVA\r\nMaidenName: \r\nMiddleName: CAMACHO\r\nMobileNumber: 09127705002\r\nNationality: Filipino\r\nPermanentAddress1: MALIGAYA VILLAGE ROAD\r\nPermanentAddress2: PUROK 1\r\nPermanentBarangay: GULOD ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO KANLURAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: SITIO KANLURAN\r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: MALIGAYA VILLAGE ROAD\r\nAddress2: PUROK 1\r\nBarangay: GULOD ITAAS\r\nBasicInformationId: 3712\r\nBirthDate: October 15, 1989\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lucia.adeva@depe.gov.ph\r\nExtensionName: \r\nFirstName: LUCIA\r\nFullName: LUCIA C. ADEVA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ADEVA\r\nMaidenName: \r\nMiddleName: CAMACHO\r\nMobileNumber: 09127705002\r\nNationality: Filipino\r\nPermanentAddress1: MALIGAYA VILLAGE ROAD\r\nPermanentAddress2: PUROK 1\r\nPermanentBarangay: GULOD ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO KANLURAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO KANLURAN\r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767201	2025-03-06	14:43:27.4029824	<Undetected>	Update	BasicInformationId: 3712\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3703\r\nExtensionName: \r\nFirstName: MARK JYCER\r\nFullName: MARK JYCER CAMACHO ADEVA\r\nGender: Male\r\nLastName: ADEVA\r\nMaidenName: \r\nMiddleName: CAMACHO\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3712\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3703\r\nExtensionName: \r\nFirstName: MARK JYCER\r\nFullName: MARK JYCER ADEVA\r\nGender: Male\r\nLastName: ADEVA\r\nMaidenName: \r\nMiddleName: CAMACHO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
767202	2025-03-06	14:43:27.4139828	<Undetected>	Update	BasicInformationId: 3712\r\nBirthDate: May 04, 2015\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3704\r\nExtensionName: \r\nFirstName: ZEION LUCHO\r\nFullName: ZEION LUCHO CAMACHO ADEVA\r\nGender: Male\r\nLastName: ADEVA\r\nMaidenName: \r\nMiddleName: CAMACHO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3712\r\nBirthDate: May 04, 2015\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3704\r\nExtensionName: \r\nFirstName: ZEION LUCHO\r\nFullName: ZEION LUCHO ADEVA\r\nGender: Male\r\nLastName: ADEVA\r\nMaidenName: \r\nMiddleName: CAMACHO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767203	2025-03-06	14:43:27.4179825	<Undetected>	Update	BasicInformationId: 3712\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3705\r\nExtensionName: \r\nFirstName: MARK JYCER\r\nFullName: MARK JYCER CAMACHO ADEVA\r\nGender: Male\r\nLastName: ADEVA\r\nMaidenName: \r\nMiddleName: CAMACHO\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3712\r\nBirthDate: November 20, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3705\r\nExtensionName: \r\nFirstName: ALRICK JYCER\r\nFullName: ALRICK JYCER CAMACHO ADEVA\r\nGender: Male\r\nLastName: ADEVA\r\nMaidenName: \r\nMiddleName: CAMACHO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767204	2025-03-06	14:43:27.4269829	<Undetected>	Update	BasicInformationId: 3712\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3509\r\n	BasicInformationId: 3712\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3509\r\n	admin	Questionnaires	1
767208	2025-03-06	14:46:57.5135878	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER OF ARTS IN EDUCATIONAL MANAGEMENT\r\nLevel: Master's\r\n	admin	Courses	1
767209	2025-03-06	14:52:19.8853324	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: PROVINCIAL SCHOLAR\r\nBasicInformationId: 3712\r\nCourse: \r\nCourseId: 1367\r\nCourseOrMajor: \r\nDateFrom: 2018\r\nDateTo: 2025\r\nEducationalAttainment: 36\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
767210	2025-03-06	14:52:19.8964059	<Undetected>	Update	BasicInformationId: 3712\r\nBirthDate: November 20, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3705\r\nExtensionName: \r\nFirstName: ALRICK JYCER\r\nFullName: ALRICK JYCER CAMACHO ADEVA\r\nGender: Male\r\nLastName: ADEVA\r\nMaidenName: \r\nMiddleName: CAMACHO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3712\r\nBirthDate: November 20, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3705\r\nExtensionName: \r\nFirstName: ALRICK JYCER\r\nFullName: ALRICK JYCER ADEVA\r\nGender: Male\r\nLastName: ADEVA\r\nMaidenName: \r\nMiddleName: CAMACHO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767235	2025-03-06	15:15:43.1582261	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3712\r\nDateOfExamination: January 09, 2013\r\nDateOfRelease: October 15, 2023\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: January 09, 2013\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1271763\r\nPlaceOfExamination: LUCENA  CITY, QUEZON\r\nRating: 75.0\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS (LET)\r\n	admin	Eligibilities	1
767236	2025-03-06	15:15:43.1632258	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3712\r\nCompanyInstitution: DEPARTMENT OF EDUCATION JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,733.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: March 06, 2025\r\n	admin	Experiences	1
767335	2025-03-07	08:29:56.1160142	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION ROLL-OUT OF INSTRUCTIONAL LEADERSHIP TRAINING STRENGTHENING LEARNING CONDITIONS FOR EARLY LITERACY\r\nTrainingId: 0\r\nType:  TECHNICAL\r\n	admin	Trainings	1
767215	2025-03-06	14:56:03.3566945	<Undetected>	Update	BasicInformationId: 3711\r\nBirthDate: September 05, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3707\r\nExtensionName: \r\nFirstName: JOHN SELWYN HARRIES\r\nFullName: JOHN SELWYN HARRIES ESTERO\r\nGender: Male\r\nLastName: ESTERO\r\nMaidenName: \r\nMiddleName: REGALARIO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3711\r\nBirthDate: September 05, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3707\r\nExtensionName: \r\nFirstName: JOHN SELWYN HARRIES\r\nFullName: JOHN SELWYN HARRIES REGALARIO ESTERO\r\nGender: Male\r\nLastName: ESTERO\r\nMaidenName: \r\nMiddleName: REGALARIO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767216	2025-03-06	14:56:03.3686545	<Undetected>	Update	BasicInformationId: 3711\r\nBirthDate: December 13, 2015\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3709\r\nExtensionName: \r\nFirstName: JOHN ZARRE\r\nFullName: JOHN ZARRE REGALARIO ESTERO\r\nGender: Male\r\nLastName: ESTERO\r\nMaidenName: \r\nMiddleName: REGALARIO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3711\r\nBirthDate: December 13, 2015\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3709\r\nExtensionName: \r\nFirstName: JOHN ZARRE\r\nFullName: JOHN ZARRE ESTERO\r\nGender: Male\r\nLastName: ESTERO\r\nMaidenName: \r\nMiddleName: REGALARIO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767217	2025-03-06	14:56:03.3726411	<Undetected>	Update	BasicInformationId: 3711\r\nBirthDate: January 01, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3710\r\nExtensionName: \r\nFirstName: MARRESHIEL JOAHNA\r\nFullName: MARRESHIEL JOAHNA REGALARIO ESTERO\r\nGender: Male\r\nLastName: ESTERO\r\nMaidenName: \r\nMiddleName: REGALARIO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3711\r\nBirthDate: February 01, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3710\r\nExtensionName: \r\nFirstName: MARRESHIEL JOAHNA\r\nFullName: MARRESHIEL JOAHNA REGALARIO ESTERO\r\nGender: Male\r\nLastName: ESTERO\r\nMaidenName: \r\nMiddleName: REGALARIO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767218	2025-03-06	14:57:59.0776488	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3711\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1982\r\nDateTo: 1989\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: STO. NINO ELEMENTARY SCHOOL\r\nYearGraduated: 1989\r\n	admin	EducationalBackgrounds	1
767219	2025-03-06	14:57:59.0826320	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3711\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1989\r\nDateTo: 1993\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: STO. NINO BARANGAY HIGH SCHOOL\r\nYearGraduated: 1993\r\n	admin	EducationalBackgrounds	1
767220	2025-03-06	14:57:59.0866186	<Undetected>	Update	BasicInformationId: 3711\r\nBirthDate: September 05, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3707\r\nExtensionName: \r\nFirstName: JOHN SELWYN HARRIES\r\nFullName: JOHN SELWYN HARRIES REGALARIO ESTERO\r\nGender: Male\r\nLastName: ESTERO\r\nMaidenName: \r\nMiddleName: REGALARIO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3711\r\nBirthDate: September 05, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3707\r\nExtensionName: \r\nFirstName: JOHN SELWYN HARRIES\r\nFullName: JOHN SELWYN HARRIES ESTERO\r\nGender: Male\r\nLastName: ESTERO\r\nMaidenName: \r\nMiddleName: REGALARIO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767221	2025-03-06	14:57:59.0985787	<Undetected>	Update	BasicInformationId: 3711\r\nBirthDate: February 01, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3710\r\nExtensionName: \r\nFirstName: MARRESHIEL JOAHNA\r\nFullName: MARRESHIEL JOAHNA REGALARIO ESTERO\r\nGender: Male\r\nLastName: ESTERO\r\nMaidenName: \r\nMiddleName: REGALARIO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3711\r\nBirthDate: February 01, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3710\r\nExtensionName: \r\nFirstName: MARRESHIEL JOAHNA\r\nFullName: MARRESHIEL JOAHNA ESTERO\r\nGender: Male\r\nLastName: ESTERO\r\nMaidenName: \r\nMiddleName: REGALARIO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767222	2025-03-06	14:59:42.8241534	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO SUPREME\r\nBarangay: STO. NINO\r\nBasicInformationId: 3710\r\nBirthDate: March 07, 1978\r\nBirthPlace: CULASI, ANTIQUE\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: analyn.dinglasan@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANALYN\r\nFullName: ANALYN A. DINGLASAN\r\nGender: Female\r\nGovernmentIdIssuedDate: November 15, 1999\r\nGovernmentIdNumber: 0612339\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 78030700693\r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: ALORRO\r\nMobileNumber: 09053647110\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO SUPREME\r\nPermanentBarangay: STO. NINO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 19-000786890-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: 33-6782729-5\r\nStreetName: \r\nTIN: 226-354-262-0000\r\nWeight: 53\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO SUPREME\r\nBarangay: STO. NINO\r\nBasicInformationId: 3710\r\nBirthDate: March 07, 1978\r\nBirthPlace: CULASI, ANTIQUE\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: analyn.dinglasan@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANALYN\r\nFullName: ANALYN A. DINGLASAN\r\nGender: Female\r\nGovernmentIdIssuedDate: November 15, 1999\r\nGovernmentIdNumber: 0612339\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 78030700693\r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: ALORRO\r\nMobileNumber: 09053647110\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO SUPREME\r\nPermanentBarangay: STO. NINO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 19-000786890-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 33-6782729-5\r\nStreetName: \r\nTIN: 226-354-262-0000\r\nWeight: 53\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767223	2025-03-06	14:59:42.8291369	<Undetected>	Update	BasicInformationId: 3710\r\nCharacterReferenceId: 6830\r\nCompanyAddress: ALANGILAN, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09455314703\r\nExtensionName: \r\nFirstName: MARILOU\r\nLastName: CORDERO\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3710\r\nCharacterReferenceId: 6830\r\nCompanyAddress: ALANGILAN, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09455314703\r\nExtensionName: \r\nFirstName: MARILOU\r\nLastName: CORDERO\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767224	2025-03-06	14:59:42.8371100	<Undetected>	Update	BasicInformationId: 3710\r\nCharacterReferenceId: 6831\r\nCompanyAddress: NOBLE ST. BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09757328865\r\nExtensionName: \r\nFirstName: BELYNDA\r\nLastName: PEREZ\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3710\r\nCharacterReferenceId: 6831\r\nCompanyAddress: NOBLE ST. BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09757328865\r\nExtensionName: \r\nFirstName: BELYNDA\r\nLastName: PEREZ\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767766	2025-03-07	15:46:55.7753930	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3720\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
767225	2025-03-06	14:59:42.8420933	<Undetected>	Update	BasicInformationId: 3710\r\nCharacterReferenceId: 6832\r\nCompanyAddress: STO. NINO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09272481486\r\nExtensionName: \r\nFirstName: LEONORA\r\nLastName: HERNANDEZ\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3710\r\nCharacterReferenceId: 6832\r\nCompanyAddress: STO. NINO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09272481486\r\nExtensionName: \r\nFirstName: LEONORA\r\nLastName: HERNANDEZ\r\nMiddleName: E\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767226	2025-03-06	15:02:27.5101525	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER OF ARTS IN ELEMENTARY EDUCATION\r\nLevel: Master's\r\n	admin	Courses	1
767227	2025-03-06	15:02:51.7817105	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3711\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1993\r\nDateTo: 1997\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY\r\nYearGraduated: 1997\r\n	admin	EducationalBackgrounds	1
767228	2025-03-06	15:02:51.7856973	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3711\r\nCourse: \r\nCourseId: 1368\r\nCourseOrMajor: \r\nDateFrom: 2018\r\nDateTo: 2019\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2019\r\n	admin	EducationalBackgrounds	1
767229	2025-03-06	15:05:08.1725897	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3711\r\nCharacterReferenceId: 0\r\nCompanyAddress: SANTO  NINO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09051466206\r\nExtensionName: \r\nFirstName: VILMA\r\nLastName: EBORA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767230	2025-03-06	15:05:08.1815596	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3711\r\nCharacterReferenceId: 0\r\nCompanyAddress: CALICANTO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175867036\r\nExtensionName: \r\nFirstName: CARMELITA\r\nLastName: ABAG\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767231	2025-03-06	15:05:08.1865430	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3711\r\nCharacterReferenceId: 0\r\nCompanyAddress: SANTO NINO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 091753810055\r\nExtensionName: \r\nFirstName: LEANDRO\r\nLastName: RAMIREZ\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767232	2025-03-06	15:06:12.7778294	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STO. NINO\r\nBasicInformationId: 3711\r\nBirthDate: January 31, 1976\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marcela.estero@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARCELA\r\nFullName: MARCELA R. ESTERO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ESTERO\r\nMaidenName: \r\nMiddleName: REGALARIO\r\nMobileNumber: 09065878996\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STO. NINO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 70\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STO. NINO\r\nBasicInformationId: 3711\r\nBirthDate: January 31, 1976\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marcela.estero@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARCELA\r\nFullName: MARCELA R. ESTERO\r\nGender: Female\r\nGovernmentIdIssuedDate: December 15, 1997\r\nGovernmentIdNumber: 0243236\r\nGovernmentIdPlaceIssued: PRC-MANILA\r\nGovernmentIssuedId: PROFESSIONAL REGULATION COMMISSION\r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ESTERO\r\nMaidenName: \r\nMiddleName: REGALARIO\r\nMobileNumber: 09065878996\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STO. NINO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 70\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767233	2025-03-06	15:08:18.6921082	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3711\r\nDateOfExamination: August 23, 1997\r\nDateOfRelease: December 15, 1997\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 23, 1997\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0243236\r\nPlaceOfExamination: NATIONAL UNIVERSITY SAMPALOC, MANILA\r\nRating: 75.80\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
767234	2025-03-06	15:12:13.1424293	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 375,840.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
767250	2025-03-06	15:19:28.3401457	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 03, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 357,576.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
767767	2025-03-07	15:46:55.7833931	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3720\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
767237	2025-03-06	15:15:43.1682611	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3712\r\nCompanyInstitution: DEPARTMENT OF EDUCATION JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 33,183.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
767238	2025-03-06	15:15:43.1732777	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3712\r\nCompanyInstitution: DEPARTMENT OF EDUCATION JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: September 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 32,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
767239	2025-03-06	15:15:43.1782958	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3712\r\nCompanyInstitution: DEPARTMENT OF EDUCATION JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
767240	2025-03-06	15:15:43.1823036	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3712\r\nCompanyInstitution: DEPARTMENT OF EDUCATION JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,798.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
767241	2025-03-06	15:15:43.1873037	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3712\r\nCompanyInstitution: DEPARTMENT OF EDUCATION JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 09, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 28,276.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
767242	2025-03-06	15:15:43.1923033	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3712\r\nCompanyInstitution: DEPARTMENT OF EDUCATION JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 24,161.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: August 31, 2021\r\n	admin	Experiences	1
767243	2025-03-06	15:15:43.1963033	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3712\r\nCompanyInstitution: DEPARTMENT OF EDUCATION JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 21,038.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
767244	2025-03-06	15:15:43.2018756	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3712\r\nCompanyInstitution: DEPARTMENT OF EDUCATION JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 07, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,038.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
767245	2025-03-06	15:15:43.2068905	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3712\r\nCompanyInstitution: DEPARTMENT OF EDUCATION JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2019\r\n	admin	Experiences	1
767246	2025-03-06	15:15:43.2109030	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3712\r\nCompanyInstitution: DEPARTMENT OF EDUCATION JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
767247	2025-03-06	15:15:43.2159366	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3712\r\nCompanyInstitution: DEPARTMENT OF EDUCATION JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,620.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
767248	2025-03-06	15:15:43.2199363	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3712\r\nCompanyInstitution: DEPARTMENT OF EDUCATION JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
767249	2025-03-06	15:18:53.7153664	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CLASSROOM MANAGEMENT-CREATING AN INCLUSIVE CLASSROOM ENVIRONMENT\r\nTrainingId: 0\r\nType:  TECHNICAL\r\n	admin	Trainings	1
767257	2025-03-06	15:22:40.0580520	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MASTER CLASS FOR GRADE 1 TEACHERS ACROSS LEARNING AREAS\r\nTrainingId: 0\r\nType:  TECHNICAL\r\n	admin	Trainings	1
767287	2025-03-06	15:36:08.3114559	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT DOSCONFERENCE OF BASIC EDUCATION RESEARCHERS\r\nTrainingId: 0\r\nType:  TECHNICAL\r\n	admin	Trainings	1
767289	2025-03-06	15:37:46.0420007	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3712\r\nEmployeeTrainingId: 0\r\nFromDate: December 19, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: December 19, 2024\r\nTrainingId: 16318\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767290	2025-03-06	15:37:46.0500136	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3712\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16319\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767291	2025-03-06	15:37:46.0540307	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3712\r\nEmployeeTrainingId: 0\r\nFromDate: November 12, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: November 12, 2024\r\nTrainingId: 16320\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767251	2025-03-06	15:19:28.3451293	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 05, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 330,168.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-8\r\nStatus: Permanent\r\nToDate: October 02, 2022\r\n	admin	Experiences	1
767252	2025-03-06	15:19:28.3501127	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 326,460.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-8\r\nStatus: Permanent\r\nToDate: September 04, 2022\r\n	admin	Experiences	1
767253	2025-03-06	15:19:28.3550956	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 307,716.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-8\r\nStatus: Permanent\r\nToDate: January 31, 2021\r\n	admin	Experiences	1
767254	2025-03-06	15:19:28.3600792	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 288,984.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-8\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
767255	2025-03-06	15:19:28.3650627	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 05, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 270,240.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-7\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
767256	2025-03-06	15:19:28.3700455	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 266,952.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-7\r\nStatus: Permanent\r\nToDate: September 04, 2019\r\n	admin	Experiences	1
767258	2025-03-06	15:23:24.8228130	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 258,024.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-7\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
767259	2025-03-06	15:23:24.8297897	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 249,732.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-7\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
767260	2025-03-06	15:23:24.8337762	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 05, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 241,704.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-6\r\nStatus: Permanent\r\nToDate: December 13, 2016\r\n	admin	Experiences	1
767261	2025-03-06	15:23:24.8427462	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 239,100.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-6\r\nStatus: Permanent\r\nToDate: September 04, 2016\r\n	admin	Experiences	1
767262	2025-03-06	15:24:57.4914527	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 05, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 231,624.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: December 30, 2013\r\n	admin	Experiences	1
767263	2025-03-06	15:25:53.7666637	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 229,332.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: September 04, 2013\r\n	admin	Experiences	1
767264	2025-03-06	15:29:33.0419962	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 05, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 213,180.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
767265	2025-03-06	15:29:33.0469795	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 210,480.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: September 04, 2011\r\n	admin	Experiences	1
767266	2025-03-06	15:29:33.0509661	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 05, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 193,884.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
767267	2025-03-06	15:29:33.0559495	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 190,800.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: September 04, 2010\r\n	admin	Experiences	1
767268	2025-03-06	15:33:04.1440783	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 173,796.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
767269	2025-03-06	15:34:51.4911122	<Undetected>	Update	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11421\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 375,840.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11421\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 375,840.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
767270	2025-03-06	15:34:51.5020771	<Undetected>	Update	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11435\r\nFromDate: October 03, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 357,576.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11435\r\nFromDate: October 03, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 357,576.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
767271	2025-03-06	15:34:51.5060637	<Undetected>	Update	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11436\r\nFromDate: September 05, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 330,168.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-8\r\nStatus: Permanent\r\nToDate: October 02, 2022\r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11436\r\nFromDate: September 05, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 330,168.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-8\r\nStatus: Permanent\r\nToDate: October 02, 2022\r\n	admin	Experiences	1
767272	2025-03-06	15:34:51.5140768	<Undetected>	Update	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11437\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 326,460.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-8\r\nStatus: Permanent\r\nToDate: September 04, 2022\r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11437\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 326,460.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-8\r\nStatus: Permanent\r\nToDate: September 04, 2022\r\n	admin	Experiences	1
767273	2025-03-06	15:34:51.5190593	<Undetected>	Update	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11438\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 307,716.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-8\r\nStatus: Permanent\r\nToDate: January 31, 2021\r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11438\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 307,716.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-8\r\nStatus: Permanent\r\nToDate: January 31, 2021\r\n	admin	Experiences	1
767274	2025-03-06	15:34:51.5240427	<Undetected>	Update	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11439\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 288,984.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-8\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11439\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 288,984.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-8\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
767275	2025-03-06	15:34:51.5279892	<Undetected>	Update	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11440\r\nFromDate: September 05, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 270,240.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-7\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11440\r\nFromDate: September 05, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 270,240.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-7\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
767276	2025-03-06	15:34:51.5329725	<Undetected>	Update	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11441\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 266,952.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-7\r\nStatus: Permanent\r\nToDate: September 04, 2019\r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11441\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 266,952.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-7\r\nStatus: Permanent\r\nToDate: September 04, 2019\r\n	admin	Experiences	1
767277	2025-03-06	15:34:51.5369593	<Undetected>	Update	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11442\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 258,024.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-7\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11442\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 258,024.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-7\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
767278	2025-03-06	15:34:51.5419426	<Undetected>	Update	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11443\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 249,732.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-7\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11443\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 249,732.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-7\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
767279	2025-03-06	15:34:51.5469258	<Undetected>	Update	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11444\r\nFromDate: September 05, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 241,704.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-6\r\nStatus: Permanent\r\nToDate: December 13, 2016\r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11444\r\nFromDate: September 05, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 241,704.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-6\r\nStatus: Permanent\r\nToDate: December 13, 2016\r\n	admin	Experiences	1
767280	2025-03-06	15:34:51.5509126	<Undetected>	Update	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11445\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 239,100.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-6\r\nStatus: Permanent\r\nToDate: September 04, 2016\r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11445\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 239,100.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-6\r\nStatus: Permanent\r\nToDate: September 04, 2016\r\n	admin	Experiences	1
767281	2025-03-06	15:34:51.5558959	<Undetected>	Update	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11446\r\nFromDate: September 05, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 231,624.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: December 30, 2013\r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11446\r\nFromDate: September 05, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 231,624.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: December 30, 2013\r\n	admin	Experiences	1
767282	2025-03-06	15:34:51.5598825	<Undetected>	Update	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11447\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 229,332.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: September 04, 2013\r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11447\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 229,332.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: September 04, 2013\r\n	admin	Experiences	1
767283	2025-03-06	15:34:51.5648661	<Undetected>	Update	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11448\r\nFromDate: September 05, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 213,180.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11448\r\nFromDate: September 05, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 213,180.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
767284	2025-03-06	15:34:51.5688527	<Undetected>	Update	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11449\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 210,480.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: September 04, 2011\r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11449\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 210,480.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: September 04, 2011\r\n	admin	Experiences	1
767285	2025-03-06	15:34:51.5738359	<Undetected>	Update	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11450\r\nFromDate: September 05, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 193,884.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11450\r\nFromDate: September 05, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 193,884.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
767286	2025-03-06	15:34:51.5778226	<Undetected>	Update	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11451\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 190,800.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: September 04, 2010\r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11451\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 190,800.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: September 04, 2010\r\n	admin	Experiences	1
767288	2025-03-06	15:36:54.1085335	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 147,936.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
767292	2025-03-06	15:40:30.4151404	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 134,484.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
767293	2025-03-06	15:40:30.4211205	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 122,256.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: TEACHER I\r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
767294	2025-03-06	15:40:30.4251075	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 27, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 119,268.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2004\r\n	admin	Experiences	1
767295	2025-03-06	15:40:30.4300904	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATIONDEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 05, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 119,268.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: July 26, 2002\r\n	admin	Experiences	1
767296	2025-03-07	07:54:04.9923462	<Undetected>	Update	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATIONDEPARTMENT OF EDUCATION\r\nExperienceId: 11457\r\nFromDate: September 05, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 119,268.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: July 26, 2002\r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11457\r\nFromDate: September 05, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 119,268.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: July 26, 2002\r\n	admin	Experiences	1
767297	2025-03-07	07:54:28.8300424	<Undetected>	Update	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11455\r\nFromDate: January 01, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 122,256.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: TEACHER I\r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11455\r\nFromDate: January 01, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 122,256.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
767298	2025-03-07	07:57:44.6967350	<Undetected>	Update	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11444\r\nFromDate: September 05, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 241,704.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-6\r\nStatus: Permanent\r\nToDate: December 13, 2016\r\n	BasicInformationId: 3711\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11444\r\nFromDate: September 05, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 241,704.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-6\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
767299	2025-03-07	08:02:22.8239475	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3712\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
767300	2025-03-07	08:02:22.8356504	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3712\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
767301	2025-03-07	08:02:22.8406641	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3712\r\nSkillId: 0\r\nSkillName: GARDENING\r\n	admin	Skills	1
767302	2025-03-07	08:02:22.8486849	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3712\r\nRecognitionId: 0\r\nRecognitionName: BAYANI NG BAYAN AWARD - JCPMES 2025\r\n	admin	Recognitions	1
767307	2025-03-07	08:04:01.9977173	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STO. NINO\r\nBasicInformationId: 3711\r\nBirthDate: January 31, 1976\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marcela.estero@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARCELA\r\nFullName: MARCELA R. ESTERO\r\nGender: Female\r\nGovernmentIdIssuedDate: December 15, 1997\r\nGovernmentIdNumber: 0243236\r\nGovernmentIdPlaceIssued: PRC-MANILA\r\nGovernmentIssuedId: PROFESSIONAL REGULATION COMMISSION\r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ESTERO\r\nMaidenName: \r\nMiddleName: REGALARIO\r\nMobileNumber: 09065878996\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STO. NINO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 70\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STO. NINO\r\nBasicInformationId: 3711\r\nBirthDate: January 31, 1976\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marcela.estero@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARCELA\r\nFullName: MARCELA R. ESTERO\r\nGender: Female\r\nGovernmentIdIssuedDate: December 15, 1997\r\nGovernmentIdNumber: 0243236\r\nGovernmentIdPlaceIssued: PRC-MANILA\r\nGovernmentIssuedId: PROFESSIONAL REGULATION COMMISSION\r\nGSIS: 76013100388\r\nHDMF: 1490-0092-0166\r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ESTERO\r\nMaidenName: \r\nMiddleName: REGALARIO\r\nMobileNumber: 09065878996\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STO. NINO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000051376-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 921-099-006-0000\r\nWeight: 70\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767308	2025-03-07	08:15:08.6677183	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 0276\r\nAddress2: BULIHAN\r\nBarangay: TABANGAO AMBULONG\r\nBasicInformationId: 3709\r\nBirthDate: December 06, 1976\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marites.tarcelo@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARITES\r\nFullName: MARITES DC. TARCELO\r\nGender: Female\r\nGovernmentIdIssuedDate: December 26, 2024\r\nGovernmentIdNumber: 0498801\r\nGovernmentIdPlaceIssued: STA.MESA MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 20029993890\r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: TARCELO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nMobileNumber: 09151454687\r\nNationality: Filipino\r\nPermanentAddress1: 0276\r\nPermanentAddress2: BULIHAN\r\nPermanentBarangay: TABANGAO AMBULONG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000051603-0\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-0944844-1\r\nStreetName: \r\nTIN: 188-268-709-0000\r\nWeight: 63\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 0276\r\nAddress2: BULIHAN\r\nBarangay: TABANGAO AMBULONG\r\nBasicInformationId: 3709\r\nBirthDate: December 06, 1976\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marites.tarcelo@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARITES\r\nFullName: MARITES DC. TARCELO\r\nGender: Female\r\nGovernmentIdIssuedDate: December 26, 2024\r\nGovernmentIdNumber: 0498801\r\nGovernmentIdPlaceIssued: STA.MESA MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 20029993890\r\nHDMF: 1490-0092-0154\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: TARCELO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nMobileNumber: 09151454687\r\nNationality: Filipino\r\nPermanentAddress1: 0276\r\nPermanentAddress2: BULIHAN\r\nPermanentBarangay: TABANGAO AMBULONG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000051603-0\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-0944844-1\r\nStreetName: \r\nTIN: 188-268-709-0000\r\nWeight: 63\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767309	2025-03-07	08:21:00.7817057	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FOSTERING RESILIENCE STRENGTHENING MENTAL HEALTH PROGRAMS FOR DEPED STUDENTS AND PERSONNEL\r\nTrainingId: 0\r\nType:  TECHNICAL\r\n	admin	Trainings	1
767310	2025-03-07	08:21:40.9715675	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TEACHERS' CONGRESS: BASIC AND ACTION RESEARCH PROJECTS\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
767311	2025-03-07	08:23:35.0048686	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2024 DIVISION TRAINING FOR SPECIAL EDUCATION TEACHERS AND THE ADAPTATIONS OF PROGRAMS AND SERVICES FOR LEARNERS WITH DISABILITIES\r\nTrainingId: 0\r\nType:  TECHNICAL\r\n	admin	Trainings	1
767312	2025-03-07	08:24:57.1230049	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3709\r\nEmployeeTrainingId: 0\r\nFromDate: October 10, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, SDO BATANGAS CITY\r\nStatus: \r\nToDate: October 11, 2024\r\nTrainingId: 16321\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767313	2025-03-07	08:24:57.1311211	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3709\r\nEmployeeTrainingId: 0\r\nFromDate: September 30, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, SDO BATANGAS CITY\r\nStatus: \r\nToDate: February 10, 2024\r\nTrainingId: 16323\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767314	2025-03-07	08:25:09.1161768	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RE-ORIENTATION ON SCHOOL-BASED MANAGEMENT (SBM) FOR SCHOOL HEADS, SCHOOL SBM COORDINATORS AND SGC CHAIRPERSONS\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
767315	2025-03-07	08:26:03.3800933	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3711\r\nEmployeeTrainingId: 0\r\nFromDate: August 18, 2023\r\nHours: 4\r\nNatureOfParticipation: \r\nSponsoringAgency: ROTARY CLUB OF DOWNTOWN BATANGAS CITY\r\nStatus: \r\nToDate: August 18, 2023\r\nTrainingId: 15963\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767316	2025-03-07	08:26:03.3880669	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3711\r\nEmployeeTrainingId: 0\r\nFromDate: August 09, 2023\r\nHours: 4\r\nNatureOfParticipation: \r\nSponsoringAgency: COUNCIL FOR THE WELFARE OF THE CHILDREN\r\nStatus: \r\nToDate: August 09, 2023\r\nTrainingId: 16244\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767317	2025-03-07	08:26:03.3920533	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3711\r\nEmployeeTrainingId: 0\r\nFromDate: August 02, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - BATANGAS CITY\r\nStatus: \r\nToDate: August 02, 2023\r\nTrainingId: 16322\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767318	2025-03-07	08:26:03.3970367	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3711\r\nEmployeeTrainingId: 0\r\nFromDate: August 03, 2022\r\nHours: 4\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - BATANGAS CITY\r\nStatus: \r\nToDate: August 09, 2022\r\nTrainingId: 15797\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767319	2025-03-07	08:26:03.4020200	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3711\r\nEmployeeTrainingId: 0\r\nFromDate: February 02, 2022\r\nHours: 4\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - BATANGAS CITY\r\nStatus: \r\nToDate: February 02, 2022\r\nTrainingId: 16324\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767321	2025-03-07	08:28:26.8239255	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3711\r\nSkillId: 0\r\nSkillName: GARDENING\r\n	admin	Skills	1
767322	2025-03-07	08:28:26.8279121	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3711\r\nSkillId: 0\r\nSkillName: READING\r\n	admin	Skills	1
767323	2025-03-07	08:28:26.8378787	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3711\r\nSkillId: 0\r\nSkillName: INTERIOR DECORATING\r\n	admin	Skills	1
767324	2025-03-07	08:28:26.8418654	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3711\r\nSkillId: 0\r\nSkillName: HOSTING\r\n	admin	Skills	1
767325	2025-03-07	08:28:26.8498387	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3711\r\nRecognitionId: 0\r\nRecognitionName: GOLD MEDAL OF MERIT-2022\r\n	admin	Recognitions	1
767326	2025-03-07	08:28:26.8538254	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3711\r\nRecognitionId: 0\r\nRecognitionName: SILVER MEDAL OF MERIT-2020\r\n	admin	Recognitions	1
767327	2025-03-07	08:28:26.8588087	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3711\r\nRecognitionId: 0\r\nRecognitionName: BRONZE MEDAL OF MERIT-2013\r\n	admin	Recognitions	1
767328	2025-03-07	08:28:26.8637921	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3711\r\nRecognitionId: 0\r\nRecognitionName: GOLD SERVICE AWARD-2010\r\n	admin	Recognitions	1
767329	2025-03-07	08:28:26.8677789	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3711\r\nRecognitionId: 0\r\nRecognitionName: SILVER SERVICE AWARD-2007\r\n	admin	Recognitions	1
767330	2025-03-07	08:28:26.8727621	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3711\r\nRecognitionId: 0\r\nRecognitionName: BRONZ SERVICE AWARD-2004\r\n	admin	Recognitions	1
767331	2025-03-07	08:29:52.7813662	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3711\r\nOrganizationId: 0\r\nOrganizationName: BOY SCOUT OF THE PHILIPPINES\r\n	admin	Organizations	1
767332	2025-03-07	08:29:52.7903399	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3711\r\nOrganizationId: 0\r\nOrganizationName: PHILIPPINE RED CROSS\r\n	admin	Organizations	1
767333	2025-03-07	08:29:52.8202410	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3711\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY ADVISER OF ELEMENTARY AND SECONDARY SCHOOL PAPER\r\n	admin	Organizations	1
767334	2025-03-07	08:29:52.8371846	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3711\r\nOrganizationId: 0\r\nOrganizationName: PAMBANSANG SAMAHAN NG MGA TAGAPAGTAGUYOD SA FILIPINO-PASATAF\r\n	admin	Organizations	1
767338	2025-03-07	08:31:14.6469902	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO SUPREME\r\nBarangay: STO. NINO\r\nBasicInformationId: 3710\r\nBirthDate: March 07, 1978\r\nBirthPlace: CULASI, ANTIQUE\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: analyn.dinglasan@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANALYN\r\nFullName: ANALYN A. DINGLASAN\r\nGender: Female\r\nGovernmentIdIssuedDate: November 15, 1999\r\nGovernmentIdNumber: 0612339\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 78030700693\r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: ALORRO\r\nMobileNumber: 09053647110\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO SUPREME\r\nPermanentBarangay: STO. NINO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 19-000786890-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 33-6782729-5\r\nStreetName: \r\nTIN: 226-354-262-0000\r\nWeight: 53\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO SUPREME\r\nBarangay: STO. NINO\r\nBasicInformationId: 3710\r\nBirthDate: March 07, 1978\r\nBirthPlace: CULASI, ANTIQUE\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: analyn.dinglasan@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANALYN\r\nFullName: ANALYN A. DINGLASAN\r\nGender: Female\r\nGovernmentIdIssuedDate: November 15, 1999\r\nGovernmentIdNumber: 0612339\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 78030700693\r\nHDMF: 1210-2556-0336\r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: ALORRO\r\nMobileNumber: 09053647110\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO SUPREME\r\nPermanentBarangay: STO. NINO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 19-000786890-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 33-6782729-5\r\nStreetName: \r\nTIN: 226-354-262-0000\r\nWeight: 53\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767341	2025-03-07	08:36:24.0889115	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO CUTO-CUTO\r\nBarangay: MARUCLAP\r\nBasicInformationId: 0\r\nBirthDate: January 10, 1986\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: allan.arellano002@deped.gov.ph\r\nExtensionName: \r\nFirstName: ALLAN\r\nFullName: ALLAN C. ARELLANO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.7\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ARELLANO\r\nMaidenName: \r\nMiddleName: CLEOFE\r\nMobileNumber: 09660512857\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO CUTO-CUTO\r\nPermanentBarangay: MARUCLAP\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 84\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767336	2025-03-07	08:31:07.2547471	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3712\r\nEmployeeTrainingId: 0\r\nFromDate: May 20, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, SDO BATANGAS CITY\r\nStatus: \r\nToDate: May 24, 2024\r\nTrainingId: 15133\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767337	2025-03-07	08:31:07.2627904	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3712\r\nEmployeeTrainingId: 0\r\nFromDate: March 18, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, SDO BATANGAS CITY\r\nStatus: \r\nToDate: March 22, 2024\r\nTrainingId: 16326\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767339	2025-03-07	08:33:11.7566113	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2024 DISTRICT TEACHERS CONGRESS CUM TEACHERS\r\nTrainingId: 0\r\nType:  TECHNICAL\r\n	admin	Trainings	1
767340	2025-03-07	08:35:42.1240305	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: LEARNING AND DEVELOPMENT IN COLLABORATIVE EXPERTISE SESSIONS\r\nTrainingId: 0\r\nType:  TECHNICAL\r\n	admin	Trainings	1
767343	2025-03-07	08:37:40.4738065	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TECHNICAL ASSISTANCE PROVISION IN ESTABLISHING AND SUSTAINING KAPARTNER\r\nTrainingId: 0\r\nType:  TECHNICAL\r\n	admin	Trainings	1
767344	2025-03-07	08:38:11.6320325	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3712\r\nEmployeeTrainingId: 0\r\nFromDate: September 18, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, SDO BATANGAS CITY\r\nStatus: \r\nToDate: September 18, 2024\r\nTrainingId: 16323\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767345	2025-03-07	08:38:11.6380435	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3712\r\nEmployeeTrainingId: 0\r\nFromDate: July 16, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, SDO BATANGAS CITY\r\nStatus: \r\nToDate: July 16, 2024\r\nTrainingId: 6663\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767346	2025-03-07	08:38:11.6430520	<Undetected>	Delete	BasicInformationId: 3712\r\nEmployeeTrainingId: 9291\r\nFromDate: May 20, 2024\r\nHours: 40.00\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, SDO BATANGAS CITY\r\nStatus: \r\nToDate: May 24, 2024\r\nTrainingId: 15133\r\nTrainingPerformanceRate: 0\r\n	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	admin	EmployeeTrainings	1
767347	2025-03-07	08:38:11.6470580	<Undetected>	Delete	BasicInformationId: 3712\r\nEmployeeTrainingId: 9292\r\nFromDate: March 18, 2024\r\nHours: 40.00\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, SDO BATANGAS CITY\r\nStatus: \r\nToDate: March 22, 2024\r\nTrainingId: 16326\r\nTrainingPerformanceRate: 0\r\n	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	admin	EmployeeTrainings	1
767358	2025-03-07	08:43:24.2011183	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3712\r\nCharacterReferenceId: 0\r\nCompanyAddress: DALIG, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175040151\r\nExtensionName: \r\nFirstName: LEA\r\nLastName: FURTO\r\nMiddleName: C.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767359	2025-03-07	08:43:24.2051791	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3712\r\nCharacterReferenceId: 0\r\nCompanyAddress: TABANGAO, AMBULONG, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09151454687\r\nExtensionName: \r\nFirstName: MARITES\r\nLastName: TARCELO\r\nMiddleName: D.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767360	2025-03-07	08:43:24.2122031	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3712\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN WEST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09696098664\r\nExtensionName: \r\nFirstName: JOCELYN\r\nLastName: ADOYO\r\nMiddleName: S.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767362	2025-03-07	08:47:12.3527564	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: MALIGAYA VILLAGE ROAD\r\nAddress2: PUROK 1\r\nBarangay: GULOD ITAAS\r\nBasicInformationId: 3712\r\nBirthDate: October 15, 1989\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lucia.adeva@depe.gov.ph\r\nExtensionName: \r\nFirstName: LUCIA\r\nFullName: LUCIA C. ADEVA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ADEVA\r\nMaidenName: \r\nMiddleName: CAMACHO\r\nMobileNumber: 09127705002\r\nNationality: Filipino\r\nPermanentAddress1: MALIGAYA VILLAGE ROAD\r\nPermanentAddress2: PUROK 1\r\nPermanentBarangay: GULOD ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO KANLURAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO KANLURAN\r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: MALIGAYA VILLAGE ROAD\r\nAddress2: PUROK 1\r\nBarangay: GULOD ITAAS\r\nBasicInformationId: 3712\r\nBirthDate: October 15, 1989\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lucia.adeva@depe.gov.ph\r\nExtensionName: \r\nFirstName: LUCIA\r\nFullName: LUCIA C. ADEVA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 10, 2014\r\nGovernmentIdNumber: 1271763\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02004994187\r\nHDMF: 1211-2232-5522\r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ADEVA\r\nMaidenName: \r\nMiddleName: CAMACHO\r\nMobileNumber: 09127705002\r\nNationality: Filipino\r\nPermanentAddress1: MALIGAYA VILLAGE ROAD\r\nPermanentAddress2: PUROK 1\r\nPermanentBarangay: GULOD ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO KANLURAN\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050214181-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1986593-3\r\nStreetName: SITIO KANLURAN\r\nTIN: 454-867-229-0000\r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767348	2025-03-07	08:38:59.0379159	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3713\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 091793700323\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: IMEE\r\nFullName: IMEE SULIT\r\nGender: Female\r\nLastName: ARELLANO\r\nMaidenName: \r\nMiddleName: SULIT\r\nOccupation: TEACHING\r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
767349	2025-03-07	08:38:59.0488795	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3713\r\nBirthDate: September 09, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALLEENA ISIAH\r\nFullName: ALLEENA ISIAH SULIT ARELLANO\r\nGender: Male\r\nLastName: ARELLANO\r\nMaidenName: \r\nMiddleName: SULIT\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767350	2025-03-07	08:38:59.0538623	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO CUTO-CUTO\r\nBarangay: MARUCLAP\r\nBasicInformationId: 3713\r\nBirthDate: January 10, 1986\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: allan.arellano002@deped.gov.ph\r\nExtensionName: \r\nFirstName: ALLAN\r\nFullName: ALLAN C. ARELLANO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.7\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ARELLANO\r\nMaidenName: \r\nMiddleName: CLEOFE\r\nMobileNumber: 09660512857\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO CUTO-CUTO\r\nPermanentBarangay: MARUCLAP\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 84\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO CUTO-CUTO\r\nBarangay: MARUCLAP\r\nBasicInformationId: 3713\r\nBirthDate: January 10, 1986\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: allan.arellano002@deped.gov.ph\r\nExtensionName: \r\nFirstName: ALLAN\r\nFullName: ALLAN C. ARELLANO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.7\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ARELLANO\r\nMaidenName: \r\nMiddleName: CLEOFE\r\nMobileNumber: 09660512857\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO CUTO-CUTO\r\nPermanentBarangay: MARUCLAP\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 84\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767351	2025-03-07	08:38:59.0588458	<Undetected>	Update	BasicInformationId: 3713\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3510\r\n	BasicInformationId: 3713\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3510\r\n	admin	Questionnaires	1
767352	2025-03-07	08:40:37.3200613	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: FIFTH HONORS\r\nBasicInformationId: 3713\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1992\r\nDateTo: 1998\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: HALIGUE KANLURAN ELEMENTARY SCHOOL\r\nYearGraduated: 1998\r\n	admin	EducationalBackgrounds	1
767353	2025-03-07	08:40:37.3300279	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: FOURTH HONORS\r\nBasicInformationId: 3713\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1998\r\nDateTo: 2002\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: STO. NINO NATIONAL HIGH SCHOOL\r\nYearGraduated: 2002\r\n	admin	EducationalBackgrounds	1
767354	2025-03-07	08:40:37.3340146	<Undetected>	Update	BasicInformationId: 3713\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 091793700323\r\nEmployeeRelativeId: 3711\r\nExtensionName: \r\nFirstName: IMEE\r\nFullName: IMEE SULIT\r\nGender: Female\r\nLastName: ARELLANO\r\nMaidenName: \r\nMiddleName: SULIT\r\nOccupation: TEACHING\r\nRelationship: Wife\r\n	BasicInformationId: 3713\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 091793700323\r\nEmployeeRelativeId: 3711\r\nExtensionName: \r\nFirstName: IMEE\r\nFullName: IMEE ARELLANO\r\nGender: Female\r\nLastName: ARELLANO\r\nMaidenName: \r\nMiddleName: SULIT\r\nOccupation: TEACHING\r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
767355	2025-03-07	08:40:37.3419879	<Undetected>	Update	BasicInformationId: 3713\r\nBirthDate: September 09, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3712\r\nExtensionName: \r\nFirstName: ALLEENA ISIAH\r\nFullName: ALLEENA ISIAH SULIT ARELLANO\r\nGender: Male\r\nLastName: ARELLANO\r\nMaidenName: \r\nMiddleName: SULIT\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3713\r\nBirthDate: September 09, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3712\r\nExtensionName: \r\nFirstName: ALLEENA ISIAH\r\nFullName: ALLEENA ISIAH ARELLANO\r\nGender: Male\r\nLastName: ARELLANO\r\nMaidenName: \r\nMiddleName: SULIT\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767356	2025-03-07	08:43:01.9302201	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3713\r\nCourse: \r\nCourseId: 1270\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: ENGLISH\r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 2007\r\n	admin	EducationalBackgrounds	1
767357	2025-03-07	08:43:01.9411836	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3713\r\nCourse: \r\nCourseId: 1365\r\nCourseOrMajor: \r\nDateFrom: 2016\r\nDateTo: 2020\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: ENGLISH\r\nSchoolorUniversity: UNIVERSITY OF BATANGAS`\r\nYearGraduated: 2020\r\n	admin	EducationalBackgrounds	1
767372	2025-03-07	08:59:31.0017938	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3713\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,949.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: July 04, 2023\r\n	admin	Experiences	1
767361	2025-03-07	08:46:06.2698306	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO CUTO-CUTO\r\nBarangay: MARUCLAP\r\nBasicInformationId: 3713\r\nBirthDate: January 10, 1986\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: allan.arellano002@deped.gov.ph\r\nExtensionName: \r\nFirstName: ALLAN\r\nFullName: ALLAN C. ARELLANO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.7\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ARELLANO\r\nMaidenName: \r\nMiddleName: CLEOFE\r\nMobileNumber: 09660512857\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO CUTO-CUTO\r\nPermanentBarangay: MARUCLAP\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 84\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO CUTO-CUTO\r\nBarangay: MARUCLAP\r\nBasicInformationId: 3713\r\nBirthDate: January 10, 1986\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: allan.arellano002@deped.gov.ph\r\nExtensionName: \r\nFirstName: ALLAN\r\nFullName: ALLAN C. ARELLANO\r\nGender: Male\r\nGovernmentIdIssuedDate: December 05, 2007\r\nGovernmentIdNumber: 0955057\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02004127290\r\nHDMF: 1490-0008-0370\r\nHeight: 1.7\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ARELLANO\r\nMaidenName: \r\nMiddleName: CLEOFE\r\nMobileNumber: 09660512857\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO CUTO-CUTO\r\nPermanentBarangay: MARUCLAP\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050168651-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1849892-9\r\nStreetName: \r\nTIN: 252-538-481-0000\r\nWeight: 84\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767363	2025-03-07	08:47:41.7786121	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3713\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175028703\r\nExtensionName: \r\nFirstName: ROSALINA\r\nLastName: PANGANIBAN\r\nMiddleName: H\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767364	2025-03-07	08:47:41.7865855	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3713\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09275805470\r\nExtensionName: \r\nFirstName: NESTOR\r\nLastName: ALON\r\nMiddleName: E\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767365	2025-03-07	08:47:41.7905722	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3713\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09178770027\r\nExtensionName: \r\nFirstName: MARYDEL\r\nLastName: MARASIGAN\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767366	2025-03-07	08:53:34.4816567	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3713\r\nDateOfExamination: May 26, 2024\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: May 26, 2024\r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: BAUAN, BATANGAS\r\nRating: 76.72\r\nTitle: NATIONAL QUALIFYING EXAMINATION FOR SCHOOL HEADS\r\n	admin	Eligibilities	1
767367	2025-03-07	08:53:34.4916234	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3713\r\nDateOfExamination: August 26, 2007\r\nDateOfRelease: January 10, 2028\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 26, 2007\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0955057\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 80\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
767368	2025-03-07	08:56:01.8753644	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3713\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 03, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 56,390.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
767369	2025-03-07	08:56:01.8793511	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3713\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 37,024.00\r\nPositionHeld: HEAD TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 14-1\r\nStatus: Permanent\r\nToDate: January 02, 2025\r\n	admin	Experiences	1
767370	2025-03-07	08:57:51.6428979	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3713\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 35,434.00\r\nPositionHeld: HEAD TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: 2024\r\nRemarks: \r\nSalaryGradeAndStepIncrement: 14-1\r\nStatus: Permanent\r\nToDate: December 31, 2025\r\n	admin	Experiences	1
767371	2025-03-07	08:57:51.6468840	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3713\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 05, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 33,843.00\r\nPositionHeld: HEAD TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 14-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
767373	2025-03-07	08:59:31.0150605	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3713\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 30,427.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
767376	2025-03-07	09:00:31.2577454	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3713\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 28,905.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
767377	2025-03-07	09:01:26.3285735	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3713\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 28,589.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: June 30, 2021\r\n	admin	Experiences	1
767378	2025-03-07	09:03:31.6663536	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3713\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 27,067.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
767379	2025-03-07	09:03:31.6773170	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3713\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 25,545.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
767386	2025-03-07	09:04:43.8031160	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3713\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 24,510.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
767387	2025-03-07	09:05:30.9106214	<Undetected>	Update	BasicInformationId: 3713\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11460\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 35,434.00\r\nPositionHeld: HEAD TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: 2024\r\nRemarks: \r\nSalaryGradeAndStepIncrement: 14-1\r\nStatus: Permanent\r\nToDate: December 31, 2025\r\n	BasicInformationId: 3713\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11460\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 35,434.00\r\nPositionHeld: HEAD TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 14-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
767388	2025-03-07	09:06:40.2022535	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3713\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 24,224.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: June 30, 2018\r\n	admin	Experiences	1
767389	2025-03-07	09:07:30.7575555	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3713\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 23,257.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
767390	2025-03-07	09:09:44.4075984	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3713\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 22,328.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
767396	2025-03-07	09:11:15.1899799	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3713\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 21,436.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
767397	2025-03-07	09:11:15.1989501	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3713\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 08, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 18,735.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2015\r\n	admin	Experiences	1
767374	2025-03-07	08:59:31.7044677	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3712\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: VENANCIO\r\nFullName: VENANCIO CARINGAL CAMACHO\r\nGender: Male\r\nLastName: CAMACHO\r\nMaidenName: \r\nMiddleName: CARINGAL\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
767375	2025-03-07	08:59:31.7095025	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3712\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: TERESITA\r\nFullName: TERESITA COPO GAMAB\r\nGender: Female\r\nLastName: GAMAB\r\nMaidenName: \r\nMiddleName: COPO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
767380	2025-03-07	09:03:51.5439780	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3709\r\nBirthDate: November 22, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALLYNA\r\nFullName: ALLYNA DE CASTRO TARCELO\r\nGender: Female\r\nLastName: TARCELO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767381	2025-03-07	09:03:51.5490042	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3709\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ANTONINO MELANDO\r\nFullName: ANTONINO MELANDO BAUTRO DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: BAUTRO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
767382	2025-03-07	09:03:51.5590867	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3709\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CECILIA\r\nFullName: CECILIA MACATANGAY CLEOFE\r\nGender: Female\r\nLastName: CLEOFE\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
767383	2025-03-07	09:03:51.5641026	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 0276\r\nAddress2: BULIHAN\r\nBarangay: TABANGAO AMBULONG\r\nBasicInformationId: 3709\r\nBirthDate: December 06, 1976\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marites.tarcelo@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARITES\r\nFullName: MARITES DC. TARCELO\r\nGender: Female\r\nGovernmentIdIssuedDate: December 26, 2024\r\nGovernmentIdNumber: 0498801\r\nGovernmentIdPlaceIssued: STA.MESA MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 20029993890\r\nHDMF: 1490-0092-0154\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: TARCELO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nMobileNumber: 09151454687\r\nNationality: Filipino\r\nPermanentAddress1: 0276\r\nPermanentAddress2: BULIHAN\r\nPermanentBarangay: TABANGAO AMBULONG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000051603-0\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-0944844-1\r\nStreetName: \r\nTIN: 188-268-709-0000\r\nWeight: 63\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 0276\r\nAddress2: BULIHAN\r\nBarangay: TABANGAO AMBULONG\r\nBasicInformationId: 3709\r\nBirthDate: December 06, 1976\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marites.tarcelo@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARITES\r\nFullName: MARITES DC. TARCELO\r\nGender: Female\r\nGovernmentIdIssuedDate: December 26, 2024\r\nGovernmentIdNumber: 0498801\r\nGovernmentIdPlaceIssued: STA.MESA MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 20029993890\r\nHDMF: 1490-0092-0154\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: TARCELO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nMobileNumber: 09151454687\r\nNationality: Filipino\r\nPermanentAddress1: 0276\r\nPermanentAddress2: BULIHAN\r\nPermanentBarangay: TABANGAO AMBULONG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000051603-0\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: 04-0944844-1\r\nStreetName: \r\nTIN: 188-268-709-0000\r\nWeight: 63\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767384	2025-03-07	09:03:51.5711264	<Undetected>	Update	BasicInformationId: 3709\r\nBirthDate: January 01, 0001\r\nCivilStatus: Widow\r\nContactNumber: \r\nEmployeeRelativeId: 3697\r\nExtensionName: \r\nFirstName: ALVIN\r\nFullName: ALVIN TARCELO\r\nGender: Male\r\nLastName: TARCELO\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: OFW (SCAFFOLDING INSPECTOR)\r\nRelationship: Husband\r\n	BasicInformationId: 3709\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3697\r\nExtensionName: \r\nFirstName: ALVIN\r\nFullName: ALVIN CANTOS TARCELO\r\nGender: Male\r\nLastName: TARCELO\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: OFW (SCAFFOLDING INSPECTOR)\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
767385	2025-03-07	09:03:51.5751632	<Undetected>	Update	BasicInformationId: 3709\r\nBirthDate: August 24, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3698\r\nExtensionName: \r\nFirstName: ALTHEA\r\nFullName: ALTHEA TARCELO\r\nGender: Female\r\nLastName: TARCELO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3709\r\nBirthDate: August 24, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3698\r\nExtensionName: \r\nFirstName: ALTHEA\r\nFullName: ALTHEA DE CASTRO TARCELO\r\nGender: Female\r\nLastName: TARCELO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767391	2025-03-07	09:09:44.2524432	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: #31\r\nAddress2: \r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 0\r\nBirthDate: March 03, 1976\r\nBirthPlace: RIZAL, PANDAYAN TAAL BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rhodora.abas001@deped.gov.ph\r\nExtensionName: \r\nFirstName: RHODORA\r\nFullName: RHODORA M. ABAS\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7026892\r\nLastName: ABAS\r\nMaidenName: \r\nMiddleName: MAALA\r\nMobileNumber: 09605342485\r\nNationality: Filipino\r\nPermanentAddress1: #31\r\nPermanentAddress2: \r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: MASITERA STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: MASITERA STREET\r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767392	2025-03-07	09:09:44.2887717	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3714\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09951557065\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RUEL\r\nFullName: RUEL UCOL ABAS\r\nGender: Male\r\nLastName: ABAS\r\nMaidenName: \r\nMiddleName: UCOL\r\nOccupation: SAFETY OFFICER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
767393	2025-03-07	09:09:44.2887717	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3714\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROGELIO\r\nFullName: ROGELIO FORMENTOS MAALA\r\nGender: Male\r\nLastName: MAALA\r\nMaidenName: \r\nMiddleName: FORMENTOS\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
767394	2025-03-07	09:09:44.2897775	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3714\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: TERESITA\r\nFullName: TERESITA DIMAANO REYES\r\nGender: Female\r\nLastName: REYES\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
767395	2025-03-07	09:09:44.2897775	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3714\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
767398	2025-03-07	09:11:41.4696178	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER OF ARTS IN ELEMENTARY EDUCATION (MAED) NON-THESIS\r\nLevel: Master's\r\n	admin	Courses	1
767399	2025-03-07	09:13:10.0419427	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3713\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 18,799.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: July 07, 2014\r\n	admin	Experiences	1
767400	2025-03-07	09:13:10.0469259	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3713\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 08, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 17,099.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
767401	2025-03-07	09:13:10.0519093	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3713\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 09, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 17,099.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: July 07, 2011\r\n	admin	Experiences	1
767402	2025-03-07	09:44:19.4190107	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING FOR SCHOOL LEADERS CUM MATATAG CURRICULUM COLLOQUIUM\r\nTrainingId: 0\r\nType: MANAGERIAL\r\n	admin	Trainings	1
767403	2025-03-07	09:46:07.3030485	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPABILITY BUILDING FOR SPECIAL EDUCATION AND RECEIVING TEACHERS ON FILIPINO SIGN LANGUAGE\r\nTrainingId: 0\r\nType: MANAGERIAL\r\n	admin	Trainings	1
767404	2025-03-07	09:47:02.5331560	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3713\r\nEmployeeTrainingId: 0\r\nFromDate: December 09, 2024\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OFFICE OF BATANGAS CITY\r\nStatus: \r\nToDate: December 10, 2024\r\nTrainingId: 16330\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767405	2025-03-07	09:47:02.5421259	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3713\r\nEmployeeTrainingId: 0\r\nFromDate: December 05, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OFFICE OF BATANGAS CITY\r\nStatus: \r\nToDate: December 07, 2024\r\nTrainingId: 16331\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767406	2025-03-07	09:48:21.0964731	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPACITY BUILDING FOR EDUCATION ON INCLUSIVE EDUCATION CUM AWARENESS ON FILIPINO SIGN LANGUAGE\r\nTrainingId: 0\r\nType: MANAGERIAL\r\n	admin	Trainings	1
767407	2025-03-07	09:50:29.7283758	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION OF COMPREHENSIVE SEXUALITY EDUCATION (CSE) - ADOLESCENT REPRODUCTIVE HEALTH (ARH) PROGRAM CONVERGENCE\r\nTrainingId: 0\r\nType: MANAGERIAL\r\n	admin	Trainings	1
767408	2025-03-07	09:51:19.3035719	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3714\r\nCourse: \r\nCourseId: 1369\r\nCourseOrMajor: \r\nDateFrom: 2004\r\nDateTo: 2019\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2019\r\n	admin	EducationalBackgrounds	1
767409	2025-03-07	09:51:19.3085867	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3714\r\nDateOfExamination: \r\nDateOfRelease: March 03, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0241338\r\nPlaceOfExamination: UNIVERSITY OF STO. TOMAS\r\nRating: \r\nTitle: LICENSURE EXAMINATION FOR TEACHERS (LET)\r\n	admin	Eligibilities	1
767410	2025-03-07	09:51:19.3125996	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3714\r\nCompanyInstitution: JOSE C. PASTOR MES\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 416,796.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: March 07, 2025\r\n	admin	Experiences	1
767411	2025-03-07	09:51:19.3180750	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3714\r\nCompanyInstitution: JOSE C. PASTOR MES\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 398,196.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
767465	2025-03-07	10:09:57.0963259	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3715\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
767412	2025-03-07	09:51:19.3220878	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3714\r\nCompanyInstitution: JOSE C. PASTOR MES\r\nExperienceId: 0\r\nFromDate: November 03, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 379,596.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
767413	2025-03-07	09:51:19.3272650	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3714\r\nCompanyInstitution: JOSE C. PASTOR MES\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 375,840.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: November 02, 2023\r\n	admin	Experiences	1
767414	2025-03-07	09:51:19.3314648	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3714\r\nCompanyInstitution: JOSE C. PASTOR MES\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 357,576.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
767415	2025-03-07	09:51:19.3357041	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3714\r\nCompanyInstitution: SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 339,312.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
767416	2025-03-07	09:51:19.3409441	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3714\r\nCompanyInstitution: SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: November 03, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 321,048.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
767417	2025-03-07	09:51:19.3451308	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3714\r\nCompanyInstitution: SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 300,804.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: November 02, 2020\r\n	admin	Experiences	1
767418	2025-03-07	09:51:19.3491882	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3714\r\nCompanyInstitution: SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 282,120.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
767419	2025-03-07	09:51:19.3542063	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3714\r\nCompanyInstitution: SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: September 16, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 268,920.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
767420	2025-03-07	09:51:19.3592140	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3714\r\nCompanyInstitution: SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: September 03, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 268,920.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: September 15, 2018\r\n	admin	Experiences	1
767421	2025-03-07	09:51:19.3632479	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3714\r\nCompanyInstitution: SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 268,920.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: September 02, 2018\r\n	admin	Experiences	1
767422	2025-03-07	09:51:19.3682559	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3714\r\nCompanyInstitution: SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 259,512.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
767423	2025-03-07	09:51:19.3722618	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3714\r\nCompanyInstitution: SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 250,440.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
767424	2025-03-07	09:51:19.3772697	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: #31\r\nAddress2: \r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3714\r\nBirthDate: March 03, 1976\r\nBirthPlace: RIZAL, PANDAYAN TAAL BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rhodora.abas001@deped.gov.ph\r\nExtensionName: \r\nFirstName: RHODORA\r\nFullName: RHODORA M. ABAS\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7026892\r\nLastName: ABAS\r\nMaidenName: \r\nMiddleName: MAALA\r\nMobileNumber: 09605342485\r\nNationality: Filipino\r\nPermanentAddress1: #31\r\nPermanentAddress2: \r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: MASITERA STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: MASITERA STREET\r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: #31\r\nAddress2: \r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3714\r\nBirthDate: March 03, 1976\r\nBirthPlace: RIZAL, PANDAYAN TAAL BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rhodora.abas001@deped.gov.ph\r\nExtensionName: \r\nFirstName: RHODORA\r\nFullName: RHODORA M. ABAS\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7026892\r\nLastName: ABAS\r\nMaidenName: \r\nMiddleName: MAALA\r\nMobileNumber: 09605342485\r\nNationality: Filipino\r\nPermanentAddress1: #31\r\nPermanentAddress2: \r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: MASITERA STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: MASITERA STREET\r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767425	2025-03-07	09:51:19.3812771	<Undetected>	Update	BasicInformationId: 3714\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09951557065\r\nEmployeeRelativeId: 3718\r\nExtensionName: \r\nFirstName: RUEL\r\nFullName: RUEL UCOL ABAS\r\nGender: Male\r\nLastName: ABAS\r\nMaidenName: \r\nMiddleName: UCOL\r\nOccupation: SAFETY OFFICER\r\nRelationship: Husband\r\n	BasicInformationId: 3714\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09951557065\r\nEmployeeRelativeId: 3718\r\nExtensionName: \r\nFirstName: RUEL\r\nFullName: RUEL ABAS\r\nGender: Male\r\nLastName: ABAS\r\nMaidenName: \r\nMiddleName: UCOL\r\nOccupation: SAFETY OFFICER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
767426	2025-03-07	09:51:19.3862927	<Undetected>	Update	BasicInformationId: 3714\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3719\r\nExtensionName: \r\nFirstName: ROGELIO\r\nFullName: ROGELIO FORMENTOS MAALA\r\nGender: Male\r\nLastName: MAALA\r\nMaidenName: \r\nMiddleName: FORMENTOS\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3714\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3719\r\nExtensionName: \r\nFirstName: ROGELIO\r\nFullName: ROGELIO MAALA\r\nGender: Male\r\nLastName: MAALA\r\nMaidenName: \r\nMiddleName: FORMENTOS\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
767427	2025-03-07	09:51:19.3913004	<Undetected>	Update	BasicInformationId: 3714\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3720\r\nExtensionName: \r\nFirstName: TERESITA\r\nFullName: TERESITA DIMAANO REYES\r\nGender: Female\r\nLastName: REYES\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3714\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3720\r\nExtensionName: \r\nFirstName: TERESITA\r\nFullName: TERESITA REYES\r\nGender: Female\r\nLastName: REYES\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
767428	2025-03-07	09:51:19.3953078	<Undetected>	Update	BasicInformationId: 3714\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3511\r\n	BasicInformationId: 3714\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3511\r\n	admin	Questionnaires	1
767433	2025-03-07	09:55:58.6566419	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3714\r\nCompanyInstitution: SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: January 06, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 241,680.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
767434	2025-03-07	09:55:58.6616420	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3714\r\nCompanyInstitution: SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: September 24, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 239,280.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: November 05, 2015\r\n	admin	Experiences	1
767435	2025-03-07	09:55:58.6690970	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3714\r\nCompanyInstitution: SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: September 20, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 239,280.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: September 23, 2013\r\n	admin	Experiences	1
767436	2025-03-07	09:55:58.6740973	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3714\r\nCompanyInstitution: SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: August 29, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 239,280.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: September 19, 2013\r\n	admin	Experiences	1
767437	2025-03-07	09:55:58.6790973	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3714\r\nCompanyInstitution: SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: August 28, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 239,280.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: August 28, 2013\r\n	admin	Experiences	1
767429	2025-03-07	09:51:54.3250854	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3713\r\nEmployeeTrainingId: 0\r\nFromDate: December 02, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OFFICE OF BATANGAS CITY\r\nStatus: \r\nToDate: December 04, 2024\r\nTrainingId: 16332\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767430	2025-03-07	09:51:54.3290721	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3713\r\nEmployeeTrainingId: 0\r\nFromDate: November 11, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 11, 2024\r\nTrainingId: 16333\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767431	2025-03-07	09:51:54.3340555	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3713\r\nEmployeeTrainingId: 0\r\nFromDate: October 10, 2024\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OFFICE OF BATANGAS CITY\r\nStatus: \r\nToDate: October 11, 2024\r\nTrainingId: 16321\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767432	2025-03-07	09:53:14.9718063	<Undetected>	Update	BasicInformationId: 3713\r\nEmployeeTrainingId: 9298\r\nFromDate: November 11, 2024\r\nHours: 8.00\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 11, 2024\r\nTrainingId: 16333\r\nTrainingPerformanceRate: 0\r\n	BasicInformationId: 3713\r\nEmployeeTrainingId: 9298\r\nFromDate: November 11, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OFFICE OF BATANGAS CITY\r\nStatus: \r\nToDate: November 11, 2024\r\nTrainingId: 16333\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767438	2025-03-07	09:56:49.5289993	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3713\r\nSkillId: 0\r\nSkillName: PLAYING BASKETBALL\r\n	admin	Skills	1
767439	2025-03-07	09:56:49.5389661	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3713\r\nSkillId: 0\r\nSkillName: PLAYING VOLLEYBALL\r\n	admin	Skills	1
767440	2025-03-07	09:56:49.5439492	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3713\r\nRecognitionId: 0\r\nRecognitionName: CERTIFICATE OF RECOGNITION AS PROCESS OBSERVER DURING DIVISION ROLL OUT OF HIGHER ORDER THINKING SKILLS PROFESSIONAL LEARNING PACKAGES (HOTS-PLPs) FOR ENGLISH, SCIENCE AND MATHEMATICS TEACHERS \r\n	admin	Recognitions	1
767441	2025-03-07	09:56:49.5479359	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3713\r\nRecognitionId: 0\r\nRecognitionName: FIRST PLACE IN SEARCH FOR OUTSTANDING TEACHING-RELATED PERSONNEL DURING 3RD DISTRICT GAWAD STAR\r\n	admin	Recognitions	1
767442	2025-03-07	09:56:49.5549126	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3713\r\nRecognitionId: 0\r\nRecognitionName: TWG - LOGISTICS AND CERTIFICATES DURING 3RD DISTRICT GAWAD STAR \r\n	admin	Recognitions	1
767444	2025-03-07	09:59:30.9972344	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3713\r\nRecognitionId: 0\r\nRecognitionName: AUTHOR/CONTRIBUTOR OF DAILY LESSON PLAN (DLP) FOR GRADE 9 ENGLISH DURING FIRST QUEARTER OF SY 2023-2024\r\n	admin	Recognitions	1
767445	2025-03-07	09:59:31.0022176	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3713\r\nRecognitionId: 0\r\nRecognitionName: SCHOOL HEAD OF HALIGUE SILANGAN NHS BEING THE FIRST PLACE IN THE BRIGADA EXCELLENCE AWARD-SMALL CATEGORY DURING LGU-PTA SYNERGY TOWARDS EXCELLENCE IN EDUCATION AND AWARDING OF BRIGADA ESKWELA\r\n	admin	Recognitions	1
767446	2025-03-07	10:02:34.3996343	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3713\r\nRecognitionId: 0\r\nRecognitionName: OUTSTANDING TEACHING-RELATED PERSONNEL IN THE DIVISION-FINALIST \r\n	admin	Recognitions	1
767447	2025-03-07	10:02:34.4105980	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3713\r\nRecognitionId: 0\r\nRecognitionName: CERTIFICATE OF PUBLICATION OF RESEARCH TITLED PROPOSED CAPABILITY BUILDING ACTIVITIES IN TEACHING COMMUNICATION SKILLS FOR ALTERNATIVE LEARNING SYSTEM (ALS) IMPLEMENTERS PUBLISHED IN INTERNATIONAL MAGAZINE NAMED THE EDUCATOR'S LINK: CONNECTING TEACHERS AROUND THE GLOBE, VOL. 2, NO. 1, JANUARY 2022\r\n	admin	Recognitions	1
767448	2025-03-07	10:02:34.4145847	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3713\r\nOrganizationId: 0\r\nOrganizationName: MEMBER, INSTABRIGHT INTERNATIONAL GUILD OF RESEARCHERS AND EDUCATORS\r\n	admin	Organizations	1
767449	2025-03-07	10:02:34.4195679	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3713\r\nOrganizationId: 0\r\nOrganizationName: MEMBER, SAN ISIDRO LAY MINISTERS\r\n	admin	Organizations	1
767450	2025-03-07	10:02:34.4275414	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3713\r\nOrganizationId: 0\r\nOrganizationName: MEMBER, ADORACION NOCTURNA FILIPINA\r\n	admin	Organizations	1
767464	2025-03-07	10:09:57.0594671	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SOROSORO IBABA\r\nBasicInformationId: 0\r\nBirthDate: August 07, 1981\r\nBirthPlace: MAYURO, ROSARIO, BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: anabelle.hernandez@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANABELLE\r\nFullName: ANABELLE DC. HERNANDEZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: HERNANDEZ\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nMobileNumber: 09089456368\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SOROSORO IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 101\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767443	2025-03-07	09:57:06.2651080	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3714\r\nCompanyInstitution: SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: November 06, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 239,280.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: August 27, 2013\r\n	admin	Experiences	1
767451	2025-03-07	10:06:17.7909563	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3714\r\nCompanyInstitution: SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 222,588.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: November 05, 2012\r\n	admin	Experiences	1
767452	2025-03-07	10:06:17.7960789	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3714\r\nCompanyInstitution: SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 205,188.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
767453	2025-03-07	10:06:17.8003526	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3714\r\nCompanyInstitution: SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: September 15, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 205,188.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
767454	2025-03-07	10:06:17.8043655	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3714\r\nCompanyInstitution: SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: August 16, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 187,788.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: September 14, 2010\r\n	admin	Experiences	1
767455	2025-03-07	10:06:17.8093822	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3714\r\nCompanyInstitution: SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: August 01, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 187,788.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: August 15, 2010\r\n	admin	Experiences	1
767456	2025-03-07	10:06:17.8135898	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3714\r\nCompanyInstitution: SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: July 30, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 187,788.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: July 30, 2010\r\n	admin	Experiences	1
767457	2025-03-07	10:06:17.8186496	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3714\r\nCompanyInstitution: SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 187,788.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: July 29, 2010\r\n	admin	Experiences	1
767458	2025-03-07	10:06:17.8236497	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3714\r\nCompanyInstitution: SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: February 11, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 170,376.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
767459	2025-03-07	10:06:17.8280934	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3714\r\nCompanyInstitution: SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: January 11, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 170,376.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: February 10, 2010\r\n	admin	Experiences	1
767460	2025-03-07	10:06:17.8331091	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3714\r\nCompanyInstitution: SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: January 07, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 170,376.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 11, 2010\r\n	admin	Experiences	1
767461	2025-03-07	10:06:17.8371223	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3714\r\nCompanyInstitution: SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 144,312.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
767462	2025-03-07	10:06:17.8421564	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3714\r\nCompanyInstitution: SOUTH DISTRICT\r\nExperienceId: 0\r\nFromDate: August 15, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 131,196.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
767463	2025-03-07	10:09:45.3974929	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BATANGAS CULTURE AND ARTS COUNCIL-MUSIC SECTOR CHORAL TRAINING\r\nTrainingId: 0\r\nType:  TECHNICAL\r\n	admin	Trainings	1
767466	2025-03-07	10:12:09.7732773	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2022 DIVISION TRAINING WORKSHOP FOR THE READING RECOVERY BRIGADE\r\nTrainingId: 0\r\nType: Participant\r\n	admin	Trainings	1
767470	2025-03-07	10:16:18.0927112	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: VIDEO EDITING APPLICATIONS 101\r\nTrainingId: 0\r\nType: Participant\r\n	admin	Trainings	1
767477	2025-03-07	10:18:39.3168166	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PHOTO EDITING AND DIGITAL BANNER DESIGN USING GIMP FOR INSTRUCTIONAL VIDEO DEVELOPMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
767479	2025-03-07	10:20:45.0382696	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3714\r\nEmployeeTrainingId: 0\r\nFromDate: August 03, 2022\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: REGION IV-CALABARZON\r\nStatus: \r\nToDate: August 05, 2022\r\nTrainingId: 16335\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767480	2025-03-07	10:20:45.0462698	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3714\r\nEmployeeTrainingId: 0\r\nFromDate: December 19, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: December 19, 2024\r\nTrainingId: 16318\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767481	2025-03-07	10:20:45.0512699	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3714\r\nEmployeeTrainingId: 0\r\nFromDate: October 14, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: BATANGAS CULTURE AND ARTS COUNCIL\r\nStatus: \r\nToDate: October 14, 2023\r\nTrainingId: 16334\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767482	2025-03-07	10:20:45.0562699	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3714\r\nEmployeeTrainingId: 0\r\nFromDate: August 24, 2022\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: OFFICE OF THE UNDERSECRETARY FOR ADMINISTRATION\r\nStatus: \r\nToDate: September 03, 2021\r\nTrainingId: 16336\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767483	2025-03-07	10:20:45.0602699	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3714\r\nEmployeeTrainingId: 0\r\nFromDate: August 30, 2021\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: OFFICE OF THE UNDERSECRETARY FOR ADMINISTRATION\r\nStatus: \r\nToDate: September 03, 2021\r\nTrainingId: 16337\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767487	2025-03-07	10:23:46.2135625	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3714\r\nSkillId: 0\r\nSkillName: N/A\r\n	admin	Skills	1
767488	2025-03-07	10:23:46.2323359	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3714\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
767489	2025-03-07	10:23:46.2403943	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3714\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
767490	2025-03-07	10:23:46.2473943	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3714\r\nCharacterReferenceId: 0\r\nCompanyAddress: AMBULONG, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09151454687\r\nExtensionName: \r\nFirstName: MARITES \r\nLastName: TARCELO\r\nMiddleName: D.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767491	2025-03-07	10:23:46.2513939	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3714\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN WEST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 723-7361\r\nExtensionName: \r\nFirstName: LENY\r\nLastName: BOOL\r\nMiddleName: M.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767492	2025-03-07	10:23:46.2593943	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3714\r\nCharacterReferenceId: 0\r\nCompanyAddress: DALIG, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09186126205\r\nExtensionName: \r\nFirstName: LOIDA\r\nLastName: ALUAN\r\nMiddleName: R.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767506	2025-03-07	10:43:52.3954639	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3715\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 15\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16339\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767467	2025-03-07	10:12:32.3659136	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3715\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09913568692\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CHITO\r\nFullName: CHITO BALMES HERNANDEZ\r\nGender: Male\r\nLastName: HERNANDEZ\r\nMaidenName: \r\nMiddleName: BALMES\r\nOccupation: ASSISTANT CHIEF MECHANIC\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
767468	2025-03-07	10:12:32.3708968	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3715\r\nBirthDate: September 29, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: TYRON CHAN\r\nFullName: TYRON CHAN DE CASTRO HERNANDEZ\r\nGender: Male\r\nLastName: HERNANDEZ\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767469	2025-03-07	10:12:32.3798670	<Undetected>	Update	BasicInformationId: 3715\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3512\r\n	BasicInformationId: 3715\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3512\r\n	admin	Questionnaires	1
767471	2025-03-07	10:17:05.2878389	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: WITH HONORS\r\nBasicInformationId: 3715\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1988\r\nDateTo: 1994\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: PINAMUKAN ELEMENTARY SCHOOL\r\nYearGraduated: 1994\r\n	admin	EducationalBackgrounds	1
767472	2025-03-07	10:17:05.2988025	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: WITH HONORS\r\nBasicInformationId: 3715\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 1998\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: PINAMUKAN NATIONAL HIGH SCHOOL\r\nYearGraduated: 1998\r\n	admin	EducationalBackgrounds	1
767473	2025-03-07	10:17:05.3027889	<Undetected>	Update	BasicInformationId: 3715\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09913568692\r\nEmployeeRelativeId: 3721\r\nExtensionName: \r\nFirstName: CHITO\r\nFullName: CHITO BALMES HERNANDEZ\r\nGender: Male\r\nLastName: HERNANDEZ\r\nMaidenName: \r\nMiddleName: BALMES\r\nOccupation: ASSISTANT CHIEF MECHANIC\r\nRelationship: Husband\r\n	BasicInformationId: 3715\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09913568692\r\nEmployeeRelativeId: 3721\r\nExtensionName: \r\nFirstName: CHITO\r\nFullName: CHITO HERNANDEZ\r\nGender: Male\r\nLastName: HERNANDEZ\r\nMaidenName: \r\nMiddleName: BALMES\r\nOccupation: ASSISTANT CHIEF MECHANIC\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
767474	2025-03-07	10:17:05.3117589	<Undetected>	Update	BasicInformationId: 3715\r\nBirthDate: September 29, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3722\r\nExtensionName: \r\nFirstName: TYRON CHAN\r\nFullName: TYRON CHAN DE CASTRO HERNANDEZ\r\nGender: Male\r\nLastName: HERNANDEZ\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3715\r\nBirthDate: September 29, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3722\r\nExtensionName: \r\nFirstName: TYRON CHAN\r\nFullName: TYRON CHAN HERNANDEZ\r\nGender: Male\r\nLastName: HERNANDEZ\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767475	2025-03-07	10:18:35.7187660	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: WITH HONORS\r\nBasicInformationId: 3715\r\nCourse: \r\nCourseId: 1270\r\nCourseOrMajor: \r\nDateFrom: 1998\r\nDateTo: 2002\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2002\r\n	admin	EducationalBackgrounds	1
767476	2025-03-07	10:18:35.7287321	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3715\r\nCourse: \r\nCourseId: 1367\r\nCourseOrMajor: \r\nDateFrom: 2013\r\nDateTo: 2016\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: POLYTHECNIC UNIVERSITY OF THE PHILIPPINES\r\nYearGraduated: 2016\r\n	admin	EducationalBackgrounds	1
767478	2025-03-07	10:20:17.1177014	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SOROSORO IBABA\r\nBasicInformationId: 3715\r\nBirthDate: August 07, 1981\r\nBirthPlace: MAYURO, ROSARIO, BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: anabelle.hernandez@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANABELLE\r\nFullName: ANABELLE DC. HERNANDEZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: HERNANDEZ\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nMobileNumber: 09089456368\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SOROSORO IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 101\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SOROSORO IBABA\r\nBasicInformationId: 3715\r\nBirthDate: August 07, 1981\r\nBirthPlace: MAYURO, ROSARIO, BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: anabelle.hernandez@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANABELLE\r\nFullName: ANABELLE DC. HERNANDEZ\r\nGender: Female\r\nGovernmentIdIssuedDate: May 12, 2007\r\nGovernmentIdNumber: 0982026\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: 02111581226\r\nHDMF: 1211-4544-4516\r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: HERNANDEZ\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nMobileNumber: 09089456368\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SOROSORO IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025033653-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 303-549-785-0000\r\nWeight: 101\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767484	2025-03-07	10:22:14.3355418	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3715\r\nCharacterReferenceId: 0\r\nCompanyAddress: SOROSORO IBABA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09634017328\r\nExtensionName: \r\nFirstName: ARIEL\r\nLastName: REYES\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767485	2025-03-07	10:22:14.3425185	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3715\r\nCharacterReferenceId: 0\r\nCompanyAddress: SOROSORO ILAYA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09777416115\r\nExtensionName: \r\nFirstName: CRISTILENE\r\nLastName: MAGBOJOS\r\nMiddleName: Q\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767486	2025-03-07	10:22:14.3475021	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3715\r\nCharacterReferenceId: 0\r\nCompanyAddress: CUTA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09695693894\r\nExtensionName: \r\nFirstName: MA. KIMBERLIE\r\nLastName: DALISAY\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767493	2025-03-07	10:23:59.0445553	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3715\r\nDateOfExamination: May 12, 2007\r\nDateOfRelease: August 07, 2028\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: May 12, 2007\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0982026\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 75\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
767494	2025-03-07	10:27:07.7400558	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: #31\r\nAddress2: \r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3714\r\nBirthDate: March 03, 1976\r\nBirthPlace: RIZAL, PANDAYAN TAAL BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rhodora.abas001@deped.gov.ph\r\nExtensionName: \r\nFirstName: RHODORA\r\nFullName: RHODORA M. ABAS\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7026892\r\nLastName: ABAS\r\nMaidenName: \r\nMiddleName: MAALA\r\nMobileNumber: 09605342485\r\nNationality: Filipino\r\nPermanentAddress1: #31\r\nPermanentAddress2: \r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: MASITERA STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: MASITERA STREET\r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: #31\r\nAddress2: \r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3714\r\nBirthDate: March 03, 1976\r\nBirthPlace: RIZAL, PANDAYAN TAAL BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rhodora.abas001@deped.gov.ph\r\nExtensionName: \r\nFirstName: RHODORA\r\nFullName: RHODORA M. ABAS\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: 0241338\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: 00431801140\r\nHDMF: 1490-0098-4543\r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7026892\r\nLastName: ABAS\r\nMaidenName: \r\nMiddleName: MAALA\r\nMobileNumber: 09605342485\r\nNationality: Filipino\r\nPermanentAddress1: #31\r\nPermanentAddress2: \r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: MASITERA STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050014044-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: MASITERA STREET\r\nTIN: 918-073-524-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767495	2025-03-07	10:40:00.5064929	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: POTENCIANA VILLAGE\r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 0\r\nBirthDate: November 26, 1980\r\nBirthPlace: ALABANG MUNTINLUPA, METRO MANILA\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jocelyn.adoyo@deped.gov.ph\r\nExtensionName: \r\nFirstName: JOCELYN\r\nFullName: JOCELYN S. ADOYO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 3112903\r\nLastName: ADOYO\r\nMaidenName: \r\nMiddleName: SALAS\r\nMobileNumber: 09696098664\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: POTENCIANA VILLAGE\r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: JASMINE STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: JASMINE STREET\r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767496	2025-03-07	10:40:00.8511749	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3716\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
767497	2025-03-07	10:41:40.1615318	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MASTER CLASSES FOR GRADE 4 TEACHERS ACROSS ALL LEARNING AREAS\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
767498	2025-03-07	10:43:06.7985463	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MASTER CLASSES FOR GRADE 7 TEACHERS ACROSS ALL LEARNING AREAS\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
767499	2025-03-07	10:43:26.2643197	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3716\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALJUNE\r\nFullName: ALJUNE SIGUE ADOYO\r\nGender: Male\r\nLastName: ADOYO\r\nMaidenName: \r\nMiddleName: SIGUE\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
767500	2025-03-07	10:43:26.2693571	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3716\r\nBirthDate: November 06, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: KRISTEN GABRIELLE\r\nFullName: KRISTEN GABRIELLE SALAS ADOYO\r\nGender: Female\r\nLastName: ADOYO\r\nMaidenName: \r\nMiddleName: SALAS\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767501	2025-03-07	10:43:26.2793571	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3716\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PEDRO DAVID\r\nFullName: PEDRO DAVID GUTIERREZ SALAS\r\nGender: Male\r\nLastName: SALAS\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
767502	2025-03-07	10:43:26.2834785	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3716\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: VICTORIA\r\nFullName: VICTORIA SOLIS RAMOS\r\nGender: Female\r\nLastName: RAMOS\r\nMaidenName: \r\nMiddleName: SOLIS\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
767505	2025-03-07	10:43:52.3894838	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3715\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 15\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16338\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767598	2025-03-07	13:35:04.0628051	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3718\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
767503	2025-03-07	10:43:26.2896385	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: POTENCIANA VILLAGE\r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3716\r\nBirthDate: November 26, 1980\r\nBirthPlace: ALABANG MUNTINLUPA, METRO MANILA\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jocelyn.adoyo@deped.gov.ph\r\nExtensionName: \r\nFirstName: JOCELYN\r\nFullName: JOCELYN S. ADOYO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 3112903\r\nLastName: ADOYO\r\nMaidenName: \r\nMiddleName: SALAS\r\nMobileNumber: 09696098664\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: POTENCIANA VILLAGE\r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: JASMINE STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: JASMINE STREET\r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: POTENCIANA VILLAGE\r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3716\r\nBirthDate: November 26, 1980\r\nBirthPlace: ALABANG MUNTINLUPA, METRO MANILA\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jocelyn.adoyo@deped.gov.ph\r\nExtensionName: \r\nFirstName: JOCELYN\r\nFullName: JOCELYN S. ADOYO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 3112903\r\nLastName: ADOYO\r\nMaidenName: \r\nMiddleName: SALAS\r\nMobileNumber: 09696098664\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: POTENCIANA VILLAGE\r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: JASMINE STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: JASMINE STREET\r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767504	2025-03-07	10:43:26.2946548	<Undetected>	Update	BasicInformationId: 3716\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3513\r\n	BasicInformationId: 3716\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3513\r\n	admin	Questionnaires	1
767507	2025-03-07	10:45:24.2740459	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3716\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2016\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: METRO MANILA COLLEGE\r\nYearGraduated: 2015\r\n	admin	EducationalBackgrounds	1
767508	2025-03-07	10:45:24.2878436	<Undetected>	Update	BasicInformationId: 3716\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3723\r\nExtensionName: \r\nFirstName: ALJUNE\r\nFullName: ALJUNE SIGUE ADOYO\r\nGender: Male\r\nLastName: ADOYO\r\nMaidenName: \r\nMiddleName: SIGUE\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3716\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3723\r\nExtensionName: \r\nFirstName: ALJUNE\r\nFullName: ALJUNE ADOYO\r\nGender: Male\r\nLastName: ADOYO\r\nMaidenName: \r\nMiddleName: SIGUE\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
767509	2025-03-07	10:45:24.3056915	<Undetected>	Update	BasicInformationId: 3716\r\nBirthDate: November 06, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3724\r\nExtensionName: \r\nFirstName: KRISTEN GABRIELLE\r\nFullName: KRISTEN GABRIELLE SALAS ADOYO\r\nGender: Female\r\nLastName: ADOYO\r\nMaidenName: \r\nMiddleName: SALAS\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3716\r\nBirthDate: November 06, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3724\r\nExtensionName: \r\nFirstName: KRISTEN GABRIELLE\r\nFullName: KRISTEN GABRIELLE ADOYO\r\nGender: Female\r\nLastName: ADOYO\r\nMaidenName: \r\nMiddleName: SALAS\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767510	2025-03-07	10:45:24.3129248	<Undetected>	Update	BasicInformationId: 3716\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3725\r\nExtensionName: \r\nFirstName: PEDRO DAVID\r\nFullName: PEDRO DAVID GUTIERREZ SALAS\r\nGender: Male\r\nLastName: SALAS\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3716\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3725\r\nExtensionName: \r\nFirstName: PEDRO DAVID\r\nFullName: PEDRO DAVID SALAS\r\nGender: Male\r\nLastName: SALAS\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
767511	2025-03-07	10:45:24.3200655	<Undetected>	Update	BasicInformationId: 3716\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3726\r\nExtensionName: \r\nFirstName: VICTORIA\r\nFullName: VICTORIA SOLIS RAMOS\r\nGender: Female\r\nLastName: RAMOS\r\nMaidenName: \r\nMiddleName: SOLIS\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3716\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3726\r\nExtensionName: \r\nFirstName: VICTORIA\r\nFullName: VICTORIA RAMOS\r\nGender: Female\r\nLastName: RAMOS\r\nMaidenName: \r\nMiddleName: SOLIS\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
767525	2025-03-07	11:08:15.1858132	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3716\r\nDateOfExamination: August 25, 2002\r\nDateOfRelease: November 26, 2024\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 25, 2002\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0757246\r\nPlaceOfExamination: IBABANG DUPAY ELEMENTARY SCHOOL, LUCENA CITY\r\nRating: 78.6\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS (LET)\r\n	admin	Eligibilities	1
767526	2025-03-07	11:08:15.1908557	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3716\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,733.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: March 07, 2025\r\n	admin	Experiences	1
767527	2025-03-07	11:08:15.1948688	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3716\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 33,183.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
767512	2025-03-07	10:45:27.1783420	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RECONCEPTUALIZING TEACHER IDEOLOGY IN MULTILINGUAL ENGLISH LANGUAGE CLASSROOMS: AN ACELT SEED PROJECT\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
767513	2025-03-07	10:46:19.0914702	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3715\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 3\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16340\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767514	2025-03-07	10:47:18.5278023	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION ROLL OUT OF HIGHER ORDER THINKING SKILLS PROFESSIONAL LEARNING PACKAGES (HOTS - PLPS) FOR ENGLISH, SCIENCE AND MATHEMATICS TEACHERS (BATCH 2)\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
767515	2025-03-07	10:48:07.7428685	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3715\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: January 27, 2024\r\nTrainingId: 16341\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767516	2025-03-07	10:52:02.5621861	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING FOR TEACHERS AND SCHOOL HEADS FOCUSED ON NAVIGATING COMPUTER APPLICATION/COMMUNICATION PLATFORMS AND ITS UTILIZATION FOR THE IMPROVEMENT OF SCHOOL OPERATIONS AND LEARNING MANAGEMENT\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
767517	2025-03-07	10:53:09.2099509	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3715\r\nEmployeeTrainingId: 0\r\nFromDate: July 21, 2023\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: July 22, 2023\r\nTrainingId: 15308\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767518	2025-03-07	10:53:09.2199182	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3715\r\nEmployeeTrainingId: 0\r\nFromDate: March 01, 2021\r\nHours: 20\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - REGION IV-A CALABARZON\r\nStatus: \r\nToDate: March 05, 2021\r\nTrainingId: 16342\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767519	2025-03-07	10:55:08.5484041	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3715\r\nEmployeeTrainingId: 0\r\nFromDate: October 05, 2021\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - REGION IV-A CALABARZON\r\nStatus: \r\nToDate: October 08, 2021\r\nTrainingId: 15579\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767520	2025-03-07	11:05:22.8333692	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3715\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: April 06, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 35,049.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
767521	2025-03-07	11:05:22.8453287	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3715\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 21, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: April 05, 2015\r\n	admin	Experiences	1
767522	2025-03-07	11:07:22.8051196	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3715\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 02, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: April 05, 2015\r\n	admin	Experiences	1
767523	2025-03-07	11:07:22.8160839	<Undetected>	Update	BasicInformationId: 3715\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11510\r\nFromDate: November 21, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: April 05, 2015\r\n	BasicInformationId: 3715\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11510\r\nFromDate: November 21, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 12, 2013\r\n	admin	Experiences	1
767524	2025-03-07	11:08:09.6851002	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3715\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 13, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 01, 2014\r\n	admin	Experiences	1
767804	2025-03-10	14:10:27.8709558	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3722\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
767528	2025-03-07	11:08:15.1998960	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3716\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,633.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
767529	2025-03-07	11:08:15.2050967	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3716\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 05, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 30,111.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
767530	2025-03-07	11:08:15.2091091	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3716\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,798.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: August 04, 2022\r\n	admin	Experiences	1
767531	2025-03-07	11:08:15.2141266	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3716\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 28,276.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
767532	2025-03-07	11:08:15.2191825	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3716\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 26,754.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
767533	2025-03-07	11:08:15.2231957	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3716\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 05, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 25,232.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
767534	2025-03-07	11:08:15.2272080	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3716\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 22,938.00\r\nPositionHeld: TEACHER  II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: August 04, 2019\r\n	admin	Experiences	1
767535	2025-03-07	11:08:15.2322363	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3716\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 22,149.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
767536	2025-03-07	11:08:15.2362749	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3716\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 05, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 21,387.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
767537	2025-03-07	11:08:15.2414233	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3716\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 20,326.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: June 04, 2017\r\n	admin	Experiences	1
767538	2025-03-07	11:08:15.2454357	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3716\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: March 26, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,709.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
767539	2025-03-07	11:08:15.2507309	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3716\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,496.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: March 25, 2016\r\n	admin	Experiences	1
767540	2025-03-07	11:08:15.2547443	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3716\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: March 26, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 18,922.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
767541	2025-03-07	11:08:15.2597727	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3716\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 18,735.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: March 25, 2013\r\n	admin	Experiences	1
767542	2025-03-07	11:08:15.2637851	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3716\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 17,318.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
767543	2025-03-07	11:08:15.2688193	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3716\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 15,900.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
767544	2025-03-07	11:08:15.2738348	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3716\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: March 26, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 14,483.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
767545	2025-03-07	11:08:15.2778481	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3716\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 14,198.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: March 25, 2010\r\n	admin	Experiences	1
767546	2025-03-07	11:08:15.2828995	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3716\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,933.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
767547	2025-03-07	11:08:15.2879182	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3716\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: March 26, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
767548	2025-03-07	11:08:15.2919426	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3716\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: April 05, 2002\r\nIsGovernmentService: False\r\nMonthlySalary: 8,000.00\r\nPositionHeld: PRE-ELEM. COORDINATOR AND ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: March 25, 2007\r\n	admin	Experiences	1
767554	2025-03-07	11:20:18.2235210	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3716\r\nEmployeeTrainingId: 0\r\nFromDate: December 19, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: December 19, 2024\r\nTrainingId: 16318\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767549	2025-03-07	11:08:59.6829513	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3715\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 27, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 14,198.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: November 20, 2011\r\n	admin	Experiences	1
767550	2025-03-07	11:15:59.4663730	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3715\r\nSkillId: 0\r\nSkillName: CREATIVITY AND INNOVATION IN TEACHING\r\n	admin	Skills	1
767551	2025-03-07	11:15:59.4713563	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3715\r\nSkillId: 0\r\nSkillName: ORGANIZATION AND TEAM MANAGEMENT\r\n	admin	Skills	1
767552	2025-03-07	11:15:59.4823196	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3715\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
767553	2025-03-07	11:18:27.4031355	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3711\r\nEmployeeTrainingId: 0\r\nFromDate: October 10, 2024\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - BATANGAS CITY\r\nStatus: \r\nToDate: October 11, 2024\r\nTrainingId: 16321\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767569	2025-03-07	11:23:28.0260612	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 218\r\nAddress2: \r\nBarangay: GULOD LABAC\r\nBasicInformationId: 0\r\nBirthDate: June 01, 1991\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: aidablandina.alonzo@deped.gov.ph\r\nExtensionName: \r\nFirstName: AIDA BLANDINA\r\nFullName: AIDA BLANDINA A. HERNANDEZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: HERNANDEZ\r\nMaidenName: \r\nMiddleName: ALONZO\r\nMobileNumber: 09507338526\r\nNationality: Filipino\r\nPermanentAddress1: 218\r\nPermanentAddress2: \r\nPermanentBarangay: GULOD LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767570	2025-03-07	11:23:28.0376412	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3717\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
767571	2025-03-07	11:24:57.6442656	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3717\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROMULO\r\nFullName: ROMULO ROJO HERNANDEZ\r\nGender: Male\r\nLastName: HERNANDEZ\r\nMaidenName: \r\nMiddleName: ROJO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
767572	2025-03-07	11:24:57.6552289	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3717\r\nBirthDate: May 29, 2018\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: TENSHI CARRL\r\nFullName: TENSHI CARRL ALONZO\r\nGender: Male\r\nLastName: ALONZO\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767573	2025-03-07	11:24:57.6592156	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 218\r\nAddress2: \r\nBarangay: GULOD LABAC\r\nBasicInformationId: 3717\r\nBirthDate: June 01, 1991\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: aidablandina.alonzo@deped.gov.ph\r\nExtensionName: \r\nFirstName: AIDA BLANDINA\r\nFullName: AIDA BLANDINA A. HERNANDEZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: HERNANDEZ\r\nMaidenName: \r\nMiddleName: ALONZO\r\nMobileNumber: 09507338526\r\nNationality: Filipino\r\nPermanentAddress1: 218\r\nPermanentAddress2: \r\nPermanentBarangay: GULOD LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 218\r\nAddress2: \r\nBarangay: GULOD LABAC\r\nBasicInformationId: 3717\r\nBirthDate: June 01, 1991\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: aidablandina.alonzo@deped.gov.ph\r\nExtensionName: \r\nFirstName: AIDA BLANDINA\r\nFullName: AIDA BLANDINA A. HERNANDEZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: HERNANDEZ\r\nMaidenName: \r\nMiddleName: ALONZO\r\nMobileNumber: 09507338526\r\nNationality: Filipino\r\nPermanentAddress1: 218\r\nPermanentAddress2: \r\nPermanentBarangay: GULOD LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767574	2025-03-07	11:24:57.6682931	<Undetected>	Update	BasicInformationId: 3717\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3514\r\n	BasicInformationId: 3717\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3514\r\n	admin	Questionnaires	1
767578	2025-03-07	11:25:38.8524545	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3717\r\nBirthDate: June 28, 2024\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EIGHTAN\r\nFullName: EIGHTAN ALONZO HERNANDEZ\r\nGender: Male\r\nLastName: HERNANDEZ\r\nMaidenName: \r\nMiddleName: ALONZO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767555	2025-03-07	11:20:18.2295485	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3716\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16319\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767556	2025-03-07	11:20:18.2345582	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3716\r\nEmployeeTrainingId: 0\r\nFromDate: November 12, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: November 12, 2024\r\nTrainingId: 16320\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767557	2025-03-07	11:20:18.2396042	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3716\r\nEmployeeTrainingId: 0\r\nFromDate: September 18, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: September 18, 2024\r\nTrainingId: 16327\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767558	2025-03-07	11:20:18.2446329	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3716\r\nEmployeeTrainingId: 0\r\nFromDate: July 01, 2024\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: July 02, 2024\r\nTrainingId: 16328\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767559	2025-03-07	11:22:28.6374270	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3716\r\nSkillId: 0\r\nSkillName: DRIVING MANUAL TRANSMISSION\r\n	admin	Skills	1
767560	2025-03-07	11:22:28.6414573	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3716\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
767561	2025-03-07	11:22:28.6464849	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3716\r\nSkillId: 0\r\nSkillName: SURFING THE NET\r\n	admin	Skills	1
767562	2025-03-07	11:22:28.6556040	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3716\r\nSkillId: 0\r\nSkillName: WRITING SCHOOL REPORT\r\n	admin	Skills	1
767563	2025-03-07	11:22:28.6598150	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3716\r\nSkillId: 0\r\nSkillName: HOSTING PROGRAMS\r\n	admin	Skills	1
767564	2025-03-07	11:22:28.6671348	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3716\r\nSkillId: 0\r\nSkillName: DANCING \r\n	admin	Skills	1
767565	2025-03-07	11:22:28.6713548	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3716\r\nSkillId: 0\r\nSkillName: COOKING / BAKING\r\n	admin	Skills	1
767566	2025-03-07	11:22:28.6795974	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3716\r\nRecognitionId: 0\r\nRecognitionName: BOY SCOUT OF THE PHILIPPINES - BRONZE AWARD\r\n	admin	Recognitions	1
767567	2025-03-07	11:22:28.6836033	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3716\r\nOrganizationId: 0\r\nOrganizationName: GIRL SCOUT OF THE PHILIPPINES\r\n	admin	Organizations	1
767568	2025-03-07	11:22:28.6886294	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3716\r\nOrganizationId: 0\r\nOrganizationName: PHILIPPINE RED CROSS\r\n	admin	Organizations	1
767575	2025-03-07	11:25:14.6727362	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3716\r\nCharacterReferenceId: 0\r\nCompanyAddress: AMBULONG, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09151454687\r\nExtensionName: \r\nFirstName: MARITES\r\nLastName: TARCELO\r\nMiddleName: D. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767576	2025-03-07	11:25:14.6797361	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3716\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN WEST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09189649408\r\nExtensionName: \r\nFirstName: LENY\r\nLastName: BOOL\r\nMiddleName: M.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767577	2025-03-07	11:25:14.6837358	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3716\r\nCharacterReferenceId: 0\r\nCompanyAddress: DALIG, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09186126205\r\nExtensionName: \r\nFirstName: LOIDA\r\nLastName: ALUAN\r\nMiddleName: R.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767587	2025-03-07	11:31:33.7266374	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: POTENCIANA VILLAGE\r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3716\r\nBirthDate: November 26, 1980\r\nBirthPlace: ALABANG MUNTINLUPA, METRO MANILA\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jocelyn.adoyo@deped.gov.ph\r\nExtensionName: \r\nFirstName: JOCELYN\r\nFullName: JOCELYN S. ADOYO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 3112903\r\nLastName: ADOYO\r\nMaidenName: \r\nMiddleName: SALAS\r\nMobileNumber: 09696098664\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: POTENCIANA VILLAGE\r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: JASMINE STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: JASMINE STREET\r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: POTENCIANA VILLAGE\r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3716\r\nBirthDate: November 26, 1980\r\nBirthPlace: ALABANG MUNTINLUPA, METRO MANILA\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jocelyn.adoyo@deped.gov.ph\r\nExtensionName: \r\nFirstName: JOCELYN\r\nFullName: JOCELYN S. ADOYO\r\nGender: Female\r\nGovernmentIdIssuedDate: June 18, 2024\r\nGovernmentIdNumber: 0757246\r\nGovernmentIdPlaceIssued: ALABANG, METRO MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02003459318\r\nHDMF: 1490-0098-0893\r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 3112903\r\nLastName: ADOYO\r\nMaidenName: \r\nMiddleName: SALAS\r\nMobileNumber: 09696098664\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: POTENCIANA VILLAGE\r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: JASMINE STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: 19-090052392-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1271553-0\r\nStreetName: JASMINE STREET\r\nTIN: 926-097-379-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767579	2025-03-07	11:25:38.8574377	<Undetected>	Update	BasicInformationId: 3717\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3727\r\nExtensionName: \r\nFirstName: ROMULO\r\nFullName: ROMULO ROJO HERNANDEZ\r\nGender: Male\r\nLastName: HERNANDEZ\r\nMaidenName: \r\nMiddleName: ROJO\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3717\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3727\r\nExtensionName: \r\nFirstName: ROMULO\r\nFullName: ROMULO HERNANDEZ\r\nGender: Male\r\nLastName: HERNANDEZ\r\nMaidenName: \r\nMiddleName: ROJO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
767580	2025-03-07	11:25:38.8614244	<Undetected>	Update	BasicInformationId: 3717\r\nBirthDate: May 29, 2018\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3728\r\nExtensionName: \r\nFirstName: TENSHI CARRL\r\nFullName: TENSHI CARRL ALONZO\r\nGender: Male\r\nLastName: ALONZO\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3717\r\nBirthDate: May 29, 2018\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3728\r\nExtensionName: \r\nFirstName: TENSHI CARRL\r\nFullName: TENSHI CARRL ALONZO\r\nGender: Male\r\nLastName: ALONZO\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767581	2025-03-07	11:27:00.5905080	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 218\r\nAddress2: \r\nBarangay: GULOD LABAC\r\nBasicInformationId: 3717\r\nBirthDate: June 01, 1991\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: aidablandina.alonzo@deped.gov.ph\r\nExtensionName: \r\nFirstName: AIDA BLANDINA\r\nFullName: AIDA BLANDINA A. HERNANDEZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: HERNANDEZ\r\nMaidenName: \r\nMiddleName: ALONZO\r\nMobileNumber: 09507338526\r\nNationality: Filipino\r\nPermanentAddress1: 218\r\nPermanentAddress2: \r\nPermanentBarangay: GULOD LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 218\r\nAddress2: \r\nBarangay: GULOD LABAC\r\nBasicInformationId: 3717\r\nBirthDate: June 01, 1991\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: aidablandina.alonzo@deped.gov.ph\r\nExtensionName: \r\nFirstName: AIDA BLANDINA\r\nFullName: AIDA BLANDINA A. HERNANDEZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02004709921\r\nHDMF: 9121-8810-3513\r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: HERNANDEZ\r\nMaidenName: \r\nMiddleName: ALONZO\r\nMobileNumber: 09507338526\r\nNationality: Filipino\r\nPermanentAddress1: 218\r\nPermanentAddress2: \r\nPermanentBarangay: GULOD LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050334526-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-2590477-8\r\nStreetName: \r\nTIN: 424-375-147-0000\r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767582	2025-03-07	11:27:00.6014715	<Undetected>	Update	BasicInformationId: 3717\r\nBirthDate: June 28, 2024\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3729\r\nExtensionName: \r\nFirstName: EIGHTAN\r\nFullName: EIGHTAN ALONZO HERNANDEZ\r\nGender: Male\r\nLastName: HERNANDEZ\r\nMaidenName: \r\nMiddleName: ALONZO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3717\r\nBirthDate: June 28, 2024\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3729\r\nExtensionName: \r\nFirstName: EIGHTAN\r\nFullName: EIGHTAN HERNANDEZ\r\nGender: Male\r\nLastName: HERNANDEZ\r\nMaidenName: \r\nMiddleName: ALONZO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767583	2025-03-07	11:28:05.7997280	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 218\r\nAddress2: \r\nBarangay: GULOD LABAC\r\nBasicInformationId: 3717\r\nBirthDate: June 01, 1991\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: aidablandina.alonzo@deped.gov.ph\r\nExtensionName: \r\nFirstName: AIDA BLANDINA\r\nFullName: AIDA BLANDINA A. HERNANDEZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02004709921\r\nHDMF: 9121-8810-3513\r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: HERNANDEZ\r\nMaidenName: \r\nMiddleName: ALONZO\r\nMobileNumber: 09507338526\r\nNationality: Filipino\r\nPermanentAddress1: 218\r\nPermanentAddress2: \r\nPermanentBarangay: GULOD LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050334526-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-2590477-8\r\nStreetName: \r\nTIN: 424-375-147-0000\r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 218\r\nAddress2: \r\nBarangay: GULOD LABAC\r\nBasicInformationId: 3717\r\nBirthDate: June 01, 1991\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: aidablandina.alonzo@deped.gov.ph\r\nExtensionName: \r\nFirstName: AIDA BLANDINA\r\nFullName: AIDA BLANDINA A. HERNANDEZ\r\nGender: Female\r\nGovernmentIdIssuedDate: April 18, 2012\r\nGovernmentIdNumber: 1124253\r\nGovernmentIdPlaceIssued: PRC-LUCENA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02004709921\r\nHDMF: 9121-8810-3513\r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: HERNANDEZ\r\nMaidenName: \r\nMiddleName: ALONZO\r\nMobileNumber: 09507338526\r\nNationality: Filipino\r\nPermanentAddress1: 218\r\nPermanentAddress2: \r\nPermanentBarangay: GULOD LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050334526-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-2590477-8\r\nStreetName: \r\nTIN: 424-375-147-0000\r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767584	2025-03-07	11:29:48.0502751	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3717\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1997\r\nDateTo: 2003\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nYearGraduated: 2003\r\n	admin	EducationalBackgrounds	1
767585	2025-03-07	11:29:48.0612384	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3717\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2007\r\n	admin	EducationalBackgrounds	1
767586	2025-03-07	11:29:48.0652250	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3717\r\nCourse: \r\nCourseId: 1270\r\nCourseOrMajor: \r\nDateFrom: 2007\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MATHEMATICS\r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
767629	2025-03-07	14:03:45.4556413	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3717\r\nEmployeeTrainingId: 0\r\nFromDate: January 25, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SDO BATANGAS CITY\r\nStatus: \r\nToDate: January 25, 2024\r\nTrainingId: 16346\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767588	2025-03-07	11:31:59.9143183	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3717\r\nCourse: \r\nCourseId: 1284\r\nCourseOrMajor: \r\nDateFrom: 2013\r\nDateTo: 2015\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: EDUCATIONAL ADMINISTRATION\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2015\r\n	admin	EducationalBackgrounds	1
767589	2025-03-07	11:31:59.9183051	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3717\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2016\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MATHEMATICS\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
767590	2025-03-07	11:33:44.3699101	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3717\r\nDateOfExamination: September 25, 2011\r\nDateOfRelease: June 01, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 25, 2011\r\nLevelOfEligibility: First Level (Subprofessional)\r\nLicenseNumber: 1124253\r\nPlaceOfExamination: LUCENA\r\nRating: 76.2\r\nTitle: LICENSURE EXAMINATION FOR TEACHER (LET)\r\n	admin	Eligibilities	1
767591	2025-03-07	11:34:00.7376311	<Undetected>	Update	BasicInformationId: 3717\r\nDateOfExamination: September 25, 2011\r\nDateOfRelease: June 01, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 2546\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 25, 2011\r\nLevelOfEligibility: First Level (Subprofessional)\r\nLicenseNumber: 1124253\r\nPlaceOfExamination: LUCENA\r\nRating: 76.2\r\nTitle: LICENSURE EXAMINATION FOR TEACHER (LET)\r\n	BasicInformationId: 3717\r\nDateOfExamination: September 25, 2011\r\nDateOfRelease: June 01, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 2546\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 25, 2011\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1124253\r\nPlaceOfExamination: LUCENA\r\nRating: 76.2\r\nTitle: LICENSURE EXAMINATION FOR TEACHER (LET)\r\n	admin	Eligibilities	1
767592	2025-03-07	11:36:43.9727439	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3717\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAMPAGA EAST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09171600146\r\nExtensionName: \r\nFirstName: ROWENA\r\nLastName: ASI\r\nMiddleName: T\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767593	2025-03-07	11:36:43.9777274	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3717\r\nCharacterReferenceId: 0\r\nCompanyAddress: DUMANTAY, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175165443\r\nExtensionName: \r\nFirstName: DANILO\r\nLastName: MANACAP\r\nMiddleName: E\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767594	2025-03-07	11:36:43.9817141	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3717\r\nCharacterReferenceId: 0\r\nCompanyAddress: MALITAM, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09206317868\r\nExtensionName: \r\nFirstName: ESTELITA\r\nLastName: GONZALES\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767595	2025-03-07	11:38:22.0915999	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3717\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 40,208.00\r\nPositionHeld: HEAD TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
767596	2025-03-07	11:38:22.1065500	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3717\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: April 08, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 38,413.00\r\nPositionHeld: HEAD TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
767597	2025-03-07	13:35:03.5627205	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: AMIHAN VILLAGE\r\nBarangay: BALAGTAS\r\nBasicInformationId: 0\r\nBirthDate: October 31, 1993\r\nBirthPlace: SAN ANTONIO, ISLA VERDE BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: brenda.porcino@deped.gov.ph\r\nExtensionName: \r\nFirstName: BRENDA\r\nFullName: BRENDA P. ALCANTARA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALCANTARA\r\nMaidenName: \r\nMiddleName: PORCINO\r\nMobileNumber: 09387811735\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 45\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767599	2025-03-07	13:38:02.2161286	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3717\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: April 07, 2024\r\n	admin	Experiences	1
767600	2025-03-07	13:38:02.2211118	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3717\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
767601	2025-03-07	13:39:45.5192101	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3717\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,798.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
767602	2025-03-07	13:39:45.5281806	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3717\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 05, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 29,798.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
767607	2025-03-07	13:42:22.3779402	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3717\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 05, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 28,276.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: 2021\r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2025\r\n	admin	Experiences	1
767608	2025-03-07	13:42:22.3839199	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3717\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 24,161.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: October 04, 2021\r\n	admin	Experiences	1
767609	2025-03-07	13:42:22.3879066	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3717\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 23,877.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: July 31, 2021\r\n	admin	Experiences	1
767610	2025-03-07	13:42:22.3948834	<Undetected>	Delete	BasicInformationId: 3717\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11542\r\nFromDate: October 05, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 29,798.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	admin	Experiences	1
767611	2025-03-07	13:43:33.5487752	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3717\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 16, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,316.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
767612	2025-03-07	13:43:33.5567490	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3717\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,316.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 15, 2020\r\n	admin	Experiences	1
767613	2025-03-07	13:44:45.7992095	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3717\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
767614	2025-03-07	13:44:45.8031961	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3717\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
767603	2025-03-07	13:42:07.3061161	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3718\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2019\r\nDateTo: 2022\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: PHILIPPINE COLLEGE OF HEALTH SCIENCES, INC.\r\nYearGraduated: 2022\r\n	admin	EducationalBackgrounds	1
767604	2025-03-07	13:42:07.3101284	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3718\r\nDateOfExamination: March 20, 2016\r\nDateOfRelease: October 31, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: March 20, 2016\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1461480\r\nPlaceOfExamination: MANILA\r\nRating: 78.2\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS (LET)\r\n	admin	Eligibilities	1
767605	2025-03-07	13:42:07.3186224	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: AMIHAN VILLAGE\r\nBarangay: BALAGTAS\r\nBasicInformationId: 3718\r\nBirthDate: October 31, 1993\r\nBirthPlace: SAN ANTONIO, ISLA VERDE BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: brenda.porcino@deped.gov.ph\r\nExtensionName: \r\nFirstName: BRENDA\r\nFullName: BRENDA P. ALCANTARA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALCANTARA\r\nMaidenName: \r\nMiddleName: PORCINO\r\nMobileNumber: 09387811735\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 45\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: AMIHAN VILLAGE\r\nBarangay: BALAGTAS\r\nBasicInformationId: 3718\r\nBirthDate: October 31, 1993\r\nBirthPlace: SAN ANTONIO, ISLA VERDE BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: brenda.porcino@deped.gov.ph\r\nExtensionName: \r\nFirstName: BRENDA\r\nFullName: BRENDA P. ALCANTARA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALCANTARA\r\nMaidenName: \r\nMiddleName: PORCINO\r\nMobileNumber: 09387811735\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: AMIHAN VILLAGE\r\nPermanentBarangay: BALAGTAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 45\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767606	2025-03-07	13:42:07.3292480	<Undetected>	Update	BasicInformationId: 3718\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3515\r\n	BasicInformationId: 3718\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3515\r\n	admin	Questionnaires	1
767630	2025-03-07	14:04:50.2426627	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3718\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 29,165.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: March 07, 2025\r\n	admin	Experiences	1
767631	2025-03-07	14:04:50.2477010	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3718\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 29,165.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
767632	2025-03-07	14:04:50.2517146	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3718\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 17, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,284.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
767633	2025-03-07	14:04:50.2567324	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3718\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 25,723.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: January 16, 2023\r\n	admin	Experiences	1
767634	2025-03-07	14:04:50.2610443	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3718\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 24,161.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
767641	2025-03-07	14:04:53.0131949	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3717\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
767642	2025-03-07	14:04:53.0231617	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3717\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
767615	2025-03-07	13:47:00.8879551	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3717\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: July 31, 2018\r\n	admin	Experiences	1
767616	2025-03-07	13:47:00.8919415	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3717\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,620.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
767617	2025-03-07	13:47:00.8979215	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3717\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
767618	2025-03-07	13:47:00.9019082	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3717\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
767619	2025-03-07	13:47:52.4503326	<Undetected>	Update	BasicInformationId: 3717\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11543\r\nFromDate: October 05, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 28,276.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: 2021\r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2025\r\n	BasicInformationId: 3717\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11543\r\nFromDate: October 05, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 28,276.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
767620	2025-03-07	13:54:12.3966268	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3717\r\nEmployeeTrainingId: 0\r\nFromDate: December 02, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SDO BATANGAS CITY\r\nStatus: \r\nToDate: December 04, 2024\r\nTrainingId: 16315\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767621	2025-03-07	13:55:17.4103992	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT IV GENDER AND DEVELOPMENT (GAD) ACTIVITY\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
767622	2025-03-07	13:58:08.2993210	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: STRENGTHENING GAD POLICIES AND MANDATES TOWARDS EFFICIENT MATATAG CURRICULUM IMPLEMENTATION\r\nTrainingId: 0\r\nType: MANAGERIAL\r\n	admin	Trainings	1
767623	2025-03-07	13:58:51.8089560	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3717\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION  - SDO BATANGAS CITY - DISTRICT IV\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16343\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767624	2025-03-07	13:58:51.8129425	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3717\r\nEmployeeTrainingId: 0\r\nFromDate: November 04, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SDO BATANGAS CITY\r\nStatus: \r\nToDate: November 08, 2024\r\nTrainingId: 16314\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767625	2025-03-07	13:58:51.8189226	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3717\r\nEmployeeTrainingId: 0\r\nFromDate: October 29, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SDO BATANGAS CITY\r\nStatus: \r\nToDate: October 29, 2024\r\nTrainingId: 16344\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767626	2025-03-07	14:00:21.8382764	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL AND DIVISION LEARNINGI RESOURCE (LR) PLANNING WORKSHOP FOR SY 2024-2025\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
767627	2025-03-07	14:03:03.7339930	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT ORIENTATION TRAINING ON THE IMPLEMENTATION OF ALTERNATIVE DELIVERY MODE (ADM) PROGRAM\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
767628	2025-03-07	14:03:45.4476677	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3717\r\nEmployeeTrainingId: 0\r\nFromDate: February 16, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SDO BATANGAS CITY\r\nStatus: \r\nToDate: February 16, 2024\r\nTrainingId: 16345\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767635	2025-03-07	14:04:50.2660890	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3718\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 04, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 23,877.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
767636	2025-03-07	14:04:50.2701049	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3718\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 22,316.00\r\nPositionHeld: TEAHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 03, 2021\r\n	admin	Experiences	1
767637	2025-03-07	14:04:50.2751215	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3718\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
767638	2025-03-07	14:04:50.2794176	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3718\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
767639	2025-03-07	14:04:50.2844339	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3718\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 04, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 19,620.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
767640	2025-03-07	14:04:50.2884492	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3718\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 05, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,620.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: August 03, 2017\r\n	admin	Experiences	1
767645	2025-03-07	14:06:48.9948093	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL-BASED TRAINING OF TEACHERS ON MATATAG CURRICULUM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
767648	2025-03-07	14:10:16.7688502	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL-BASED IN-SERVICE TRAINING FOR TEACHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
767655	2025-03-07	14:12:45.0832062	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIISION TRAINING WORKSHOP ON TEACHING THE CRITICAL COMPETENCIES IN ALL LEARNING AREAS OF KEY STAGE 1-3\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
767659	2025-03-07	14:15:39.0642514	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING WORKSHOP ON TEACHING THE CRITICAL COMPETENCIES IN ALL LEARNING AREAS OF KEY STAGE 1-3\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
767660	2025-03-07	14:16:41.1872148	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MID-YEAR SCHOOL-BASED INSERVICE TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
767664	2025-03-07	14:18:22.6413502	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TEACH ON: KEEPING THE PASSION ALIVE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
767669	2025-03-07	14:20:28.4489960	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3718\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16347\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767670	2025-03-07	14:20:28.4530080	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3718\r\nEmployeeTrainingId: 0\r\nFromDate: January 21, 2025\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: PARANG ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: January 30, 2025\r\nTrainingId: 16348\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767646	2025-03-07	14:09:40.2498043	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 13\r\nAddress2: GAWAD KALINGA\r\nBarangay: LIBJO\r\nBasicInformationId: 0\r\nBirthDate: September 09, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rosemarie.cusi@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROSEMARIE\r\nFullName: ROSEMARIE F. CUSI\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.43\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CUSI\r\nMaidenName: \r\nMiddleName: FALCULAN\r\nMobileNumber: 09301836309\r\nNationality: Filipino\r\nPermanentAddress1: 13\r\nPermanentAddress2: GAWAD KALINGA\r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 52\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767647	2025-03-07	14:09:40.2634437	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3719\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
767649	2025-03-07	14:10:55.2763484	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3719\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09946700481\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: WELFREDO\r\nFullName: WELFREDO SORIANO CUSI\r\nGender: Male\r\nLastName: CUSI\r\nMaidenName: \r\nMiddleName: SORIANO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
767650	2025-03-07	14:10:55.2813322	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 13\r\nAddress2: GAWAD KALINGA\r\nBarangay: LIBJO\r\nBasicInformationId: 3719\r\nBirthDate: September 09, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rosemarie.cusi@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROSEMARIE\r\nFullName: ROSEMARIE F. CUSI\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.43\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CUSI\r\nMaidenName: \r\nMiddleName: FALCULAN\r\nMobileNumber: 09301836309\r\nNationality: Filipino\r\nPermanentAddress1: 13\r\nPermanentAddress2: GAWAD KALINGA\r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 52\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 13\r\nAddress2: GAWAD KALINGA\r\nBarangay: LIBJO\r\nBasicInformationId: 3719\r\nBirthDate: September 09, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rosemarie.cusi@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROSEMARIE\r\nFullName: ROSEMARIE F. CUSI\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.43\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CUSI\r\nMaidenName: \r\nMiddleName: FALCULAN\r\nMobileNumber: 09301836309\r\nNationality: Filipino\r\nPermanentAddress1: 13\r\nPermanentAddress2: GAWAD KALINGA\r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 52\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767651	2025-03-07	14:10:55.2903016	<Undetected>	Update	BasicInformationId: 3719\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3516\r\n	BasicInformationId: 3719\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3516\r\n	admin	Questionnaires	1
767652	2025-03-07	14:12:11.7078050	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3719\r\nBirthDate: October 18, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DOMINIC\r\nFullName: DOMINIC FALCULAN CUSI\r\nGender: Male\r\nLastName: CUSI\r\nMaidenName: \r\nMiddleName: FALCULAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767653	2025-03-07	14:12:11.7177717	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3719\r\nBirthDate: April 08, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DARIEL\r\nFullName: DARIEL FALCULAN CUSI\r\nGender: Male\r\nLastName: CUSI\r\nMaidenName: \r\nMiddleName: FALCULAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767654	2025-03-07	14:12:11.7347147	<Undetected>	Update	BasicInformationId: 3719\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09946700481\r\nEmployeeRelativeId: 3730\r\nExtensionName: \r\nFirstName: WELFREDO\r\nFullName: WELFREDO SORIANO CUSI\r\nGender: Male\r\nLastName: CUSI\r\nMaidenName: \r\nMiddleName: SORIANO\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3719\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09946700481\r\nEmployeeRelativeId: 3730\r\nExtensionName: \r\nFirstName: WELFREDO\r\nFullName: WELFREDO CUSI\r\nGender: Male\r\nLastName: CUSI\r\nMaidenName: \r\nMiddleName: SORIANO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
767671	2025-03-07	14:20:28.4580360	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3718\r\nEmployeeTrainingId: 0\r\nFromDate: August 14, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 18, 2024\r\nTrainingId: 16350\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767672	2025-03-07	14:20:28.4630775	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3718\r\nEmployeeTrainingId: 0\r\nFromDate: March 06, 2023\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: PARANG ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: March 10, 2023\r\nTrainingId: 16351\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767656	2025-03-07	14:15:07.7844717	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 13\r\nAddress2: GAWAD KALINGA\r\nBarangay: LIBJO\r\nBasicInformationId: 3719\r\nBirthDate: September 09, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rosemarie.cusi@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROSEMARIE\r\nFullName: ROSEMARIE F. CUSI\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.43\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CUSI\r\nMaidenName: \r\nMiddleName: FALCULAN\r\nMobileNumber: 09301836309\r\nNationality: Filipino\r\nPermanentAddress1: 13\r\nPermanentAddress2: GAWAD KALINGA\r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 52\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 13\r\nAddress2: GAWAD KALINGA\r\nBarangay: LIBJO\r\nBasicInformationId: 3719\r\nBirthDate: September 09, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rosemarie.cusi@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROSEMARIE\r\nFullName: ROSEMARIE F. CUSI\r\nGender: Female\r\nGovernmentIdIssuedDate: December 13, 2017\r\nGovernmentIdNumber: 1578375\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: \r\nHDMF: 1212-1487-9541\r\nHeight: 1.43\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CUSI\r\nMaidenName: \r\nMiddleName: FALCULAN\r\nMobileNumber: 09301836309\r\nNationality: Filipino\r\nPermanentAddress1: 13\r\nPermanentAddress2: GAWAD KALINGA\r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025275689-1\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1113469-1\r\nStreetName: \r\nTIN: 717-411-465-0000\r\nWeight: 52\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767657	2025-03-07	14:15:07.7884584	<Undetected>	Update	BasicInformationId: 3719\r\nBirthDate: October 18, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3731\r\nExtensionName: \r\nFirstName: DOMINIC\r\nFullName: DOMINIC FALCULAN CUSI\r\nGender: Male\r\nLastName: CUSI\r\nMaidenName: \r\nMiddleName: FALCULAN\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3719\r\nBirthDate: October 18, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3731\r\nExtensionName: \r\nFirstName: DOMINIC\r\nFullName: DOMINIC CUSI\r\nGender: Male\r\nLastName: CUSI\r\nMaidenName: \r\nMiddleName: FALCULAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767658	2025-03-07	14:15:07.8014139	<Undetected>	Update	BasicInformationId: 3719\r\nBirthDate: April 08, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3732\r\nExtensionName: \r\nFirstName: DARIEL\r\nFullName: DARIEL FALCULAN CUSI\r\nGender: Male\r\nLastName: CUSI\r\nMaidenName: \r\nMiddleName: FALCULAN\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3719\r\nBirthDate: April 08, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3732\r\nExtensionName: \r\nFirstName: DARIEL\r\nFullName: DARIEL CUSI\r\nGender: Male\r\nLastName: CUSI\r\nMaidenName: \r\nMiddleName: FALCULAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767661	2025-03-07	14:17:42.3042804	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3719\r\nCharacterReferenceId: 0\r\nCompanyAddress: 218 GULOD LABAC, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09507338526\r\nExtensionName: \r\nFirstName: AIDA BLANDINA\r\nLastName: HERNANDEZ\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767662	2025-03-07	14:17:42.3112568	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3719\r\nCharacterReferenceId: 0\r\nCompanyAddress: PUROK 5A MACSOR SITE STA. CLARA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09605313139\r\nExtensionName: \r\nFirstName: RHANDLE\r\nLastName: MENDOZA\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767663	2025-03-07	14:17:42.3152433	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3719\r\nCharacterReferenceId: 0\r\nCompanyAddress: PUROK 2, VILLA PRECY SUBDIVISION, KUMINTANG ILAYA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09217518922\r\nExtensionName: \r\nFirstName: DAISYLIN\r\nLastName: MACARAIG\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767665	2025-03-07	14:19:44.0569787	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3719\r\nDateOfExamination: September 24, 2017\r\nDateOfRelease: December 13, 2017\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 24, 2017\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1578375\r\nPlaceOfExamination: LUCENA CITY, QUEZON PROVINCE\r\nRating: 80.4\r\nTitle: LICENSURE EXAMINATION FOR TEACHER\r\n	admin	Eligibilities	1
767666	2025-03-07	14:20:19.6713019	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3719\r\nSkillId: 0\r\nSkillName: TIME MANAGEMENT\r\n	admin	Skills	1
767667	2025-03-07	14:20:19.6822654	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3719\r\nSkillId: 0\r\nSkillName: ADAPTABILITY\r\n	admin	Skills	1
767668	2025-03-07	14:20:19.6862518	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3719\r\nSkillId: 0\r\nSkillName: TEAMWORK\r\n	admin	Skills	1
767674	2025-03-07	14:22:22.7913449	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3719\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,024.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
767675	2025-03-07	14:22:22.8003145	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3719\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
767706	2025-03-07	15:05:41.8978493	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER OF ARTS IN EDUCATION (MAED) NON THESIS \r\nLevel: College\r\n	admin	Courses	1
767673	2025-03-07	14:20:28.4670902	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3718\r\nEmployeeTrainingId: 0\r\nFromDate: July 20, 2023\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: SOUTHEAST ASIAN MINISTERS OF EDUCATION ORGANIZATION REGIONAL CENTER FOR EDUCATIONAL INNOVATION AND TECHNOLOGY\r\nStatus: \r\nToDate: September 30, 2023\r\nTrainingId: 16352\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767679	2025-03-07	14:24:38.8339578	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3718\r\nSkillId: 0\r\nSkillName: N/A\r\n	admin	Skills	1
767680	2025-03-07	14:24:38.8419932	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3718\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
767681	2025-03-07	14:24:38.8462905	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3718\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
767682	2025-03-07	14:24:38.8503033	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3718\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ANTONIO, ISLA VERDE BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09564781003\r\nExtensionName: \r\nFirstName: PRECIOSA\r\nLastName: MEDINA\r\nMiddleName: E.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767683	2025-03-07	14:24:38.8583299	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3718\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ANTONIO, ISLA VERDE BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09108452404\r\nExtensionName: \r\nFirstName: FRANCISO\r\nLastName: DE CASTRO\r\nMiddleName: A.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767684	2025-03-07	14:24:38.8623862	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3718\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ANTONIO, ISLA VERDE BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09602114973\r\nExtensionName: \r\nFirstName: BUHAY JOSE\r\nLastName: FATALLA\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767686	2025-03-07	14:28:54.8209456	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: AMIHAN VILLAGE\r\nBarangay: BALAGTAS\r\nBasicInformationId: 3718\r\nBirthDate: October 31, 1993\r\nBirthPlace: SAN ANTONIO, ISLA VERDE BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: brenda.porcino@deped.gov.ph\r\nExtensionName: \r\nFirstName: BRENDA\r\nFullName: BRENDA P. ALCANTARA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALCANTARA\r\nMaidenName: \r\nMiddleName: PORCINO\r\nMobileNumber: 09387811735\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: AMIHAN VILLAGE\r\nPermanentBarangay: BALAGTAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 45\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: AMIHAN VILLAGE\r\nBarangay: BALAGTAS\r\nBasicInformationId: 3718\r\nBirthDate: October 31, 1993\r\nBirthPlace: SAN ANTONIO, ISLA VERDE BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: brenda.porcino@deped.gov.ph\r\nExtensionName: \r\nFirstName: BRENDA\r\nFullName: BRENDA P. ALCANTARA\r\nGender: Female\r\nGovernmentIdIssuedDate: March 20, 2016\r\nGovernmentIdNumber: 1461480\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC\r\nGSIS: 20052151550\r\nHDMF: 1212-0601-1301\r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALCANTARA\r\nMaidenName: \r\nMiddleName: PORCINO\r\nMobileNumber: 09387811735\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: AMIHAN VILLAGE\r\nPermanentBarangay: BALAGTAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 01-025446137-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 462-784-580-0000\r\nWeight: 45\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767676	2025-03-07	14:23:14.1302598	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3719\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: July 31, 2024\r\n	admin	Experiences	1
767677	2025-03-07	14:24:32.0725247	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3719\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
767678	2025-03-07	14:24:32.0834882	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3719\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 19, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,723.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
767685	2025-03-07	14:25:13.8448228	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3719\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 24,161.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: November 18, 2022\r\n	admin	Experiences	1
767687	2025-03-07	14:53:27.5943253	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: PINAMUCAN IBABA\r\nBasicInformationId: 0\r\nBirthDate: October 09, 1994\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: miabernadine.aguilar@deped.gov.ph\r\nExtensionName: \r\nFirstName: MIA BERNADINE\r\nFullName: MIA BERNADINE A. ALCAYDE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALCAYDE\r\nMaidenName: \r\nMiddleName: AGUILAR\r\nMobileNumber: 09171871657\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: PINAMUCAN IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO BABASA\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: SITIO BABASA\r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767688	2025-03-07	14:53:27.8976016	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3720\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CHESTER JOHN\r\nFullName: CHESTER JOHN VILLENA ALCAYDE\r\nGender: Male\r\nLastName: ALCAYDE\r\nMaidenName: \r\nMiddleName: VILLENA\r\nOccupation: TECHNICIAN\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
767689	2025-03-07	14:53:27.8976016	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3720\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JAIME\r\nFullName: JAIME BARUEL AGUILAR\r\nGender: Male\r\nLastName: AGUILAR\r\nMaidenName: \r\nMiddleName: BARUEL\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
767690	2025-03-07	14:53:27.8985997	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3720\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LORNA\r\nFullName: LORNA ATIENZA MURON\r\nGender: Female\r\nLastName: MURON\r\nMaidenName: \r\nMiddleName: ATIENZA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
767691	2025-03-07	14:53:27.8985997	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3720\r\nBirthDate: December 16, 2024\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LUNA AYLA\r\nFullName: LUNA AYLA AGUILAR ALCAYDE\r\nGender: Female\r\nLastName: ALCAYDE\r\nMaidenName: \r\nMiddleName: AGUILAR\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767692	2025-03-07	14:53:27.8985997	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3720\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
767693	2025-03-07	14:53:44.2941790	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3719\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 22,316.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
767699	2025-03-07	15:01:25.7214294	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF ELEMENTARY EDUCATION MAJOR IN EARLY CHILDHOOD EDUCATION\r\nLevel: College\r\n	admin	Courses	1
767694	2025-03-07	14:53:44.2991624	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3719\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,316.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
767695	2025-03-07	14:53:44.3041458	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3719\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 13, 2019\r\n	admin	Experiences	1
767696	2025-03-07	14:53:44.3081325	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3719\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 19, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
767697	2025-03-07	15:00:05.4038391	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3719\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 09, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: November 06, 2018\r\n	admin	Experiences	1
767698	2025-03-07	15:00:05.4138058	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3719\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 30, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: November 07, 2018\r\n	admin	Experiences	1
767700	2025-03-07	15:01:29.3290324	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT IV GENDER AND DEVELOPMENT (GAD) ACTIVITY - EQUAL VOICES: A CELEBRATION OF WOMEN AND GENDER EQUITY\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
767701	2025-03-07	15:02:38.7438114	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION DRUG EDUCATION SYMPOSIUM\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
767702	2025-03-07	15:03:43.2556196	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BASIC TRAINING COURSE FOR OUTFIT ADVISORS\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
767703	2025-03-07	15:04:32.2531110	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3719\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OFFICE - BATANGAS CITY\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16353\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767704	2025-03-07	15:04:32.2570976	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3719\r\nEmployeeTrainingId: 0\r\nFromDate: November 21, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OFFICE - BATANGAS CITY\r\nStatus: \r\nToDate: November 21, 2024\r\nTrainingId: 16354\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767705	2025-03-07	15:04:32.2630776	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3719\r\nEmployeeTrainingId: 0\r\nFromDate: November 08, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: BOY SCOUT OF THE PHILIPPINES - BATANGAS CITY COUNCIL\r\nStatus: \r\nToDate: November 10, 2024\r\nTrainingId: 16355\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767707	2025-03-07	15:05:46.8630259	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING ON THE FORMULATION OF SCHOOL CHILD PROTECTION POLICY AND OPERATIONAL GUIDELINES CUM CONFERENCE OF THE LEARNERS' RIGHT AND PROTECTION SCHOOL FOCAL PERSONS ANTI-BULLYING\r\nTrainingId: 0\r\nType:  TECHNICAL\r\n	admin	Trainings	1
767719	2025-03-07	15:07:15.3242951	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3719\r\nEmployeeTrainingId: 0\r\nFromDate: November 04, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OFFICE - BATANGAS CITY\r\nStatus: \r\nToDate: November 04, 2024\r\nTrainingId: 16356\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767720	2025-03-07	15:07:15.3282815	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3719\r\nEmployeeTrainingId: 0\r\nFromDate: October 10, 2024\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION  SCHOOLS DIVISION OFFICE BATANGAS CITY\r\nStatus: \r\nToDate: October 11, 2024\r\nTrainingId: 16321\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767708	2025-03-07	15:06:28.2672810	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: WITH HONOR\r\nBasicInformationId: 3720\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2000\r\nDateTo: 2006\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: PINAMUKAN IBABA ELEMENTARY SCHOOL\r\nYearGraduated: 2006\r\n	admin	EducationalBackgrounds	1
767709	2025-03-07	15:06:28.2722957	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: EBD SCHOLAR / BEST IN\r\nBasicInformationId: 3720\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2006\r\nDateTo: 2010\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: PINAMUCAN NATIONAL HIGH SCHOOL\r\nYearGraduated: 2010\r\n	admin	EducationalBackgrounds	1
767710	2025-03-07	15:06:28.2824457	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3720\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2010\r\nDateTo: 2013\r\nEducationalAttainment: 2013\r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MAJOR IN EARLY CHILDHOOD EDUCATION\r\nSchoolorUniversity: ST. BRIGDET COLLEGE\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
767711	2025-03-07	15:06:28.2864577	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3720\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2013\r\nDateTo: 2015\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MAJOR IN EARLY CHILDHOOD EDUCATION\r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 2015\r\n	admin	EducationalBackgrounds	1
767712	2025-03-07	15:06:28.2934802	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3720\r\nCourse: \r\nCourseId: 1344\r\nCourseOrMajor: \r\nDateFrom: 2016\r\nDateTo: 2017\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN ELEMENTARY EDUCATION\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2017\r\n	admin	EducationalBackgrounds	1
767713	2025-03-07	15:06:28.2975096	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: PINAMUCAN IBABA\r\nBasicInformationId: 3720\r\nBirthDate: October 09, 1994\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: miabernadine.aguilar@deped.gov.ph\r\nExtensionName: \r\nFirstName: MIA BERNADINE\r\nFullName: MIA BERNADINE A. ALCAYDE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALCAYDE\r\nMaidenName: \r\nMiddleName: AGUILAR\r\nMobileNumber: 09171871657\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: PINAMUCAN IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO BABASA\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: SITIO BABASA\r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: PINAMUCAN IBABA\r\nBasicInformationId: 3720\r\nBirthDate: October 09, 1994\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: miabernadine.aguilar@deped.gov.ph\r\nExtensionName: \r\nFirstName: MIA BERNADINE\r\nFullName: MIA BERNADINE A. ALCAYDE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALCAYDE\r\nMaidenName: \r\nMiddleName: AGUILAR\r\nMobileNumber: 09171871657\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: PINAMUCAN IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO BABASA\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO BABASA\r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767714	2025-03-07	15:06:28.3055473	<Undetected>	Update	BasicInformationId: 3720\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3733\r\nExtensionName: \r\nFirstName: CHESTER JOHN\r\nFullName: CHESTER JOHN VILLENA ALCAYDE\r\nGender: Male\r\nLastName: ALCAYDE\r\nMaidenName: \r\nMiddleName: VILLENA\r\nOccupation: TECHNICIAN\r\nRelationship: Husband\r\n	BasicInformationId: 3720\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3733\r\nExtensionName: \r\nFirstName: CHESTER JOHN\r\nFullName: CHESTER JOHN ALCAYDE\r\nGender: Male\r\nLastName: ALCAYDE\r\nMaidenName: \r\nMiddleName: VILLENA\r\nOccupation: TECHNICIAN\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
767715	2025-03-07	15:06:28.3105631	<Undetected>	Update	BasicInformationId: 3720\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3734\r\nExtensionName: \r\nFirstName: JAIME\r\nFullName: JAIME BARUEL AGUILAR\r\nGender: Male\r\nLastName: AGUILAR\r\nMaidenName: \r\nMiddleName: BARUEL\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3720\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3734\r\nExtensionName: \r\nFirstName: JAIME\r\nFullName: JAIME AGUILAR\r\nGender: Male\r\nLastName: AGUILAR\r\nMaidenName: \r\nMiddleName: BARUEL\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
767716	2025-03-07	15:06:28.3181615	<Undetected>	Update	BasicInformationId: 3720\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3735\r\nExtensionName: \r\nFirstName: LORNA\r\nFullName: LORNA ATIENZA MURON\r\nGender: Female\r\nLastName: MURON\r\nMaidenName: \r\nMiddleName: ATIENZA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3720\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3735\r\nExtensionName: \r\nFirstName: LORNA\r\nFullName: LORNA MURON\r\nGender: Female\r\nLastName: MURON\r\nMaidenName: \r\nMiddleName: ATIENZA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
767717	2025-03-07	15:06:28.3234024	<Undetected>	Update	BasicInformationId: 3720\r\nBirthDate: December 16, 2024\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3736\r\nExtensionName: \r\nFirstName: LUNA AYLA\r\nFullName: LUNA AYLA AGUILAR ALCAYDE\r\nGender: Female\r\nLastName: ALCAYDE\r\nMaidenName: \r\nMiddleName: AGUILAR\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3720\r\nBirthDate: December 16, 2024\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3736\r\nExtensionName: \r\nFirstName: LUNA AYLA\r\nFullName: LUNA AYLA ALCAYDE\r\nGender: Female\r\nLastName: ALCAYDE\r\nMaidenName: \r\nMiddleName: AGUILAR\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767721	2025-03-07	15:10:04.5138128	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3720\r\nDateOfExamination: September 27, 2015\r\nDateOfRelease: October 09, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 27, 2015\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1393613\r\nPlaceOfExamination: LUCENA\r\nRating: 79.0\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS \r\n	admin	Eligibilities	1
767735	2025-03-07	15:30:00.7824844	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3720\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: December 06, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 33,183.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: March 07, 2025\r\n	admin	Experiences	1
767736	2025-03-07	15:30:00.7864968	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3720\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 33,183.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 05, 2024\r\n	admin	Experiences	1
767737	2025-03-07	15:30:00.7915165	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3720\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: November 03, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
767738	2025-03-07	15:30:00.7967708	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3720\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: November 02, 2023\r\n	admin	Experiences	1
767739	2025-03-07	15:30:00.8020021	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3720\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Casual\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
767740	2025-03-07	15:30:00.8061795	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3720\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 28,276.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
767741	2025-03-07	15:30:00.8112883	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3720\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: November 03, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,316.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
767742	2025-03-07	15:30:00.8152950	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3720\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: November 02, 2020\r\n	admin	Experiences	1
767743	2025-03-07	15:30:00.8203030	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3720\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
767744	2025-03-07	15:30:00.8243092	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3720\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 04, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
767722	2025-03-07	15:18:19.7348483	<Undetected>	Update	BasicInformationId: 3719\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11573\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 13, 2019\r\n	BasicInformationId: 3719\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11573\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
767723	2025-03-07	15:22:18.2354855	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STA. CLARA\r\nBasicInformationId: 0\r\nBirthDate: November 12, 1985\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ronalyn.daza@deped.gov.ph\r\nExtensionName: \r\nFirstName: RONALYN\r\nFullName: RONALYN P. DAZA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DAZA\r\nMaidenName: \r\nMiddleName: PIADUCHE\r\nMobileNumber: 09295163743\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STA. CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO PUYO\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: SITIO PUYO\r\nTIN: \r\nWeight: 58\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767724	2025-03-07	15:22:18.2468392	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3721\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
767725	2025-03-07	15:24:48.1771643	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3721\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RICSON\r\nFullName: RICSON ARAGO DAZA\r\nGender: Male\r\nLastName: DAZA\r\nMaidenName: \r\nMiddleName: ARAGO\r\nOccupation: TRICYCLE DRIVER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
767726	2025-03-07	15:24:48.1821476	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3721\r\nBirthDate: May 06, 2012\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RIHANNA CORTNEY\r\nFullName: RIHANNA CORTNEY PIADUCHE DAZA\r\nGender: Male\r\nLastName: DAZA\r\nMaidenName: \r\nMiddleName: PIADUCHE\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767727	2025-03-07	15:24:48.1931110	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STA. CLARA\r\nBasicInformationId: 3721\r\nBirthDate: November 12, 1985\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ronalyn.daza@deped.gov.ph\r\nExtensionName: \r\nFirstName: RONALYN\r\nFullName: RONALYN P. DAZA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DAZA\r\nMaidenName: \r\nMiddleName: PIADUCHE\r\nMobileNumber: 09295163743\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STA. CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO PUYO\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: SITIO PUYO\r\nTIN: \r\nWeight: 58\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STA. CLARA\r\nBasicInformationId: 3721\r\nBirthDate: November 12, 1985\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ronalyn.daza@deped.gov.ph\r\nExtensionName: \r\nFirstName: RONALYN\r\nFullName: RONALYN P. DAZA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DAZA\r\nMaidenName: \r\nMiddleName: PIADUCHE\r\nMobileNumber: 09295163743\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STA. CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO PUYO\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO PUYO\r\nTIN: \r\nWeight: 58\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767728	2025-03-07	15:24:48.1970977	<Undetected>	Update	BasicInformationId: 3721\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3518\r\n	BasicInformationId: 3721\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3518\r\n	admin	Questionnaires	1
767729	2025-03-07	15:26:54.9494680	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3721\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1993\r\nDateTo: 1999\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: STA. CLARA ELEMENTARY SCHOOL\r\nYearGraduated: 1999\r\n	admin	EducationalBackgrounds	1
767730	2025-03-07	15:26:54.9534548	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3721\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1999\r\nDateTo: 2003\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2003\r\n	admin	EducationalBackgrounds	1
767731	2025-03-07	15:26:54.9644180	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3721\r\nCourse: \r\nCourseId: 1270\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: BACHELOR OF SCIENCE IN COMPUTER EDUCATION\r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2007\r\n	admin	EducationalBackgrounds	1
767732	2025-03-07	15:26:54.9694016	<Undetected>	Update	BasicInformationId: 3721\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3737\r\nExtensionName: \r\nFirstName: RICSON\r\nFullName: RICSON ARAGO DAZA\r\nGender: Male\r\nLastName: DAZA\r\nMaidenName: \r\nMiddleName: ARAGO\r\nOccupation: TRICYCLE DRIVER\r\nRelationship: Husband\r\n	BasicInformationId: 3721\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3737\r\nExtensionName: \r\nFirstName: RICSON\r\nFullName: RICSON DAZA\r\nGender: Male\r\nLastName: DAZA\r\nMaidenName: \r\nMiddleName: ARAGO\r\nOccupation: TRICYCLE DRIVER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
767733	2025-03-07	15:26:54.9763780	<Undetected>	Update	BasicInformationId: 3721\r\nBirthDate: May 06, 2012\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3738\r\nExtensionName: \r\nFirstName: RIHANNA CORTNEY\r\nFullName: RIHANNA CORTNEY PIADUCHE DAZA\r\nGender: Male\r\nLastName: DAZA\r\nMaidenName: \r\nMiddleName: PIADUCHE\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3721\r\nBirthDate: May 06, 2012\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3738\r\nExtensionName: \r\nFirstName: RIHANNA CORTNEY\r\nFullName: RIHANNA CORTNEY DAZA\r\nGender: Male\r\nLastName: DAZA\r\nMaidenName: \r\nMiddleName: PIADUCHE\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767734	2025-03-07	15:28:07.0241228	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3721\r\nCourse: \r\nCourseId: 1284\r\nCourseOrMajor: \r\nDateFrom: 2023\r\nDateTo: 2024\r\nEducationalAttainment: 27 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: TECHNOLOGY AND LIVELIHOOD EDUCATION\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
767753	2025-03-07	15:38:54.5860517	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STA. CLARA\r\nBasicInformationId: 3721\r\nBirthDate: November 12, 1985\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ronalyn.daza@deped.gov.ph\r\nExtensionName: \r\nFirstName: RONALYN\r\nFullName: RONALYN P. DAZA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DAZA\r\nMaidenName: \r\nMiddleName: PIADUCHE\r\nMobileNumber: 09295163743\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STA. CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO PUYO\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO PUYO\r\nTIN: \r\nWeight: 58\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STA. CLARA\r\nBasicInformationId: 3721\r\nBirthDate: November 12, 1985\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ronalyn.daza@deped.gov.ph\r\nExtensionName: \r\nFirstName: RONALYN\r\nFullName: RONALYN P. DAZA\r\nGender: Female\r\nGovernmentIdIssuedDate: December 09, 2016\r\nGovernmentIdNumber: 1487917\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: \r\nHDMF: 1640-0105-7114\r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DAZA\r\nMaidenName: \r\nMiddleName: PIADUCHE\r\nMobileNumber: 09295163743\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STA. CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO PUYO\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050224716-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-2021289-2\r\nStreetName: SITIO PUYO\r\nTIN: 263-623-486-0000\r\nWeight: 58\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767759	2025-03-07	15:42:18.3105398	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3721\r\nCharacterReferenceId: 0\r\nCompanyAddress: MALITAM, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09675403485\r\nExtensionName: \r\nFirstName: MARY JOY\r\nLastName: FAMPULME\r\nMiddleName: G\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767760	2025-03-07	15:42:18.3244931	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3721\r\nCharacterReferenceId: 0\r\nCompanyAddress: BOLBOK, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09567351309\r\nExtensionName: \r\nFirstName: KRISTINE MAY\r\nLastName: MENDOZA\r\nMiddleName: S\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767761	2025-03-07	15:42:18.3394435	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3721\r\nCharacterReferenceId: 0\r\nCompanyAddress: GULOD, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09161067348\r\nExtensionName: \r\nFirstName: RICA MAE\r\nLastName: BALMES\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767762	2025-03-07	15:43:30.7027859	<Undetected>	Delete	BasicInformationId: 3713\r\nDateOfExamination: May 26, 2024\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 2541\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: May 26, 2024\r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: BAUAN, BATANGAS\r\nRating: 76.72\r\nTitle: NATIONAL QUALIFYING EXAMINATION FOR SCHOOL HEADS\r\n	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	admin	Eligibilities	1
767763	2025-03-07	15:44:52.0020015	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3721\r\nDateOfExamination: September 25, 2016\r\nDateOfRelease: November 12, 2028\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 25, 2016\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1487917\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 80.20\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS \r\n	admin	Eligibilities	1
767745	2025-03-07	15:30:00.8303846	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3720\r\nCompanyInstitution: DEPARTMENT OF EDUCATION-BILOGO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 09, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: March 22, 2018\r\n	admin	Experiences	1
767746	2025-03-07	15:30:00.8343844	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3720\r\nCompanyInstitution: DEPARTMENT OF EDUCATION-BILOGO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: November 27, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: December 21, 2017\r\n	admin	Experiences	1
767747	2025-03-07	15:30:00.8386369	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3720\r\nCompanyInstitution: DEPARTMENT OF EDUCATION-ELIJAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: October 10, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: November 02, 2017\r\n	admin	Experiences	1
767748	2025-03-07	15:30:00.8436714	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3720\r\nCompanyInstitution: DEPARTMENT OF EDUCATION-ELIJAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: September 14, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: October 03, 2017\r\n	admin	Experiences	1
767749	2025-03-07	15:30:00.8476849	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3720\r\nCompanyInstitution: DEPARTMENT OF EDUCATION-BAGONG SILANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 13, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: August 11, 2017\r\n	admin	Experiences	1
767750	2025-03-07	15:30:00.8527005	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3720\r\nCompanyInstitution: WALDORF SCHOOL OF BATANGAS\r\nExperienceId: 0\r\nFromDate: May 18, 2015\r\nIsGovernmentService: False\r\nMonthlySalary: 13,000.00\r\nPositionHeld: ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 00-0\r\nStatus: Permanent\r\nToDate: April 07, 2017\r\n	admin	Experiences	1
767751	2025-03-07	15:34:47.9818758	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL-BASED TRAINING OF TEACHERS (SBTT) ON MATATAG CURRICULUM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
767752	2025-03-07	15:38:33.9201520	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2022 VIRTUAL CONTINUOUS IMPROVEMENT PROJECT SYMPOSIUM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
767754	2025-03-07	15:40:47.1263190	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3720\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 20\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16319\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767755	2025-03-07	15:40:47.1343465	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3720\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SDO BATANGAS CITY\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16357\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767756	2025-03-07	15:40:47.1393627	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3720\r\nEmployeeTrainingId: 0\r\nFromDate: August 14, 2023\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SDO BATANGAS CITY\r\nStatus: \r\nToDate: August 18, 2023\r\nTrainingId: 15574\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767757	2025-03-07	15:40:47.1443975	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3720\r\nEmployeeTrainingId: 0\r\nFromDate: August 19, 2022\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SDO BATANGAS CITY\r\nStatus: \r\nToDate: August 19, 2022\r\nTrainingId: 16358\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767758	2025-03-07	15:40:47.1484204	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3720\r\nEmployeeTrainingId: 0\r\nFromDate: March 28, 2022\r\nHours: 56\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SDO BATANGAS CITY\r\nStatus: \r\nToDate: April 05, 2022\r\nTrainingId: 15577\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767764	2025-03-07	15:46:55.7633934	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3720\r\nSkillId: 0\r\nSkillName: RECORDER PLAYING\r\n	admin	Skills	1
767765	2025-03-07	15:46:55.7713935	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3720\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
767768	2025-03-07	15:46:55.7907158	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3720\r\nCharacterReferenceId: 0\r\nCompanyAddress: DALIG, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09186126205\r\nExtensionName: \r\nFirstName: LOIDA\r\nLastName: ALUAN\r\nMiddleName: R.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767769	2025-03-07	15:46:55.8002632	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3720\r\nCharacterReferenceId: 0\r\nCompanyAddress: CONDE ITAAS, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09163109637\r\nExtensionName: \r\nFirstName: GEMMA\r\nLastName: DE TORRES\r\nMiddleName: C.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767770	2025-03-07	15:46:55.8045068	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3720\r\nCharacterReferenceId: 0\r\nCompanyAddress: PINAMUCAN IBABA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09167901399\r\nExtensionName: \r\nFirstName: TITA\r\nLastName: ARCE\r\nMiddleName: M.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767771	2025-03-07	15:46:55.8097327	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: PINAMUCAN IBABA\r\nBasicInformationId: 3720\r\nBirthDate: October 09, 1994\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: miabernadine.aguilar@deped.gov.ph\r\nExtensionName: \r\nFirstName: MIA BERNADINE\r\nFullName: MIA BERNADINE A. ALCAYDE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALCAYDE\r\nMaidenName: \r\nMiddleName: AGUILAR\r\nMobileNumber: 09171871657\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: PINAMUCAN IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO BABASA\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO BABASA\r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: PINAMUCAN IBABA\r\nBasicInformationId: 3720\r\nBirthDate: October 09, 1994\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: miabernadine.aguilar@deped.gov.ph\r\nExtensionName: \r\nFirstName: MIA BERNADINE\r\nFullName: MIA BERNADINE A. ALCAYDE\r\nGender: Female\r\nGovernmentIdIssuedDate: December 09, 2015\r\nGovernmentIdNumber: 1393613\r\nGovernmentIdPlaceIssued: LUCENA\r\nGovernmentIssuedId: PRC\r\nGSIS: 20052134790\r\nHDMF: 1211-5090-7073\r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALCAYDE\r\nMaidenName: \r\nMiddleName: AGUILAR\r\nMobileNumber: 09171871657\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: PINAMUCAN IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO BABASA\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050465956-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 34-5490086-3\r\nStreetName: SITIO BABASA\r\nTIN: 471-446-200-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767772	2025-03-07	15:48:27.6256134	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3721\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,024.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
767773	2025-03-07	15:48:27.6375735	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3721\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
767774	2025-03-07	15:48:27.6545170	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STA. CLARA\r\nBasicInformationId: 3721\r\nBirthDate: November 12, 1985\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ronalyn.daza@deped.gov.ph\r\nExtensionName: \r\nFirstName: RONALYN\r\nFullName: RONALYN P. DAZA\r\nGender: Female\r\nGovernmentIdIssuedDate: December 09, 2016\r\nGovernmentIdNumber: 1487917\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: \r\nHDMF: 1640-0105-7114\r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DAZA\r\nMaidenName: \r\nMiddleName: PIADUCHE\r\nMobileNumber: 09295163743\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STA. CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO PUYO\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050224716-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-2021289-2\r\nStreetName: SITIO PUYO\r\nTIN: 263-623-486-0000\r\nWeight: 58\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STA. CLARA\r\nBasicInformationId: 3721\r\nBirthDate: November 12, 1985\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ronalyn.daza@deped.gov.ph\r\nExtensionName: \r\nFirstName: RONALYN\r\nFullName: RONALYN P. DAZA\r\nGender: Female\r\nGovernmentIdIssuedDate: December 09, 2016\r\nGovernmentIdNumber: 1487917\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: 02006236712\r\nHDMF: 1640-0105-7114\r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DAZA\r\nMaidenName: \r\nMiddleName: PIADUCHE\r\nMobileNumber: 09295163743\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STA. CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO PUYO\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050224716-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-2021289-2\r\nStreetName: SITIO PUYO\r\nTIN: 263-623-486-0000\r\nWeight: 58\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767775	2025-03-10	09:22:11.6165889	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3721\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 13, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
767776	2025-03-10	09:22:11.6266237	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3721\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 06, 2018\r\nIsGovernmentService: False\r\nMonthlySalary: 200,250.00\r\nPositionHeld: CLASSROOM TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: May 31, 2022\r\n	admin	Experiences	1
767777	2025-03-10	09:23:43.1246830	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION ROLLOUT OF DEPARTMENT OF EDUCATION COMPUTERIZATION PROGRAM (DCP) ADOPTION CAPABILITY BUILDING FOR TEACHERS OF RECEPIENT SCHOOLS\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
767778	2025-03-10	09:25:10.8018223	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WRITESHOP ON THE DEVELOPMENT AND/OR ENHANCEMENT OF EXISTING SCHOOL CONTINGENCY PLAN\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
767779	2025-03-10	09:25:50.2887819	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3721\r\nEmployeeTrainingId: 0\r\nFromDate: November 27, 2024\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 28, 2024\r\nTrainingId: 16359\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767780	2025-03-10	09:25:50.2937652	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3721\r\nEmployeeTrainingId: 0\r\nFromDate: September 24, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: MALITAM NATIONAL HIGH SCHOOL\r\nStatus: \r\nToDate: September 24, 2024\r\nTrainingId: 16360\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767781	2025-03-10	09:26:33.3262645	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL-BASED TRAINING OF TEACHERS IN MATATAG CURRICULUM\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
767782	2025-03-10	09:27:49.4394921	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3721\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16347\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767783	2025-03-10	09:27:49.4444755	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3721\r\nEmployeeTrainingId: 0\r\nFromDate: January 26, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: MALITAM NATIONAL HIGH SCHOOL\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16348\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767784	2025-03-10	09:28:08.1896252	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: SIXTH PLACE\r\nBasicInformationId: 3709\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1990\r\nDateTo: 1994\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: TABANGAO NATIONAL HIGH SCHOOL\r\nYearGraduated: 1994\r\n	admin	EducationalBackgrounds	1
767785	2025-03-10	09:28:08.2016849	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: PESFA SCHOLAR\r\nBasicInformationId: 3709\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 1998\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 1998\r\n	admin	EducationalBackgrounds	1
767786	2025-03-10	09:28:08.2066930	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3709\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2004\r\nDateTo: 2016\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2016\r\n	admin	EducationalBackgrounds	1
767787	2025-03-10	09:28:08.2137147	<Undetected>	Update	BasicInformationId: 3709\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3697\r\nExtensionName: \r\nFirstName: ALVIN\r\nFullName: ALVIN CANTOS TARCELO\r\nGender: Male\r\nLastName: TARCELO\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: OFW (SCAFFOLDING INSPECTOR)\r\nRelationship: Husband\r\n	BasicInformationId: 3709\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3697\r\nExtensionName: \r\nFirstName: ALVIN\r\nFullName: ALVIN TARCELO\r\nGender: Male\r\nLastName: TARCELO\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: OFW (SCAFFOLDING INSPECTOR)\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
767788	2025-03-10	09:28:08.2177238	<Undetected>	Update	BasicInformationId: 3709\r\nBirthDate: August 24, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3698\r\nExtensionName: \r\nFirstName: ALTHEA\r\nFullName: ALTHEA DE CASTRO TARCELO\r\nGender: Female\r\nLastName: TARCELO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3709\r\nBirthDate: August 24, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3698\r\nExtensionName: \r\nFirstName: ALTHEA\r\nFullName: ALTHEA TARCELO\r\nGender: Female\r\nLastName: TARCELO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767789	2025-03-10	09:28:08.2257364	<Undetected>	Update	BasicInformationId: 3709\r\nBirthDate: November 22, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3715\r\nExtensionName: \r\nFirstName: ALLYNA\r\nFullName: ALLYNA DE CASTRO TARCELO\r\nGender: Female\r\nLastName: TARCELO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3709\r\nBirthDate: November 22, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3715\r\nExtensionName: \r\nFirstName: ALLYNA\r\nFullName: ALLYNA TARCELO\r\nGender: Female\r\nLastName: TARCELO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767790	2025-03-10	09:28:08.2297438	<Undetected>	Update	BasicInformationId: 3709\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3716\r\nExtensionName: \r\nFirstName: ANTONINO MELANDO\r\nFullName: ANTONINO MELANDO BAUTRO DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: BAUTRO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3709\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3716\r\nExtensionName: \r\nFirstName: ANTONINO MELANDO\r\nFullName: ANTONINO MELANDO DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: BAUTRO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
767791	2025-03-10	09:28:08.2347538	<Undetected>	Update	BasicInformationId: 3709\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3717\r\nExtensionName: \r\nFirstName: CECILIA\r\nFullName: CECILIA MACATANGAY CLEOFE\r\nGender: Female\r\nLastName: CLEOFE\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3709\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3717\r\nExtensionName: \r\nFirstName: CECILIA\r\nFullName: CECILIA CLEOFE\r\nGender: Female\r\nLastName: CLEOFE\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
767792	2025-03-10	09:28:08.2397613	<Undetected>	Delete	Awards: PESFA SCHOLAR\r\nBasicInformationId: 3709\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 1998\r\nEducationalAttainment: \r\nEducationalBackgroundId: 13917\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 1998\r\n	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
767793	2025-03-10	09:28:48.7719728	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3721\r\nEmployeeTrainingId: 0\r\nFromDate: August 02, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 02, 2023\r\nTrainingId: 15143\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767794	2025-03-10	09:29:25.6250806	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3721\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
767795	2025-03-10	09:29:25.6300638	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3721\r\nSkillId: 0\r\nSkillName: PROGRAMMING\r\n	admin	Skills	1
767796	2025-03-10	09:29:25.6410275	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3721\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
767797	2025-03-10	14:05:32.5418009	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO SUPREME\r\nBarangay: STO. NINO\r\nBasicInformationId: 3710\r\nBirthDate: March 07, 1978\r\nBirthPlace: CULASI, ANTIQUE\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: analyn.dinglasan@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANALYN\r\nFullName: ANALYN A. DINGLASAN\r\nGender: Female\r\nGovernmentIdIssuedDate: November 15, 1999\r\nGovernmentIdNumber: 0612339\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 78030700693\r\nHDMF: 1210-2556-0336\r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: ALORRO\r\nMobileNumber: 09053647110\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO SUPREME\r\nPermanentBarangay: STO. NINO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 19-000786890-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 33-6782729-5\r\nStreetName: \r\nTIN: 226-354-262-0000\r\nWeight: 53\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO SUPREME\r\nBarangay: STO. NINO\r\nBasicInformationId: 3710\r\nBirthDate: March 07, 1978\r\nBirthPlace: CULASI, ANTIQUE\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: analyn.dinglasan@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANALYN\r\nFullName: ANALYN A. DINGLASAN\r\nGender: Female\r\nGovernmentIdIssuedDate: November 15, 1999\r\nGovernmentIdNumber: 0612339\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: \r\nHDMF: 1210-2556-0336\r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: ALORRO\r\nMobileNumber: 09053647110\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO SUPREME\r\nPermanentBarangay: STO. NINO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 19-000786890-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 33-6782729-5\r\nStreetName: \r\nTIN: 226-354-262-0000\r\nWeight: 53\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767798	2025-03-10	14:07:29.4710401	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 13\r\nAddress2: GAWAD KALINGA\r\nBarangay: LIBJO\r\nBasicInformationId: 3719\r\nBirthDate: September 09, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rosemarie.cusi@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROSEMARIE\r\nFullName: ROSEMARIE F. CUSI\r\nGender: Female\r\nGovernmentIdIssuedDate: December 13, 2017\r\nGovernmentIdNumber: 1578375\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: \r\nHDMF: 1212-1487-9541\r\nHeight: 1.43\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CUSI\r\nMaidenName: \r\nMiddleName: FALCULAN\r\nMobileNumber: 09301836309\r\nNationality: Filipino\r\nPermanentAddress1: 13\r\nPermanentAddress2: GAWAD KALINGA\r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025275689-1\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1113469-1\r\nStreetName: \r\nTIN: 717-411-465-0000\r\nWeight: 52\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 13\r\nAddress2: GAWAD KALINGA\r\nBarangay: LIBJO\r\nBasicInformationId: 3719\r\nBirthDate: September 09, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rosemarie.cusi@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROSEMARIE\r\nFullName: ROSEMARIE F. CUSI\r\nGender: Female\r\nGovernmentIdIssuedDate: December 13, 2017\r\nGovernmentIdNumber: 1578375\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02005413499\r\nHDMF: 1212-1487-9541\r\nHeight: 1.43\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CUSI\r\nMaidenName: \r\nMiddleName: FALCULAN\r\nMobileNumber: 09301836309\r\nNationality: Filipino\r\nPermanentAddress1: 13\r\nPermanentAddress2: GAWAD KALINGA\r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025275689-1\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1113469-1\r\nStreetName: \r\nTIN: 717-411-465-0000\r\nWeight: 52\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767799	2025-03-10	14:08:58.6149777	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3718\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2002\r\nDateTo: 2006\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: ALANGILAN CENTRAL ELEMENTARY SCHOOL\r\nYearGraduated: 2006\r\n	admin	EducationalBackgrounds	1
767800	2025-03-10	14:08:58.6199943	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3718\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2006\r\nDateTo: 2010\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2010\r\n	admin	EducationalBackgrounds	1
767801	2025-03-10	14:08:58.6291199	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3718\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2010\r\nDateTo: 2015\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MAJOR IN EARLY CHILDHOOD EDUCATION\r\nSchoolorUniversity: ST. BRIDGET COLLEGE\r\nYearGraduated: 2015\r\n	admin	EducationalBackgrounds	1
767803	2025-03-10	14:10:27.7688520	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN MIGUEL\r\nBasicInformationId: 0\r\nBirthDate: September 29, 1985\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lalaine.guico@deped.gov.ph\r\nExtensionName: \r\nFirstName: LALAINE\r\nFullName: LALAINE I. GUICO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GUICO\r\nMaidenName: \r\nMiddleName: ILAGAN\r\nMobileNumber: 09175350130\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN MIGUEL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO BAGONG POOK\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: SITIO BAGONG POOK\r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767802	2025-03-10	14:08:58.6341371	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: AMIHAN VILLAGE\r\nBarangay: BALAGTAS\r\nBasicInformationId: 3718\r\nBirthDate: October 31, 1993\r\nBirthPlace: SAN ANTONIO, ISLA VERDE BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: brenda.porcino@deped.gov.ph\r\nExtensionName: \r\nFirstName: BRENDA\r\nFullName: BRENDA P. ALCANTARA\r\nGender: Female\r\nGovernmentIdIssuedDate: March 20, 2016\r\nGovernmentIdNumber: 1461480\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC\r\nGSIS: 20052151550\r\nHDMF: 1212-0601-1301\r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALCANTARA\r\nMaidenName: \r\nMiddleName: PORCINO\r\nMobileNumber: 09387811735\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: AMIHAN VILLAGE\r\nPermanentBarangay: BALAGTAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 01-025446137-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 462-784-580-0000\r\nWeight: 45\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: AMIHAN VILLAGE\r\nBarangay: BALAGTAS\r\nBasicInformationId: 3718\r\nBirthDate: October 31, 1993\r\nBirthPlace: SAN ANTONIO, ISLA VERDE BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: brenda.porcino@deped.gov.ph\r\nExtensionName: \r\nFirstName: BRENDA\r\nFullName: BRENDA P. ALCANTARA\r\nGender: Female\r\nGovernmentIdIssuedDate: March 20, 2016\r\nGovernmentIdNumber: 1461480\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC\r\nGSIS: 20052151550\r\nHDMF: 1212-0601-1301\r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALCANTARA\r\nMaidenName: \r\nMiddleName: PORCINO\r\nMobileNumber: 09387811735\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: AMIHAN VILLAGE\r\nPermanentBarangay: BALAGTAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 01-025446137-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: 462-784-580-0000\r\nWeight: 45\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767814	2025-03-10	14:14:36.0783284	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: COMPUTER-BASED ENGLISH PROFICIENCY\r\nLevel: Vocational\r\n	admin	Courses	1
767816	2025-03-10	14:15:19.8943337	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3712\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1995\r\nDateTo: 2002\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: CALICANTO ELEMENTARY SCHOOL\r\nYearGraduated: 2002\r\n	admin	EducationalBackgrounds	1
767817	2025-03-10	14:15:19.8983334	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3712\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2002\r\nDateTo: 2006\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2006\r\n	admin	EducationalBackgrounds	1
767818	2025-03-10	14:15:19.9083333	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3712\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2007\r\nDateTo: 2013\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MAJOR IN PRESCHOOL EDUCATION\r\nSchoolorUniversity: WESTMEAD INTERNATIONAL SCHOOL\r\nYearGraduated: 2013\r\n	admin	EducationalBackgrounds	1
767819	2025-03-10	14:15:19.9133337	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: SCHOLAR\r\nBasicInformationId: 3712\r\nCourse: \r\nCourseId: 1372\r\nCourseOrMajor: \r\nDateFrom: 2014\r\nDateTo: 2014\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Vocational Graduate\r\nMajor: \r\nSchoolorUniversity: RTC-TESDA CALABARZON\r\nYearGraduated: 2014\r\n	admin	EducationalBackgrounds	1
767820	2025-03-10	14:15:19.9204781	<Undetected>	Update	BasicInformationId: 3712\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3713\r\nExtensionName: \r\nFirstName: VENANCIO\r\nFullName: VENANCIO CARINGAL CAMACHO\r\nGender: Male\r\nLastName: CAMACHO\r\nMaidenName: \r\nMiddleName: CARINGAL\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3712\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3713\r\nExtensionName: \r\nFirstName: VENANCIO\r\nFullName: VENANCIO CAMACHO\r\nGender: Male\r\nLastName: CAMACHO\r\nMaidenName: \r\nMiddleName: CARINGAL\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
767821	2025-03-10	14:15:19.9254949	<Undetected>	Update	BasicInformationId: 3712\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3714\r\nExtensionName: \r\nFirstName: TERESITA\r\nFullName: TERESITA COPO GAMAB\r\nGender: Female\r\nLastName: GAMAB\r\nMaidenName: \r\nMiddleName: COPO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3712\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3714\r\nExtensionName: \r\nFirstName: TERESITA\r\nFullName: TERESITA GAMAB\r\nGender: Female\r\nLastName: GAMAB\r\nMaidenName: \r\nMiddleName: COPO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
767824	2025-03-10	14:19:28.3025935	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3714\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1982\r\nDateTo: 1989\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: PALLOCA WEST ELEMENTARY SCHOOL\r\nYearGraduated: 1989\r\n	admin	EducationalBackgrounds	1
767825	2025-03-10	14:19:28.3152135	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3714\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1989\r\nDateTo: 1993\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1993\r\n	admin	EducationalBackgrounds	1
767826	2025-03-10	14:19:28.3202330	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3714\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1993\r\nDateTo: 1997\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY (P.B.M.I.T.)\r\nYearGraduated: 1997\r\n	admin	EducationalBackgrounds	1
767918	2025-03-10	15:28:13.9022700	<Undetected>	Update	BasicInformationId: 3725\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3522\r\n	BasicInformationId: 3725\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3522\r\n	admin	Questionnaires	1
767805	2025-03-10	14:12:29.6666414	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3722\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GLENN\r\nFullName: GLENN GUTIERREZ GUICO\r\nGender: Male\r\nLastName: GUICO\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: PIPE INSULATOR\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
767806	2025-03-10	14:12:29.6776048	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3722\r\nBirthDate: December 29, 2018\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GRACIE GWEN\r\nFullName: GRACIE GWEN ILAGAN GUICO\r\nGender: Male\r\nLastName: GUICO\r\nMaidenName: \r\nMiddleName: ILAGAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767807	2025-03-10	14:12:29.6815898	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN MIGUEL\r\nBasicInformationId: 3722\r\nBirthDate: September 29, 1985\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lalaine.guico@deped.gov.ph\r\nExtensionName: \r\nFirstName: LALAINE\r\nFullName: LALAINE I. GUICO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GUICO\r\nMaidenName: \r\nMiddleName: ILAGAN\r\nMobileNumber: 09175350130\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN MIGUEL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO BAGONG POOK\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: SITIO BAGONG POOK\r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN MIGUEL\r\nBasicInformationId: 3722\r\nBirthDate: September 29, 1985\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lalaine.guico@deped.gov.ph\r\nExtensionName: \r\nFirstName: LALAINE\r\nFullName: LALAINE I. GUICO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GUICO\r\nMaidenName: \r\nMiddleName: ILAGAN\r\nMobileNumber: 09175350130\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN MIGUEL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO BAGONG POOK\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO BAGONG POOK\r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767808	2025-03-10	14:12:29.6905615	<Undetected>	Update	BasicInformationId: 3722\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3519\r\n	BasicInformationId: 3722\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3519\r\n	admin	Questionnaires	1
767809	2025-03-10	14:13:57.8319300	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3722\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1992\r\nDateTo: 1998\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: TULO II ELEMENTARY SCHOOL\r\nYearGraduated: 1998\r\n	admin	EducationalBackgrounds	1
767810	2025-03-10	14:13:57.8369133	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3722\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1998\r\nDateTo: 2002\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2002\r\n	admin	EducationalBackgrounds	1
767811	2025-03-10	14:13:57.8468801	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3722\r\nCourse: \r\nCourseId: 1270\r\nCourseOrMajor: \r\nDateFrom: 2002\r\nDateTo: 2006\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2006\r\n	admin	EducationalBackgrounds	1
767812	2025-03-10	14:13:57.8508666	<Undetected>	Update	BasicInformationId: 3722\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3739\r\nExtensionName: \r\nFirstName: GLENN\r\nFullName: GLENN GUTIERREZ GUICO\r\nGender: Male\r\nLastName: GUICO\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: PIPE INSULATOR\r\nRelationship: Husband\r\n	BasicInformationId: 3722\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3739\r\nExtensionName: \r\nFirstName: GLENN\r\nFullName: GLENN GUICO\r\nGender: Male\r\nLastName: GUICO\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: PIPE INSULATOR\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
767813	2025-03-10	14:13:57.8578434	<Undetected>	Update	BasicInformationId: 3722\r\nBirthDate: December 29, 2018\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3740\r\nExtensionName: \r\nFirstName: GRACIE GWEN\r\nFullName: GRACIE GWEN ILAGAN GUICO\r\nGender: Male\r\nLastName: GUICO\r\nMaidenName: \r\nMiddleName: ILAGAN\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3722\r\nBirthDate: December 29, 2018\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3740\r\nExtensionName: \r\nFirstName: GRACIE GWEN\r\nFullName: GRACIE GWEN GUICO\r\nGender: Male\r\nLastName: GUICO\r\nMaidenName: \r\nMiddleName: ILAGAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767815	2025-03-10	14:14:48.4532261	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3722\r\nCourse: \r\nCourseId: 1367\r\nCourseOrMajor: \r\nDateFrom: 2015\r\nDateTo: 2017\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2017\r\n	admin	EducationalBackgrounds	1
767831	2025-03-10	14:22:41.8512354	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3716\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1998\r\nDateTo: 1994\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 1994\r\n	admin	EducationalBackgrounds	1
767822	2025-03-10	14:17:05.5339955	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN MIGUEL\r\nBasicInformationId: 3722\r\nBirthDate: September 29, 1985\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lalaine.guico@deped.gov.ph\r\nExtensionName: \r\nFirstName: LALAINE\r\nFullName: LALAINE I. GUICO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GUICO\r\nMaidenName: \r\nMiddleName: ILAGAN\r\nMobileNumber: 09175350130\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN MIGUEL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO BAGONG POOK\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO BAGONG POOK\r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN MIGUEL\r\nBasicInformationId: 3722\r\nBirthDate: September 29, 1985\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lalaine.guico@deped.gov.ph\r\nExtensionName: \r\nFirstName: LALAINE\r\nFullName: LALAINE I. GUICO\r\nGender: Female\r\nGovernmentIdIssuedDate: August 27, 2006\r\nGovernmentIdNumber: 0929842\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02005948935\r\nHDMF: 1490-0081-8665\r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GUICO\r\nMaidenName: \r\nMiddleName: ILAGAN\r\nMobileNumber: 09175350130\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN MIGUEL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO BAGONG POOK\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050155732-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1739577-7\r\nStreetName: SITIO BAGONG POOK\r\nTIN: 302-580-324-0000\r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767823	2025-03-10	14:18:38.5468822	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3722\r\nDateOfExamination: August 27, 2006\r\nDateOfRelease: September 29, 2002\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 27, 2006\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0929842\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 80\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
767827	2025-03-10	14:20:23.9926533	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3722\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,421.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
767828	2025-03-10	14:20:23.9976357	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3722\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 12, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: February 29, 2024\r\n	admin	Experiences	1
767829	2025-03-10	14:21:52.3301429	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3722\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: February 11, 2024\r\n	admin	Experiences	1
767830	2025-03-10	14:21:52.3341295	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3722\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
767834	2025-03-10	14:22:46.7648036	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3722\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,439.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
767835	2025-03-10	14:36:24.3970473	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3722\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 22, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 23,877.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
767836	2025-03-10	14:40:11.4321498	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3722\r\nCompanyInstitution: UCCP HOPE CHRISTIAN SCHOOL OF BATANGAS INC.\r\nExperienceId: 0\r\nFromDate: June 01, 2006\r\nIsGovernmentService: False\r\nMonthlySalary: 17,800.00\r\nPositionHeld: ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: May 31, 2021\r\n	admin	Experiences	1
767837	2025-03-10	14:41:17.6137754	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PROJECT BAGWIS: PAGSASANAY SA PAGBUO NG GAWAING PANG-INTERBENSYON SA FILIPINO MATATAG KURIKULUM\r\nTrainingId: 0\r\nType: TECHNICAL \r\n	admin	Trainings	1
767838	2025-03-10	14:42:26.0592718	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2024 IN-SERVICE TRAINING (INSET) MASTER CLASSES FOR GRADE 7 TEACHERS ACROSS ALL LEARNING AREAS\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
767832	2025-03-10	14:22:41.8552353	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3716\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 1998\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 1998\r\n	admin	EducationalBackgrounds	1
767833	2025-03-10	14:22:41.8652354	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3716\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1998\r\nDateTo: 2002\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: SAINT BRIDGET COLLEGE\r\nYearGraduated: 2002\r\n	admin	EducationalBackgrounds	1
767869	2025-03-10	15:05:30.7305446	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: DALIG\r\nBasicInformationId: 0\r\nBirthDate: July 29, 1979\r\nBirthPlace: POBLACION, LOBO BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: loida.aluan@deped.gov.ph\r\nExtensionName: \r\nFirstName: LOIDA\r\nFullName: LOIDA R. ALUAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALUAN\r\nMaidenName: \r\nMiddleName: RAMOS\r\nMobileNumber: 09186126205\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: DALIG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 51\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767870	2025-03-10	15:05:30.7425236	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3724\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 7405600\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: APOLONIO\r\nFullName: APOLONIO CALINGASAN ALUAN\r\nGender: Male\r\nLastName: ALUAN\r\nMaidenName: \r\nMiddleName: CALINGASAN\r\nOccupation: SHIFT SUPERVISOR\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
767871	2025-03-10	15:05:30.7425236	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3724\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SERGIO\r\nFullName: SERGIO GUTIERREZ RAMOS\r\nGender: Male\r\nLastName: RAMOS\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
767872	2025-03-10	15:05:30.7435282	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3724\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: NEDINA\r\nFullName: NEDINA TIAMSIM MAGTIBAY\r\nGender: Female\r\nLastName: MAGTIBAY\r\nMaidenName: \r\nMiddleName: TIAMSIM\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
767873	2025-03-10	15:05:30.7435282	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3724\r\nBirthDate: August 31, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARK\r\nFullName: MARK RAMOS ALUAN\r\nGender: Male\r\nLastName: ALUAN\r\nMaidenName: \r\nMiddleName: RAMOS\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767874	2025-03-10	15:05:30.7435282	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3724\r\nBirthDate: February 08, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PRINCESS ASHLEY\r\nFullName: PRINCESS ASHLEY RAMOS ALUAN\r\nGender: Female\r\nLastName: ALUAN\r\nMaidenName: \r\nMiddleName: RAMOS\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767875	2025-03-10	15:05:30.7435282	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3724\r\nBirthDate: January 29, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JETHRO TIMOTHY\r\nFullName: JETHRO TIMOTHY RAMOS ALUAN\r\nGender: Male\r\nLastName: ALUAN\r\nMaidenName: \r\nMiddleName: RAMOS\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767876	2025-03-10	15:05:30.7435282	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3724\r\nBirthDate: December 02, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: BEA ANNIKA\r\nFullName: BEA ANNIKA RAMOS ALUAN\r\nGender: Female\r\nLastName: ALUAN\r\nMaidenName: \r\nMiddleName: RAMOS\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767877	2025-03-10	15:05:30.7435282	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3724\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
767882	2025-03-10	15:09:31.4268942	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER IN ELEMENTARY EDUCATION\r\nLevel: Master's\r\n	admin	Courses	1
767839	2025-03-10	14:43:01.1912036	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3722\r\nEmployeeTrainingId: 0\r\nFromDate: November 27, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16362\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767840	2025-03-10	14:43:01.1961870	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3722\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 20\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16363\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767841	2025-03-10	14:44:07.5301092	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON COMPREHENSIVE SEXUALITY EDUCATIION (CSE) FOR GRADE 7 TEACHERS ACROSS ALL LEARNING AREAS\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
767842	2025-03-10	14:45:12.4584698	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SLAC SESSION: VALUES BASED PEDAGOGY\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
767843	2025-03-10	14:46:13.3865622	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SLAC SESSOPM: TEACHING AND LEARNING SUPPORT AND INTERVENTIONS\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
767844	2025-03-10	14:47:06.5786674	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SLAC SESSION: TEACHING AND LEARNING SUPPORT AND INTERVENTIONS\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
767845	2025-03-10	14:47:44.8530347	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3722\r\nEmployeeTrainingId: 0\r\nFromDate: November 11, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: November 11, 2024\r\nTrainingId: 16364\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767846	2025-03-10	14:47:44.8600117	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3722\r\nEmployeeTrainingId: 0\r\nFromDate: October 31, 2024\r\nHours: 4\r\nNatureOfParticipation: \r\nSponsoringAgency: MALITAM NATIONAL HIGH SCHOOL\r\nStatus: \r\nToDate: October 31, 2024\r\nTrainingId: 16365\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767847	2025-03-10	14:47:44.8639979	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3722\r\nEmployeeTrainingId: 0\r\nFromDate: October 31, 2024\r\nHours: 4\r\nNatureOfParticipation: \r\nSponsoringAgency: MALITAM NATIONAL HIGH SCHOOL\r\nStatus: \r\nToDate: October 31, 2024\r\nTrainingId: 16367\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767848	2025-03-10	14:48:28.3919135	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3722\r\nSkillId: 0\r\nSkillName: WRITING FILIPINO POEMS\r\n	admin	Skills	1
767849	2025-03-10	14:48:28.3959001	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3722\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
767850	2025-03-10	14:48:28.4058668	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3722\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
767851	2025-03-10	14:50:22.1961991	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3722\r\nCharacterReferenceId: 0\r\nCompanyAddress: SORO SORO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09566634069\r\nExtensionName: \r\nFirstName: MARY JOYCE\r\nLastName: CAJAYON\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767852	2025-03-10	14:50:22.2031760	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3722\r\nCharacterReferenceId: 0\r\nCompanyAddress: ALANGILAN, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09087534046\r\nExtensionName: \r\nFirstName: FRITZIE ANNE\r\nLastName: TOLENTINO\r\nMiddleName: F\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767853	2025-03-10	14:50:22.2071625	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3722\r\nCharacterReferenceId: 0\r\nCompanyAddress: ALANGILAN, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09162261416\r\nExtensionName: \r\nFirstName: MELISSA\r\nLastName: YEMA\r\nMiddleName: S\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767854	2025-03-10	14:51:58.0897732	<Undetected>	Update	BasicInformationId: 3721\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11596\r\nFromDate: January 06, 2018\r\nIsGovernmentService: False\r\nMonthlySalary: 200,250.00\r\nPositionHeld: CLASSROOM TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: May 31, 2022\r\n	BasicInformationId: 3721\r\nCompanyInstitution: INTEGRATED BASIC EDUCATION DEPARTMENT/SAINT BRIDGET COLLEGE\r\nExperienceId: 11596\r\nFromDate: January 06, 2018\r\nIsGovernmentService: False\r\nMonthlySalary: 200,250.00\r\nPositionHeld: CLASSROOM TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: May 31, 2022\r\n	admin	Experiences	1
767864	2025-03-10	15:00:53.5756142	<Undetected>	Update	BasicInformationId: 3723\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3741\r\nExtensionName: \r\nFirstName: FLORENCIA\r\nFullName: FLORENCIA MENIA HERILLA\r\nGender: Male\r\nLastName: HERILLA\r\nMaidenName: SAWALI\r\nMiddleName: MENIA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3723\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3741\r\nExtensionName: \r\nFirstName: FLORENCIA\r\nFullName: FLORENCIA HERILLA\r\nGender: Male\r\nLastName: HERILLA\r\nMaidenName: \r\nMiddleName: MENIA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
767855	2025-03-10	14:54:41.3460523	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: UNIT 14 PHASE 1\r\nAddress2: VILLA VICTOIRE\r\nBarangay: PALLOCAN EAST\r\nBasicInformationId: 0\r\nBirthDate: January 12, 1999\r\nBirthPlace: TINGLOY, BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lornaherilla0828@gmail.com\r\nExtensionName: \r\nFirstName: LORNA\r\nFullName: LORNA S. HERILLA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: HERILLA\r\nMaidenName: \r\nMiddleName: SAWALI\r\nMobileNumber: 09611979762\r\nNationality: Filipino\r\nPermanentAddress1: UNIT 14 PHASE 1\r\nPermanentAddress2: VILLA VICTOIRE\r\nPermanentBarangay: PALLOCAN EAST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PULO\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: PULO\r\nTIN: \r\nWeight: 79\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767856	2025-03-10	14:54:41.3578392	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3723\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
767857	2025-03-10	14:58:17.0875371	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3723\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FLORENCIA\r\nFullName: FLORENCIA MENIA HERILLA\r\nGender: Male\r\nLastName: HERILLA\r\nMaidenName: SAWALI\r\nMiddleName: MENIA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
767858	2025-03-10	14:58:17.0925206	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3723\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FLORENCIA\r\nFullName: FLORENCIA MENIA HERILLA\r\nGender: Male\r\nLastName: HERILLA\r\nMaidenName: SAWALI\r\nMiddleName: MENIA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
767859	2025-03-10	14:58:17.1024876	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: UNIT 14 PHASE 1\r\nAddress2: VILLA VICTOIRE\r\nBarangay: PALLOCAN EAST\r\nBasicInformationId: 3723\r\nBirthDate: January 12, 1999\r\nBirthPlace: TINGLOY, BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lornaherilla0828@gmail.com\r\nExtensionName: \r\nFirstName: LORNA\r\nFullName: LORNA S. HERILLA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: HERILLA\r\nMaidenName: \r\nMiddleName: SAWALI\r\nMobileNumber: 09611979762\r\nNationality: Filipino\r\nPermanentAddress1: UNIT 14 PHASE 1\r\nPermanentAddress2: VILLA VICTOIRE\r\nPermanentBarangay: PALLOCAN EAST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PULO\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: PULO\r\nTIN: \r\nWeight: 79\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: UNIT 14 PHASE 1\r\nAddress2: VILLA VICTOIRE\r\nBarangay: PALLOCAN EAST\r\nBasicInformationId: 3723\r\nBirthDate: January 12, 1999\r\nBirthPlace: TINGLOY, BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lornaherilla0828@gmail.com\r\nExtensionName: \r\nFirstName: LORNA\r\nFullName: LORNA S. HERILLA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: HERILLA\r\nMaidenName: \r\nMiddleName: SAWALI\r\nMobileNumber: 09611979762\r\nNationality: Filipino\r\nPermanentAddress1: UNIT 14 PHASE 1\r\nPermanentAddress2: VILLA VICTOIRE\r\nPermanentBarangay: PALLOCAN EAST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PULO\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PULO\r\nTIN: \r\nWeight: 79\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767860	2025-03-10	14:58:17.1074711	<Undetected>	Update	BasicInformationId: 3723\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3520\r\n	BasicInformationId: 3723\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3520\r\n	admin	Questionnaires	1
767861	2025-03-10	14:59:36.7091179	<Undetected>	Update	BasicInformationId: 3723\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3742\r\nExtensionName: \r\nFirstName: FLORENCIA\r\nFullName: FLORENCIA MENIA HERILLA\r\nGender: Male\r\nLastName: HERILLA\r\nMaidenName: SAWALI\r\nMiddleName: MENIA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3723\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3742\r\nExtensionName: \r\nFirstName: JOSE RIZALDO\r\nFullName: JOSE RIZALDO ABANTE HERILLA\r\nGender: Male\r\nLastName: HERILLA\r\nMaidenName: \r\nMiddleName: ABANTE\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
767862	2025-03-10	15:00:53.5666446	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: THIRD HONOR\r\nBasicInformationId: 3723\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAN JUAN ELEMENTARY SCHOOL\r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
767863	2025-03-10	15:00:53.5716277	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3723\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2011\r\nDateTo: 2015\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: TINGLOY NATIONAL HIGH SCHOOL\r\nYearGraduated: 2015\r\n	admin	EducationalBackgrounds	1
767903	2025-03-10	15:15:25.8079762	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3723\r\nSkillId: 0\r\nSkillName: CROCHETING\r\n	admin	Skills	1
767904	2025-03-10	15:15:25.8119621	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3723\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
767865	2025-03-10	15:00:53.5855810	<Undetected>	Update	BasicInformationId: 3723\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3742\r\nExtensionName: \r\nFirstName: JOSE RIZALDO\r\nFullName: JOSE RIZALDO ABANTE HERILLA\r\nGender: Male\r\nLastName: HERILLA\r\nMaidenName: \r\nMiddleName: ABANTE\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3723\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3742\r\nExtensionName: \r\nFirstName: JOSE RIZALDO\r\nFullName: JOSE RIZALDO HERILLA\r\nGender: Male\r\nLastName: HERILLA\r\nMaidenName: \r\nMiddleName: ABANTE\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
767866	2025-03-10	15:03:24.2131104	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3723\r\nCourse: \r\nCourseId: 1270\r\nCourseOrMajor: \r\nDateFrom: 2015\r\nDateTo: 2019\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MATHEMATICS\r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2019\r\n	admin	EducationalBackgrounds	1
767867	2025-03-10	15:03:24.2240728	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3723\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2023\r\nDateTo: 2025\r\nEducationalAttainment: 27 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MATHEMATICS\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
767868	2025-03-10	15:04:40.2469106	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3723\r\nDateOfExamination: September 29, 2019\r\nDateOfRelease: January 12, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 29, 2019\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1842770\r\nPlaceOfExamination: SACRED HEAR COLLEGE\r\nRating: 85.8\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS \r\n	admin	Eligibilities	1
767878	2025-03-10	15:06:12.1847730	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3723\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 16, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
767879	2025-03-10	15:06:12.1927471	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3723\r\nCompanyInstitution: UB WALDORF SCHOOL INCORPORATED\r\nExperienceId: 0\r\nFromDate: July 01, 2024\r\nIsGovernmentService: False\r\nMonthlySalary: 14,500.00\r\nPositionHeld: TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: August 02, 2024\r\n	admin	Experiences	1
767880	2025-03-10	15:07:08.3532288	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: GOOGLEARN: UPSKILLING THE 21ST CENTURY EDUCATORS\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
767881	2025-03-10	15:09:00.6556746	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CHILD PROTECTION E-LEARNING COURSE FOR EDUCATORS\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
767883	2025-03-10	15:10:12.0097036	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MASTERCLASS ON DESIGNING MATATAG-READY SCIENCE AND MATCH CLASSES\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
767884	2025-03-10	15:12:42.1376643	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3723\r\nEmployeeTrainingId: 0\r\nFromDate: April 25, 2022\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF INFORMATION AND COMMUNICATIONS TEACHNOLOGY - LUZON\r\nStatus: \r\nToDate: April 26, 2022\r\nTrainingId: 16368\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767885	2025-03-10	15:12:42.1495868	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3723\r\nEmployeeTrainingId: 0\r\nFromDate: November 13, 2023\r\nHours: 90\r\nNatureOfParticipation: \r\nSponsoringAgency: CLASSNOVATIONS SKILLS LEARNING CENTER\r\nStatus: \r\nToDate: November 29, 2023\r\nTrainingId: 991\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767886	2025-03-10	15:12:42.1545709	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3723\r\nEmployeeTrainingId: 0\r\nFromDate: May 13, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: STAIRWAY FOUNDATION INCORPORATION\r\nStatus: \r\nToDate: June 30, 2024\r\nTrainingId: 16369\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767887	2025-03-10	15:12:42.1595541	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3723\r\nEmployeeTrainingId: 0\r\nFromDate: August 17, 2024\r\nHours: 9\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: August 31, 2024\r\nTrainingId: 16370\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767901	2025-03-10	15:13:58.6550890	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3723\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOL DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16343\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767888	2025-03-10	15:12:53.4696314	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3724\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1986\r\nDateTo: 1992\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: LOBO CENTRAL ELEMENTARY SCHOOL\r\nYearGraduated: 1992\r\n	admin	EducationalBackgrounds	1
767889	2025-03-10	15:12:53.4736381	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3724\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1992\r\nDateTo: 1996\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: MASAGUITSIT BANALO NATIONAL HIGH SCHOOL\r\nYearGraduated: 1996\r\n	admin	EducationalBackgrounds	1
767890	2025-03-10	15:12:53.4836544	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3724\r\nCourse: \r\nCourseId: 1314\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 2001\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MAJOR IN ENGLISH\r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2001\r\n	admin	EducationalBackgrounds	1
767891	2025-03-10	15:12:53.4876794	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3724\r\nCourse: \r\nCourseId: 1373\r\nCourseOrMajor: \r\nDateFrom: 2014\r\nDateTo: 2016\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2016\r\n	admin	EducationalBackgrounds	1
767892	2025-03-10	15:12:53.4946900	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: DALIG\r\nBasicInformationId: 3724\r\nBirthDate: July 29, 1979\r\nBirthPlace: POBLACION, LOBO BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: loida.aluan@deped.gov.ph\r\nExtensionName: \r\nFirstName: LOIDA\r\nFullName: LOIDA R. ALUAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALUAN\r\nMaidenName: \r\nMiddleName: RAMOS\r\nMobileNumber: 09186126205\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: DALIG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 51\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: DALIG\r\nBasicInformationId: 3724\r\nBirthDate: July 29, 1979\r\nBirthPlace: POBLACION, LOBO BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: loida.aluan@deped.gov.ph\r\nExtensionName: \r\nFirstName: LOIDA\r\nFullName: LOIDA R. ALUAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALUAN\r\nMaidenName: \r\nMiddleName: RAMOS\r\nMobileNumber: 09186126205\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: DALIG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 51\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767893	2025-03-10	15:12:53.4986961	<Undetected>	Update	BasicInformationId: 3724\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 7405600\r\nEmployeeRelativeId: 3743\r\nExtensionName: \r\nFirstName: APOLONIO\r\nFullName: APOLONIO CALINGASAN ALUAN\r\nGender: Male\r\nLastName: ALUAN\r\nMaidenName: \r\nMiddleName: CALINGASAN\r\nOccupation: SHIFT SUPERVISOR\r\nRelationship: Husband\r\n	BasicInformationId: 3724\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 7405600\r\nEmployeeRelativeId: 3743\r\nExtensionName: \r\nFirstName: APOLONIO\r\nFullName: APOLONIO ALUAN\r\nGender: Male\r\nLastName: ALUAN\r\nMaidenName: \r\nMiddleName: CALINGASAN\r\nOccupation: SHIFT SUPERVISOR\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
767894	2025-03-10	15:12:53.5050939	<Undetected>	Update	BasicInformationId: 3724\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3744\r\nExtensionName: \r\nFirstName: SERGIO\r\nFullName: SERGIO GUTIERREZ RAMOS\r\nGender: Male\r\nLastName: RAMOS\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3724\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3744\r\nExtensionName: \r\nFirstName: SERGIO\r\nFullName: SERGIO RAMOS\r\nGender: Male\r\nLastName: RAMOS\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
767895	2025-03-10	15:12:53.5101019	<Undetected>	Update	BasicInformationId: 3724\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3745\r\nExtensionName: \r\nFirstName: NEDINA\r\nFullName: NEDINA TIAMSIM MAGTIBAY\r\nGender: Female\r\nLastName: MAGTIBAY\r\nMaidenName: \r\nMiddleName: TIAMSIM\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3724\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3745\r\nExtensionName: \r\nFirstName: NEDINA\r\nFullName: NEDINA MAGTIBAY\r\nGender: Female\r\nLastName: MAGTIBAY\r\nMaidenName: \r\nMiddleName: TIAMSIM\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
767896	2025-03-10	15:12:53.5141131	<Undetected>	Update	BasicInformationId: 3724\r\nBirthDate: August 31, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3746\r\nExtensionName: \r\nFirstName: MARK\r\nFullName: MARK RAMOS ALUAN\r\nGender: Male\r\nLastName: ALUAN\r\nMaidenName: \r\nMiddleName: RAMOS\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3724\r\nBirthDate: August 31, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3746\r\nExtensionName: \r\nFirstName: MARK\r\nFullName: MARK ALUAN\r\nGender: Male\r\nLastName: ALUAN\r\nMaidenName: \r\nMiddleName: RAMOS\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767897	2025-03-10	15:12:53.5191371	<Undetected>	Update	BasicInformationId: 3724\r\nBirthDate: February 08, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3747\r\nExtensionName: \r\nFirstName: PRINCESS ASHLEY\r\nFullName: PRINCESS ASHLEY RAMOS ALUAN\r\nGender: Female\r\nLastName: ALUAN\r\nMaidenName: \r\nMiddleName: RAMOS\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3724\r\nBirthDate: February 08, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3747\r\nExtensionName: \r\nFirstName: PRINCESS ASHLEY\r\nFullName: PRINCESS ASHLEY ALUAN\r\nGender: Female\r\nLastName: ALUAN\r\nMaidenName: \r\nMiddleName: RAMOS\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767905	2025-03-10	15:15:25.8219288	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3723\r\nSkillId: 0\r\nSkillName: READING\r\n	admin	Skills	1
767898	2025-03-10	15:12:53.5231482	<Undetected>	Update	BasicInformationId: 3724\r\nBirthDate: January 29, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3748\r\nExtensionName: \r\nFirstName: JETHRO TIMOTHY\r\nFullName: JETHRO TIMOTHY RAMOS ALUAN\r\nGender: Male\r\nLastName: ALUAN\r\nMaidenName: \r\nMiddleName: RAMOS\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3724\r\nBirthDate: January 29, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3748\r\nExtensionName: \r\nFirstName: JETHRO TIMOTHY\r\nFullName: JETHRO TIMOTHY ALUAN\r\nGender: Male\r\nLastName: ALUAN\r\nMaidenName: \r\nMiddleName: RAMOS\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767899	2025-03-10	15:12:53.5281556	<Undetected>	Update	BasicInformationId: 3724\r\nBirthDate: December 02, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3749\r\nExtensionName: \r\nFirstName: BEA ANNIKA\r\nFullName: BEA ANNIKA RAMOS ALUAN\r\nGender: Female\r\nLastName: ALUAN\r\nMaidenName: \r\nMiddleName: RAMOS\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3724\r\nBirthDate: December 02, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3749\r\nExtensionName: \r\nFirstName: BEA ANNIKA\r\nFullName: BEA ANNIKA ALUAN\r\nGender: Female\r\nLastName: ALUAN\r\nMaidenName: \r\nMiddleName: RAMOS\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
767900	2025-03-10	15:12:53.5321702	<Undetected>	Update	BasicInformationId: 3724\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3521\r\n	BasicInformationId: 3724\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3521\r\n	admin	Questionnaires	1
767902	2025-03-10	15:15:14.2010545	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3724\r\nDateOfExamination: August 26, 2001\r\nDateOfRelease: December 18, 2001\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 26, 2001\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 744888\r\nPlaceOfExamination: STA. MESA MANILA\r\nRating: 77.4\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
767910	2025-03-10	15:22:32.3233120	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3724\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 56,390.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: March 10, 2025\r\n	admin	Experiences	1
767911	2025-03-10	15:22:32.3283119	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3724\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 53,783.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: January 31, 2024\r\n	admin	Experiences	1
767912	2025-03-10	15:22:32.3333120	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3724\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 23, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 51,357.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
767913	2025-03-10	15:22:32.3373117	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3724\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 46,725.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-1\r\nStatus: Permanent\r\nToDate: January 22, 2023\r\n	admin	Experiences	1
767938	2025-03-10	15:53:59.0481447	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3724\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 45,183.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
767939	2025-03-10	15:53:59.0521712	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3724\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 43,681.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
767940	2025-03-10	15:53:59.0571891	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3724\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: March 02, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 42,159.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
767969	2025-03-10	16:05:08.1512348	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 9TH U4U (YOU FOR YOU) TEEN TRAIL\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
767906	2025-03-10	15:17:31.3895760	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: UNIT 14 PHASE 1\r\nAddress2: VILLA VICTOIRE\r\nBarangay: PALLOCAN EAST\r\nBasicInformationId: 3723\r\nBirthDate: January 12, 1999\r\nBirthPlace: TINGLOY, BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lornaherilla0828@gmail.com\r\nExtensionName: \r\nFirstName: LORNA\r\nFullName: LORNA S. HERILLA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: HERILLA\r\nMaidenName: \r\nMiddleName: SAWALI\r\nMobileNumber: 09611979762\r\nNationality: Filipino\r\nPermanentAddress1: UNIT 14 PHASE 1\r\nPermanentAddress2: VILLA VICTOIRE\r\nPermanentBarangay: PALLOCAN EAST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PULO\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PULO\r\nTIN: \r\nWeight: 79\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: UNIT 14 PHASE 1\r\nAddress2: VILLA VICTOIRE\r\nBarangay: PALLOCAN EAST\r\nBasicInformationId: 3723\r\nBirthDate: January 12, 1999\r\nBirthPlace: TINGLOY, BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lornaherilla0828@gmail.com\r\nExtensionName: \r\nFirstName: LORNA\r\nFullName: LORNA S. HERILLA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 10, 2020\r\nGovernmentIdNumber: 1842770\r\nGovernmentIdPlaceIssued: PRC LUCENA\r\nGovernmentIssuedId: PRC LICENSE\r\nGSIS: 02006531112\r\nHDMF: 1212-7235-5761\r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: HERILLA\r\nMaidenName: \r\nMiddleName: SAWALI\r\nMobileNumber: 09611979762\r\nNationality: Filipino\r\nPermanentAddress1: UNIT 14 PHASE 1\r\nPermanentAddress2: VILLA VICTOIRE\r\nPermanentBarangay: PALLOCAN EAST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PULO\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025721012-9\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 34-9513393-2\r\nStreetName: PULO\r\nTIN: 375-636-200-0000\r\nWeight: 79\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767907	2025-03-10	15:19:08.0137894	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3723\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09163046604\r\nExtensionName: \r\nFirstName: DIANE ANGELA\r\nLastName: VILLENA\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767908	2025-03-10	15:19:08.0247109	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3723\r\nCharacterReferenceId: 0\r\nCompanyAddress: ROSARIO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09462673955\r\nExtensionName: \r\nFirstName: MARY ANNE CHRISTINE\r\nLastName: PANALIGAN\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767909	2025-03-10	15:19:08.0419242	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3723\r\nCharacterReferenceId: 0\r\nCompanyAddress: ROSARIO, BATANGAS\r\nCompanyName: \r\nContactNumber: 09918420533\r\nExtensionName: \r\nFirstName: ANNA JANE\r\nLastName: PASIA\r\nMiddleName:  \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767914	2025-03-10	15:27:41.5109429	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: PUROK 5A\r\nAddress2: MACSOR SITE\r\nBarangay: STA. CLARA\r\nBasicInformationId: 0\r\nBirthDate: May 12, 1993\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rhandle.mendoza@deped.gov.ph\r\nExtensionName: \r\nFirstName: RHANDLE\r\nFullName: RHANDLE A. MENDOZA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: ANONUEVO\r\nMobileNumber: 09605313139\r\nNationality: Filipino\r\nPermanentAddress1: PUROK 5A\r\nPermanentAddress2: MACSOR SITE\r\nPermanentBarangay: STA. CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: RIZAL AVENUE EXTENSION ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: RIZAL AVENUE EXTENSION ROAD\r\nTIN: \r\nWeight: 78\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767915	2025-03-10	15:27:41.5311193	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3725\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
767916	2025-03-10	15:28:13.8883168	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3725\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FEDERICO\r\nFullName: FEDERICO BAROT MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: BAROT\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
767917	2025-03-10	15:28:13.8923034	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: PUROK 5A\r\nAddress2: MACSOR SITE\r\nBarangay: STA. CLARA\r\nBasicInformationId: 3725\r\nBirthDate: May 12, 1993\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rhandle.mendoza@deped.gov.ph\r\nExtensionName: \r\nFirstName: RHANDLE\r\nFullName: RHANDLE A. MENDOZA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: ANONUEVO\r\nMobileNumber: 09605313139\r\nNationality: Filipino\r\nPermanentAddress1: PUROK 5A\r\nPermanentAddress2: MACSOR SITE\r\nPermanentBarangay: STA. CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: RIZAL AVENUE EXTENSION ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: RIZAL AVENUE EXTENSION ROAD\r\nTIN: \r\nWeight: 78\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: PUROK 5A\r\nAddress2: MACSOR SITE\r\nBarangay: STA. CLARA\r\nBasicInformationId: 3725\r\nBirthDate: May 12, 1993\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rhandle.mendoza@deped.gov.ph\r\nExtensionName: \r\nFirstName: RHANDLE\r\nFullName: RHANDLE A. MENDOZA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: ANONUEVO\r\nMobileNumber: 09605313139\r\nNationality: Filipino\r\nPermanentAddress1: PUROK 5A\r\nPermanentAddress2: MACSOR SITE\r\nPermanentBarangay: STA. CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: RIZAL AVENUE EXTENSION ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: RIZAL AVENUE EXTENSION ROAD\r\nTIN: \r\nWeight: 78\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767919	2025-03-10	15:29:50.9397887	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3725\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CRISPINA\r\nFullName: CRISPINA ANONUEVO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: RAYOS\r\nMiddleName: ANONUEVO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
767920	2025-03-10	15:29:50.9437752	<Undetected>	Update	BasicInformationId: 3725\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3750\r\nExtensionName: \r\nFirstName: FEDERICO\r\nFullName: FEDERICO BAROT MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: BAROT\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3725\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3750\r\nExtensionName: \r\nFirstName: FEDERICO\r\nFullName: FEDERICO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: BAROT\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
767921	2025-03-10	15:32:30.1772273	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: CERTIFICATE IN TEACHING PROGRAM\r\nLevel: College\r\n	admin	Courses	1
767922	2025-03-10	15:39:17.4108713	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3725\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2000\r\nDateTo: 2005\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: STA CLARA ELEMENTARY SCHOOL\r\nYearGraduated: 2005\r\n	admin	EducationalBackgrounds	1
767923	2025-03-10	15:39:17.4158547	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3725\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2009\r\n	admin	EducationalBackgrounds	1
767924	2025-03-10	15:39:17.4198412	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: WITH DISTINCTIONS\r\nBasicInformationId: 3725\r\nCourse: \r\nCourseId: 1280\r\nCourseOrMajor: \r\nDateFrom: 2009\r\nDateTo: 2013\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: COLEGIO NG LUNGSOD NG BATANGAS\r\nYearGraduated: 2013\r\n	admin	EducationalBackgrounds	1
767925	2025-03-10	15:39:17.4298080	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3725\r\nCourse: \r\nCourseId: 1284\r\nCourseOrMajor: \r\nDateFrom: 2022\r\nDateTo: 2025\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
767926	2025-03-10	15:39:17.4337946	<Undetected>	Update	BasicInformationId: 3725\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3751\r\nExtensionName: \r\nFirstName: CRISPINA\r\nFullName: CRISPINA ANONUEVO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: RAYOS\r\nMiddleName: ANONUEVO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3725\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3751\r\nExtensionName: \r\nFirstName: CRISPINA\r\nFullName: CRISPINA MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: ANONUEVO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
767927	2025-03-10	15:42:04.2671757	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: PUROK 5A\r\nAddress2: MACSOR SITE\r\nBarangay: STA. CLARA\r\nBasicInformationId: 3725\r\nBirthDate: May 12, 1993\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rhandle.mendoza@deped.gov.ph\r\nExtensionName: \r\nFirstName: RHANDLE\r\nFullName: RHANDLE A. MENDOZA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: ANONUEVO\r\nMobileNumber: 09605313139\r\nNationality: Filipino\r\nPermanentAddress1: PUROK 5A\r\nPermanentAddress2: MACSOR SITE\r\nPermanentBarangay: STA. CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: RIZAL AVENUE EXTENSION ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: RIZAL AVENUE EXTENSION ROAD\r\nTIN: \r\nWeight: 78\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: PUROK 5A\r\nAddress2: MACSOR SITE\r\nBarangay: STA. CLARA\r\nBasicInformationId: 3725\r\nBirthDate: May 12, 1993\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rhandle.mendoza@deped.gov.ph\r\nExtensionName: \r\nFirstName: RHANDLE\r\nFullName: RHANDLE A. MENDOZA\r\nGender: Male\r\nGovernmentIdIssuedDate: June 20, 2018\r\nGovernmentIdNumber: 1648920\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02005866452\r\nHDMF: 1211-0786-8694\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: ANONUEVO\r\nMobileNumber: 09605313139\r\nNationality: Filipino\r\nPermanentAddress1: PUROK 5A\r\nPermanentAddress2: MACSOR SITE\r\nPermanentBarangay: STA. CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: RIZAL AVENUE EXTENSION ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050391667-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-2705051-0\r\nStreetName: RIZAL AVENUE EXTENSION ROAD\r\nTIN: 314-416-698-0000\r\nWeight: 78\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767928	2025-03-10	15:43:24.2703283	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3725\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09507338526\r\nExtensionName: \r\nFirstName: AIDA BLANDINA\r\nLastName: HERNANDEZ\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767929	2025-03-10	15:43:24.2792983	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3725\r\nCharacterReferenceId: 0\r\nCompanyAddress: LIPA CITY, BATANGAS\r\nCompanyName: \r\nContactNumber: 09163763119\r\nExtensionName: \r\nFirstName: AILEEN\r\nLastName: GARCIA\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767930	2025-03-10	15:43:24.2842819	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3725\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175049649\r\nExtensionName: \r\nFirstName: EDWARD\r\nLastName: BABASA\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
767931	2025-03-10	15:47:00.6636115	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3725\r\nDateOfExamination: March 25, 2018\r\nDateOfRelease: May 12, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: March 25, 2018\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1648920\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 81.60\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
767932	2025-03-10	15:47:00.6685947	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3725\r\nDateOfExamination: August 06, 2017\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 06, 2017\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 2166\r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 80.05\r\nTitle: CAREER SERVICE PROFESSIONAL EXAMINATION (CSE-PPT)\r\n	admin	Eligibilities	1
767933	2025-03-10	15:52:01.0489458	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3725\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,024.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
767934	2025-03-10	15:52:01.0609057	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3725\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
767935	2025-03-10	15:52:01.0718703	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3725\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 05, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,796.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: July 31, 2024\r\n	admin	Experiences	1
767936	2025-03-10	15:52:01.0949099	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3725\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: February 04, 2024\r\n	admin	Experiences	1
767937	2025-03-10	15:52:01.0989118	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3725\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
767959	2025-03-10	15:54:37.4904371	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3725\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,439.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
767960	2025-03-10	15:54:37.4994073	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3725\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 05, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 23,877.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
767963	2025-03-10	16:00:35.6049051	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3725\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
767964	2025-03-10	16:00:35.6088916	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3725\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
767965	2025-03-10	16:00:35.6188582	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3725\r\nSkillId: 0\r\nSkillName: PLAYING VOLLEYBALL\r\n	admin	Skills	1
767966	2025-03-10	16:02:07.8312070	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BOY SCOUT OF THE PHILIPPINES - NATIONAL COURT OF HONOR - BRONZE SERVICE AWARDEE\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
767967	2025-03-10	16:03:12.1118250	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ADVANCEMENT TRAINING FOR EAGLE SCOUT RANK\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
767941	2025-03-10	15:53:59.0622055	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3724\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 27,067.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: March 01, 2020\r\n	admin	Experiences	1
767942	2025-03-10	15:53:59.0673363	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3724\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 25, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 25,545.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
767943	2025-03-10	15:53:59.0713489	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3724\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 25,232.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: January 24, 2019\r\n	admin	Experiences	1
767944	2025-03-10	15:53:59.0763667	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3724\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 24,524.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: January 03, 2019\r\n	admin	Experiences	1
767945	2025-03-10	15:53:59.0805449	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3724\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 23,257.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
767946	2025-03-10	15:53:59.0855616	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3724\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 25, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 22,328.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
767947	2025-03-10	15:53:59.0895738	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3724\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 21,091.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: January 24, 2016\r\n	admin	Experiences	1
767948	2025-03-10	15:53:59.0945901	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3724\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 14, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 20,341.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
767949	2025-03-10	15:53:59.0996331	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3724\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 15, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 20,140.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: July 13, 2015\r\n	admin	Experiences	1
767950	2025-03-10	15:53:59.1036509	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3724\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 19,940.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: July 14, 2012\r\n	admin	Experiences	1
767951	2025-03-10	15:53:59.1086673	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3724\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,333.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: May 13, 2012\r\n	admin	Experiences	1
767970	2025-03-10	16:06:02.9819606	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3725\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OFFICE - BATANGAS CITY\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16353\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767952	2025-03-10	15:53:59.1137031	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3724\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 16,726.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
767953	2025-03-10	15:53:59.1177155	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3724\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 14, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 15,119.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
767954	2025-03-10	15:53:59.1227321	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3724\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 13, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 14,483.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-2\r\nStatus: Permanent\r\nToDate: July 01, 2009\r\n	admin	Experiences	1
767955	2025-03-10	15:53:59.1267545	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3724\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,328.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-2\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
767956	2025-03-10	15:53:59.1317903	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3724\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 11,207.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-2\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
767957	2025-03-10	15:53:59.1358026	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3724\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 10,188.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-2\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
767958	2025-03-10	15:53:59.1408185	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3724\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 01, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 2005\r\n	admin	Experiences	1
767961	2025-03-10	15:55:31.8211151	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TURNITIN FEEDBACK STUDIO WITH ORIGINALITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
767962	2025-03-10	15:59:28.9137383	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING WORKSHOP ON THE ANALYSIS OF NAT RESULTS CUM ACTIONS/BASIC REASEARCH WRITING ASSESSMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
767968	2025-03-10	16:03:25.5436087	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPACITY BUILDING FOR GRADE 4 TO 6 TEACHERS ON THE IMPLEMENTATION OF END OF SCHOOL YEAR (EOSY) BREAK REMEDIATION ACTIVITIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
767977	2025-03-10	16:09:36.7052581	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION WORKSHOP ON QUALITY ASSURANCE CONTEXTUALIZED LEARNING RESOURCES/MATERIALS IN ALL LEARNING AREAS AND INCLUSIVE EDUCATION FOR THE MATATAG CURRICULUM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
767971	2025-03-10	16:06:02.9869439	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3725\r\nEmployeeTrainingId: 0\r\nFromDate: October 31, 2024\r\nHours: 4\r\nNatureOfParticipation: \r\nSponsoringAgency: BOY SCOUT OF THE PHILIPPINES - BATANGAS CITY COUNCIL\r\nStatus: \r\nToDate: October 31, 2024\r\nTrainingId: 16373\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767972	2025-03-10	16:06:02.9919273	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3725\r\nEmployeeTrainingId: 0\r\nFromDate: September 27, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: BOY SCOUT OF THE PHILIPPINES - BATANGAS CITY COUNCIL\r\nStatus: \r\nToDate: September 29, 2024\r\nTrainingId: 16374\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767973	2025-03-10	16:06:02.9969105	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3725\r\nEmployeeTrainingId: 0\r\nFromDate: September 24, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: MALITAM NATIONAL HIGH SCHOOL\r\nStatus: \r\nToDate: September 24, 2024\r\nTrainingId: 16360\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767974	2025-03-10	16:06:03.0018940	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3725\r\nEmployeeTrainingId: 0\r\nFromDate: September 20, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: OFFICE OF THE CITY HEALTH OFFICER POPULATION PROGRAM DIVISION BATANGAS CITY\r\nStatus: \r\nToDate: September 20, 2024\r\nTrainingId: 16376\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767975	2025-03-10	16:09:37.7786047	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 0\r\nBirthDate: November 13, 1996\r\nBirthPlace: DAGAT-DAGATAN, CALOOCAN CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: malorielyn.mercenes@deped.gov.ph\r\nExtensionName: \r\nFirstName: MA. LORIELYN\r\nFullName: MA. LORIELYN B. MERCENES\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.39\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MERCENES\r\nMaidenName: \r\nMiddleName: BAGUI\r\nMobileNumber: 09755627144\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SOROSORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 5\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: PUROK 5\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767976	2025-03-10	16:09:37.7899723	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3726\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
767978	2025-03-10	16:11:08.3795018	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3726\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LITO\r\nFullName: LITO GAMBA MERCENES\r\nGender: Male\r\nLastName: MERCENES\r\nMaidenName: \r\nMiddleName: GAMBA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
767979	2025-03-10	16:11:08.3894688	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3726\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ZOSIMA\r\nFullName: ZOSIMA BAGUI MERCENES\r\nGender: Male\r\nLastName: MERCENES\r\nMaidenName: BUQUIS\r\nMiddleName: BAGUI\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
767980	2025-03-10	16:11:08.3944526	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 3726\r\nBirthDate: November 13, 1996\r\nBirthPlace: DAGAT-DAGATAN, CALOOCAN CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: malorielyn.mercenes@deped.gov.ph\r\nExtensionName: \r\nFirstName: MA. LORIELYN\r\nFullName: MA. LORIELYN B. MERCENES\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.39\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MERCENES\r\nMaidenName: \r\nMiddleName: BAGUI\r\nMobileNumber: 09755627144\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SOROSORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 5\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: PUROK 5\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 3726\r\nBirthDate: November 13, 1996\r\nBirthPlace: DAGAT-DAGATAN, CALOOCAN CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: malorielyn.mercenes@deped.gov.ph\r\nExtensionName: \r\nFirstName: MA. LORIELYN\r\nFullName: MA. LORIELYN B. MERCENES\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.39\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MERCENES\r\nMaidenName: \r\nMiddleName: BAGUI\r\nMobileNumber: 09755627144\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SOROSORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 5\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 5\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
767981	2025-03-10	16:11:08.4024252	<Undetected>	Update	BasicInformationId: 3726\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3523\r\n	BasicInformationId: 3726\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3523\r\n	admin	Questionnaires	1
767982	2025-03-12	07:50:46.8270310	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2024 DIVISION WORKSHOP ON QUALITY ASSURANCE OF CONTEXTUALIZED LEARNING RESOURCES/MATERIALS IN ALL LEARNING AREAS AND INCLUSIVE EDUCATION FOR THE MATATAG CURRICULUM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
767983	2025-03-12	07:51:37.1820161	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3724\r\nEmployeeTrainingId: 0\r\nFromDate: February 13, 2025\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION DIVISION OFFICE\r\nStatus: \r\nToDate: February 13, 2025\r\nTrainingId: 16371\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767984	2025-03-12	07:51:37.1870325	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3724\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION DIVISION OFFICE\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16372\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767985	2025-03-12	07:51:37.1921693	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3724\r\nEmployeeTrainingId: 0\r\nFromDate: November 18, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION DIVISION OFFICE\r\nStatus: \r\nToDate: November 20, 2024\r\nTrainingId: 16375\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767986	2025-03-12	07:51:37.1971859	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3724\r\nEmployeeTrainingId: 0\r\nFromDate: November 14, 2024\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION DIVISION OFFICE\r\nStatus: \r\nToDate: November 15, 2024\r\nTrainingId: 16377\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767987	2025-03-12	07:51:37.2011990	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3724\r\nEmployeeTrainingId: 0\r\nFromDate: September 05, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION DIVISION OFFICE\r\nStatus: \r\nToDate: September 12, 2024\r\nTrainingId: 16378\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
767988	2025-03-12	07:54:16.6162269	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3724\r\nSkillId: 0\r\nSkillName: COMPUTER SKILLS\r\n	admin	Skills	1
767989	2025-03-12	07:54:16.6299129	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3724\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
767990	2025-03-12	07:54:16.6349128	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3724\r\nRecognitionId: 0\r\nRecognitionName: COMPUTER WIZARD\r\n	admin	Recognitions	1
767991	2025-03-12	07:54:16.6389126	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3724\r\nRecognitionId: 0\r\nRecognitionName: BEST PERFORMING GROUP\r\n	admin	Recognitions	1
767992	2025-03-12	07:54:16.6479126	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3724\r\nRecognitionId: 0\r\nRecognitionName: INTERPRETATIVE DANCE (NATIONAL)\r\n	admin	Recognitions	1
767993	2025-03-12	07:54:16.6529126	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3724\r\nRecognitionId: 0\r\nRecognitionName: RESOURCE SPEAKER\r\n	admin	Recognitions	1
767994	2025-03-12	07:54:16.6589129	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3724\r\nRecognitionId: 0\r\nRecognitionName: DEMONSTRATION TEACHER\r\n	admin	Recognitions	1
767995	2025-03-12	07:54:16.6639126	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3724\r\nOrganizationId: 0\r\nOrganizationName: DULAYAW DANCE ORG.\r\n	admin	Organizations	1
767996	2025-03-12	07:54:16.6689127	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3724\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY\r\n	admin	Organizations	1
767997	2025-03-12	07:54:16.6739127	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3724\r\nOrganizationId: 0\r\nOrganizationName: ASCENDENS ASIA INTERNATIONAL ORGANIZATION\r\n	admin	Organizations	1
767998	2025-03-12	07:54:16.6789126	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3724\r\nOrganizationId: 0\r\nOrganizationName: INTERNATIONAL RESEARCHERS \r\n	admin	Organizations	1
767999	2025-03-12	07:54:16.6839127	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3724\r\nOrganizationId: 0\r\nOrganizationName: CLUB\r\n	admin	Organizations	1
768000	2025-03-12	07:58:28.5365471	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: DALIG\r\nBasicInformationId: 3724\r\nBirthDate: July 29, 1979\r\nBirthPlace: POBLACION, LOBO BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: loida.aluan@deped.gov.ph\r\nExtensionName: \r\nFirstName: LOIDA\r\nFullName: LOIDA R. ALUAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALUAN\r\nMaidenName: \r\nMiddleName: RAMOS\r\nMobileNumber: 09186126205\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: DALIG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 51\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: DALIG\r\nBasicInformationId: 3724\r\nBirthDate: July 29, 1979\r\nBirthPlace: POBLACION, LOBO BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: loida.aluan@deped.gov.ph\r\nExtensionName: \r\nFirstName: LOIDA\r\nFullName: LOIDA R. ALUAN\r\nGender: Female\r\nGovernmentIdIssuedDate: October 24, 2017\r\nGovernmentIdNumber: 0744888\r\nGovernmentIdPlaceIssued: PRC LUCENA\r\nGovernmentIssuedId: PRC\r\nGSIS: 79092900303\r\nHDMF: 1490-0092-8568\r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALUAN\r\nMaidenName: \r\nMiddleName: RAMOS\r\nMobileNumber: 09186126205\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: DALIG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000054404-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 927-336-979-0000\r\nWeight: 51\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768001	2025-03-12	08:00:42.0306246	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: FIRST HONORABLE MENTION\r\nBasicInformationId: 3726\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: TINGA LABAC ELEMENTARY SCHOOL\r\nYearGraduated: 2009\r\n	admin	EducationalBackgrounds	1
768002	2025-03-12	08:00:42.0371120	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3726\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2009\r\nDateTo: 2013\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2013\r\n	admin	EducationalBackgrounds	1
768003	2025-03-12	08:00:42.0420950	<Undetected>	Update	BasicInformationId: 3726\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3752\r\nExtensionName: \r\nFirstName: LITO\r\nFullName: LITO GAMBA MERCENES\r\nGender: Male\r\nLastName: MERCENES\r\nMaidenName: \r\nMiddleName: GAMBA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3726\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3752\r\nExtensionName: \r\nFirstName: LITO\r\nFullName: LITO MERCENES\r\nGender: Male\r\nLastName: MERCENES\r\nMaidenName: \r\nMiddleName: GAMBA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
768004	2025-03-12	08:00:42.0510656	<Undetected>	Update	BasicInformationId: 3726\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3753\r\nExtensionName: \r\nFirstName: ZOSIMA\r\nFullName: ZOSIMA BAGUI MERCENES\r\nGender: Male\r\nLastName: MERCENES\r\nMaidenName: BUQUIS\r\nMiddleName: BAGUI\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3726\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3753\r\nExtensionName: \r\nFirstName: ZOSIMA\r\nFullName: ZOSIMA MERCENES\r\nGender: Male\r\nLastName: MERCENES\r\nMaidenName: \r\nMiddleName: BAGUI\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
768005	2025-03-12	08:01:59.4046806	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR IN SECONDARY EDUCATION\r\nLevel: College\r\n	admin	Courses	1
768006	2025-03-12	08:02:14.4453802	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3726\r\nCourse: \r\nCourseId: 1375\r\nCourseOrMajor: \r\nDateFrom: 2013\r\nDateTo: 2017\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: ST. BRIDGET COLLEGE\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
768007	2025-03-12	08:04:28.5964151	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 3726\r\nBirthDate: November 13, 1996\r\nBirthPlace: DAGAT-DAGATAN, CALOOCAN CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: malorielyn.mercenes@deped.gov.ph\r\nExtensionName: \r\nFirstName: MA. LORIELYN\r\nFullName: MA. LORIELYN B. MERCENES\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.39\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MERCENES\r\nMaidenName: \r\nMiddleName: BAGUI\r\nMobileNumber: 09755627144\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SOROSORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 5\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 5\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 3726\r\nBirthDate: November 13, 1996\r\nBirthPlace: DAGAT-DAGATAN, CALOOCAN CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: malorielyn.mercenes@deped.gov.ph\r\nExtensionName: \r\nFirstName: MA. LORIELYN\r\nFullName: MA. LORIELYN B. MERCENES\r\nGender: Female\r\nGovernmentIdIssuedDate: December 23, 2015\r\nGovernmentIdNumber: 1419662\r\nGovernmentIdPlaceIssued: PRC MANILA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02006068718\r\nHDMF: 9171-5724-9485\r\nHeight: 1.39\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MERCENES\r\nMaidenName: \r\nMiddleName: BAGUI\r\nMobileNumber: 09755627144\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SOROSORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 5\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050518857-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3906878-1\r\nStreetName: PUROK 5\r\nTIN: 337-861-834-0000\r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768012	2025-03-12	08:05:52.7603504	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 3726\r\nBirthDate: November 13, 1996\r\nBirthPlace: DAGAT-DAGATAN, CALOOCAN CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: malorielyn.mercenes@deped.gov.ph\r\nExtensionName: \r\nFirstName: MA. LORIELYN\r\nFullName: MA. LORIELYN B. MERCENES\r\nGender: Female\r\nGovernmentIdIssuedDate: December 23, 2015\r\nGovernmentIdNumber: 1419662\r\nGovernmentIdPlaceIssued: PRC MANILA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02006068718\r\nHDMF: 9171-5724-9485\r\nHeight: 1.39\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MERCENES\r\nMaidenName: \r\nMiddleName: BAGUI\r\nMobileNumber: 09755627144\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SOROSORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 5\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050518857-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3906878-1\r\nStreetName: PUROK 5\r\nTIN: 337-861-834-0000\r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 3726\r\nBirthDate: November 13, 1996\r\nBirthPlace: DAGAT-DAGATAN, CALOOCAN CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: malorielyn.mercenes@deped.gov.ph\r\nExtensionName: \r\nFirstName: MA. LORIELYN\r\nFullName: MA. LORIELYN B. MERCENES\r\nGender: Female\r\nGovernmentIdIssuedDate: December 14, 2017\r\nGovernmentIdNumber: 1581339\r\nGovernmentIdPlaceIssued: LUCENA\r\nGovernmentIssuedId: PROFESSIONAL REGULATION COMMISSION\r\nGSIS: 02006068718\r\nHDMF: 9171-5724-9485\r\nHeight: 1.39\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MERCENES\r\nMaidenName: \r\nMiddleName: BAGUI\r\nMobileNumber: 09755627144\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SOROSORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 5\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050518857-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3906878-1\r\nStreetName: PUROK 5\r\nTIN: 337-861-834-0000\r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768013	2025-03-12	08:07:20.1230133	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3726\r\nDateOfExamination: September 24, 2017\r\nDateOfRelease: November 13, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 24, 2017\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1581339\r\nPlaceOfExamination: LUCENA\r\nRating: 80\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
768008	2025-03-12	08:04:28.2609624	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 11C\r\nAddress2: TIERRA VERDE SUBDIVISION\r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 0\r\nBirthDate: July 01, 1992\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: kirjeealexis.antenor@deped.gov.ph\r\nExtensionName: \r\nFirstName: KIRJEE ALEXIS\r\nFullName: KIRJEE ALEXIS C. ANTENOR\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.77\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ANTENOR\r\nMaidenName: \r\nMiddleName: CELLO\r\nMobileNumber: 09617540415\r\nNationality: Filipino\r\nPermanentAddress1: 11C\r\nPermanentAddress2: TIERRA VERDE SUBDIVISION\r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ST. AGUSTIN STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: ST. AGUSTIN STREET\r\nTIN: \r\nWeight: 70\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768009	2025-03-12	08:04:28.2906001	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3727\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SOTERO\r\nFullName: SOTERO MALALUAN ANTENOR\r\nGender: Male\r\nLastName: ANTENOR\r\nMaidenName: \r\nMiddleName: MALALUAN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
768010	2025-03-12	08:04:28.2906001	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3727\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RHEA LIZETTE\r\nFullName: RHEA LIZETTE MIA CELLO\r\nGender: Female\r\nLastName: CELLO\r\nMaidenName: \r\nMiddleName: MIA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
768011	2025-03-12	08:04:28.2906001	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3727\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
768017	2025-03-12	08:09:07.8365381	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3727\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1999\r\nDateTo: 2005\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS CITY EAST ELEMENTARY SCHOOL\r\nYearGraduated: 2005\r\n	admin	EducationalBackgrounds	1
768018	2025-03-12	08:09:07.8611176	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3727\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2009\r\n	admin	EducationalBackgrounds	1
768019	2025-03-12	08:09:07.8777418	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3727\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2009\r\nDateTo: 2015\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MAJOR IN EARLY CHILDHOOD EDUCATION\r\nSchoolorUniversity: ST. BRIDGET COLLEGE\r\nYearGraduated: 2015\r\n	admin	EducationalBackgrounds	1
768020	2025-03-12	08:09:07.8872293	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3727\r\nCourse: \r\nCourseId: 1348\r\nCourseOrMajor: \r\nDateFrom: 2016\r\nDateTo: 2017\r\nEducationalAttainment: 33 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN EARLY CHILDHOOD EDUCATION\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
768021	2025-03-12	08:09:07.8952297	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 11C\r\nAddress2: TIERRA VERDE SUBDIVISION\r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3727\r\nBirthDate: July 01, 1992\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: kirjeealexis.antenor@deped.gov.ph\r\nExtensionName: \r\nFirstName: KIRJEE ALEXIS\r\nFullName: KIRJEE ALEXIS C. ANTENOR\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.77\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ANTENOR\r\nMaidenName: \r\nMiddleName: CELLO\r\nMobileNumber: 09617540415\r\nNationality: Filipino\r\nPermanentAddress1: 11C\r\nPermanentAddress2: TIERRA VERDE SUBDIVISION\r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ST. AGUSTIN STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: ST. AGUSTIN STREET\r\nTIN: \r\nWeight: 70\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 11C\r\nAddress2: TIERRA VERDE SUBDIVISION\r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3727\r\nBirthDate: July 01, 1992\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: kirjeealexis.antenor@deped.gov.ph\r\nExtensionName: \r\nFirstName: KIRJEE ALEXIS\r\nFullName: KIRJEE ALEXIS C. ANTENOR\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.77\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ANTENOR\r\nMaidenName: \r\nMiddleName: CELLO\r\nMobileNumber: 09617540415\r\nNationality: Filipino\r\nPermanentAddress1: 11C\r\nPermanentAddress2: TIERRA VERDE SUBDIVISION\r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ST. AGUSTIN STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: ST. AGUSTIN STREET\r\nTIN: \r\nWeight: 70\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768022	2025-03-12	08:09:07.8992293	<Undetected>	Update	BasicInformationId: 3727\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3754\r\nExtensionName: \r\nFirstName: SOTERO\r\nFullName: SOTERO MALALUAN ANTENOR\r\nGender: Male\r\nLastName: ANTENOR\r\nMaidenName: \r\nMiddleName: MALALUAN\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3727\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3754\r\nExtensionName: \r\nFirstName: SOTERO\r\nFullName: SOTERO ANTENOR\r\nGender: Male\r\nLastName: ANTENOR\r\nMaidenName: \r\nMiddleName: MALALUAN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
768014	2025-03-12	08:09:10.0199005	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3726\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 02, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,024.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
768015	2025-03-12	08:09:10.0248841	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3726\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
768016	2025-03-12	08:09:10.0318605	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3726\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 02, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
768027	2025-03-12	08:11:57.2671597	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3726\r\nCompanyInstitution: BATANGAS STATE UNIVERSITY - PABLO BORBON\r\nExperienceId: 0\r\nFromDate: August 12, 2021\r\nIsGovernmentService: False\r\nMonthlySalary: 188.24\r\nPositionHeld: LECTURER I\r\nRateTypeName: Hourly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Temporary\r\nToDate: May 20, 2022\r\n	admin	Experiences	1
768028	2025-03-12	08:11:57.2801162	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3726\r\nCompanyInstitution: MARIAN LEARNING CENTER AND SCIENCE HIGH SCHOOL INC.\r\nExperienceId: 0\r\nFromDate: August 16, 2020\r\nIsGovernmentService: False\r\nMonthlySalary: 11,400.00\r\nPositionHeld: MATHEMATICS TEACHER/G9 ADVISER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: May 20, 2021\r\n	admin	Experiences	1
768029	2025-03-12	08:15:03.4079427	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3726\r\nCompanyInstitution: MARIAN LEARNING CENTER AND SCIENCE HIGH SCHOOL INC.\r\nExperienceId: 0\r\nFromDate: August 13, 2019\r\nIsGovernmentService: False\r\nMonthlySalary: 12,200.00\r\nPositionHeld: JHS MATHEMATICS TEACHER/SHS SOCIAL SCIENCE TEACHER/G12\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: May 05, 2020\r\n	admin	Experiences	1
768030	2025-03-12	08:15:03.4189133	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3726\r\nCompanyInstitution: MARIAN LEARNING CENTER AND SCIENCE HIGH SCHOOL INC.\r\nExperienceId: 0\r\nFromDate: June 01, 2018\r\nIsGovernmentService: False\r\nMonthlySalary: 11,000.00\r\nPositionHeld: JHS MATHEMATICS TEACHER/SHS TEACHER/G11 ADVISER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Probationary\r\nToDate: April 30, 2019\r\n	admin	Experiences	1
768031	2025-03-12	08:15:03.4381026	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3726\r\nCompanyInstitution: MARIAN LEARNING CENTER AND SCIENCE HIGH SCHOOL INC.\r\nExperienceId: 0\r\nFromDate: June 01, 2017\r\nIsGovernmentService: False\r\nMonthlySalary: 11,000.00\r\nPositionHeld: SHS TEACHER/G11 ADVISER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Probationary\r\nToDate: April 30, 2018\r\n	admin	Experiences	1
768038	2025-03-12	08:20:21.4073734	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3726\r\nEmployeeTrainingId: 0\r\nFromDate: November 27, 2024\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 28, 2024\r\nTrainingId: 16359\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768039	2025-03-12	08:20:21.4113600	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3726\r\nEmployeeTrainingId: 0\r\nFromDate: January 26, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: MALITAM NATIONAL HIGH SCHOOL\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16348\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768040	2025-03-12	08:20:21.4163434	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3726\r\nEmployeeTrainingId: 0\r\nFromDate: July 17, 2023\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 20, 2023\r\nTrainingId: 15609\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768041	2025-03-12	08:21:23.7013943	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RULERS: RETOOLING, UPSKILLING LECTURERS FOR EFFECTIVE AND RESPONSIVE TEACHING SERVICE\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
768042	2025-03-12	08:22:45.4984307	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ASSOCIATION OF UNIVERSITY OF ASIA PACIFIC (RECAP 2022)\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
768023	2025-03-12	08:09:07.9072298	<Undetected>	Update	BasicInformationId: 3727\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3755\r\nExtensionName: \r\nFirstName: RHEA LIZETTE\r\nFullName: RHEA LIZETTE MIA CELLO\r\nGender: Female\r\nLastName: CELLO\r\nMaidenName: \r\nMiddleName: MIA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3727\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3755\r\nExtensionName: \r\nFirstName: RHEA LIZETTE\r\nFullName: RHEA LIZETTE CELLO\r\nGender: Female\r\nLastName: CELLO\r\nMaidenName: \r\nMiddleName: MIA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
768024	2025-03-12	08:09:07.9112297	<Undetected>	Update	BasicInformationId: 3727\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3524\r\n	BasicInformationId: 3727\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3524\r\n	admin	Questionnaires	1
768025	2025-03-12	08:10:59.5634012	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3727\r\nDateOfExamination: September 27, 2015\r\nDateOfRelease: July 01, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 27, 2015\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1425999\r\nPlaceOfExamination: LUCENA CITY, QUEZON\r\nRating: 76.40\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
768026	2025-03-12	08:10:59.5684088	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 11C\r\nAddress2: TIERRA VERDE SUBDIVISION\r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3727\r\nBirthDate: July 01, 1992\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: kirjeealexis.antenor@deped.gov.ph\r\nExtensionName: \r\nFirstName: KIRJEE ALEXIS\r\nFullName: KIRJEE ALEXIS C. ANTENOR\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.77\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ANTENOR\r\nMaidenName: \r\nMiddleName: CELLO\r\nMobileNumber: 09617540415\r\nNationality: Filipino\r\nPermanentAddress1: 11C\r\nPermanentAddress2: TIERRA VERDE SUBDIVISION\r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ST. AGUSTIN STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: ST. AGUSTIN STREET\r\nTIN: \r\nWeight: 70\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 11C\r\nAddress2: TIERRA VERDE SUBDIVISION\r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3727\r\nBirthDate: July 01, 1992\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: kirjeealexis.antenor@deped.gov.ph\r\nExtensionName: \r\nFirstName: KIRJEE ALEXIS\r\nFullName: KIRJEE ALEXIS C. ANTENOR\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.77\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ANTENOR\r\nMaidenName: \r\nMiddleName: CELLO\r\nMobileNumber: 09617540415\r\nNationality: Filipino\r\nPermanentAddress1: 11C\r\nPermanentAddress2: TIERRA VERDE SUBDIVISION\r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ST. AGUSTIN STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ST. AGUSTIN STREET\r\nTIN: \r\nWeight: 70\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768032	2025-03-12	08:18:06.7584922	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3727\r\nCompanyInstitution: DEPARTMENT OF EDUCATRION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 32,245.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: March 12, 2025\r\n	admin	Experiences	1
768033	2025-03-12	08:18:06.7703007	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3727\r\nCompanyInstitution: DEPARTMENT OF EDUCATRION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 12, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 30,705.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
768034	2025-03-12	08:18:06.7940603	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3727\r\nCompanyInstitution: DEPARTMENT OF EDUCATRION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 27,284.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: August 11, 2024\r\n	admin	Experiences	1
768035	2025-03-12	08:18:06.8058117	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3727\r\nCompanyInstitution: DEPARTMENT OF EDUCATRION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 19, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,284.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
768036	2025-03-12	08:18:06.8099996	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3727\r\nCompanyInstitution: DEPARTMENT OF EDUCATRION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: August 18, 2023\r\n	admin	Experiences	1
768037	2025-03-12	08:18:06.8150322	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3727\r\nCompanyInstitution: DEPARTMENT OF EDUCATRION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,439.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
768043	2025-03-12	08:23:28.6183311	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3726\r\nEmployeeTrainingId: 0\r\nFromDate: April 10, 2022\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: BATANGAS STATE UNIVERSITY - PABLO BORBON\r\nStatus: \r\nToDate: April 10, 2022\r\nTrainingId: 16379\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768044	2025-03-12	08:23:28.6273015	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3726\r\nEmployeeTrainingId: 0\r\nFromDate: July 26, 2022\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: BATANGAS STATE UNIVERSITY - PABLO BORBON\r\nStatus: \r\nToDate: July 26, 2022\r\nTrainingId: 16380\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768049	2025-03-12	08:24:27.0798314	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3726\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
768050	2025-03-12	08:24:27.0907949	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3726\r\nSkillId: 0\r\nSkillName: GOOD COMMUNICATION\r\n	admin	Skills	1
768051	2025-03-12	08:24:27.0947810	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3726\r\nSkillId: 0\r\nSkillName: UTILIZING MICROSOFT PROGRAMS\r\n	admin	Skills	1
768052	2025-03-12	08:24:27.1037516	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3726\r\nSkillId: 0\r\nSkillName: READING\r\n	admin	Skills	1
768053	2025-03-12	08:26:40.1220281	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3726\r\nCharacterReferenceId: 0\r\nCompanyAddress: TINGA LABAC, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09194616640\r\nExtensionName: \r\nFirstName: MERIAM\r\nLastName: CATAPANG\r\nMiddleName: S\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768054	2025-03-12	08:26:40.1260147	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3726\r\nCharacterReferenceId: 0\r\nCompanyAddress: NATUNUAN NORTH, SAN PASCUAL BATANGAS\r\nCompanyName: \r\nContactNumber: 09167201365\r\nExtensionName: \r\nFirstName: GRACE\r\nLastName: PANGANIBAN\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768055	2025-03-12	08:26:40.1339882	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3726\r\nCharacterReferenceId: 0\r\nCompanyAddress: SOROSORO ILAYA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09497598274\r\nExtensionName: \r\nFirstName: MENA\r\nLastName: DE TORRES\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768056	2025-03-12	08:27:52.9554805	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3726\r\nBirthDate: August 08, 2024\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: VINCE CALIX PAVLO\r\nFullName: VINCE CALIX PAVLO MERCENES DELGADO\r\nGender: Male\r\nLastName: DELGADO\r\nMaidenName: \r\nMiddleName: MERCENES\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768059	2025-03-12	08:31:15.4635553	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: DE JOYA COMPOUND LABAC\r\nBarangay: ALANGILAN\r\nBasicInformationId: 0\r\nBirthDate: April 14, 1986\r\nBirthPlace: CORCUERA, ROMBLON\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: fritzieanne.tolentino@deped.gov.ph\r\nExtensionName: \r\nFirstName: FRITZIE ANNE\r\nFullName: FRITZIE ANNE F. TOLENTINO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.8\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: FAJICULAY\r\nMobileNumber: 09087534046\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: DE JOYA COMPOUND LABAC\r\nPermanentBarangay: ALANGILAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 72\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768060	2025-03-12	08:31:15.4732074	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3728\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
768067	2025-03-12	08:33:50.6886479	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3728\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09292618264\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: NOEL\r\nFullName: NOEL CASCALLA TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: CASCALLA\r\nOccupation: JEEPNEY DRIVER/OPERATOR\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768068	2025-03-12	08:33:50.6996115	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3728\r\nBirthDate: June 19, 2010\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FRANZ NOEL\r\nFullName: FRANZ NOEL FAJICULAY TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: FAJICULAY\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768078	2025-03-12	08:35:25.0798770	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3727\r\nCharacterReferenceId: 0\r\nCompanyAddress: AMBULONG, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: N/A\r\nExtensionName: \r\nFirstName: MARITES\r\nLastName: TARCELO\r\nMiddleName: D.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768045	2025-03-12	08:23:36.3931578	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3727\r\nCompanyInstitution: DEPARTMENT OF EDUCATRION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 23,877.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
768046	2025-03-12	08:23:36.3982976	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3727\r\nCompanyInstitution: DEPARTMENT OF EDUCATRION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 19, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,316.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
768047	2025-03-12	08:23:36.4032971	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3727\r\nCompanyInstitution: DEPARTMENT OF EDUCATRION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 05, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: September 10, 2019\r\n	admin	Experiences	1
768048	2025-03-12	08:23:36.4072971	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3727\r\nCompanyInstitution: DEPARTMENT OF EDUCATRION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: May 01, 2015\r\nIsGovernmentService: False\r\nMonthlySalary: 7,000.00\r\nPositionHeld: ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Contractual\r\nToDate: April 01, 2019\r\n	admin	Experiences	1
768057	2025-03-12	08:28:21.5496669	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2022 REGIONAL VIRTUAL WORKSHOP ON ASSESSMENT - DRIVEN INTERVENTION FOR ENGLISH AND FILIPINO\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768058	2025-03-12	08:30:24.5098399	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2021 NATIONAL DRUG EDUCATION PROGRAM WEBINAR SERIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768061	2025-03-12	08:31:43.7743277	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2021 DIVISION CONFERENCE OF BASIC EDUCATION RESEARCHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768062	2025-03-12	08:32:30.9219459	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3727\r\nEmployeeTrainingId: 0\r\nFromDate: August 14, 2023\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: August 18, 2023\r\nTrainingId: 15574\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768063	2025-03-12	08:32:30.9332596	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3727\r\nEmployeeTrainingId: 0\r\nFromDate: August 19, 2022\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: August 19, 2022\r\nTrainingId: 16358\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768064	2025-03-12	08:32:30.9435424	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3727\r\nEmployeeTrainingId: 0\r\nFromDate: August 03, 2022\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION 4A - CALABARZON\r\nStatus: \r\nToDate: August 05, 2022\r\nTrainingId: 16381\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768065	2025-03-12	08:32:30.9618486	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3727\r\nEmployeeTrainingId: 0\r\nFromDate: October 28, 2021\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: October 28, 2021\r\nTrainingId: 16382\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768066	2025-03-12	08:32:30.9699586	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3727\r\nEmployeeTrainingId: 0\r\nFromDate: October 12, 2021\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: October 14, 2021\r\nTrainingId: 16383\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768074	2025-03-12	08:35:25.0580890	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3727\r\nSkillId: 0\r\nSkillName: VOLEYBALL\r\n	admin	Skills	1
768075	2025-03-12	08:35:25.0620886	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3727\r\nSkillId: 0\r\nSkillName: BADMINTON\r\n	admin	Skills	1
768076	2025-03-12	08:35:25.0693964	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3727\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
768077	2025-03-12	08:35:25.0734557	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3727\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
768069	2025-03-12	08:33:50.7035978	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3728\r\nBirthDate: March 02, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FORD NATHAN\r\nFullName: FORD NATHAN FAJICULAY TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: FAJICULAY\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768070	2025-03-12	08:33:50.7125679	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3728\r\nBirthDate: May 08, 2023\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FAITH NATHERINE\r\nFullName: FAITH NATHERINE FAJICULAY TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: FAJICULAY\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768071	2025-03-12	08:33:50.7175511	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: DE JOYA COMPOUND LABAC\r\nBarangay: ALANGILAN\r\nBasicInformationId: 3728\r\nBirthDate: April 14, 1986\r\nBirthPlace: CORCUERA, ROMBLON\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: fritzieanne.tolentino@deped.gov.ph\r\nExtensionName: \r\nFirstName: FRITZIE ANNE\r\nFullName: FRITZIE ANNE F. TOLENTINO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.8\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: FAJICULAY\r\nMobileNumber: 09087534046\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: DE JOYA COMPOUND LABAC\r\nPermanentBarangay: ALANGILAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 72\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: DE JOYA COMPOUND LABAC\r\nBarangay: ALANGILAN\r\nBasicInformationId: 3728\r\nBirthDate: April 14, 1986\r\nBirthPlace: CORCUERA, ROMBLON\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: fritzieanne.tolentino@deped.gov.ph\r\nExtensionName: \r\nFirstName: FRITZIE ANNE\r\nFullName: FRITZIE ANNE F. TOLENTINO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.8\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: FAJICULAY\r\nMobileNumber: 09087534046\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: DE JOYA COMPOUND LABAC\r\nPermanentBarangay: ALANGILAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 72\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768072	2025-03-12	08:33:50.7215380	<Undetected>	Update	BasicInformationId: 3728\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3525\r\n	BasicInformationId: 3728\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3525\r\n	admin	Questionnaires	1
768073	2025-03-12	08:35:15.4354120	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHER OF SCIENCE IN HOTEL AND RESTAURANT MANAGEMENT\r\nLevel: College\r\n	admin	Courses	1
768081	2025-03-12	08:35:44.0172000	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF SCIENCE IN HOTEL AND RESTAURANT MANAGEMENT\r\nLevel: College\r\n	admin	Courses	1
768082	2025-03-12	08:36:05.1750549	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3728\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1993\r\nDateTo: 1999\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: CORCUERA CENTRAL SCHOOL\r\nYearGraduated: 1999\r\n	admin	EducationalBackgrounds	1
768083	2025-03-12	08:36:05.1890508	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3728\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1999\r\nDateTo: 2003\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: CORCUERA NATIONAL HIGH SCHOOL\r\nYearGraduated: 2003\r\n	admin	EducationalBackgrounds	1
768084	2025-03-12	08:36:05.1990172	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3728\r\nCourse: \r\nCourseId: 1377\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: ROMBLON STATE UNIVERSITY\r\nYearGraduated: 2007\r\n	admin	EducationalBackgrounds	1
768085	2025-03-12	08:36:05.2169136	<Undetected>	Update	BasicInformationId: 3728\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09292618264\r\nEmployeeRelativeId: 3757\r\nExtensionName: \r\nFirstName: NOEL\r\nFullName: NOEL CASCALLA TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: CASCALLA\r\nOccupation: JEEPNEY DRIVER/OPERATOR\r\nRelationship: Husband\r\n	BasicInformationId: 3728\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09292618264\r\nEmployeeRelativeId: 3757\r\nExtensionName: \r\nFirstName: NOEL\r\nFullName: NOEL TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: CASCALLA\r\nOccupation: JEEPNEY DRIVER/OPERATOR\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768086	2025-03-12	08:36:05.2259238	<Undetected>	Update	BasicInformationId: 3728\r\nBirthDate: June 19, 2010\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3758\r\nExtensionName: \r\nFirstName: FRANZ NOEL\r\nFullName: FRANZ NOEL FAJICULAY TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: FAJICULAY\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3728\r\nBirthDate: June 19, 2010\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3758\r\nExtensionName: \r\nFirstName: FRANZ NOEL\r\nFullName: FRANZ NOEL TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: FAJICULAY\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768087	2025-03-12	08:36:05.2309105	<Undetected>	Update	BasicInformationId: 3728\r\nBirthDate: March 02, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3759\r\nExtensionName: \r\nFirstName: FORD NATHAN\r\nFullName: FORD NATHAN FAJICULAY TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: FAJICULAY\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3728\r\nBirthDate: March 02, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3759\r\nExtensionName: \r\nFirstName: FORD NATHAN\r\nFullName: FORD NATHAN TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: FAJICULAY\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768079	2025-03-12	08:35:25.0849070	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3727\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN WEST,  BATANGAS CITY\r\nCompanyName: \r\nContactNumber: N/A\r\nExtensionName: \r\nFirstName: ALEXANDRIA\r\nLastName: KALALO\r\nMiddleName: B.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768080	2025-03-12	08:35:25.0899206	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3727\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN PASCUAL, BATANGAS\r\nCompanyName: \r\nContactNumber: N/A\r\nExtensionName: \r\nFirstName: EDEN \r\nLastName: DESTACAMENTO\r\nMiddleName: M.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768089	2025-03-12	08:39:50.0392000	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 11C\r\nAddress2: TIERRA VERDE SUBDIVISION\r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3727\r\nBirthDate: July 01, 1992\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: kirjeealexis.antenor@deped.gov.ph\r\nExtensionName: \r\nFirstName: KIRJEE ALEXIS\r\nFullName: KIRJEE ALEXIS C. ANTENOR\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.77\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ANTENOR\r\nMaidenName: \r\nMiddleName: CELLO\r\nMobileNumber: 09617540415\r\nNationality: Filipino\r\nPermanentAddress1: 11C\r\nPermanentAddress2: TIERRA VERDE SUBDIVISION\r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ST. AGUSTIN STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ST. AGUSTIN STREET\r\nTIN: \r\nWeight: 70\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 11C\r\nAddress2: TIERRA VERDE SUBDIVISION\r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3727\r\nBirthDate: July 01, 1992\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: kirjeealexis.antenor@deped.gov.ph\r\nExtensionName: \r\nFirstName: KIRJEE ALEXIS\r\nFullName: KIRJEE ALEXIS C. ANTENOR\r\nGender: Male\r\nGovernmentIdIssuedDate: March 21, 2024\r\nGovernmentIdNumber: 1425999\r\nGovernmentIdPlaceIssued: LUCENA CITY, QUEZON\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02005637255\r\nHDMF: 1211-9932-8844\r\nHeight: 1.77\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ANTENOR\r\nMaidenName: \r\nMiddleName: CELLO\r\nMobileNumber: 09617540415\r\nNationality: Filipino\r\nPermanentAddress1: 11C\r\nPermanentAddress2: TIERRA VERDE SUBDIVISION\r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ST. AGUSTIN STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050449320-1\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ST. AGUSTIN STREET\r\nTIN: 469-615-177-0000\r\nWeight: 70\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768096	2025-03-12	08:48:33.1310087	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: HALIGUE SILANGAN\r\nBasicInformationId: 0\r\nBirthDate: March 07, 1988\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: analiza.balmes001@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANALIZA\r\nFullName: ANALIZA M. BALMES\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BALMES\r\nMaidenName: \r\nMiddleName: MANALO\r\nMobileNumber: 09230882057\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: HALIGUE SILANGAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768097	2025-03-12	08:48:33.1408490	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3729\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: HARRY GLENN\r\nFullName: HARRY GLENN RAMIREZ BALMES\r\nGender: Male\r\nLastName: BALMES\r\nMaidenName: \r\nMiddleName: RAMIREZ\r\nOccupation: RELIABILITY MAINTAINANCE\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768098	2025-03-12	08:48:33.1408490	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3729\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: AMADO\r\nFullName: AMADO BALMES MANALO\r\nGender: Male\r\nLastName: MANALO\r\nMaidenName: \r\nMiddleName: BALMES\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
768099	2025-03-12	08:48:33.1408490	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3729\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: TERESITA\r\nFullName: TERESITA ALCOIREZ ANONUEVO\r\nGender: Female\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: ALCOIREZ\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
768100	2025-03-12	08:48:33.1408490	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3729\r\nBirthDate: August 10, 2018\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: AMARA HARRIETTE\r\nFullName: AMARA HARRIETTE MANALO BALMES\r\nGender: Female\r\nLastName: BALMES\r\nMaidenName: \r\nMiddleName: MANALO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768101	2025-03-12	08:48:33.1408490	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3729\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
768246	2025-03-12	10:05:16.6634765	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MATATAG MASTER CLASSES FOR GRADE I TEACHERS ACROSS ALL LEARNING AREAS\r\nTrainingId: 0\r\nType: 32\r\n	admin	Trainings	1
768088	2025-03-12	08:36:05.2358913	<Undetected>	Update	BasicInformationId: 3728\r\nBirthDate: May 08, 2023\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3760\r\nExtensionName: \r\nFirstName: FAITH NATHERINE\r\nFullName: FAITH NATHERINE FAJICULAY TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: FAJICULAY\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3728\r\nBirthDate: May 08, 2023\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3760\r\nExtensionName: \r\nFirstName: FAITH NATHERINE\r\nFullName: FAITH NATHERINE TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: FAJICULAY\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768090	2025-03-12	08:40:53.2573398	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: BEST IN COMPREHENSIVE EXAM\r\nBasicInformationId: 3728\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2019\r\nDateTo: 2022\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: SOCIAL STUDIES\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2022\r\n	admin	EducationalBackgrounds	1
768091	2025-03-12	08:43:15.0056203	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: DE JOYA COMPOUND LABAC\r\nBarangay: ALANGILAN\r\nBasicInformationId: 3728\r\nBirthDate: April 14, 1986\r\nBirthPlace: CORCUERA, ROMBLON\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: fritzieanne.tolentino@deped.gov.ph\r\nExtensionName: \r\nFirstName: FRITZIE ANNE\r\nFullName: FRITZIE ANNE F. TOLENTINO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.8\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: FAJICULAY\r\nMobileNumber: 09087534046\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: DE JOYA COMPOUND LABAC\r\nPermanentBarangay: ALANGILAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 72\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: DE JOYA COMPOUND LABAC\r\nBarangay: ALANGILAN\r\nBasicInformationId: 3728\r\nBirthDate: April 14, 1986\r\nBirthPlace: CORCUERA, ROMBLON\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: fritzieanne.tolentino@deped.gov.ph\r\nExtensionName: \r\nFirstName: FRITZIE ANNE\r\nFullName: FRITZIE ANNE F. TOLENTINO\r\nGender: Female\r\nGovernmentIdIssuedDate: September 28, 2016\r\nGovernmentIdNumber: 1508472\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02005400541\r\nHDMF: 1490-0073-4162\r\nHeight: 1.8\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: FAJICULAY\r\nMobileNumber: 09087534046\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: DE JOYA COMPOUND LABAC\r\nPermanentBarangay: ALANGILAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050172408-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1846632-2\r\nStreetName: \r\nTIN: 253-618-770-0000\r\nWeight: 72\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768092	2025-03-12	08:44:31.2312139	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3728\r\nDateOfExamination: September 28, 2016\r\nDateOfRelease: April 14, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 28, 2016\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1508472\r\nPlaceOfExamination: LUCENA, QUEZON\r\nRating: 78.6\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
768093	2025-03-12	08:46:27.3942139	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3728\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN MIGUEL, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175350130\r\nExtensionName: \r\nFirstName: LALAINE\r\nLastName: GUICO\r\nMiddleName: I\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768094	2025-03-12	08:46:27.3991972	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3728\r\nCharacterReferenceId: 0\r\nCompanyAddress: GULOD LABAK, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09507338526\r\nExtensionName: \r\nFirstName: AIDA BLANDINA\r\nLastName: HERNANDEZ\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768095	2025-03-12	08:46:27.4071705	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3728\r\nCharacterReferenceId: 0\r\nCompanyAddress: SORO SORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09667233615\r\nExtensionName: \r\nFirstName: MA. ELENA\r\nLastName: AMUL\r\nMiddleName: G\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768102	2025-03-12	08:50:16.1902158	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3728\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,421.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
768103	2025-03-12	08:50:16.2041692	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3728\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
768104	2025-03-12	08:50:16.2241025	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3728\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 06, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
768129	2025-03-12	09:01:11.4754624	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3728\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16357\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768105	2025-03-12	08:50:16.2311495	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3728\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: September 05, 2023\r\n	admin	Experiences	1
768106	2025-03-12	08:51:19.8729096	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3728\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,723.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
768107	2025-03-12	08:51:19.8798862	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3728\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 06, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 24,161.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
768108	2025-03-12	08:52:03.8695351	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3728\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 23,877.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 05, 2021\r\n	admin	Experiences	1
768119	2025-03-12	08:53:47.9962464	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3728\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,316.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: March 31, 2020\r\n	admin	Experiences	1
768120	2025-03-12	08:53:48.0002330	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3728\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
768121	2025-03-12	08:53:48.0052168	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3728\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 06, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
768123	2025-03-12	08:55:56.9133479	<Undetected>	Update	BasicInformationId: 3728\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11659\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: September 05, 2023\r\n	BasicInformationId: 3728\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11659\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,284.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: September 05, 2023\r\n	admin	Experiences	1
768124	2025-03-12	08:59:38.7459314	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2024 TEACHERS CONGRESS CUM TEACHERS' DAY CELEBRATION\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
768125	2025-03-12	09:01:11.4565258	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3728\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 20\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHIIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16363\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768126	2025-03-12	09:01:11.4605124	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3728\r\nEmployeeTrainingId: 0\r\nFromDate: October 31, 2024\r\nHours: 4\r\nNatureOfParticipation: \r\nSponsoringAgency: MALITAM NATIONAL HIGH SCHOOL\r\nStatus: \r\nToDate: October 31, 2024\r\nTrainingId: 16365\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768127	2025-03-12	09:01:11.4654958	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3728\r\nEmployeeTrainingId: 0\r\nFromDate: October 31, 2024\r\nHours: 4\r\nNatureOfParticipation: \r\nSponsoringAgency: MALITAM NATIONAL HIGH SCHOOL\r\nStatus: \r\nToDate: October 31, 2024\r\nTrainingId: 16367\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768128	2025-03-12	09:01:11.4704791	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3728\r\nEmployeeTrainingId: 0\r\nFromDate: October 03, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: October 03, 2024\r\nTrainingId: 16384\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768109	2025-03-12	08:52:49.2407804	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3729\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1995\r\nDateTo: 2001\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: HALIGUE SILANGAN ELEMENTARY SCHOOL\r\nYearGraduated: 2001\r\n	admin	EducationalBackgrounds	1
768110	2025-03-12	08:52:49.2447939	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3729\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2005\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: STO. NINO NATIONAL HIGH SCHOOL\r\nYearGraduated: 2005\r\n	admin	EducationalBackgrounds	1
768111	2025-03-12	08:52:49.2548538	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3729\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 2006\r\nDateTo: 2010\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: COLEGIO NG LUNGSOD NG BATANGAS\r\nYearGraduated: 2010\r\n	admin	EducationalBackgrounds	1
768112	2025-03-12	08:52:49.2588969	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3729\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2015\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN EDUCATIONAL ADMNISTRATION\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
768113	2025-03-12	08:52:49.2659320	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: HALIGUE SILANGAN\r\nBasicInformationId: 3729\r\nBirthDate: March 07, 1988\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: analiza.balmes001@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANALIZA\r\nFullName: ANALIZA M. BALMES\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BALMES\r\nMaidenName: \r\nMiddleName: MANALO\r\nMobileNumber: 09230882057\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: HALIGUE SILANGAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: HALIGUE SILANGAN\r\nBasicInformationId: 3729\r\nBirthDate: March 07, 1988\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: analiza.balmes001@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANALIZA\r\nFullName: ANALIZA M. BALMES\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BALMES\r\nMaidenName: \r\nMiddleName: MANALO\r\nMobileNumber: 09230882057\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: HALIGUE SILANGAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768114	2025-03-12	08:52:49.2709796	<Undetected>	Update	BasicInformationId: 3729\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3761\r\nExtensionName: \r\nFirstName: HARRY GLENN\r\nFullName: HARRY GLENN RAMIREZ BALMES\r\nGender: Male\r\nLastName: BALMES\r\nMaidenName: \r\nMiddleName: RAMIREZ\r\nOccupation: RELIABILITY MAINTAINANCE\r\nRelationship: Husband\r\n	BasicInformationId: 3729\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3761\r\nExtensionName: \r\nFirstName: HARRY GLENN\r\nFullName: HARRY GLENN BALMES\r\nGender: Male\r\nLastName: BALMES\r\nMaidenName: \r\nMiddleName: RAMIREZ\r\nOccupation: RELIABILITY MAINTAINANCE\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768115	2025-03-12	08:52:49.2791784	<Undetected>	Update	BasicInformationId: 3729\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3762\r\nExtensionName: \r\nFirstName: AMADO\r\nFullName: AMADO BALMES MANALO\r\nGender: Male\r\nLastName: MANALO\r\nMaidenName: \r\nMiddleName: BALMES\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3729\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3762\r\nExtensionName: \r\nFirstName: AMADO\r\nFullName: AMADO MANALO\r\nGender: Male\r\nLastName: MANALO\r\nMaidenName: \r\nMiddleName: BALMES\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
768116	2025-03-12	08:52:49.2907589	<Undetected>	Update	BasicInformationId: 3729\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3763\r\nExtensionName: \r\nFirstName: TERESITA\r\nFullName: TERESITA ALCOIREZ ANONUEVO\r\nGender: Female\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: ALCOIREZ\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3729\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3763\r\nExtensionName: \r\nFirstName: TERESITA\r\nFullName: TERESITA ANONUEVO\r\nGender: Female\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: ALCOIREZ\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
768117	2025-03-12	08:52:49.3122821	<Undetected>	Update	BasicInformationId: 3729\r\nBirthDate: August 10, 2018\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3764\r\nExtensionName: \r\nFirstName: AMARA HARRIETTE\r\nFullName: AMARA HARRIETTE MANALO BALMES\r\nGender: Female\r\nLastName: BALMES\r\nMaidenName: \r\nMiddleName: MANALO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3729\r\nBirthDate: August 10, 2018\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3764\r\nExtensionName: \r\nFirstName: AMARA HARRIETTE\r\nFullName: AMARA HARRIETTE BALMES\r\nGender: Female\r\nLastName: BALMES\r\nMaidenName: \r\nMiddleName: MANALO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768118	2025-03-12	08:52:49.3191864	<Undetected>	Update	BasicInformationId: 3729\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3526\r\n	BasicInformationId: 3729\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3526\r\n	admin	Questionnaires	1
768130	2025-03-12	09:02:13.3938122	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3728\r\nSkillId: 0\r\nSkillName: BAKING\r\n	admin	Skills	1
768131	2025-03-12	09:02:13.3977988	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3728\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
768122	2025-03-12	08:54:41.0143640	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3729\r\nDateOfExamination: October 03, 2013\r\nDateOfRelease: March 07, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: October 03, 2013\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1273661\r\nPlaceOfExamination: HONGKONG\r\nRating: 75\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
768140	2025-03-12	09:09:12.7600803	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3729\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / JOSE C. PASTOR MES\r\nExperienceId: 0\r\nFromDate: September 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 33,183.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: March 12, 2025\r\n	admin	Experiences	1
768141	2025-03-12	09:09:12.7653351	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3729\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / JOSE C. PASTOR MES\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: August 31, 2024\r\n	admin	Experiences	1
768142	2025-03-12	09:09:12.7693411	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3729\r\nCompanyInstitution:  DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / JOSE C. PASTOR MES\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
768143	2025-03-12	09:09:12.7743411	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3729\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / JOSE C. PASTOR MES\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,798.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
768144	2025-03-12	09:09:12.7787614	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3729\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / JOSE C. PASTOR MES\r\nExperienceId: 0\r\nFromDate: September 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 28,276.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
768145	2025-03-12	09:09:12.7838090	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3729\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / JOSE C. PASTOR MES\r\nExperienceId: 0\r\nFromDate: February 20, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 24,161.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: August 31, 2021\r\n	admin	Experiences	1
768146	2025-03-12	09:09:12.7878227	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3729\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / JOSE C. PASTOR MES\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 23,877.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: February 28, 2021\r\n	admin	Experiences	1
768147	2025-03-12	09:09:12.7928377	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3729\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / JOSE C. PASTOR MES\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,316.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
768148	2025-03-12	09:09:12.7972485	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3729\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / JOSE C. PASTOR MES\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
768149	2025-03-12	09:09:12.8022652	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3729\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / JOSE C. PASTOR MES\r\nExperienceId: 0\r\nFromDate: October 05, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
768133	2025-03-12	09:02:13.4117523	<Undetected>	Update	BasicInformationId: 3728\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09292618264\r\nEmployeeRelativeId: 3757\r\nExtensionName: \r\nFirstName: NOEL\r\nFullName: NOEL TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: CASCALLA\r\nOccupation: JEEPNEY DRIVER/OPERATOR\r\nRelationship: Husband\r\n	BasicInformationId: 3728\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09292618264\r\nEmployeeRelativeId: 3757\r\nExtensionName: \r\nFirstName: NOEL\r\nFullName: NOEL CASCALLA TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: CASCALLA\r\nOccupation: JEEPNEY DRIVER/OPERATOR\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768134	2025-03-12	09:03:40.4230132	<Undetected>	Update	BasicInformationId: 3728\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09292618264\r\nEmployeeRelativeId: 3757\r\nExtensionName: \r\nFirstName: NOEL\r\nFullName: NOEL CASCALLA TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: CASCALLA\r\nOccupation: JEEPNEY DRIVER/OPERATOR\r\nRelationship: Husband\r\n	BasicInformationId: 3728\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09292618264\r\nEmployeeRelativeId: 3757\r\nExtensionName: \r\nFirstName: NOEL\r\nFullName: NOEL TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: CASCALLA\r\nOccupation: JEEPNEY DRIVER/OPERATOR\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768135	2025-03-12	09:07:24.3439707	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 8 LOCT 1/3\r\nAddress2: MERCEDES HOMES SUBD.\r\nBarangay: SORO-SORO ILAYA\r\nBasicInformationId: 0\r\nBirthDate: September 16, 1990\r\nBirthPlace: PASIG CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Separated\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marivic.sulit@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIVIC\r\nFullName: MARIVIC B. SULIT\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SULIT\r\nMaidenName: \r\nMiddleName: BUENAFE\r\nMobileNumber: 09473431393\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 8 LOCT 1/3\r\nPermanentAddress2: MERCEDES HOMES SUBD.\r\nPermanentBarangay: SORO-SORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PARCEL 4 MARIA MARTHA ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PARCEL 4 MARIA MARTHA ST.\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768136	2025-03-12	09:07:24.3533811	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3730\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
768137	2025-03-12	09:08:52.7308059	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3730\r\nBirthDate: August 17, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: HANNAH ANGEL\r\nFullName: HANNAH ANGEL BUENAFE SULIT\r\nGender: Male\r\nLastName: SULIT\r\nMaidenName: \r\nMiddleName: BUENAFE\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768138	2025-03-12	09:08:52.7407726	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3730\r\nBirthDate: March 03, 2020\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LUKE DRANIEL\r\nFullName: LUKE DRANIEL BUENAFE SISON\r\nGender: Male\r\nLastName: SISON\r\nMaidenName: \r\nMiddleName: BUENAFE\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768139	2025-03-12	09:08:52.7457558	<Undetected>	Update	BasicInformationId: 3730\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3527\r\n	BasicInformationId: 3730\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3527\r\n	admin	Questionnaires	1
768152	2025-03-12	09:10:13.8084157	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3730\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RAMON\r\nFullName: RAMON ESCREZA BUENAFE\r\nGender: Male\r\nLastName: BUENAFE\r\nMaidenName: \r\nMiddleName: ESCREZA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
768153	2025-03-12	09:10:13.8124023	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3730\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LINA\r\nFullName: LINA MAGNAYE BUENAFE\r\nGender: Male\r\nLastName: BUENAFE\r\nMaidenName: CANATUAN\r\nMiddleName: MAGNAYE\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
768154	2025-03-12	09:10:13.8213724	<Undetected>	Update	BasicInformationId: 3730\r\nBirthDate: August 17, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3765\r\nExtensionName: \r\nFirstName: HANNAH ANGEL\r\nFullName: HANNAH ANGEL BUENAFE SULIT\r\nGender: Male\r\nLastName: SULIT\r\nMaidenName: \r\nMiddleName: BUENAFE\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3730\r\nBirthDate: August 17, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3765\r\nExtensionName: \r\nFirstName: HANNAH ANGEL\r\nFullName: HANNAH ANGEL SULIT\r\nGender: Male\r\nLastName: SULIT\r\nMaidenName: \r\nMiddleName: BUENAFE\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768155	2025-03-12	09:10:13.8263556	<Undetected>	Update	BasicInformationId: 3730\r\nBirthDate: March 03, 2020\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3766\r\nExtensionName: \r\nFirstName: LUKE DRANIEL\r\nFullName: LUKE DRANIEL BUENAFE SISON\r\nGender: Male\r\nLastName: SISON\r\nMaidenName: \r\nMiddleName: BUENAFE\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3730\r\nBirthDate: March 03, 2020\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3766\r\nExtensionName: \r\nFirstName: LUKE DRANIEL\r\nFullName: LUKE DRANIEL SISON\r\nGender: Male\r\nLastName: SISON\r\nMaidenName: \r\nMiddleName: BUENAFE\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768150	2025-03-12	09:09:12.8062784	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3729\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / JOSE C. PASTOR MES\r\nExperienceId: 0\r\nFromDate: February 20, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: April 10, 2018\r\n	admin	Experiences	1
768151	2025-03-12	09:09:12.8102917	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3729\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / JOSE C. PASTOR MES\r\nExperienceId: 0\r\nFromDate: January 21, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: September 01, 2018\r\n	admin	Experiences	1
768156	2025-03-12	09:10:23.4147663	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PROFESSIONAL LEARNING NETWORK PLAN (PLN) YEAR II\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768162	2025-03-12	09:12:35.8403599	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION ROLL-OUT OF HOTS PROFESSIONAL LEARNING PACKAGES FOR ENSCIEMA\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768164	2025-03-12	09:14:33.3675113	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SEMINAR WORKSHOP ON CAPABILITY BUILDING FOCUSING ON LEARNING-CENTERED APPROACH FOR EFFECTIVE DELIVERY OF INSTRUCTION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768168	2025-03-12	09:16:49.3511806	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ENHANCING THE CAPABILITY OF SCHOOL HEADS AND TEACHERS IN THE IMPLEMENTATION OF PROFESSIONAL PROGRAM VIA SCHOOL LEARNING ACTION CELL BATCH 2-CLUSTER1\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768170	2025-03-12	09:19:15.4234364	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MASS TRAINING FOR ALS TEACHERS ON THE IMPLEMENTATION OF ALS ACT AND ITS IMPLEMENTING RULES AND REGULATIONS (IRR) BATCH 2\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768176	2025-03-12	09:20:24.1257674	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3729\r\nEmployeeTrainingId: 0\r\nFromDate: August 30, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 30, 2024\r\nTrainingId: 16385\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768177	2025-03-12	09:20:24.1307987	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3729\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: January 27, 2024\r\nTrainingId: 16386\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768178	2025-03-12	09:20:24.1358155	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3729\r\nEmployeeTrainingId: 0\r\nFromDate: August 15, 2023\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 17, 2023\r\nTrainingId: 16387\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768179	2025-03-12	09:20:24.1408455	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3729\r\nEmployeeTrainingId: 0\r\nFromDate: August 12, 2022\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 15, 2022\r\nTrainingId: 16388\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768180	2025-03-12	09:20:24.1448597	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3729\r\nEmployeeTrainingId: 0\r\nFromDate: February 25, 2022\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: REGION IV-A CALABARZON\r\nStatus: \r\nToDate: February 26, 2022\r\nTrainingId: 16389\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768183	2025-03-12	09:21:57.3374889	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3729\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
768184	2025-03-12	09:21:57.3475070	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3729\r\nRecognitionId: 0\r\nRecognitionName: DISTRICT II OUTSTANDING ALS TEACHERS IN 4TH GAWAD TAGUMPAY\r\n	admin	Recognitions	1
768185	2025-03-12	09:21:57.3515140	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3729\r\nOrganizationId: 0\r\nOrganizationName: ALTERNATIVE LEARNING SYSTEM TEACHER'S ORGANIZATION-BATANGAS CITY\r\n	admin	Organizations	1
768186	2025-03-12	09:21:57.3595260	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3729\r\nOrganizationId: 0\r\nOrganizationName: PHILIPPINE PUBLIC SCHOOL TEACHERS ASSOCIATION\r\n	admin	Organizations	1
768194	2025-03-12	09:27:11.6028590	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3729\r\nCharacterReferenceId: 0\r\nCompanyAddress: AMBULONG, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09151454687\r\nExtensionName: \r\nFirstName: MARITES\r\nLastName: TARCELO\r\nMiddleName: D.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768157	2025-03-12	09:12:00.4065752	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3730\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1995\r\nDateTo: 2002\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: MARIKINA ELEMENTARY SCHOOL\r\nYearGraduated: 2002\r\n	admin	EducationalBackgrounds	1
768158	2025-03-12	09:12:00.4175389	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3730\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2002\r\nDateTo: 2006\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: MALABRIGO NATIONAL HIGH SCHOOL\r\nYearGraduated: 2006\r\n	admin	EducationalBackgrounds	1
768159	2025-03-12	09:12:00.4225224	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: UNIVERSITY SCHOLAR 2013-2014\r\nBasicInformationId: 3730\r\nCourse: \r\nCourseId: 1270\r\nCourseOrMajor: \r\nDateFrom: 2010\r\nDateTo: 2014\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: TLE\r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY MAIN CAMPUS 1\r\nYearGraduated: 2014\r\n	admin	EducationalBackgrounds	1
768160	2025-03-12	09:12:00.4304955	<Undetected>	Update	BasicInformationId: 3730\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3767\r\nExtensionName: \r\nFirstName: RAMON\r\nFullName: RAMON ESCREZA BUENAFE\r\nGender: Male\r\nLastName: BUENAFE\r\nMaidenName: \r\nMiddleName: ESCREZA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3730\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3767\r\nExtensionName: \r\nFirstName: RAMON\r\nFullName: RAMON BUENAFE\r\nGender: Male\r\nLastName: BUENAFE\r\nMaidenName: \r\nMiddleName: ESCREZA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
768161	2025-03-12	09:12:00.4354790	<Undetected>	Update	BasicInformationId: 3730\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3768\r\nExtensionName: \r\nFirstName: LINA\r\nFullName: LINA MAGNAYE BUENAFE\r\nGender: Male\r\nLastName: BUENAFE\r\nMaidenName: CANATUAN\r\nMiddleName: MAGNAYE\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3730\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3768\r\nExtensionName: \r\nFirstName: LINA\r\nFullName: LINA BUENAFE\r\nGender: Male\r\nLastName: BUENAFE\r\nMaidenName: \r\nMiddleName: MAGNAYE\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
768163	2025-03-12	09:14:12.0912895	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 8 LOCT 1/3\r\nAddress2: MERCEDES HOMES SUBD.\r\nBarangay: SORO-SORO ILAYA\r\nBasicInformationId: 3730\r\nBirthDate: September 16, 1990\r\nBirthPlace: PASIG CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Separated\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marivic.sulit@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIVIC\r\nFullName: MARIVIC B. SULIT\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SULIT\r\nMaidenName: \r\nMiddleName: BUENAFE\r\nMobileNumber: 09473431393\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 8 LOCT 1/3\r\nPermanentAddress2: MERCEDES HOMES SUBD.\r\nPermanentBarangay: SORO-SORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PARCEL 4 MARIA MARTHA ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PARCEL 4 MARIA MARTHA ST.\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 8 LOCT 1/3\r\nAddress2: MERCEDES HOMES SUBD.\r\nBarangay: SORO-SORO ILAYA\r\nBasicInformationId: 3730\r\nBirthDate: September 16, 1990\r\nBirthPlace: PASIG CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Separated\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marivic.sulit@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIVIC\r\nFullName: MARIVIC B. SULIT\r\nGender: Female\r\nGovernmentIdIssuedDate: December 23, 2015\r\nGovernmentIdNumber: 1419662\r\nGovernmentIdPlaceIssued: PRC MANILA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02005974103\r\nHDMF: 1211-2187-1170\r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SULIT\r\nMaidenName: \r\nMiddleName: BUENAFE\r\nMobileNumber: 09473431393\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 8 LOCT 1/3\r\nPermanentAddress2: MERCEDES HOMES SUBD.\r\nPermanentBarangay: SORO-SORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PARCEL 4 MARIA MARTHA ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-2947656-1\r\nStreetName: PARCEL 4 MARIA MARTHA ST.\r\nTIN: 454-408-912-0000\r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768165	2025-03-12	09:15:49.2307830	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3730\r\nCharacterReferenceId: 0\r\nCompanyAddress: BAUAN, BATANGAS\r\nCompanyName: \r\nContactNumber: 09292731008\r\nExtensionName: \r\nFirstName: HAZEL\r\nLastName: PEREZ\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768166	2025-03-12	09:15:49.2357653	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3730\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN PASCUAL, BATANGAS\r\nCompanyName: \r\nContactNumber: 09477872377\r\nExtensionName: \r\nFirstName: LESHEL\r\nLastName: SUAREZ\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768167	2025-03-12	09:15:49.2407487	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3730\r\nCharacterReferenceId: 0\r\nCompanyAddress: DUMANTAY, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09195813127\r\nExtensionName: \r\nFirstName: LUTHER JOSE\r\nLastName: EROA\r\nMiddleName: O\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768169	2025-03-12	09:17:10.9970741	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3730\r\nDateOfExamination: September 27, 2015\r\nDateOfRelease: September 16, 2024\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 27, 2015\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1419662\r\nPlaceOfExamination: ST. JUDE COLLEGE MANILA\r\nRating: 76.4\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
768171	2025-03-12	09:19:58.5318570	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3730\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,024.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
768172	2025-03-12	09:19:58.5388336	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3730\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
768173	2025-03-12	09:19:58.5428202	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3730\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
768174	2025-03-12	09:19:58.5507935	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3730\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 22, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,439.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
768175	2025-03-12	09:19:58.5547802	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3730\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 15, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 23,877.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 20, 2021\r\n	admin	Experiences	1
768181	2025-03-12	09:21:47.8680860	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3730\r\nCompanyInstitution: PHILIPPINE INTERNATIONAL SCHOOL QATAR\r\nExperienceId: 0\r\nFromDate: June 26, 2017\r\nIsGovernmentService: False\r\nMonthlySalary: 40,000.00\r\nPositionHeld: JUNIOR HIGH SCHOOL TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: August 14, 2019\r\n	admin	Experiences	1
768182	2025-03-12	09:21:47.8720728	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3730\r\nCompanyInstitution: ST. BRIDGET COLLEGE\r\nExperienceId: 0\r\nFromDate: July 07, 2014\r\nIsGovernmentService: False\r\nMonthlySalary: 18,000.00\r\nPositionHeld: JUNIOR HIGH SCHOOL TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Probationary\r\nToDate: April 30, 2017\r\n	admin	Experiences	1
768187	2025-03-12	09:23:39.1236647	<Undetected>	Update	BasicInformationId: 3730\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11682\r\nFromDate: November 15, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 23,877.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 20, 2021\r\n	BasicInformationId: 3730\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11682\r\nFromDate: November 15, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 23,877.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: December 20, 2021\r\n	admin	Experiences	1
768188	2025-03-12	09:24:28.8726730	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MINDFULNESS AND SOCIAL-EMOTIONAL LEARNING\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
768189	2025-03-12	09:25:24.9319989	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INCLUSIVE EDUCATION AND SPECIAL NEEDS SUPPORT\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
768190	2025-03-12	09:26:20.7845455	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ASSESSMENT AND DATA DRIVEN INSTRUCTIONS\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
768191	2025-03-12	09:26:55.2188294	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3730\r\nEmployeeTrainingId: 0\r\nFromDate: May 24, 2024\r\nHours: 4\r\nNatureOfParticipation: \r\nSponsoringAgency: MALITAM NATIONAL HIGH SCHOOL\r\nStatus: \r\nToDate: May 24, 2024\r\nTrainingId: 16390\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768192	2025-03-12	09:26:55.2277996	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3730\r\nEmployeeTrainingId: 0\r\nFromDate: May 24, 2024\r\nHours: 4\r\nNatureOfParticipation: \r\nSponsoringAgency: MALITAM NATIONAL HIGH SCHOOL\r\nStatus: \r\nToDate: May 24, 2024\r\nTrainingId: 16391\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768193	2025-03-12	09:26:55.2327828	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3730\r\nEmployeeTrainingId: 0\r\nFromDate: March 27, 2024\r\nHours: 4\r\nNatureOfParticipation: \r\nSponsoringAgency: MALITAM NATIONAL HIGH SCHOOL\r\nStatus: \r\nToDate: March 27, 2024\r\nTrainingId: 16392\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768197	2025-03-12	09:27:42.4040362	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TEACHING TO THINK-INTEGRATING HIGHER ORDER THINKING SKILLS OR HOTS IN CLASSROOM INSTRUCTION\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
768195	2025-03-12	09:27:11.6119436	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3729\r\nCharacterReferenceId: 0\r\nCompanyAddress: SORO-SORO KARSADA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09602715239\r\nExtensionName: \r\nFirstName: ELIZABETH\r\nLastName: ALEA\r\nMiddleName: M.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768196	2025-03-12	09:27:11.6159560	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3729\r\nCharacterReferenceId: 0\r\nCompanyAddress: AGUILA, SAN JOSE BATANGAS\r\nCompanyName: \r\nContactNumber: 09303863270\r\nExtensionName: \r\nFirstName: ROSA JEALYN\r\nLastName: MANALO\r\nMiddleName: M. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768200	2025-03-12	09:29:50.2626502	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: HALIGUE SILANGAN\r\nBasicInformationId: 3729\r\nBirthDate: March 07, 1988\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: analiza.balmes001@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANALIZA\r\nFullName: ANALIZA M. BALMES\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BALMES\r\nMaidenName: \r\nMiddleName: MANALO\r\nMobileNumber: 09230882057\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: HALIGUE SILANGAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: HALIGUE SILANGAN\r\nBasicInformationId: 3729\r\nBirthDate: March 07, 1988\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: analiza.balmes001@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANALIZA\r\nFullName: ANALIZA M. BALMES\r\nGender: Female\r\nGovernmentIdIssuedDate: July 12, 2022\r\nGovernmentIdNumber: 3495096758628170\r\nGovernmentIdPlaceIssued: BATANGAS CITY\r\nGovernmentIssuedId: NATIONAL ID\r\nGSIS: 02005311915\r\nHDMF: 1211-2298-2894\r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BALMES\r\nMaidenName: \r\nMiddleName: MANALO\r\nMobileNumber: 09230882057\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: HALIGUE SILANGAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000096333-9\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-2416653-3\r\nStreetName: \r\nTIN: 341-752-606-0000\r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768205	2025-03-12	09:37:01.5820889	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 001\r\nAddress2: \r\nBarangay: CALUMPANG EAST\r\nBasicInformationId: 0\r\nBirthDate: January 18, 1993\r\nBirthPlace: BATANGAS CITY, BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: SAN LUIS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marykris.badillo@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARY KRIS\r\nFullName: MARY KRIS A. BADILLO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BADILLO\r\nMaidenName: \r\nMiddleName: ALMAREZ\r\nMobileNumber: 09164850075\r\nNationality: Filipino\r\nPermanentAddress1: 001\r\nPermanentAddress2: \r\nPermanentBarangay: CALUMPANG EAST\r\nPermanentCity: SAN LUIS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4210\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 65\r\nZipCode: 4210\r\n	admin	BasicInformation	1
768206	2025-03-12	09:37:01.5905766	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3731\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PATRICK\r\nFullName: PATRICK MENDOZA BADILLO\r\nGender: Male\r\nLastName: BADILLO\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768207	2025-03-12	09:37:01.5905766	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3731\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GREGORIO\r\nFullName: GREGORIO RONQUILLO ALMAREZ\r\nGender: Male\r\nLastName: ALMAREZ\r\nMaidenName: \r\nMiddleName: RONQUILLO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
768208	2025-03-12	09:37:01.5919614	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3731\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FAVIANA\r\nFullName: FAVIANA DE TORRES DE TORRES\r\nGender: Female\r\nLastName: DE TORRES\r\nMaidenName: \r\nMiddleName: DE TORRES\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
768209	2025-03-12	09:37:01.5919614	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3731\r\nBirthDate: September 05, 2022\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: YUAN\r\nFullName: YUAN ALMAREZ BADILLO\r\nGender: Male\r\nLastName: BADILLO\r\nMaidenName: \r\nMiddleName: ALMAREZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768210	2025-03-12	09:37:01.5919614	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3731\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
768275	2025-03-12	10:22:58.3345847	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3733\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
768198	2025-03-12	09:28:57.7523767	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3730\r\nEmployeeTrainingId: 0\r\nFromDate: February 29, 2024\r\nHours: 4\r\nNatureOfParticipation: \r\nSponsoringAgency: MALITAM NATIONAL HIGH SCHOOL\r\nStatus: \r\nToDate: February 29, 2024\r\nTrainingId: 16393\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768199	2025-03-12	09:28:57.7573598	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3730\r\nEmployeeTrainingId: 0\r\nFromDate: January 25, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: MALITAM NATIONAL HIGH SCHOOL\r\nStatus: \r\nToDate: January 25, 2024\r\nTrainingId: 16346\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768201	2025-03-12	09:30:18.0152106	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3730\r\nSkillId: 0\r\nSkillName: BAKING\r\n	admin	Skills	1
768202	2025-03-12	09:30:18.0291633	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3730\r\nRecognitionId: 0\r\nRecognitionName: PERFECT ATTENDANCE AWARD 2017-2019 AT PHILIPPINE NATIONAL SCHOOL QATAR\r\n	admin	Recognitions	1
768203	2025-03-12	09:30:18.0441128	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3730\r\nOrganizationId: 0\r\nOrganizationName: AFEQ-ASSOCIATION OF FILIPINO EDUCATORS QATAR 2017-2019\r\n	admin	Organizations	1
768204	2025-03-12	09:34:55.2032797	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 8 LOCT 1/3\r\nAddress2: MERCEDES HOMES SUBD.\r\nBarangay: SORO-SORO ILAYA\r\nBasicInformationId: 3730\r\nBirthDate: September 16, 1990\r\nBirthPlace: PASIG CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Separated\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marivic.sulit@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIVIC\r\nFullName: MARIVIC B. SULIT\r\nGender: Female\r\nGovernmentIdIssuedDate: December 23, 2015\r\nGovernmentIdNumber: 1419662\r\nGovernmentIdPlaceIssued: PRC MANILA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02005974103\r\nHDMF: 1211-2187-1170\r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SULIT\r\nMaidenName: \r\nMiddleName: BUENAFE\r\nMobileNumber: 09473431393\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 8 LOCT 1/3\r\nPermanentAddress2: MERCEDES HOMES SUBD.\r\nPermanentBarangay: SORO-SORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PARCEL 4 MARIA MARTHA ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-2947656-1\r\nStreetName: PARCEL 4 MARIA MARTHA ST.\r\nTIN: 454-408-912-0000\r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 8 LOCT 1/3\r\nAddress2: MERCEDES HOMES SUBD.\r\nBarangay: SORO-SORO ILAYA\r\nBasicInformationId: 3730\r\nBirthDate: September 16, 1990\r\nBirthPlace: PASIG CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Separated\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marivic.sulit@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIVIC\r\nFullName: MARIVIC B. SULIT\r\nGender: Female\r\nGovernmentIdIssuedDate: December 23, 2015\r\nGovernmentIdNumber: 1419662\r\nGovernmentIdPlaceIssued: PRC MANILA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02005974103\r\nHDMF: 1211-2187-1170\r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SULIT\r\nMaidenName: \r\nMiddleName: BUENAFE\r\nMobileNumber: 09473431393\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 8 LOCT 1/3\r\nPermanentAddress2: MERCEDES HOMES SUBD.\r\nPermanentBarangay: SORO-SORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PARCEL 4 MARIA MARTHA ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050176522-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-2947656-1\r\nStreetName: PARCEL 4 MARIA MARTHA ST.\r\nTIN: 454-408-912-0000\r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768211	2025-03-12	09:48:03.7446126	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BILOGO\r\nBasicInformationId: 0\r\nBirthDate: September 06, 1994\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: louielyn.bonsol@deped.gov.ph\r\nExtensionName: \r\nFirstName: LOUIELYN\r\nFullName: LOUIELYN G. BONSOL\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BONSOL\r\nMaidenName: \r\nMiddleName: GAYAGAYA\r\nMobileNumber: 09163045509\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BILOGO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768212	2025-03-12	09:48:03.7541262	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3732\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
768213	2025-03-12	09:49:02.6289030	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3732\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RIO\r\nFullName: RIO ABELA BONSOL\r\nGender: Male\r\nLastName: BONSOL\r\nMaidenName: \r\nMiddleName: ABELA\r\nOccupation: OFW\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768222	2025-03-12	09:54:59.1003692	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3732\r\nDateOfExamination: December 23, 2016\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: December 23, 2016\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1515146\r\nPlaceOfExamination: PRC LUCENA\r\nRating: \r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
768457	2025-03-12	11:59:30.0946690	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3736\r\nEmployeeTrainingId: 0\r\nFromDate: July 22, 2024\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: July 26, 2024\r\nTrainingId: 16412\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768214	2025-03-12	09:49:02.6398663	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BILOGO\r\nBasicInformationId: 3732\r\nBirthDate: September 06, 1994\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: louielyn.bonsol@deped.gov.ph\r\nExtensionName: \r\nFirstName: LOUIELYN\r\nFullName: LOUIELYN G. BONSOL\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BONSOL\r\nMaidenName: \r\nMiddleName: GAYAGAYA\r\nMobileNumber: 09163045509\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BILOGO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BILOGO\r\nBasicInformationId: 3732\r\nBirthDate: September 06, 1994\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: louielyn.bonsol@deped.gov.ph\r\nExtensionName: \r\nFirstName: LOUIELYN\r\nFullName: LOUIELYN G. BONSOL\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BONSOL\r\nMaidenName: \r\nMiddleName: GAYAGAYA\r\nMobileNumber: 09163045509\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BILOGO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768215	2025-03-12	09:49:02.6448506	<Undetected>	Update	BasicInformationId: 3732\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3529\r\n	BasicInformationId: 3732\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3529\r\n	admin	Questionnaires	1
768216	2025-03-12	09:50:33.7175631	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3732\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BILOGO ELEMENTARY SCHOOL\r\nYearGraduated: 2007\r\n	admin	EducationalBackgrounds	1
768217	2025-03-12	09:50:33.7225464	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3732\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2007\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: PAHARANG NATIONAL HIGH SCHOOL\r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
768218	2025-03-12	09:50:33.7325130	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3732\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 2012\r\nDateTo: 2016\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: GENERAL EDUCATION\r\nSchoolorUniversity: COLEGIO NG LUNGSOD NG BATANGAS\r\nYearGraduated: 2016\r\n	admin	EducationalBackgrounds	1
768219	2025-03-12	09:50:33.7364998	<Undetected>	Update	BasicInformationId: 3732\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3773\r\nExtensionName: \r\nFirstName: RIO\r\nFullName: RIO ABELA BONSOL\r\nGender: Male\r\nLastName: BONSOL\r\nMaidenName: \r\nMiddleName: ABELA\r\nOccupation: OFW\r\nRelationship: Husband\r\n	BasicInformationId: 3732\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3773\r\nExtensionName: \r\nFirstName: RIO\r\nFullName: RIO BONSOL\r\nGender: Male\r\nLastName: BONSOL\r\nMaidenName: \r\nMiddleName: ABELA\r\nOccupation: OFW\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768220	2025-03-12	09:52:03.3432742	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3732\r\nCourse: \r\nCourseId: 1304\r\nCourseOrMajor: \r\nDateFrom: 2023\r\nDateTo: 2025\r\nEducationalAttainment: 30 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: PHILIPPINE INTERCONTINENTAL COLLEGE\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
768221	2025-03-12	09:53:33.1967551	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BILOGO\r\nBasicInformationId: 3732\r\nBirthDate: September 06, 1994\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: louielyn.bonsol@deped.gov.ph\r\nExtensionName: \r\nFirstName: LOUIELYN\r\nFullName: LOUIELYN G. BONSOL\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BONSOL\r\nMaidenName: \r\nMiddleName: GAYAGAYA\r\nMobileNumber: 09163045509\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BILOGO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BILOGO\r\nBasicInformationId: 3732\r\nBirthDate: September 06, 1994\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: louielyn.bonsol@deped.gov.ph\r\nExtensionName: \r\nFirstName: LOUIELYN\r\nFullName: LOUIELYN G. BONSOL\r\nGender: Female\r\nGovernmentIdIssuedDate: December 23, 2016\r\nGovernmentIdNumber: 1515146\r\nGovernmentIdPlaceIssued: PRC LUCENA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02005433643\r\nHDMF: 1211-7238-5877\r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BONSOL\r\nMaidenName: \r\nMiddleName: GAYAGAYA\r\nMobileNumber: 09163045509\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BILOGO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 328-790-931-0000\r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768223	2025-03-12	09:57:41.0956344	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3731\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1999\r\nDateTo: 2005\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAN MIGUEL ELEMENTARY SCHOOL\r\nYearGraduated: 2005\r\n	admin	EducationalBackgrounds	1
768224	2025-03-12	09:57:41.1056502	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3731\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGHSCHOOL\r\nYearGraduated: 2009\r\n	admin	EducationalBackgrounds	1
768225	2025-03-12	09:57:41.1096563	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3731\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2009\r\nDateTo: 2013\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: COLEGIO NG LUNGSOD NG BATANGAS\r\nYearGraduated: 2013\r\n	admin	EducationalBackgrounds	1
768226	2025-03-12	09:57:41.1178927	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3731\r\nCourse: \r\nCourseId: 1367\r\nCourseOrMajor: \r\nDateFrom: 2018\r\nDateTo: 2020\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2020\r\n	admin	EducationalBackgrounds	1
768227	2025-03-12	09:57:41.1229109	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 001\r\nAddress2: \r\nBarangay: CALUMPANG EAST\r\nBasicInformationId: 3731\r\nBirthDate: January 18, 1993\r\nBirthPlace: BATANGAS CITY, BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: SAN LUIS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marykris.badillo@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARY KRIS\r\nFullName: MARY KRIS A. BADILLO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BADILLO\r\nMaidenName: \r\nMiddleName: ALMAREZ\r\nMobileNumber: 09164850075\r\nNationality: Filipino\r\nPermanentAddress1: 001\r\nPermanentAddress2: \r\nPermanentBarangay: CALUMPANG EAST\r\nPermanentCity: SAN LUIS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4210\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 65\r\nZipCode: 4210\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 001\r\nAddress2: \r\nBarangay: CALUMPANG EAST\r\nBasicInformationId: 3731\r\nBirthDate: January 18, 1993\r\nBirthPlace: BATANGAS CITY, BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: SAN LUIS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marykris.badillo@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARY KRIS\r\nFullName: MARY KRIS A. BADILLO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BADILLO\r\nMaidenName: \r\nMiddleName: ALMAREZ\r\nMobileNumber: 09164850075\r\nNationality: Filipino\r\nPermanentAddress1: 001\r\nPermanentAddress2: \r\nPermanentBarangay: CALUMPANG EAST\r\nPermanentCity: SAN LUIS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4210\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 65\r\nZipCode: 4210\r\n	admin	BasicInformation	1
768228	2025-03-12	09:57:41.1279410	<Undetected>	Update	BasicInformationId: 3731\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3769\r\nExtensionName: \r\nFirstName: PATRICK\r\nFullName: PATRICK MENDOZA BADILLO\r\nGender: Male\r\nLastName: BADILLO\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3731\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3769\r\nExtensionName: \r\nFirstName: PATRICK\r\nFullName: PATRICK BADILLO\r\nGender: Male\r\nLastName: BADILLO\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768229	2025-03-12	09:57:41.1319469	<Undetected>	Update	BasicInformationId: 3731\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3770\r\nExtensionName: \r\nFirstName: GREGORIO\r\nFullName: GREGORIO RONQUILLO ALMAREZ\r\nGender: Male\r\nLastName: ALMAREZ\r\nMaidenName: \r\nMiddleName: RONQUILLO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3731\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3770\r\nExtensionName: \r\nFirstName: GREGORIO\r\nFullName: GREGORIO ALMAREZ\r\nGender: Male\r\nLastName: ALMAREZ\r\nMaidenName: \r\nMiddleName: RONQUILLO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
768230	2025-03-12	09:57:41.1369545	<Undetected>	Update	BasicInformationId: 3731\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3771\r\nExtensionName: \r\nFirstName: FAVIANA\r\nFullName: FAVIANA DE TORRES DE TORRES\r\nGender: Female\r\nLastName: DE TORRES\r\nMaidenName: \r\nMiddleName: DE TORRES\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3731\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3771\r\nExtensionName: \r\nFirstName: FAVIANA\r\nFullName: FAVIANA DE TORRES\r\nGender: Female\r\nLastName: DE TORRES\r\nMaidenName: \r\nMiddleName: DE TORRES\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
768231	2025-03-12	09:57:41.1409608	<Undetected>	Update	BasicInformationId: 3731\r\nBirthDate: September 05, 2022\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3772\r\nExtensionName: \r\nFirstName: YUAN\r\nFullName: YUAN ALMAREZ BADILLO\r\nGender: Male\r\nLastName: BADILLO\r\nMaidenName: \r\nMiddleName: ALMAREZ\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3731\r\nBirthDate: September 05, 2022\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3772\r\nExtensionName: \r\nFirstName: YUAN\r\nFullName: YUAN BADILLO\r\nGender: Male\r\nLastName: BADILLO\r\nMaidenName: \r\nMiddleName: ALMAREZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768232	2025-03-12	09:57:41.1460081	<Undetected>	Update	BasicInformationId: 3731\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3528\r\n	BasicInformationId: 3731\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3528\r\n	admin	Questionnaires	1
768233	2025-03-12	09:59:42.0965752	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3731\r\nDateOfExamination: January 26, 2014\r\nDateOfRelease: January 18, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: January 26, 2014\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1298892\r\nPlaceOfExamination: LUCENA CITY, QUEZON\r\nRating: 78.80\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
768234	2025-03-12	10:02:20.5018047	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3732\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 21, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,245.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
768235	2025-03-12	10:02:20.5067881	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3732\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 08, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 30,597.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: August 20, 2024\r\n	admin	Experiences	1
768236	2025-03-12	10:02:20.5117717	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3732\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 27,284.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 07, 2024\r\n	admin	Experiences	1
768237	2025-03-12	10:02:20.5167545	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3732\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,284.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
768238	2025-03-12	10:02:20.5207414	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3732\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,273.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
768239	2025-03-12	10:02:20.5257250	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3732\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 08, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 24,161.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
768240	2025-03-12	10:02:20.5307082	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3732\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 23,877.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 07, 2021\r\n	admin	Experiences	1
768241	2025-03-12	10:02:20.5356916	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3732\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,316.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
768242	2025-03-12	10:02:20.5396782	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3732\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
768243	2025-03-12	10:02:20.5446615	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3732\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 08, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
768244	2025-03-12	10:02:20.5486480	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3732\r\nCompanyInstitution: GOLDEN GATE COLLEGES - ELEMENTARY DEPARTMENT\r\nExperienceId: 0\r\nFromDate: May 15, 2016\r\nIsGovernmentService: False\r\nMonthlySalary: 12,000.00\r\nPositionHeld: PRIMARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: May 12, 2018\r\n	admin	Experiences	1
768245	2025-03-12	10:04:23.5219060	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DEPED MATATAG CURRICULUM TRAINING\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
768247	2025-03-12	10:07:53.0932585	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INTERNATIONAL TRAINING - HIGH IMPACT TEACHING IN DIGITAL ERA: AN INTERNATIONAL ONLINE TRAINING PROGRAM "SAFEGUARDING EDUCATION: EDUCATION CONTINUITY PLANNING AND THE WHOLE-SCHOOL APPROACH INNOVATION IN EDUCATION"\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
768248	2025-03-12	10:08:49.7308661	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3732\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16394\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768249	2025-03-12	10:08:49.7388395	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3732\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16395\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768250	2025-03-12	10:08:49.7438228	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3732\r\nEmployeeTrainingId: 0\r\nFromDate: January 15, 2021\r\nHours: 72\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: May 12, 2022\r\nTrainingId: 16396\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768251	2025-03-12	10:10:08.4430109	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ENHANCING CAPABILITY OF SCHOOL HEADS AND TEACHERS IN THE IMPLEMENTATION OF PROFESSIONAL PROGRAM VIA SCHOOL LEARNING ACTION CELL\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
768266	2025-03-12	10:16:08.8591551	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3732\r\nEmployeeTrainingId: 0\r\nFromDate: March 28, 2022\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: June 05, 2022\r\nTrainingId: 16397\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768267	2025-03-12	10:17:19.7516489	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PROCESS OBSERVER-SCHOOL'S CI PROJECT-ENTRY TO THE 2022 SEARCH FOR THE BEST CI PROJECTS\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
768268	2025-03-12	10:17:48.9726878	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3732\r\nEmployeeTrainingId: 0\r\nFromDate: August 19, 2022\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: August 19, 2022\r\nTrainingId: 16398\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768269	2025-03-12	10:18:14.7808189	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3732\r\nSkillId: 0\r\nSkillName: PLAYING VOLLEYBALL\r\n	admin	Skills	1
768270	2025-03-12	10:18:14.7858023	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3732\r\nSkillId: 0\r\nSkillName: SKILLS IN ICT\r\n	admin	Skills	1
768271	2025-03-12	10:20:05.4502024	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3732\r\nCharacterReferenceId: 0\r\nCompanyAddress: AMBULONG, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09151454687\r\nExtensionName: \r\nFirstName: MARITES\r\nLastName: TARCELO\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768272	2025-03-12	10:20:05.4571793	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3732\r\nCharacterReferenceId: 0\r\nCompanyAddress: DALIG, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09186126205\r\nExtensionName: \r\nFirstName: LOIDA\r\nLastName: ALUAN\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768273	2025-03-12	10:20:05.4611656	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3732\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN WEST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09189649408\r\nExtensionName: \r\nFirstName: LENY\r\nLastName: BOOL\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768274	2025-03-12	10:22:58.3253025	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: CENTRAL\r\nBarangay: LIBJO\r\nBasicInformationId: 0\r\nBirthDate: September 12, 1995\r\nBirthPlace: MALITAM, BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: leanica.abunda@deped.gov.ph\r\nExtensionName: \r\nFirstName: LEANICA\r\nFullName: LEANICA A. COLLERA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: COLLERA\r\nMaidenName: \r\nMiddleName: ABUNDA\r\nMobileNumber: 09913281626\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: CENTRAL\r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: BABAO ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: BABAO ROAD\r\nTIN: \r\nWeight: 63\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768252	2025-03-12	10:12:15.6614933	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3731\r\nCompanyInstitution: SDO BATANGAS CITY / JOSE P. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,733.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: March 12, 2025\r\n	admin	Experiences	1
768253	2025-03-12	10:12:15.6657329	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3731\r\nCompanyInstitution: SDO BATANGAS CITY / JOSE P. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: December 15, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 33,183.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
768254	2025-03-12	10:12:15.6707504	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3731\r\nCompanyInstitution: SDO BATANGAS CITY / JOSE P. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 14, 2024\r\n	admin	Experiences	1
768255	2025-03-12	10:12:15.6747817	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3731\r\nCompanyInstitution: SDO BATANGAS CITY / JOSE P. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
768256	2025-03-12	10:12:15.6798103	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3731\r\nCompanyInstitution: SDO BATANGAS CITY / JOSE P. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,798.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
768257	2025-03-12	10:12:15.6838229	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3731\r\nCompanyInstitution: SDO BATANGAS CITY / JOSE P. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: September 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 28,276.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
768258	2025-03-12	10:12:15.6888597	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3731\r\nCompanyInstitution: SDO BATANGAS CITY / JOSE P. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 24,161.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: August 31, 2021\r\n	admin	Experiences	1
768259	2025-03-12	10:12:15.6928723	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3731\r\nCompanyInstitution: SDO BATANGAS CITY / JOSE P. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,316.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
768260	2025-03-12	10:12:15.6968851	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3731\r\nCompanyInstitution:  SDO BATANGAS CITY / JOSE P. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
768261	2025-03-12	10:12:15.7019010	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3731\r\nCompanyInstitution: SDO BATANGAS CITY / JOSE P. PASTOR MEMORIAL ELEMENTARY SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: March 31, 2019\r\n	admin	Experiences	1
768262	2025-03-12	10:12:15.7059455	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3731\r\nCompanyInstitution: SDO BATANGAS CITY / JOSE P. PASTOR MEMORIAL ELEMENTARY SCHOOL \r\nExperienceId: 0\r\nFromDate: October 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
768263	2025-03-12	10:12:15.7109728	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3731\r\nCompanyInstitution: SDO BATANGAS CITY / JOSE P. PASTOR MEMORIAL ELEMENTARY SCHOOL \r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: September 30, 2018\r\n	admin	Experiences	1
768264	2025-03-12	10:12:15.7149853	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3731\r\nCompanyInstitution: SDO BATANGAS CITY / JOSE P. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 20, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,620.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
768265	2025-03-12	10:12:15.7200015	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3731\r\nCompanyInstitution: CARMEL SHOOL OF BATANGAS, INC.  \r\nExperienceId: 0\r\nFromDate: May 03, 2013\r\nIsGovernmentService: False\r\nMonthlySalary: 11,200.00\r\nPositionHeld: ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 00-0\r\nStatus: Permanent\r\nToDate: May 31, 2017\r\n	admin	Experiences	1
768276	2025-03-12	10:22:57.3649584	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPACITY BUILDING FOR SPECIAL EDUCATION AND RECEIVING TEACHERS ON FILIPINO SIGN LANGUAGE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768277	2025-03-12	10:23:45.7921218	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3731\r\nEmployeeTrainingId: 0\r\nFromDate: December 05, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: December 07, 2024\r\nTrainingId: 16399\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768281	2025-03-12	10:24:30.0768169	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3731\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
768282	2025-03-12	10:24:30.0808167	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3731\r\nSkillId: 0\r\nSkillName: EDITING SKILLS\r\n	admin	Skills	1
768283	2025-03-12	10:24:30.0858166	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3731\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
768284	2025-03-12	10:24:30.0948166	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3731\r\nOrganizationId: 0\r\nOrganizationName: GSP\r\n	admin	Organizations	1
768291	2025-03-12	10:27:59.2655677	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3731\r\nCharacterReferenceId: 0\r\nCompanyAddress: CONDE ITAAS, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09163109637\r\nExtensionName: \r\nFirstName: GEMMA\r\nLastName: DE TORRES\r\nMiddleName: C.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768292	2025-03-12	10:27:59.2695674	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3731\r\nCharacterReferenceId: 0\r\nCompanyAddress: DALIG, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09186126205\r\nExtensionName: \r\nFirstName: LOIDA\r\nLastName: ALUAN\r\nMiddleName: R.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768293	2025-03-12	10:27:59.2765673	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3731\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN WEST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09192005204\r\nExtensionName: \r\nFirstName: LENY\r\nLastName: BOOL\r\nMiddleName: M.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768294	2025-03-12	10:27:59.2815678	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 001\r\nAddress2: \r\nBarangay: CALUMPANG EAST\r\nBasicInformationId: 3731\r\nBirthDate: January 18, 1993\r\nBirthPlace: BATANGAS CITY, BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: SAN LUIS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marykris.badillo@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARY KRIS\r\nFullName: MARY KRIS A. BADILLO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BADILLO\r\nMaidenName: \r\nMiddleName: ALMAREZ\r\nMobileNumber: 09164850075\r\nNationality: Filipino\r\nPermanentAddress1: 001\r\nPermanentAddress2: \r\nPermanentBarangay: CALUMPANG EAST\r\nPermanentCity: SAN LUIS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4210\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 65\r\nZipCode: 4210\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 001\r\nAddress2: \r\nBarangay: CALUMPANG EAST\r\nBasicInformationId: 3731\r\nBirthDate: January 18, 1993\r\nBirthPlace: BATANGAS CITY, BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: SAN LUIS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marykris.badillo@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARY KRIS\r\nFullName: MARY KRIS A. BADILLO\r\nGender: Female\r\nGovernmentIdIssuedDate: April 24, 2014\r\nGovernmentIdNumber: 1298892\r\nGovernmentIdPlaceIssued: LUCENA CITY, QUEZON\r\nGovernmentIssuedId: PRC LICENSE\r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BADILLO\r\nMaidenName: \r\nMiddleName: ALMAREZ\r\nMobileNumber: 09164850075\r\nNationality: Filipino\r\nPermanentAddress1: 001\r\nPermanentAddress2: \r\nPermanentBarangay: CALUMPANG EAST\r\nPermanentCity: SAN LUIS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4210\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 65\r\nZipCode: 4210\r\n	admin	BasicInformation	1
768299	2025-03-12	10:31:12.6219940	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3733\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2012\r\nDateTo: 2016\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: COLEGIO NG LUNGSOD NG BATANGAS\r\nYearGraduated: 2016\r\n	admin	EducationalBackgrounds	1
768278	2025-03-12	10:24:23.8454071	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3733\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EDWARD\r\nFullName: EDWARD REYES COLLERA\r\nGender: Male\r\nLastName: COLLERA\r\nMaidenName: \r\nMiddleName: REYES\r\nOccupation: MECHANICAL ENGINEER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768279	2025-03-12	10:24:23.8563701	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3733\r\nBirthDate: March 11, 2023\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ELEAZAR JUANCHO\r\nFullName: ELEAZAR JUANCHO ABUNDA COLLERA\r\nGender: Male\r\nLastName: COLLERA\r\nMaidenName: \r\nMiddleName: ABUNDA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768280	2025-03-12	10:24:23.8603567	<Undetected>	Update	BasicInformationId: 3733\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3530\r\n	BasicInformationId: 3733\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3530\r\n	admin	Questionnaires	1
768285	2025-03-12	10:25:52.9319083	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: CENTRAL\r\nBarangay: LIBJO\r\nBasicInformationId: 3733\r\nBirthDate: September 12, 1995\r\nBirthPlace: MALITAM, BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: leanica.abunda@deped.gov.ph\r\nExtensionName: \r\nFirstName: LEANICA\r\nFullName: LEANICA A. COLLERA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: COLLERA\r\nMaidenName: \r\nMiddleName: ABUNDA\r\nMobileNumber: 09913281626\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: CENTRAL\r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: BABAO ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: BABAO ROAD\r\nTIN: \r\nWeight: 63\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: CENTRAL\r\nBarangay: LIBJO\r\nBasicInformationId: 3733\r\nBirthDate: September 12, 1995\r\nBirthPlace: MALITAM, BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: leanica.abunda@deped.gov.ph\r\nExtensionName: \r\nFirstName: LEANICA\r\nFullName: LEANICA A. COLLERA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: P5319080C\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PASSPORT ID\r\nGSIS: 02005845290\r\nHDMF: 1211-8103-7167\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: COLLERA\r\nMaidenName: \r\nMiddleName: ABUNDA\r\nMobileNumber: 09913281626\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: CENTRAL\r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: BABAO ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-250184141-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3749223-6\r\nStreetName: BABAO ROAD\r\nTIN: 490-348-241-0000\r\nWeight: 63\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768286	2025-03-12	10:25:52.9368916	<Undetected>	Update	BasicInformationId: 3733\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3774\r\nExtensionName: \r\nFirstName: EDWARD\r\nFullName: EDWARD REYES COLLERA\r\nGender: Male\r\nLastName: COLLERA\r\nMaidenName: \r\nMiddleName: REYES\r\nOccupation: MECHANICAL ENGINEER\r\nRelationship: Husband\r\n	BasicInformationId: 3733\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3774\r\nExtensionName: \r\nFirstName: EDWARD\r\nFullName: EDWARD COLLERA\r\nGender: Male\r\nLastName: COLLERA\r\nMaidenName: \r\nMiddleName: REYES\r\nOccupation: MECHANICAL ENGINEER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768287	2025-03-12	10:25:52.9468585	<Undetected>	Update	BasicInformationId: 3733\r\nBirthDate: March 11, 2023\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3775\r\nExtensionName: \r\nFirstName: ELEAZAR JUANCHO\r\nFullName: ELEAZAR JUANCHO ABUNDA COLLERA\r\nGender: Male\r\nLastName: COLLERA\r\nMaidenName: \r\nMiddleName: ABUNDA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3733\r\nBirthDate: March 11, 2023\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3775\r\nExtensionName: \r\nFirstName: ELEAZAR JUANCHO\r\nFullName: ELEAZAR JUANCHO COLLERA\r\nGender: Male\r\nLastName: COLLERA\r\nMaidenName: \r\nMiddleName: ABUNDA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768288	2025-03-12	10:27:38.7239304	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3733\r\nCharacterReferenceId: 0\r\nCompanyAddress: DUMANTAY BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09671988585\r\nExtensionName: TEAOVISION\r\nFirstName: KAREN JEAN\r\nLastName: \r\nMiddleName: T\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768289	2025-03-12	10:27:38.7279136	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3733\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN WEST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09609188306\r\nExtensionName: \r\nFirstName: JASMIN\r\nLastName: GONZALES\r\nMiddleName: E\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768290	2025-03-12	10:27:38.7328987	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3733\r\nCharacterReferenceId: 0\r\nCompanyAddress: MAHACOT WEST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09155056203\r\nExtensionName: \r\nFirstName: MARIFE\r\nLastName: ANONUEVO\r\nMiddleName: Z\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768296	2025-03-12	10:30:08.0533788	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER OF ARTS\r\nLevel: College\r\n	admin	Courses	1
768297	2025-03-12	10:31:12.5920935	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3733\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2002\r\nDateTo: 2008\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: MALITAM ELEMENTARY SCHOOL\r\nYearGraduated: 2008\r\n	admin	EducationalBackgrounds	1
768298	2025-03-12	10:31:12.6050501	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3733\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2008\r\nDateTo: 2012\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2012\r\n	admin	EducationalBackgrounds	1
768295	2025-03-12	10:29:06.8428162	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 001\r\nAddress2: \r\nBarangay: CALUMPANG EAST\r\nBasicInformationId: 3731\r\nBirthDate: January 18, 1993\r\nBirthPlace: BATANGAS CITY, BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: SAN LUIS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marykris.badillo@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARY KRIS\r\nFullName: MARY KRIS A. BADILLO\r\nGender: Female\r\nGovernmentIdIssuedDate: April 24, 2014\r\nGovernmentIdNumber: 1298892\r\nGovernmentIdPlaceIssued: LUCENA CITY, QUEZON\r\nGovernmentIssuedId: PRC LICENSE\r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BADILLO\r\nMaidenName: \r\nMiddleName: ALMAREZ\r\nMobileNumber: 09164850075\r\nNationality: Filipino\r\nPermanentAddress1: 001\r\nPermanentAddress2: \r\nPermanentBarangay: CALUMPANG EAST\r\nPermanentCity: SAN LUIS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4210\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 65\r\nZipCode: 4210\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 001\r\nAddress2: \r\nBarangay: CALUMPANG EAST\r\nBasicInformationId: 3731\r\nBirthDate: January 18, 1993\r\nBirthPlace: BATANGAS CITY, BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: SAN LUIS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marykris.badillo@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARY KRIS\r\nFullName: MARY KRIS A. BADILLO\r\nGender: Female\r\nGovernmentIdIssuedDate: April 24, 2014\r\nGovernmentIdNumber: 1298892\r\nGovernmentIdPlaceIssued: LUCENA CITY, QUEZON\r\nGovernmentIssuedId: PRC LICENSE\r\nGSIS: 02005228738\r\nHDMF: 1210-9745-6941\r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BADILLO\r\nMaidenName: \r\nMiddleName: ALMAREZ\r\nMobileNumber: 09164850075\r\nNationality: Filipino\r\nPermanentAddress1: 001\r\nPermanentAddress2: \r\nPermanentBarangay: CALUMPANG EAST\r\nPermanentCity: SAN LUIS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4210\r\nPhilhealth: 09-050369622-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 436-885-209-0000\r\nWeight: 65\r\nZipCode: 4210\r\n	admin	BasicInformation	1
768305	2025-03-12	10:36:56.1981899	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIBJO\r\nBasicInformationId: 0\r\nBirthDate: May 14, 1983\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lanie.bautista@deped.gov.ph\r\nExtensionName: \r\nFirstName: LANIE\r\nFullName: LANIE A. BAUTISTA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7863519\r\nLastName: BAUTISTA\r\nMaidenName: \r\nMiddleName: ARCOIREZ\r\nMobileNumber: 09267411920\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: EASTERN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: EASTERN\r\nTIN: \r\nWeight: 57\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768306	2025-03-12	10:36:56.2080146	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3734\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FRANCISCO\r\nFullName: FRANCISCO BALMES ARCOIREZ\r\nGender: Male\r\nLastName: ARCOIREZ\r\nMaidenName: \r\nMiddleName: BALMES\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
768307	2025-03-12	10:36:56.2080146	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3734\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FLORENCIA\r\nFullName: FLORENCIA OBLIGAR CHAVEZ\r\nGender: Female\r\nLastName: CHAVEZ\r\nMaidenName: \r\nMiddleName: OBLIGAR\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
768308	2025-03-12	10:36:56.2080146	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3734\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
768314	2025-03-12	10:40:33.3081424	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3734\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1990\r\nDateTo: 1996\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: HALIGUE SILANGAN ELEMENTARY SCHOOL\r\nYearGraduated: 1996\r\n	admin	EducationalBackgrounds	1
768315	2025-03-12	10:40:33.3124045	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3734\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 2000\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: STO. NINO NATIONAL HIGH SCHOOL\r\nYearGraduated: 2000\r\n	admin	EducationalBackgrounds	1
768316	2025-03-12	10:40:33.3164175	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3734\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2007\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: LIPA CITY COLLEGES\r\nYearGraduated: 2009\r\n	admin	EducationalBackgrounds	1
768317	2025-03-12	10:40:33.3256103	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3734\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2011\r\nDateTo: 2025\r\nEducationalAttainment: 42 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
768300	2025-03-12	10:31:12.6349500	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3733\r\nCourse: \r\nCourseId: 1344\r\nCourseOrMajor: \r\nDateFrom: 2023\r\nDateTo: 2025\r\nEducationalAttainment: 39 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: PACIFIC INTERCONTINENTAL COLLEGE\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
768301	2025-03-12	10:33:02.5870869	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3733\r\nDateOfExamination: March 25, 2018\r\nDateOfRelease: December 29, 2024\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: March 25, 2018\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1641287\r\nPlaceOfExamination: MANILA\r\nRating: 76\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
768302	2025-03-12	10:34:40.3221294	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3733\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,308.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
768303	2025-03-12	10:34:40.3310995	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3733\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,796.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
768304	2025-03-12	10:34:40.3450530	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3733\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
768309	2025-03-12	10:37:41.3633485	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3733\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,439.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
768310	2025-03-12	10:37:41.3683319	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3733\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 06, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 23,877.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
768311	2025-03-12	10:37:41.3733151	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3733\r\nCompanyInstitution: 51 TALK ONLINE EDUCATION\r\nExperienceId: 0\r\nFromDate: May 12, 2019\r\nIsGovernmentService: False\r\nMonthlySalary: 20,000.00\r\nPositionHeld: TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Temporary\r\nToDate: January 04, 2020\r\n	admin	Experiences	1
768312	2025-03-12	10:38:25.5707164	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3733\r\nCompanyInstitution: PRINCETON SCIENCE SCHOOL\r\nExperienceId: 0\r\nFromDate: January 15, 2016\r\nIsGovernmentService: False\r\nMonthlySalary: 16,000.00\r\nPositionHeld: TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: April 08, 2019\r\n	admin	Experiences	1
768313	2025-03-12	10:39:48.8920931	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MASTER CLASSES FOR GRADE 1 TEACHERS ACROSS ALL LEARNING AREAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768323	2025-03-12	10:42:32.5262228	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EMBRACING THE CULTURE OF RESEARCH: A DISTRICT VI IN-SERVICE TRAINING ENHANCING TEACHERS SKILLS IN WRITING ACTION RESEARCH THROUGH MICROSOFT 365\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768324	2025-03-12	10:43:14.7519899	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3733\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16400\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768325	2025-03-12	10:43:14.7599631	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3733\r\nEmployeeTrainingId: 0\r\nFromDate: December 11, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY - DISTRICT II\r\nStatus: \r\nToDate: December 11, 2024\r\nTrainingId: 16320\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768318	2025-03-12	10:40:33.3307226	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIBJO\r\nBasicInformationId: 3734\r\nBirthDate: May 14, 1983\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lanie.bautista@deped.gov.ph\r\nExtensionName: \r\nFirstName: LANIE\r\nFullName: LANIE A. BAUTISTA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7863519\r\nLastName: BAUTISTA\r\nMaidenName: \r\nMiddleName: ARCOIREZ\r\nMobileNumber: 09267411920\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: EASTERN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: EASTERN\r\nTIN: \r\nWeight: 57\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIBJO\r\nBasicInformationId: 3734\r\nBirthDate: May 14, 1983\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lanie.bautista@deped.gov.ph\r\nExtensionName: \r\nFirstName: LANIE\r\nFullName: LANIE A. BAUTISTA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7863519\r\nLastName: BAUTISTA\r\nMaidenName: \r\nMiddleName: ARCOIREZ\r\nMobileNumber: 09267411920\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: EASTERN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: EASTERN\r\nTIN: \r\nWeight: 57\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768319	2025-03-12	10:40:33.3357383	<Undetected>	Update	BasicInformationId: 3734\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3776\r\nExtensionName: \r\nFirstName: FRANCISCO\r\nFullName: FRANCISCO BALMES ARCOIREZ\r\nGender: Male\r\nLastName: ARCOIREZ\r\nMaidenName: \r\nMiddleName: BALMES\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3734\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3776\r\nExtensionName: \r\nFirstName: FRANCISCO\r\nFullName: FRANCISCO ARCOIREZ\r\nGender: Male\r\nLastName: ARCOIREZ\r\nMaidenName: \r\nMiddleName: BALMES\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
768320	2025-03-12	10:40:33.3397433	<Undetected>	Update	BasicInformationId: 3734\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3777\r\nExtensionName: \r\nFirstName: FLORENCIA\r\nFullName: FLORENCIA OBLIGAR CHAVEZ\r\nGender: Female\r\nLastName: CHAVEZ\r\nMaidenName: \r\nMiddleName: OBLIGAR\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3734\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3777\r\nExtensionName: \r\nFirstName: FLORENCIA\r\nFullName: FLORENCIA CHAVEZ\r\nGender: Female\r\nLastName: CHAVEZ\r\nMaidenName: \r\nMiddleName: OBLIGAR\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
768321	2025-03-12	10:40:33.3459560	<Undetected>	Update	BasicInformationId: 3734\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3531\r\n	BasicInformationId: 3734\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3531\r\n	admin	Questionnaires	1
768322	2025-03-12	10:42:09.6042057	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3734\r\nDateOfExamination: April 18, 2010\r\nDateOfRelease: April 05, 2019\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: April 18, 2010\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1068468\r\nPlaceOfExamination: IYAM, LUCENA CITY, QUEZON\r\nRating: 76.20\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS (LET)\r\n	admin	Eligibilities	1
768356	2025-03-12	11:09:33.4577755	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3734\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,733.00\r\nPositionHeld: TEACHER III W/S AL.ADJ.\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: March 12, 2025\r\n	admin	Experiences	1
768357	2025-03-12	11:09:33.4629767	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3734\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 33,183.00\r\nPositionHeld: TEACHER III W/S AL.ADJ.\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
768358	2025-03-12	11:09:33.4671583	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3734\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: November 03, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,633.00\r\nPositionHeld: TEACHER III W/STEP INCREMENT\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
768359	2025-03-12	11:09:33.4723835	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3734\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: November 02, 2023\r\n	admin	Experiences	1
768467	2025-03-12	12:00:51.7143644	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON ENHANCEMENT OF MULTI-HAZARD CONTINGENCY PLANS AND SCHOOL SAFETY PLANS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768326	2025-03-12	10:43:14.7649464	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3733\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY - DISTRICT VI\r\nStatus: \r\nToDate: January 24, 2024\r\nTrainingId: 16401\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768327	2025-03-12	10:44:38.6127617	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION FOCUS GROUP DISCUSSION OF TEACHERS ON THE REVISED CURRICULUM FOR KINDERGARTEN TEACHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768328	2025-03-12	10:48:54.1809496	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3733\r\nEmployeeTrainingId: 0\r\nFromDate: November 20, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 20, 2023\r\nTrainingId: 15303\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768329	2025-03-12	10:48:54.1849362	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3733\r\nEmployeeTrainingId: 0\r\nFromDate: April 22, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: April 22, 2023\r\nTrainingId: 16402\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768330	2025-03-12	10:48:54.1899197	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3733\r\nEmployeeTrainingId: 0\r\nFromDate: August 14, 2023\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 18, 2023\r\nTrainingId: 15574\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768331	2025-03-12	10:49:23.1976228	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3733\r\nSkillId: 0\r\nSkillName: MICROSOFT OFFICE LITERATE\r\n	admin	Skills	1
768332	2025-03-12	10:53:34.8908742	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: VILLA DE OCAMPO\r\nBarangay: GULOD ITAAS\r\nBasicInformationId: 0\r\nBirthDate: May 02, 1990\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: angelayvonne.cueto@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANGELA YVONNE\r\nFullName: ANGELA YVONNE F. CUETO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.59\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7400992\r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: FACTOLERIN\r\nMobileNumber: 09491316234\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: VILLA DE OCAMPO\r\nPermanentBarangay: GULOD ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768333	2025-03-12	10:53:34.9002225	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3735\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
768334	2025-03-12	10:55:28.9841204	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3735\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ADRIAN\r\nFullName: ADRIAN GONZALES CUETO\r\nGender: Male\r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: GONZALES\r\nOccupation: OFFICE STAFF\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768335	2025-03-12	10:55:28.9881072	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3735\r\nBirthDate: January 11, 2016\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: KHAYEN YSABELLE\r\nFullName: KHAYEN YSABELLE FACTOLERIN CUETO\r\nGender: Male\r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: FACTOLERIN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768336	2025-03-12	10:55:28.9980739	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3735\r\nBirthDate: July 15, 2020\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: KHAYDEN YZEKIELLE\r\nFullName: KHAYDEN YZEKIELLE FACTOLERIN CUETO\r\nGender: Male\r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: FACTOLERIN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768337	2025-03-12	10:55:29.0020604	<Undetected>	Update	BasicInformationId: 3735\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3532\r\n	BasicInformationId: 3735\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3532\r\n	admin	Questionnaires	1
768338	2025-03-12	10:57:16.6348480	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3735\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 2002\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: TOMASA C. PASIA MEMORIAL ELEMENTARY SCHOOL\r\nYearGraduated: 2002\r\n	admin	EducationalBackgrounds	1
768339	2025-03-12	10:57:16.6388345	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3735\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2002\r\nDateTo: 2006\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: CUENCA INSTITUTE\r\nYearGraduated: 2006\r\n	admin	EducationalBackgrounds	1
768340	2025-03-12	10:57:16.6488013	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3735\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2006\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: EARLY CHILDHOOD EDUCATION\r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
768341	2025-03-12	10:57:16.6537849	<Undetected>	Update	BasicInformationId: 3735\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3778\r\nExtensionName: \r\nFirstName: ADRIAN\r\nFullName: ADRIAN GONZALES CUETO\r\nGender: Male\r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: GONZALES\r\nOccupation: OFFICE STAFF\r\nRelationship: Husband\r\n	BasicInformationId: 3735\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3778\r\nExtensionName: \r\nFirstName: ADRIAN\r\nFullName: ADRIAN CUETO\r\nGender: Male\r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: GONZALES\r\nOccupation: OFFICE STAFF\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768342	2025-03-12	10:57:16.6647484	<Undetected>	Update	BasicInformationId: 3735\r\nBirthDate: January 11, 2016\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3779\r\nExtensionName: \r\nFirstName: KHAYEN YSABELLE\r\nFullName: KHAYEN YSABELLE FACTOLERIN CUETO\r\nGender: Male\r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: FACTOLERIN\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3735\r\nBirthDate: January 11, 2016\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3779\r\nExtensionName: \r\nFirstName: KHAYEN YSABELLE\r\nFullName: KHAYEN YSABELLE CUETO\r\nGender: Male\r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: FACTOLERIN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768343	2025-03-12	10:57:16.6836846	<Undetected>	Update	BasicInformationId: 3735\r\nBirthDate: July 15, 2020\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3780\r\nExtensionName: \r\nFirstName: KHAYDEN YZEKIELLE\r\nFullName: KHAYDEN YZEKIELLE FACTOLERIN CUETO\r\nGender: Male\r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: FACTOLERIN\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3735\r\nBirthDate: July 15, 2020\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3780\r\nExtensionName: \r\nFirstName: KHAYDEN YZEKIELLE\r\nFullName: KHAYDEN YZEKIELLE CUETO\r\nGender: Male\r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: FACTOLERIN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768344	2025-03-12	10:59:00.4037275	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: VILLA DE OCAMPO\r\nBarangay: GULOD ITAAS\r\nBasicInformationId: 3735\r\nBirthDate: May 02, 1990\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: angelayvonne.cueto@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANGELA YVONNE\r\nFullName: ANGELA YVONNE F. CUETO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.59\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7400992\r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: FACTOLERIN\r\nMobileNumber: 09491316234\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: VILLA DE OCAMPO\r\nPermanentBarangay: GULOD ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: VILLA DE OCAMPO\r\nBarangay: GULOD ITAAS\r\nBasicInformationId: 3735\r\nBirthDate: May 02, 1990\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: angelayvonne.cueto@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANGELA YVONNE\r\nFullName: ANGELA YVONNE F. CUETO\r\nGender: Female\r\nGovernmentIdIssuedDate: July 27, 2011\r\nGovernmentIdNumber: 1096785\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: 02004975909\r\nHDMF: 9161-1899-9798\r\nHeight: 1.59\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7400992\r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: FACTOLERIN\r\nMobileNumber: 09491316234\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: VILLA DE OCAMPO\r\nPermanentBarangay: GULOD ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050295165-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 409-332-105-0000\r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768345	2025-03-12	11:00:18.0679930	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3735\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09171428944\r\nExtensionName: \r\nFirstName: LEA\r\nLastName: AQUINO\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768346	2025-03-12	11:00:18.0758133	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3735\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09163109637\r\nExtensionName: \r\nFirstName: GEMMA \r\nLastName: DE TORRES\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768347	2025-03-12	11:00:18.0878135	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3735\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09192005204\r\nExtensionName: \r\nFirstName: LENY\r\nLastName: BOOL\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768348	2025-03-12	11:01:16.3893332	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3735\r\nDateOfExamination: March 04, 2011\r\nDateOfRelease: February 05, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: March 04, 2011\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1096785\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 76.4\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
768349	2025-03-12	11:05:02.0421652	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3735\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 13, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 30,597.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
768350	2025-03-12	11:05:02.0564185	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3735\r\nCompanyInstitution: GARDNER SCHOOL OF MULTIPLE INTELLIGENCES\r\nExperienceId: 0\r\nFromDate: March 25, 2014\r\nIsGovernmentService: False\r\nMonthlySalary: 9,500.00\r\nPositionHeld: TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: April 05, 2015\r\n	admin	Experiences	1
768351	2025-03-12	11:05:02.0604048	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3735\r\nCompanyInstitution: ST. THERESE OF THE CHILD JESUS MULTIPLE INTELLIGENCES SCHOOL\r\nExperienceId: 0\r\nFromDate: June 05, 2012\r\nIsGovernmentService: False\r\nMonthlySalary: 8,500.00\r\nPositionHeld: KINDER TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: March 24, 2014\r\n	admin	Experiences	1
768352	2025-03-12	11:05:02.0653882	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3735\r\nCompanyInstitution: WESTMEAD INTERNATIONAL SCHOOL\r\nExperienceId: 0\r\nFromDate: April 05, 2011\r\nIsGovernmentService: False\r\nMonthlySalary: 8,000.00\r\nPositionHeld: INSTRUCTOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: March 05, 2012\r\n	admin	Experiences	1
768353	2025-03-12	11:06:02.9887393	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2024 DISTRICT DOSCONFERENCE OF BASIC EDUCATION RESEARCHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768354	2025-03-12	11:07:19.0257893	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2024 IN SERVICE TRAINING FOR TEACHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768355	2025-03-12	11:08:26.6993071	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FIVE DAY SCHOOL IN SERVICE TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768378	2025-03-12	11:10:33.6039502	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT II TRAINING ON EARLY LANGUAGE LITERACY AND NUMERACY PROGRAM FOR K TO 3 TEACHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768379	2025-03-12	11:11:46.5403638	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 MIDYEAR IN-SERBICE TRAINING (INSET)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768381	2025-03-12	11:12:47.5069698	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3735\r\nEmployeeTrainingId: 0\r\nFromDate: November 12, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY - DISTRICT 2\r\nStatus: \r\nToDate: November 12, 2024\r\nTrainingId: 16403\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768382	2025-03-12	11:12:47.5109566	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3735\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: SDO BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16404\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768383	2025-03-12	11:12:47.5159401	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3735\r\nEmployeeTrainingId: 0\r\nFromDate: March 24, 2023\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: SDO BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: April 19, 2023\r\nTrainingId: 16405\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768384	2025-03-12	11:12:47.5209232	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3735\r\nEmployeeTrainingId: 0\r\nFromDate: March 04, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY - DISTRICT 2\r\nStatus: \r\nToDate: March 04, 2023\r\nTrainingId: 16406\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768385	2025-03-12	11:12:47.5259066	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3735\r\nEmployeeTrainingId: 0\r\nFromDate: February 06, 2023\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: SDO BATANGAS CITY \r\nStatus: \r\nToDate: February 10, 2023\r\nTrainingId: 16407\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768386	2025-03-12	11:13:42.9090135	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3735\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
768387	2025-03-12	11:13:42.9130000	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3735\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
768388	2025-03-12	11:13:42.9180574	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3735\r\nSkillId: 0\r\nSkillName: COMPUTER EDITING WORKS\r\n	admin	Skills	1
768389	2025-03-12	11:13:42.9270265	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3735\r\nOrganizationId: 0\r\nOrganizationName: GIRL SCOUT OF THE PHILIPPINES -  BATANGAS\r\n	admin	Organizations	1
768390	2025-03-12	11:13:42.9320100	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3735\r\nOrganizationId: 0\r\nOrganizationName: RED CROSS BATANGAS\r\n	admin	Organizations	1
768360	2025-03-12	11:09:33.4765743	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3734\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,798.00\r\nPositionHeld: TEACHER III W/S AL.ADJ.\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Job Order\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
768361	2025-03-12	11:09:33.4806303	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3734\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 28,276.00\r\nPositionHeld: TEACHER III W/S AL.ADJ.\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
768362	2025-03-12	11:09:33.4856381	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3734\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: November 03, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 26,754.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
768363	2025-03-12	11:09:33.4896445	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3734\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,889.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: November 02, 2020\r\n	admin	Experiences	1
768364	2025-03-12	11:09:33.4946658	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3734\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,038.00\r\nPositionHeld: TEACHER I W/S AL.ADJ.\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: July 14, 2019\r\n	admin	Experiences	1
768365	2025-03-12	11:09:33.4986718	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3734\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,437.00\r\nPositionHeld: TEACHER I W/S. AL.ADJ.\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
768366	2025-03-12	11:09:33.5036889	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3734\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,835.00\r\nPositionHeld: TEACHER I W/S AL.ADJ.\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
768367	2025-03-12	11:09:33.5076952	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3734\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 15, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,286.00\r\nPositionHeld: TEACHER I W/S TEP INCREMENT\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
768368	2025-03-12	11:09:33.5127207	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3734\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: TEACHER I W/S AL.ADJ.\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: July 14, 2016\r\n	admin	Experiences	1
768369	2025-03-12	11:09:33.5167272	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3734\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 15, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
768393	2025-03-12	11:30:19.7994765	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3736\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GIL\r\nFullName: GIL BALMES CAMPOSAGRADO\r\nGender: Male\r\nLastName: CAMPOSAGRADO\r\nMaidenName: \r\nMiddleName: BALMES\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768370	2025-03-12	11:09:33.5217350	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3734\r\nCompanyInstitution: NATIONAL STATISTICS OFFICE\r\nExperienceId: 0\r\nFromDate: May 25, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 10,000.00\r\nPositionHeld: MANUAL PROCESSOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: July 12, 2013\r\n	admin	Experiences	1
768371	2025-03-12	11:09:33.5257534	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3734\r\nCompanyInstitution: NATIONAL STATISTICS OFFICE\r\nExperienceId: 0\r\nFromDate: February 25, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 10,000.00\r\nPositionHeld: TEAM SUPERVISOR\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: May 23, 2013\r\n	admin	Experiences	1
768372	2025-03-12	11:09:33.5307699	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3734\r\nCompanyInstitution: DEPARTMENT OF EDUCATION (ALS)\r\nExperienceId: 0\r\nFromDate: January 02, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 5,000.00\r\nPositionHeld: INSTRUCTIONAL MANAGER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: October 31, 2013\r\n	admin	Experiences	1
768373	2025-03-12	11:09:33.5347764	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3734\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 07, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 17,099.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Substitute\r\nToDate: August 02, 2012\r\n	admin	Experiences	1
768374	2025-03-12	11:09:33.5397836	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3734\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: October 17, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 17,099.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Substitute\r\nToDate: December 15, 2011\r\n	admin	Experiences	1
768375	2025-03-12	11:09:33.5438134	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3734\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 09, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 15,649.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Substitute\r\nToDate: August 01, 2011\r\n	admin	Experiences	1
768376	2025-03-12	11:09:33.5488211	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3734\r\nCompanyInstitution: MOTHER CHIARA BIAGIOTTI SCHOOL\r\nExperienceId: 0\r\nFromDate: May 16, 2009\r\nIsGovernmentService: False\r\nMonthlySalary: 8,000.00\r\nPositionHeld: TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: March 31, 2011\r\n	admin	Experiences	1
768377	2025-03-12	11:09:33.5528270	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3734\r\nCompanyInstitution: MOTHER CHIARA BIAGIOTTI SCHOOL\r\nExperienceId: 0\r\nFromDate: November 17, 2008\r\nIsGovernmentService: False\r\nMonthlySalary: 8,000.00\r\nPositionHeld: TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: April 15, 2009\r\n	admin	Experiences	1
768380	2025-03-12	11:11:50.3018439	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON SCHOOL-BASED MANAGEMENT (SBM) FOR SCHOOL HEADS, SBM, COORDINATORS AND SGC CHAIRPERSONS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768391	2025-03-12	11:27:40.6903147	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: CONDE ITAAS\r\nBasicInformationId: 0\r\nBirthDate: January 06, 1987\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: melanie.camposagrado@deped.gov.ph\r\nExtensionName: \r\nFirstName: MELANIE\r\nFullName: MELANIE S. CAMPOSAGRADO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.7\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CAMPOSAGRADO\r\nMaidenName: \r\nMiddleName: SUAREZ\r\nMobileNumber: 09367531291\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: CONDE ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 1\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 1\r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768392	2025-03-12	11:27:40.7739297	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3736\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
768394	2025-03-12	11:30:19.8034630	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3736\r\nBirthDate: December 29, 2018\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: HANNAH GAILE\r\nFullName: HANNAH GAILE SUAREZ CAMPOSAGRADO\r\nGender: Male\r\nLastName: CAMPOSAGRADO\r\nMaidenName: \r\nMiddleName: SUAREZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768395	2025-03-12	11:30:19.8144267	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3736\r\nBirthDate: December 05, 2024\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GWEN AIREN\r\nFullName: GWEN AIREN SUAREZ CAMPOSAGRADO\r\nGender: Male\r\nLastName: CAMPOSAGRADO\r\nMaidenName: \r\nMiddleName: SUAREZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768396	2025-03-12	11:30:19.8194098	<Undetected>	Update	BasicInformationId: 3736\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3533\r\n	BasicInformationId: 3736\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3533\r\n	admin	Questionnaires	1
768397	2025-03-12	11:31:40.5845441	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: VIRTUAL IN-SERVICE TRAINING FOR TEACHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768398	2025-03-12	11:32:09.7697381	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: FIRST HONOR\r\nBasicInformationId: 3736\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 2000\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: CONDE  ITAAS ELEMENTARY SCHOOL\r\nYearGraduated: 2000\r\n	admin	EducationalBackgrounds	1
768399	2025-03-12	11:32:09.7807015	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: FIRST HONORABLE MENTION\r\nBasicInformationId: 3736\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2000\r\nDateTo: 2004\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: CONDE LABAC NATIONAL HIGH SCHOOL\r\nYearGraduated: 2004\r\n	admin	EducationalBackgrounds	1
768400	2025-03-12	11:32:09.7856848	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: SM SCHOLARSHIP FOUNDATION\r\nBasicInformationId: 3736\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 2004\r\nDateTo: 2008\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 2008\r\n	admin	EducationalBackgrounds	1
768401	2025-03-12	11:32:09.7936582	<Undetected>	Update	BasicInformationId: 3736\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3781\r\nExtensionName: \r\nFirstName: GIL\r\nFullName: GIL BALMES CAMPOSAGRADO\r\nGender: Male\r\nLastName: CAMPOSAGRADO\r\nMaidenName: \r\nMiddleName: BALMES\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3736\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3781\r\nExtensionName: \r\nFirstName: GIL\r\nFullName: GIL CAMPOSAGRADO\r\nGender: Male\r\nLastName: CAMPOSAGRADO\r\nMaidenName: \r\nMiddleName: BALMES\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768402	2025-03-12	11:32:09.7986415	<Undetected>	Update	BasicInformationId: 3736\r\nBirthDate: December 29, 2018\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3782\r\nExtensionName: \r\nFirstName: HANNAH GAILE\r\nFullName: HANNAH GAILE SUAREZ CAMPOSAGRADO\r\nGender: Male\r\nLastName: CAMPOSAGRADO\r\nMaidenName: \r\nMiddleName: SUAREZ\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3736\r\nBirthDate: December 29, 2018\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3782\r\nExtensionName: \r\nFirstName: HANNAH GAILE\r\nFullName: HANNAH GAILE CAMPOSAGRADO\r\nGender: Male\r\nLastName: CAMPOSAGRADO\r\nMaidenName: \r\nMiddleName: SUAREZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768403	2025-03-12	11:32:09.8036247	<Undetected>	Update	BasicInformationId: 3736\r\nBirthDate: December 05, 2024\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3783\r\nExtensionName: \r\nFirstName: GWEN AIREN\r\nFullName: GWEN AIREN SUAREZ CAMPOSAGRADO\r\nGender: Male\r\nLastName: CAMPOSAGRADO\r\nMaidenName: \r\nMiddleName: SUAREZ\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3736\r\nBirthDate: December 05, 2024\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3783\r\nExtensionName: \r\nFirstName: GWEN AIREN\r\nFullName: GWEN AIREN CAMPOSAGRADO\r\nGender: Male\r\nLastName: CAMPOSAGRADO\r\nMaidenName: \r\nMiddleName: SUAREZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768404	2025-03-12	11:33:55.7390353	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: THE IMPLEMENTATION OF CYCLE OF PREVENTION INTERVENTION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768405	2025-03-12	11:35:09.5311407	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3736\r\nCourse: \r\nCourseId: 1284\r\nCourseOrMajor: \r\nDateFrom: 2014\r\nDateTo: 2017\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2017\r\n	admin	EducationalBackgrounds	1
768406	2025-03-12	11:35:54.5706542	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: GOING THE DISTANCE : ONLINE DELIVERY OF PREVENTIVE DRUG EDUCATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768408	2025-03-12	11:37:10.9304011	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3734\r\nEmployeeTrainingId: 0\r\nFromDate: February 02, 2022\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: February 02, 2022\r\nTrainingId: 16408\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768407	2025-03-12	11:37:04.2094965	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: CONDE ITAAS\r\nBasicInformationId: 3736\r\nBirthDate: January 06, 1987\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: melanie.camposagrado@deped.gov.ph\r\nExtensionName: \r\nFirstName: MELANIE\r\nFullName: MELANIE S. CAMPOSAGRADO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.7\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CAMPOSAGRADO\r\nMaidenName: \r\nMiddleName: SUAREZ\r\nMobileNumber: 09367531291\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: CONDE ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 1\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 1\r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: CONDE ITAAS\r\nBasicInformationId: 3736\r\nBirthDate: January 06, 1987\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: melanie.camposagrado@deped.gov.ph\r\nExtensionName: \r\nFirstName: MELANIE\r\nFullName: MELANIE S. CAMPOSAGRADO\r\nGender: Female\r\nGovernmentIdIssuedDate: December 18, 2023\r\nGovernmentIdNumber: 14026606\r\nGovernmentIdPlaceIssued: STA. ROSA LAGUNA\r\nGovernmentIssuedId: PRC LICENSE\r\nGSIS: 02004190805\r\nHDMF: 1211-6938-6108\r\nHeight: 1.7\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CAMPOSAGRADO\r\nMaidenName: \r\nMiddleName: SUAREZ\r\nMobileNumber: 09367531291\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: CONDE ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 1\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050226285-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-2026227-9\r\nStreetName: PUROK 1\r\nTIN: 274-886-989-0000\r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768413	2025-03-12	11:38:41.8905921	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3736\r\nCharacterReferenceId: 0\r\nCompanyAddress: TULO 1, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09106986929\r\nExtensionName: \r\nFirstName: MARIFE\r\nLastName: FRANE\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768414	2025-03-12	11:38:41.9055421	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3736\r\nCharacterReferenceId: 0\r\nCompanyAddress: AMBULONG, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09151454687\r\nExtensionName: \r\nFirstName: MARITES\r\nLastName: TARCELO\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768415	2025-03-12	11:38:41.9115221	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3736\r\nCharacterReferenceId: 0\r\nCompanyAddress: DALIG, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09062884095\r\nExtensionName: \r\nFirstName: LOIDA\r\nLastName: ALUAN\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768416	2025-03-12	11:39:36.8070415	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3736\r\nDateOfExamination: April 01, 2009\r\nDateOfRelease: June 01, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: April 01, 2009\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1026606\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 81.6\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
768433	2025-03-12	11:48:27.2232046	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3736\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 33,183.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
768434	2025-03-12	11:48:27.2271914	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3736\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 33,183.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
768435	2025-03-12	11:48:27.2321747	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3736\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: March 11, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,633.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
768436	2025-03-12	11:48:27.2381546	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3736\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: February 11, 2023\r\n	admin	Experiences	1
768437	2025-03-12	11:48:27.2431380	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3736\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,798.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
768438	2025-03-12	11:48:27.2481213	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3736\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 28,276.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
768409	2025-03-12	11:37:10.9354818	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3734\r\nEmployeeTrainingId: 0\r\nFromDate: July 25, 2022\r\nHours: 56\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 02, 2022\r\nTrainingId: 16397\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768410	2025-03-12	11:37:10.9415350	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3734\r\nEmployeeTrainingId: 0\r\nFromDate: August 30, 2021\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION CENTRAL OFFICE\r\nStatus: \r\nToDate: September 03, 2021\r\nTrainingId: 16409\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768411	2025-03-12	11:37:10.9465428	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3734\r\nEmployeeTrainingId: 0\r\nFromDate: September 23, 2021\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOL HEALTH DIVISION\r\nStatus: \r\nToDate: September 23, 2021\r\nTrainingId: 16410\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768412	2025-03-12	11:37:10.9505721	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3734\r\nEmployeeTrainingId: 0\r\nFromDate: August 26, 2021\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOL HEALTH DIVISION\r\nStatus: \r\nToDate: August 26, 2021\r\nTrainingId: 16411\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768417	2025-03-12	11:42:38.9450715	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3734\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
768418	2025-03-12	11:42:38.9551642	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3734\r\nSkillId: 0\r\nSkillName: SPORTS ENTHUSIAST\r\n	admin	Skills	1
768419	2025-03-12	11:42:38.9601808	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3734\r\nRecognitionId: 0\r\nRecognitionName: REGIONAL ATHLETIC ASSOCIATION MEET OFFICIATING OFFICIAL 2023\r\n	admin	Recognitions	1
768420	2025-03-12	11:42:38.9682456	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3734\r\nRecognitionId: 0\r\nRecognitionName: BEST RESEARCH BULLETIN\r\n	admin	Recognitions	1
768421	2025-03-12	11:42:38.9732627	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3734\r\nRecognitionId: 0\r\nRecognitionName: OUTSTANDING TEACHER FRONTLINER-FINALIST\r\n	admin	Recognitions	1
768422	2025-03-12	11:42:38.9782786	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3734\r\nOrganizationId: 0\r\nOrganizationName: PAMBANSANG SAMAHAN NG MGA TAGAMASID AT TAGAPAGTAGUYOD SA FILIPINO (PASATAF)\r\n	admin	Organizations	1
768423	2025-03-12	11:42:38.9833225	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3734\r\nOrganizationId: 0\r\nOrganizationName: BOY SCOUTS OF THE PHILIPPINES \r\n	admin	Organizations	1
768424	2025-03-12	11:42:38.9875802	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3734\r\nOrganizationId: 0\r\nOrganizationName: PHILIPPINE NATIONAL RED CROSS\r\n	admin	Organizations	1
768425	2025-03-12	11:42:38.9925978	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3734\r\nOrganizationId: 0\r\nOrganizationName: KAPILI WOMEN'S GROUP\r\n	admin	Organizations	1
768426	2025-03-12	11:42:38.9966298	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3734\r\nOrganizationId: 0\r\nOrganizationName: LIPA CITY COLLEGES ALUMNI ASSOCIATION\r\n	admin	Organizations	1
768427	2025-03-12	11:42:39.0016572	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3734\r\nOrganizationId: 0\r\nOrganizationName: DEPARTMENT OF EDUCATION\r\n	admin	Organizations	1
768428	2025-03-12	11:42:39.0066725	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3734\r\nOrganizationId: 0\r\nOrganizationName: BARANGAY HEALTH EMERGENCY RESPONSE TEAM\r\n	admin	Organizations	1
768429	2025-03-12	11:45:13.9382648	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3734\r\nCharacterReferenceId: 0\r\nCompanyAddress: HALIGUE SILANGAN, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09176519008\r\nExtensionName: \r\nFirstName: DANILO\r\nLastName: BALMES\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768430	2025-03-12	11:45:13.9467543	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3734\r\nCharacterReferenceId: 0\r\nCompanyAddress: BOLBOK, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09171428944\r\nExtensionName: \r\nFirstName: LEA\r\nLastName: AQUINO\r\nMiddleName: C.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768431	2025-03-12	11:45:13.9517855	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3734\r\nCharacterReferenceId: 0\r\nCompanyAddress: CONDE ITAAS, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09163109637\r\nExtensionName: \r\nFirstName: GEMMA \r\nLastName: DE TORRES\r\nMiddleName: C. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768439	2025-03-12	11:48:27.2531047	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3736\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: March 11, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 26,754.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
768468	2025-03-12	12:01:58.0841334	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3736\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16357\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768432	2025-03-12	11:48:06.7691086	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIBJO\r\nBasicInformationId: 3734\r\nBirthDate: May 14, 1983\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lanie.bautista@deped.gov.ph\r\nExtensionName: \r\nFirstName: LANIE\r\nFullName: LANIE A. BAUTISTA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7863519\r\nLastName: BAUTISTA\r\nMaidenName: \r\nMiddleName: ARCOIREZ\r\nMobileNumber: 09267411920\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: EASTERN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: EASTERN\r\nTIN: \r\nWeight: 57\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIBJO\r\nBasicInformationId: 3734\r\nBirthDate: May 14, 1983\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lanie.bautista@deped.gov.ph\r\nExtensionName: \r\nFirstName: LANIE\r\nFullName: LANIE A. BAUTISTA\r\nGender: Female\r\nGovernmentIdIssuedDate: September 01, 2010\r\nGovernmentIdNumber: 1068486\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: 02004341053\r\nHDMF: 1210-5100-3906\r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7863519\r\nLastName: BAUTISTA\r\nMaidenName: \r\nMiddleName: ARCOIREZ\r\nMobileNumber: 09267411920\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: EASTERN\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050120992-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1218556-8\r\nStreetName: EASTERN\r\nTIN: 937-552-086-0000\r\nWeight: 57\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768448	2025-03-12	11:53:26.9671609	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 24/12\r\nAddress2: MERCEDES HOMES\r\nBarangay: SORO-SORO ILAYA\r\nBasicInformationId: 0\r\nBirthDate: May 20, 1995\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mhatiel.garcia@deped.gov.ph\r\nExtensionName: \r\nFirstName: MHATIEL\r\nFullName: MHATIEL G. ATIENZA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7406787\r\nLastName: ATIENZA\r\nMaidenName: \r\nMiddleName: GARCIA\r\nMobileNumber: 09988415502\r\nNationality: Filipino\r\nPermanentAddress1: 24/12\r\nPermanentAddress2: MERCEDES HOMES\r\nPermanentBarangay: SORO-SORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 47\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768449	2025-03-12	11:53:26.9822393	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3737\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOHN ERIC\r\nFullName: JOHN ERIC MACUHA ATIENZA\r\nGender: Male\r\nLastName: ATIENZA\r\nMaidenName: \r\nMiddleName: MACUHA\r\nOccupation: SEAFERER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768450	2025-03-12	11:53:26.9822393	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3737\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MANOLO\r\nFullName: MANOLO MERCADO GARCIA\r\nGender: Male\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: MERCADO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
768451	2025-03-12	11:53:26.9822393	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3737\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LILIBETH\r\nFullName: LILIBETH PAGCALIWAGAN MENDOZA\r\nGender: Female\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
768452	2025-03-12	11:53:26.9822393	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3737\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
768458	2025-03-12	12:00:40.7177960	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3737\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: JULIAN A. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nYearGraduated: 2007\r\n	admin	EducationalBackgrounds	1
768459	2025-03-12	12:00:40.7231421	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3737\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2007\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
768460	2025-03-12	12:00:40.7387276	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: WITH DISTINCTION\r\nBasicInformationId: 3737\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2011\r\nDateTo: 2015\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: COLEGIO NG LUNGSOD NG BATANGAS \r\nYearGraduated: 2015\r\n	admin	EducationalBackgrounds	1
768440	2025-03-12	11:48:27.2580879	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3736\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,889.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: February 11, 2020\r\n	admin	Experiences	1
768441	2025-03-12	11:48:27.2626242	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3736\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,327.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
768442	2025-03-12	11:49:41.9863591	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3736\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 07, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,698.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
768443	2025-03-12	11:49:41.9913425	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3736\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,437.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: January 07, 2018\r\n	admin	Experiences	1
768444	2025-03-12	11:50:51.3155187	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3736\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,853.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
768445	2025-03-12	11:50:51.3195053	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3736\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,286.00\r\nPositionHeld: TEACHER  I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
768446	2025-03-12	11:52:51.4515490	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3736\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 07, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: February 07, 2015\r\n	admin	Experiences	1
768447	2025-03-12	11:52:51.4565324	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3736\r\nCompanyInstitution: LOCAL SCHOOL BOARD\r\nExperienceId: 0\r\nFromDate: January 24, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 11,666.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 12, 2025\r\n	admin	Experiences	1
768453	2025-03-12	11:54:34.0844435	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3736\r\nCompanyInstitution: IMMACULATE HEART OF MARY LEARNING CENTER AND SCHOOL OF VALUES\r\nExperienceId: 0\r\nFromDate: June 01, 2009\r\nIsGovernmentService: False\r\nMonthlySalary: 12,000.00\r\nPositionHeld: ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: March 30, 2011\r\n	admin	Experiences	1
768454	2025-03-12	11:57:10.6768494	<Undetected>	Update	BasicInformationId: 3736\r\nCompanyInstitution: LOCAL SCHOOL BOARD\r\nExperienceId: 11757\r\nFromDate: January 24, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 11,666.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 12, 2025\r\n	BasicInformationId: 3736\r\nCompanyInstitution: LOCAL SCHOOL BOARD\r\nExperienceId: 11757\r\nFromDate: January 24, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 11,666.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2025\r\n	admin	Experiences	1
768455	2025-03-12	11:59:06.1959365	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2024 TRAINING/WORKSHOP ONN THE DEVELOPMENT OF CONTEXTUALIZED LEARNING RESOURCES/MATERIALS IN ALL LEARNING AREAS & INCLUSICE EDUCATION FOR THE MATATAG CURRICULUM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768456	2025-03-12	11:59:30.0856989	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3736\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16338\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768461	2025-03-12	12:00:40.7535755	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3737\r\nCourse: \r\nCourseId: 1333\r\nCourseOrMajor: \r\nDateFrom: 2018\r\nDateTo: 2021\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2021\r\n	admin	EducationalBackgrounds	1
768462	2025-03-12	12:00:40.7689882	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 24/12\r\nAddress2: MERCEDES HOMES\r\nBarangay: SORO-SORO ILAYA\r\nBasicInformationId: 3737\r\nBirthDate: May 20, 1995\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mhatiel.garcia@deped.gov.ph\r\nExtensionName: \r\nFirstName: MHATIEL\r\nFullName: MHATIEL G. ATIENZA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7406787\r\nLastName: ATIENZA\r\nMaidenName: \r\nMiddleName: GARCIA\r\nMobileNumber: 09988415502\r\nNationality: Filipino\r\nPermanentAddress1: 24/12\r\nPermanentAddress2: MERCEDES HOMES\r\nPermanentBarangay: SORO-SORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 47\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 24/12\r\nAddress2: MERCEDES HOMES\r\nBarangay: SORO-SORO ILAYA\r\nBasicInformationId: 3737\r\nBirthDate: May 20, 1995\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mhatiel.garcia@deped.gov.ph\r\nExtensionName: \r\nFirstName: MHATIEL\r\nFullName: MHATIEL G. ATIENZA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7406787\r\nLastName: ATIENZA\r\nMaidenName: \r\nMiddleName: GARCIA\r\nMobileNumber: 09988415502\r\nNationality: Filipino\r\nPermanentAddress1: 24/12\r\nPermanentAddress2: MERCEDES HOMES\r\nPermanentBarangay: SORO-SORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 47\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768463	2025-03-12	12:00:40.7767191	<Undetected>	Update	BasicInformationId: 3737\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3784\r\nExtensionName: \r\nFirstName: JOHN ERIC\r\nFullName: JOHN ERIC MACUHA ATIENZA\r\nGender: Male\r\nLastName: ATIENZA\r\nMaidenName: \r\nMiddleName: MACUHA\r\nOccupation: SEAFERER\r\nRelationship: Husband\r\n	BasicInformationId: 3737\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3784\r\nExtensionName: \r\nFirstName: JOHN ERIC\r\nFullName: JOHN ERIC ATIENZA\r\nGender: Male\r\nLastName: ATIENZA\r\nMaidenName: \r\nMiddleName: MACUHA\r\nOccupation: SEAFERER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768464	2025-03-12	12:00:40.7817286	<Undetected>	Update	BasicInformationId: 3737\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3785\r\nExtensionName: \r\nFirstName: MANOLO\r\nFullName: MANOLO MERCADO GARCIA\r\nGender: Male\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: MERCADO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3737\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3785\r\nExtensionName: \r\nFirstName: MANOLO\r\nFullName: MANOLO GARCIA\r\nGender: Male\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: MERCADO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
768465	2025-03-12	12:00:40.7867764	<Undetected>	Update	BasicInformationId: 3737\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3786\r\nExtensionName: \r\nFirstName: LILIBETH\r\nFullName: LILIBETH PAGCALIWAGAN MENDOZA\r\nGender: Female\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3737\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3786\r\nExtensionName: \r\nFirstName: LILIBETH\r\nFullName: LILIBETH MENDOZA\r\nGender: Female\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
768466	2025-03-12	12:00:40.7917844	<Undetected>	Update	BasicInformationId: 3737\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3534\r\n	BasicInformationId: 3737\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3534\r\n	admin	Questionnaires	1
768471	2025-03-12	12:02:30.4311063	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3737\r\nDateOfExamination: September 27, 2015\r\nDateOfRelease: May 20, 2028\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 27, 2015\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1425977\r\nPlaceOfExamination: LUCENA CITY, QUEZON\r\nRating: 78.0\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
768469	2025-03-12	12:01:58.0921069	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3736\r\nEmployeeTrainingId: 0\r\nFromDate: October 27, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: October 27, 2023\r\nTrainingId: 16413\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768470	2025-03-12	12:01:58.0970901	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3736\r\nEmployeeTrainingId: 0\r\nFromDate: April 10, 2022\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: SDO BATANGAS CITY\r\nStatus: \r\nToDate: July 10, 2022\r\nTrainingId: 16007\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768472	2025-03-12	12:02:54.4823919	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3736\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
768473	2025-03-12	12:02:54.4933553	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3736\r\nSkillId: 0\r\nSkillName: READING BOOKS\r\n	admin	Skills	1
768474	2025-03-12	12:02:54.4973416	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3736\r\nSkillId: 0\r\nSkillName: DRAWING\r\n	admin	Skills	1
768475	2025-03-12	12:02:54.5023253	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3736\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS RESEARCHERS GROUP\r\n	admin	Organizations	1
768476	2025-03-12	12:02:54.5112949	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3736\r\nOrganizationId: 0\r\nOrganizationName: ASCENDES ASIA INTERNATIONAL CLUB\r\n	admin	Organizations	1
768477	2025-03-12	13:16:04.2065154	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: BUKLOD 1\r\nBarangay: DUMANTAY\r\nBasicInformationId: 0\r\nBirthDate: July 06, 1994\r\nBirthPlace: TAGUM DAVAO DEL NORTE\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: kjean.2013178@gmail.com\r\nExtensionName: \r\nFirstName: KAREN JEAN\r\nFullName: KAREN JEAN T. TEOVISIO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.59\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: TEOVISIO\r\nMaidenName: \r\nMiddleName: TAPANGAN\r\nMobileNumber: 09671988585\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: BUKLOD 1\r\nPermanentBarangay: DUMANTAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: EVERLASTING\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: EVERLASTING\r\nTIN: \r\nWeight: 51\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768478	2025-03-12	13:16:04.2903830	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3738\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
768479	2025-03-12	13:17:40.0107419	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3738\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: KEVIN GEORGE\r\nFullName: KEVIN GEORGE VASQUEZ TEOVISIO\r\nGender: Male\r\nLastName: TEOVISIO\r\nMaidenName: \r\nMiddleName: VASQUEZ\r\nOccupation: AIRCON TECHNICIAN\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768480	2025-03-12	13:17:40.0157251	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3738\r\nBirthDate: July 09, 2021\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: KAISA EVIA\r\nFullName: KAISA EVIA TAPANGAN TEOVISIO\r\nGender: Male\r\nLastName: TEOVISIO\r\nMaidenName: \r\nMiddleName: TAPANGAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768481	2025-03-12	13:17:40.0217052	<Undetected>	Update	BasicInformationId: 3738\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3535\r\n	BasicInformationId: 3738\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3535\r\n	admin	Questionnaires	1
768482	2025-03-12	13:18:54.9581180	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3738\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2002\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SIXTO BABAO ELEMENTARY SCHOOL\r\nYearGraduated: 2007\r\n	admin	EducationalBackgrounds	1
768483	2025-03-12	13:18:54.9621046	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3738\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2010\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: ALTERNATIVE LEARNING SYSTEM\r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
768484	2025-03-12	13:18:54.9720715	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3738\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 2013\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: ST. BRIDGET COLLEGE\r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
768839	2025-03-13	09:51:25.5334988	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPACITY BUILDING FOR GRADE 4 TO 6 TEACHERS ON THE IMPLEMENTATION OF END OF SCHOOL YEAR (EOSY)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768485	2025-03-12	13:18:54.9770546	<Undetected>	Update	BasicInformationId: 3738\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3787\r\nExtensionName: \r\nFirstName: KEVIN GEORGE\r\nFullName: KEVIN GEORGE VASQUEZ TEOVISIO\r\nGender: Male\r\nLastName: TEOVISIO\r\nMaidenName: \r\nMiddleName: VASQUEZ\r\nOccupation: AIRCON TECHNICIAN\r\nRelationship: Husband\r\n	BasicInformationId: 3738\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3787\r\nExtensionName: \r\nFirstName: KEVIN GEORGE\r\nFullName: KEVIN GEORGE TEOVISIO\r\nGender: Male\r\nLastName: TEOVISIO\r\nMaidenName: \r\nMiddleName: VASQUEZ\r\nOccupation: AIRCON TECHNICIAN\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768486	2025-03-12	13:18:54.9840313	<Undetected>	Update	BasicInformationId: 3738\r\nBirthDate: July 09, 2021\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3788\r\nExtensionName: \r\nFirstName: KAISA EVIA\r\nFullName: KAISA EVIA TAPANGAN TEOVISIO\r\nGender: Male\r\nLastName: TEOVISIO\r\nMaidenName: \r\nMiddleName: TAPANGAN\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3738\r\nBirthDate: July 09, 2021\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3788\r\nExtensionName: \r\nFirstName: KAISA EVIA\r\nFullName: KAISA EVIA TEOVISIO\r\nGender: Male\r\nLastName: TEOVISIO\r\nMaidenName: \r\nMiddleName: TAPANGAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768487	2025-03-12	13:19:49.7486364	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3738\r\nDateOfExamination: September 01, 2018\r\nDateOfRelease: July 06, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 01, 2018\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1692274\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 75.2\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
768488	2025-03-12	13:22:24.5979278	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: BUKLOD 1\r\nBarangay: DUMANTAY\r\nBasicInformationId: 3738\r\nBirthDate: July 06, 1994\r\nBirthPlace: TAGUM DAVAO DEL NORTE\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: kjean.2013178@gmail.com\r\nExtensionName: \r\nFirstName: KAREN JEAN\r\nFullName: KAREN JEAN T. TEOVISIO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.59\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: TEOVISIO\r\nMaidenName: \r\nMiddleName: TAPANGAN\r\nMobileNumber: 09671988585\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: BUKLOD 1\r\nPermanentBarangay: DUMANTAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: EVERLASTING\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: EVERLASTING\r\nTIN: \r\nWeight: 51\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: BUKLOD 1\r\nBarangay: DUMANTAY\r\nBasicInformationId: 3738\r\nBirthDate: July 06, 1994\r\nBirthPlace: TAGUM DAVAO DEL NORTE\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: kjean.2013178@gmail.com\r\nExtensionName: \r\nFirstName: KAREN JEAN\r\nFullName: KAREN JEAN T. TEOVISIO\r\nGender: Female\r\nGovernmentIdIssuedDate: September 01, 2018\r\nGovernmentIdNumber: 1692274\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: 02006517056\r\nHDMF: 1212-3784-2795\r\nHeight: 1.59\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: TEOVISIO\r\nMaidenName: \r\nMiddleName: TAPANGAN\r\nMobileNumber: 09671988585\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: BUKLOD 1\r\nPermanentBarangay: DUMANTAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: EVERLASTING\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050551065-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-4082998-0\r\nStreetName: EVERLASTING\r\nTIN: 375-708-001-0000\r\nWeight: 51\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768489	2025-03-12	13:26:10.1330917	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3737\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,733.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: March 12, 2025\r\n	admin	Experiences	1
768490	2025-03-12	13:26:10.1403691	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3737\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: September 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 33,183.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
768491	2025-03-12	13:26:10.1443822	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3737\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 31,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: August 31, 2024\r\n	admin	Experiences	1
768492	2025-03-12	13:26:10.1494312	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3737\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
768493	2025-03-12	13:26:10.1534434	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3737\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 12, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 28,276.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
768516	2025-03-12	13:36:53.7451797	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3738\r\nEmployeeTrainingId: 0\r\nFromDate: May 13, 2024\r\nHours: 112\r\nNatureOfParticipation: \r\nSponsoringAgency: STAIRWAY CHILD E-LEARNING PLATFORM\r\nStatus: \r\nToDate: June 30, 2024\r\nTrainingId: 16369\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768494	2025-03-12	13:26:10.1584599	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3737\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: April 06, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 24,161.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: August 31, 2021\r\n	admin	Experiences	1
768495	2025-03-12	13:26:10.1624999	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3737\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 23,877.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 03, 2021\r\n	admin	Experiences	1
768496	2025-03-12	13:26:10.1675148	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3737\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,316.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
768497	2025-03-12	13:26:10.1715277	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3737\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
768498	2025-03-12	13:26:10.1766495	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3737\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: April 06, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
768499	2025-03-12	13:26:10.1806911	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3737\r\nCompanyInstitution: ST. THERESE OF THE CHILD JESUS MULTIPLE INTELIGENCE SCHOOL\r\nExperienceId: 0\r\nFromDate: January 05, 2015\r\nIsGovernmentService: False\r\nMonthlySalary: 7,000.00\r\nPositionHeld: ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: January 05, 2018\r\n	admin	Experiences	1
768508	2025-03-12	13:31:07.3350045	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ENHANCING THE CAPABILITY OF SCHOOL HEADS AND TEACHERS IN THE IMPLEMENTATION OF PROFESSIONAL PROGRAM VIA SCHOOL LEARNING ACTION CELL BATCH 2-CLUSTER1 (DISTRICT 2)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768519	2025-03-12	13:38:59.3563830	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2021 DIVISION CONFERENCE OF BASIC EDUCATION RESEARCHERS (DCBER) WITH THE THEME "COPING, EMBRACING AND TRANSITINONING EDUCATION ON A POST COVID GENERATION"\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768531	2025-03-12	13:43:12.7958195	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2021 DIVISION CONFERENCE OF BASIG EDUCATION RESEARCHERS (DCBER) WITH THE THEME "COPING, EMBRACING AND TRANSFORMING EDUCATION IN A POST COVID GRENERATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768536	2025-03-12	13:47:03.2963002	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3737\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16319\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768537	2025-03-12	13:47:03.3013595	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3737\r\nEmployeeTrainingId: 0\r\nFromDate: August 14, 2023\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 18, 2023\r\nTrainingId: 15773\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768538	2025-03-12	13:47:03.3063772	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3737\r\nEmployeeTrainingId: 0\r\nFromDate: July 25, 2022\r\nHours: 56\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 01, 2022\r\nTrainingId: 16415\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768539	2025-03-12	13:47:03.3114077	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3737\r\nEmployeeTrainingId: 0\r\nFromDate: September 06, 2022\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: October 06, 2022\r\nTrainingId: 15882\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768500	2025-03-12	13:26:26.2289009	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3738\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 07, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 37,434.00\r\nPositionHeld: TEACHER 1\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 14-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
768501	2025-03-12	13:26:26.2328876	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3738\r\nCompanyInstitution: SUNHILL DEVELOPMENTAL EDUCATION, INC.\r\nExperienceId: 0\r\nFromDate: June 18, 2024\r\nIsGovernmentService: False\r\nMonthlySalary: 16,000.00\r\nPositionHeld: SPECIAL EDUCATION TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Temporary\r\nToDate: July 16, 2024\r\n	admin	Experiences	1
768502	2025-03-12	13:26:26.2388676	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3738\r\nCompanyInstitution: SUNHILL DEVELOPMENTAL EDUCATION, INC.\r\nExperienceId: 0\r\nFromDate: September 01, 2022\r\nIsGovernmentService: False\r\nMonthlySalary: 16,000.00\r\nPositionHeld: SPECIAL EDUCATION TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: June 15, 2023\r\n	admin	Experiences	1
768503	2025-03-12	13:26:26.2428543	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3738\r\nCompanyInstitution: INSTITUTION FOR DEVELOPMENTAL EDUCATION AND ADVANCEMENT\r\nExperienceId: 0\r\nFromDate: September 01, 2018\r\nIsGovernmentService: False\r\nMonthlySalary: 12,000.00\r\nPositionHeld: SPECIAL EDUCATION TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: September 07, 2020\r\n	admin	Experiences	1
768504	2025-03-12	13:28:28.8964633	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3738\r\nCharacterReferenceId: 0\r\nCompanyAddress: DUMUCLAY EAST BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175786698\r\nExtensionName: \r\nFirstName: APRIL\r\nLastName: PICAR\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768505	2025-03-12	13:28:28.9034398	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3738\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN WEST BATANGAS CITY\r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: BRIANNE\r\nLastName: TENORIO\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768506	2025-03-12	13:28:28.9074263	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3738\r\nCharacterReferenceId: 0\r\nCompanyAddress: LIBJO CENTRAL BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09688960110\r\nExtensionName: \r\nFirstName: LEANICA\r\nLastName: COLLERA\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768507	2025-03-12	13:29:39.1450079	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPABILITY AND BUILDING FOR SPECIAL EDUCATION AND RECEIVING TEACHERS ON\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768509	2025-03-12	13:31:50.8068344	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL DIVISION OF BATANGAS CITY - DISTRICT II - IN-SERVICE EDUCATION AND TRAINING (INSET)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768510	2025-03-12	13:32:48.2392668	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3738\r\nEmployeeTrainingId: 0\r\nFromDate: December 05, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOL DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: December 07, 2024\r\nTrainingId: 16414\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768511	2025-03-12	13:32:48.2498121	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3738\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOL DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16416\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768512	2025-03-12	13:33:54.0958665	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MOVING FROM THRIVING TO SURVIVING: LIVING WITH AUTISM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768513	2025-03-12	13:34:56.7097238	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CHILD PROTECTION E-LEARNING COURSE FOR EDUCATORS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768514	2025-03-12	13:36:17.5352354	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INCREASING PARTICIPATION OF AUTISTIC/NEURODIVERSE LEARNERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768515	2025-03-12	13:36:53.7401964	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3738\r\nEmployeeTrainingId: 0\r\nFromDate: April 22, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: OPEN ARMS ORGANIZATION\r\nStatus: \r\nToDate: April 22, 2024\r\nTrainingId: 16417\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768517	2025-03-12	13:36:53.7501631	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3738\r\nEmployeeTrainingId: 0\r\nFromDate: July 25, 2023\r\nHours: 1\r\nNatureOfParticipation: \r\nSponsoringAgency: SPED SUMMIT\r\nStatus: \r\nToDate: July 25, 2023\r\nTrainingId: 16419\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768518	2025-03-12	13:37:10.5757627	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3738\r\nSkillId: 0\r\nSkillName: MS OFFICES\r\n	admin	Skills	1
768520	2025-03-12	13:39:16.2912423	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: DUMUCLAY SOUTH\r\nBasicInformationId: 0\r\nBirthDate: December 14, 1978\r\nBirthPlace: SAN PABLO CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: robbie.alinea@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROBBIE\r\nFullName: ROBBIE A. SAGAYNO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SAGAYNO\r\nMaidenName: \r\nMiddleName: ALINEA\r\nMobileNumber: 09165903742\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: DUMUCLAY SOUTH\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 48\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768521	2025-03-12	13:39:16.3012770	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3739\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
768522	2025-03-12	13:41:02.9133028	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3739\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DEMSON\r\nFullName: DEMSON GARCIA SAGAYNO\r\nGender: Male\r\nLastName: SAGAYNO\r\nMaidenName: \r\nMiddleName: GARCIA\r\nOccupation: CONTRUCTOR/FOREMAN\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768523	2025-03-12	13:41:02.9182876	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3739\r\nBirthDate: September 18, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JACOB HEZEKIAH\r\nFullName: JACOB HEZEKIAH ALINEA CASTILLO\r\nGender: Male\r\nLastName: CASTILLO\r\nMaidenName: \r\nMiddleName: ALINEA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768524	2025-03-12	13:41:02.9282541	<Undetected>	Update	BasicInformationId: 3739\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3536\r\n	BasicInformationId: 3739\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3536\r\n	admin	Questionnaires	1
768525	2025-03-12	13:43:13.3232847	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3739\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1988\r\nDateTo: 1994\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: MABINI CENTRAL SCHOOL\r\nYearGraduated: 1994\r\n	admin	EducationalBackgrounds	1
768526	2025-03-12	13:43:13.3282678	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3739\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1995\r\nDateTo: 1998\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAINT FRANCIS ACADEMY\r\nYearGraduated: 1998\r\n	admin	EducationalBackgrounds	1
768527	2025-03-12	13:43:13.3362415	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3739\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1998\r\nDateTo: 2008\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 2008\r\n	admin	EducationalBackgrounds	1
768528	2025-03-12	13:43:13.3491978	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3739\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2013\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: ADMINISTRATION\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
768529	2025-03-12	13:43:13.3681344	<Undetected>	Update	BasicInformationId: 3739\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3789\r\nExtensionName: \r\nFirstName: DEMSON\r\nFullName: DEMSON GARCIA SAGAYNO\r\nGender: Male\r\nLastName: SAGAYNO\r\nMaidenName: \r\nMiddleName: GARCIA\r\nOccupation: CONTRUCTOR/FOREMAN\r\nRelationship: Husband\r\n	BasicInformationId: 3739\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3789\r\nExtensionName: \r\nFirstName: DEMSON\r\nFullName: DEMSON SAGAYNO\r\nGender: Male\r\nLastName: SAGAYNO\r\nMaidenName: \r\nMiddleName: GARCIA\r\nOccupation: CONTRUCTOR/FOREMAN\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768530	2025-03-12	13:43:13.3761079	<Undetected>	Update	BasicInformationId: 3739\r\nBirthDate: September 18, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3790\r\nExtensionName: \r\nFirstName: JACOB HEZEKIAH\r\nFullName: JACOB HEZEKIAH ALINEA CASTILLO\r\nGender: Male\r\nLastName: CASTILLO\r\nMaidenName: \r\nMiddleName: ALINEA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3739\r\nBirthDate: September 18, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3790\r\nExtensionName: \r\nFirstName: JACOB HEZEKIAH\r\nFullName: JACOB HEZEKIAH CASTILLO\r\nGender: Male\r\nLastName: CASTILLO\r\nMaidenName: \r\nMiddleName: ALINEA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768532	2025-03-12	13:45:07.6619804	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: DUMUCLAY SOUTH\r\nBasicInformationId: 3739\r\nBirthDate: December 14, 1978\r\nBirthPlace: SAN PABLO CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: robbie.alinea@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROBBIE\r\nFullName: ROBBIE A. SAGAYNO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SAGAYNO\r\nMaidenName: \r\nMiddleName: ALINEA\r\nMobileNumber: 09165903742\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: DUMUCLAY SOUTH\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 48\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: DUMUCLAY SOUTH\r\nBasicInformationId: 3739\r\nBirthDate: December 14, 1978\r\nBirthPlace: SAN PABLO CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: robbie.alinea@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROBBIE\r\nFullName: ROBBIE A. SAGAYNO\r\nGender: Female\r\nGovernmentIdIssuedDate: November 18, 2002\r\nGovernmentIdNumber: 0781933\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02004128970\r\nHDMF: 1210-3975-6418\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SAGAYNO\r\nMaidenName: \r\nMiddleName: ALINEA\r\nMobileNumber: 09165903742\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: DUMUCLAY SOUTH\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025223257-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 411-561-253-0000\r\nWeight: 48\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768533	2025-03-12	13:46:52.3760971	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3739\r\nCharacterReferenceId: 0\r\nCompanyAddress: CONDE ITAAS, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09151454687\r\nExtensionName: \r\nFirstName: MARITES\r\nLastName: TARCELO\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768534	2025-03-12	13:46:52.3850670	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3739\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN WEST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09189649408\r\nExtensionName: \r\nFirstName: LENY\r\nLastName: BOOL\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768535	2025-03-12	13:46:52.3890542	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3739\r\nCharacterReferenceId: 0\r\nCompanyAddress: DALIG, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09186126205\r\nExtensionName: \r\nFirstName: LOIDA\r\nLastName: ALUAN\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768541	2025-03-12	13:48:07.8198692	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3739\r\nDateOfExamination: August 25, 2002\r\nDateOfRelease: December 24, 2023\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 25, 2002\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0781933\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 76.8\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
768546	2025-03-12	13:59:36.8132398	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3739\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,733.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
768547	2025-03-12	13:59:36.8182229	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3739\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 34,733.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: January 31, 2024\r\n	admin	Experiences	1
768548	2025-03-12	13:59:36.8232064	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3739\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
768549	2025-03-12	13:59:36.8271930	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3739\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: March 10, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,798.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
768540	2025-03-12	13:47:03.3154168	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3737\r\nEmployeeTrainingId: 0\r\nFromDate: April 02, 2021\r\nHours: 240\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: April 10, 2021\r\nTrainingId: 16420\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768542	2025-03-12	13:52:55.1213609	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3737\r\nSkillId: 0\r\nSkillName: KNOWLEDGEABLE IN ICT\r\n	admin	Skills	1
768543	2025-03-12	13:52:55.1273711	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3737\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
768544	2025-03-12	13:52:55.1374240	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3737\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
768545	2025-03-12	13:52:55.1434343	<Undetected>	Update	BasicInformationId: 3737\r\nEmployeeTrainingId: 9425\r\nFromDate: April 02, 2021\r\nHours: 240.00\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: April 10, 2021\r\nTrainingId: 16420\r\nTrainingPerformanceRate: 0\r\n	BasicInformationId: 3737\r\nEmployeeTrainingId: 9425\r\nFromDate: October 12, 2021\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: October 14, 2021\r\nTrainingId: 16420\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768560	2025-03-12	14:01:58.8314535	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3737\r\nCharacterReferenceId: 0\r\nCompanyAddress: CONDE ITAAS BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09163109637\r\nExtensionName: \r\nFirstName: GEMMA\r\nLastName: DE TORRES\r\nMiddleName: C.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768561	2025-03-12	14:01:58.8384774	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3737\r\nCharacterReferenceId: 0\r\nCompanyAddress: DALIG BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09186126205\r\nExtensionName: \r\nFirstName: LOIDA\r\nLastName: ALUAN\r\nMiddleName: R.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768562	2025-03-12	14:01:58.8425033	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3737\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN WEST BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09189649408\r\nExtensionName: \r\nFirstName: LENY\r\nLastName: BOOL\r\nMiddleName: M.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768565	2025-03-12	14:06:09.9158048	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 24/12\r\nAddress2: MERCEDES HOMES\r\nBarangay: SORO-SORO ILAYA\r\nBasicInformationId: 3737\r\nBirthDate: May 20, 1995\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mhatiel.garcia@deped.gov.ph\r\nExtensionName: \r\nFirstName: MHATIEL\r\nFullName: MHATIEL G. ATIENZA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7406787\r\nLastName: ATIENZA\r\nMaidenName: \r\nMiddleName: GARCIA\r\nMobileNumber: 09988415502\r\nNationality: Filipino\r\nPermanentAddress1: 24/12\r\nPermanentAddress2: MERCEDES HOMES\r\nPermanentBarangay: SORO-SORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 47\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 24/12\r\nAddress2: MERCEDES HOMES\r\nBarangay: SORO-SORO ILAYA\r\nBasicInformationId: 3737\r\nBirthDate: May 20, 1995\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mhatiel.garcia@deped.gov.ph\r\nExtensionName: \r\nFirstName: MHATIEL\r\nFullName: MHATIEL G. ATIENZA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: 1425977\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02005403666\r\nHDMF: 1211-9918-1221\r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7406787\r\nLastName: ATIENZA\r\nMaidenName: \r\nMiddleName: GARCIA\r\nMobileNumber: 09988415502\r\nNationality: Filipino\r\nPermanentAddress1: 24/12\r\nPermanentAddress2: MERCEDES HOMES\r\nPermanentBarangay: SORO-SORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050444553-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3568876-7\r\nStreetName: \r\nTIN: 467-570-791-0000\r\nWeight: 47\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768574	2025-03-12	14:11:58.6765854	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 4860\r\nAddress2: \r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 0\r\nBirthDate: September 29, 1970\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: myrna.mercado@deped.gov.ph\r\nExtensionName: \r\nFirstName: MYRNA\r\nFullName: MYRNA P. MERCADO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.73\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MERCADO\r\nMaidenName: \r\nMiddleName: PAZ\r\nMobileNumber: 09289665229\r\nNationality: Filipino\r\nPermanentAddress1: 4860\r\nPermanentAddress2: \r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: VELASQUEZ ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: VELASQUEZ ST.\r\nTIN: \r\nWeight: 61\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768575	2025-03-12	14:11:58.6892656	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3741\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RUBEN\r\nFullName: RUBEN BISCOCHO MERCADO\r\nGender: Male\r\nLastName: MERCADO\r\nMaidenName: \r\nMiddleName: BISCOCHO\r\nOccupation: COOK\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768576	2025-03-12	14:11:58.6892656	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3741\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: JR.\r\nFirstName: VILLAMOR\r\nFullName: VILLAMOR FABILLION PAZ JR.\r\nGender: Male\r\nLastName: PAZ\r\nMaidenName: \r\nMiddleName: FABILLION\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
768550	2025-03-12	13:59:36.8321764	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3739\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 26,012.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: October 02, 2022\r\n	admin	Experiences	1
768551	2025-03-12	13:59:36.8371596	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3739\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 24,450.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
768552	2025-03-12	13:59:36.8421432	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3739\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 24,161.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: September 30, 2021\r\n	admin	Experiences	1
768553	2025-03-12	13:59:36.8461296	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3739\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,600.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
768554	2025-03-12	13:59:36.8511129	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3739\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,038.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
768555	2025-03-12	13:59:36.8560962	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3739\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,437.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
768556	2025-03-12	13:59:36.8600830	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3739\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2018\r\n	admin	Experiences	1
768557	2025-03-12	13:59:36.8650662	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3739\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,620.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
768558	2025-03-12	13:59:36.8690529	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3739\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
768559	2025-03-12	13:59:36.8740362	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3739\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 16, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
768563	2025-03-12	14:03:11.3970874	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3739\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 27, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 15, 2015\r\n	admin	Experiences	1
768564	2025-03-12	14:03:11.4090476	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3739\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 25, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 17,099.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 26, 2014\r\n	admin	Experiences	1
768566	2025-03-12	14:08:00.5483967	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3739\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGIONAL OFFICE\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16394\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768567	2025-03-12	14:08:00.5533799	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3739\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGIONAL OFFICE\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16395\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768568	2025-03-12	14:08:00.5583632	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3739\r\nEmployeeTrainingId: 0\r\nFromDate: November 23, 2021\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: November 25, 2021\r\nTrainingId: 15821\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768569	2025-03-12	14:08:00.5623499	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3739\r\nEmployeeTrainingId: 0\r\nFromDate: October 12, 2021\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: October 13, 2021\r\nTrainingId: 16383\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768570	2025-03-12	14:08:19.3587102	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3739\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
768571	2025-03-12	14:08:19.3636935	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3739\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
768572	2025-03-12	14:11:25.3757173	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 12\r\nAddress2: \r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 0\r\nBirthDate: February 17, 1982\r\nBirthPlace: PALLOCAN WEST, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: liezl.mahayag@deped.gov.ph\r\nExtensionName: \r\nFirstName: LIEZL\r\nFullName: LIEZL F. MAHAYAG\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MAHAYAG\r\nMaidenName: \r\nMiddleName: FAJARITO\r\nMobileNumber: 09605342478\r\nNationality: Filipino\r\nPermanentAddress1: 12\r\nPermanentAddress2: \r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ANLIT\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ANLIT\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768573	2025-03-12	14:11:25.3897817	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3740\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
768579	2025-03-12	14:12:25.1794335	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3740\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RENEBOY\r\nFullName: RENEBOY ATON MAHAYAG\r\nGender: Male\r\nLastName: MAHAYAG\r\nMaidenName: \r\nMiddleName: ATON\r\nOccupation: SECURITY GUARD\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768580	2025-03-12	14:12:25.1923494	<Undetected>	Update	BasicInformationId: 3740\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3537\r\n	BasicInformationId: 3740\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3537\r\n	admin	Questionnaires	1
768581	2025-03-12	14:14:11.6532696	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3740\r\nBirthDate: April 28, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LOUREEN STEPHANIE\r\nFullName: LOUREEN STEPHANIE FAJARITO MAHAYAG\r\nGender: Male\r\nLastName: MAHAYAG\r\nMaidenName: \r\nMiddleName: FAJARITO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768582	2025-03-12	14:14:11.6642332	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3740\r\nBirthDate: September 28, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RANIEZELLE\r\nFullName: RANIEZELLE FAJARITO MAHAYAG\r\nGender: Male\r\nLastName: MAHAYAG\r\nMaidenName: \r\nMiddleName: FAJARITO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768583	2025-03-12	14:14:11.6682197	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3740\r\nBirthDate: December 21, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LIZ REIGN\r\nFullName: LIZ REIGN FAJARITO MAHAYAG\r\nGender: Male\r\nLastName: MAHAYAG\r\nMaidenName: \r\nMiddleName: FAJARITO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768626	2025-03-12	14:40:19.9039356	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3740\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16319\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768577	2025-03-12	14:11:58.6892656	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3741\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: AMPARO\r\nFullName: AMPARO CATILO DELGADO\r\nGender: Female\r\nLastName: DELGADO\r\nMaidenName: \r\nMiddleName: CATILO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
768578	2025-03-12	14:11:58.6892656	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3741\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
768585	2025-03-12	14:18:06.0411567	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: FIRST HONOR\r\nBasicInformationId: 3741\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1977\r\nDateTo: 1983\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: PALLOCAN ELEMENTARY SCHOOL\r\nYearGraduated: 1983\r\n	admin	EducationalBackgrounds	1
768586	2025-03-12	14:18:06.0461569	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: WORKING SCHOLAR\r\nBasicInformationId: 3741\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1983\r\nDateTo: 1987\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1987\r\n	admin	EducationalBackgrounds	1
768587	2025-03-12	14:18:06.0561904	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: WORKING SCHOLAR\r\nBasicInformationId: 3741\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1987\r\nDateTo: 1991\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: SAINT BRIDGET'S COLLEGE\r\nYearGraduated: 1991\r\n	admin	EducationalBackgrounds	1
768588	2025-03-12	14:18:06.0612071	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3741\r\nCourse: \r\nCourseId: 1333\r\nCourseOrMajor: \r\nDateFrom: 1993\r\nDateTo: 1993\r\nEducationalAttainment: 6 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
768589	2025-03-12	14:18:06.0672268	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 4860\r\nAddress2: \r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3741\r\nBirthDate: September 29, 1970\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: myrna.mercado@deped.gov.ph\r\nExtensionName: \r\nFirstName: MYRNA\r\nFullName: MYRNA P. MERCADO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.73\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MERCADO\r\nMaidenName: \r\nMiddleName: PAZ\r\nMobileNumber: 09289665229\r\nNationality: Filipino\r\nPermanentAddress1: 4860\r\nPermanentAddress2: \r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: VELASQUEZ ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: VELASQUEZ ST.\r\nTIN: \r\nWeight: 61\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 4860\r\nAddress2: \r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3741\r\nBirthDate: September 29, 1970\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: myrna.mercado@deped.gov.ph\r\nExtensionName: \r\nFirstName: MYRNA\r\nFullName: MYRNA P. MERCADO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.73\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MERCADO\r\nMaidenName: \r\nMiddleName: PAZ\r\nMobileNumber: 09289665229\r\nNationality: Filipino\r\nPermanentAddress1: 4860\r\nPermanentAddress2: \r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: VELASQUEZ ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: VELASQUEZ ST.\r\nTIN: \r\nWeight: 61\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768590	2025-03-12	14:18:06.0722766	<Undetected>	Update	BasicInformationId: 3741\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3791\r\nExtensionName: \r\nFirstName: RUBEN\r\nFullName: RUBEN BISCOCHO MERCADO\r\nGender: Male\r\nLastName: MERCADO\r\nMaidenName: \r\nMiddleName: BISCOCHO\r\nOccupation: COOK\r\nRelationship: Husband\r\n	BasicInformationId: 3741\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3791\r\nExtensionName: \r\nFirstName: RUBEN\r\nFullName: RUBEN MERCADO\r\nGender: Male\r\nLastName: MERCADO\r\nMaidenName: \r\nMiddleName: BISCOCHO\r\nOccupation: COOK\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768591	2025-03-12	14:18:06.0852958	<Undetected>	Update	BasicInformationId: 3741\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3792\r\nExtensionName: JR.\r\nFirstName: VILLAMOR\r\nFullName: VILLAMOR FABILLION PAZ JR.\r\nGender: Male\r\nLastName: PAZ\r\nMaidenName: \r\nMiddleName: FABILLION\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3741\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3792\r\nExtensionName: JR.\r\nFirstName: VILLAMOR\r\nFullName: VILLAMOR PAZ JR.\r\nGender: Male\r\nLastName: PAZ\r\nMaidenName: \r\nMiddleName: FABILLION\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
768592	2025-03-12	14:18:06.1020529	<Undetected>	Update	BasicInformationId: 3741\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3793\r\nExtensionName: \r\nFirstName: AMPARO\r\nFullName: AMPARO CATILO DELGADO\r\nGender: Female\r\nLastName: DELGADO\r\nMaidenName: \r\nMiddleName: CATILO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3741\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3793\r\nExtensionName: \r\nFirstName: AMPARO\r\nFullName: AMPARO DELGADO\r\nGender: Female\r\nLastName: DELGADO\r\nMaidenName: \r\nMiddleName: CATILO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
768593	2025-03-12	14:18:06.1177791	<Undetected>	Update	BasicInformationId: 3741\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3538\r\n	BasicInformationId: 3741\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3538\r\n	admin	Questionnaires	1
768584	2025-03-12	14:14:11.6732029	<Undetected>	Update	BasicInformationId: 3740\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3794\r\nExtensionName: \r\nFirstName: RENEBOY\r\nFullName: RENEBOY ATON MAHAYAG\r\nGender: Male\r\nLastName: MAHAYAG\r\nMaidenName: \r\nMiddleName: ATON\r\nOccupation: SECURITY GUARD\r\nRelationship: Husband\r\n	BasicInformationId: 3740\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3794\r\nExtensionName: \r\nFirstName: RENEBOY\r\nFullName: RENEBOY MAHAYAG\r\nGender: Male\r\nLastName: MAHAYAG\r\nMaidenName: \r\nMiddleName: ATON\r\nOccupation: SECURITY GUARD\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768594	2025-03-12	14:18:20.7723212	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3740\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1989\r\nDateTo: 1995\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: PALLOCAN ELEMENTARY SCHOOL\r\nYearGraduated: 1995\r\n	admin	EducationalBackgrounds	1
768595	2025-03-12	14:18:20.7773044	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3740\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1995\r\nDateTo: 1999\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 1999\r\n	admin	EducationalBackgrounds	1
768596	2025-03-12	14:18:20.7872713	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3740\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1999\r\nDateTo: 2003\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2003\r\n	admin	EducationalBackgrounds	1
768597	2025-03-12	14:18:20.7912578	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3740\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2016\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
768598	2025-03-12	14:18:20.7982345	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 12\r\nAddress2: \r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3740\r\nBirthDate: February 17, 1982\r\nBirthPlace: PALLOCAN WEST, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: liezl.mahayag@deped.gov.ph\r\nExtensionName: \r\nFirstName: LIEZL\r\nFullName: LIEZL F. MAHAYAG\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MAHAYAG\r\nMaidenName: \r\nMiddleName: FAJARITO\r\nMobileNumber: 09605342478\r\nNationality: Filipino\r\nPermanentAddress1: 12\r\nPermanentAddress2: \r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ANLIT\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ANLIT\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 12\r\nAddress2: \r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3740\r\nBirthDate: February 17, 1982\r\nBirthPlace: PALLOCAN WEST, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: liezl.mahayag@deped.gov.ph\r\nExtensionName: \r\nFirstName: LIEZL\r\nFullName: LIEZL F. MAHAYAG\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7813388\r\nLastName: MAHAYAG\r\nMaidenName: \r\nMiddleName: FAJARITO\r\nMobileNumber: 09605342478\r\nNationality: Filipino\r\nPermanentAddress1: 12\r\nPermanentAddress2: \r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ANLIT\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ANLIT\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768599	2025-03-12	14:18:20.8022211	<Undetected>	Update	BasicInformationId: 3740\r\nBirthDate: April 28, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3795\r\nExtensionName: \r\nFirstName: LOUREEN STEPHANIE\r\nFullName: LOUREEN STEPHANIE FAJARITO MAHAYAG\r\nGender: Male\r\nLastName: MAHAYAG\r\nMaidenName: \r\nMiddleName: FAJARITO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3740\r\nBirthDate: April 28, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3795\r\nExtensionName: \r\nFirstName: LOUREEN STEPHANIE\r\nFullName: LOUREEN STEPHANIE MAHAYAG\r\nGender: Male\r\nLastName: MAHAYAG\r\nMaidenName: \r\nMiddleName: FAJARITO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768600	2025-03-12	14:18:20.8091977	<Undetected>	Update	BasicInformationId: 3740\r\nBirthDate: September 28, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3796\r\nExtensionName: \r\nFirstName: RANIEZELLE\r\nFullName: RANIEZELLE FAJARITO MAHAYAG\r\nGender: Male\r\nLastName: MAHAYAG\r\nMaidenName: \r\nMiddleName: FAJARITO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3740\r\nBirthDate: September 28, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3796\r\nExtensionName: \r\nFirstName: RANIEZELLE\r\nFullName: RANIEZELLE MAHAYAG\r\nGender: Male\r\nLastName: MAHAYAG\r\nMaidenName: \r\nMiddleName: FAJARITO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768601	2025-03-12	14:18:20.8131845	<Undetected>	Update	BasicInformationId: 3740\r\nBirthDate: December 21, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3797\r\nExtensionName: \r\nFirstName: LIZ REIGN\r\nFullName: LIZ REIGN FAJARITO MAHAYAG\r\nGender: Male\r\nLastName: MAHAYAG\r\nMaidenName: \r\nMiddleName: FAJARITO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3740\r\nBirthDate: December 21, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3797\r\nExtensionName: \r\nFirstName: LIZ REIGN\r\nFullName: LIZ REIGN MAHAYAG\r\nGender: Male\r\nLastName: MAHAYAG\r\nMaidenName: \r\nMiddleName: FAJARITO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768613	2025-03-12	14:29:47.5414097	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3740\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 28,276.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
768602	2025-03-12	14:20:00.1469210	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3741\r\nDateOfExamination: October 10, 1992\r\nDateOfRelease: September 29, 2024\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: October 10, 1992\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0803294\r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 74.20\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
768646	2025-03-12	14:46:00.0231668	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3741\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,421.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: March 12, 2025\r\n	admin	Experiences	1
768647	2025-03-12	14:46:00.0281755	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3741\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 11, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
768648	2025-03-12	14:46:00.0331838	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3741\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
768649	2025-03-12	14:46:00.0382205	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3741\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 07, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,798.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: March 31, 2022\r\n	admin	Experiences	1
768650	2025-03-12	14:46:00.0432415	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3741\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 28,766.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: February 06, 2022\r\n	admin	Experiences	1
768651	2025-03-12	14:46:00.0482499	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3741\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 27,210.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
768652	2025-03-12	14:46:00.0533730	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3741\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 10, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 25,653.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
768653	2025-03-12	14:46:00.0583813	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3741\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 25,358.00\r\nPositionHeld: TEACHER  II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: June 09, 2020\r\n	admin	Experiences	1
768654	2025-03-12	14:46:00.0623878	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3741\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 22,942.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
768655	2025-03-12	14:46:00.0680286	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3741\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 10, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 22,113.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
768603	2025-03-12	14:20:28.6499176	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 12\r\nAddress2: \r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3740\r\nBirthDate: February 17, 1982\r\nBirthPlace: PALLOCAN WEST, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: liezl.mahayag@deped.gov.ph\r\nExtensionName: \r\nFirstName: LIEZL\r\nFullName: LIEZL F. MAHAYAG\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7813388\r\nLastName: MAHAYAG\r\nMaidenName: \r\nMiddleName: FAJARITO\r\nMobileNumber: 09605342478\r\nNationality: Filipino\r\nPermanentAddress1: 12\r\nPermanentAddress2: \r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ANLIT\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ANLIT\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 12\r\nAddress2: \r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3740\r\nBirthDate: February 17, 1982\r\nBirthPlace: PALLOCAN WEST, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: liezl.mahayag@deped.gov.ph\r\nExtensionName: \r\nFirstName: LIEZL\r\nFullName: LIEZL F. MAHAYAG\r\nGender: Female\r\nGovernmentIdIssuedDate: March 04, 2009\r\nGovernmentIdNumber: 1019517\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: 02004190804\r\nHDMF: 1210-7811-2078\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7813388\r\nLastName: MAHAYAG\r\nMaidenName: \r\nMiddleName: FAJARITO\r\nMobileNumber: 09605342478\r\nNationality: Filipino\r\nPermanentAddress1: 12\r\nPermanentAddress2: \r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ANLIT\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000084629-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ANLIT\r\nTIN: 419-893-475-0000\r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768604	2025-03-12	14:23:41.7882553	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3740\r\nCharacterReferenceId: 0\r\nCompanyAddress: AMBULONG, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09151454687\r\nExtensionName: \r\nFirstName: MARITES\r\nLastName: TARCELO\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768605	2025-03-12	14:23:41.8012120	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3740\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN WEST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09189649408\r\nExtensionName: \r\nFirstName: LENY\r\nLastName: BOOL\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768606	2025-03-12	14:23:41.8051986	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3740\r\nCharacterReferenceId: 0\r\nCompanyAddress: DALIG, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09186126205\r\nExtensionName: \r\nFirstName: LOIDA\r\nLastName: ALUAN\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768607	2025-03-12	14:25:06.8138071	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3740\r\nDateOfExamination: September 28, 2009\r\nDateOfRelease: February 17, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 28, 2009\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1019517\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 75\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
768608	2025-03-12	14:28:00.4654704	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3740\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,733.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
768609	2025-03-12	14:28:00.4714503	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3740\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 33,183.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
768610	2025-03-12	14:28:00.4754369	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3740\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 03, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,633.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
768611	2025-03-12	14:28:00.4814169	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3740\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: November 02, 2023\r\n	admin	Experiences	1
768612	2025-03-12	14:29:47.5324404	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3740\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,798.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
768614	2025-03-12	14:29:47.5453964	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3740\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 03, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 26,754.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
768615	2025-03-12	14:31:25.8068490	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3740\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,600.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: November 02, 2020\r\n	admin	Experiences	1
768616	2025-03-12	14:31:25.8118332	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3740\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,038.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
768617	2025-03-12	14:31:25.8168160	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3740\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,437.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
768618	2025-03-12	14:35:20.1248039	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3740\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 02, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,853.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
768619	2025-03-12	14:35:20.1307839	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3740\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 17, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,620.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 01, 2017\r\n	admin	Experiences	1
768620	2025-03-12	14:35:20.1347705	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3740\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
768621	2025-03-12	14:35:20.1397542	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3740\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 02, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
768622	2025-03-12	14:35:20.1447931	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3740\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: March 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 13,333.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: May 30, 2014\r\n	admin	Experiences	1
768623	2025-03-12	14:35:20.1487799	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3740\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 13, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 17,099.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: August 11, 2011\r\n	admin	Experiences	1
768624	2025-03-12	14:35:20.1537630	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3740\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 05, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 14,198.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: October 30, 2010\r\n	admin	Experiences	1
768625	2025-03-12	14:40:19.8959629	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3740\r\nEmployeeTrainingId: 0\r\nFromDate: December 19, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: December 19, 2024\r\nTrainingId: 16318\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768627	2025-03-12	14:40:19.9089190	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3740\r\nEmployeeTrainingId: 0\r\nFromDate: November 12, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: November 12, 2024\r\nTrainingId: 16320\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768628	2025-03-12	14:41:53.9301087	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3740\r\nEmployeeTrainingId: 0\r\nFromDate: September 18, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: September 18, 2024\r\nTrainingId: 16327\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768629	2025-03-12	14:41:53.9350926	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3740\r\nEmployeeTrainingId: 0\r\nFromDate: July 01, 2024\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 02, 2024\r\nTrainingId: 16328\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768630	2025-03-12	14:43:08.0329279	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3740\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
768631	2025-03-12	14:43:08.0438916	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3740\r\nSkillId: 0\r\nSkillName: DANCING MODERN, FOLK DANCES\r\n	admin	Skills	1
768632	2025-03-12	14:43:08.0478781	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3740\r\nSkillId: 0\r\nSkillName: PLAYING COACHING VOLLEYBALL\r\n	admin	Skills	1
768633	2025-03-12	14:43:08.0568479	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3740\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
768634	2025-03-12	14:43:08.0614445	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3740\r\nSkillId: 0\r\nSkillName: READING SHORT NOVEL\r\n	admin	Skills	1
768635	2025-03-12	14:43:08.0716818	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3740\r\nSkillId: 0\r\nSkillName: WATCHING EDUCATIONAL VIDEOS\r\n	admin	Skills	1
768636	2025-03-12	14:44:48.4163983	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3740\r\nRecognitionId: 0\r\nRecognitionName: BAYANI NG BAYAN AWARD (2025)\r\n	admin	Recognitions	1
768637	2025-03-12	14:44:48.4213815	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3740\r\nRecognitionId: 0\r\nRecognitionName: FAITH AND SERVICE AWARD (2025)\r\n	admin	Recognitions	1
768638	2025-03-12	14:44:48.4303515	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3740\r\nRecognitionId: 0\r\nRecognitionName: GOOD CONDUCT AWARDEE - MAKADIYOS CORE VALUES (2025)\r\n	admin	Recognitions	1
768639	2025-03-12	14:44:48.4353347	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3740\r\nRecognitionId: 0\r\nRecognitionName: 2ND BRIGADA ESKWELA COORDINATOR (2024)\r\n	admin	Recognitions	1
768640	2025-03-12	14:44:48.4433080	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3740\r\nRecognitionId: 0\r\nRecognitionName: BSP SILVER SERVICE AWARD \r\n	admin	Recognitions	1
768641	2025-03-12	14:44:48.4472947	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3740\r\nRecognitionId: 0\r\nRecognitionName: WATCH ADVOCATE AWARD (2022)\r\n	admin	Recognitions	1
768642	2025-03-12	14:45:59.4623361	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3740\r\nOrganizationId: 0\r\nOrganizationName: PALLOCAN WEST WOMEN'S CHAPTER (MEMBER)\r\n	admin	Organizations	1
768643	2025-03-12	14:45:59.4723028	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3740\r\nOrganizationId: 0\r\nOrganizationName: SACRED HEART CHAPEL PALLOCAN (MEMBER)\r\n	admin	Organizations	1
768644	2025-03-12	14:45:59.4772860	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3740\r\nOrganizationId: 0\r\nOrganizationName: BUKLOD BATANGAS CHAPTER (MEMBER)\r\n	admin	Organizations	1
768645	2025-03-12	14:45:59.4852595	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3740\r\nOrganizationId: 0\r\nOrganizationName: BOY SCOUT OF THE PHILIPPINES (MEMBER)\r\n	admin	Organizations	1
768664	2025-03-12	15:18:30.3205072	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 04\r\nAddress2: \r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 0\r\nBirthDate: January 19, 1966\r\nBirthPlace: LOBO BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: leny.bool@deped.gov.ph\r\nExtensionName: \r\nFirstName: LENY\r\nFullName: LENY M. BOOL\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.51\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BOOL\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nMobileNumber: 09189649408\r\nNationality: Filipino\r\nPermanentAddress1: 04\r\nPermanentAddress2: \r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: QUINIO\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: QUINIO\r\nTIN: \r\nWeight: 59\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768665	2025-03-12	15:18:30.3313075	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3742\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
768656	2025-03-12	14:46:00.0730506	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3741\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 21,091.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
768657	2025-03-12	14:46:00.0780591	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3741\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 25, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 20,341.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: March 06, 2015\r\n	admin	Experiences	1
768658	2025-03-12	14:46:00.0830752	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3741\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 20,140.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: June 10, 2014\r\n	admin	Experiences	1
768659	2025-03-12	14:46:00.0880838	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3741\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 16,726.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
768660	2025-03-12	14:46:00.0930918	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3741\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 15,119.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
768661	2025-03-12	14:46:00.0981233	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3741\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 11,207.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: June 09, 2008\r\n	admin	Experiences	1
768662	2025-03-12	14:46:00.1021406	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3741\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 28, 2004\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2006\r\n	admin	Experiences	1
768663	2025-03-12	14:46:00.1081501	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3741\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 03, 2003\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: July 28, 2004\r\n	admin	Experiences	1
768666	2025-03-12	15:20:28.7942708	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3742\r\nBirthDate: September 06, 1990\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOSE CARLO\r\nFullName: JOSE CARLO MAGTIBAY BOOL\r\nGender: Male\r\nLastName: BOOL\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768667	2025-03-12	15:20:28.7993656	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3742\r\nBirthDate: September 06, 1990\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOSE CARLO\r\nFullName: JOSE CARLO MAGTIBAY BOOL\r\nGender: Male\r\nLastName: BOOL\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768668	2025-03-12	15:20:28.8033135	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3742\r\nBirthDate: August 15, 1994\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARK LENUEL\r\nFullName: MARK LENUEL MAGTIBAY BOOL\r\nGender: Male\r\nLastName: BOOL\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768669	2025-03-12	15:20:28.8142787	<Undetected>	Update	BasicInformationId: 3742\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3539\r\n	BasicInformationId: 3742\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3539\r\n	admin	Questionnaires	1
768670	2025-03-12	15:21:54.2886174	<Undetected>	Update	BasicInformationId: 3742\r\nBirthDate: September 06, 1990\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3798\r\nExtensionName: \r\nFirstName: JOSE CARLO\r\nFullName: JOSE CARLO MAGTIBAY BOOL\r\nGender: Male\r\nLastName: BOOL\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3742\r\nBirthDate: September 06, 1990\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3798\r\nExtensionName: \r\nFirstName: JOSE CARLO\r\nFullName: JOSE CARLO BOOL\r\nGender: Male\r\nLastName: BOOL\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768671	2025-03-12	15:21:54.2936004	<Undetected>	Update	BasicInformationId: 3742\r\nBirthDate: September 06, 1990\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3799\r\nExtensionName: \r\nFirstName: JOSE CARLO\r\nFullName: JOSE CARLO MAGTIBAY BOOL\r\nGender: Male\r\nLastName: BOOL\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3742\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 437233454\r\nEmployeeRelativeId: 3799\r\nExtensionName: \r\nFirstName: RUEL\r\nFullName: RUEL BORBON BOOL\r\nGender: Male\r\nLastName: BOOL\r\nMaidenName: \r\nMiddleName: BORBON\r\nOccupation: GOVERNMENT EMPLOYEE/CIVIL ENGINEER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768672	2025-03-13	08:00:52.9182819	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3742\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1971\r\nDateTo: 1977\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: LOBO CENTRAL SCHOOL\r\nYearGraduated: 1977\r\n	admin	EducationalBackgrounds	1
768673	2025-03-13	08:00:52.9311537	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3742\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1977\r\nDateTo: 1981\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: LOBO INSTITUTE\r\nYearGraduated: 1981\r\n	admin	EducationalBackgrounds	1
768674	2025-03-13	08:00:52.9361371	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3742\r\nCourse: \r\nCourseId: 1314\r\nCourseOrMajor: \r\nDateFrom: 1982\r\nDateTo: 1986\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGE\r\nYearGraduated: 1986\r\n	admin	EducationalBackgrounds	1
768675	2025-03-13	08:00:52.9451071	<Undetected>	Update	BasicInformationId: 3742\r\nBirthDate: August 15, 1994\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3800\r\nExtensionName: \r\nFirstName: MARK LENUEL\r\nFullName: MARK LENUEL MAGTIBAY BOOL\r\nGender: Male\r\nLastName: BOOL\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3742\r\nBirthDate: August 15, 1994\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3800\r\nExtensionName: \r\nFirstName: MARK LENUEL\r\nFullName: MARK LENUEL BOOL\r\nGender: Male\r\nLastName: BOOL\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768676	2025-03-13	08:00:52.9500903	<Undetected>	Update	BasicInformationId: 3742\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 437233454\r\nEmployeeRelativeId: 3799\r\nExtensionName: \r\nFirstName: RUEL\r\nFullName: RUEL BORBON BOOL\r\nGender: Male\r\nLastName: BOOL\r\nMaidenName: \r\nMiddleName: BORBON\r\nOccupation: GOVERNMENT EMPLOYEE/CIVIL ENGINEER\r\nRelationship: Husband\r\n	BasicInformationId: 3742\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 437233454\r\nEmployeeRelativeId: 3799\r\nExtensionName: \r\nFirstName: RUEL\r\nFullName: RUEL BOOL\r\nGender: Male\r\nLastName: BOOL\r\nMaidenName: \r\nMiddleName: BORBON\r\nOccupation: GOVERNMENT EMPLOYEE/CIVIL ENGINEER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768677	2025-03-13	08:03:59.9306730	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3742\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 1990\r\nDateTo: 1992\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGE\r\nYearGraduated: 1992\r\n	admin	EducationalBackgrounds	1
768678	2025-03-13	08:06:51.6281427	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3742\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN WEST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 7220496\r\nExtensionName: \r\nFirstName: ROMY\r\nLastName: CATILO\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768679	2025-03-13	08:06:51.6331261	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3742\r\nCharacterReferenceId: 0\r\nCompanyAddress: AMBULONG BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09151454687\r\nExtensionName: \r\nFirstName: MARITES\r\nLastName: TARCELO\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768680	2025-03-13	08:06:51.6371129	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3742\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN WEST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 7220993\r\nExtensionName: \r\nFirstName: RICARDO\r\nLastName: VILLESTAS\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768681	2025-03-13	08:09:26.3948738	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 04\r\nAddress2: \r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3742\r\nBirthDate: January 19, 1966\r\nBirthPlace: LOBO BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: leny.bool@deped.gov.ph\r\nExtensionName: \r\nFirstName: LENY\r\nFullName: LENY M. BOOL\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.51\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BOOL\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nMobileNumber: 09189649408\r\nNationality: Filipino\r\nPermanentAddress1: 04\r\nPermanentAddress2: \r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: QUINIO\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: QUINIO\r\nTIN: \r\nWeight: 59\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 04\r\nAddress2: \r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3742\r\nBirthDate: January 19, 1966\r\nBirthPlace: LOBO BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: leny.bool@deped.gov.ph\r\nExtensionName: \r\nFirstName: LENY\r\nFullName: LENY M. BOOL\r\nGender: Female\r\nGovernmentIdIssuedDate: October 30, 1996\r\nGovernmentIdNumber: 0009136\r\nGovernmentIdPlaceIssued: MANILA PHILIPPINES\r\nGovernmentIssuedId: PRC\r\nGSIS: \r\nHDMF: 1490-0083-8569\r\nHeight: 1.51\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BOOL\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nMobileNumber: 09189649408\r\nNationality: Filipino\r\nPermanentAddress1: 04\r\nPermanentAddress2: \r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: QUINIO\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000007373-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: QUINIO\r\nTIN: 124-516-319-0000\r\nWeight: 59\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768682	2025-03-13	08:09:53.9784513	<Undetected>	Update	Awards: \r\nBasicInformationId: 3742\r\nCourse: \r\nCourseId: 1314\r\nCourseOrMajor: \r\nDateFrom: 1982\r\nDateTo: 1986\r\nEducationalAttainment: \r\nEducationalBackgroundId: 14046\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGE\r\nYearGraduated: 1986\r\n	Awards: \r\nBasicInformationId: 3742\r\nCourse: \r\nCourseId: 1314\r\nCourseOrMajor: \r\nDateFrom: 1982\r\nDateTo: 1986\r\nEducationalAttainment: \r\nEducationalBackgroundId: 14046\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGE\r\nYearGraduated: 1987\r\n	admin	EducationalBackgrounds	1
768683	2025-03-13	08:11:34.3687874	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3742\r\nDateOfExamination: November 22, 1987\r\nDateOfRelease: October 30, 1988\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: November 22, 1987\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0009136\r\nPlaceOfExamination: QUEZON CITY\r\nRating: 70.85\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
768684	2025-03-13	08:13:17.5621158	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 57,165.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-2\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
768685	2025-03-13	08:13:17.5720825	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 15, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 54,649.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-2\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
768686	2025-03-13	08:15:16.2969361	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 51,357.83\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: January 14, 2024\r\n	admin	Experiences	1
768687	2025-03-13	08:15:16.3059061	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 51,357.83\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
768688	2025-03-13	08:22:16.5602553	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 19,835.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
768689	2025-03-13	08:22:16.5672318	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 15, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 48,313.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
768690	2025-03-13	08:22:16.5722152	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 44,694.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-3\r\nStatus: Permanent\r\nToDate: January 14, 2021\r\n	admin	Experiences	1
768691	2025-03-13	08:23:58.6065710	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 16, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 43,172.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-3\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
768692	2025-03-13	08:23:58.6115547	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 42,662.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-2\r\nStatus: Permanent\r\nToDate: September 15, 2020\r\n	admin	Experiences	1
768693	2025-03-13	08:23:58.6165380	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 38,543.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-2\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
768694	2025-03-13	08:26:26.3976753	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 16, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 36,111.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-2\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
768695	2025-03-13	08:26:26.4026586	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 35,693.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-1\r\nStatus: Permanent\r\nToDate: September 15, 2017\r\n	admin	Experiences	1
768696	2025-03-13	08:26:26.4106745	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 33,452.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
768697	2025-03-13	08:26:26.4216369	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 16, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 31,351.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
768698	2025-03-13	08:31:56.6446439	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 22,529.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-6\r\nStatus: Permanent\r\nToDate: September 15, 2014\r\n	admin	Experiences	1
768699	2025-03-13	08:31:56.6496272	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 20,948.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-6\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
768700	2025-03-13	08:31:56.6546106	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 31, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 18,333.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-6\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
768701	2025-03-13	08:31:56.6595938	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 28, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 19,367.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: October 30, 2010\r\n	admin	Experiences	1
768702	2025-03-13	08:31:56.6635805	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 28, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 19,367.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: October 28, 2010\r\n	admin	Experiences	1
768703	2025-03-13	08:31:56.6685638	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 02, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 18,755.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: October 27, 2010\r\n	admin	Experiences	1
768704	2025-03-13	08:31:56.6725505	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 02, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 18,755.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: October 27, 2010\r\n	admin	Experiences	1
768705	2025-03-13	08:31:56.6775338	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 18,755.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: August 01, 2010\r\n	admin	Experiences	1
768706	2025-03-13	08:31:56.6825172	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 17,089.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
768707	2025-03-13	08:37:37.4271607	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 14,552.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
768708	2025-03-13	08:37:37.4321439	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 10, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 13,229.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
768709	2025-03-13	08:37:37.4391193	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 12,026.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
768710	2025-03-13	08:37:37.4441031	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 11,733.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2004\r\n	admin	Experiences	1
768711	2025-03-13	08:37:37.4490864	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 10, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 11,167.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2001\r\n	admin	Experiences	1
768712	2025-03-13	08:37:37.4540375	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 10,635.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
768713	2025-03-13	08:37:37.4590208	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 9,668.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
768714	2025-03-13	08:37:37.4659973	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 9,668.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: December 31, 1998\r\n	admin	Experiences	1
768715	2025-03-13	08:37:37.4709808	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 9,668.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: December 31, 1997\r\n	admin	Experiences	1
768716	2025-03-13	08:37:37.4769606	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 8,118.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: October 31, 1997\r\n	admin	Experiences	1
768717	2025-03-13	08:37:37.4829399	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 6,558.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 1996\r\n	admin	Experiences	1
768718	2025-03-13	08:39:09.0789482	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 17, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 5,240.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 1995\r\n	admin	Experiences	1
768719	2025-03-13	08:39:09.0859248	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 5,009.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: October 16, 1995\r\n	admin	Experiences	1
768720	2025-03-13	08:39:09.0909082	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 12, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 4,009.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1994\r\n	admin	Experiences	1
768721	2025-03-13	08:41:40.1645092	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 02, 1991\r\nIsGovernmentService: True\r\nMonthlySalary: 3,102.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: September 11, 1994\r\n	admin	Experiences	1
768722	2025-03-13	08:41:40.1694926	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 04, 1990\r\nIsGovernmentService: True\r\nMonthlySalary: 3,102.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: January 01, 1991\r\n	admin	Experiences	1
768723	2025-03-13	08:41:40.1744759	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 25, 1989\r\nIsGovernmentService: True\r\nMonthlySalary: 3,102.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: November 04, 1990\r\n	admin	Experiences	1
768741	2025-03-13	08:59:55.7080061	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3742\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION DIVISION OFFICE\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16422\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768724	2025-03-13	08:46:57.7673416	<Undetected>	Update	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11829\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 19,835.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11829\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 49,835.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
768725	2025-03-13	08:49:37.7651734	<Undetected>	Delete	BasicInformationId: 3742\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11845\r\nFromDate: August 02, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 18,755.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: October 27, 2010\r\n	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	admin	Experiences	1
768726	2025-03-13	08:54:06.7692426	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3741\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16400\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768727	2025-03-13	08:54:06.7744207	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3741\r\nEmployeeTrainingId: 0\r\nFromDate: August 14, 2023\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 18, 2023\r\nTrainingId: 15773\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768728	2025-03-13	08:54:06.7804207	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3741\r\nEmployeeTrainingId: 0\r\nFromDate: July 25, 3023\r\nHours: 56\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: August 02, 2023\r\nTrainingId: 16415\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768729	2025-03-13	08:54:06.7844210	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3741\r\nEmployeeTrainingId: 0\r\nFromDate: June 09, 2022\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: June 10, 2022\r\nTrainingId: 15882\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768730	2025-03-13	08:54:06.7894225	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3741\r\nEmployeeTrainingId: 0\r\nFromDate: October 12, 2021\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: October 14, 2021\r\nTrainingId: 16420\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768731	2025-03-13	08:55:06.2395123	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3741\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
768732	2025-03-13	08:55:06.2445127	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3741\r\nRecognitionId: 0\r\nRecognitionName: GIRL SCOUT SERVICE AWARD\r\n	admin	Recognitions	1
768733	2025-03-13	08:55:06.2545125	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3741\r\nOrganizationId: 0\r\nOrganizationName: PALLOCAN WEST WOMENS CHAPTER\r\n	admin	Organizations	1
768734	2025-03-13	08:57:00.8916360	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: IN-SERVICE TRAINING FOR TEACHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768735	2025-03-13	08:56:59.9457446	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3741\r\nCharacterReferenceId: 0\r\nCompanyAddress: CONDE ITAAS BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09163109637\r\nExtensionName: \r\nFirstName: GEMMA\r\nLastName: DE TORRES\r\nMiddleName: C.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768736	2025-03-13	08:56:59.9547449	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3741\r\nCharacterReferenceId: 0\r\nCompanyAddress: DALIG BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09186126205\r\nExtensionName: \r\nFirstName: LOIDA\r\nLastName: ALUAN\r\nMiddleName: R.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768737	2025-03-13	08:56:59.9587445	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3741\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN WEST BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09189649408\r\nExtensionName: \r\nFirstName: LENY\r\nLastName: BOOL\r\nMiddleName: M. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768738	2025-03-13	08:58:08.0822176	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING ON THE IMPLEMENTATION OF SCHOOL-BASED FEEDING PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768739	2025-03-13	08:58:56.2000753	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MID-YEAR IN-SERVICE TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768840	2025-03-13	09:52:29.9154789	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MASTER CLASSES FOR GRADE 1, 4 AND 7 TEACHERS ACROSS ALL LEARNING AREAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768740	2025-03-13	08:59:19.2611889	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 4860\r\nAddress2: \r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3741\r\nBirthDate: September 29, 1970\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: myrna.mercado@deped.gov.ph\r\nExtensionName: \r\nFirstName: MYRNA\r\nFullName: MYRNA P. MERCADO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.73\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MERCADO\r\nMaidenName: \r\nMiddleName: PAZ\r\nMobileNumber: 09289665229\r\nNationality: Filipino\r\nPermanentAddress1: 4860\r\nPermanentAddress2: \r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: VELASQUEZ ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: VELASQUEZ ST.\r\nTIN: \r\nWeight: 61\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 4860\r\nAddress2: \r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3741\r\nBirthDate: September 29, 1970\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: myrna.mercado@deped.gov.ph\r\nExtensionName: \r\nFirstName: MYRNA\r\nFullName: MYRNA P. MERCADO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: 0803291\r\nGovernmentIdPlaceIssued: ROSARIO, BATANGAS\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02002992861\r\nHDMF: 1490-0093-5705\r\nHeight: 1.73\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MERCADO\r\nMaidenName: \r\nMiddleName: PAZ\r\nMobileNumber: 09289665229\r\nNationality: Filipino\r\nPermanentAddress1: 4860\r\nPermanentAddress2: \r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: VELASQUEZ ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025031710-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-0801589-1\r\nStreetName: VELASQUEZ ST.\r\nTIN: 931-078-355-0000\r\nWeight: 61\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768749	2025-03-13	09:18:09.9954803	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 047\r\nAddress2: \r\nBarangay: TALUMPOK WEST\r\nBasicInformationId: 0\r\nBirthDate: November 19, 1990\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marie.montalbo001@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIE\r\nFullName: MARIE A. MONTALBO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MONTALBO\r\nMaidenName: \r\nMiddleName: ALMAREZ\r\nMobileNumber: 09564780615\r\nNationality: Filipino\r\nPermanentAddress1: 047\r\nPermanentAddress2: \r\nPermanentBarangay: TALUMPOK WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO GUINTO\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: SITIO GUINTO\r\nTIN: \r\nWeight: 74\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768750	2025-03-13	09:18:10.0613225	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3743\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOSELITO DONDON\r\nFullName: JOSELITO DONDON ANTENOR MONTALBO\r\nGender: Male\r\nLastName: MONTALBO\r\nMaidenName: \r\nMiddleName: ANTENOR\r\nOccupation: PIPEFITTER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768751	2025-03-13	09:18:10.0613225	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3743\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ENRIQUE\r\nFullName: ENRIQUE CAY ALMAREZ\r\nGender: Male\r\nLastName: ALMAREZ\r\nMaidenName: \r\nMiddleName: CAY\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
768752	2025-03-13	09:18:10.0613225	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3743\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CASIANA\r\nFullName: CASIANA RAMIREZ SARMIENTO\r\nGender: Female\r\nLastName: SARMIENTO\r\nMaidenName: \r\nMiddleName: RAMIREZ\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
768753	2025-03-13	09:18:10.0623243	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3743\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
768759	2025-03-13	09:21:12.8684380	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3743\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1997\r\nDateTo: 2003\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: GUINTO ELEMENTARY SCHOOL\r\nYearGraduated: 2003\r\n	admin	EducationalBackgrounds	1
768760	2025-03-13	09:21:12.8794362	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3743\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: TALUMPOK NATIONAL HIGH SCHOOL\r\nYearGraduated: 2007\r\n	admin	EducationalBackgrounds	1
768761	2025-03-13	09:21:12.8844362	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3743\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 2007\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: COLEGIO NG LUNGSOD NG BATANGAS \r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
768762	2025-03-13	09:21:12.8934377	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3743\r\nCourse: \r\nCourseId: 1333\r\nCourseOrMajor: \r\nDateFrom: 2016\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY MAIN CAMPUS I\r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
768742	2025-03-13	08:59:55.7119927	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3742\r\nEmployeeTrainingId: 0\r\nFromDate: August 01, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: 08012023\r\nStatus: \r\nToDate: August 01, 2023\r\nTrainingId: 16423\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768743	2025-03-13	08:59:55.7179727	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3742\r\nEmployeeTrainingId: 0\r\nFromDate: January 31, 2022\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION DIVISION OFFICE\r\nStatus: \r\nToDate: February 04, 2022\r\nTrainingId: 16424\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768744	2025-03-13	08:59:55.7219594	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3742\r\nEmployeeTrainingId: 0\r\nFromDate: March 23, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION DIVISION OFFICE\r\nStatus: \r\nToDate: March 23, 2023\r\nTrainingId: 16406\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768745	2025-03-13	09:16:38.1597032	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: VIRTUAL CONFERENCE OF BASIC EDUCATION RESEARCHERS (VCBER)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768746	2025-03-13	09:17:10.0316031	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3742\r\nEmployeeTrainingId: 0\r\nFromDate: November 23, 2021\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGIONAL OFFICE\r\nStatus: \r\nToDate: November 25, 2021\r\nTrainingId: 16425\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768747	2025-03-13	09:17:10.0405735	<Undetected>	Update	BasicInformationId: 3742\r\nEmployeeTrainingId: 9441\r\nFromDate: August 01, 2023\r\nHours: 8.00\r\nNatureOfParticipation: \r\nSponsoringAgency: 08012023\r\nStatus: \r\nToDate: August 01, 2023\r\nTrainingId: 16423\r\nTrainingPerformanceRate: 0\r\n	BasicInformationId: 3742\r\nEmployeeTrainingId: 9441\r\nFromDate: August 01, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION DIVISION OFFICE\r\nStatus: \r\nToDate: August 01, 2023\r\nTrainingId: 16423\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768748	2025-03-13	09:17:10.0445599	<Undetected>	Update	BasicInformationId: 3742\r\nEmployeeTrainingId: 9443\r\nFromDate: March 23, 2023\r\nHours: 8.00\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION DIVISION OFFICE\r\nStatus: \r\nToDate: March 23, 2023\r\nTrainingId: 16406\r\nTrainingPerformanceRate: 0\r\n	BasicInformationId: 3742\r\nEmployeeTrainingId: 9443\r\nFromDate: March 23, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION DISTRICT OFFICE\r\nStatus: \r\nToDate: March 23, 2023\r\nTrainingId: 16406\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768754	2025-03-13	09:18:16.1723641	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3742\r\nSkillId: 0\r\nSkillName: COMPUTER SKILLS\r\n	admin	Skills	1
768755	2025-03-13	09:18:16.1773474	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3742\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
768756	2025-03-13	09:18:16.1863176	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3742\r\nRecognitionId: 0\r\nRecognitionName: SILVER MEDAL OF MERIT (BSP BATANGAS CITY COUNCIL)\r\n	admin	Recognitions	1
768757	2025-03-13	09:18:16.1913007	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3742\r\nRecognitionId: 0\r\nRecognitionName: GOLD MEDAL OF MERIT (BSP BATANGAS CITY COUNCIL)\r\n	admin	Recognitions	1
768758	2025-03-13	09:18:16.1992742	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3742\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY MASTER TEACHER ASSOCIATION\r\n	admin	Organizations	1
768763	2025-03-13	09:21:12.8974377	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 047\r\nAddress2: \r\nBarangay: TALUMPOK WEST\r\nBasicInformationId: 3743\r\nBirthDate: November 19, 1990\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marie.montalbo001@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIE\r\nFullName: MARIE A. MONTALBO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MONTALBO\r\nMaidenName: \r\nMiddleName: ALMAREZ\r\nMobileNumber: 09564780615\r\nNationality: Filipino\r\nPermanentAddress1: 047\r\nPermanentAddress2: \r\nPermanentBarangay: TALUMPOK WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO GUINTO\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: SITIO GUINTO\r\nTIN: \r\nWeight: 74\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 047\r\nAddress2: \r\nBarangay: TALUMPOK WEST\r\nBasicInformationId: 3743\r\nBirthDate: November 19, 1990\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marie.montalbo001@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIE\r\nFullName: MARIE A. MONTALBO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MONTALBO\r\nMaidenName: \r\nMiddleName: ALMAREZ\r\nMobileNumber: 09564780615\r\nNationality: Filipino\r\nPermanentAddress1: 047\r\nPermanentAddress2: \r\nPermanentBarangay: TALUMPOK WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO GUINTO\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO GUINTO\r\nTIN: \r\nWeight: 74\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768764	2025-03-13	09:21:12.9034379	<Undetected>	Update	BasicInformationId: 3743\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3801\r\nExtensionName: \r\nFirstName: JOSELITO DONDON\r\nFullName: JOSELITO DONDON ANTENOR MONTALBO\r\nGender: Male\r\nLastName: MONTALBO\r\nMaidenName: \r\nMiddleName: ANTENOR\r\nOccupation: PIPEFITTER\r\nRelationship: Husband\r\n	BasicInformationId: 3743\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3801\r\nExtensionName: \r\nFirstName: JOSELITO DONDON\r\nFullName: JOSELITO DONDON MONTALBO\r\nGender: Male\r\nLastName: MONTALBO\r\nMaidenName: \r\nMiddleName: ANTENOR\r\nOccupation: PIPEFITTER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768765	2025-03-13	09:21:12.9074375	<Undetected>	Update	BasicInformationId: 3743\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3802\r\nExtensionName: \r\nFirstName: ENRIQUE\r\nFullName: ENRIQUE CAY ALMAREZ\r\nGender: Male\r\nLastName: ALMAREZ\r\nMaidenName: \r\nMiddleName: CAY\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3743\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3802\r\nExtensionName: \r\nFirstName: ENRIQUE\r\nFullName: ENRIQUE ALMAREZ\r\nGender: Male\r\nLastName: ALMAREZ\r\nMaidenName: \r\nMiddleName: CAY\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
768766	2025-03-13	09:21:12.9124380	<Undetected>	Update	BasicInformationId: 3743\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3803\r\nExtensionName: \r\nFirstName: CASIANA\r\nFullName: CASIANA RAMIREZ SARMIENTO\r\nGender: Female\r\nLastName: SARMIENTO\r\nMaidenName: \r\nMiddleName: RAMIREZ\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3743\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3803\r\nExtensionName: \r\nFirstName: CASIANA\r\nFullName: CASIANA SARMIENTO\r\nGender: Female\r\nLastName: SARMIENTO\r\nMaidenName: \r\nMiddleName: RAMIREZ\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
768767	2025-03-13	09:21:12.9164375	<Undetected>	Update	BasicInformationId: 3743\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3540\r\n	BasicInformationId: 3743\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3540\r\n	admin	Questionnaires	1
768768	2025-03-13	09:22:44.6503376	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: PUROK 2\r\nAddress2: ARAGO COMPOUND\r\nBarangay: DALIG\r\nBasicInformationId: 0\r\nBirthDate: June 02, 1969\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mariadina.goot@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIA DINA\r\nFullName: MARIA DINA R. GOOT\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7814619\r\nLastName: GOOT\r\nMaidenName: \r\nMiddleName: RAMOS\r\nMobileNumber: 09205921236\r\nNationality: Filipino\r\nPermanentAddress1: PUROK 2\r\nPermanentAddress2: ARAGO COMPOUND\r\nPermanentBarangay: DALIG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 95\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768769	2025-03-13	09:22:44.6664612	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3744\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
768770	2025-03-13	09:24:30.0515214	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3744\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 7814619\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROMULO\r\nFullName: ROMULO BOBADILLA GOOT\r\nGender: Male\r\nLastName: GOOT\r\nMaidenName: \r\nMiddleName: BOBADILLA\r\nOccupation: SELF-EMPLOYED\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768771	2025-03-13	09:24:30.0565045	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3744\r\nBirthDate: September 13, 1993\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROSE DELL\r\nFullName: ROSE DELL RAMOS GOOT\r\nGender: Male\r\nLastName: GOOT\r\nMaidenName: \r\nMiddleName: RAMOS\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768772	2025-03-13	09:24:30.0604909	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3744\r\nBirthDate: September 10, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RIA DELL\r\nFullName: RIA DELL RAMOS GOOT\r\nGender: Male\r\nLastName: GOOT\r\nMaidenName: \r\nMiddleName: RAMOS\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768773	2025-03-13	09:24:30.0704579	<Undetected>	Update	BasicInformationId: 3744\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3541\r\n	BasicInformationId: 3744\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3541\r\n	admin	Questionnaires	1
768774	2025-03-13	09:26:47.7492790	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3744\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1976\r\nDateTo: 1982\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS CITY EAST ELEMENTARY SCHOOL\r\nYearGraduated: 1982\r\n	admin	EducationalBackgrounds	1
768775	2025-03-13	09:26:47.7602419	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3744\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1982\r\nDateTo: 1986\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGE\r\nYearGraduated: 1986\r\n	admin	EducationalBackgrounds	1
768776	2025-03-13	09:26:47.7652254	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3744\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1986\r\nDateTo: 1990\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: ST. BRIDGET COLLEGE\r\nYearGraduated: 1990\r\n	admin	EducationalBackgrounds	1
768777	2025-03-13	09:26:47.7731987	<Undetected>	Update	BasicInformationId: 3744\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 7814619\r\nEmployeeRelativeId: 3804\r\nExtensionName: \r\nFirstName: ROMULO\r\nFullName: ROMULO BOBADILLA GOOT\r\nGender: Male\r\nLastName: GOOT\r\nMaidenName: \r\nMiddleName: BOBADILLA\r\nOccupation: SELF-EMPLOYED\r\nRelationship: Husband\r\n	BasicInformationId: 3744\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 7814619\r\nEmployeeRelativeId: 3804\r\nExtensionName: \r\nFirstName: ROMULO\r\nFullName: ROMULO GOOT\r\nGender: Male\r\nLastName: GOOT\r\nMaidenName: \r\nMiddleName: BOBADILLA\r\nOccupation: SELF-EMPLOYED\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768778	2025-03-13	09:26:47.7781819	<Undetected>	Update	BasicInformationId: 3744\r\nBirthDate: September 13, 1993\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3805\r\nExtensionName: \r\nFirstName: ROSE DELL\r\nFullName: ROSE DELL RAMOS GOOT\r\nGender: Male\r\nLastName: GOOT\r\nMaidenName: \r\nMiddleName: RAMOS\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3744\r\nBirthDate: September 13, 1993\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3805\r\nExtensionName: \r\nFirstName: ROSE DELL\r\nFullName: ROSE DELL GOOT\r\nGender: Male\r\nLastName: GOOT\r\nMaidenName: \r\nMiddleName: RAMOS\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768779	2025-03-13	09:26:47.7831653	<Undetected>	Update	BasicInformationId: 3744\r\nBirthDate: September 10, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3806\r\nExtensionName: \r\nFirstName: RIA DELL\r\nFullName: RIA DELL RAMOS GOOT\r\nGender: Male\r\nLastName: GOOT\r\nMaidenName: \r\nMiddleName: RAMOS\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3744\r\nBirthDate: September 10, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3806\r\nExtensionName: \r\nFirstName: RIA DELL\r\nFullName: RIA DELL GOOT\r\nGender: Male\r\nLastName: GOOT\r\nMaidenName: \r\nMiddleName: RAMOS\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768780	2025-03-13	09:28:21.9856491	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: BEST IN COMPREHENSIVE EXAM\r\nBasicInformationId: 3744\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2007\r\nDateTo: 2023\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: ELEMENTARY EDUCATION\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2023\r\n	admin	EducationalBackgrounds	1
768781	2025-03-13	09:31:00.7508257	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: PUROK 2\r\nAddress2: ARAGO COMPOUND\r\nBarangay: DALIG\r\nBasicInformationId: 3744\r\nBirthDate: June 02, 1969\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mariadina.goot@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIA DINA\r\nFullName: MARIA DINA R. GOOT\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7814619\r\nLastName: GOOT\r\nMaidenName: \r\nMiddleName: RAMOS\r\nMobileNumber: 09205921236\r\nNationality: Filipino\r\nPermanentAddress1: PUROK 2\r\nPermanentAddress2: ARAGO COMPOUND\r\nPermanentBarangay: DALIG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 95\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: PUROK 2\r\nAddress2: ARAGO COMPOUND\r\nBarangay: DALIG\r\nBasicInformationId: 3744\r\nBirthDate: June 02, 1969\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mariadina.goot@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIA DINA\r\nFullName: MARIA DINA R. GOOT\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: 4263950\r\nGovernmentIdPlaceIssued: BATANGAS CITY\r\nGovernmentIssuedId: DEPED ID\r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7814619\r\nLastName: GOOT\r\nMaidenName: \r\nMiddleName: RAMOS\r\nMobileNumber: 09205921236\r\nNationality: Filipino\r\nPermanentAddress1: PUROK 2\r\nPermanentAddress2: ARAGO COMPOUND\r\nPermanentBarangay: DALIG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 105-681-443-0000\r\nWeight: 95\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768782	2025-03-13	09:31:59.6227279	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3744\r\nCharacterReferenceId: 0\r\nCompanyAddress: CONDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: GEMMA\r\nLastName: DE TORRES\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768783	2025-03-13	09:31:59.6277114	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3744\r\nCharacterReferenceId: 0\r\nCompanyAddress: TALUMPOK, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: YOLANDA\r\nLastName: BANAAG\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768784	2025-03-13	09:31:59.6326949	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3744\r\nCharacterReferenceId: 0\r\nCompanyAddress: TULO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: MARIFE\r\nLastName: FRANE\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768785	2025-03-13	09:33:53.5575324	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3744\r\nDateOfExamination: November 10, 1991\r\nDateOfRelease: June 02, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: November 10, 1991\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0241495\r\nPlaceOfExamination: BATANGAS NATIONAL HIGH SCHOOL\r\nRating: 73.75\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
768786	2025-03-13	09:33:53.5665022	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3744\r\nDateOfExamination: July 28, 1991\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: July 28, 1991\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS NATIONAL HIGH SCHOOL\r\nRating: 80.78\r\nTitle: CAREER SERVICE PROFESSIONAL\r\n	admin	Eligibilities	1
768787	2025-03-13	09:36:04.8087188	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3744\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 35,049.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
768788	2025-03-13	09:36:04.8137022	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3744\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 33,499.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
768789	2025-03-13	09:36:04.8186854	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3744\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,949.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
768790	2025-03-13	09:36:04.8226721	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3744\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 16, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 30,427.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
768791	2025-03-13	09:38:49.8318678	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3744\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 30,111.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: November 15, 2022\r\n	admin	Experiences	1
768792	2025-03-13	09:38:49.8358544	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3744\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 28,589.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
768793	2025-03-13	09:38:49.8408378	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3744\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 27,067.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
768794	2025-03-13	09:38:49.8458211	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3744\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 15, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 25,545.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
768795	2025-03-13	09:38:49.8508043	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3744\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 25,232.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: November 14, 2019\r\n	admin	Experiences	1
768796	2025-03-13	09:38:49.8547910	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3744\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 24,224.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
768797	2025-03-13	09:40:32.8416808	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3744\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 23,257.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
768798	2025-03-13	09:40:32.8466642	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3744\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 15, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 22,328.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
768799	2025-03-13	09:40:32.8506495	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3744\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 21,091.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: November 14, 2016\r\n	admin	Experiences	1
768800	2025-03-13	09:40:32.8566312	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3744\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 14, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 20,341.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
768801	2025-03-13	09:41:50.6087418	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3743\r\nDateOfExamination: September 25, 2011\r\nDateOfRelease: November 19, 2024\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 25, 2011\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1123914\r\nPlaceOfExamination: LUCENA CITY, PHILIPPINES\r\nRating: 77.80\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
768802	2025-03-13	09:41:50.6137420	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3743\r\nCompanyInstitution: DEPED BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,733.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: March 13, 2025\r\n	admin	Experiences	1
768803	2025-03-13	09:41:50.6187421	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3743\r\nCompanyInstitution: DEPED BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 16, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 33,183.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
768804	2025-03-13	09:41:50.6237422	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3743\r\nCompanyInstitution: DEPED BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: February 15, 2024\r\n	admin	Experiences	1
768805	2025-03-13	09:41:50.6277422	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3743\r\nCompanyInstitution: DEPED BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
770174	2025-03-14	14:46:18.5252445	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3774\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
768806	2025-03-13	09:41:50.6337431	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3743\r\nCompanyInstitution: DEPED BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,798.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
768807	2025-03-13	09:41:50.6397425	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3743\r\nCompanyInstitution: DEPED BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 28,276.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
768808	2025-03-13	09:41:50.6447423	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3743\r\nCompanyInstitution: DEPED BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: November 03, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 26,754.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
768809	2025-03-13	09:41:50.6497422	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3743\r\nCompanyInstitution: DEPED BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,600.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: November 02, 2020\r\n	admin	Experiences	1
768810	2025-03-13	09:41:50.6537422	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3743\r\nCompanyInstitution: DEPED BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: May 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,038.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
768811	2025-03-13	09:41:50.6587422	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3743\r\nCompanyInstitution: DEPED BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: April 30, 2019\r\n	admin	Experiences	1
768812	2025-03-13	09:41:50.6627423	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3743\r\nCompanyInstitution: DEPED BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: March 31, 2018\r\n	admin	Experiences	1
768813	2025-03-13	09:41:50.6677423	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3743\r\nCompanyInstitution: DEPED BATANGAS CITY - TABANGAO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,620.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
768814	2025-03-13	09:41:50.6727425	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3743\r\nCompanyInstitution: DEPED BATANGAS CITY - TABANGAO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Daily\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
768815	2025-03-13	09:41:50.6777422	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3743\r\nCompanyInstitution: DEPED BATANGAS CITY - TABANGAO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: November 24, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
768816	2025-03-13	09:41:50.6817422	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3743\r\nCompanyInstitution: DEPED BATANGAS CITY - TALUMPOK SILANGAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 23, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: March 27, 2015\r\n	admin	Experiences	1
770368	2025-03-17	10:33:13.1289783	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: VIRTUAL IN-SERVICE TRAINING FOR PUBLIC SCHOOL TEACHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768817	2025-03-13	09:41:50.6867422	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3743\r\nCompanyInstitution: DEPED BATANGAS CITY - TALUMPOK SILANGAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: September 16, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: October 10, 2014\r\n	admin	Experiences	1
768828	2025-03-13	09:46:00.2637681	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPACITY BUILDING WORKSHOP ON EVALUATION OF BASIC AND ACTION RESEARCH, ETHICS AND PUBLICATION, CONTINUOUS IMPROVEMENT PROJECTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768831	2025-03-13	09:50:39.2218424	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3743\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16319\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768832	2025-03-13	09:50:39.2268425	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3743\r\nEmployeeTrainingId: 0\r\nFromDate: July 10, 2024\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 12, 2024\r\nTrainingId: 16426\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768833	2025-03-13	09:50:39.2328420	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3743\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPED BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16422\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768834	2025-03-13	09:50:39.2378408	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3743\r\nEmployeeTrainingId: 0\r\nFromDate: March 24, 2023\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPED BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: April 19, 2023\r\nTrainingId: 16422\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768835	2025-03-13	09:50:39.2428423	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3743\r\nEmployeeTrainingId: 0\r\nFromDate: July 25, 2022\r\nHours: 56\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 02, 2022\r\nTrainingId: 16415\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768836	2025-03-13	09:51:10.1189475	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3743\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
768837	2025-03-13	09:51:10.1239480	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3743\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
768838	2025-03-13	09:51:10.1339904	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3743\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
768841	2025-03-13	09:53:31.8119099	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3743\r\nCharacterReferenceId: 0\r\nCompanyAddress: AMBULONG, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09151454687\r\nExtensionName: \r\nFirstName: MARITES\r\nLastName: TARCELO\r\nMiddleName: D.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768842	2025-03-13	09:53:31.8219103	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3743\r\nCharacterReferenceId: 0\r\nCompanyAddress: CONDE ITAAS, BATANGAS CIYT\r\nCompanyName: \r\nContactNumber: 09163109637\r\nExtensionName: \r\nFirstName: GEMMA\r\nLastName: DE TORRES\r\nMiddleName: C.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768843	2025-03-13	09:53:31.8259099	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3743\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN WEST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09547008950\r\nExtensionName: \r\nFirstName: LENY\r\nLastName: BOOL\r\nMiddleName: M.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768846	2025-03-13	09:55:44.2689355	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 047\r\nAddress2: \r\nBarangay: TALUMPOK WEST\r\nBasicInformationId: 3743\r\nBirthDate: November 19, 1990\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marie.montalbo001@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIE\r\nFullName: MARIE A. MONTALBO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MONTALBO\r\nMaidenName: \r\nMiddleName: ALMAREZ\r\nMobileNumber: 09564780615\r\nNationality: Filipino\r\nPermanentAddress1: 047\r\nPermanentAddress2: \r\nPermanentBarangay: TALUMPOK WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO GUINTO\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO GUINTO\r\nTIN: \r\nWeight: 74\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 047\r\nAddress2: \r\nBarangay: TALUMPOK WEST\r\nBasicInformationId: 3743\r\nBirthDate: November 19, 1990\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marie.montalbo001@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIE\r\nFullName: MARIE A. MONTALBO\r\nGender: Female\r\nGovernmentIdIssuedDate: April 08, 2012\r\nGovernmentIdNumber: 1123914\r\nGovernmentIdPlaceIssued: LUCENA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02004626975\r\nHDMF: 1210-1110-6355\r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MONTALBO\r\nMaidenName: \r\nMiddleName: ALMAREZ\r\nMobileNumber: 09564780615\r\nNationality: Filipino\r\nPermanentAddress1: 047\r\nPermanentAddress2: \r\nPermanentBarangay: TALUMPOK WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO GUINTO\r\nPermanentZipCode: 4200\r\nPhilhealth: 00-905030750-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO GUINTO\r\nTIN: 435-492-448-0000\r\nWeight: 74\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768818	2025-03-13	09:43:31.1172255	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3744\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 20,140.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: July 01, 2014\r\n	admin	Experiences	1
768819	2025-03-13	09:43:31.1212122	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3744\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 02, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,568.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
768820	2025-03-13	09:43:31.1261956	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3744\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,333.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: July 01, 2011\r\n	admin	Experiences	1
768821	2025-03-13	09:43:31.1311794	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3744\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 16,726.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
768822	2025-03-13	09:43:31.1361622	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3744\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 15,119.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
768823	2025-03-13	09:43:31.1401490	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3744\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,748.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
768824	2025-03-13	09:45:48.0175779	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3744\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,933.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
768825	2025-03-13	09:45:48.0215643	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3744\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 10, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
768826	2025-03-13	09:45:48.0295376	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3744\r\nCompanyInstitution: MARIAN LEARNING CENTER\r\nExperienceId: 0\r\nFromDate: June 01, 1991\r\nIsGovernmentService: False\r\nMonthlySalary: 7,000.00\r\nPositionHeld: TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: May 31, 2006\r\n	admin	Experiences	1
768827	2025-03-13	09:45:48.0345211	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3744\r\nCompanyInstitution: ST. BRIDGET COLLEGE\r\nExperienceId: 0\r\nFromDate: June 01, 1990\r\nIsGovernmentService: False\r\nMonthlySalary: 3,000.00\r\nPositionHeld: TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: May 01, 1991\r\n	admin	Experiences	1
768829	2025-03-13	09:47:16.3442529	<Undetected>	Update	BasicInformationId: 3744\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11878\r\nFromDate: February 14, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 20,341.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	BasicInformationId: 3744\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11878\r\nFromDate: July 02, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 20,341.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
768830	2025-03-13	09:50:23.0304609	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISON CAPACITY BUILDING FOR GRADES 4-6 ENSCIMA TEACHERS ON THE IMPLEMENTATION OF EOSY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768844	2025-03-13	09:54:13.1076592	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL TRAINING OF RECEIVING TEACHERS ON SNED CONTENT AND PEDAGOGY (BATCH 3)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768845	2025-03-13	09:55:36.5326008	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ETHNOMATHEMATICS AND CULTURALLY RELEVANT MATHEMATICS IN EDUCATION IN THE PHILIPPINES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768847	2025-03-13	09:57:25.6754972	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3744\r\nEmployeeTrainingId: 0\r\nFromDate: November 18, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: November 20, 2024\r\nTrainingId: 16428\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768848	2025-03-13	09:57:25.6804807	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3744\r\nEmployeeTrainingId: 0\r\nFromDate: September 29, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 25, 2024\r\nTrainingId: 16429\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768849	2025-03-13	09:57:25.6854639	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3744\r\nEmployeeTrainingId: 0\r\nFromDate: January 15, 2025\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: January 17, 2025\r\nTrainingId: 16430\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768850	2025-03-13	09:57:25.6898293	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3744\r\nEmployeeTrainingId: 0\r\nFromDate: October 28, 2022\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF SCIENCE AND TECHNOLOGY - SCIENCE EDUCATION INSTITUTE\r\nStatus: \r\nToDate: October 28, 2022\r\nTrainingId: 16431\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768851	2025-03-13	09:57:25.6958113	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3744\r\nEmployeeTrainingId: 0\r\nFromDate: July 25, 2022\r\nHours: 60\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: August 02, 2022\r\nTrainingId: 15577\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768852	2025-03-13	10:00:20.3361817	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3744\r\nSkillId: 0\r\nSkillName: WRITING \r\n	admin	Skills	1
768853	2025-03-13	10:00:20.3411650	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3744\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
768854	2025-03-13	10:00:20.3521284	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3744\r\nSkillId: 0\r\nSkillName: WATCHING VLOG\r\n	admin	Skills	1
768855	2025-03-13	10:00:20.3561149	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3744\r\nRecognitionId: 0\r\nRecognitionName: RECOGNITION FOR HAVING CHAMPIONED THE CAUSE OF AUTHORSHIP AND PUBLICATION IN ALOYSIAAN PUBLICATIONS, NOV-DEC 2022\r\n	admin	Recognitions	1
768856	2025-03-13	10:00:20.3630915	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3744\r\nRecognitionId: 0\r\nRecognitionName: BEST IN COMPREHENSIVE EXAM\r\n	admin	Recognitions	1
768857	2025-03-13	10:00:20.3670782	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3744\r\nRecognitionId: 0\r\nRecognitionName: SCHOOL OUTSTANDING GRADE 6 TEACHER\r\n	admin	Recognitions	1
768858	2025-03-13	10:00:20.3750516	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3744\r\nOrganizationId: 0\r\nOrganizationName: THE EDUCATORS' LINK\r\n	admin	Organizations	1
768859	2025-03-13	10:00:20.3790382	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3744\r\nOrganizationId: 0\r\nOrganizationName: BOYSCOUT OF THE PHILIPPINES \r\n	admin	Organizations	1
768860	2025-03-13	10:00:20.3840215	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3744\r\nOrganizationId: 0\r\nOrganizationName: RACAS - REGIONAL ASSOCIATION OF COMMUNICATION ARTS SUPERVISORS\r\n	admin	Organizations	1
768868	2025-03-13	10:05:04.4711731	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: PUROK 2\r\nAddress2: ARAGO COMPOUND\r\nBarangay: DALIG\r\nBasicInformationId: 3744\r\nBirthDate: June 02, 1969\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mariadina.goot@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIA DINA\r\nFullName: MARIA DINA R. GOOT\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: 4263950\r\nGovernmentIdPlaceIssued: BATANGAS CITY\r\nGovernmentIssuedId: DEPED ID\r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7814619\r\nLastName: GOOT\r\nMaidenName: \r\nMiddleName: RAMOS\r\nMobileNumber: 09205921236\r\nNationality: Filipino\r\nPermanentAddress1: PUROK 2\r\nPermanentAddress2: ARAGO COMPOUND\r\nPermanentBarangay: DALIG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 105-681-443-0000\r\nWeight: 95\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: PUROK 2\r\nAddress2: ARAGO COMPOUND\r\nBarangay: DALIG\r\nBasicInformationId: 3744\r\nBirthDate: June 02, 1969\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mariadina.goot@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIA DINA\r\nFullName: MARIA DINA R. GOOT\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: 4263950\r\nGovernmentIdPlaceIssued: BATANGAS CITY\r\nGovernmentIssuedId: DEPED ID\r\nGSIS: 02002995043\r\nHDMF: 1490-0097-4375\r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7814619\r\nLastName: GOOT\r\nMaidenName: \r\nMiddleName: RAMOS\r\nMobileNumber: 09205921236\r\nNationality: Filipino\r\nPermanentAddress1: PUROK 2\r\nPermanentAddress2: ARAGO COMPOUND\r\nPermanentBarangay: DALIG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050002384-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 105-681-443-0000\r\nWeight: 95\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768919	2025-03-13	10:53:05.4785366	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3745\r\nEmployeeTrainingId: 0\r\nFromDate: February 06, 2023\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: February 10, 2023\r\nTrainingId: 16407\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768861	2025-03-13	10:04:09.7114021	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 0\r\nBirthDate: February 13, 1982\r\nBirthPlace: POBLACION, LOBO, BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mariacecilia.decastro@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIACECILIA\r\nFullName: MARIACECILIA D. DE CASTRO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.51\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: DUENAS\r\nMobileNumber: 09684978356\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: TARNATE ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: TARNATE ST.\r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768862	2025-03-13	10:04:09.7532122	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3745\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 6328138000\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RODEL\r\nFullName: RODEL NAZAR DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: NAZAR\r\nOccupation: SEAFARER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768863	2025-03-13	10:04:09.7532122	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3745\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOSEFINO\r\nFullName: JOSEFINO ELENTO DUENAS\r\nGender: Male\r\nLastName: DUENAS\r\nMaidenName: \r\nMiddleName: ELENTO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
768864	2025-03-13	10:04:09.7542118	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3745\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MERCEDITA\r\nFullName: MERCEDITA ENDAYA ALCANTARA\r\nGender: Female\r\nLastName: ALCANTARA\r\nMaidenName: \r\nMiddleName: ENDAYA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
768865	2025-03-13	10:04:09.7542118	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3745\r\nBirthDate: June 07, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: KEVIN JAMES\r\nFullName: KEVIN JAMES DUENAS DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: DUENAS\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768866	2025-03-13	10:04:09.7552104	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3745\r\nBirthDate: August 03, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: KHAIDEN JACOB\r\nFullName: KHAIDEN JACOB DUENAS DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: DUENAS\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768867	2025-03-13	10:04:09.7552104	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3745\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
768869	2025-03-13	10:07:37.9636539	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3745\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1988\r\nDateTo: 1994\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BANSUD CENTRAL SCHOOL\r\nYearGraduated: 1994\r\n	admin	EducationalBackgrounds	1
768870	2025-03-13	10:07:37.9676539	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3745\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 1998\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: MASAGUTSIT BANALO NATIONAL HIGH SCHOOL\r\nYearGraduated: 1998\r\n	admin	EducationalBackgrounds	1
768871	2025-03-13	10:07:37.9786538	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3745\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1998\r\nDateTo: 2002\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 2002\r\n	admin	EducationalBackgrounds	1
768872	2025-03-13	10:07:37.9826540	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3745\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2016\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
768930	2025-03-13	10:56:32.3374899	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3745\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN WEST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 723 7361\r\nExtensionName: \r\nFirstName: LENY\r\nLastName: BOOL\r\nMiddleName: M.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768873	2025-03-13	10:07:37.9946548	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3745\r\nBirthDate: February 13, 1982\r\nBirthPlace: POBLACION, LOBO, BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mariacecilia.decastro@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIACECILIA\r\nFullName: MARIACECILIA D. DE CASTRO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.51\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: DUENAS\r\nMobileNumber: 09684978356\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: TARNATE ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: TARNATE ST.\r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3745\r\nBirthDate: February 13, 1982\r\nBirthPlace: POBLACION, LOBO, BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mariacecilia.decastro@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIACECILIA\r\nFullName: MARIACECILIA D. DE CASTRO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.51\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: DUENAS\r\nMobileNumber: 09684978356\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: TARNATE ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: TARNATE ST.\r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768874	2025-03-13	10:07:38.0056538	<Undetected>	Update	BasicInformationId: 3745\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 6328138000\r\nEmployeeRelativeId: 3807\r\nExtensionName: \r\nFirstName: RODEL\r\nFullName: RODEL NAZAR DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: NAZAR\r\nOccupation: SEAFARER\r\nRelationship: Husband\r\n	BasicInformationId: 3745\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 6328138000\r\nEmployeeRelativeId: 3807\r\nExtensionName: \r\nFirstName: RODEL\r\nFullName: RODEL DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: NAZAR\r\nOccupation: SEAFARER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768875	2025-03-13	10:07:38.0256537	<Undetected>	Update	BasicInformationId: 3745\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3808\r\nExtensionName: \r\nFirstName: JOSEFINO\r\nFullName: JOSEFINO ELENTO DUENAS\r\nGender: Male\r\nLastName: DUENAS\r\nMaidenName: \r\nMiddleName: ELENTO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3745\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3808\r\nExtensionName: \r\nFirstName: JOSEFINO\r\nFullName: JOSEFINO DUENAS\r\nGender: Male\r\nLastName: DUENAS\r\nMaidenName: \r\nMiddleName: ELENTO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
768876	2025-03-13	10:07:38.0338051	<Undetected>	Update	BasicInformationId: 3745\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3809\r\nExtensionName: \r\nFirstName: MERCEDITA\r\nFullName: MERCEDITA ENDAYA ALCANTARA\r\nGender: Female\r\nLastName: ALCANTARA\r\nMaidenName: \r\nMiddleName: ENDAYA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3745\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3809\r\nExtensionName: \r\nFirstName: MERCEDITA\r\nFullName: MERCEDITA ALCANTARA\r\nGender: Female\r\nLastName: ALCANTARA\r\nMaidenName: \r\nMiddleName: ENDAYA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
768877	2025-03-13	10:07:38.0388008	<Undetected>	Update	BasicInformationId: 3745\r\nBirthDate: June 07, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3810\r\nExtensionName: \r\nFirstName: KEVIN JAMES\r\nFullName: KEVIN JAMES DUENAS DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: DUENAS\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3745\r\nBirthDate: June 07, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3810\r\nExtensionName: \r\nFirstName: KEVIN JAMES\r\nFullName: KEVIN JAMES DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: DUENAS\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768878	2025-03-13	10:07:38.0427605	<Undetected>	Update	BasicInformationId: 3745\r\nBirthDate: August 03, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3811\r\nExtensionName: \r\nFirstName: KHAIDEN JACOB\r\nFullName: KHAIDEN JACOB DUENAS DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: DUENAS\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3745\r\nBirthDate: August 03, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3811\r\nExtensionName: \r\nFirstName: KHAIDEN JACOB\r\nFullName: KHAIDEN JACOB DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: DUENAS\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768879	2025-03-13	10:07:38.0477605	<Undetected>	Update	BasicInformationId: 3745\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3542\r\n	BasicInformationId: 3745\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3542\r\n	admin	Questionnaires	1
768880	2025-03-13	10:10:54.0483123	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3745\r\nDateOfExamination: August 25, 2002\r\nDateOfRelease: February 13, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 25, 2002\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0780611\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 76.80\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
768881	2025-03-13	10:10:54.0563127	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3745\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,733.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: March 13, 2025\r\n	admin	Experiences	1
768920	2025-03-13	10:53:05.4835369	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3745\r\nEmployeeTrainingId: 0\r\nFromDate: August 18, 2022\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 18, 2022\r\nTrainingId: 16434\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768882	2025-03-13	10:10:54.0613125	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3745\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
768883	2025-03-13	10:22:02.7798721	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 04\r\nAddress2: \r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3742\r\nBirthDate: January 19, 1966\r\nBirthPlace: LOBO BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: leny.bool@deped.gov.ph\r\nExtensionName: \r\nFirstName: LENY\r\nFullName: LENY M. BOOL\r\nGender: Female\r\nGovernmentIdIssuedDate: October 30, 1996\r\nGovernmentIdNumber: 0009136\r\nGovernmentIdPlaceIssued: MANILA PHILIPPINES\r\nGovernmentIssuedId: PRC\r\nGSIS: \r\nHDMF: 1490-0083-8569\r\nHeight: 1.51\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BOOL\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nMobileNumber: 09189649408\r\nNationality: Filipino\r\nPermanentAddress1: 04\r\nPermanentAddress2: \r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: QUINIO\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000007373-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: QUINIO\r\nTIN: 124-516-319-0000\r\nWeight: 59\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 04\r\nAddress2: \r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3742\r\nBirthDate: January 19, 1966\r\nBirthPlace: LOBO BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: leny.bool@deped.gov.ph\r\nExtensionName: \r\nFirstName: LENY\r\nFullName: LENY M. BOOL\r\nGender: Female\r\nGovernmentIdIssuedDate: October 30, 1996\r\nGovernmentIdNumber: 0009136\r\nGovernmentIdPlaceIssued: MANILA PHILIPPINES\r\nGovernmentIssuedId: PRC\r\nGSIS: 02002991603\r\nHDMF: 1490-0083-8569\r\nHeight: 1.51\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BOOL\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nMobileNumber: 09189649408\r\nNationality: Filipino\r\nPermanentAddress1: 04\r\nPermanentAddress2: \r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: QUINIO\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000007373-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: QUINIO\r\nTIN: 124-516-319-0000\r\nWeight: 59\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768884	2025-03-13	10:27:09.2125363	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BILOGO\r\nBasicInformationId: 3732\r\nBirthDate: September 06, 1994\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: louielyn.bonsol@deped.gov.ph\r\nExtensionName: \r\nFirstName: LOUIELYN\r\nFullName: LOUIELYN G. BONSOL\r\nGender: Female\r\nGovernmentIdIssuedDate: December 23, 2016\r\nGovernmentIdNumber: 1515146\r\nGovernmentIdPlaceIssued: PRC LUCENA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02005433643\r\nHDMF: 1211-7238-5877\r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BONSOL\r\nMaidenName: \r\nMiddleName: GAYAGAYA\r\nMobileNumber: 09163045509\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BILOGO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 328-790-931-0000\r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BILOGO\r\nBasicInformationId: 3732\r\nBirthDate: September 06, 1994\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: louielyn.bonsol@deped.gov.ph\r\nExtensionName: \r\nFirstName: LOUIELYN\r\nFullName: LOUIELYN G. BONSOL\r\nGender: Female\r\nGovernmentIdIssuedDate: December 23, 2016\r\nGovernmentIdNumber: 1515146\r\nGovernmentIdPlaceIssued: PRC LUCENA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02005433643\r\nHDMF: 1211-7238-5877\r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BONSOL\r\nMaidenName: \r\nMiddleName: GAYAGAYA\r\nMobileNumber: 09163045509\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BILOGO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-250188176-9\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 328-790-931-0000\r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768885	2025-03-13	10:44:54.5185818	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3745\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
768886	2025-03-13	10:44:54.5255820	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3745\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: October 03, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,798.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
768887	2025-03-13	10:44:54.5295818	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3745\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,439.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: October 02, 2022\r\n	admin	Experiences	1
768888	2025-03-13	10:44:54.5365816	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3745\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 23,877.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: March 31, 2021\r\n	admin	Experiences	1
768889	2025-03-13	10:44:54.5405814	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3745\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 24, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,316.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
768890	2025-03-13	10:44:54.5475817	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3745\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 24,486.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: August 23, 2020\r\n	admin	Experiences	1
768921	2025-03-13	10:54:01.0774295	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3745\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
768922	2025-03-13	10:54:01.0885601	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3745\r\nRecognitionId: 0\r\nRecognitionName: GIRL SCOUT SERVICE AWARD 2019\r\n	admin	Recognitions	1
768891	2025-03-13	10:44:54.5517612	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3745\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 22,938.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
768892	2025-03-13	10:44:54.5587176	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3745\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO\r\nExperienceId: 0\r\nFromDate: October 03, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 22,149.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
768893	2025-03-13	10:44:54.5627168	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3745\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 21,231.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-6\r\nStatus: Permanent\r\nToDate: October 02, 2018\r\n	admin	Experiences	1
768894	2025-03-13	10:44:54.5697175	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3745\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 20,567.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-6\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
768895	2025-03-13	10:44:54.5747164	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3745\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,925.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-5\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
768896	2025-03-13	10:44:54.5807165	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3745\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO\r\nExperienceId: 0\r\nFromDate: January 01, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 19,111.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-5\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
768897	2025-03-13	10:44:54.5857167	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3745\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO\r\nExperienceId: 0\r\nFromDate: October 05, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 20,567.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-5\r\nStatus: Permanent\r\nToDate: December 31, 2014\r\n	admin	Experiences	1
768898	2025-03-13	10:44:54.5917167	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3745\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO\r\nExperienceId: 0\r\nFromDate: August 04, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 20,567.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-5\r\nStatus: Permanent\r\nToDate: October 04, 2014\r\n	admin	Experiences	1
768899	2025-03-13	10:44:54.5967697	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3745\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO\r\nExperienceId: 0\r\nFromDate: September 01, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 20,567.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-5\r\nStatus: Permanent\r\nToDate: August 03, 2014\r\n	admin	Experiences	1
768900	2025-03-13	10:44:54.6038192	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3745\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 18,922.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-4\r\nStatus: Permanent\r\nToDate: August 31, 2013\r\n	admin	Experiences	1
768901	2025-03-13	10:44:54.6078654	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3745\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 17,540.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-4\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
768923	2025-03-13	10:54:01.0926027	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3745\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
768902	2025-03-13	10:44:54.6118620	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3745\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 16,157.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-3\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
768903	2025-03-13	10:44:54.6188166	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3745\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO\r\nExperienceId: 0\r\nFromDate: January 01, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 14,775.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-3\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
768904	2025-03-13	10:44:54.6228166	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3745\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 14,198.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-3\r\nStatus: Permanent\r\nToDate: December 31, 2009\r\n	admin	Experiences	1
768905	2025-03-13	10:44:54.6298167	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3745\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO\r\nExperienceId: 0\r\nFromDate: September 22, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,026.00\r\nPositionHeld: TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-2\r\nStatus: Permanent\r\nToDate: November 20, 2008\r\n	admin	Experiences	1
768906	2025-03-13	10:44:54.6338167	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3745\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,026.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-2\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
768907	2025-03-13	10:44:54.6408166	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3745\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,933.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
768908	2025-03-13	10:44:54.6448171	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3745\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO\r\nExperienceId: 0\r\nFromDate: January 13, 2003\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
768909	2025-03-13	10:48:42.2402485	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT II TRAINING ON EARLY LANGUAGE LITERACY AND NUMERACY (ELLN) PROGRAM FOR KINDERGARTEN TO GRADE 3 TEACHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768910	2025-03-13	10:49:53.9433538	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ANTI-DRUG ADVOCACY CAMPAIGN\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768915	2025-03-13	10:52:33.6726667	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SUSTAINING TEACHING STRATEGIES IN A POST PANDEMIC BLENDED LEARNING ENVIRONMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768916	2025-03-13	10:53:05.4635369	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3745\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16404\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768917	2025-03-13	10:53:05.4685366	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3745\r\nEmployeeTrainingId: 0\r\nFromDate: March 04, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 04, 2024\r\nTrainingId: 16432\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768918	2025-03-13	10:53:05.4735369	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3745\r\nEmployeeTrainingId: 0\r\nFromDate: February 22, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: February 22, 2024\r\nTrainingId: 16433\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768911	2025-03-13	10:50:45.4946091	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 58\r\nAddress2: \r\nBarangay: BARANGAY 2\r\nBasicInformationId: 0\r\nBirthDate: October 05, 1994\r\nBirthPlace: METRO MANILA\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mariaclarissafernandez0105@gmail.com\r\nExtensionName: \r\nFirstName: MARIA CLARISSA\r\nFullName: MARIA CLARISSA M. FERNANDEZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: FERNANDEZ\r\nMaidenName: \r\nMiddleName: MAGADIA\r\nMobileNumber: 09086758844\r\nNationality: Filipino\r\nPermanentAddress1: 58\r\nPermanentAddress2: \r\nPermanentBarangay: BARANGAY 2\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: MH DEL PILAR STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: MH DEL PILAR STREET\r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768912	2025-03-13	10:50:45.5053234	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3746\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
768913	2025-03-13	10:52:18.1089782	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3746\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JAYSER\r\nFullName: JAYSER AGTONONG FERNANDEZ\r\nGender: Male\r\nLastName: FERNANDEZ\r\nMaidenName: \r\nMiddleName: AGTONONG\r\nOccupation: GRAPHIC ARTIST\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768914	2025-03-13	10:52:18.1129649	<Undetected>	Update	BasicInformationId: 3746\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3543\r\n	BasicInformationId: 3746\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3543\r\n	admin	Questionnaires	1
768924	2025-03-13	10:54:04.2764259	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3746\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS \r\nYearGraduated: 2007\r\n	admin	EducationalBackgrounds	1
768925	2025-03-13	10:54:04.2804124	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3746\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2008\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
768926	2025-03-13	10:54:04.2913757	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3746\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 2015\r\nDateTo: 2019\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: COLEGIO NG LUNGSOD NG BATANGAS \r\nYearGraduated: 2019\r\n	admin	EducationalBackgrounds	1
768927	2025-03-13	10:54:04.2953623	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3746\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2021\r\nDateTo: 2025\r\nEducationalAttainment: 18 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: EDUCATIONAL MANAGEMENT \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
768928	2025-03-13	10:54:04.3023391	<Undetected>	Update	BasicInformationId: 3746\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3812\r\nExtensionName: \r\nFirstName: JAYSER\r\nFullName: JAYSER AGTONONG FERNANDEZ\r\nGender: Male\r\nLastName: FERNANDEZ\r\nMaidenName: \r\nMiddleName: AGTONONG\r\nOccupation: GRAPHIC ARTIST\r\nRelationship: Husband\r\n	BasicInformationId: 3746\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3812\r\nExtensionName: \r\nFirstName: JAYSER\r\nFullName: JAYSER FERNANDEZ\r\nGender: Male\r\nLastName: FERNANDEZ\r\nMaidenName: \r\nMiddleName: AGTONONG\r\nOccupation: GRAPHIC ARTIST\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768929	2025-03-13	10:55:59.1435868	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 58\r\nAddress2: \r\nBarangay: BARANGAY 2\r\nBasicInformationId: 3746\r\nBirthDate: October 05, 1994\r\nBirthPlace: METRO MANILA\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mariaclarissafernandez0105@gmail.com\r\nExtensionName: \r\nFirstName: MARIA CLARISSA\r\nFullName: MARIA CLARISSA M. FERNANDEZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: FERNANDEZ\r\nMaidenName: \r\nMiddleName: MAGADIA\r\nMobileNumber: 09086758844\r\nNationality: Filipino\r\nPermanentAddress1: 58\r\nPermanentAddress2: \r\nPermanentBarangay: BARANGAY 2\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: MH DEL PILAR STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: MH DEL PILAR STREET\r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 58\r\nAddress2: \r\nBarangay: BARANGAY 2\r\nBasicInformationId: 3746\r\nBirthDate: October 05, 1994\r\nBirthPlace: METRO MANILA\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mariaclarissafernandez0105@gmail.com\r\nExtensionName: \r\nFirstName: MARIA CLARISSA\r\nFullName: MARIA CLARISSA M. FERNANDEZ\r\nGender: Female\r\nGovernmentIdIssuedDate: December 16, 2019\r\nGovernmentIdNumber: 1803681\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02006569668\r\nHDMF: 1211-2772-6259\r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: FERNANDEZ\r\nMaidenName: \r\nMiddleName: MAGADIA\r\nMobileNumber: 09086758844\r\nNationality: Filipino\r\nPermanentAddress1: 58\r\nPermanentAddress2: \r\nPermanentBarangay: BARANGAY 2\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: MH DEL PILAR STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050425265-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-2981880-2\r\nStreetName: MH DEL PILAR STREET\r\nTIN: 457-925-465-0000\r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768931	2025-03-13	10:56:32.3424901	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3745\r\nCharacterReferenceId: 0\r\nCompanyAddress: AMBULONG, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09151454687\r\nExtensionName: \r\nFirstName: MARITES \r\nLastName: TARCELO\r\nMiddleName: D.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768932	2025-03-13	10:56:32.3494901	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3745\r\nCharacterReferenceId: 0\r\nCompanyAddress: DALIG, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09186126205\r\nExtensionName: \r\nFirstName: LOIDA\r\nLastName: ALUAN\r\nMiddleName: R.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768936	2025-03-13	10:57:58.3858787	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3745\r\nBirthDate: February 13, 1982\r\nBirthPlace: POBLACION, LOBO, BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mariacecilia.decastro@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIACECILIA\r\nFullName: MARIACECILIA D. DE CASTRO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.51\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: DUENAS\r\nMobileNumber: 09684978356\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: TARNATE ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: TARNATE ST.\r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3745\r\nBirthDate: February 13, 1982\r\nBirthPlace: POBLACION, LOBO, BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mariacecilia.decastro@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIACECILIA\r\nFullName: MARIACECILIA D. DE CASTRO\r\nGender: Female\r\nGovernmentIdIssuedDate: November 18, 2022\r\nGovernmentIdNumber: 0780611\r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: PRC\r\nGSIS: 06010987191\r\nHDMF: 1490-0093-9000\r\nHeight: 1.51\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: DUENAS\r\nMobileNumber: 09684978356\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: TARNATE ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000060301-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: TARNATE ST.\r\nTIN: 934-310-495-0000\r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768947	2025-03-13	11:06:36.9149269	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 1212\r\nAddress2: SITIO LAMAO\r\nBarangay: LIBJO\r\nBasicInformationId: 0\r\nBirthDate: June 04, 1973\r\nBirthPlace: LABRADOR PANGASINAN\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: elma_escarez@yahoo.com\r\nExtensionName: \r\nFirstName: ELMA\r\nFullName: ELMA O. ESCAREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 4024327\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: OXINA\r\nMobileNumber: 09454803809\r\nNationality: Filipino\r\nPermanentAddress1: 1212\r\nPermanentAddress2: SITIO LAMAO\r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ST. JOSEPH\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: ST. JOSEPH\r\nTIN: \r\nWeight: 52\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768948	2025-03-13	11:06:36.9961853	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3747\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 7232928\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ARIEL\r\nFullName: ARIEL RUSTIA ESCAREZ\r\nGender: Male\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: RUSTIA\r\nOccupation: GOVERNMENT EMPLOYEE\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768949	2025-03-13	11:06:36.9971819	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3747\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ARMANDO\r\nFullName: ARMANDO AVILA OXINA\r\nGender: Male\r\nLastName: OXINA\r\nMaidenName: \r\nMiddleName: AVILA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
768950	2025-03-13	11:06:36.9971819	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3747\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ILUMINADA\r\nFullName: ILUMINADA MANAOIS RESOSO\r\nGender: Female\r\nLastName: RESOSO\r\nMaidenName: \r\nMiddleName: MANAOIS\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
768951	2025-03-13	11:06:36.9971819	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3747\r\nBirthDate: May 12, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ARJEL EIRON\r\nFullName: ARJEL EIRON OXINA ESCAREZ\r\nGender: Male\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: OXINA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768952	2025-03-13	11:06:36.9971819	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3747\r\nBirthDate: July 13, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ARIELLE SHAINE\r\nFullName: ARIELLE SHAINE OXINA ESCAREZ\r\nGender: Female\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: OXINA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768953	2025-03-13	11:06:36.9981801	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3747\r\nBirthDate: April 12, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALTHER JOHN\r\nFullName: ALTHER JOHN OXINA ESCAREZ\r\nGender: Male\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: OXINA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768933	2025-03-13	10:57:29.6650899	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3746\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09178559641\r\nExtensionName: \r\nFirstName: CHARITY\r\nLastName: MAANO\r\nMiddleName: GARCIA\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768934	2025-03-13	10:57:29.6700731	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3746\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN PASCUAL BATANGAS\r\nCompanyName: \r\nContactNumber: 09452083413\r\nExtensionName: \r\nFirstName: MARY JOY\r\nLastName: ALAMANG\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768935	2025-03-13	10:57:29.6770499	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3746\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09954289623\r\nExtensionName: \r\nFirstName: MARILOU\r\nLastName: CUSTODIO\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
768937	2025-03-13	10:58:22.8291933	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3746\r\nDateOfExamination: September 01, 2019\r\nDateOfRelease: October 05, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 01, 2019\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1803681\r\nPlaceOfExamination: LUCENA CITY \r\nRating: 79\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
768938	2025-03-13	11:01:35.1473829	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3746\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 07, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,024.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
768939	2025-03-13	11:01:35.1553557	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3746\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 06, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: December 13, 2024\r\n	admin	Experiences	1
768940	2025-03-13	11:01:35.1703056	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3746\r\nCompanyInstitution: GARDNER SCHOOL OF MULTIPLE INTELLIGENCES\r\nExperienceId: 0\r\nFromDate: July 01, 2021\r\nIsGovernmentService: False\r\nMonthlySalary: 15,000.00\r\nPositionHeld: TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: May 30, 2024\r\n	admin	Experiences	1
768941	2025-03-13	11:01:35.1882458	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3746\r\nCompanyInstitution: CALSR INTERACTIVE\r\nExperienceId: 0\r\nFromDate: February 28, 2020\r\nIsGovernmentService: False\r\nMonthlySalary: 10,000.00\r\nPositionHeld: ONLINE ENGLISH TUTOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: March 15, 2021\r\n	admin	Experiences	1
768942	2025-03-13	11:02:12.1870599	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL TRAINING ON EDUCATIONAL TECHNOLOGY TOOLS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768943	2025-03-13	11:03:05.3801008	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EDUCATIONAL RESOURCES FOR REMOTE TEACHING AND LEARNING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768944	2025-03-13	11:03:57.7008179	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INSTRUCTIONAL DESIGN IN REMOTE TEACHING ANG LEARNING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768945	2025-03-13	11:04:51.6744817	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TECHNOLOGIES IN REMOTE TEACHING AND LEARNING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768946	2025-03-13	11:06:01.4934787	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PLANNING AND DESIGNING AND DEVELOPING COURSE MATERIALS FOR FLEXIBLE LEARNING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
768956	2025-03-13	11:06:41.2340543	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3746\r\nEmployeeTrainingId: 0\r\nFromDate: April 03, 2024\r\nHours: 80\r\nNatureOfParticipation: \r\nSponsoringAgency: EDTECH TEACHER TRAINING CENTER\r\nStatus: \r\nToDate: April 12, 2024\r\nTrainingId: 16435\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769009	2025-03-13	11:26:37.8221929	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT SCHOOL IN-SERVICE TRAINING 2024\r\nTrainingId: 0\r\nType:  TECHNICAL\r\n	admin	Trainings	1
768954	2025-03-13	11:06:36.9981801	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3747\r\nBirthDate: May 02, 2012\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ERIEL SEAN\r\nFullName: ERIEL SEAN OXINA ESCAREZ\r\nGender: Male\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: OXINA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768955	2025-03-13	11:06:36.9981801	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3747\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
768970	2025-03-13	11:09:04.5446457	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: THIRD HONOR\r\nBasicInformationId: 3747\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1985\r\nDateTo: 1986\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE SCHOOL\r\nYearGraduated: 1986\r\n	admin	EducationalBackgrounds	1
768971	2025-03-13	11:09:04.5496461	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3747\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1986\r\nDateTo: 1990\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1990\r\n	admin	EducationalBackgrounds	1
768972	2025-03-13	11:09:04.5626458	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3747\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1990\r\nDateTo: 1994\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGE\r\nYearGraduated: 1994\r\n	admin	EducationalBackgrounds	1
768973	2025-03-13	11:09:04.5746467	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 1212\r\nAddress2: SITIO LAMAO\r\nBarangay: LIBJO\r\nBasicInformationId: 3747\r\nBirthDate: June 04, 1973\r\nBirthPlace: LABRADOR PANGASINAN\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: elma_escarez@yahoo.com\r\nExtensionName: \r\nFirstName: ELMA\r\nFullName: ELMA O. ESCAREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 4024327\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: OXINA\r\nMobileNumber: 09454803809\r\nNationality: Filipino\r\nPermanentAddress1: 1212\r\nPermanentAddress2: SITIO LAMAO\r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ST. JOSEPH\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: ST. JOSEPH\r\nTIN: \r\nWeight: 52\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 1212\r\nAddress2: SITIO LAMAO\r\nBarangay: LIBJO\r\nBasicInformationId: 3747\r\nBirthDate: June 04, 1973\r\nBirthPlace: LABRADOR PANGASINAN\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: elma_escarez@yahoo.com\r\nExtensionName: \r\nFirstName: ELMA\r\nFullName: ELMA O. ESCAREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 4024327\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: OXINA\r\nMobileNumber: 09454803809\r\nNationality: Filipino\r\nPermanentAddress1: 1212\r\nPermanentAddress2: SITIO LAMAO\r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ST. JOSEPH\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ST. JOSEPH\r\nTIN: \r\nWeight: 52\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768974	2025-03-13	11:09:04.5955743	<Undetected>	Update	BasicInformationId: 3747\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 7232928\r\nEmployeeRelativeId: 3813\r\nExtensionName: \r\nFirstName: ARIEL\r\nFullName: ARIEL RUSTIA ESCAREZ\r\nGender: Male\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: RUSTIA\r\nOccupation: GOVERNMENT EMPLOYEE\r\nRelationship: Husband\r\n	BasicInformationId: 3747\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 7232928\r\nEmployeeRelativeId: 3813\r\nExtensionName: \r\nFirstName: ARIEL\r\nFullName: ARIEL ESCAREZ\r\nGender: Male\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: RUSTIA\r\nOccupation: GOVERNMENT EMPLOYEE\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768975	2025-03-13	11:09:04.6005744	<Undetected>	Update	BasicInformationId: 3747\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3814\r\nExtensionName: \r\nFirstName: ARMANDO\r\nFullName: ARMANDO AVILA OXINA\r\nGender: Male\r\nLastName: OXINA\r\nMaidenName: \r\nMiddleName: AVILA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3747\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3814\r\nExtensionName: \r\nFirstName: ARMANDO\r\nFullName: ARMANDO OXINA\r\nGender: Male\r\nLastName: OXINA\r\nMaidenName: \r\nMiddleName: AVILA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
768976	2025-03-13	11:09:04.6077271	<Undetected>	Update	BasicInformationId: 3747\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3815\r\nExtensionName: \r\nFirstName: ILUMINADA\r\nFullName: ILUMINADA MANAOIS RESOSO\r\nGender: Female\r\nLastName: RESOSO\r\nMaidenName: \r\nMiddleName: MANAOIS\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3747\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3815\r\nExtensionName: \r\nFirstName: ILUMINADA\r\nFullName: ILUMINADA RESOSO\r\nGender: Female\r\nLastName: RESOSO\r\nMaidenName: \r\nMiddleName: MANAOIS\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
768977	2025-03-13	11:09:04.6117239	<Undetected>	Update	BasicInformationId: 3747\r\nBirthDate: May 12, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3816\r\nExtensionName: \r\nFirstName: ARJEL EIRON\r\nFullName: ARJEL EIRON OXINA ESCAREZ\r\nGender: Male\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: OXINA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3747\r\nBirthDate: May 12, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3816\r\nExtensionName: \r\nFirstName: ARJEL EIRON\r\nFullName: ARJEL EIRON ESCAREZ\r\nGender: Male\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: OXINA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769044	2025-03-13	11:38:31.4187568	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3748\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: January 29, 2024\r\nTrainingId: 16440\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768957	2025-03-13	11:06:41.2380410	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3746\r\nEmployeeTrainingId: 0\r\nFromDate: July 02, 2020\r\nHours: 2\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY\r\nStatus: \r\nToDate: July 02, 2020\r\nTrainingId: 15997\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768958	2025-03-13	11:06:41.2440211	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3746\r\nEmployeeTrainingId: 0\r\nFromDate: July 02, 2020\r\nHours: 2\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY\r\nStatus: \r\nToDate: July 02, 2020\r\nTrainingId: 16437\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768959	2025-03-13	11:06:41.2480079	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3746\r\nEmployeeTrainingId: 0\r\nFromDate: June 08, 2020\r\nHours: 2\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY\r\nStatus: \r\nToDate: June 08, 2020\r\nTrainingId: 16438\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768960	2025-03-13	11:06:41.2529910	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3746\r\nEmployeeTrainingId: 0\r\nFromDate: June 08, 2020\r\nHours: 2\r\nNatureOfParticipation: \r\nSponsoringAgency: PHILIPPINE ASSOCIATIONN FOR TEACHERS & EDUCATORS\r\nStatus: \r\nToDate: June 08, 2020\r\nTrainingId: 16439\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
768961	2025-03-13	11:07:50.0809917	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 73A\r\nAddress2: \r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 0\r\nBirthDate: December 15, 1979\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RUEL.DE CASTRO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RUEL\r\nFullName: RUEL B. DE CASTRO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.72\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7848020\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: BALMES\r\nMobileNumber: 09563977545\r\nNationality: Filipino\r\nPermanentAddress1: 73A\r\nPermanentAddress2: \r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: GUSI\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: GUSI\r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768962	2025-03-13	11:07:50.1877338	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: 8th HONOR\r\nBasicInformationId: 3748\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1986\r\nDateTo: 1992\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nYearGraduated: 1992\r\n	admin	EducationalBackgrounds	1
768963	2025-03-13	11:07:50.1877338	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: STUDENT ASSISTANT\r\nBasicInformationId: 3748\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1998\r\nDateTo: 2002\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: SAINT BRIDGET COLLEGE\r\nYearGraduated: 2002\r\n	admin	EducationalBackgrounds	1
768964	2025-03-13	11:07:50.1877338	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3748\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1992\r\nDateTo: 1996\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1996\r\n	admin	EducationalBackgrounds	1
768965	2025-03-13	11:07:50.1877338	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3748\r\nCourse: \r\nCourseId: 1338\r\nCourseOrMajor: \r\nDateFrom: 2017\r\nDateTo: 2023\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: PHILIPPINE COLLEGE OF HEALTH SCIENCES, INC.\r\nYearGraduated: 2023\r\n	admin	EducationalBackgrounds	1
768966	2025-03-13	11:07:50.1887328	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3748\r\nBirthDate: April 10, 1999\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MATT RIVEN\r\nFullName: MATT RIVEN DE REAL BEDIO\r\nGender: Male\r\nLastName: BEDIO\r\nMaidenName: \r\nMiddleName: DE REAL\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768967	2025-03-13	11:07:50.1937323	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3748\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
769079	2025-03-13	11:47:41.0680341	<Undetected>	Update	BasicInformationId: 3750\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3547\r\n	BasicInformationId: 3750\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3547\r\n	admin	Questionnaires	1
768968	2025-03-13	11:08:47.9247470	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BALETE\r\nBasicInformationId: 0\r\nBirthDate: July 24, 1986\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marychristine.liwag@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARY CHRISTINE\r\nFullName: MARY CHRISTINE P. LIWAG\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: LIWAG\r\nMaidenName: \r\nMiddleName: PEREZ\r\nMobileNumber: 09971854151\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BALETE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 56\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768969	2025-03-13	11:08:47.9347316	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3749\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
768987	2025-03-13	11:16:28.0350210	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3749\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 0434300100\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JEFFERSON MAR\r\nFullName: JEFFERSON MAR MIRANO LIWAG\r\nGender: Male\r\nLastName: LIWAG\r\nMaidenName: \r\nMiddleName: MIRANO\r\nOccupation: CUSTOMER SERVICE REPRESENTATIVE\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768988	2025-03-13	11:16:28.0390077	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3749\r\nBirthDate: May 03, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARTIN GENARO\r\nFullName: MARTIN GENARO PEREZ LIWAG\r\nGender: Male\r\nLastName: LIWAG\r\nMaidenName: \r\nMiddleName: PEREZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768989	2025-03-13	11:16:28.0429943	<Undetected>	Update	BasicInformationId: 3749\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3546\r\n	BasicInformationId: 3749\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3546\r\n	admin	Questionnaires	1
768991	2025-03-13	11:18:09.0632822	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3749\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1993\r\nDateTo: 1999\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 1999\r\n	admin	EducationalBackgrounds	1
768992	2025-03-13	11:18:09.0752422	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3749\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1999\r\nDateTo: 2003\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2003\r\n	admin	EducationalBackgrounds	1
768993	2025-03-13	11:18:09.0792287	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: SANGGUNIANG KABATAAN STUDY GRANT\r\nBasicInformationId: 3749\r\nCourse: \r\nCourseId: 1250\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2007\r\n	admin	EducationalBackgrounds	1
768994	2025-03-13	11:18:09.0891954	<Undetected>	Update	BasicInformationId: 3749\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 0434300100\r\nEmployeeRelativeId: 3821\r\nExtensionName: \r\nFirstName: JEFFERSON MAR\r\nFullName: JEFFERSON MAR MIRANO LIWAG\r\nGender: Male\r\nLastName: LIWAG\r\nMaidenName: \r\nMiddleName: MIRANO\r\nOccupation: CUSTOMER SERVICE REPRESENTATIVE\r\nRelationship: Husband\r\n	BasicInformationId: 3749\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 0434300100\r\nEmployeeRelativeId: 3821\r\nExtensionName: \r\nFirstName: JEFFERSON MAR\r\nFullName: JEFFERSON MAR LIWAG\r\nGender: Male\r\nLastName: LIWAG\r\nMaidenName: \r\nMiddleName: MIRANO\r\nOccupation: CUSTOMER SERVICE REPRESENTATIVE\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768995	2025-03-13	11:18:09.0931820	<Undetected>	Update	BasicInformationId: 3749\r\nBirthDate: May 03, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3822\r\nExtensionName: \r\nFirstName: MARTIN GENARO\r\nFullName: MARTIN GENARO PEREZ LIWAG\r\nGender: Male\r\nLastName: LIWAG\r\nMaidenName: \r\nMiddleName: PEREZ\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3749\r\nBirthDate: May 03, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3822\r\nExtensionName: \r\nFirstName: MARTIN GENARO\r\nFullName: MARTIN GENARO LIWAG\r\nGender: Male\r\nLastName: LIWAG\r\nMaidenName: \r\nMiddleName: PEREZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769011	2025-03-13	11:27:22.7250930	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3749\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 18,784.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III (SENIOR BOOKKEEPER)\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
768978	2025-03-13	11:09:04.6197245	<Undetected>	Update	BasicInformationId: 3747\r\nBirthDate: July 13, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3817\r\nExtensionName: \r\nFirstName: ARIELLE SHAINE\r\nFullName: ARIELLE SHAINE OXINA ESCAREZ\r\nGender: Female\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: OXINA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3747\r\nBirthDate: July 13, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3817\r\nExtensionName: \r\nFirstName: ARIELLE SHAINE\r\nFullName: ARIELLE SHAINE ESCAREZ\r\nGender: Female\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: OXINA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768979	2025-03-13	11:09:04.6237228	<Undetected>	Update	BasicInformationId: 3747\r\nBirthDate: April 12, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3818\r\nExtensionName: \r\nFirstName: ALTHER JOHN\r\nFullName: ALTHER JOHN OXINA ESCAREZ\r\nGender: Male\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: OXINA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3747\r\nBirthDate: April 12, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3818\r\nExtensionName: \r\nFirstName: ALTHER JOHN\r\nFullName: ALTHER JOHN ESCAREZ\r\nGender: Male\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: OXINA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768980	2025-03-13	11:09:04.6287220	<Undetected>	Update	BasicInformationId: 3747\r\nBirthDate: May 02, 2012\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3819\r\nExtensionName: \r\nFirstName: ERIEL SEAN\r\nFullName: ERIEL SEAN OXINA ESCAREZ\r\nGender: Male\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: OXINA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3747\r\nBirthDate: May 02, 2012\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3819\r\nExtensionName: \r\nFirstName: ERIEL SEAN\r\nFullName: ERIEL SEAN ESCAREZ\r\nGender: Male\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: OXINA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
768981	2025-03-13	11:09:04.6326818	<Undetected>	Update	BasicInformationId: 3747\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3544\r\n	BasicInformationId: 3747\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3544\r\n	admin	Questionnaires	1
768990	2025-03-13	11:17:38.4331172	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3747\r\nDateOfExamination: \r\nDateOfRelease: April 19, 1999\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 621110\r\nPlaceOfExamination: PANDACAN, MANILA\r\nRating: 76.2\r\nTitle: PBET\r\n	admin	Eligibilities	1
769021	2025-03-13	11:36:33.7892508	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3747\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,733.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: March 13, 2025\r\n	admin	Experiences	1
769022	2025-03-13	11:36:33.7952513	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3747\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: April 12, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 33,183.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
769023	2025-03-13	11:36:33.7992513	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3747\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: April 11, 2024\r\n	admin	Experiences	1
769024	2025-03-13	11:36:33.8042511	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3747\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 31, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
769025	2025-03-13	11:36:33.8082508	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3747\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 06, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 29,798.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
769026	2025-03-13	11:36:33.8132508	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3747\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 10, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 27,210.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: February 05, 2021\r\n	admin	Experiences	1
769041	2025-03-13	11:38:31.4007586	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3748\r\nSkillId: 0\r\nSkillName: DRIVING MOTORCYCLE\r\n	admin	Skills	1
769042	2025-03-13	11:38:31.4057570	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3748\r\nRecognitionId: 0\r\nRecognitionName: GOLD MERIT AWARDEE BOY SCOUT OF THE PHILIPPINES\r\n	admin	Recognitions	1
768982	2025-03-13	11:11:10.1022565	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3748\r\nDateOfExamination: August 01, 2002\r\nDateOfRelease: December 15, 2024\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 01, 2002\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0756399\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 78.60\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
768983	2025-03-13	11:11:10.1082589	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 73A\r\nAddress2: \r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3748\r\nBirthDate: December 15, 1979\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RUEL.DE CASTRO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RUEL\r\nFullName: RUEL B. DE CASTRO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.72\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7848020\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: BALMES\r\nMobileNumber: 09563977545\r\nNationality: Filipino\r\nPermanentAddress1: 73A\r\nPermanentAddress2: \r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: GUSI\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: GUSI\r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 73A\r\nAddress2: \r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3748\r\nBirthDate: December 15, 1979\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RUEL.DE CASTRO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RUEL\r\nFullName: RUEL B. DE CASTRO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.72\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7848020\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: BALMES\r\nMobileNumber: 09563977545\r\nNationality: Filipino\r\nPermanentAddress1: 73A\r\nPermanentAddress2: \r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: GUSI\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: GUSI\r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768984	2025-03-13	11:11:10.1192568	<Undetected>	Update	BasicInformationId: 3748\r\nBirthDate: April 10, 1999\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3820\r\nExtensionName: \r\nFirstName: MATT RIVEN\r\nFullName: MATT RIVEN DE REAL BEDIO\r\nGender: Male\r\nLastName: BEDIO\r\nMaidenName: \r\nMiddleName: DE REAL\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3748\r\nBirthDate: April 10, 1999\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3820\r\nExtensionName: \r\nFirstName: MATT RIVEN\r\nFullName: MATT RIVEN BEDIO\r\nGender: Male\r\nLastName: BEDIO\r\nMaidenName: \r\nMiddleName: DE REAL\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
768985	2025-03-13	11:11:10.1242574	<Undetected>	Update	BasicInformationId: 3748\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3545\r\n	BasicInformationId: 3748\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3545\r\n	admin	Questionnaires	1
768986	2025-03-13	11:11:42.4114038	<Undetected>	Delete	BasicInformationId: 3748\r\nBirthDate: April 10, 1999\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3820\r\nExtensionName: \r\nFirstName: MATT RIVEN\r\nFullName: MATT RIVEN BEDIO\r\nGender: Male\r\nLastName: BEDIO\r\nMaidenName: \r\nMiddleName: DE REAL\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	admin	EmployeeRelatives	1
768998	2025-03-13	11:21:41.1902425	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3748\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 17, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 63,841.00\r\nPositionHeld: PRINCIPAL II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-2\r\nStatus: Permanent\r\nToDate: January 01, 2025\r\n	admin	Experiences	1
768999	2025-03-13	11:21:41.1952425	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3748\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 02, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 46,791.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: August 16, 2020\r\n	admin	Experiences	1
769000	2025-03-13	11:21:41.2002424	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3748\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 13, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 24,224.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: July 01, 2018\r\n	admin	Experiences	1
769001	2025-03-13	11:21:41.2052428	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3748\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 18, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 20,651.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 12, 2016\r\n	admin	Experiences	1
769002	2025-03-13	11:21:41.2092425	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3748\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 14, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 18,735.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: November 17, 2013\r\n	admin	Experiences	1
769043	2025-03-13	11:38:31.4147588	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3748\r\nOrganizationId: 0\r\nOrganizationName: COUNCIL STAFF BATANGAS CITY COUNCIL\r\n	admin	Organizations	1
768996	2025-03-13	11:19:52.1569816	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BALETE\r\nBasicInformationId: 3749\r\nBirthDate: July 24, 1986\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marychristine.liwag@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARY CHRISTINE\r\nFullName: MARY CHRISTINE P. LIWAG\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: LIWAG\r\nMaidenName: \r\nMiddleName: PEREZ\r\nMobileNumber: 09971854151\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BALETE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 56\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BALETE\r\nBasicInformationId: 3749\r\nBirthDate: July 24, 1986\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marychristine.liwag@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARY CHRISTINE\r\nFullName: MARY CHRISTINE P. LIWAG\r\nGender: Female\r\nGovernmentIdIssuedDate: February 10, 2019\r\nGovernmentIdNumber: D01-19-001856\r\nGovernmentIdPlaceIssued: BATANGAS CITY\r\nGovernmentIssuedId: DRIVER'S LICENSE\r\nGSIS: 02003404453\r\nHDMF: 1210-0536-5365\r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: LIWAG\r\nMaidenName: \r\nMiddleName: PEREZ\r\nMobileNumber: 09971854151\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BALETE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 00-305038253-9\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1884453-1\r\nStreetName: \r\nTIN: 255-262-931-0000\r\nWeight: 56\r\nZipCode: 4200\r\n	admin	BasicInformation	1
768997	2025-03-13	11:20:55.3858787	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3749\r\nDateOfExamination: December 03, 2017\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: December 03, 2017\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS CITY, BATANGAS\r\nRating: 85.4\r\nTitle: CARRER SERVICE PROFESSIONAL EXAM\r\n	admin	Eligibilities	1
769003	2025-03-13	11:23:21.3405873	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3749\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,308.00\r\nPositionHeld: ADMINISTRATIVE OFFICER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
769004	2025-03-13	11:23:21.3475638	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3749\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 08, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,796.00\r\nPositionHeld: ADMINISTRATIVE OFFICER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
769005	2025-03-13	11:23:21.3515505	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3749\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: ADMINISTRATIVE OFFICER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: November 07, 2024\r\n	admin	Experiences	1
769006	2025-03-13	11:23:21.3565338	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3749\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: ADMINISTRATIVE OFFICER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
769007	2025-03-13	11:24:38.6820096	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3749\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,439.00\r\nPositionHeld: ADMINISTRATIVE OFFICER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
769008	2025-03-13	11:24:38.6869929	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3749\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 08, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 23,877.00\r\nPositionHeld: ADMINISTRATIVE OFFICER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
769010	2025-03-13	11:27:22.7211063	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3749\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 19,757.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III (SENIOR BOOKKEEPER)\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-2\r\nStatus: Permanent\r\nToDate: November 07, 2021\r\n	admin	Experiences	1
769186	2025-03-13	13:38:45.1216374	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 DISTRICT SCHOOL BASED MANAGEMENT CONVERGENCE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769012	2025-03-13	11:27:22.7300764	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3749\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 17,975.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III (SENIOR BOOKKEEPER)\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
769013	2025-03-13	11:27:22.7350597	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3749\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 17,473.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III (SENIOR BOOKKEEPER)\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
769014	2025-03-13	11:30:20.0807417	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3749\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 18, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 16,986.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III (SENIOR BOOKKEEPER)\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
769015	2025-03-13	11:30:20.0847286	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3749\r\nCompanyInstitution: MERCURY GROUP OF COMPANIES INC.\r\nExperienceId: 0\r\nFromDate: July 01, 2015\r\nIsGovernmentService: False\r\nMonthlySalary: 33,345.00\r\nPositionHeld: MERCURY GROUP PROVIDENT FUND MANAGER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: October 23, 2016\r\n	admin	Experiences	1
769016	2025-03-13	11:30:20.0927018	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3749\r\nCompanyInstitution: MERCURY GROUP OF COMPANIES INC.\r\nExperienceId: 0\r\nFromDate: January 01, 2010\r\nIsGovernmentService: False\r\nMonthlySalary: 27,614.00\r\nPositionHeld: MERCURY GROUP PROVIDENT FUND SUPERVISOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: June 30, 2015\r\n	admin	Experiences	1
769017	2025-03-13	11:30:20.0966887	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3749\r\nCompanyInstitution: MERCURY GROUP OF COMPANIES INC.\r\nExperienceId: 0\r\nFromDate: October 16, 2007\r\nIsGovernmentService: False\r\nMonthlySalary: 11,319.00\r\nPositionHeld: MERCURY GROUP PROVIDENT FUND GENERAL CLERK I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: December 31, 2009\r\n	admin	Experiences	1
769018	2025-03-13	11:32:53.2569351	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BUCAL ELEMENTARY SCHOOL ORGANIZATIONAL STRENGTHENING ON GENDER MAINSTREAMING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769019	2025-03-13	11:34:27.2508388	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WRITESHOP ON ENHANCEMENT AND UPDATING OF CONTINGENCY PLAN\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769020	2025-03-13	11:35:37.9507879	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON THE GUIDELINES ON THE IMPLEMENTATION OF SCHOOL-BASED FEEDING PROGRAM (SBFP) FOR SY 2023-2024\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769047	2025-03-13	11:39:02.3131203	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3749\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: November 22, 2024\r\nTrainingId: 16441\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769048	2025-03-13	11:39:02.3210936	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3749\r\nEmployeeTrainingId: 0\r\nFromDate: September 19, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY - BUCAL EAST ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: September 19, 2024\r\nTrainingId: 16442\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769049	2025-03-13	11:39:02.3260770	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3749\r\nEmployeeTrainingId: 0\r\nFromDate: August 16, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 16, 2024\r\nTrainingId: 16443\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769050	2025-03-13	11:39:02.3310603	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3749\r\nEmployeeTrainingId: 0\r\nFromDate: May 15, 2023\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: May 17, 2023\r\nTrainingId: 15046\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769027	2025-03-13	11:36:33.8182509	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3747\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 25,653.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
769028	2025-03-13	11:36:33.8232532	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3747\r\nCompanyInstitution: NEW DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 24,096.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
769029	2025-03-13	11:36:33.8272524	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3747\r\nCompanyInstitution: NEW DISTRICT\r\nExperienceId: 0\r\nFromDate: February 06, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 23,212.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
769030	2025-03-13	11:36:33.8322524	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3747\r\nCompanyInstitution: NEW DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 22,942.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: February 05, 2018\r\n	admin	Experiences	1
769031	2025-03-13	11:36:33.8372524	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3747\r\nCompanyInstitution: NEW DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 22,113.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
769032	2025-03-13	11:36:33.8422939	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3747\r\nCompanyInstitution: NEW DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 22,113.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
769033	2025-03-13	11:36:33.8462524	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3747\r\nCompanyInstitution: NEW DISTRICT\r\nExperienceId: 0\r\nFromDate: February 06, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 21,315.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
769034	2025-03-13	11:36:33.8512922	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3747\r\nCompanyInstitution: NEW DISTRICT\r\nExperienceId: 0\r\nFromDate: February 05, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 20,545.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: June 01, 2015\r\n	admin	Experiences	1
769035	2025-03-13	11:36:33.8562520	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3747\r\nCompanyInstitution: NEW DISTRICT\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 20,341.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: February 05, 2015\r\n	admin	Experiences	1
769036	2025-03-13	11:36:33.8612519	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3747\r\nCompanyInstitution: NEW DISTRICT\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,805.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
769037	2025-03-13	11:36:33.8652512	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3747\r\nCompanyInstitution: NEW DISTRICT \r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 17,269.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
769038	2025-03-13	11:36:33.8702513	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3747\r\nCompanyInstitution: NEW DISTRICT\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 15,733.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
769039	2025-03-13	11:36:33.8742513	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3747\r\nCompanyInstitution: VERDE ISLAD DISTRICT\r\nExperienceId: 0\r\nFromDate: January 02, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 13,391.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
769040	2025-03-13	11:36:33.8792513	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3747\r\nCompanyInstitution: VERDE ISLAD DISTRICT\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 13,066.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: January 01, 2009\r\n	admin	Experiences	1
769064	2025-03-13	11:46:12.8718298	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3747\r\nCompanyInstitution: NEW DISTRICT\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 11,878.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
769065	2025-03-13	11:46:12.8768299	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3747\r\nCompanyInstitution: WEST DISTRICT\r\nExperienceId: 0\r\nFromDate: February 01, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 10,798.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
769066	2025-03-13	11:46:12.8818284	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3747\r\nCompanyInstitution: WEST DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 10,704.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: January 31, 2006\r\n	admin	Experiences	1
769067	2025-03-13	11:46:12.8868284	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3747\r\nCompanyInstitution: WEST DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 10,422.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2004\r\n	admin	Experiences	1
769068	2025-03-13	11:46:12.8918717	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3747\r\nCompanyInstitution: WEST DISTRICT\r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2001\r\n	admin	Experiences	1
769069	2025-03-13	11:46:12.8968288	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3747\r\nCompanyInstitution: WEST DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 01, 2001\r\n	admin	Experiences	1
769070	2025-03-13	11:46:12.9008287	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3747\r\nCompanyInstitution: NEW DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
769071	2025-03-13	11:46:12.9058288	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3747\r\nCompanyInstitution: NEW DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1998\r\n	admin	Experiences	1
769072	2025-03-13	11:46:12.9098289	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3747\r\nCompanyInstitution: NEW DISTRICT\r\nExperienceId: 0\r\nFromDate: November 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1997\r\n	admin	Experiences	1
769073	2025-03-13	11:46:12.9158288	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3747\r\nCompanyInstitution: NEW DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 7,309.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: March 31, 1997\r\n	admin	Experiences	1
769045	2025-03-13	11:38:31.4237564	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3748\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN WEST, BATANGA CITY\r\nCompanyName: \r\nContactNumber: 09369563520\r\nExtensionName: \r\nFirstName: MARISSA\r\nLastName: AGTAY\r\nMiddleName: C.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769046	2025-03-13	11:38:31.4287564	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 73A\r\nAddress2: \r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3748\r\nBirthDate: December 15, 1979\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RUEL.DE CASTRO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RUEL\r\nFullName: RUEL B. DE CASTRO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.72\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7848020\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: BALMES\r\nMobileNumber: 09563977545\r\nNationality: Filipino\r\nPermanentAddress1: 73A\r\nPermanentAddress2: \r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: GUSI\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: GUSI\r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 73A\r\nAddress2: \r\nBarangay: PALLOCAN WEST\r\nBasicInformationId: 3748\r\nBirthDate: December 15, 1979\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RUEL.DE CASTRO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RUEL\r\nFullName: RUEL B. DE CASTRO\r\nGender: Male\r\nGovernmentIdIssuedDate: December 15, 2032\r\nGovernmentIdNumber: DO1-12-003558\r\nGovernmentIdPlaceIssued: BATANGAS CITY\r\nGovernmentIssuedId: DRIVERS LICENSE\r\nGSIS: 20034493439\r\nHDMF: 1210-3734-4935\r\nHeight: 1.72\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7848020\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: BALMES\r\nMobileNumber: 09563977545\r\nNationality: Filipino\r\nPermanentAddress1: 73A\r\nPermanentAddress2: \r\nPermanentBarangay: PALLOCAN WEST\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: GUSI\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050078904-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1272073-2\r\nStreetName: GUSI\r\nTIN: 929-373-581-0000\r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769051	2025-03-13	11:39:02.3350470	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3749\r\nEmployeeTrainingId: 0\r\nFromDate: August 17, 2021\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 19, 2021\r\nTrainingId: 15054\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769052	2025-03-13	11:41:03.7944470	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3749\r\nSkillId: 0\r\nSkillName: ACCOUNTING/AUDIT PROCEDURES\r\n	admin	Skills	1
769053	2025-03-13	11:41:03.7984336	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3749\r\nSkillId: 0\r\nSkillName: MS OFFICE APPLICATIONS \r\n	admin	Skills	1
769054	2025-03-13	11:41:03.8084005	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3749\r\nSkillId: 0\r\nSkillName: READING BOOKS/NOVELS\r\n	admin	Skills	1
769055	2025-03-13	11:41:03.8133836	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3749\r\nSkillId: 0\r\nSkillName: WATCHING MOVIES/KDRAMAS\r\n	admin	Skills	1
769056	2025-03-13	11:41:03.8193636	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3749\r\nRecognitionId: 0\r\nRecognitionName: LOYALTY AWARD - BATANGAS STATE UNIVERSITY (2007)\r\n	admin	Recognitions	1
769057	2025-03-13	11:41:03.8243469	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3749\r\nRecognitionId: 0\r\nRecognitionName: MOST OUTSTANDING NON-TEACHING PERSONNEL - DISTRICT 1 SY 2020-2021\r\n	admin	Recognitions	1
769058	2025-03-13	11:41:03.8313236	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3749\r\nOrganizationId: 0\r\nOrganizationName: DEPARMENT OF EDUCATION - NATIONAL EMPLOYEES UNION\r\n	admin	Organizations	1
769059	2025-03-13	11:44:15.4796007	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3749\r\nCharacterReferenceId: 0\r\nCompanyAddress: SOROSORO KARSADA. BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09195979838\r\nExtensionName: \r\nFirstName: MARISSA\r\nLastName: MACATANGAY\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769060	2025-03-13	11:44:15.4835874	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3749\r\nCharacterReferenceId: 0\r\nCompanyAddress: ILIJAN, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175019796\r\nExtensionName: \r\nFirstName: LEONILA\r\nLastName: BOOL\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769061	2025-03-13	11:44:15.4905639	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3749\r\nCharacterReferenceId: 0\r\nCompanyAddress: BALETE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09982003126\r\nExtensionName: \r\nFirstName: DATIVA\r\nLastName: BRETON\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769062	2025-03-13	11:46:08.6399142	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 266\r\nAddress2: \r\nBarangay: BUKAL\r\nBasicInformationId: 0\r\nBirthDate: February 05, 1970\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ailyn.plata@deped.gov.ph\r\nExtensionName: \r\nFirstName: AILYN\r\nFullName: AILYN L. PLATA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.46\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PLATA\r\nMaidenName: \r\nMiddleName: LAGMAN\r\nMobileNumber: 09915447122\r\nNationality: Filipino\r\nPermanentAddress1: 266\r\nPermanentAddress2: \r\nPermanentBarangay: BUKAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 53\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769063	2025-03-13	11:46:08.6504449	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3750\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
769076	2025-03-13	11:47:41.0490975	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3750\r\nBirthDate: May 13, 1993\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CHRISTIAN PAUL\r\nFullName: CHRISTIAN PAUL LAGMAN PLATA\r\nGender: Male\r\nLastName: PLATA\r\nMaidenName: \r\nMiddleName: LAGMAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769077	2025-03-13	11:47:41.0540808	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3750\r\nBirthDate: August 06, 1995\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOHN PAUL\r\nFullName: JOHN PAUL LAGMAN PLATA\r\nGender: Male\r\nLastName: PLATA\r\nMaidenName: \r\nMiddleName: LAGMAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769078	2025-03-13	11:47:41.0580674	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3750\r\nBirthDate: January 22, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ADRIAN NINO\r\nFullName: ADRIAN NINO LAGMAN PLATA\r\nGender: Male\r\nLastName: PLATA\r\nMaidenName: \r\nMiddleName: LAGMAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769074	2025-03-13	11:46:12.9198288	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3747\r\nCompanyInstitution: NEW DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 6,913.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: March 31, 1996\r\n	admin	Experiences	1
769075	2025-03-13	11:47:06.0502116	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MATATAG MASTER CLASSES FOR GRADE 7 TEACHERS ACROSS ALL LEARNING AREAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769084	2025-03-13	11:49:22.5621378	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: IKA-7 KONGRESO NG CALABARZON PASATAF\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769085	2025-03-13	11:50:48.0308457	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ENGAGING SCHOOL LEADERS & TEACHERS IN NAVIGATION ACROSS LEARNING AREAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769086	2025-03-13	11:51:43.6715922	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ENGAGING SCHOOL LEADERS & TEACHERS IN NAVIGATION APPLICATION / COMMUNICATION PLATFORMS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769087	2025-03-13	11:53:03.1042672	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3747\r\nEmployeeTrainingId: 0\r\nFromDate: November 24, 2024\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16444\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769088	2025-03-13	11:53:03.1122694	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3747\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16394\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769089	2025-03-13	11:53:03.1162684	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3747\r\nEmployeeTrainingId: 0\r\nFromDate: August 29, 2020\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: August 29, 2020\r\nTrainingId: 16445\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769090	2025-03-13	11:53:03.1212684	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3747\r\nEmployeeTrainingId: 0\r\nFromDate: March 01, 2021\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: March 05, 2021\r\nTrainingId: 16447\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769091	2025-03-13	11:53:03.1262686	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3747\r\nEmployeeTrainingId: 0\r\nFromDate: November 23, 2021\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: November 25, 2021\r\nTrainingId: 15821\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769096	2025-03-13	11:56:10.5088721	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3747\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
769097	2025-03-13	11:56:10.5160231	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3747\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
769098	2025-03-13	11:56:10.5210205	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3747\r\nOrganizationId: 0\r\nOrganizationName: MTMA\r\n	admin	Organizations	1
769099	2025-03-13	11:56:10.5279768	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3747\r\nOrganizationId: 0\r\nOrganizationName: GSIS\r\n	admin	Organizations	1
769100	2025-03-13	11:56:10.5329763	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3747\r\nOrganizationId: 0\r\nOrganizationName: PPSTA\r\n	admin	Organizations	1
769101	2025-03-13	11:56:10.5369763	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3747\r\nOrganizationId: 0\r\nOrganizationName: BSP\r\n	admin	Organizations	1
769102	2025-03-13	11:56:10.5419763	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3747\r\nOrganizationId: 0\r\nOrganizationName: PAG-IBIG\r\n	admin	Organizations	1
769103	2025-03-13	11:56:10.5459763	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3747\r\nCharacterReferenceId: 0\r\nCompanyAddress: CONDE LABAC, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09163109637\r\nExtensionName: \r\nFirstName: GEMMA\r\nLastName: DE TORRES\r\nMiddleName: C.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769104	2025-03-13	11:56:10.5509763	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3747\r\nCharacterReferenceId: 0\r\nCompanyAddress: AMBULONG, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09151454687\r\nExtensionName: \r\nFirstName: MARITES\r\nLastName: TARCELO\r\nMiddleName: D.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769105	2025-03-13	11:56:10.5549762	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3747\r\nCharacterReferenceId: 0\r\nCompanyAddress: DUMANTAY, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09208580783\r\nExtensionName: \r\nFirstName: ETHEL\r\nLastName: LUALHATI\r\nMiddleName: M.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769080	2025-03-13	11:48:17.9672263	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3750\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CARLITO\r\nFullName: CARLITO AGUILERA PLATA\r\nGender: Male\r\nLastName: PLATA\r\nMaidenName: \r\nMiddleName: AGUILERA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
769081	2025-03-13	11:48:17.9771931	<Undetected>	Update	BasicInformationId: 3750\r\nBirthDate: May 13, 1993\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3823\r\nExtensionName: \r\nFirstName: CHRISTIAN PAUL\r\nFullName: CHRISTIAN PAUL LAGMAN PLATA\r\nGender: Male\r\nLastName: PLATA\r\nMaidenName: \r\nMiddleName: LAGMAN\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3750\r\nBirthDate: May 13, 1993\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3823\r\nExtensionName: \r\nFirstName: CHRISTIAN PAUL\r\nFullName: CHRISTIAN PAUL PLATA\r\nGender: Male\r\nLastName: PLATA\r\nMaidenName: \r\nMiddleName: LAGMAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769082	2025-03-13	11:48:17.9821763	<Undetected>	Update	BasicInformationId: 3750\r\nBirthDate: August 06, 1995\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3824\r\nExtensionName: \r\nFirstName: JOHN PAUL\r\nFullName: JOHN PAUL LAGMAN PLATA\r\nGender: Male\r\nLastName: PLATA\r\nMaidenName: \r\nMiddleName: LAGMAN\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3750\r\nBirthDate: August 06, 1995\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3824\r\nExtensionName: \r\nFirstName: JOHN PAUL\r\nFullName: JOHN PAUL PLATA\r\nGender: Male\r\nLastName: PLATA\r\nMaidenName: \r\nMiddleName: LAGMAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769083	2025-03-13	11:48:17.9901496	<Undetected>	Update	BasicInformationId: 3750\r\nBirthDate: January 22, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3825\r\nExtensionName: \r\nFirstName: ADRIAN NINO\r\nFullName: ADRIAN NINO LAGMAN PLATA\r\nGender: Male\r\nLastName: PLATA\r\nMaidenName: \r\nMiddleName: LAGMAN\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3750\r\nBirthDate: January 22, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3825\r\nExtensionName: \r\nFirstName: ADRIAN NINO\r\nFullName: ADRIAN NINO PLATA\r\nGender: Male\r\nLastName: PLATA\r\nMaidenName: \r\nMiddleName: LAGMAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769092	2025-03-13	11:54:47.8161631	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3750\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1976\r\nDateTo: 1982\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BUCAL ELEMENTARY SCHOOL\r\nYearGraduated: 1982\r\n	admin	EducationalBackgrounds	1
769093	2025-03-13	11:54:47.8271263	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3750\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1982\r\nDateTo: 1986\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES\r\nYearGraduated: 1986\r\n	admin	EducationalBackgrounds	1
769094	2025-03-13	11:54:47.8311130	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3750\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1986\r\nDateTo: 1990\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES\r\nYearGraduated: 1990\r\n	admin	EducationalBackgrounds	1
769095	2025-03-13	11:54:47.8419386	<Undetected>	Update	BasicInformationId: 3750\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3826\r\nExtensionName: \r\nFirstName: CARLITO\r\nFullName: CARLITO AGUILERA PLATA\r\nGender: Male\r\nLastName: PLATA\r\nMaidenName: \r\nMiddleName: AGUILERA\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3750\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3826\r\nExtensionName: \r\nFirstName: CARLITO\r\nFullName: CARLITO PLATA\r\nGender: Male\r\nLastName: PLATA\r\nMaidenName: \r\nMiddleName: AGUILERA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
769106	2025-03-13	11:56:29.3627751	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 266\r\nAddress2: \r\nBarangay: BUKAL\r\nBasicInformationId: 3750\r\nBirthDate: February 05, 1970\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ailyn.plata@deped.gov.ph\r\nExtensionName: \r\nFirstName: AILYN\r\nFullName: AILYN L. PLATA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.46\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PLATA\r\nMaidenName: \r\nMiddleName: LAGMAN\r\nMobileNumber: 09915447122\r\nNationality: Filipino\r\nPermanentAddress1: 266\r\nPermanentAddress2: \r\nPermanentBarangay: BUKAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 53\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 266\r\nAddress2: \r\nBarangay: BUKAL\r\nBasicInformationId: 3750\r\nBirthDate: February 05, 1970\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ailyn.plata@deped.gov.ph\r\nExtensionName: \r\nFirstName: AILYN\r\nFullName: AILYN L. PLATA\r\nGender: Female\r\nGovernmentIdIssuedDate: September 30, 1997\r\nGovernmentIdNumber: 0158269\r\nGovernmentIdPlaceIssued: PRC MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02002993951\r\nHDMF: 1490-0088-1668\r\nHeight: 1.46\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PLATA\r\nMaidenName: \r\nMiddleName: LAGMAN\r\nMobileNumber: 09915447122\r\nNationality: Filipino\r\nPermanentAddress1: 266\r\nPermanentAddress2: \r\nPermanentBarangay: BUKAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000014005-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 177-627-187-0000\r\nWeight: 53\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769109	2025-03-13	11:58:13.5402433	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3750\r\nCharacterReferenceId: 0\r\nCompanyAddress: BUKAL, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09913533013\r\nExtensionName: \r\nFirstName: AQUILINO\r\nLastName: MAGNAYE\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769190	2025-03-13	13:42:49.6668782	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON THE GUIDELINES ON THE IMPLEMENTATION OF SCHOOL-BASED FEEDING PROGRAM FOR SY 2023-2024\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769107	2025-03-13	11:56:42.9712264	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 1212\r\nAddress2: SITIO LAMAO\r\nBarangay: LIBJO\r\nBasicInformationId: 3747\r\nBirthDate: June 04, 1973\r\nBirthPlace: LABRADOR PANGASINAN\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: elma_escarez@yahoo.com\r\nExtensionName: \r\nFirstName: ELMA\r\nFullName: ELMA O. ESCAREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 4024327\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: OXINA\r\nMobileNumber: 09454803809\r\nNationality: Filipino\r\nPermanentAddress1: 1212\r\nPermanentAddress2: SITIO LAMAO\r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ST. JOSEPH\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ST. JOSEPH\r\nTIN: \r\nWeight: 52\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 1212\r\nAddress2: SITIO LAMAO\r\nBarangay: LIBJO\r\nBasicInformationId: 3747\r\nBirthDate: June 04, 1973\r\nBirthPlace: LABRADOR PANGASINAN\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: elma_escarez@yahoo.com\r\nExtensionName: \r\nFirstName: ELMA\r\nFullName: ELMA O. ESCAREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: February 19, 1999\r\nGovernmentIdNumber: 0311291\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC\r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 4024327\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: OXINA\r\nMobileNumber: 09454803809\r\nNationality: Filipino\r\nPermanentAddress1: 1212\r\nPermanentAddress2: SITIO LAMAO\r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ST. JOSEPH\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ST. JOSEPH\r\nTIN: \r\nWeight: 52\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769108	2025-03-13	11:57:42.3142599	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 1212\r\nAddress2: SITIO LAMAO\r\nBarangay: LIBJO\r\nBasicInformationId: 3747\r\nBirthDate: June 04, 1973\r\nBirthPlace: LABRADOR PANGASINAN\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: elma_escarez@yahoo.com\r\nExtensionName: \r\nFirstName: ELMA\r\nFullName: ELMA O. ESCAREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: February 19, 1999\r\nGovernmentIdNumber: 0311291\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC\r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 4024327\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: OXINA\r\nMobileNumber: 09454803809\r\nNationality: Filipino\r\nPermanentAddress1: 1212\r\nPermanentAddress2: SITIO LAMAO\r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ST. JOSEPH\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ST. JOSEPH\r\nTIN: \r\nWeight: 52\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 1212\r\nAddress2: SITIO LAMAO\r\nBarangay: LIBJO\r\nBasicInformationId: 3747\r\nBirthDate: June 04, 1973\r\nBirthPlace: LABRADOR PANGASINAN\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: elma_escarez@yahoo.com\r\nExtensionName: \r\nFirstName: ELMA\r\nFullName: ELMA O. ESCAREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: February 19, 1999\r\nGovernmentIdNumber: 0311291\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC\r\nGSIS: \r\nHDMF: 0401-2634-7908\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 4024327\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: OXINA\r\nMobileNumber: 09454803809\r\nNationality: Filipino\r\nPermanentAddress1: 1212\r\nPermanentAddress2: SITIO LAMAO\r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ST. JOSEPH\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000021780-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ST. JOSEPH\r\nTIN: 912-277-339-0000\r\nWeight: 52\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769117	2025-03-13	12:01:27.0377560	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 41\r\nAddress2: \r\nBarangay: BILOGO\r\nBasicInformationId: 0\r\nBirthDate: February 13, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: alma.catilo@deped.gov.ph\r\nExtensionName: \r\nFirstName: ALMA\r\nFullName: ALMA M. CATILO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CATILO\r\nMaidenName: \r\nMiddleName: MEDRANO\r\nMobileNumber: 09770671733\r\nNationality: Filipino\r\nPermanentAddress1: 41\r\nPermanentAddress2: \r\nPermanentBarangay: BILOGO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ZONE 1\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: ZONE 1\r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769118	2025-03-13	12:01:27.1123172	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3751\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALBINO\r\nFullName: ALBINO MARASIGAN CATILO\r\nGender: Male\r\nLastName: CATILO\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
769119	2025-03-13	12:01:27.1133162	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3751\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MILAGROS\r\nFullName: MILAGROS PANA MEDRANO\r\nGender: Female\r\nLastName: MEDRANO\r\nMaidenName: \r\nMiddleName: PANA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
769120	2025-03-13	12:01:27.1133162	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3751\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
769121	2025-03-13	13:15:53.4017981	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3751\r\nBirthDate: July 21, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: VHON CHRISTIAN\r\nFullName: VHON CHRISTIAN CATILO VILLANO\r\nGender: Male\r\nLastName: VILLANO\r\nMaidenName: \r\nMiddleName: CATILO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769110	2025-03-13	11:58:13.5472199	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3750\r\nCharacterReferenceId: 0\r\nCompanyAddress: BUKAL, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09196426543\r\nExtensionName: \r\nFirstName: BABYLINDA\r\nLastName: TULIAO\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769111	2025-03-13	11:58:13.5522033	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3750\r\nCharacterReferenceId: 0\r\nCompanyAddress: BUKAL, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09605313104\r\nExtensionName: \r\nFirstName: ROWENA\r\nLastName: MACATANGAY\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769112	2025-03-13	11:59:21.8139958	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3750\r\nDateOfExamination: October 25, 1992\r\nDateOfRelease: September 30, 1997\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: October 25, 1992\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0158269\r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 72.15\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
769113	2025-03-13	12:00:19.0401331	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3750\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
769114	2025-03-13	12:00:19.0451163	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3750\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
769115	2025-03-13	12:00:19.0540864	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3750\r\nOrganizationId: 0\r\nOrganizationName: BUCAL MULTI-PURPOSE COOPERATIVE INCORPORATED\r\n	admin	Organizations	1
769116	2025-03-13	12:00:19.0580730	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3750\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY PUBLIC SCHOOL TEACHERS AND EMPLOYEES ASSOCIATION\r\n	admin	Organizations	1
769122	2025-03-13	13:15:53.4057979	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3751\r\nBirthDate: September 21, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOHN RAMOEL\r\nFullName: JOHN RAMOEL CATILO VILLANO\r\nGender: Male\r\nLastName: VILLANO\r\nMaidenName: \r\nMiddleName: CATILO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769123	2025-03-13	13:15:53.4107982	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3751\r\nBirthDate: August 03, 2015\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALEXANDRA JEAN\r\nFullName: ALEXANDRA JEAN CATILO UMALI\r\nGender: Female\r\nLastName: UMALI\r\nMaidenName: \r\nMiddleName: CATILO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769124	2025-03-13	13:15:53.4207982	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 41\r\nAddress2: \r\nBarangay: BILOGO\r\nBasicInformationId: 3751\r\nBirthDate: February 13, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: alma.catilo@deped.gov.ph\r\nExtensionName: \r\nFirstName: ALMA\r\nFullName: ALMA M. CATILO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CATILO\r\nMaidenName: \r\nMiddleName: MEDRANO\r\nMobileNumber: 09770671733\r\nNationality: Filipino\r\nPermanentAddress1: 41\r\nPermanentAddress2: \r\nPermanentBarangay: BILOGO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ZONE 1\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: ZONE 1\r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 41\r\nAddress2: \r\nBarangay: BILOGO\r\nBasicInformationId: 3751\r\nBirthDate: February 13, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: alma.catilo@deped.gov.ph\r\nExtensionName: \r\nFirstName: ALMA\r\nFullName: ALMA M. CATILO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CATILO\r\nMaidenName: \r\nMiddleName: MEDRANO\r\nMobileNumber: 09770671733\r\nNationality: Filipino\r\nPermanentAddress1: 41\r\nPermanentAddress2: \r\nPermanentBarangay: BILOGO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ZONE 1\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ZONE 1\r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769125	2025-03-13	13:15:53.4247979	<Undetected>	Update	BasicInformationId: 3751\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3827\r\nExtensionName: \r\nFirstName: ALBINO\r\nFullName: ALBINO MARASIGAN CATILO\r\nGender: Male\r\nLastName: CATILO\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3751\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3827\r\nExtensionName: \r\nFirstName: ALBINO\r\nFullName: ALBINO CATILO\r\nGender: Male\r\nLastName: CATILO\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
769126	2025-03-13	13:15:53.4317982	<Undetected>	Update	BasicInformationId: 3751\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3828\r\nExtensionName: \r\nFirstName: MILAGROS\r\nFullName: MILAGROS PANA MEDRANO\r\nGender: Female\r\nLastName: MEDRANO\r\nMaidenName: \r\nMiddleName: PANA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3751\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3828\r\nExtensionName: \r\nFirstName: MILAGROS\r\nFullName: MILAGROS MEDRANO\r\nGender: Female\r\nLastName: MEDRANO\r\nMaidenName: \r\nMiddleName: PANA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
769127	2025-03-13	13:15:53.4357979	<Undetected>	Update	BasicInformationId: 3751\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3548\r\n	BasicInformationId: 3751\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3548\r\n	admin	Questionnaires	1
769128	2025-03-13	13:17:26.8915600	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3750\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 36,691.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-8\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
769129	2025-03-13	13:17:26.8965432	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3750\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 03, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 35,141.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-8\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
769130	2025-03-13	13:17:26.9015265	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3750\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 34,804.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-7\r\nStatus: Permanent\r\nToDate: November 02, 2024\r\n	admin	Experiences	1
769131	2025-03-13	13:17:26.9065100	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3750\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 33,254.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-7\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
769206	2025-03-13	13:47:18.9525211	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3751\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY RESEARCH GROUP\r\n	admin	Organizations	1
769132	2025-03-13	13:17:26.9104966	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3750\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 02, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 31,732.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-7\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
769133	2025-03-13	13:17:26.9154798	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3750\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 31,400.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-6\r\nStatus: Permanent\r\nToDate: January 01, 2022\r\n	admin	Experiences	1
769134	2025-03-13	13:19:04.5691909	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3750\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 29,878.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-6\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
769135	2025-03-13	13:19:04.5731773	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3750\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 28,356.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-6\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
769136	2025-03-13	13:19:04.5791578	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3750\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 26,834.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-6\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
769145	2025-03-13	13:30:53.5332650	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3750\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 04, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 25,686.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-6\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
769146	2025-03-13	13:30:53.5382483	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3750\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 25,387.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: November 03, 2018\r\n	admin	Experiences	1
769147	2025-03-13	13:30:53.5432316	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3750\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 24,315.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
769148	2025-03-13	13:30:53.5472188	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3750\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 23,289.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
769149	2025-03-13	13:30:53.5522016	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3750\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 01, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 22,306.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
769150	2025-03-13	13:30:53.5571850	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3750\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 04, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 22,086.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: October 31, 2015\r\n	admin	Experiences	1
769151	2025-03-13	13:30:53.5621685	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3750\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 21,867.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: November 03, 2012\r\n	admin	Experiences	1
769137	2025-03-13	13:19:20.6458732	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3751\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1984\r\nDateTo: 1990\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: PALLOCAN ELEMENTARY SCHOOL\r\nYearGraduated: 1990\r\n	admin	EducationalBackgrounds	1
769138	2025-03-13	13:19:20.6578732	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3751\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1990\r\nDateTo: 1994\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1994\r\n	admin	EducationalBackgrounds	1
769139	2025-03-13	13:19:20.6618731	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3751\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 1998\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 2003\r\n	admin	EducationalBackgrounds	1
769140	2025-03-13	13:19:20.6708733	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3751\r\nCourse: \r\nCourseId: 1328\r\nCourseOrMajor: \r\nDateFrom: 2011\r\nDateTo: 2013\r\nEducationalAttainment: 33 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN FILIPINO\r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
769141	2025-03-13	13:19:20.6748728	<Undetected>	Update	BasicInformationId: 3751\r\nBirthDate: July 21, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3829\r\nExtensionName: \r\nFirstName: VHON CHRISTIAN\r\nFullName: VHON CHRISTIAN CATILO VILLANO\r\nGender: Male\r\nLastName: VILLANO\r\nMaidenName: \r\nMiddleName: CATILO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3751\r\nBirthDate: July 21, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3829\r\nExtensionName: \r\nFirstName: VHON CHRISTIAN\r\nFullName: VHON CHRISTIAN VILLANO\r\nGender: Male\r\nLastName: VILLANO\r\nMaidenName: \r\nMiddleName: CATILO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769142	2025-03-13	13:19:20.6808733	<Undetected>	Update	BasicInformationId: 3751\r\nBirthDate: September 21, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3830\r\nExtensionName: \r\nFirstName: JOHN RAMOEL\r\nFullName: JOHN RAMOEL CATILO VILLANO\r\nGender: Male\r\nLastName: VILLANO\r\nMaidenName: \r\nMiddleName: CATILO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3751\r\nBirthDate: September 21, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3830\r\nExtensionName: \r\nFirstName: JOHN RAMOEL\r\nFullName: JOHN RAMOEL VILLANO\r\nGender: Male\r\nLastName: VILLANO\r\nMaidenName: \r\nMiddleName: CATILO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769143	2025-03-13	13:19:20.6848729	<Undetected>	Update	BasicInformationId: 3751\r\nBirthDate: August 03, 2015\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3831\r\nExtensionName: \r\nFirstName: ALEXANDRA JEAN\r\nFullName: ALEXANDRA JEAN CATILO UMALI\r\nGender: Female\r\nLastName: UMALI\r\nMaidenName: \r\nMiddleName: CATILO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3751\r\nBirthDate: August 03, 2015\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3831\r\nExtensionName: \r\nFirstName: ALEXANDRA JEAN\r\nFullName: ALEXANDRA JEAN UMALI\r\nGender: Female\r\nLastName: UMALI\r\nMaidenName: \r\nMiddleName: CATILO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769144	2025-03-13	13:29:57.9247099	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATIION ON THE ENHANCEMENT OF MULTI-HAZARD CONTINGENCY AND SAFETY PLANS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769167	2025-03-13	13:37:54.6380052	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3751\r\nDateOfExamination: January 08, 2003\r\nDateOfRelease: February 13, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: January 08, 2003\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0820742\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 78.20\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
769168	2025-03-13	13:37:54.6430056	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3751\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 32,245.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: March 13, 2025\r\n	admin	Experiences	1
769169	2025-03-13	13:37:54.6480053	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3751\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 30,705.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
769170	2025-03-13	13:37:54.6520051	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3751\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 29,165.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
769152	2025-03-13	13:30:53.5661550	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3750\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 20,162.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
769153	2025-03-13	13:30:53.5711383	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3750\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 04, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 16,753.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
769154	2025-03-13	13:30:53.5751249	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3750\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 16,424.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: November 03, 2009\r\n	admin	Experiences	1
769155	2025-03-13	13:30:53.5801083	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3750\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 13,850.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
769156	2025-03-13	13:30:53.5850916	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3750\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 12,591.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
769157	2025-03-13	13:30:53.5900872	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3750\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 11,446.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
769158	2025-03-13	13:30:53.5950583	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3750\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 03, 2003\r\nIsGovernmentService: True\r\nMonthlySalary: 11,167.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2006\r\n	admin	Experiences	1
769159	2025-03-13	13:34:48.9833678	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3750\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 23, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 10,535.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: November 02, 2003\r\n	admin	Experiences	1
769160	2025-03-13	13:34:48.9893486	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3750\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: August 22, 2001\r\n	admin	Experiences	1
769161	2025-03-13	13:34:48.9933346	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3750\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
769162	2025-03-13	13:34:48.9993149	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3750\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
769163	2025-03-13	13:34:49.0033018	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3750\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 7,309.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: October 31, 1997\r\n	admin	Experiences	1
769164	2025-03-13	13:34:49.0082852	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3750\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 6,013.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1996\r\n	admin	Experiences	1
769165	2025-03-13	13:34:49.0132685	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3750\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 4,902.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1995\r\n	admin	Experiences	1
769166	2025-03-13	13:34:49.0182521	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3750\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 06, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 3,902.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1994\r\n	admin	Experiences	1
769187	2025-03-13	13:40:16.0751807	<Undetected>	Update	BasicInformationId: 3750\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11997\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 23,289.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	BasicInformationId: 3750\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 11997\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 23,289.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
769189	2025-03-13	13:42:07.8871433	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT MID-YEAR IN SERVICE TRAINING ON RESEARCH ORIENTATION, PRESENTATION AND EVALUATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769191	2025-03-13	13:44:13.1157876	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT INSET ON SCHOOL DATA MANAGEMENT SYSTEM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769193	2025-03-13	13:44:57.4834303	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3750\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 3\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16340\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769194	2025-03-13	13:44:57.4884152	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3750\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 28, 2024\r\nTrainingId: 16451\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769195	2025-03-13	13:44:57.4933987	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3750\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16429\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769196	2025-03-13	13:44:57.4973849	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3750\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2024\r\nTrainingId: 16441\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769197	2025-03-13	13:44:57.5033638	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3750\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: January 26, 2024\r\nTrainingId: 16453\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769209	2025-03-13	13:47:34.6833347	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION PROGRAM IMPLEMENTATION REVIEW OF THE SCHOOL LEARNING ACTION CELL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769214	2025-03-13	13:50:18.3055374	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3751\r\nCharacterReferenceId: 0\r\nCompanyAddress: TULO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09109686929\r\nExtensionName: \r\nFirstName: MARIFE\r\nLastName: FRANE\r\nMiddleName: D.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769215	2025-03-13	13:50:18.3105375	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3751\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN WEST BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09189649408\r\nExtensionName: \r\nFirstName: LENY \r\nLastName: BOOL\r\nMiddleName: M.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769171	2025-03-13	13:37:54.6570041	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3751\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: March 10, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 27,608.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
769172	2025-03-13	13:37:54.6651951	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3751\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: May 27, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 26,304.00\r\nPositionHeld: TEACHER I W/STEP\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: October 02, 2022\r\n	admin	Experiences	1
769173	2025-03-13	13:37:54.6731782	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3751\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 26,012.00\r\nPositionHeld: TEACHER I W/SALARY ADJUSTMENT\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: May 26, 2022\r\n	admin	Experiences	1
769174	2025-03-13	13:37:54.6771322	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3751\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 24,450.00\r\nPositionHeld: TEACHER I W/SALARY ADJUSTMENT\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
769175	2025-03-13	13:37:54.6821324	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3751\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,889.00\r\nPositionHeld: TEACHER I W/SALARY ADJUSTMENT\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
769176	2025-03-13	13:37:54.6871321	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3751\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: May 20, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,327.00\r\nPositionHeld: TEACHER I W/STEP\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
769177	2025-03-13	13:37:54.6921320	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3751\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,038.00\r\nPositionHeld: TEACHER I W/SALARY ADJUSTMENT\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: May 19, 2019\r\n	admin	Experiences	1
769178	2025-03-13	13:37:54.6971321	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3751\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,437.00\r\nPositionHeld: TEACHER I W/SALARY ADJUSTMENT\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: March 31, 2018\r\n	admin	Experiences	1
769179	2025-03-13	13:37:54.7021334	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3751\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,853.00\r\nPositionHeld: TEACHER I W/SALARY ADJUSTMENT\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
769180	2025-03-13	13:37:54.7061332	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3751\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: May 20, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,286.00\r\nPositionHeld: TEACHER I W/STEP\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
769213	2025-03-13	13:50:18.2985376	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3751\r\nCharacterReferenceId: 0\r\nCompanyAddress: AMBULONG BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09151454687\r\nExtensionName: \r\nFirstName: MARITES \r\nLastName: TARCELO\r\nMiddleName: D.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769181	2025-03-13	13:37:54.7111333	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3751\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: TEACHER I W/SALARY ADJUSTMENT\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: May 09, 2016\r\n	admin	Experiences	1
769182	2025-03-13	13:37:54.7161333	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3751\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
769183	2025-03-13	13:37:54.7201333	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3751\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: May 27, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2014\r\n	admin	Experiences	1
769184	2025-03-13	13:37:54.7251334	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3751\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - BATANGAS CITY SOUTH ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 12, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 14,198.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: September 10, 2010\r\n	admin	Experiences	1
769185	2025-03-13	13:37:54.7291332	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3751\r\nCompanyInstitution: DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - LIBJO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 22, 2004\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Substitute\r\nToDate: December 25, 2004\r\n	admin	Experiences	1
769188	2025-03-13	13:40:54.1898939	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MASTER CLASSES FOR KINDERGARTEN GRADES 1-4 AND 7 TEACHERS ACROSS ALL LEARNING AREAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769192	2025-03-13	13:44:38.9200888	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2021 DIVISION VIRTUAL LEADERSHIP TRAINING FOR STUDENT LEADERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769198	2025-03-13	13:46:21.3855480	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3751\r\nEmployeeTrainingId: 0\r\nFromDate: December 05, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - REGION IV-A CALABARZON\r\nStatus: \r\nToDate: December 07, 2024\r\nTrainingId: 16331\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769199	2025-03-13	13:46:21.3905465	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3751\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16450\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769200	2025-03-13	13:46:21.3955463	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3751\r\nEmployeeTrainingId: 0\r\nFromDate: July 25, 2022\r\nHours: 56\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - REGION IV-A CALABARZON\r\nStatus: \r\nToDate: January 08, 2022\r\nTrainingId: 15797\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769201	2025-03-13	13:46:21.3995461	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3751\r\nEmployeeTrainingId: 0\r\nFromDate: November 17, 2021\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SDO BATANGAS CITY\r\nStatus: \r\nToDate: November 19, 2021\r\nTrainingId: 16454\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769202	2025-03-13	13:46:21.4045462	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3751\r\nEmployeeTrainingId: 0\r\nFromDate: August 03, 2021\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - CENTRAL OFFICE\r\nStatus: \r\nToDate: March 09, 2021\r\nTrainingId: 16409\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769203	2025-03-13	13:47:18.9325215	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3751\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
769204	2025-03-13	13:47:18.9435213	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3751\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
769205	2025-03-13	13:47:18.9485213	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3751\r\nOrganizationId: 0\r\nOrganizationName: GIRL SCOUT OF THE PHILIPPINES BATANGAS CITY\r\n	admin	Organizations	1
769207	2025-03-13	13:47:36.2988984	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BUKAL\r\nBasicInformationId: 0\r\nBirthDate: May 05, 1984\r\nBirthPlace: BUCAL, BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: irene.matala@deped.gov.ph\r\nExtensionName: \r\nFirstName: IRENE\r\nFullName: IRENE P. MATALA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MATALA\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nMobileNumber: 09230892985\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BUKAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 42000\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 42\r\nZipCode: 42000\r\n	admin	BasicInformation	1
769208	2025-03-13	13:47:36.3126701	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3752\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
769210	2025-03-13	13:48:48.1392197	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3752\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GILBERT\r\nFullName: GILBERT COMETA MATALA\r\nGender: Male\r\nLastName: MATALA\r\nMaidenName: \r\nMiddleName: COMETA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
769211	2025-03-13	13:48:48.1432064	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3752\r\nBirthDate: August 19, 2018\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: IYA GWYNETH\r\nFullName: IYA GWYNETH PAGCALIWAGAN MATALA\r\nGender: Male\r\nLastName: MATALA\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769212	2025-03-13	13:48:48.1531730	<Undetected>	Update	BasicInformationId: 3752\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3549\r\n	BasicInformationId: 3752\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3549\r\n	admin	Questionnaires	1
769217	2025-03-13	13:50:44.4198380	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BUKAL\r\nBasicInformationId: 3752\r\nBirthDate: May 05, 1984\r\nBirthPlace: BUCAL, BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: irene.matala@deped.gov.ph\r\nExtensionName: \r\nFirstName: IRENE\r\nFullName: IRENE P. MATALA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MATALA\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nMobileNumber: 09230892985\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BUKAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 42000\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 42\r\nZipCode: 42000\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BUKAL\r\nBasicInformationId: 3752\r\nBirthDate: May 05, 1984\r\nBirthPlace: BUCAL, BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: irene.matala@deped.gov.ph\r\nExtensionName: \r\nFirstName: IRENE\r\nFullName: IRENE P. MATALA\r\nGender: Female\r\nGovernmentIdIssuedDate: December 05, 2005\r\nGovernmentIdNumber: 0894177\r\nGovernmentIdPlaceIssued: LUCENA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02004477418\r\nHDMF: 1020-0332-8596\r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MATALA\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nMobileNumber: 09230892985\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BUKAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 42000\r\nPhilhealth: 08-050639473-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1305137-4\r\nStreetName: \r\nTIN: 251-919-517-0000\r\nWeight: 42\r\nZipCode: 42000\r\n	admin	BasicInformation	1
769218	2025-03-13	13:50:44.4328930	<Undetected>	Update	BasicInformationId: 3752\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3832\r\nExtensionName: \r\nFirstName: GILBERT\r\nFullName: GILBERT COMETA MATALA\r\nGender: Male\r\nLastName: MATALA\r\nMaidenName: \r\nMiddleName: COMETA\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3752\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3832\r\nExtensionName: \r\nFirstName: GILBERT\r\nFullName: GILBERT MATALA\r\nGender: Male\r\nLastName: MATALA\r\nMaidenName: \r\nMiddleName: COMETA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
769219	2025-03-13	13:50:44.4458091	<Undetected>	Update	BasicInformationId: 3752\r\nBirthDate: August 19, 2018\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3833\r\nExtensionName: \r\nFirstName: IYA GWYNETH\r\nFullName: IYA GWYNETH PAGCALIWAGAN MATALA\r\nGender: Male\r\nLastName: MATALA\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3752\r\nBirthDate: August 19, 2018\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3833\r\nExtensionName: \r\nFirstName: IYA GWYNETH\r\nFullName: IYA GWYNETH MATALA\r\nGender: Male\r\nLastName: MATALA\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769221	2025-03-13	13:52:27.7957773	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3752\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAMPAGA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09081891192\r\nExtensionName: \r\nFirstName: KRISTINA\r\nLastName: GUTIERREZ\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769216	2025-03-13	13:50:18.3175375	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 41\r\nAddress2: \r\nBarangay: BILOGO\r\nBasicInformationId: 3751\r\nBirthDate: February 13, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: alma.catilo@deped.gov.ph\r\nExtensionName: \r\nFirstName: ALMA\r\nFullName: ALMA M. CATILO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CATILO\r\nMaidenName: \r\nMiddleName: MEDRANO\r\nMobileNumber: 09770671733\r\nNationality: Filipino\r\nPermanentAddress1: 41\r\nPermanentAddress2: \r\nPermanentBarangay: BILOGO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ZONE 1\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ZONE 1\r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 41\r\nAddress2: \r\nBarangay: BILOGO\r\nBasicInformationId: 3751\r\nBirthDate: February 13, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: alma.catilo@deped.gov.ph\r\nExtensionName: \r\nFirstName: ALMA\r\nFullName: ALMA M. CATILO\r\nGender: Female\r\nGovernmentIdIssuedDate: October 24, 2003\r\nGovernmentIdNumber: 0820742\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: \r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CATILO\r\nMaidenName: \r\nMiddleName: MEDRANO\r\nMobileNumber: 09770671733\r\nNationality: Filipino\r\nPermanentAddress1: 41\r\nPermanentAddress2: \r\nPermanentBarangay: BILOGO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ZONE 1\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ZONE 1\r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769220	2025-03-13	13:52:03.8055105	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 41\r\nAddress2: \r\nBarangay: BILOGO\r\nBasicInformationId: 3751\r\nBirthDate: February 13, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: alma.catilo@deped.gov.ph\r\nExtensionName: \r\nFirstName: ALMA\r\nFullName: ALMA M. CATILO\r\nGender: Female\r\nGovernmentIdIssuedDate: October 24, 2003\r\nGovernmentIdNumber: 0820742\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: \r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CATILO\r\nMaidenName: \r\nMiddleName: MEDRANO\r\nMobileNumber: 09770671733\r\nNationality: Filipino\r\nPermanentAddress1: 41\r\nPermanentAddress2: \r\nPermanentBarangay: BILOGO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ZONE 1\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ZONE 1\r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 41\r\nAddress2: \r\nBarangay: BILOGO\r\nBasicInformationId: 3751\r\nBirthDate: February 13, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: alma.catilo@deped.gov.ph\r\nExtensionName: \r\nFirstName: ALMA\r\nFullName: ALMA M. CATILO\r\nGender: Female\r\nGovernmentIdIssuedDate: October 24, 2003\r\nGovernmentIdNumber: 0820742\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: 02004161274\r\nHDMF: 1210-2658-9866\r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CATILO\r\nMaidenName: \r\nMiddleName: MEDRANO\r\nMobileNumber: 09770671733\r\nNationality: Filipino\r\nPermanentAddress1: 41\r\nPermanentAddress2: \r\nPermanentBarangay: BILOGO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ZONE 1\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-205204257-0\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ZONE 1\r\nTIN: 918-072-227-0000\r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769234	2025-03-13	14:02:16.6304456	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BUKAL\r\nBasicInformationId: 0\r\nBirthDate: January 15, 1987\r\nBirthPlace: BUCAL, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ronalyn.febria@deped.gov.ph\r\nExtensionName: \r\nFirstName: RONALYN\r\nFullName: RONALYN S. FEBRIA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: FEBRIA\r\nMaidenName: \r\nMiddleName: SASTADO\r\nMobileNumber: 09483522722\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BUKAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: D. SILANG ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: D. SILANG ST.\r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769235	2025-03-13	14:02:16.6775352	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3753\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EMMA\r\nFullName: EMMA BARTE MALALUAN\r\nGender: Female\r\nLastName: MALALUAN\r\nMaidenName: \r\nMiddleName: BARTE\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
769236	2025-03-13	14:02:16.6775352	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3753\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RONNIE\r\nFullName: RONNIE VELASCO SASTADO\r\nGender: Male\r\nLastName: SASTADO\r\nMaidenName: \r\nMiddleName: VELASCO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
769237	2025-03-13	14:02:16.6775352	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3753\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EMMA\r\nFullName: EMMA BARTE MALALUAN\r\nGender: Female\r\nLastName: MALALUAN\r\nMaidenName: \r\nMiddleName: BARTE\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
769238	2025-03-13	14:02:16.6785330	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3753\r\nBirthDate: October 20, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SANTINO ROBEN\r\nFullName: SANTINO ROBEN SASTADO FEBRIA\r\nGender: Male\r\nLastName: FEBRIA\r\nMaidenName: \r\nMiddleName: SASTADO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769222	2025-03-13	13:52:27.8057451	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3752\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES, SORO-SORO ILAYA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09173282459\r\nExtensionName: \r\nFirstName: EPITACIA\r\nLastName: CULLERA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769223	2025-03-13	13:52:27.8226874	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3752\r\nCharacterReferenceId: 0\r\nCompanyAddress: BUCAL, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09196426534\r\nExtensionName: \r\nFirstName: BABYLINDA\r\nLastName: TULIAO\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769224	2025-03-13	13:54:37.2491467	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3752\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1991\r\nDateTo: 1997\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BUCAL ELEMENTARY SCHOOL\r\nYearGraduated: 1997\r\n	admin	EducationalBackgrounds	1
769225	2025-03-13	13:54:37.2531333	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3752\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1997\r\nDateTo: 2001\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2001\r\n	admin	EducationalBackgrounds	1
769226	2025-03-13	13:54:37.2690799	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3752\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2005\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2005\r\n	admin	EducationalBackgrounds	1
769227	2025-03-13	13:54:37.2850266	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3752\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2016\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: ST. JUDE COLLEGE PHINMA\r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
769228	2025-03-13	13:55:40.9044402	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3752\r\nDateOfExamination: August 14, 2005\r\nDateOfRelease: May 05, 2024\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 14, 2005\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0894177\r\nPlaceOfExamination: LUCENA\r\nRating: 79.80\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
769229	2025-03-13	13:58:27.1737079	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3752\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,421.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
769230	2025-03-13	13:58:27.1846712	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3752\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
769231	2025-03-13	13:58:27.1986244	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3752\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 16, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 313,200.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
769232	2025-03-13	13:58:27.2210142	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3752\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 29,165.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 15, 2023\r\n	admin	Experiences	1
769233	2025-03-13	13:58:27.2259972	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3752\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 27,608.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
770025	2025-03-14	10:41:14.3144457	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: KEEPING THINGS IN PLACE: MECHANISMS FOR VALUES LEARNING IN HOME BASED EDUCATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769239	2025-03-13	14:02:16.6785330	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3753\r\nBirthDate: August 29, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SIMON TIMOTHY\r\nFullName: SIMON TIMOTHY SASTADO FEBRIA\r\nGender: Male\r\nLastName: FEBRIA\r\nMaidenName: \r\nMiddleName: SASTADO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769240	2025-03-13	14:02:16.6785330	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3753\r\nBirthDate: October 26, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SHAUN ADAM\r\nFullName: SHAUN ADAM SASTADO FEBRIA\r\nGender: Male\r\nLastName: FEBRIA\r\nMaidenName: \r\nMiddleName: SASTADO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769241	2025-03-13	14:02:16.6795319	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3753\r\nBirthDate: September 06, 2024\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ZIA ANAIAH\r\nFullName: ZIA ANAIAH SASTADO FEBRIA\r\nGender: Female\r\nLastName: FEBRIA\r\nMaidenName: \r\nMiddleName: SASTADO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769242	2025-03-13	14:02:16.6795319	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3753\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
769271	2025-03-13	14:07:19.8871989	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: CLASS SALUTATORIAN\r\nBasicInformationId: 3753\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 2000\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BUCAL ELEMENTARY SCHOOL\r\nYearGraduated: 2000\r\n	admin	EducationalBackgrounds	1
769272	2025-03-13	14:07:19.8981987	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: SCHOOL SCHOLAR\r\nBasicInformationId: 3753\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2000\r\nDateTo: 2004\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2004\r\n	admin	EducationalBackgrounds	1
769273	2025-03-13	14:07:19.9021984	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: EBD SCHOLAR\r\nBasicInformationId: 3753\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2008\r\nDateTo: 2010\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 2010\r\n	admin	EducationalBackgrounds	1
769274	2025-03-13	14:07:19.9111987	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3753\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2004\r\nDateTo: 2007\r\nEducationalAttainment: 32 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: SAINT BRIDGET COLLEGE \r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
769275	2025-03-13	14:07:19.9151984	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3753\r\nCourse: \r\nCourseId: 1333\r\nCourseOrMajor: \r\nDateFrom: 2016\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: ST. JUDE COLLEGE PHINMA\r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
769276	2025-03-13	14:07:19.9201998	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BUKAL\r\nBasicInformationId: 3753\r\nBirthDate: January 15, 1987\r\nBirthPlace: BUCAL, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ronalyn.febria@deped.gov.ph\r\nExtensionName: \r\nFirstName: RONALYN\r\nFullName: RONALYN S. FEBRIA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: FEBRIA\r\nMaidenName: \r\nMiddleName: SASTADO\r\nMobileNumber: 09483522722\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BUKAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: D. SILANG ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: D. SILANG ST.\r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BUCAL\r\nBasicInformationId: 3753\r\nBirthDate: January 15, 1987\r\nBirthPlace: BUCAL, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ronalyn.febria@deped.gov.ph\r\nExtensionName: \r\nFirstName: RONALYN\r\nFullName: RONALYN S. FEBRIA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: FEBRIA\r\nMaidenName: \r\nMiddleName: SASTADO\r\nMobileNumber: 09483522722\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BUKAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: D. SILANG ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: D. SILANG ST.\r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769277	2025-03-13	14:07:19.9252003	<Undetected>	Update	BasicInformationId: 3753\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3834\r\nExtensionName: \r\nFirstName: EMMA\r\nFullName: EMMA BARTE MALALUAN\r\nGender: Female\r\nLastName: MALALUAN\r\nMaidenName: \r\nMiddleName: BARTE\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3753\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3834\r\nExtensionName: \r\nFirstName: EMMA\r\nFullName: EMMA MALALUAN\r\nGender: Female\r\nLastName: MALALUAN\r\nMaidenName: \r\nMiddleName: BARTE\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
769243	2025-03-13	14:04:05.2339425	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3748\r\nEmployeeTrainingId: 0\r\nFromDate: October 27, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: October 27, 2023\r\nTrainingId: 16448\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769244	2025-03-13	14:04:05.2399421	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3748\r\nEmployeeTrainingId: 0\r\nFromDate: September 06, 2023\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: September 06, 2023\r\nTrainingId: 16449\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769245	2025-03-13	14:04:05.2439418	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3748\r\nEmployeeTrainingId: 0\r\nFromDate: August 01, 2023\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: August 01, 2023\r\nTrainingId: 16452\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769246	2025-03-13	14:04:05.2530947	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3748\r\nEmployeeTrainingId: 0\r\nFromDate: July 31, 2023\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 31, 2023\r\nTrainingId: 16455\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769247	2025-03-13	14:04:05.2610773	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3748\r\nEmployeeTrainingId: 0\r\nFromDate: May 15, 2023\r\nHours: 24\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: May 17, 2023\r\nTrainingId: 15046\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769248	2025-03-13	14:04:05.2660234	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3748\r\nEmployeeTrainingId: 0\r\nFromDate: May 10, 3023\r\nHours: 16\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPSRTMENT OF EDUCATION\r\nStatus: \r\nToDate: May 11, 2023\r\nTrainingId: 15860\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769249	2025-03-13	14:04:05.2700234	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3748\r\nEmployeeTrainingId: 0\r\nFromDate: March 29, 2023\r\nHours: 8\r\nNatureOfParticipation: MANAGERIAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: March 29, 2023\r\nTrainingId: 15862\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769250	2025-03-13	14:04:05.2750234	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3748\r\nEmployeeTrainingId: 0\r\nFromDate: February 13, 2020\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: April 14, 2020\r\nTrainingId: 16015\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769264	2025-03-13	14:06:55.3186820	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3748\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
769265	2025-03-13	14:06:55.3246819	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3748\r\nSkillId: 0\r\nSkillName: SEWING\r\n	admin	Skills	1
769266	2025-03-13	14:06:55.3346811	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3748\r\nSkillId: 0\r\nSkillName: GARDENING\r\n	admin	Skills	1
769267	2025-03-13	14:06:55.3396819	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3748\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
769268	2025-03-13	14:06:55.3466817	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3748\r\nSkillId: 0\r\nSkillName: FARMING\r\n	admin	Skills	1
769269	2025-03-13	14:06:55.3506810	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3748\r\nRecognitionId: 0\r\nRecognitionName: CEERTIFICATE OF TEACHING RELIGION-DELA SALLE UNIVERSITY MANILA\r\n	admin	Recognitions	1
769270	2025-03-13	14:06:55.3586819	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3748\r\nOrganizationId: 0\r\nOrganizationName: FORMATOR MOST HOLY TRINITY PARISH\r\n	admin	Organizations	1
769296	2025-03-13	14:18:55.4103734	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: PARCEL 5/ BLOCK 40/ LOT. 12\r\nAddress2: MERCEDES HOMES\r\nBarangay: SORO-SORO ILAYA\r\nBasicInformationId: 0\r\nBirthDate: May 07, 1995\r\nBirthPlace: STA. CLARA BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSEANN.ALCANTARA001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSE ANN\r\nFullName: ROSE ANN M. ALCANTARA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALCANTARA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09166308495\r\nNationality: Filipino\r\nPermanentAddress1: PARCEL 5/ BLOCK 40/ LOT. 12\r\nPermanentAddress2: MERCEDES HOMES\r\nPermanentBarangay: SORO-SORO ILAYA\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 46\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769297	2025-03-13	14:18:55.4296976	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3754\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
769251	2025-03-13	14:05:33.3575359	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3752\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 10, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 26,052.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
769252	2025-03-13	14:05:33.3625193	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3752\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 23,878.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: February 09, 2021\r\n	admin	Experiences	1
769253	2025-03-13	14:05:33.3675025	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3752\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,316.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
769254	2025-03-13	14:05:33.3724859	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3752\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 13, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,038.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
769255	2025-03-13	14:05:33.3764727	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3752\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 12, 2019\r\n	admin	Experiences	1
769256	2025-03-13	14:05:33.3814560	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3752\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 19, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
769257	2025-03-13	14:05:33.3864391	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3752\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: August 18, 2018\r\n	admin	Experiences	1
769258	2025-03-13	14:05:33.3904259	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3752\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 08, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: July 31, 2018\r\n	admin	Experiences	1
769259	2025-03-13	14:05:33.3954092	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3752\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: July 07, 2018\r\n	admin	Experiences	1
769260	2025-03-13	14:05:33.4003924	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3752\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,620.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
769261	2025-03-13	14:05:33.4043793	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3752\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 13, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
769262	2025-03-13	14:05:33.4093625	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3752\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 26, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: December 19, 2013\r\n	admin	Experiences	1
769263	2025-03-13	14:05:33.4133492	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3752\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 23, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: November 21, 2013\r\n	admin	Experiences	1
769285	2025-03-13	14:09:14.5465787	<Undetected>	Update	BasicInformationId: 3752\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12036\r\nFromDate: June 16, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 313,200.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	BasicInformationId: 3752\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12036\r\nFromDate: June 16, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
769286	2025-03-13	14:09:14.5575406	<Undetected>	Update	BasicInformationId: 3752\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12051\r\nFromDate: September 23, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: November 21, 2013\r\n	BasicInformationId: 3752\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12051\r\nFromDate: September 23, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: November 21, 2013\r\n	admin	Experiences	1
769287	2025-03-13	14:09:46.2226480	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3752\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
769288	2025-03-13	14:11:25.6929509	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT III MID-YEAR IN-SERVICE TRAINING ON RESEARCH ORIENTATION, PRESENTATION AND EVALUATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769289	2025-03-13	14:13:17.0609011	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MASTER CLASSES FOR KINDERGARTEN, GRADE 1, GRADE 4, AND GRADE 7 (K147) TEACHERS ACROSS ALL LEARNING AREAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769290	2025-03-13	14:16:29.4350928	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT III IN-SERVICE TRAINING ON EARLY LANGUAGE LITERACY AND NUMERACY (ELLN)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769291	2025-03-13	14:17:26.3404746	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3752\r\nEmployeeTrainingId: 0\r\nFromDate: November 26, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 28, 2024\r\nTrainingId: 16456\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769292	2025-03-13	14:17:26.3454580	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3752\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16457\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769293	2025-03-13	14:17:26.3504413	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3752\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2024\r\nTrainingId: 16441\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769294	2025-03-13	14:17:26.3544281	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3752\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: January 26, 2024\r\nTrainingId: 16453\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769295	2025-03-13	14:17:26.3594113	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3752\r\nEmployeeTrainingId: 0\r\nFromDate: March 08, 2023\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 10, 2023\r\nTrainingId: 16458\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769330	2025-03-13	14:34:12.4562468	<Undetected>	Update	BasicInformationId: 3755\r\nBirthDate: December 19, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3846\r\nExtensionName: \r\nFirstName: CARMELA YASKY\r\nFullName: CARMELA YASKY DE CASTRO DE TORRES\r\nGender: Male\r\nLastName: DE TORRES\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3755\r\nBirthDate: December 19, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3846\r\nExtensionName: \r\nFirstName: CARMELA YASKY\r\nFullName: CARMELA YASKY DE TORRES\r\nGender: Male\r\nLastName: DE TORRES\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769331	2025-03-13	14:34:12.4672102	<Undetected>	Update	BasicInformationId: 3755\r\nBirthDate: December 02, 2012\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3847\r\nExtensionName: \r\nFirstName: YURIE ISABEL\r\nFullName: YURIE ISABEL DE CASTRO DE TORRES\r\nGender: Male\r\nLastName: DE TORRES\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3755\r\nBirthDate: December 02, 2012\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3847\r\nExtensionName: \r\nFirstName: YURIE ISABEL\r\nFullName: YURIE ISABEL DE TORRES\r\nGender: Male\r\nLastName: DE TORRES\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769278	2025-03-13	14:07:19.9302000	<Undetected>	Update	BasicInformationId: 3753\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3835\r\nExtensionName: \r\nFirstName: RONNIE\r\nFullName: RONNIE VELASCO SASTADO\r\nGender: Male\r\nLastName: SASTADO\r\nMaidenName: \r\nMiddleName: VELASCO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3753\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3835\r\nExtensionName: \r\nFirstName: RONNIE\r\nFullName: RONNIE SASTADO\r\nGender: Male\r\nLastName: SASTADO\r\nMaidenName: \r\nMiddleName: VELASCO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
769279	2025-03-13	14:07:19.9373605	<Undetected>	Update	BasicInformationId: 3753\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3836\r\nExtensionName: \r\nFirstName: EMMA\r\nFullName: EMMA BARTE MALALUAN\r\nGender: Female\r\nLastName: MALALUAN\r\nMaidenName: \r\nMiddleName: BARTE\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3753\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3836\r\nExtensionName: \r\nFirstName: EMMA\r\nFullName: EMMA MALALUAN\r\nGender: Female\r\nLastName: MALALUAN\r\nMaidenName: \r\nMiddleName: BARTE\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
769280	2025-03-13	14:07:19.9423497	<Undetected>	Update	BasicInformationId: 3753\r\nBirthDate: October 20, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3837\r\nExtensionName: \r\nFirstName: SANTINO ROBEN\r\nFullName: SANTINO ROBEN SASTADO FEBRIA\r\nGender: Male\r\nLastName: FEBRIA\r\nMaidenName: \r\nMiddleName: SASTADO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3753\r\nBirthDate: October 20, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3837\r\nExtensionName: \r\nFirstName: SANTINO ROBEN\r\nFullName: SANTINO ROBEN FEBRIA\r\nGender: Male\r\nLastName: FEBRIA\r\nMaidenName: \r\nMiddleName: SASTADO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769281	2025-03-13	14:07:19.9463489	<Undetected>	Update	BasicInformationId: 3753\r\nBirthDate: August 29, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3838\r\nExtensionName: \r\nFirstName: SIMON TIMOTHY\r\nFullName: SIMON TIMOTHY SASTADO FEBRIA\r\nGender: Male\r\nLastName: FEBRIA\r\nMaidenName: \r\nMiddleName: SASTADO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3753\r\nBirthDate: August 29, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3838\r\nExtensionName: \r\nFirstName: SIMON TIMOTHY\r\nFullName: SIMON TIMOTHY FEBRIA\r\nGender: Male\r\nLastName: FEBRIA\r\nMaidenName: \r\nMiddleName: SASTADO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769282	2025-03-13	14:07:19.9523083	<Undetected>	Update	BasicInformationId: 3753\r\nBirthDate: October 26, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3839\r\nExtensionName: \r\nFirstName: SHAUN ADAM\r\nFullName: SHAUN ADAM SASTADO FEBRIA\r\nGender: Male\r\nLastName: FEBRIA\r\nMaidenName: \r\nMiddleName: SASTADO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3753\r\nBirthDate: October 26, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3839\r\nExtensionName: \r\nFirstName: SHAUN ADAM\r\nFullName: SHAUN ADAM FEBRIA\r\nGender: Male\r\nLastName: FEBRIA\r\nMaidenName: \r\nMiddleName: SASTADO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769283	2025-03-13	14:07:19.9563087	<Undetected>	Update	BasicInformationId: 3753\r\nBirthDate: September 06, 2024\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3840\r\nExtensionName: \r\nFirstName: ZIA ANAIAH\r\nFullName: ZIA ANAIAH SASTADO FEBRIA\r\nGender: Female\r\nLastName: FEBRIA\r\nMaidenName: \r\nMiddleName: SASTADO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3753\r\nBirthDate: September 06, 2024\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3840\r\nExtensionName: \r\nFirstName: ZIA ANAIAH\r\nFullName: ZIA ANAIAH FEBRIA\r\nGender: Female\r\nLastName: FEBRIA\r\nMaidenName: \r\nMiddleName: SASTADO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769284	2025-03-13	14:07:19.9613086	<Undetected>	Update	BasicInformationId: 3753\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3550\r\n	BasicInformationId: 3753\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3550\r\n	admin	Questionnaires	1
769300	2025-03-13	14:20:46.5721199	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3753\r\nDateOfExamination: September 25, 2011\r\nDateOfRelease: January 15, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 25, 2011\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1123475\r\nPlaceOfExamination: IYAM, LUCENA CITY\r\nRating: 76.4\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
769301	2025-03-13	14:20:46.5771201	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3753\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 32,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: March 13, 2025\r\n	admin	Experiences	1
769302	2025-03-13	14:20:46.5821203	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3753\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: September 06, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
769303	2025-03-13	14:20:46.5871202	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3753\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: September 05, 2024\r\n	admin	Experiences	1
769411	2025-03-13	15:02:26.2426383	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3756\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1995\r\nDateTo: 1999\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 1999\r\n	admin	EducationalBackgrounds	1
769298	2025-03-13	14:20:41.4602497	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: PARCEL 5/ BLOCK 40/ LOT. 12\r\nAddress2: MERCEDES HOMES\r\nBarangay: SORO-SORO ILAYA\r\nBasicInformationId: 3754\r\nBirthDate: May 07, 1995\r\nBirthPlace: STA. CLARA BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSEANN.ALCANTARA001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSE ANN\r\nFullName: ROSE ANN M. ALCANTARA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALCANTARA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09166308495\r\nNationality: Filipino\r\nPermanentAddress1: PARCEL 5/ BLOCK 40/ LOT. 12\r\nPermanentAddress2: MERCEDES HOMES\r\nPermanentBarangay: SORO-SORO ILAYA\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 46\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: PARCEL 5/ BLOCK 40/ LOT. 12\r\nAddress2: MERCEDES HOMES\r\nBarangay: SORO-SORO ILAYA\r\nBasicInformationId: 3754\r\nBirthDate: May 07, 1995\r\nBirthPlace: STA. CLARA BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSEANN.ALCANTARA001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSE ANN\r\nFullName: ROSE ANN M. ALCANTARA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALCANTARA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09166308495\r\nNationality: Filipino\r\nPermanentAddress1: PARCEL 5/ BLOCK 40/ LOT. 12\r\nPermanentAddress2: MERCEDES HOMES\r\nPermanentBarangay: SORO-SORO ILAYA\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 46\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769299	2025-03-13	14:20:41.4707545	<Undetected>	Update	BasicInformationId: 3754\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3551\r\n	BasicInformationId: 3754\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3551\r\n	admin	Questionnaires	1
769315	2025-03-13	14:26:08.1926168	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3748\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RODOLFO\r\nFullName: RODOLFO PAGDONSOLAN DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: PAGDONSOLAN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
769316	2025-03-13	14:26:08.1966163	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3748\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CRESENCIANA\r\nFullName: CRESENCIANA MENDOZA BALMES\r\nGender: Male\r\nLastName: BALMES\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
769317	2025-03-13	14:28:11.7426044	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3754\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: NUMERIANO\r\nFullName: NUMERIANO VILLENZA ALCANTARA\r\nGender: Male\r\nLastName: ALCANTARA\r\nMaidenName: \r\nMiddleName: VILLENZA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
769318	2025-03-13	14:28:11.7546016	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3754\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LORENA\r\nFullName: LORENA ABAG MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: ABAG\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
769332	2025-03-13	14:34:36.3135178	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3754\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS CITY SOUTH ELEMENTARY SCHOOL\r\nYearGraduated: 2007\r\n	admin	EducationalBackgrounds	1
769333	2025-03-13	14:34:36.3285623	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3754\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2007\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
769334	2025-03-13	14:34:36.3325600	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3754\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 2012\r\nDateTo: 2016\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: COLEGIO NG LUNGSOD NG BATANGAS \r\nYearGraduated: 2016\r\n	admin	EducationalBackgrounds	1
769335	2025-03-13	14:34:36.3415609	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3754\r\nCourse: \r\nCourseId: 1367\r\nCourseOrMajor: \r\nDateFrom: 2017\r\nDateTo: 2024\r\nEducationalAttainment: 33\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
769336	2025-03-13	14:34:36.3465158	<Undetected>	Update	BasicInformationId: 3754\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3843\r\nExtensionName: \r\nFirstName: NUMERIANO\r\nFullName: NUMERIANO VILLENZA ALCANTARA\r\nGender: Male\r\nLastName: ALCANTARA\r\nMaidenName: \r\nMiddleName: VILLENZA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3754\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3843\r\nExtensionName: \r\nFirstName: NUMERIANO\r\nFullName: NUMERIANO ALCANTARA\r\nGender: Male\r\nLastName: ALCANTARA\r\nMaidenName: \r\nMiddleName: VILLENZA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
769433	2025-03-13	15:11:43.2701416	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT VIII INSERVICE TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769304	2025-03-13	14:20:46.5921202	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3753\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: December 29, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
769305	2025-03-13	14:20:46.5961200	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3753\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: October 30, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
769306	2025-03-13	14:20:46.6011202	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3753\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 16, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: October 29, 2023\r\n	admin	Experiences	1
769307	2025-03-13	14:20:46.6061216	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3753\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 29,165.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 15, 2023\r\n	admin	Experiences	1
769308	2025-03-13	14:20:46.6101212	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3753\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 27,608.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
769309	2025-03-13	14:20:46.6151216	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3753\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 26,052.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
769310	2025-03-13	14:20:46.6191213	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3753\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: October 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 24,495.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
769311	2025-03-13	14:20:46.6241214	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3753\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 19,620.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: September 30, 2020\r\n	admin	Experiences	1
769312	2025-03-13	14:20:46.6291215	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3753\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
769313	2025-03-13	14:20:46.6331210	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3753\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,620.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
769314	2025-03-13	14:20:46.6381215	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3753\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 13, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
770027	2025-03-14	10:42:35.7229773	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTANCE, YET CONNECTED: LEARNING TOGETHER THROUGH VIRTUAL COMMUNITIES OF INQUIRY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769319	2025-03-13	14:29:16.4596848	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 0078\r\nAddress2: \r\nBarangay: BUCAL\r\nBasicInformationId: 0\r\nBirthDate: September 17, 1978\r\nBirthPlace: BUCAL BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: maribel.detorres@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIBEL\r\nFullName: MARIBEL DC. DE TORRES\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DE TORRES\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nMobileNumber: 09156020010\r\nNationality: Filipino\r\nPermanentAddress1: 0078\r\nPermanentAddress2: \r\nPermanentBarangay: BUCAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: WEST\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: WEST\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769320	2025-03-13	14:29:16.4679348	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3755\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
769321	2025-03-13	14:31:10.1772253	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3755\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09173830187\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ISAGANI\r\nFullName: ISAGANI COMETA DE TORRES\r\nGender: Male\r\nLastName: DE TORRES\r\nMaidenName: \r\nMiddleName: COMETA\r\nOccupation: OVERSEAS FILIPINO WORKER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
769322	2025-03-13	14:31:10.1891855	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3755\r\nBirthDate: December 19, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CARMELA YASKY\r\nFullName: CARMELA YASKY DE CASTRO DE TORRES\r\nGender: Male\r\nLastName: DE TORRES\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769323	2025-03-13	14:31:10.1931719	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3755\r\nBirthDate: December 02, 2012\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: YURIE ISABEL\r\nFullName: YURIE ISABEL DE CASTRO DE TORRES\r\nGender: Male\r\nLastName: DE TORRES\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769324	2025-03-13	14:31:10.2031388	<Undetected>	Update	BasicInformationId: 3755\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3552\r\n	BasicInformationId: 3755\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3552\r\n	admin	Questionnaires	1
769325	2025-03-13	14:34:12.4263470	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: THIRS HONORABLE\r\nBasicInformationId: 3755\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1986\r\nDateTo: 1992\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BUCAL ELEMENTARY SCHOOL\r\nYearGraduated: 1992\r\n	admin	EducationalBackgrounds	1
769326	2025-03-13	14:34:12.4303336	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: THIRD HONORABLE\r\nBasicInformationId: 3755\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1993\r\nDateTo: 1996\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: DR. CONCEPCION A. AGUILA MEMORIAL COLLEGE\r\nYearGraduated: 1996\r\n	admin	EducationalBackgrounds	1
769327	2025-03-13	14:34:12.4412968	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3755\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1997\r\nDateTo: 2000\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MATHEMATICS\r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 2000\r\n	admin	EducationalBackgrounds	1
769328	2025-03-13	14:34:12.4452835	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3755\r\nCourse: \r\nCourseId: 1284\r\nCourseOrMajor: \r\nDateFrom: 2013\r\nDateTo: 2015\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: EDUCATIONAL ADMINISTRATION\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2015\r\n	admin	EducationalBackgrounds	1
769329	2025-03-13	14:34:12.4522602	<Undetected>	Update	BasicInformationId: 3755\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09173830187\r\nEmployeeRelativeId: 3845\r\nExtensionName: \r\nFirstName: ISAGANI\r\nFullName: ISAGANI COMETA DE TORRES\r\nGender: Male\r\nLastName: DE TORRES\r\nMaidenName: \r\nMiddleName: COMETA\r\nOccupation: OVERSEAS FILIPINO WORKER\r\nRelationship: Husband\r\n	BasicInformationId: 3755\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09173830187\r\nEmployeeRelativeId: 3845\r\nExtensionName: \r\nFirstName: ISAGANI\r\nFullName: ISAGANI DE TORRES\r\nGender: Male\r\nLastName: DE TORRES\r\nMaidenName: \r\nMiddleName: COMETA\r\nOccupation: OVERSEAS FILIPINO WORKER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
769435	2025-03-13	15:12:43.2928086	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3754\r\nEmployeeTrainingId: 0\r\nFromDate: January 26, 2024\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16465\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769337	2025-03-13	14:34:36.3505155	<Undetected>	Update	BasicInformationId: 3754\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3844\r\nExtensionName: \r\nFirstName: LORENA\r\nFullName: LORENA ABAG MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: ABAG\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3754\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3844\r\nExtensionName: \r\nFirstName: LORENA\r\nFullName: LORENA MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: ABAG\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
769351	2025-03-13	14:37:08.3521148	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3754\r\nDateOfExamination: September 25, 2016\r\nDateOfRelease: May 07, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 25, 2016\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1516711\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 75.6\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
769358	2025-03-13	14:41:59.6529077	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3754\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 09, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,245.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: January 01, 2025\r\n	admin	Experiences	1
769359	2025-03-13	14:41:59.6609116	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3754\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 12, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 28,798.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: September 08, 2024\r\n	admin	Experiences	1
769379	2025-03-13	14:47:26.2870786	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MID-YEAR SCHOOL-BASED INSET FOR TEACHERS AND PERFORMANCE REVIEW AND EVALUATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769380	2025-03-13	14:49:03.4706453	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3754\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16462\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769406	2025-03-13	14:58:29.8074695	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION SPORTS TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769408	2025-03-13	15:01:05.5308189	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3754\r\nEmployeeTrainingId: 0\r\nFromDate: July 08, 2024\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BATANGAS CITY INTEGRATED HIG SCHOOL\r\nStatus: \r\nToDate: July 10, 2024\r\nTrainingId: 16463\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769409	2025-03-13	15:02:06.1006572	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 0276\r\nAddress2: BULIHAN\r\nBarangay: TABANGAO AMBULONG\r\nBasicInformationId: 3709\r\nBirthDate: December 06, 1976\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marites.tarcelo@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARITES\r\nFullName: MARITES DC. TARCELO\r\nGender: Female\r\nGovernmentIdIssuedDate: December 26, 2024\r\nGovernmentIdNumber: 0498801\r\nGovernmentIdPlaceIssued: STA.MESA MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 20029993890\r\nHDMF: 1490-0092-0154\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: TARCELO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nMobileNumber: 09151454687\r\nNationality: Filipino\r\nPermanentAddress1: 0276\r\nPermanentAddress2: BULIHAN\r\nPermanentBarangay: TABANGAO AMBULONG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000051603-0\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: 04-0944844-1\r\nStreetName: \r\nTIN: 188-268-709-0000\r\nWeight: 63\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 0276\r\nAddress2: BULIHAN\r\nBarangay: TABANGAO AMBULONG\r\nBasicInformationId: 3709\r\nBirthDate: December 06, 1976\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marites.tarcelo@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARITES\r\nFullName: MARITES DC. TARCELO\r\nGender: Female\r\nGovernmentIdIssuedDate: December 26, 2024\r\nGovernmentIdNumber: 0498801\r\nGovernmentIdPlaceIssued: STA.MESA MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 20029993890\r\nHDMF: 1490-0092-0154\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: TARCELO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nMobileNumber: 09151454687\r\nNationality: Filipino\r\nPermanentAddress1: 0276\r\nPermanentAddress2: BULIHAN\r\nPermanentBarangay: TABANGAO AMBULONG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000051603-0\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-0944844-1\r\nStreetName: \r\nTIN: 188-268-709-0000\r\nWeight: 63\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769422	2025-03-13	15:03:57.3517703	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SSCHOOL INSERVICE TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769425	2025-03-13	15:05:15.8336265	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL INSERVICE TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769427	2025-03-13	15:07:14.7232299	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT VIII SERVICE TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769432	2025-03-13	15:09:17.9119161	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT VIII SPORTS TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769338	2025-03-13	14:35:39.6514615	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 0078\r\nAddress2: \r\nBarangay: BUCAL\r\nBasicInformationId: 3755\r\nBirthDate: September 17, 1978\r\nBirthPlace: BUCAL BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: maribel.detorres@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIBEL\r\nFullName: MARIBEL DC. DE TORRES\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DE TORRES\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nMobileNumber: 09156020010\r\nNationality: Filipino\r\nPermanentAddress1: 0078\r\nPermanentAddress2: \r\nPermanentBarangay: BUCAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: WEST\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: WEST\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 0078\r\nAddress2: \r\nBarangay: BUCAL\r\nBasicInformationId: 3755\r\nBirthDate: September 17, 1978\r\nBirthPlace: BUCAL BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: maribel.detorres@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIBEL\r\nFullName: MARIBEL DC. DE TORRES\r\nGender: Female\r\nGovernmentIdIssuedDate: October 26, 2000\r\nGovernmentIdNumber: 0656056\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02002896686\r\nHDMF: 1490-0096-5660\r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DE TORRES\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nMobileNumber: 09156020010\r\nNationality: Filipino\r\nPermanentAddress1: 0078\r\nPermanentAddress2: \r\nPermanentBarangay: BUCAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: WEST\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025158561-9\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: WEST\r\nTIN: 301-719-396-0000\r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769352	2025-03-13	14:37:22.3873003	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3755\r\nCharacterReferenceId: 0\r\nCompanyAddress: BUCAL BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09605313104\r\nExtensionName: \r\nFirstName: ROWENA\r\nLastName: MACATANGAY\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769353	2025-03-13	14:37:22.3952733	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3755\r\nCharacterReferenceId: 0\r\nCompanyAddress: BUCAL BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09913533013\r\nExtensionName: \r\nFirstName: AQUILINO\r\nLastName: MAGNAYE\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769354	2025-03-13	14:37:22.3992602	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3755\r\nCharacterReferenceId: 0\r\nCompanyAddress: CONCEPCION BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09279071085\r\nExtensionName: \r\nFirstName: FLORDELIZA\r\nLastName: RESPLANDOR\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769355	2025-03-13	14:38:32.1219637	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3755\r\nDateOfExamination: August 27, 2000\r\nDateOfRelease: September 17, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 27, 2000\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0656056\r\nPlaceOfExamination: F. TORRES HIGH SCHOOL GAGALANGIN TONDO MANILA\r\nRating: 76.8\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
769360	2025-03-13	14:42:09.6183917	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3755\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 51,832.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-2\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
769361	2025-03-13	14:42:09.6223783	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3755\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 49,542.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-2\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
769362	2025-03-13	14:42:09.6273617	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3755\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 03, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 47,228.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-2\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
769363	2025-03-13	14:42:09.6323451	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3755\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 46,725.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-1\r\nStatus: Permanent\r\nToDate: November 02, 2023\r\n	admin	Experiences	1
769364	2025-03-13	14:42:09.6373285	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3755\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 45,203.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
769339	2025-03-13	14:36:33.9251675	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3753\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: November 03, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: December 18, 2015\r\n	admin	Experiences	1
769340	2025-03-13	14:36:33.9311654	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3753\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 30, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: August 27, 2015\r\n	admin	Experiences	1
769341	2025-03-13	14:36:33.9361656	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3753\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 29, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: July 28, 2015\r\n	admin	Experiences	1
769342	2025-03-13	14:36:33.9411673	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3753\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: February 04, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: March 04, 2015\r\n	admin	Experiences	1
769343	2025-03-13	14:36:33.9451667	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3753\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: November 10, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: December 05, 2014\r\n	admin	Experiences	1
769344	2025-03-13	14:36:33.9501671	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3753\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: October 09, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: November 06, 2014\r\n	admin	Experiences	1
769345	2025-03-13	14:36:33.9551671	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3753\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: September 10, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: October 07, 2014\r\n	admin	Experiences	1
769346	2025-03-13	14:36:33.9601674	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3753\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: February 07, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: March 31, 2014\r\n	admin	Experiences	1
769347	2025-03-13	14:36:33.9662283	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3753\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 07, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: March 07, 2013\r\n	admin	Experiences	1
769348	2025-03-13	14:36:33.9712092	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3753\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: November 05, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: December 04, 2012\r\n	admin	Experiences	1
769349	2025-03-13	14:36:33.9761657	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3753\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 18, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: August 14, 2012\r\n	admin	Experiences	1
769504	2025-03-13	15:38:28.0499230	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3756\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY PUBLIC SCHOOL TEACHERS  AND EMPLOYEES ASSOCIATION\r\n	admin	Organizations	1
769350	2025-03-13	14:36:33.9801658	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3753\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: September 21, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: October 17, 2012\r\n	admin	Experiences	1
769356	2025-03-13	14:38:32.0975624	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT IN-SERVICE TRAINING ON SCHOOL DATA MANAGEMENT SYSTEM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769357	2025-03-13	14:41:18.5375847	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 DIVISION CLINIQUING FOR REGIONAL SCHOOLS PRESS CONFERENCE QUALIFIERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769367	2025-03-13	14:44:34.0444684	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT IN-SERVICE TRAINING : "ONWARDS TO RECOVERY AND SUSTAINABLE EDUCATION"\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769368	2025-03-13	14:45:22.6704513	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3753\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16357\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769369	2025-03-13	14:45:22.6794504	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3753\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: January 26, 2024\r\nTrainingId: 16459\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769370	2025-03-13	14:45:22.6834499	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3753\r\nEmployeeTrainingId: 0\r\nFromDate: August 01, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 01, 2023\r\nTrainingId: 16452\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769371	2025-03-13	14:45:22.6884499	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3753\r\nEmployeeTrainingId: 0\r\nFromDate: May 26, 2023\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: May 27, 2023\r\nTrainingId: 16460\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769372	2025-03-13	14:45:22.6934500	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3753\r\nEmployeeTrainingId: 0\r\nFromDate: February 07, 2023\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: February 09, 2023\r\nTrainingId: 16461\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769373	2025-03-13	14:46:58.7291253	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3753\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
769374	2025-03-13	14:46:58.7331253	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3753\r\nSkillId: 0\r\nSkillName: DRAWING\r\n	admin	Skills	1
769375	2025-03-13	14:46:58.7440878	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3753\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
769376	2025-03-13	14:46:58.7591543	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3753\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
769377	2025-03-13	14:46:58.7954006	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3753\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY PUBLIC SCHOOL TEACHERS AND EMPLOYEES ASSOCIATION\r\n	admin	Organizations	1
769378	2025-03-13	14:46:58.8054002	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3753\r\nOrganizationId: 0\r\nOrganizationName: BUCAL MULTI-PURPOSE COOPERATIVE INCORPORATED\r\n	admin	Organizations	1
769394	2025-03-13	14:50:16.4581079	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3753\r\nCharacterReferenceId: 0\r\nCompanyAddress: BUCAL, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09605313104\r\nExtensionName: \r\nFirstName: ROWENA\r\nLastName: MACATANGAY\r\nMiddleName: P.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769395	2025-03-13	14:50:16.4631081	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3753\r\nCharacterReferenceId: 0\r\nCompanyAddress: SORO-SORO KARSADA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09195979838\r\nExtensionName: \r\nFirstName: MARISSA \r\nLastName: MACATANGAY\r\nMiddleName: A.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769396	2025-03-13	14:50:16.4681079	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3753\r\nCharacterReferenceId: 0\r\nCompanyAddress: BUCAL, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09913533013\r\nExtensionName: \r\nFirstName: AQUILINO\r\nLastName: MAGNAYE\r\nMiddleName: D.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769365	2025-03-13	14:42:09.6413150	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3755\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 43,681.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
769366	2025-03-13	14:42:09.6462984	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3755\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 03, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 42,159.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
769381	2025-03-13	14:49:08.3766009	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3755\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 26,754.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: November 02, 2020\r\n	admin	Experiences	1
769382	2025-03-13	14:49:08.3815844	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3755\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 25,232.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
769383	2025-03-13	14:49:08.3865676	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3755\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 24,224.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
769384	2025-03-13	14:49:08.3915518	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3755\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 23,257.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
769385	2025-03-13	14:49:08.3955379	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3755\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 21,868.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: January 31, 2017\r\n	admin	Experiences	1
769386	2025-03-13	14:49:08.4005211	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3755\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 21,091.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
769387	2025-03-13	14:49:08.4055047	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3755\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 11, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 20,341.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
769388	2025-03-13	14:49:08.4094915	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3755\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 20,140.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: June 10, 2014\r\n	admin	Experiences	1
769389	2025-03-13	14:49:08.4144749	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3755\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 11, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 20,140.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
769390	2025-03-13	14:49:08.4194582	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3755\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,333.00\r\nPositionHeld: TETACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 10, 2011\r\n	admin	Experiences	1
769391	2025-03-13	14:49:08.4234444	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3755\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 16,726.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
769392	2025-03-13	14:49:08.4284281	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3755\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 15,119.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
769393	2025-03-13	14:49:08.4324143	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3755\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,748.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
769398	2025-03-13	14:50:41.9735127	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3755\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 10, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 11,589.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
769399	2025-03-13	14:50:41.9824825	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3755\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,933.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 09, 2008\r\n	admin	Experiences	1
769400	2025-03-13	14:50:41.9884625	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3755\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 06, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
769420	2025-03-13	15:03:40.6457680	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 347\r\nAddress2: \r\nBarangay: BUKAL\r\nBasicInformationId: 0\r\nBirthDate: April 16, 1987\r\nBirthPlace: BUKAL, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: aprilpearl.decastro@deped.gov.ph\r\nExtensionName: \r\nFirstName: APRIL PEARL\r\nFullName: APRIL PEARL T. DE CASTRO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: TEJADA\r\nMobileNumber: 09926508829\r\nNationality: Filipino\r\nPermanentAddress1: 347\r\nPermanentAddress2: \r\nPermanentBarangay: BUKAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: E. JACINTO STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: E. JACINTO STREET\r\nTIN: \r\nWeight: 130\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769421	2025-03-13	15:03:40.6552966	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3757\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
769423	2025-03-13	15:04:41.4544368	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3757\r\nBirthDate: September 12, 2010\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DANA PEARL\r\nFullName: DANA PEARL DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769424	2025-03-13	15:04:41.4594202	<Undetected>	Update	BasicInformationId: 3757\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3554\r\n	BasicInformationId: 3757\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3554\r\n	admin	Questionnaires	1
769426	2025-03-13	15:06:51.4915938	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER OF ARTS IN EARLY CHILDHOOD EDUCATION\r\nLevel: College\r\n	admin	Courses	1
769428	2025-03-13	15:08:43.7371398	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3757\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 2000\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: ZAPOTE ELEMENTARY SCHOOL\r\nYearGraduated: 2000\r\n	admin	EducationalBackgrounds	1
769397	2025-03-13	14:50:16.4731095	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BUCAL\r\nBasicInformationId: 3753\r\nBirthDate: January 15, 1987\r\nBirthPlace: BUCAL, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ronalyn.febria@deped.gov.ph\r\nExtensionName: \r\nFirstName: RONALYN\r\nFullName: RONALYN S. FEBRIA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: FEBRIA\r\nMaidenName: \r\nMiddleName: SASTADO\r\nMobileNumber: 09483522722\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BUKAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: D. SILANG ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: D. SILANG ST.\r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BUCAL\r\nBasicInformationId: 3753\r\nBirthDate: January 15, 1987\r\nBirthPlace: BUCAL, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ronalyn.febria@deped.gov.ph\r\nExtensionName: \r\nFirstName: RONALYN\r\nFullName: RONALYN S. FEBRIA\r\nGender: Female\r\nGovernmentIdIssuedDate: April 18, 2012\r\nGovernmentIdNumber: 1123475\r\nGovernmentIdPlaceIssued: PRC LUCENA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: FEBRIA\r\nMaidenName: \r\nMiddleName: SASTADO\r\nMobileNumber: 09483522722\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BUKAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: D. SILANG ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: D. SILANG ST.\r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769401	2025-03-13	14:51:45.7796784	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BUCAL\r\nBasicInformationId: 3753\r\nBirthDate: January 15, 1987\r\nBirthPlace: BUCAL, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ronalyn.febria@deped.gov.ph\r\nExtensionName: \r\nFirstName: RONALYN\r\nFullName: RONALYN S. FEBRIA\r\nGender: Female\r\nGovernmentIdIssuedDate: April 18, 2012\r\nGovernmentIdNumber: 1123475\r\nGovernmentIdPlaceIssued: PRC LUCENA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: FEBRIA\r\nMaidenName: \r\nMiddleName: SASTADO\r\nMobileNumber: 09483522722\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BUKAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: D. SILANG ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: D. SILANG ST.\r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BUCAL\r\nBasicInformationId: 3753\r\nBirthDate: January 15, 1987\r\nBirthPlace: BUCAL, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ronalyn.febria@deped.gov.ph\r\nExtensionName: \r\nFirstName: RONALYN\r\nFullName: RONALYN S. FEBRIA\r\nGender: Female\r\nGovernmentIdIssuedDate: April 18, 2012\r\nGovernmentIdNumber: 1123475\r\nGovernmentIdPlaceIssued: PRC LUCENA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02004232148\r\nHDMF: 1211-7457-2901\r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: FEBRIA\r\nMaidenName: \r\nMiddleName: SASTADO\r\nMobileNumber: 09483522722\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BUKAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: D. SILANG ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-201448031-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1613159-2\r\nStreetName: D. SILANG ST.\r\nTIN: 304-654-480-0000\r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769402	2025-03-13	14:56:09.9336622	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 322 PUROK 2\r\nAddress2: \r\nBarangay: AGUILA\r\nBasicInformationId: 0\r\nBirthDate: December 04, 1981\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: SAN JOSE\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: athena.cometa@deped.gov.ph\r\nExtensionName: \r\nFirstName: ATHENA\r\nFullName: ATHENA M. COMETA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437022671\r\nLastName: COMETA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09988639304\r\nNationality: Filipino\r\nPermanentAddress1: 322 PUROK 2\r\nPermanentAddress2: \r\nPermanentBarangay: AGUILA\r\nPermanentCity: SAN JOSE\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4227\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 43\r\nZipCode: 4227\r\n	admin	BasicInformation	1
769403	2025-03-13	14:56:09.9760041	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3756\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SEVERINO\r\nFullName: SEVERINO DOTONG COMETA\r\nGender: Male\r\nLastName: COMETA\r\nMaidenName: \r\nMiddleName: DOTONG\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
769404	2025-03-13	14:56:09.9770033	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3756\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: AURORA\r\nFullName: AURORA GONZALES MENDOZA\r\nGender: Female\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: GONZALES\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
769405	2025-03-13	14:56:09.9770033	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3756\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
769407	2025-03-13	15:00:26.5761392	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER OF ARTS IN EDUCATIONAL ADMINISTRATION\r\nLevel: Master's\r\n	admin	Courses	1
769410	2025-03-13	15:02:26.2376833	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3756\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1989\r\nDateTo: 1995\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES\r\nYearGraduated: 1995\r\n	admin	EducationalBackgrounds	1
769412	2025-03-13	15:02:26.2516376	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3756\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1999\r\nDateTo: 2003\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2003\r\n	admin	EducationalBackgrounds	1
769413	2025-03-13	15:02:26.2556375	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3756\r\nCourse: \r\nCourseId: 1284\r\nCourseOrMajor: \r\nDateFrom: 2016\r\nDateTo: 2017\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN EDUCATIONAL ADMINISTRAION\r\nSchoolorUniversity: GOLDEN GATE COLLEGES \r\nYearGraduated: 2017\r\n	admin	EducationalBackgrounds	1
769414	2025-03-13	15:02:26.2616374	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3756\r\nCourse: \r\nCourseId: 1379\r\nCourseOrMajor: \r\nDateFrom: 2006\r\nDateTo: 2012\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAAS\r\nYearGraduated: 2017\r\n	admin	EducationalBackgrounds	1
769415	2025-03-13	15:02:26.2656375	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3756\r\nDateOfExamination: August 31, 2003\r\nDateOfRelease: December 04, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 31, 2003\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0820478\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 80.80\r\nTitle: LICENSURE ELIGIBILITY FOR TEACHERS\r\n	admin	Eligibilities	1
769416	2025-03-13	15:02:26.2706375	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 322 PUROK 2\r\nAddress2: \r\nBarangay: AGUILA\r\nBasicInformationId: 3756\r\nBirthDate: December 04, 1981\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: SAN JOSE\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: athena.cometa@deped.gov.ph\r\nExtensionName: \r\nFirstName: ATHENA\r\nFullName: ATHENA M. COMETA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437022671\r\nLastName: COMETA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09988639304\r\nNationality: Filipino\r\nPermanentAddress1: 322 PUROK 2\r\nPermanentAddress2: \r\nPermanentBarangay: AGUILA\r\nPermanentCity: SAN JOSE\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4227\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 43\r\nZipCode: 4227\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 322 PUROK 2\r\nAddress2: \r\nBarangay: AGUILA\r\nBasicInformationId: 3756\r\nBirthDate: December 04, 1981\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: SAN JOSE\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: athena.cometa@deped.gov.ph\r\nExtensionName: \r\nFirstName: ATHENA\r\nFullName: ATHENA M. COMETA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437022671\r\nLastName: COMETA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09988639304\r\nNationality: Filipino\r\nPermanentAddress1: 322 PUROK 2\r\nPermanentAddress2: \r\nPermanentBarangay: AGUILA\r\nPermanentCity: SAN JOSE\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4227\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 43\r\nZipCode: 4227\r\n	admin	BasicInformation	1
769417	2025-03-13	15:02:26.2756381	<Undetected>	Update	BasicInformationId: 3756\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3848\r\nExtensionName: \r\nFirstName: SEVERINO\r\nFullName: SEVERINO DOTONG COMETA\r\nGender: Male\r\nLastName: COMETA\r\nMaidenName: \r\nMiddleName: DOTONG\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3756\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3848\r\nExtensionName: \r\nFirstName: SEVERINO\r\nFullName: SEVERINO COMETA\r\nGender: Male\r\nLastName: COMETA\r\nMaidenName: \r\nMiddleName: DOTONG\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
769418	2025-03-13	15:02:26.2806376	<Undetected>	Update	BasicInformationId: 3756\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3849\r\nExtensionName: \r\nFirstName: AURORA\r\nFullName: AURORA GONZALES MENDOZA\r\nGender: Female\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: GONZALES\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3756\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3849\r\nExtensionName: \r\nFirstName: AURORA\r\nFullName: AURORA MENDOZA\r\nGender: Female\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: GONZALES\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
769419	2025-03-13	15:02:26.2856376	<Undetected>	Update	BasicInformationId: 3756\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3553\r\n	BasicInformationId: 3756\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3553\r\n	admin	Questionnaires	1
769457	2025-03-13	15:28:11.1589230	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3756\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 35,049.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: March 13, 2025\r\n	admin	Experiences	1
769458	2025-03-13	15:28:11.1649216	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3756\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 33,499.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
769429	2025-03-13	15:08:43.7421233	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3757\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2000\r\nDateTo: 2004\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: LAS-PINAS NORTH NATIONAL HIGH SCHOOL\r\nYearGraduated: 2004\r\n	admin	EducationalBackgrounds	1
769430	2025-03-13	15:08:43.7510933	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3757\r\nCourse: \r\nCourseId: 1307\r\nCourseOrMajor: \r\nDateFrom: 2004\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2009\r\n	admin	EducationalBackgrounds	1
769431	2025-03-13	15:08:43.7560767	<Undetected>	Update	BasicInformationId: 3757\r\nBirthDate: September 12, 2010\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3850\r\nExtensionName: \r\nFirstName: DANA PEARL\r\nFullName: DANA PEARL DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3757\r\nBirthDate: September 12, 2010\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3850\r\nExtensionName: \r\nFirstName: DANA PEARL\r\nFullName: DANA PEARL DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769434	2025-03-13	15:12:21.7764510	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3757\r\nCourse: \r\nCourseId: 1380\r\nCourseOrMajor: \r\nDateFrom: 2022\r\nDateTo: 2025\r\nEducationalAttainment: 39 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: PHILIPPINE NORMAL UNIVERSITY\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
769440	2025-03-13	15:14:49.2647281	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 347\r\nAddress2: \r\nBarangay: BUKAL\r\nBasicInformationId: 3757\r\nBirthDate: April 16, 1987\r\nBirthPlace: BUKAL, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: aprilpearl.decastro@deped.gov.ph\r\nExtensionName: \r\nFirstName: APRIL PEARL\r\nFullName: APRIL PEARL T. DE CASTRO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: TEJADA\r\nMobileNumber: 09926508829\r\nNationality: Filipino\r\nPermanentAddress1: 347\r\nPermanentAddress2: \r\nPermanentBarangay: BUKAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: E. JACINTO STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: E. JACINTO STREET\r\nTIN: \r\nWeight: 130\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 347\r\nAddress2: \r\nBarangay: BUKAL\r\nBasicInformationId: 3757\r\nBirthDate: April 16, 1987\r\nBirthPlace: BUKAL, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: aprilpearl.decastro@deped.gov.ph\r\nExtensionName: \r\nFirstName: APRIL PEARL\r\nFullName: APRIL PEARL T. DE CASTRO\r\nGender: Female\r\nGovernmentIdIssuedDate: May 29, 2014\r\nGovernmentIdNumber: 1304119\r\nGovernmentIdPlaceIssued: PRC LUCENA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02116012454\r\nHDMF: 1211-5492-7513\r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: TEJADA\r\nMobileNumber: 09926508829\r\nNationality: Filipino\r\nPermanentAddress1: 347\r\nPermanentAddress2: \r\nPermanentBarangay: BUKAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: E. JACINTO STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000092610-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: E. JACINTO STREET\r\nTIN: 447-831-621-0000\r\nWeight: 130\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769444	2025-03-13	15:20:31.4182525	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3757\r\nCharacterReferenceId: 0\r\nCompanyAddress: BUCAL, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09605313104\r\nExtensionName: \r\nFirstName: ROWENA\r\nLastName: MACATANGAY\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769445	2025-03-13	15:20:31.4252293	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3757\r\nCharacterReferenceId: 0\r\nCompanyAddress: BALETE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09777447371\r\nExtensionName: \r\nFirstName: JASMIN\r\nLastName: MACARAIG\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769446	2025-03-13	15:20:31.4302125	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3757\r\nCharacterReferenceId: 0\r\nCompanyAddress: BUCAL, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09913533013\r\nExtensionName: \r\nFirstName: AQUILINO\r\nLastName: MAGNAYE\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769447	2025-03-13	15:22:22.8631674	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3757\r\nDateOfExamination: September 25, 2011\r\nDateOfRelease: April 16, 2023\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 25, 2011\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1304119\r\nPlaceOfExamination: IYAM, LUCENA CITY\r\nRating: 75\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
769448	2025-03-13	15:23:15.1653870	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3757\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
769449	2025-03-13	15:23:15.1773469	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3757\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
769450	2025-03-13	15:23:15.1823303	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3757\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY PUBLIC SCHOOL TEACHERS AND EMPLOYEES ASSOCIATION\r\n	admin	Organizations	1
769451	2025-03-13	15:26:43.9932831	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2022 DISTRICT III WEBINAR/WORKSHOP ON LEARNING ASSESSMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770064	2025-03-14	11:10:13.6408296	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2024 DISTRICT TRAINING "TRAINING OF COACHES FOR VARIOUS EVENTS"\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769436	2025-03-13	15:12:43.3073196	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3754\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOL DIVISION OFFICE BATANGAS CITY\r\nStatus: \r\nToDate: January 25, 2024\r\nTrainingId: 16468\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769437	2025-03-13	15:12:43.3133174	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3754\r\nEmployeeTrainingId: 0\r\nFromDate: August 24, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOL DIVISION OFFICE BATANGAS CITY\r\nStatus: \r\nToDate: August 24, 2023\r\nTrainingId: 16467\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769438	2025-03-13	15:12:43.3193169	<Undetected>	Update	BasicInformationId: 3754\r\nEmployeeTrainingId: 9505\r\nFromDate: July 08, 2024\r\nHours: 40.00\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BATANGAS CITY INTEGRATED HIG SCHOOL\r\nStatus: \r\nToDate: July 10, 2024\r\nTrainingId: 16463\r\nTrainingPerformanceRate: 0\r\n	BasicInformationId: 3754\r\nEmployeeTrainingId: 9505\r\nFromDate: July 08, 2024\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BATANGAS CITY INTEGRATED HIG SCHOOL\r\nStatus: \r\nToDate: July 10, 2024\r\nTrainingId: 16463\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769439	2025-03-13	15:13:08.5099297	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3754\r\nSkillId: 0\r\nSkillName: COMPUTER SKILLS\r\n	admin	Skills	1
769441	2025-03-13	15:17:02.7911438	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3754\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09563977545\r\nExtensionName: \r\nFirstName: RUEL\r\nLastName: DE CASTRO\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769442	2025-03-13	15:17:02.8031878	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3754\r\nCharacterReferenceId: 0\r\nCompanyAddress: BANABA BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09399198761\r\nExtensionName: \r\nFirstName: EDEN\r\nLastName: DESTACAMENTO\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769443	2025-03-13	15:17:02.8081433	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3754\r\nCharacterReferenceId: 0\r\nCompanyAddress: BANABA WEST BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09083058176\r\nExtensionName: \r\nFirstName: EVANGELINE\r\nLastName: BARTE\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769488	2025-03-13	15:31:55.9551509	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: PARCEL 5/ BLOCK 40/ LOT. 12\r\nAddress2: MERCEDES HOMES\r\nBarangay: SORO-SORO ILAYA\r\nBasicInformationId: 3754\r\nBirthDate: May 07, 1995\r\nBirthPlace: STA. CLARA BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSEANN.ALCANTARA001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSE ANN\r\nFullName: ROSE ANN M. ALCANTARA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALCANTARA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09166308495\r\nNationality: Filipino\r\nPermanentAddress1: PARCEL 5/ BLOCK 40/ LOT. 12\r\nPermanentAddress2: MERCEDES HOMES\r\nPermanentBarangay: SORO-SORO ILAYA\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 46\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: PARCEL 5/ BLOCK 40/ LOT. 12\r\nAddress2: MERCEDES HOMES\r\nBarangay: SORO-SORO ILAYA\r\nBasicInformationId: 3754\r\nBirthDate: May 07, 1995\r\nBirthPlace: STA. CLARA BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSEANN.ALCANTARA001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSE ANN\r\nFullName: ROSE ANN M. ALCANTARA\r\nGender: Female\r\nGovernmentIdIssuedDate: December 27, 2016\r\nGovernmentIdNumber: 1516711\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: 02005819514\r\nHDMF: 1211-9916-7887\r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALCANTARA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09166308495\r\nNationality: Filipino\r\nPermanentAddress1: PARCEL 5/ BLOCK 40/ LOT. 12\r\nPermanentAddress2: MERCEDES HOMES\r\nPermanentBarangay: SORO-SORO ILAYA\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-250002039-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 13-0167210-7\r\nStreetName: \r\nTIN: 626-552-944-0000\r\nWeight: 46\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769452	2025-03-13	15:27:13.0011842	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3757\r\nEmployeeTrainingId: 0\r\nFromDate: November 26, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 28, 2024\r\nTrainingId: 16456\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769453	2025-03-13	15:27:13.0061675	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3757\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16361\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769454	2025-03-13	15:27:13.0111510	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3757\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: January 26, 2024\r\nTrainingId: 16459\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769455	2025-03-13	15:27:13.0161342	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3757\r\nEmployeeTrainingId: 0\r\nFromDate: February 07, 2023\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: February 09, 2023\r\nTrainingId: 16461\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769456	2025-03-13	15:27:13.0211175	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3757\r\nEmployeeTrainingId: 0\r\nFromDate: February 03, 2022\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: February 04, 2022\r\nTrainingId: 16469\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769480	2025-03-13	15:30:55.0830348	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3757\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 05, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 32,529.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
769481	2025-03-13	15:30:55.0870214	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3757\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 32,245.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: January 05, 2025\r\n	admin	Experiences	1
769482	2025-03-13	15:30:55.0920048	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3757\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 30,705.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
769483	2025-03-13	15:30:55.0969882	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3757\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 19,165.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
769484	2025-03-13	15:30:55.1019715	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3757\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 05, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 27,608.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
769485	2025-03-13	15:30:55.1069551	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3757\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 26,012.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: January 04, 2022\r\n	admin	Experiences	1
769486	2025-03-13	15:30:55.1119381	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3757\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 15, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 24,450.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
769487	2025-03-13	15:30:55.1159248	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3757\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 24,161.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 14, 2021\r\n	admin	Experiences	1
769459	2025-03-13	15:28:11.1699230	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3756\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,949.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
769460	2025-03-13	15:28:11.1749230	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3756\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: November 02, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 30,427.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
769461	2025-03-13	15:28:11.1789227	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3756\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 30,111.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: November 01, 2022\r\n	admin	Experiences	1
769462	2025-03-13	15:28:11.1849226	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3756\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 28,589.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
769463	2025-03-13	15:28:11.1889212	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3756\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 27,067.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
769464	2025-03-13	15:28:11.1980320	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3756\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: November 02, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 25,545.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
769465	2025-03-13	15:28:11.2040771	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3756\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 25,232.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: November 01, 2019\r\n	admin	Experiences	1
769466	2025-03-13	15:28:11.2090292	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3756\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 24,224.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
769467	2025-03-13	15:28:11.2140289	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3756\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 23,257.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
769468	2025-03-13	15:28:11.2190293	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3756\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 21,091.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: November 01, 2016\r\n	admin	Experiences	1
769469	2025-03-13	15:28:11.2240304	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3756\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 25, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 20,341.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
770289	2025-03-14	16:21:24.5722640	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPACITY BUILDING FOR EDUCATORS ON INCLUSIVE EDUCATION CUM AWARENESS ON FILIPINO SIGN LANGUAGE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769470	2025-03-13	15:28:11.2280304	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3756\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 20,140.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: February 24, 2015\r\n	admin	Experiences	1
769471	2025-03-13	15:28:11.2330303	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3756\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 26, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 18,568.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
769472	2025-03-13	15:28:11.2380304	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3756\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,333.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: February 25, 2012\r\n	admin	Experiences	1
769473	2025-03-13	15:28:11.2430294	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3756\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 16,726.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
769474	2025-03-13	15:28:11.2470289	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3756\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 15,119.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
769475	2025-03-13	15:28:11.2520289	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3756\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 25, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 12,748.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
769476	2025-03-13	15:28:11.2570294	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3756\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,026.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-2\r\nStatus: Permanent\r\nToDate: February 24, 2009\r\n	admin	Experiences	1
769477	2025-03-13	15:28:11.2620307	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3756\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,933.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
769478	2025-03-13	15:28:11.2660304	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3756\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS\r\nExperienceId: 0\r\nFromDate: July 12, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
769479	2025-03-13	15:28:11.2752293	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3756\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: November 02, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 22,328.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
769489	2025-03-13	15:34:35.3447592	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3757\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,600.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
769514	2025-03-13	15:41:21.6553516	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3756\r\nCharacterReferenceId: 0\r\nCompanyAddress: SOROSORO KARSADA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09195979838\r\nExtensionName: \r\nFirstName: MARISSA\r\nLastName: MACATANGAY\r\nMiddleName: A.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769490	2025-03-13	15:34:35.3497425	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3757\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 0.21\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
769491	2025-03-13	15:34:35.3607059	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3757\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 15, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,437.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
769492	2025-03-13	15:34:35.3726659	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3757\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 14, 2018\r\n	admin	Experiences	1
769493	2025-03-13	15:35:39.0890964	<Undetected>	Update	BasicInformationId: 3757\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12135\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 0.21\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	BasicInformationId: 3757\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12135\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,038.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
769494	2025-03-13	15:37:16.8127789	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3757\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 19, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,620.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
769495	2025-03-13	15:37:16.8177626	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3757\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 18, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,620.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: August 18, 2017\r\n	admin	Experiences	1
769496	2025-03-13	15:37:16.8217492	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3757\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,620.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: August 17, 2017\r\n	admin	Experiences	1
769497	2025-03-13	15:37:34.1812128	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3756\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 3\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16340\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769498	2025-03-13	15:37:34.1902130	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3756\r\nEmployeeTrainingId: 0\r\nFromDate: November 26, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 28, 2024\r\nTrainingId: 16456\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769499	2025-03-13	15:37:34.1952130	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3756\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16338\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769500	2025-03-13	15:37:34.2002132	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3756\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2024\r\nTrainingId: 16441\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769501	2025-03-13	15:37:34.2042125	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3756\r\nEmployeeTrainingId: 0\r\nFromDate: September 19, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 19, 2024\r\nTrainingId: 16442\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769502	2025-03-13	15:38:28.0349230	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3756\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
769503	2025-03-13	15:38:28.0459248	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3756\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
769505	2025-03-13	15:38:57.2199518	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3757\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
769506	2025-03-13	15:38:57.2239383	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3757\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 15, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
769507	2025-03-13	15:38:57.2319115	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3757\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 02, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 14,857.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 14, 2015\r\n	admin	Experiences	1
769508	2025-03-13	15:39:06.1309984	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 0\r\nBirthDate: November 29, 1965\r\nBirthPlace: CALAPAN, ORIENTAL MINDORO\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: EVANGELINE.BARTE001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: EVANGELINE\r\nFullName: EVANGELINE D. BARTE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.67\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: DELIZO\r\nMobileNumber: 09090803746\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LOOBAN 2\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: LOOBAN 2\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769509	2025-03-13	15:39:06.1502997	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3758\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: NUMERIANO\r\nFullName: NUMERIANO ALCANTARA\r\nGender: Male\r\nLastName: ALCANTARA\r\nMaidenName: \r\nMiddleName: VILLENZA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
769510	2025-03-13	15:39:06.1502997	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3758\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LORENA\r\nFullName: LORENA MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: ABAG\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
769511	2025-03-13	15:39:06.1502997	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3758\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CARLITO\r\nFullName: CARLITO MACARAIG BARTE\r\nGender: Male\r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nOccupation: \r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
769512	2025-03-13	15:39:06.1502997	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3758\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
769513	2025-03-13	15:41:04.1649044	<Undetected>	Update	BasicInformationId: 3757\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12129\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 19,165.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	BasicInformationId: 3757\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12129\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 29,165.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
769518	2025-03-13	15:43:56.0003170	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3758\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CARLITO\r\nFullName: CARLITO MACARAIG BARTE\r\nGender: Male\r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
769519	2025-03-13	15:43:56.0053194	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3758\r\nBirthDate: July 24, 1991\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: BILLY\r\nFullName: BILLY DELIZO BARTE\r\nGender: Male\r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: DELIZO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769637	2025-03-13	16:21:10.5408075	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3760\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
769515	2025-03-13	15:41:21.6593520	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3756\r\nCharacterReferenceId: 0\r\nCompanyAddress: BUCAL, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09605313104\r\nExtensionName: \r\nFirstName: ROWENA\r\nLastName: MACATANGAY\r\nMiddleName: P.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769516	2025-03-13	15:41:21.6673516	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3756\r\nCharacterReferenceId: 0\r\nCompanyAddress: BUCAL, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09913533013\r\nExtensionName: \r\nFirstName: AQUILINO\r\nLastName: MAGNAYE\r\nMiddleName: D.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769517	2025-03-13	15:42:56.6373678	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 322 PUROK 2\r\nAddress2: \r\nBarangay: AGUILA\r\nBasicInformationId: 3756\r\nBirthDate: December 04, 1981\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: SAN JOSE\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: athena.cometa@deped.gov.ph\r\nExtensionName: \r\nFirstName: ATHENA\r\nFullName: ATHENA M. COMETA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437022671\r\nLastName: COMETA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09988639304\r\nNationality: Filipino\r\nPermanentAddress1: 322 PUROK 2\r\nPermanentAddress2: \r\nPermanentBarangay: AGUILA\r\nPermanentCity: SAN JOSE\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4227\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 43\r\nZipCode: 4227\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 322 PUROK 2\r\nAddress2: \r\nBarangay: AGUILA\r\nBasicInformationId: 3756\r\nBirthDate: December 04, 1981\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: SAN JOSE\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: athena.cometa@deped.gov.ph\r\nExtensionName: \r\nFirstName: ATHENA\r\nFullName: ATHENA M. COMETA\r\nGender: Female\r\nGovernmentIdIssuedDate: November 24, 2003\r\nGovernmentIdNumber: 0820478\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: 02002895240\r\nHDMF: 1490-0096-3003\r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437022671\r\nLastName: COMETA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09988639304\r\nNationality: Filipino\r\nPermanentAddress1: 322 PUROK 2\r\nPermanentAddress2: \r\nPermanentBarangay: AGUILA\r\nPermanentCity: SAN JOSE\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4227\r\nPhilhealth: 09-000064755-0\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 940-464-389-0000\r\nWeight: 43\r\nZipCode: 4227\r\n	admin	BasicInformation	1
769532	2025-03-13	15:49:28.2859789	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 291\r\nAddress2: \r\nBarangay: BUCAL\r\nBasicInformationId: 0\r\nBirthDate: September 03, 1989\r\nBirthPlace: ROSARIO, PASIG, METRO MANILA\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: reniel.dumapit@deped.gov.ph\r\nExtensionName: \r\nFirstName: RENIEL\r\nFullName: RENIEL P. DUMAPIT\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.69\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DUMAPIT\r\nMaidenName: \r\nMiddleName: PLATA\r\nMobileNumber: 09771657934\r\nNationality: Filipino\r\nPermanentAddress1: 291\r\nPermanentAddress2: \r\nPermanentBarangay: BUCAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 92.8\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769533	2025-03-13	15:49:28.3408084	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3760\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RENATO\r\nFullName: RENATO BRAVO DUMAPIT\r\nGender: Male\r\nLastName: DUMAPIT\r\nMaidenName: \r\nMiddleName: BRAVO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
769534	2025-03-13	15:49:28.3408084	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3760\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: AMOR\r\nFullName: AMOR AGUIELERA PLATA\r\nGender: Female\r\nLastName: PLATA\r\nMaidenName: \r\nMiddleName: AGUIELERA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
769535	2025-03-13	15:49:28.3408084	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3760\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
769550	2025-03-13	15:53:20.8271628	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3760\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 2002\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BUCAL ELEMENTARY SCHOOL\r\nYearGraduated: 2002\r\n	admin	EducationalBackgrounds	1
769551	2025-03-13	15:53:20.8311625	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3760\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2002\r\nDateTo: 2006\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2006\r\n	admin	EducationalBackgrounds	1
769638	2025-03-13	16:21:10.5508064	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3760\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
769520	2025-03-13	15:43:56.0093188	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3758\r\nBirthDate: January 17, 1995\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CHARLENE MAE\r\nFullName: CHARLENE MAE DELIZO BARTE\r\nGender: Male\r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: DELIZO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769521	2025-03-13	15:43:56.0193190	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3758\r\nBirthDate: November 29, 1965\r\nBirthPlace: CALAPAN, ORIENTAL MINDORO\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: EVANGELINE.BARTE001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: EVANGELINE\r\nFullName: EVANGELINE D. BARTE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.67\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: DELIZO\r\nMobileNumber: 09090803746\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LOOBAN 2\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: LOOBAN 2\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3758\r\nBirthDate: November 29, 1965\r\nBirthPlace: CALAPAN, ORIENTAL MINDORO\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: EVANGELINE.BARTE001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: EVANGELINE\r\nFullName: EVANGELINE D. BARTE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.67\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: DELIZO\r\nMobileNumber: 09090803746\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LOOBAN 2\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LOOBAN 2\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769522	2025-03-13	15:43:56.0243192	<Undetected>	Update	BasicInformationId: 3758\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3555\r\n	BasicInformationId: 3758\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3555\r\n	admin	Questionnaires	1
769523	2025-03-13	15:43:56.0323187	<Undetected>	Delete	BasicInformationId: 3758\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3851\r\nExtensionName: \r\nFirstName: NUMERIANO\r\nFullName: NUMERIANO ALCANTARA\r\nGender: Male\r\nLastName: ALCANTARA\r\nMaidenName: \r\nMiddleName: VILLENZA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	admin	EmployeeRelatives	1
769524	2025-03-13	15:43:56.0373193	<Undetected>	Delete	BasicInformationId: 3758\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3852\r\nExtensionName: \r\nFirstName: LORENA\r\nFullName: LORENA MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: ABAG\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	admin	EmployeeRelatives	1
769525	2025-03-13	15:43:56.0423192	<Undetected>	Delete	BasicInformationId: 3758\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3853\r\nExtensionName: \r\nFirstName: CARLITO\r\nFullName: CARLITO MACARAIG BARTE\r\nGender: Male\r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nOccupation: \r\nRelationship: Wife\r\n	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	admin	EmployeeRelatives	1
769540	2025-03-13	15:51:52.4100772	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: CERTIFICATE\r\nBasicInformationId: 3758\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1972\r\nDateTo: 1978\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BUCAYAO ELEMENTARY SCHOOL\r\nYearGraduated: 1978\r\n	admin	EducationalBackgrounds	1
769541	2025-03-13	15:51:52.4240757	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: DIPLOMA\r\nBasicInformationId: 3758\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1981\r\nDateTo: 1984\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BANABA WEST NATIONAL HIGH SCHOOL\r\nYearGraduated: 1984\r\n	admin	EducationalBackgrounds	1
769542	2025-03-13	15:51:52.4350763	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: DIPLOMA\r\nBasicInformationId: 3758\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1981\r\nDateTo: 1984\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: DIVINE WORD COLLEGE OF CALAPAN\r\nYearGraduated: 1984\r\n	admin	EducationalBackgrounds	1
769543	2025-03-13	15:51:52.4581269	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: CERTIFICATE\r\nBasicInformationId: 3758\r\nCourse: \r\nCourseId: 1348\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 1998\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN EDUCATIONAL SUPERVISION AND ADMINISTRATION\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 1998\r\n	admin	EducationalBackgrounds	1
769544	2025-03-13	15:51:52.4676455	<Undetected>	Update	BasicInformationId: 3758\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3854\r\nExtensionName: \r\nFirstName: CARLITO\r\nFullName: CARLITO MACARAIG BARTE\r\nGender: Male\r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3758\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3854\r\nExtensionName: \r\nFirstName: CARLITO\r\nFullName: CARLITO BARTE\r\nGender: Male\r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
769526	2025-03-13	15:46:53.2455192	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SOROSORO KARSADA\r\nBasicInformationId: 0\r\nBirthDate: December 25, 1983\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marissa.macatangay@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARISSA\r\nFullName: MARISSA A. MACATANGAY\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: ANTE\r\nMobileNumber: 0919597938\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SOROSORO KARSADA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769527	2025-03-13	15:46:53.2565042	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3759\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
769528	2025-03-13	15:48:46.6149563	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3759\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROMER\r\nFullName: ROMER BAUSON MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: BAUSON\r\nOccupation: DRIVER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
769529	2025-03-13	15:48:46.6189430	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3759\r\nBirthDate: August 03, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: HANZ RAMYR\r\nFullName: HANZ RAMYR ANTE MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: ANTE\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769530	2025-03-13	15:48:46.6299072	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3759\r\nBirthDate: October 09, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: HAZEL VIEN\r\nFullName: HAZEL VIEN ANTE MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: ANTE\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769531	2025-03-13	15:48:46.6338939	<Undetected>	Update	BasicInformationId: 3759\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3556\r\n	BasicInformationId: 3759\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3556\r\n	admin	Questionnaires	1
769536	2025-03-13	15:50:19.0844911	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SOROSORO KARSADA\r\nBasicInformationId: 3759\r\nBirthDate: December 25, 1983\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marissa.macatangay@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARISSA\r\nFullName: MARISSA A. MACATANGAY\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: ANTE\r\nMobileNumber: 0919597938\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SOROSORO KARSADA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SOROSORO KARSADA\r\nBasicInformationId: 3759\r\nBirthDate: December 25, 1983\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marissa.macatangay@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARISSA\r\nFullName: MARISSA A. MACATANGAY\r\nGender: Female\r\nGovernmentIdIssuedDate: December 06, 2004\r\nGovernmentIdNumber: 08666381\r\nGovernmentIdPlaceIssued: PRC LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02003001151\r\nHDMF: 1490-0097-9034\r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: ANTE\r\nMobileNumber: 0919597938\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SOROSORO KARSADA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-200628134-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 304-790-783-0000\r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769537	2025-03-13	15:50:19.0884778	<Undetected>	Update	BasicInformationId: 3759\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3857\r\nExtensionName: \r\nFirstName: ROMER\r\nFullName: ROMER BAUSON MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: BAUSON\r\nOccupation: DRIVER\r\nRelationship: Husband\r\n	BasicInformationId: 3759\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3857\r\nExtensionName: \r\nFirstName: ROMER\r\nFullName: ROMER MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: BAUSON\r\nOccupation: DRIVER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
769538	2025-03-13	15:50:19.0934613	<Undetected>	Update	BasicInformationId: 3759\r\nBirthDate: August 03, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3858\r\nExtensionName: \r\nFirstName: HANZ RAMYR\r\nFullName: HANZ RAMYR ANTE MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: ANTE\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3759\r\nBirthDate: August 03, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3858\r\nExtensionName: \r\nFirstName: HANZ RAMYR\r\nFullName: HANZ RAMYR MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: ANTE\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769539	2025-03-13	15:50:19.1034282	<Undetected>	Update	BasicInformationId: 3759\r\nBirthDate: October 09, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3859\r\nExtensionName: \r\nFirstName: HAZEL VIEN\r\nFullName: HAZEL VIEN ANTE MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: ANTE\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3759\r\nBirthDate: October 09, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3859\r\nExtensionName: \r\nFirstName: HAZEL VIEN\r\nFullName: HAZEL VIEN MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: ANTE\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769547	2025-03-13	15:52:01.8739947	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3759\r\nCharacterReferenceId: 0\r\nCompanyAddress: KUMINTANG IBABA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09177297709\r\nExtensionName: \r\nFirstName: CAROLINA\r\nLastName: PANALIGAN\r\nMiddleName: E\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769548	2025-03-13	15:52:01.8849588	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3759\r\nCharacterReferenceId: 0\r\nCompanyAddress: KUMINTANG ILAYA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09202847720\r\nExtensionName: \r\nFirstName: AIDA\r\nLastName: GUTIERREZ\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769549	2025-03-13	15:52:01.9019015	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3759\r\nCharacterReferenceId: 0\r\nCompanyAddress: TULO I, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09109686929\r\nExtensionName: \r\nFirstName: MARIFE\r\nLastName: FRANE\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769558	2025-03-13	15:54:37.5662313	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3759\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1991\r\nDateTo: 1996\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: CONCEPCION ELEMENTARY SCHOOL\r\nYearGraduated: 1996\r\n	admin	EducationalBackgrounds	1
769559	2025-03-13	15:54:37.5702172	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3759\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1997\r\nDateTo: 2000\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2000\r\n	admin	EducationalBackgrounds	1
769560	2025-03-13	15:54:37.5841698	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3759\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2004\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 2004\r\n	admin	EducationalBackgrounds	1
769561	2025-03-13	15:54:37.6021102	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3759\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2007\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
769563	2025-03-13	15:55:51.3031755	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3759\r\nDateOfExamination: August 29, 2024\r\nDateOfRelease: December 25, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 29, 2024\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0866381\r\nPlaceOfExamination: LUCENA CITY, QUEZON PROVINCE\r\nRating: 82.20\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
769564	2025-03-13	15:56:41.2262470	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3759\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE (MICROSOFT, EXCEL, POWEPOINT)\r\n	admin	Skills	1
769565	2025-03-13	15:56:41.2312302	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3759\r\nOrganizationId: 0\r\nOrganizationName: GIRLSCOUTS OF THE PHILIPPINES - BATANGAS CITY\r\n	admin	Organizations	1
769567	2025-03-13	15:59:33.1682256	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3759\r\nRecognitionId: 0\r\nRecognitionName: THIRD PLACE - DIVISION SCIENCE FAIR (COACH-SCIENCE INVESTIGATORY PROJECT-SIP) 2019\r\n	admin	Recognitions	1
769568	2025-03-13	15:59:33.1791890	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3759\r\nRecognitionId: 0\r\nRecognitionName: FIRST PLACE - DIVISION SCIENCE FAIR (COACH-SCIENCE INVESTIGATORY PROJECT-SIP) 2018\r\n	admin	Recognitions	1
769569	2025-03-13	16:00:17.4198981	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3759\r\nRecognitionId: 0\r\nRecognitionName: OUTSTANDING TEACHER - SCHOOL LEVEL 2016\r\n	admin	Recognitions	1
769570	2025-03-13	16:00:17.4308615	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3759\r\nRecognitionId: 0\r\nRecognitionName: FIRST PLACE - DIVISION SCIENCE QUEST (INFOGRAPHICS) 2016\r\n	admin	Recognitions	1
769578	2025-03-13	16:00:56.1259885	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3759\r\nRecognitionId: 0\r\nRecognitionName: SPEAKER - DISTRICT TRAINING - ROBOTICS SEMINAR\r\n	admin	Recognitions	1
769579	2025-03-13	16:01:44.8268340	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3759\r\nRecognitionId: 0\r\nRecognitionName: SPEAKER - DIVISION TRAINING - WORKSHOP ON PROPER USE AND CARE FOR BIOLOGICAL MICROSCOPE\r\n	admin	Recognitions	1
769639	2025-03-13	16:21:10.5558050	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3760\r\nOrganizationId: 0\r\nOrganizationName: SINGLES FOR CHRIST\r\n	admin	Organizations	1
769545	2025-03-13	15:51:52.4726498	<Undetected>	Update	BasicInformationId: 3758\r\nBirthDate: July 24, 1991\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3855\r\nExtensionName: \r\nFirstName: BILLY\r\nFullName: BILLY DELIZO BARTE\r\nGender: Male\r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: DELIZO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3758\r\nBirthDate: July 24, 1991\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3855\r\nExtensionName: \r\nFirstName: BILLY\r\nFullName: BILLY BARTE\r\nGender: Male\r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: DELIZO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769546	2025-03-13	15:51:52.4776438	<Undetected>	Update	BasicInformationId: 3758\r\nBirthDate: January 17, 1995\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3856\r\nExtensionName: \r\nFirstName: CHARLENE MAE\r\nFullName: CHARLENE MAE DELIZO BARTE\r\nGender: Male\r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: DELIZO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3758\r\nBirthDate: January 17, 1995\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3856\r\nExtensionName: \r\nFirstName: CHARLENE MAE\r\nFullName: CHARLENE MAE BARTE\r\nGender: Male\r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: DELIZO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769566	2025-03-13	15:57:03.5084785	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3758\r\nDateOfExamination: May 30, 1993\r\nDateOfRelease: November 29, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: May 30, 1993\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0071575\r\nPlaceOfExamination: PABLO BORBON INSTITUTE OF TECHNOLOGY\r\nRating: 70.8\r\nTitle: PROFESSIONAL BOARD EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
769588	2025-03-13	16:06:53.2997373	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3758\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 02, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 53,456.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-5\r\nStatus: Permanent\r\nToDate: January 01, 2025\r\n	admin	Experiences	1
769589	2025-03-13	16:06:53.3127385	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3758\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: July 09, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 22,086.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 14-4\r\nStatus: Permanent\r\nToDate: July 01, 2012\r\n	admin	Experiences	1
769590	2025-03-13	16:06:53.3327380	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3758\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 10,535.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-\r\nStatus: Permanent\r\nToDate: July 08, 2001\r\n	admin	Experiences	1
769591	2025-03-13	16:06:53.3417379	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3758\r\nCompanyInstitution: DEPARTMENT OF EDUCATION - BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: August 20, 1990\r\nIsGovernmentService: True\r\nMonthlySalary: 7,309.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-\r\nStatus: Substitute\r\nToDate: December 31, 1998\r\n	admin	Experiences	1
769597	2025-03-13	16:08:48.4166797	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL BASED TRAINING OF TEACHERS ON MATATAG CURRICULUM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769602	2025-03-13	16:11:48.1042632	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL IN-SERVICE TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769619	2025-03-13	16:12:56.0953616	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT IN SERVICE TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769626	2025-03-13	16:17:09.6643717	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3758\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - NATIONAL\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16470\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769627	2025-03-13	16:17:09.6704146	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3758\r\nEmployeeTrainingId: 0\r\nFromDate: January 30, 2024\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16465\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769628	2025-03-13	16:17:09.6813718	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3758\r\nEmployeeTrainingId: 0\r\nFromDate: January 29, 2024\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: January 29, 2024\r\nTrainingId: 16472\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769640	2025-03-13	16:21:10.5638051	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3760\r\nOrganizationId: 0\r\nOrganizationName: BUCAL MULTIPURPOSE COOPERATIVE\r\n	admin	Organizations	1
769552	2025-03-13	15:53:20.8451647	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3760\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2006\r\nDateTo: 2010\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: ST. BRIDGET COLLEGE \r\nYearGraduated: 2010\r\n	admin	EducationalBackgrounds	1
769553	2025-03-13	15:53:20.8642276	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3760\r\nCourse: \r\nCourseId: 1365\r\nCourseOrMajor: \r\nDateFrom: 2019\r\nDateTo: 2024\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: MAJOR IN EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: UNIVERSITY OF PERPETUAL HELP SYSTEM DALTA\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
769554	2025-03-13	15:53:20.8802268	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 291\r\nAddress2: \r\nBarangay: BUCAL\r\nBasicInformationId: 3760\r\nBirthDate: September 03, 1989\r\nBirthPlace: ROSARIO, PASIG, METRO MANILA\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: reniel.dumapit@deped.gov.ph\r\nExtensionName: \r\nFirstName: RENIEL\r\nFullName: RENIEL P. DUMAPIT\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.69\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DUMAPIT\r\nMaidenName: \r\nMiddleName: PLATA\r\nMobileNumber: 09771657934\r\nNationality: Filipino\r\nPermanentAddress1: 291\r\nPermanentAddress2: \r\nPermanentBarangay: BUCAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 92.8\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 291\r\nAddress2: \r\nBarangay: BUCAL\r\nBasicInformationId: 3760\r\nBirthDate: September 03, 1989\r\nBirthPlace: ROSARIO, PASIG, METRO MANILA\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: reniel.dumapit@deped.gov.ph\r\nExtensionName: \r\nFirstName: RENIEL\r\nFullName: RENIEL P. DUMAPIT\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.69\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DUMAPIT\r\nMaidenName: \r\nMiddleName: PLATA\r\nMobileNumber: 09771657934\r\nNationality: Filipino\r\nPermanentAddress1: 291\r\nPermanentAddress2: \r\nPermanentBarangay: BUCAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 92.8\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769555	2025-03-13	15:53:20.8842270	<Undetected>	Update	BasicInformationId: 3760\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3860\r\nExtensionName: \r\nFirstName: RENATO\r\nFullName: RENATO BRAVO DUMAPIT\r\nGender: Male\r\nLastName: DUMAPIT\r\nMaidenName: \r\nMiddleName: BRAVO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3760\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3860\r\nExtensionName: \r\nFirstName: RENATO\r\nFullName: RENATO DUMAPIT\r\nGender: Male\r\nLastName: DUMAPIT\r\nMaidenName: \r\nMiddleName: BRAVO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
769556	2025-03-13	15:53:20.8892266	<Undetected>	Update	BasicInformationId: 3760\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3861\r\nExtensionName: \r\nFirstName: AMOR\r\nFullName: AMOR AGUIELERA PLATA\r\nGender: Female\r\nLastName: PLATA\r\nMaidenName: \r\nMiddleName: AGUIELERA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3760\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3861\r\nExtensionName: \r\nFirstName: AMOR\r\nFullName: AMOR PLATA\r\nGender: Female\r\nLastName: PLATA\r\nMaidenName: \r\nMiddleName: AGUIELERA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
769557	2025-03-13	15:53:20.8942283	<Undetected>	Update	BasicInformationId: 3760\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3557\r\n	BasicInformationId: 3760\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3557\r\n	admin	Questionnaires	1
769562	2025-03-13	15:54:56.4617212	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3760\r\nDateOfExamination: September 26, 2010\r\nDateOfRelease: March 09, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 26, 2010\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1085027\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 75.00\r\nTitle: LIVENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
769571	2025-03-13	16:00:25.4703053	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3760\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,796.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: March 13, 2025\r\n	admin	Experiences	1
769572	2025-03-13	16:00:25.4753051	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3760\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 33,183.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
769573	2025-03-13	16:00:25.4833451	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3760\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: November 03, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,633.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
769574	2025-03-13	16:00:25.4883467	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3760\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: November 02, 2023\r\n	admin	Experiences	1
769575	2025-03-13	16:00:25.4933066	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3760\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,798.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
769576	2025-03-13	16:00:25.4983053	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3760\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 28,276.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
769577	2025-03-13	16:00:25.5023052	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3760\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: November 03, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 26,754.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
769603	2025-03-13	16:12:13.5025322	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3760\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 24,495.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: November 02, 2020\r\n	admin	Experiences	1
769604	2025-03-13	16:12:13.5065319	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3760\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 22,938.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
769605	2025-03-13	16:12:13.5125322	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3760\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: September 03, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 22,149.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
769606	2025-03-13	16:12:13.5165318	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3760\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 21, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,437.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: September 02, 2018\r\n	admin	Experiences	1
769607	2025-03-13	16:12:13.5215318	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3760\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 20, 2018\r\n	admin	Experiences	1
769608	2025-03-13	16:12:13.5265321	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3760\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,620.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
769609	2025-03-13	16:12:13.5315336	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3760\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,007.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
769580	2025-03-13	16:02:58.8145831	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3759\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: March 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 43,560.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
769581	2025-03-13	16:02:58.8255464	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3759\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 35,694.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: February 01, 2025\r\n	admin	Experiences	1
769582	2025-03-13	16:04:33.6631394	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3759\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 04, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 34,144.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
769583	2025-03-13	16:04:33.6701160	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3759\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 33,819.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: June 03, 2024\r\n	admin	Experiences	1
769584	2025-03-13	16:04:33.6750992	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3759\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 32,269.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
769585	2025-03-13	16:06:07.9177151	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3759\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 30,747.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
769586	2025-03-13	16:06:07.9226985	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3759\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 04, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 29,225.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
769587	2025-03-13	16:06:07.9276824	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3759\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 28,905.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: June 03, 2021\r\n	admin	Experiences	1
769592	2025-03-13	16:07:51.6113145	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3759\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 27,383.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
769593	2025-03-13	16:07:51.6153014	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3759\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 25,861.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
769594	2025-03-13	16:07:51.6222776	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3759\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 04, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 24,799.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
769595	2025-03-13	16:08:44.8227285	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3759\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 24,510.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: June 03, 2018\r\n	admin	Experiences	1
769596	2025-03-13	16:08:44.8307021	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3759\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 23,517.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
769598	2025-03-13	16:11:15.0627333	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3759\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 22,564.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
769599	2025-03-13	16:11:15.0667199	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3759\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 04, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 21,650.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
769600	2025-03-13	16:11:15.0806733	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3759\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 04, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 21,436.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: June 03, 2015\r\n	admin	Experiences	1
769601	2025-03-13	16:11:15.1035966	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3759\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 20,140.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: June 03, 2012\r\n	admin	Experiences	1
769616	2025-03-13	16:12:46.4642999	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3759\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 04, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,568.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
769617	2025-03-13	16:12:46.4732700	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3759\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,333.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: November 03, 2011\r\n	admin	Experiences	1
769618	2025-03-13	16:12:46.4772567	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3759\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 16,726.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
769620	2025-03-13	16:14:32.5913673	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3759\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 15,119.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
769621	2025-03-13	16:14:32.5993408	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3759\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 03, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,748.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
769622	2025-03-13	16:14:32.6043240	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3759\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,026.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: November 02, 2008\r\n	admin	Experiences	1
769623	2025-03-13	16:15:39.0053989	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3759\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,983.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
769610	2025-03-13	16:12:13.5355334	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3760\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 21, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
769611	2025-03-13	16:12:13.5405334	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3760\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 15, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: October 13, 2014\r\n	admin	Experiences	1
769612	2025-03-13	16:12:13.5455333	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3760\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 17, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: August 14, 2014\r\n	admin	Experiences	1
769613	2025-03-13	16:12:13.5505334	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3760\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 07, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: March 07, 2014\r\n	admin	Experiences	1
769614	2025-03-13	16:12:13.5545337	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3760\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: November 13, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: December 11, 2013\r\n	admin	Experiences	1
769615	2025-03-13	16:12:13.5595335	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3760\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 25, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: September 17, 2013\r\n	admin	Experiences	1
769625	2025-03-13	16:16:15.8598793	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MASTER CLASSES FOR GRADE 6 TEACHERS ACROSS ALL LEARNING AREAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769631	2025-03-13	16:17:30.0161145	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3760\r\nEmployeeTrainingId: 0\r\nFromDate: July 11, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 13, 2024\r\nTrainingId: 16426\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769632	2025-03-13	16:17:30.0201145	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3760\r\nEmployeeTrainingId: 0\r\nFromDate: November 26, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 28, 2024\r\nTrainingId: 16456\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769633	2025-03-13	16:17:30.0291578	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3760\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16473\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769634	2025-03-13	16:19:18.6044328	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MASSIVE OPEN ONLINE COURSE (MOOC) BECOMING A BETTER TEACHER EVERYDAY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769635	2025-03-13	16:20:21.2459187	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3760\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: January 26, 2024\r\nTrainingId: 16459\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769636	2025-03-13	16:20:21.2570095	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3760\r\nEmployeeTrainingId: 0\r\nFromDate: June 20, 2022\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: SOUTHEAST ASIAN MINISTERS OF EDUCATION ORGANIZATION\r\nStatus: \r\nToDate: August 20, 2022\r\nTrainingId: 16474\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769624	2025-03-13	16:15:39.0093855	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3759\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 19, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
769641	2025-03-13	16:22:08.7430035	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ENHANCING THE CULTURE OF RESEARCH: A DISTRICT VI IN-SERVICE TRAINING ENHANCING TEACHERS' SKILLS ON WRITING ACTION RESEARCH THROUGH MICROSOFT 365\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769642	2025-03-13	16:23:20.8316151	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ENHANCING THE CAPABILITY OF SCHOOL HEADS AND TEACHERS IN THE IMPLEMENTATION OF PROFESSIONAL PROGRAM VIA SCHOOL LEARNING ACTION CELL BATCH 2- CLUSTER 3 (DISTRICT 6)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769655	2025-03-13	16:24:43.0955754	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING WORKSHOP IN INCLUSIVE SCIENCE EDUCATION FOR LINGUISTIC AND CULTURAL DIVERSITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769657	2025-03-13	16:25:29.0829529	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3759\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16361\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769658	2025-03-13	16:25:29.0899294	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3759\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: January 24, 2024\r\nTrainingId: 16475\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769659	2025-03-13	16:25:29.0949129	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3759\r\nEmployeeTrainingId: 0\r\nFromDate: August 12, 2022\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 22, 2022\r\nTrainingId: 16476\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769660	2025-03-13	16:25:29.0998961	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3759\r\nEmployeeTrainingId: 0\r\nFromDate: July 22, 2022\r\nHours: 48\r\nNatureOfParticipation: \r\nSponsoringAgency: PHILIPPINE NORMAL UNIVERSITY\r\nStatus: \r\nToDate: July 27, 2022\r\nTrainingId: 16477\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769661	2025-03-13	16:26:08.7126586	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: HIGH IMPACT IN TEACHING DIGITAL ERA: AN INTERNATIONAL ONLINE TRAINING PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769663	2025-03-13	16:27:13.9181325	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3759\r\nEmployeeTrainingId: 0\r\nFromDate: April 30, 2022\r\nHours: 160\r\nNatureOfParticipation: \r\nSponsoringAgency: SOUTHEAST ASIAN INSTITUTE OF EDUCATIONAL TRAINING INC\r\nStatus: \r\nToDate: May 27, 2022\r\nTrainingId: 16478\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769629	2025-03-13	16:17:09.6863704	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3758\r\nEmployeeTrainingId: 0\r\nFromDate: January 26, 2024\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: January 26, 2024\r\nTrainingId: 16471\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769630	2025-03-13	16:17:09.6913702	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3758\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: January 25, 2024\r\nTrainingId: 16472\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769646	2025-03-13	16:24:14.6795647	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3758\r\nSkillId: 0\r\nSkillName: SEWING\r\n	admin	Skills	1
769647	2025-03-13	16:24:14.6845646	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3758\r\nSkillId: 0\r\nSkillName: INTERNET BROWSING\r\n	admin	Skills	1
769648	2025-03-13	16:24:14.6916495	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3758\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
769649	2025-03-13	16:24:14.7016101	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3758\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
769650	2025-03-13	16:24:14.7066101	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3758\r\nOrganizationId: 0\r\nOrganizationName: PAG-IBIG\r\n	admin	Organizations	1
769651	2025-03-13	16:24:14.7135639	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3758\r\nOrganizationId: 0\r\nOrganizationName: BOY SCOUT OF THE PHILIPPINES\r\n	admin	Organizations	1
769652	2025-03-13	16:24:14.7175640	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3758\r\nOrganizationId: 0\r\nOrganizationName: GOVERNMENT SERVICE INSURANCE SYSTEM\r\n	admin	Organizations	1
769653	2025-03-13	16:24:14.7255641	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3758\r\nOrganizationId: 0\r\nOrganizationName: PHIL-HEALTH\r\n	admin	Organizations	1
769654	2025-03-13	16:24:14.7295638	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3758\r\nOrganizationId: 0\r\nOrganizationName: MEDI-CARD\r\n	admin	Organizations	1
769669	2025-03-13	16:32:45.9339015	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3758\r\nCharacterReferenceId: 0\r\nCompanyAddress: BANABA WEST BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09995114678\r\nExtensionName: \r\nFirstName: ESPERANZA\r\nLastName: LUSANTA\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769670	2025-03-13	16:32:45.9509040	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3758\r\nCharacterReferenceId: 0\r\nCompanyAddress: BANABA WEST BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09563977545\r\nExtensionName: \r\nFirstName: RUEL\r\nLastName: DE CASTRO\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769671	2025-03-13	16:32:45.9599501	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3758\r\nCharacterReferenceId: 0\r\nCompanyAddress: BANABA WEST BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 4027239175\r\nExtensionName: \r\nFirstName: CHITO\r\nLastName: MACATANGAY\r\nMiddleName: H\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769679	2025-03-13	16:36:07.9850761	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3758\r\nBirthDate: November 29, 1965\r\nBirthPlace: CALAPAN, ORIENTAL MINDORO\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: EVANGELINE.BARTE001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: EVANGELINE\r\nFullName: EVANGELINE D. BARTE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.67\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: DELIZO\r\nMobileNumber: 09090803746\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LOOBAN 2\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LOOBAN 2\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3758\r\nBirthDate: November 29, 1965\r\nBirthPlace: CALAPAN, ORIENTAL MINDORO\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: EVANGELINE.BARTE001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: EVANGELINE\r\nFullName: EVANGELINE D. BARTE\r\nGender: Female\r\nGovernmentIdIssuedDate: June 11, 1997\r\nGovernmentIdNumber: 0071575\r\nGovernmentIdPlaceIssued: PRC MANILA\r\nGovernmentIssuedId: PRC LICENSE\r\nGSIS: \r\nHDMF: \r\nHeight: 1.67\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: DELIZO\r\nMobileNumber: 09090803746\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LOOBAN 2\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LOOBAN 2\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769693	2025-03-14	08:11:11.1331102	<Undetected>	Update	BasicInformationId: 3762\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3559\r\n	BasicInformationId: 3762\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3559\r\n	admin	Questionnaires	1
769694	2025-03-14	08:13:48.0890727	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: SECOND HONORS\r\nBasicInformationId: 3762\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1976\r\nDateTo: 1982\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BUCAL ELEMENTARY SCHOOL\r\nYearGraduated: 1982\r\n	admin	EducationalBackgrounds	1
770293	2025-03-14	16:30:08.2401367	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EMPOWERING EDUCATIONAL FOCUS THROUGH NURTURING MINDS: THE SLAC PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769643	2025-03-13	16:23:52.8061697	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3760\r\nCharacterReferenceId: 0\r\nCompanyAddress: TULO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09081891192\r\nExtensionName: \r\nFirstName: KRISTINA\r\nLastName: GUTIERREZ\r\nMiddleName: C.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769644	2025-03-13	16:23:52.8161703	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3760\r\nCharacterReferenceId: 0\r\nCompanyAddress: BALETE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09166813938\r\nExtensionName: \r\nFirstName: THELMA\r\nLastName: BLANCO\r\nMiddleName: D.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769645	2025-03-13	16:23:52.8201702	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3760\r\nCharacterReferenceId: 0\r\nCompanyAddress: SORO SORO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09939800939\r\nExtensionName: \r\nFirstName: MARISSA \r\nLastName: MACATANGAY\r\nMiddleName: A.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769656	2025-03-13	16:24:57.6888328	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 291\r\nAddress2: \r\nBarangay: BUCAL\r\nBasicInformationId: 3760\r\nBirthDate: September 03, 1989\r\nBirthPlace: ROSARIO, PASIG, METRO MANILA\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: reniel.dumapit@deped.gov.ph\r\nExtensionName: \r\nFirstName: RENIEL\r\nFullName: RENIEL P. DUMAPIT\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.69\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DUMAPIT\r\nMaidenName: \r\nMiddleName: PLATA\r\nMobileNumber: 09771657934\r\nNationality: Filipino\r\nPermanentAddress1: 291\r\nPermanentAddress2: \r\nPermanentBarangay: BUCAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 92.8\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 291\r\nAddress2: \r\nBarangay: BUCAL\r\nBasicInformationId: 3760\r\nBirthDate: September 03, 1989\r\nBirthPlace: ROSARIO, PASIG, METRO MANILA\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: reniel.dumapit@deped.gov.ph\r\nExtensionName: \r\nFirstName: RENIEL\r\nFullName: RENIEL P. DUMAPIT\r\nGender: Male\r\nGovernmentIdIssuedDate: September 19, 2023\r\nGovernmentIdNumber: 1085027\r\nGovernmentIdPlaceIssued: ROBINSONS PLACE, LAS PINAS\r\nGovernmentIssuedId: PROFESSIONAL IDENTIFICATION CARD\r\nGSIS: \r\nHDMF: \r\nHeight: 1.69\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DUMAPIT\r\nMaidenName: \r\nMiddleName: PLATA\r\nMobileNumber: 09771657934\r\nNationality: Filipino\r\nPermanentAddress1: 291\r\nPermanentAddress2: \r\nPermanentBarangay: BUCAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 92.8\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769662	2025-03-13	16:27:01.2245142	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 291\r\nAddress2: \r\nBarangay: BUCAL\r\nBasicInformationId: 3760\r\nBirthDate: September 03, 1989\r\nBirthPlace: ROSARIO, PASIG, METRO MANILA\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: reniel.dumapit@deped.gov.ph\r\nExtensionName: \r\nFirstName: RENIEL\r\nFullName: RENIEL P. DUMAPIT\r\nGender: Male\r\nGovernmentIdIssuedDate: September 19, 2023\r\nGovernmentIdNumber: 1085027\r\nGovernmentIdPlaceIssued: ROBINSONS PLACE, LAS PINAS\r\nGovernmentIssuedId: PROFESSIONAL IDENTIFICATION CARD\r\nGSIS: \r\nHDMF: \r\nHeight: 1.69\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DUMAPIT\r\nMaidenName: \r\nMiddleName: PLATA\r\nMobileNumber: 09771657934\r\nNationality: Filipino\r\nPermanentAddress1: 291\r\nPermanentAddress2: \r\nPermanentBarangay: BUCAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 92.8\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 291\r\nAddress2: \r\nBarangay: BUCAL\r\nBasicInformationId: 3760\r\nBirthDate: September 03, 1989\r\nBirthPlace: ROSARIO, PASIG, METRO MANILA\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: reniel.dumapit@deped.gov.ph\r\nExtensionName: \r\nFirstName: RENIEL\r\nFullName: RENIEL P. DUMAPIT\r\nGender: Male\r\nGovernmentIdIssuedDate: September 19, 2023\r\nGovernmentIdNumber: 1085027\r\nGovernmentIdPlaceIssued: ROBINSONS PLACE, LAS PINAS\r\nGovernmentIssuedId: PROFESSIONAL IDENTIFICATION CARD\r\nGSIS: 02004396596\r\nHDMF: 1210-9620-4650\r\nHeight: 1.69\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DUMAPIT\r\nMaidenName: \r\nMiddleName: PLATA\r\nMobileNumber: 09771657934\r\nNationality: Filipino\r\nPermanentAddress1: 291\r\nPermanentAddress2: \r\nPermanentBarangay: BUCAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050261217-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-2254606-1\r\nStreetName: \r\nTIN: 294-760-523-0000\r\nWeight: 92.8\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769664	2025-03-13	16:32:08.5292570	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 0183\r\nAddress2: \r\nBarangay: BUCAL\r\nBasicInformationId: 0\r\nBirthDate: May 04, 1989\r\nBirthPlace: SAN JOSE, BATANGAS\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: maylien.mendoza@deped.gov.ph\r\nExtensionName: \r\nFirstName: MAYLIEN\r\nFullName: MAYLIEN M. JAVIER\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: JAVIER\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09455645777\r\nNationality: Filipino\r\nPermanentAddress1: 0183\r\nPermanentAddress2: \r\nPermanentBarangay: BUCAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769665	2025-03-13	16:32:08.6549007	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3761\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: NEIL\r\nFullName: NEIL CONLU JAVIER\r\nGender: Male\r\nLastName: JAVIER\r\nMaidenName: \r\nMiddleName: CONLU\r\nOccupation: SEAMAN\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
769666	2025-03-13	16:32:08.6549007	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3761\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RICARDO\r\nFullName: RICARDO GONZALES MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: GONZALES\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
769667	2025-03-13	16:32:08.6549007	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3761\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: VIRGINIA\r\nFullName: VIRGINIA BAGSIT DE CASTRO\r\nGender: Female\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: BAGSIT\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
769668	2025-03-13	16:32:08.6558999	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3761\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
769672	2025-03-13	16:33:34.9748628	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3761\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 2000\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: PADRE IMO LUNA MEMORIAL ELEMENTARY\r\nYearGraduated: 2000\r\n	admin	EducationalBackgrounds	1
769673	2025-03-13	16:33:34.9798628	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3761\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2000\r\nDateTo: 2005\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAINT JOSEPH ACADEMY\r\nYearGraduated: 2005\r\n	admin	EducationalBackgrounds	1
769674	2025-03-13	16:33:34.9888628	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 0183\r\nAddress2: \r\nBarangay: BUCAL\r\nBasicInformationId: 3761\r\nBirthDate: May 04, 1989\r\nBirthPlace: SAN JOSE, BATANGAS\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: maylien.mendoza@deped.gov.ph\r\nExtensionName: \r\nFirstName: MAYLIEN\r\nFullName: MAYLIEN M. JAVIER\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: JAVIER\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09455645777\r\nNationality: Filipino\r\nPermanentAddress1: 0183\r\nPermanentAddress2: \r\nPermanentBarangay: BUCAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 0183\r\nAddress2: \r\nBarangay: BUCAL\r\nBasicInformationId: 3761\r\nBirthDate: May 04, 1989\r\nBirthPlace: SAN JOSE, BATANGAS\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: maylien.mendoza@deped.gov.ph\r\nExtensionName: \r\nFirstName: MAYLIEN\r\nFullName: MAYLIEN M. JAVIER\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: JAVIER\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09455645777\r\nNationality: Filipino\r\nPermanentAddress1: 0183\r\nPermanentAddress2: \r\nPermanentBarangay: BUCAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769675	2025-03-13	16:33:34.9938210	<Undetected>	Update	BasicInformationId: 3761\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3862\r\nExtensionName: \r\nFirstName: NEIL\r\nFullName: NEIL CONLU JAVIER\r\nGender: Male\r\nLastName: JAVIER\r\nMaidenName: \r\nMiddleName: CONLU\r\nOccupation: SEAMAN\r\nRelationship: Husband\r\n	BasicInformationId: 3761\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3862\r\nExtensionName: \r\nFirstName: NEIL\r\nFullName: NEIL JAVIER\r\nGender: Male\r\nLastName: JAVIER\r\nMaidenName: \r\nMiddleName: CONLU\r\nOccupation: SEAMAN\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
769676	2025-03-13	16:33:35.0018206	<Undetected>	Update	BasicInformationId: 3761\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3863\r\nExtensionName: \r\nFirstName: RICARDO\r\nFullName: RICARDO GONZALES MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: GONZALES\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3761\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3863\r\nExtensionName: \r\nFirstName: RICARDO\r\nFullName: RICARDO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: GONZALES\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
769677	2025-03-13	16:33:35.0058204	<Undetected>	Update	BasicInformationId: 3761\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3864\r\nExtensionName: \r\nFirstName: VIRGINIA\r\nFullName: VIRGINIA BAGSIT DE CASTRO\r\nGender: Female\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: BAGSIT\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3761\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3864\r\nExtensionName: \r\nFirstName: VIRGINIA\r\nFullName: VIRGINIA DE CASTRO\r\nGender: Female\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: BAGSIT\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
769678	2025-03-13	16:33:35.0108212	<Undetected>	Update	BasicInformationId: 3761\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3558\r\n	BasicInformationId: 3761\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3558\r\n	admin	Questionnaires	1
769680	2025-03-13	16:36:34.8721978	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3761\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS \r\nYearGraduated: 2009\r\n	admin	EducationalBackgrounds	1
769681	2025-03-13	16:36:34.8772409	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3761\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2016\r\nDateTo: 2017\r\nEducationalAttainment: 27 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: ST. JUDE COLLEGE\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
769682	2025-03-13	16:39:02.8348915	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3761\r\nDateOfExamination: November 15, 2009\r\nDateOfRelease: April 29, 2019\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: November 15, 2009\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 104565\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 76.40\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
769684	2025-03-13	16:44:01.7538754	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3761\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,421.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: March 13, 2025\r\n	admin	Experiences	1
769683	2025-03-13	16:42:56.9829890	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3758\r\nBirthDate: November 29, 1965\r\nBirthPlace: CALAPAN, ORIENTAL MINDORO\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: EVANGELINE.BARTE001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: EVANGELINE\r\nFullName: EVANGELINE D. BARTE\r\nGender: Female\r\nGovernmentIdIssuedDate: June 11, 1997\r\nGovernmentIdNumber: 0071575\r\nGovernmentIdPlaceIssued: PRC MANILA\r\nGovernmentIssuedId: PRC LICENSE\r\nGSIS: \r\nHDMF: \r\nHeight: 1.67\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: DELIZO\r\nMobileNumber: 09090803746\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LOOBAN 2\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LOOBAN 2\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3758\r\nBirthDate: November 29, 1965\r\nBirthPlace: CALAPAN, ORIENTAL MINDORO\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: EVANGELINE.BARTE001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: EVANGELINE\r\nFullName: EVANGELINE D. BARTE\r\nGender: Female\r\nGovernmentIdIssuedDate: June 11, 1997\r\nGovernmentIdNumber: 0071575\r\nGovernmentIdPlaceIssued: PRC MANILA\r\nGovernmentIssuedId: PRC LICENSE\r\nGSIS: 02003003240\r\nHDMF: 1490-0083-6415\r\nHeight: 1.67\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BARTE\r\nMaidenName: \r\nMiddleName: DELIZO\r\nMobileNumber: 09090803746\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LOOBAN 2\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000014032-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LOOBAN 2\r\nTIN: 174-050-874-0000\r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769685	2025-03-14	08:09:32.3304429	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BUKAL\r\nBasicInformationId: 0\r\nBirthDate: October 24, 1969\r\nBirthPlace: BUCAL, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rowena.macatangay@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROWENA\r\nFullName: ROWENA P. MACATANGAY\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.45\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nMobileNumber: 09605313104\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BUKAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 45\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769686	2025-03-14	08:09:32.4357462	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3762\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
769687	2025-03-14	08:11:01.9046650	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3761\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
769688	2025-03-14	08:11:01.9101493	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3761\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: November 03, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
769689	2025-03-14	08:11:01.9152849	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3761\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 21, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: November 02, 2023\r\n	admin	Experiences	1
769690	2025-03-14	08:11:01.9192914	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3761\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: July 20, 2023\r\n	admin	Experiences	1
769691	2025-03-14	08:11:11.1171635	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3762\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JUANITO\r\nFullName: JUANITO BARABAS MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: BARABAS\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
769692	2025-03-14	08:11:11.1281266	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3762\r\nBirthDate: May 03, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JEWELL MAE\r\nFullName: JEWELL MAE PAGCALIWAGAN MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769695	2025-03-14	08:13:48.1000360	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3762\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1982\r\nDateTo: 1986\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES\r\nYearGraduated: 1986\r\n	admin	EducationalBackgrounds	1
769696	2025-03-14	08:13:48.1040226	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3762\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1986\r\nDateTo: 1990\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES\r\nYearGraduated: 1990\r\n	admin	EducationalBackgrounds	1
769697	2025-03-14	08:13:48.1090059	<Undetected>	Update	BasicInformationId: 3762\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3865\r\nExtensionName: \r\nFirstName: JUANITO\r\nFullName: JUANITO BARABAS MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: BARABAS\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3762\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3865\r\nExtensionName: \r\nFirstName: JUANITO\r\nFullName: JUANITO MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: BARABAS\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
769698	2025-03-14	08:13:48.1179759	<Undetected>	Update	BasicInformationId: 3762\r\nBirthDate: May 03, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3866\r\nExtensionName: \r\nFirstName: JEWELL MAE\r\nFullName: JEWELL MAE PAGCALIWAGAN MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3762\r\nBirthDate: May 03, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3866\r\nExtensionName: \r\nFirstName: JEWELL MAE\r\nFullName: JEWELL MAE MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769699	2025-03-14	08:17:01.6931999	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3762\r\nCourse: \r\nCourseId: 1284\r\nCourseOrMajor: \r\nDateFrom: 1992\r\nDateTo: 1999\r\nEducationalAttainment: 45 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
769703	2025-03-14	08:20:08.5916334	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BUKAL\r\nBasicInformationId: 3762\r\nBirthDate: October 24, 1969\r\nBirthPlace: BUCAL, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rowena.macatangay@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROWENA\r\nFullName: ROWENA P. MACATANGAY\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.45\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nMobileNumber: 09605313104\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BUKAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 45\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BUKAL\r\nBasicInformationId: 3762\r\nBirthDate: October 24, 1969\r\nBirthPlace: BUCAL, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rowena.macatangay@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROWENA\r\nFullName: ROWENA P. MACATANGAY\r\nGender: Female\r\nGovernmentIdIssuedDate: August 11, 1997\r\nGovernmentIdNumber: 0095910\r\nGovernmentIdPlaceIssued: PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02002995564\r\nHDMF: 1490-0087-9334\r\nHeight: 1.45\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nMobileNumber: 09605313104\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BUKAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000014011-1\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1584423-3\r\nStreetName: \r\nTIN: 124-519-177-0000\r\nWeight: 45\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769704	2025-03-14	08:21:53.7667382	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3762\r\nCharacterReferenceId: 0\r\nCompanyAddress: SOROSORO KARSADA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09195979838\r\nExtensionName: \r\nFirstName: MARISSA\r\nLastName: MACATANGAY\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769705	2025-03-14	08:21:53.7707247	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3762\r\nCharacterReferenceId: 0\r\nCompanyAddress: BUKAL, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 099135333013\r\nExtensionName: \r\nFirstName: AQUILINO\r\nLastName: MAGNAYE\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769706	2025-03-14	08:21:53.7767049	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3762\r\nCharacterReferenceId: 0\r\nCompanyAddress: BUKAL, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09196426534\r\nExtensionName: \r\nFirstName: BABYLINDA\r\nLastName: TULIAO\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769707	2025-03-14	08:23:05.7842104	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3762\r\nDateOfExamination: November 25, 1990\r\nDateOfRelease: October 24, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: November 25, 1990\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0095910\r\nPlaceOfExamination: PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY\r\nRating: 73.06\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
769720	2025-03-14	08:26:46.8769708	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPACITY BUILDING FOR GRADE 4 TO 6 ENSCIMA TEACHERS ON THE IMPLEMENTATION OF END OF SCHOOL YEAR (EOSY) BREAK REMEDIATION ACTIVITIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769700	2025-03-14	08:17:01.5099574	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3761\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: March 07, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,798.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
769701	2025-03-14	08:17:01.5139707	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3761\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 13, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 27,892.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: March 06, 2022\r\n	admin	Experiences	1
769702	2025-03-14	08:17:01.5199921	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3761\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 27,608.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: February 28, 2022\r\n	admin	Experiences	1
769708	2025-03-14	08:26:20.0030983	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3761\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 26,052.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
769709	2025-03-14	08:26:20.0080981	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3761\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 24,495.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
769710	2025-03-14	08:26:20.0120979	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3761\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: March 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 22,938.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
769711	2025-03-14	08:26:20.0170978	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3761\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,038.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: February 28, 2019\r\n	admin	Experiences	1
769712	2025-03-14	08:26:20.0210978	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3761\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,437.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
769713	2025-03-14	08:26:20.0265150	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3761\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,853.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
769714	2025-03-14	08:26:20.0305482	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3761\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,286.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
769715	2025-03-14	08:26:20.0355679	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3761\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 15, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 18,735.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
769823	2025-03-14	09:14:47.7012242	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3765\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
769716	2025-03-14	08:26:20.0395810	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3761\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 12, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 18,735.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: August 14, 2014\r\n	admin	Experiences	1
769717	2025-03-14	08:26:20.0445866	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3761\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 16, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: July 11, 2014\r\n	admin	Experiences	1
769718	2025-03-14	08:26:20.0498062	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3761\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 15, 2012\r\n	admin	Experiences	1
769719	2025-03-14	08:26:20.0539828	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3761\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 11, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 17,099.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
769726	2025-03-14	08:29:35.2714581	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MASTER CLASS FOR GRADE 4 TEACHERS ACROSS ALL LEARNING AREAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769727	2025-03-14	08:32:46.0111524	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BASIC TRAINING ON GRAPHIC DESIGN\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769728	2025-03-14	08:33:22.4429332	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3761\r\nEmployeeTrainingId: 0\r\nFromDate: December 05, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: December 07, 2024\r\nTrainingId: 16331\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769729	2025-03-14	08:33:22.4489330	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3761\r\nEmployeeTrainingId: 0\r\nFromDate: November 26, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 28, 2024\r\nTrainingId: 16456\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769730	2025-03-14	08:33:22.4539330	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3761\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16480\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769731	2025-03-14	08:33:22.4580952	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3761\r\nEmployeeTrainingId: 0\r\nFromDate: September 19, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 19, 2024\r\nTrainingId: 16442\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769732	2025-03-14	08:33:22.4633471	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3761\r\nEmployeeTrainingId: 0\r\nFromDate: September 14, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 14, 2024\r\nTrainingId: 16481\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769738	2025-03-14	08:34:20.9968676	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3761\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
769739	2025-03-14	08:34:21.0088674	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3761\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
769740	2025-03-14	08:34:21.0138676	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3761\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY PUBLIC SCHOOL TEACHERS AND EMPLOYEES ASSOCIATION\r\n	admin	Organizations	1
769721	2025-03-14	08:28:05.7031096	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3762\r\nEmployeeTrainingId: 0\r\nFromDate: November 26, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - BATANGAS CITY\r\nStatus: \r\nToDate: November 28, 2024\r\nTrainingId: 16456\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769722	2025-03-14	08:28:05.7090893	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3762\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16457\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769723	2025-03-14	08:28:05.7130761	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3762\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2024\r\nTrainingId: 16441\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769724	2025-03-14	08:28:05.7180593	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3762\r\nEmployeeTrainingId: 0\r\nFromDate: November 18, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - BATANGAS CITY\r\nStatus: \r\nToDate: November 20, 2024\r\nTrainingId: 16479\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769725	2025-03-14	08:28:05.7230428	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3762\r\nEmployeeTrainingId: 0\r\nFromDate: October 10, 2024\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - BATANGAS CITY\r\nStatus: \r\nToDate: October 11, 2024\r\nTrainingId: 16321\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769733	2025-03-14	08:33:46.0509756	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 36,354.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-7\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
769734	2025-03-14	08:33:46.0559591	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 34,804.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-7\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
769735	2025-03-14	08:33:46.0609423	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 33,254.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-7\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
769736	2025-03-14	08:33:46.0659256	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 02, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 31,732.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-7\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
769737	2025-03-14	08:33:46.0699123	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 31,400.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-6\r\nStatus: Permanent\r\nToDate: July 01, 2022\r\n	admin	Experiences	1
769741	2025-03-14	08:38:39.6709254	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 0\r\nBirthDate: November 18, 1961\r\nBirthPlace: MAKATI METRO MANILA\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MARYGRACE.ADAO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RONILO\r\nFullName: RONILO DS. AGUSTIN\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: AGUSTIN\r\nMaidenName: \r\nMiddleName: DELOS SANTOS\r\nMobileNumber: 0946\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO GO WEST\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: SITIO GO WEST\r\nTIN: \r\nWeight: 75\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769742	2025-03-14	08:38:39.7707891	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3763\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MINA\r\nFullName: MINA MACARAIG AGUSTIN\r\nGender: Male\r\nLastName: AGUSTIN\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nOccupation: \r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
769743	2025-03-14	08:38:39.7707891	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3763\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PACIFICO\r\nFullName: PACIFICO ANDRES AGUSTIN\r\nGender: Male\r\nLastName: AGUSTIN\r\nMaidenName: \r\nMiddleName: ANDRES\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
769744	2025-03-14	08:38:39.7707891	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3763\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: OLYMPIA\r\nFullName: OLYMPIA AUBON DELOS SANTOS\r\nGender: Male\r\nLastName: DELOS SANTOS\r\nMaidenName: \r\nMiddleName: AUBON\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
769745	2025-03-14	08:38:39.7717891	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3763\r\nBirthDate: January 31, 1991\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LADY RONIKA\r\nFullName: LADY RONIKA M AGUSTIN\r\nGender: Male\r\nLastName: AGUSTIN\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769746	2025-03-14	08:38:39.7717891	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3763\r\nBirthDate: October 04, 1992\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RANDAL\r\nFullName: RANDAL M AGUSTIN\r\nGender: Male\r\nLastName: AGUSTIN\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769747	2025-03-14	08:38:39.7717891	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3763\r\nBirthDate: July 04, 1995\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RON RANEL\r\nFullName: RON RANEL M AGUSTIN\r\nGender: Male\r\nLastName: AGUSTIN\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769748	2025-03-14	08:38:39.7717891	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3763\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
769749	2025-03-14	08:38:49.6974236	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3761\r\nCharacterReferenceId: 0\r\nCompanyAddress: SORO SORO KARSADA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09195979838\r\nExtensionName: \r\nFirstName: MARISSA\r\nLastName: MACATANGAY\r\nMiddleName: A.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769750	2025-03-14	08:38:49.7044236	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3761\r\nCharacterReferenceId: 0\r\nCompanyAddress: BUKAL, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09913533013\r\nExtensionName: \r\nFirstName: AQUILINO\r\nLastName: MAGNAYE\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769751	2025-03-14	08:38:49.7084233	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3761\r\nCharacterReferenceId: 0\r\nCompanyAddress: BALETE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09777447371\r\nExtensionName: \r\nFirstName: JASMIN\r\nLastName: MACARAIG\r\nMiddleName: M.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769752	2025-03-14	08:40:54.7912710	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 0183\r\nAddress2: \r\nBarangay: BUCAL\r\nBasicInformationId: 3761\r\nBirthDate: May 04, 1989\r\nBirthPlace: SAN JOSE, BATANGAS\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: maylien.mendoza@deped.gov.ph\r\nExtensionName: \r\nFirstName: MAYLIEN\r\nFullName: MAYLIEN M. JAVIER\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: JAVIER\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09455645777\r\nNationality: Filipino\r\nPermanentAddress1: 0183\r\nPermanentAddress2: \r\nPermanentBarangay: BUCAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 0183\r\nAddress2: \r\nBarangay: BUCAL\r\nBasicInformationId: 3761\r\nBirthDate: May 04, 1989\r\nBirthPlace: SAN JOSE, BATANGAS\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: maylien.mendoza@deped.gov.ph\r\nExtensionName: \r\nFirstName: MAYLIEN\r\nFullName: MAYLIEN M. JAVIER\r\nGender: Female\r\nGovernmentIdIssuedDate: January 06, 2010\r\nGovernmentIdNumber: 1045765\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02004169617\r\nHDMF: 1211-4940-8011\r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: JAVIER\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09455645777\r\nNationality: Filipino\r\nPermanentAddress1: 0183\r\nPermanentAddress2: \r\nPermanentBarangay: BUCAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-059231795-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 279-166-649-0000\r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770299	2025-03-14	16:32:31.5577085	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT-SCHOOL IN SERVICE TRAINING FOR TEACHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769753	2025-03-14	08:41:05.4877851	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 29,878.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-6\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
769754	2025-03-14	08:41:05.4927683	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 28,356.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-6\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
769755	2025-03-14	08:41:05.4977516	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 02, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 26,834.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-6\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
769756	2025-03-14	08:41:05.5027349	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 26,506.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: July 01, 2019\r\n	admin	Experiences	1
769757	2025-03-14	08:41:05.5067216	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 25,387.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
769758	2025-03-14	08:41:05.5127015	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 24,315.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
769759	2025-03-14	08:41:05.5166882	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 23,045.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: July 01, 2016\r\n	admin	Experiences	1
769760	2025-03-14	08:41:05.5216715	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 03, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 22,086.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
769761	2025-03-14	08:41:05.5266549	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 21,867.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: July 02, 2013\r\n	admin	Experiences	1
769770	2025-03-14	08:46:28.9638075	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 20,162.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
769771	2025-03-14	08:46:28.9687908	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 18, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 18,457.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
769772	2025-03-14	08:46:28.9727776	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 18,166.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: July 17, 2010\r\n	admin	Experiences	1
769762	2025-03-14	08:41:27.0677406	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3763\r\nBirthDate: November 18, 1961\r\nBirthPlace: MAKATI METRO MANILA\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MARYGRACE.ADAO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RONILO\r\nFullName: RONILO DS. AGUSTIN\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: AGUSTIN\r\nMaidenName: \r\nMiddleName: DELOS SANTOS\r\nMobileNumber: 0946\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO GO WEST\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: SITIO GO WEST\r\nTIN: \r\nWeight: 75\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3763\r\nBirthDate: November 18, 1961\r\nBirthPlace: MAKATI METRO MANILA\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MARYGRACE.ADAO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RONILO\r\nFullName: RONILO DS. AGUSTIN\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: AGUSTIN\r\nMaidenName: \r\nMiddleName: DELOS SANTOS\r\nMobileNumber: 0\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO GO WEST\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO GO WEST\r\nTIN: \r\nWeight: 75\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769763	2025-03-14	08:41:27.0717392	<Undetected>	Update	BasicInformationId: 3763\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3867\r\nExtensionName: \r\nFirstName: MINA\r\nFullName: MINA MACARAIG AGUSTIN\r\nGender: Male\r\nLastName: AGUSTIN\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nOccupation: \r\nRelationship: Wife\r\n	BasicInformationId: 3763\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3867\r\nExtensionName: \r\nFirstName: MINA\r\nFullName: MINA AGUSTIN\r\nGender: Male\r\nLastName: AGUSTIN\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nOccupation: \r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
769764	2025-03-14	08:41:27.0817398	<Undetected>	Update	BasicInformationId: 3763\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3868\r\nExtensionName: \r\nFirstName: PACIFICO\r\nFullName: PACIFICO ANDRES AGUSTIN\r\nGender: Male\r\nLastName: AGUSTIN\r\nMaidenName: \r\nMiddleName: ANDRES\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3763\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3868\r\nExtensionName: \r\nFirstName: PACIFICO\r\nFullName: PACIFICO AGUSTIN\r\nGender: Male\r\nLastName: AGUSTIN\r\nMaidenName: \r\nMiddleName: ANDRES\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
769765	2025-03-14	08:41:27.0867401	<Undetected>	Update	BasicInformationId: 3763\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3869\r\nExtensionName: \r\nFirstName: OLYMPIA\r\nFullName: OLYMPIA AUBON DELOS SANTOS\r\nGender: Male\r\nLastName: DELOS SANTOS\r\nMaidenName: \r\nMiddleName: AUBON\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3763\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3869\r\nExtensionName: \r\nFirstName: OLYMPIA\r\nFullName: OLYMPIA DELOS SANTOS\r\nGender: Male\r\nLastName: DELOS SANTOS\r\nMaidenName: \r\nMiddleName: AUBON\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
769766	2025-03-14	08:41:27.0937399	<Undetected>	Update	BasicInformationId: 3763\r\nBirthDate: January 31, 1991\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3870\r\nExtensionName: \r\nFirstName: LADY RONIKA\r\nFullName: LADY RONIKA M AGUSTIN\r\nGender: Male\r\nLastName: AGUSTIN\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3763\r\nBirthDate: January 31, 1991\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3870\r\nExtensionName: \r\nFirstName: LADY RONIKA\r\nFullName: LADY RONIKA AGUSTIN\r\nGender: Male\r\nLastName: AGUSTIN\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769767	2025-03-14	08:41:27.0987445	<Undetected>	Update	BasicInformationId: 3763\r\nBirthDate: October 04, 1992\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3871\r\nExtensionName: \r\nFirstName: RANDAL\r\nFullName: RANDAL M AGUSTIN\r\nGender: Male\r\nLastName: AGUSTIN\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3763\r\nBirthDate: October 04, 1992\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3871\r\nExtensionName: \r\nFirstName: RANDAL\r\nFullName: RANDAL AGUSTIN\r\nGender: Male\r\nLastName: AGUSTIN\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769768	2025-03-14	08:41:27.1057446	<Undetected>	Update	BasicInformationId: 3763\r\nBirthDate: July 04, 1995\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3872\r\nExtensionName: \r\nFirstName: RON RANEL\r\nFullName: RON RANEL M AGUSTIN\r\nGender: Male\r\nLastName: AGUSTIN\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3763\r\nBirthDate: July 04, 1995\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3872\r\nExtensionName: \r\nFirstName: RON RANEL\r\nFullName: RON RANEL AGUSTIN\r\nGender: Male\r\nLastName: AGUSTIN\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769769	2025-03-14	08:41:27.1107439	<Undetected>	Update	BasicInformationId: 3763\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3560\r\n	BasicInformationId: 3763\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3560\r\n	admin	Questionnaires	1
769812	2025-03-14	08:58:34.4527037	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF SCIENCE IN MECHANICAL ENGINEERING \r\nLevel: College\r\n	admin	Courses	1
769817	2025-03-14	09:02:28.8487986	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3763\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1968\r\nDateTo: 1974\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: CEMBO ELEMENTARY SCHOOL\r\nYearGraduated: 1974\r\n	admin	EducationalBackgrounds	1
769818	2025-03-14	09:02:28.8527985	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3763\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1974\r\nDateTo: 1978\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: MAKATI HIGH SCHOOL\r\nYearGraduated: 1978\r\n	admin	EducationalBackgrounds	1
769773	2025-03-14	08:46:28.9777610	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 16,424.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
769774	2025-03-14	08:46:28.9827442	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 13,850.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
769775	2025-03-14	08:46:28.9877275	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,591.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
769776	2025-03-14	08:46:28.9917142	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 12,284.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2007\r\n	admin	Experiences	1
769777	2025-03-14	08:46:28.9966975	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 02, 2004\r\nIsGovernmentService: True\r\nMonthlySalary: 11,167.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
769778	2025-03-14	08:46:29.0016809	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 11,068.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: January 01, 2004\r\n	admin	Experiences	1
769779	2025-03-14	08:46:29.0066642	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 10,535.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2001\r\n	admin	Experiences	1
769780	2025-03-14	08:46:29.0116478	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 10,033.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
769781	2025-03-14	08:46:29.0166309	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 9,121.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
769789	2025-03-14	08:49:59.1079394	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 9,121.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1997\r\n	admin	Experiences	1
769790	2025-03-14	08:49:59.1129229	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 7,682.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: October 31, 1997\r\n	admin	Experiences	1
769791	2025-03-14	08:49:59.1169095	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 6,243.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1996\r\n	admin	Experiences	1
769782	2025-03-14	08:48:25.3887240	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK & LOT 13\r\nAddress2: BRIXTON HOMES SUBDIVISION\r\nBarangay: BALINTAWAK\r\nBasicInformationId: 0\r\nBirthDate: January 08, 1967\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: LIPA CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: enia.papasin2deped.gov.ph\r\nExtensionName: \r\nFirstName: ENIA\r\nFullName: ENIA DG. PAPASIN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.56\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PAPASIN\r\nMaidenName: \r\nMiddleName: DE GUZMAN\r\nMobileNumber: 09171543842\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK & LOT 13\r\nPermanentAddress2: BRIXTON HOMES SUBDIVISION\r\nPermanentBarangay: BALINTAWAK\r\nPermanentCity: LIPA CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4217\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 55\r\nZipCode: 4217\r\n	admin	BasicInformation	1
769783	2025-03-14	08:48:25.4339419	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3764\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EDDIE\r\nFullName: EDDIE GUTIERREZ PAPASIN\r\nGender: Male\r\nLastName: PAPASIN\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
769784	2025-03-14	08:48:25.4339419	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3764\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DOMINADOR\r\nFullName: DOMINADOR RAMOS DE GUZMAN\r\nGender: Male\r\nLastName: DE GUZMAN\r\nMaidenName: \r\nMiddleName: RAMOS\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
769785	2025-03-14	08:48:25.4339419	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3764\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JULITA\r\nFullName: JULITA CUETO CATAPANG\r\nGender: Female\r\nLastName: CATAPANG\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
769786	2025-03-14	08:48:25.4339419	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3764\r\nBirthDate: April 01, 1992\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EDEN\r\nFullName: EDEN DE GUZMAN PAPASIN\r\nGender: Female\r\nLastName: PAPASIN\r\nMaidenName: \r\nMiddleName: DE GUZMAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769787	2025-03-14	08:48:25.4339419	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3764\r\nBirthDate: April 28, 1998\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ERWIN\r\nFullName: ERWIN DE GUZMAN PAPASIN\r\nGender: Male\r\nLastName: PAPASIN\r\nMaidenName: \r\nMiddleName: DE GUZMAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769788	2025-03-14	08:48:25.4339419	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3764\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
769796	2025-03-14	08:51:11.1345017	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: INDUSTRIAL SEWING MACHINE OPERATION\r\nLevel: Vocational\r\n	admin	Courses	1
769798	2025-03-14	08:53:21.8927746	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: THIRD HONORABLE MENTION\r\nBasicInformationId: 3764\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1973\r\nDateTo: 1979\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: HALIGUE KANLURAN ELEMENTARY SCHOOL\r\nYearGraduated: 1979\r\n	admin	EducationalBackgrounds	1
769799	2025-03-14	08:53:21.9027741	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3764\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1979\r\nDateTo: 1983\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1983\r\n	admin	EducationalBackgrounds	1
769800	2025-03-14	08:53:21.9072917	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3764\r\nCourse: \r\nCourseId: 1381\r\nCourseOrMajor: \r\nDateFrom: 1988\r\nDateTo: 1988\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Vocational Graduate\r\nMajor: \r\nSchoolorUniversity: TECHNICAL EDUCATION AND SKILLS DEVELOPMENT AUTHORITY\r\nYearGraduated: 1988\r\n	admin	EducationalBackgrounds	1
769801	2025-03-14	08:53:21.9156224	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3764\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1983\r\nDateTo: 1987\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 1987\r\n	admin	EducationalBackgrounds	1
769792	2025-03-14	08:49:59.1218927	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 05, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 5,009.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1995\r\n	admin	Experiences	1
769793	2025-03-14	08:49:59.1268760	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 4,902.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 04, 1995\r\n	admin	Experiences	1
769794	2025-03-14	08:49:59.1318594	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 3,902.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1994\r\n	admin	Experiences	1
769795	2025-03-14	08:49:59.1368427	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION`\r\nExperienceId: 0\r\nFromDate: September 18, 1991\r\nIsGovernmentService: True\r\nMonthlySalary: 3,102.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1993\r\n	admin	Experiences	1
769797	2025-03-14	08:52:45.0537041	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 02, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 23,289.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
769810	2025-03-14	08:55:54.0653687	<Undetected>	Update	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12239\r\nFromDate: November 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 9,121.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1997\r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12239\r\nFromDate: January 01, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 9,121.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1998\r\n	admin	Experiences	1
769811	2025-03-14	08:57:12.4112830	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3762\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 9,121.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1997\r\n	admin	Experiences	1
769813	2025-03-14	09:01:34.2184745	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3762\r\nSkillId: 0\r\nSkillName: COMPUTER SKILLS\r\n	admin	Skills	1
769814	2025-03-14	09:01:34.2294379	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3762\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
769815	2025-03-14	09:01:34.2344214	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3762\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY PUBLIC SCHOOL TEACHERS AND EMPLOYEES ASSOCIATION\r\n	admin	Organizations	1
769816	2025-03-14	09:01:34.2433913	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3762\r\nOrganizationId: 0\r\nOrganizationName: BUCAL MULTI-PURPOSE COOPERATIVE INCORPORATED\r\n	admin	Organizations	1
769822	2025-03-14	09:14:47.6909227	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 368\r\nAddress2: \r\nBarangay: BUKAL\r\nBasicInformationId: 0\r\nBirthDate: October 04, 1966\r\nBirthPlace: BUKAL, BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: babylinda.tuliao001@deped.gov.ph\r\nExtensionName: \r\nFirstName: BABYLINDA\r\nFullName: BABYLINDA C. TULIAO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: TULIAO\r\nMaidenName: \r\nMiddleName: COMETA\r\nMobileNumber: 09196426534\r\nNationality: Filipino\r\nPermanentAddress1: 368\r\nPermanentAddress2: \r\nPermanentBarangay: BUKAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769802	2025-03-14	08:53:21.9198773	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3764\r\nCourse: \r\nCourseId: 1284\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 2000\r\nEducationalAttainment: 45 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
769803	2025-03-14	08:53:21.9251045	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK & LOT 13\r\nAddress2: BRIXTON HOMES SUBDIVISION\r\nBarangay: BALINTAWAK\r\nBasicInformationId: 3764\r\nBirthDate: January 08, 1967\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: LIPA CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: enia.papasin2deped.gov.ph\r\nExtensionName: \r\nFirstName: ENIA\r\nFullName: ENIA DG. PAPASIN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.56\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PAPASIN\r\nMaidenName: \r\nMiddleName: DE GUZMAN\r\nMobileNumber: 09171543842\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK & LOT 13\r\nPermanentAddress2: BRIXTON HOMES SUBDIVISION\r\nPermanentBarangay: BALINTAWAK\r\nPermanentCity: LIPA CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4217\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 55\r\nZipCode: 4217\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK & LOT 13\r\nAddress2: BRIXTON HOMES SUBDIVISION\r\nBarangay: BALINTAWAK\r\nBasicInformationId: 3764\r\nBirthDate: January 08, 1967\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: LIPA CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: enia.papasin2deped.gov.ph\r\nExtensionName: \r\nFirstName: ENIA\r\nFullName: ENIA DG. PAPASIN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.56\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PAPASIN\r\nMaidenName: \r\nMiddleName: DE GUZMAN\r\nMobileNumber: 09171543842\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK & LOT 13\r\nPermanentAddress2: BRIXTON HOMES SUBDIVISION\r\nPermanentBarangay: BALINTAWAK\r\nPermanentCity: LIPA CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4217\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 55\r\nZipCode: 4217\r\n	admin	BasicInformation	1
769804	2025-03-14	08:53:21.9302542	<Undetected>	Update	BasicInformationId: 3764\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3873\r\nExtensionName: \r\nFirstName: EDDIE\r\nFullName: EDDIE GUTIERREZ PAPASIN\r\nGender: Male\r\nLastName: PAPASIN\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3764\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3873\r\nExtensionName: \r\nFirstName: EDDIE\r\nFullName: EDDIE PAPASIN\r\nGender: Male\r\nLastName: PAPASIN\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
769805	2025-03-14	08:53:21.9352622	<Undetected>	Update	BasicInformationId: 3764\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3874\r\nExtensionName: \r\nFirstName: DOMINADOR\r\nFullName: DOMINADOR RAMOS DE GUZMAN\r\nGender: Male\r\nLastName: DE GUZMAN\r\nMaidenName: \r\nMiddleName: RAMOS\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3764\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3874\r\nExtensionName: \r\nFirstName: DOMINADOR\r\nFullName: DOMINADOR DE GUZMAN\r\nGender: Male\r\nLastName: DE GUZMAN\r\nMaidenName: \r\nMiddleName: RAMOS\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
769806	2025-03-14	08:53:21.9392892	<Undetected>	Update	BasicInformationId: 3764\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3875\r\nExtensionName: \r\nFirstName: JULITA\r\nFullName: JULITA CUETO CATAPANG\r\nGender: Female\r\nLastName: CATAPANG\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3764\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3875\r\nExtensionName: \r\nFirstName: JULITA\r\nFullName: JULITA CATAPANG\r\nGender: Female\r\nLastName: CATAPANG\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
769807	2025-03-14	08:53:21.9442970	<Undetected>	Update	BasicInformationId: 3764\r\nBirthDate: April 01, 1992\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3876\r\nExtensionName: \r\nFirstName: EDEN\r\nFullName: EDEN DE GUZMAN PAPASIN\r\nGender: Female\r\nLastName: PAPASIN\r\nMaidenName: \r\nMiddleName: DE GUZMAN\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3764\r\nBirthDate: April 01, 1992\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3876\r\nExtensionName: \r\nFirstName: EDEN\r\nFullName: EDEN PAPASIN\r\nGender: Female\r\nLastName: PAPASIN\r\nMaidenName: \r\nMiddleName: DE GUZMAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769808	2025-03-14	08:53:21.9483037	<Undetected>	Update	BasicInformationId: 3764\r\nBirthDate: April 28, 1998\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3877\r\nExtensionName: \r\nFirstName: ERWIN\r\nFullName: ERWIN DE GUZMAN PAPASIN\r\nGender: Male\r\nLastName: PAPASIN\r\nMaidenName: \r\nMiddleName: DE GUZMAN\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3764\r\nBirthDate: April 28, 1998\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3877\r\nExtensionName: \r\nFirstName: ERWIN\r\nFullName: ERWIN PAPASIN\r\nGender: Male\r\nLastName: PAPASIN\r\nMaidenName: \r\nMiddleName: DE GUZMAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769809	2025-03-14	08:53:21.9533109	<Undetected>	Update	BasicInformationId: 3764\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3561\r\n	BasicInformationId: 3764\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3561\r\n	admin	Questionnaires	1
769819	2025-03-14	09:02:28.8577993	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3763\r\nCourse: \r\nCourseId: 1382\r\nCourseOrMajor: \r\nDateFrom: 1978\r\nDateTo: 1982\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: MANUEL L. QUEZON UNIVERSITY\r\nYearGraduated: 1982\r\n	admin	EducationalBackgrounds	1
769820	2025-03-14	09:09:58.1403232	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3763\r\nSkillId: 0\r\nSkillName: CARPENTRY WORKS\r\n	admin	Skills	1
769821	2025-03-14	09:09:58.1508341	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3763\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 16,693.00\r\nPositionHeld: SECURITY GUARD\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 3-8\r\nStatus: Casual\r\nToDate: January 01, 2025\r\n	admin	Experiences	1
769852	2025-03-14	09:27:48.2121043	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3763\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN WEST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 784-8020\r\nExtensionName: \r\nFirstName: RUEL\r\nLastName: DE CASTRO\r\nMiddleName: B.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769853	2025-03-14	09:27:48.2171040	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3763\r\nCharacterReferenceId: 0\r\nCompanyAddress: BANABA WEST BATANGAS CITY\r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: MARIA\r\nLastName: RUBIA\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769854	2025-03-14	09:27:48.2221039	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3763\r\nCharacterReferenceId: 0\r\nCompanyAddress: BANABA WEST BATANGAS CITY\r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: MATEO\r\nLastName: PAGLICAUAN\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769855	2025-03-14	09:27:48.2271040	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3763\r\nBirthDate: November 18, 1961\r\nBirthPlace: MAKATI METRO MANILA\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MARYGRACE.ADAO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RONILO\r\nFullName: RONILO DS. AGUSTIN\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: AGUSTIN\r\nMaidenName: \r\nMiddleName: DELOS SANTOS\r\nMobileNumber: 0\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO GO WEST\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO GO WEST\r\nTIN: \r\nWeight: 75\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3763\r\nBirthDate: November 18, 1961\r\nBirthPlace: MAKATI METRO MANILA\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MARYGRACE.ADAO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RONILO\r\nFullName: RONILO DS. AGUSTIN\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: 4176215\r\nGovernmentIdPlaceIssued: BATANGAS CITY\r\nGovernmentIssuedId: DEPED ID\r\nGSIS: 02002993830\r\nHDMF: 1490-0093-2710\r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: AGUSTIN\r\nMaidenName: \r\nMiddleName: DELOS SANTOS\r\nMobileNumber: 0\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO GO WEST\r\nPermanentZipCode: 4200\r\nPhilhealth: 19-000787521-9\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 33-0127518-8\r\nStreetName: SITIO GO WEST\r\nTIN: 126-982-694-0000\r\nWeight: 75\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769824	2025-03-14	09:16:17.2251319	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3765\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RAMIR\r\nFullName: RAMIR STA. MARIA TULIAO\r\nGender: Male\r\nLastName: TULIAO\r\nMaidenName: \r\nMiddleName: STA. MARIA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
769825	2025-03-14	09:16:17.2291180	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3765\r\nBirthDate: November 09, 1994\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RICHARD JAY\r\nFullName: RICHARD JAY COMETA TULIAO\r\nGender: Male\r\nLastName: TULIAO\r\nMaidenName: \r\nMiddleName: COMETA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769826	2025-03-14	09:16:17.2400816	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3765\r\nBirthDate: August 30, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: KHARREN BABES\r\nFullName: KHARREN BABES COMETA TULIAO\r\nGender: Male\r\nLastName: TULIAO\r\nMaidenName: \r\nMiddleName: COMETA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769827	2025-03-14	09:16:17.2440685	<Undetected>	Update	BasicInformationId: 3765\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3562\r\n	BasicInformationId: 3765\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3562\r\n	admin	Questionnaires	1
769828	2025-03-14	09:17:13.1826991	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3765\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1974\r\nDateTo: 1980\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BUCAL ELEMENTARY SCHOOL\r\nYearGraduated: 1980\r\n	admin	EducationalBackgrounds	1
769829	2025-03-14	09:17:13.1936626	<Undetected>	Update	BasicInformationId: 3765\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3878\r\nExtensionName: \r\nFirstName: RAMIR\r\nFullName: RAMIR STA. MARIA TULIAO\r\nGender: Male\r\nLastName: TULIAO\r\nMaidenName: \r\nMiddleName: STA. MARIA\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3765\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3878\r\nExtensionName: \r\nFirstName: RAMIR\r\nFullName: RAMIR TULIAO\r\nGender: Male\r\nLastName: TULIAO\r\nMaidenName: \r\nMiddleName: STA. MARIA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
769830	2025-03-14	09:17:13.1986461	<Undetected>	Update	BasicInformationId: 3765\r\nBirthDate: November 09, 1994\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3879\r\nExtensionName: \r\nFirstName: RICHARD JAY\r\nFullName: RICHARD JAY COMETA TULIAO\r\nGender: Male\r\nLastName: TULIAO\r\nMaidenName: \r\nMiddleName: COMETA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3765\r\nBirthDate: November 09, 1994\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3879\r\nExtensionName: \r\nFirstName: RICHARD JAY\r\nFullName: RICHARD JAY TULIAO\r\nGender: Male\r\nLastName: TULIAO\r\nMaidenName: \r\nMiddleName: COMETA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769831	2025-03-14	09:17:13.2086513	<Undetected>	Update	BasicInformationId: 3765\r\nBirthDate: August 30, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3880\r\nExtensionName: \r\nFirstName: KHARREN BABES\r\nFullName: KHARREN BABES COMETA TULIAO\r\nGender: Male\r\nLastName: TULIAO\r\nMaidenName: \r\nMiddleName: COMETA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3765\r\nBirthDate: August 30, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3880\r\nExtensionName: \r\nFirstName: KHARREN BABES\r\nFullName: KHARREN BABES TULIAO\r\nGender: Male\r\nLastName: TULIAO\r\nMaidenName: \r\nMiddleName: COMETA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769832	2025-03-14	09:27:26.6853401	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3764\r\nDateOfExamination: August 24, 1996\r\nDateOfRelease: November 19, 1996\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 24, 1996\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0023680\r\nPlaceOfExamination: NCR - MANILA\r\nRating: 75.00\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
769833	2025-03-14	09:27:26.6903398	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 36,354.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-7\r\nStatus: Permanent\r\nToDate: March 14, 2025\r\n	admin	Experiences	1
769834	2025-03-14	09:27:26.6953402	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 34,804.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-7\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
769835	2025-03-14	09:27:26.7003402	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 33,254.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-7\r\nStatus: Permanent\r\nToDate: March 31, 2023\r\n	admin	Experiences	1
769836	2025-03-14	09:27:26.7043400	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 09, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 31,732.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-7\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
769837	2025-03-14	09:27:26.7093401	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 31,400.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-6\r\nStatus: Permanent\r\nToDate: August 08, 2022\r\n	admin	Experiences	1
769838	2025-03-14	09:27:26.7133399	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 29,550.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-6\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
769839	2025-03-14	09:27:26.7183401	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 02, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 28,356.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-6\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
769840	2025-03-14	09:27:26.7223399	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 28,028.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: January 01, 2020\r\n	admin	Experiences	1
769841	2025-03-14	09:27:26.7273398	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 26,506.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
769842	2025-03-14	09:27:26.7324035	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 25,387.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
769843	2025-03-14	09:27:26.7367626	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 24,315.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
769844	2025-03-14	09:27:26.7407863	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 09, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 23,289.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
769845	2025-03-14	09:27:26.7460636	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 23,045.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: August 08, 2016\r\n	admin	Experiences	1
769846	2025-03-14	09:27:26.7500655	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 10, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 22,086.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
770375	2025-03-17	10:35:54.5563238	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPABILITY BUILDING FOR TEACHERS AND SCHOOL LEADERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769847	2025-03-14	09:27:26.7550655	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 21,867.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: August 09, 2013\r\n	admin	Experiences	1
769848	2025-03-14	09:27:26.7590655	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 20,162.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
769849	2025-03-14	09:27:26.7640655	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: April 10, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,457.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
769850	2025-03-14	09:27:26.7681099	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 18,166.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: April 09, 2011\r\n	admin	Experiences	1
769851	2025-03-14	09:27:26.7734371	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 16,424.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
769876	2025-03-14	09:41:55.7109741	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 13,850.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
769877	2025-03-14	09:41:55.7159818	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 13,850.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
769878	2025-03-14	09:41:55.7210484	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,591.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
769879	2025-03-14	09:41:55.7260565	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 12,284.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2007\r\n	admin	Experiences	1
769880	2025-03-14	09:41:55.7300623	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 09, 2004\r\nIsGovernmentService: True\r\nMonthlySalary: 11,167.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
769881	2025-03-14	09:41:55.7350765	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 12, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 10,535.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: August 08, 2004\r\n	admin	Experiences	1
770404	2025-03-17	10:48:14.2404801	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MASTER CLASSES IN FILIPINO 7\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769856	2025-03-14	09:28:00.2846057	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3765\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1980\r\nDateTo: 1984\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES\r\nYearGraduated: 1984\r\n	admin	EducationalBackgrounds	1
769857	2025-03-14	09:28:00.2945722	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3765\r\nCourse: \r\nCourseId: 1307\r\nCourseOrMajor: \r\nDateFrom: 1984\r\nDateTo: 1988\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES\r\nYearGraduated: 1988\r\n	admin	EducationalBackgrounds	1
769858	2025-03-14	09:28:00.2995554	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3765\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 1997\r\nDateTo: 1999\r\nEducationalAttainment: 42 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
769859	2025-03-14	09:30:03.5990916	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 368\r\nAddress2: \r\nBarangay: BUKAL\r\nBasicInformationId: 3765\r\nBirthDate: October 04, 1966\r\nBirthPlace: BUKAL, BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: babylinda.tuliao001@deped.gov.ph\r\nExtensionName: \r\nFirstName: BABYLINDA\r\nFullName: BABYLINDA C. TULIAO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: TULIAO\r\nMaidenName: \r\nMiddleName: COMETA\r\nMobileNumber: 09196426534\r\nNationality: Filipino\r\nPermanentAddress1: 368\r\nPermanentAddress2: \r\nPermanentBarangay: BUKAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 368\r\nAddress2: \r\nBarangay: BUKAL\r\nBasicInformationId: 3765\r\nBirthDate: October 04, 1966\r\nBirthPlace: BUKAL, BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: babylinda.tuliao001@deped.gov.ph\r\nExtensionName: \r\nFirstName: BABYLINDA\r\nFullName: BABYLINDA C. TULIAO\r\nGender: Female\r\nGovernmentIdIssuedDate: August 30, 1997\r\nGovernmentIdNumber: 0110415\r\nGovernmentIdPlaceIssued: LUCENA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02002994146\r\nHDMF: 1490-0089-1547\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: TULIAO\r\nMaidenName: \r\nMiddleName: COMETA\r\nMobileNumber: 09196426534\r\nNationality: Filipino\r\nPermanentAddress1: 368\r\nPermanentAddress2: \r\nPermanentBarangay: BUKAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000014004-9\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 164-192-649-0000\r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769860	2025-03-14	09:31:46.7558630	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3765\r\nCharacterReferenceId: 0\r\nCompanyAddress: BUCAL, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09913533013\r\nExtensionName: \r\nFirstName: AQUILINO\r\nLastName: MAGNAYE\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769861	2025-03-14	09:31:46.7608465	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3765\r\nCharacterReferenceId: 0\r\nCompanyAddress: AGUILA, SAN JOSE, BATANGAS\r\nCompanyName: \r\nContactNumber: 09988639304\r\nExtensionName: \r\nFirstName: ATHENA\r\nLastName: COMETA\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769862	2025-03-14	09:31:46.7658299	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3765\r\nCharacterReferenceId: 0\r\nCompanyAddress: GC BERBERABE, PALLOCAN EAST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09122107745\r\nExtensionName: \r\nFirstName: RODEZA MAE\r\nLastName: BARRAMEDA\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769863	2025-03-14	09:32:34.0273365	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3765\r\nDateOfExamination: October 25, 1992\r\nDateOfRelease: October 04, 2019\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: October 25, 1992\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0110415\r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 70\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
769864	2025-03-14	09:35:37.2915794	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MASTER CLASS FOR KINDERGARTEN, GRADE 1, GRADE 4, AND GRADE 7 (K147) TEACHERS ACROSS ALL LEARNING AREAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769865	2025-03-14	09:37:11.5564692	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3765\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 3\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16340\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769866	2025-03-14	09:37:11.5624494	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3765\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16482\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769867	2025-03-14	09:37:11.5664354	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3765\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2024\r\nTrainingId: 16441\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769868	2025-03-14	09:37:11.5714190	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3765\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16347\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769869	2025-03-14	09:37:11.5764025	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3765\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: January 26, 2024\r\nTrainingId: 16459\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769870	2025-03-14	09:38:18.6267474	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3765\r\nSkillId: 0\r\nSkillName: ICT\r\n	admin	Skills	1
769871	2025-03-14	09:38:18.6377109	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3765\r\nOrganizationId: 0\r\nOrganizationName: BUCAL MULTI-PURPOSE COOPERATIVE\r\n	admin	Organizations	1
769872	2025-03-14	09:38:18.6426943	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3765\r\nOrganizationId: 0\r\nOrganizationName: BUCAL RURAL WATERWORKS AND SANITATION ASSOCIATION\r\n	admin	Organizations	1
769873	2025-03-14	09:40:21.6310677	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 36,691.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-8\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
769874	2025-03-14	09:40:21.6400377	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 25, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 35,141.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-8\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
769875	2025-03-14	09:40:21.6450211	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 34,804.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-7\r\nStatus: Permanent\r\nToDate: August 24, 2024\r\n	admin	Experiences	1
769893	2025-03-14	09:50:21.7350037	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 33,254.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-7\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
769894	2025-03-14	09:50:21.7389904	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 31,732.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-7\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
769895	2025-03-14	09:50:21.7439738	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 31,566.67\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-7\r\nStatus: Permanent\r\nToDate: January 01, 2022\r\n	admin	Experiences	1
769896	2025-03-14	09:50:21.7489571	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 29,711.33\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-6\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
769897	2025-03-14	09:50:21.7539403	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 28,356.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-6\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
769882	2025-03-14	09:41:55.7390825	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: July 11, 2001\r\n	admin	Experiences	1
769883	2025-03-14	09:41:55.7440903	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 07, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
769884	2025-03-14	09:41:55.7491098	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 05, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: February 06, 2001\r\n	admin	Experiences	1
769885	2025-03-14	09:41:55.7541954	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: February 04, 2001\r\n	admin	Experiences	1
769886	2025-03-14	09:41:55.7582015	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: September 08, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
769887	2025-03-14	09:41:55.7632088	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: September 07, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: September 07, 1998\r\n	admin	Experiences	1
769888	2025-03-14	09:41:55.7672331	<Undetected>	Update	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 12263\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 21,867.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: August 09, 2013\r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL\r\nExperienceId: 12263\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 21,867.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: August 09, 2013\r\n	admin	Experiences	1
769889	2025-03-14	09:41:55.7722406	<Undetected>	Update	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 12264\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 20,162.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL\r\nExperienceId: 12264\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 20,162.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
769890	2025-03-14	09:41:55.7762463	<Undetected>	Update	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 12265\r\nFromDate: April 10, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,457.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL\r\nExperienceId: 12265\r\nFromDate: April 10, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,457.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
769891	2025-03-14	09:41:55.7812623	<Undetected>	Update	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 12266\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 18,166.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: April 09, 2011\r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL\r\nExperienceId: 12266\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 18,166.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: April 09, 2011\r\n	admin	Experiences	1
770405	2025-03-17	10:58:59.7892186	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING OF COACHES FOR VARIOUS EVENTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769892	2025-03-14	09:41:55.7862773	<Undetected>	Update	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 12267\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 16,424.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL\r\nExperienceId: 12267\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 16,424.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
769922	2025-03-14	09:54:50.1654997	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 27, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: September 06, 1998\r\n	admin	Experiences	1
769923	2025-03-14	09:54:50.1715002	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / CUMBA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: May 04, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 26, 1998\r\n	admin	Experiences	1
769924	2025-03-14	09:54:50.1754996	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / CUMBA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 05, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: May 03, 1998\r\n	admin	Experiences	1
769925	2025-03-14	09:54:50.1804998	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: October 24, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 7,309.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Substitute\r\nToDate: December 19, 1997\r\n	admin	Experiences	1
769926	2025-03-14	09:54:50.1855000	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: August 25, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 7,309.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Substitute\r\nToDate: October 23, 1997\r\n	admin	Experiences	1
769927	2025-03-14	09:54:50.1905001	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 24, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 7,309.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Substitute\r\nToDate: July 23, 1997\r\n	admin	Experiences	1
769928	2025-03-14	09:54:50.1944996	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: February 04, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 7,309.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Substitute\r\nToDate: March 31, 1997\r\n	admin	Experiences	1
769929	2025-03-14	09:54:50.1994997	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 11, 1989\r\nIsGovernmentService: True\r\nMonthlySalary: 1,764.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Substitute\r\nToDate: February 09, 1989\r\n	admin	Experiences	1
769930	2025-03-14	09:54:50.2045000	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: August 19, 1988\r\nIsGovernmentService: True\r\nMonthlySalary: 1,604.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Substitute\r\nToDate: September 14, 1988\r\n	admin	Experiences	1
769931	2025-03-14	09:54:50.2094999	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: February 24, 1988\r\nIsGovernmentService: True\r\nMonthlySalary: 1,604.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Substitute\r\nToDate: March 24, 1988\r\n	admin	Experiences	1
769898	2025-03-14	09:50:21.7579270	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 26,834.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-6\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
769899	2025-03-14	09:50:21.7639070	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 27, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 25,686.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-6\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
769900	2025-03-14	09:50:21.7678937	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 25,387.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: August 26, 2018\r\n	admin	Experiences	1
769901	2025-03-14	09:50:21.7728771	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 24,315.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
769902	2025-03-14	09:50:21.7778602	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 23,289.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
769903	2025-03-14	09:50:21.7828438	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 25, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 22,306.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
769904	2025-03-14	09:50:21.7868304	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 26, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 22,086.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: August 24, 2015\r\n	admin	Experiences	1
769905	2025-03-14	09:50:21.7918138	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 21,867.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: August 25, 2012\r\n	admin	Experiences	1
769906	2025-03-14	09:50:21.7967970	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 20,162.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
769907	2025-03-14	09:50:21.8017803	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 18,457.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
769908	2025-03-14	09:50:21.8057669	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 26, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 16,753.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
769909	2025-03-14	09:50:21.8107504	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 16,424.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: August 25, 2009\r\n	admin	Experiences	1
769910	2025-03-14	09:50:21.8157336	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 13,850.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
769911	2025-03-14	09:50:21.8207170	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 12,591.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
769912	2025-03-14	09:50:21.8247036	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 11,446.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
769913	2025-03-14	09:50:21.8296870	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 25, 2003\r\nIsGovernmentService: True\r\nMonthlySalary: 11,167.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2006\r\n	admin	Experiences	1
769914	2025-03-14	09:50:21.8346704	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 10,535.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: August 24, 2003\r\n	admin	Experiences	1
769915	2025-03-14	09:50:21.8396537	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 13, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 10,033.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
769916	2025-03-14	09:50:21.8436403	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 12, 2001\r\n	admin	Experiences	1
769917	2025-03-14	09:52:53.4735808	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 01, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
769918	2025-03-14	09:52:53.4805574	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 7,309.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: October 31, 1997\r\n	admin	Experiences	1
769919	2025-03-14	09:52:53.4925175	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 6,013.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1996\r\n	admin	Experiences	1
769920	2025-03-14	09:52:53.5201276	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 4,902.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1995\r\n	admin	Experiences	1
769921	2025-03-14	09:52:53.5340840	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 06, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 3,902.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1994\r\n	admin	Experiences	1
769932	2025-03-14	09:54:50.2134997	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3764\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: September 29, 1987\r\nIsGovernmentService: True\r\nMonthlySalary: 1,604.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Substitute\r\nToDate: October 28, 1987\r\n	admin	Experiences	1
769933	2025-03-14	09:55:23.4465838	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 0\r\nBirthDate: March 09, 1986\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITTY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MARYGRACE.ADAO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: MARY GRACE\r\nFullName: MARY GRACE B. ADAO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ADAO\r\nMaidenName: \r\nMiddleName: BECHAYDA\r\nMobileNumber: 09985486360\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITTY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO MANGGAHAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: SITIO MANGGAHAN\r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769934	2025-03-14	09:55:23.4570313	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3766\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
769937	2025-03-14	09:58:44.0324309	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING OF COACHES FOR VARIOUS SPORTS EVENTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769939	2025-03-14	10:00:33.4066851	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3766\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROVAL\r\nFullName: ROVAL MIRANDA ADAO\r\nGender: Male\r\nLastName: ADAO\r\nMaidenName: \r\nMiddleName: MIRANDA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
769940	2025-03-14	10:00:33.4106850	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3766\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: JR\r\nFirstName: TEOTIMO\r\nFullName: TEOTIMO BELLEN BECHAYDA JR\r\nGender: Male\r\nLastName: BECHAYDA\r\nMaidenName: \r\nMiddleName: BELLEN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
769941	2025-03-14	10:00:33.4146845	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3766\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: BUENA\r\nFullName: BUENA MAGBUHAT ASIS\r\nGender: Male\r\nLastName: ASIS\r\nMaidenName: \r\nMiddleName: MAGBUHAT\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
769942	2025-03-14	10:00:33.4256853	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3766\r\nBirthDate: November 01, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROVEAC CHANIEL\r\nFullName: ROVEAC CHANIEL B ADAO\r\nGender: Male\r\nLastName: ADAO\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769943	2025-03-14	10:00:33.4296843	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3766\r\nBirthDate: June 27, 2016\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROV SVETLUTHER\r\nFullName: ROV SVETLUTHER B ADAO\r\nGender: Male\r\nLastName: ADAO\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769944	2025-03-14	10:00:33.4376844	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3766\r\nBirthDate: August 09, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: HANNA SVETLANA\r\nFullName: HANNA SVETLANA B ADAO\r\nGender: Male\r\nLastName: ADAO\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769947	2025-03-14	10:00:57.8094511	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3764\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 28, 2024\r\nTrainingId: 16451\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769948	2025-03-14	10:00:57.8144680	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3764\r\nEmployeeTrainingId: 0\r\nFromDate: November 22, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 22, 2024\r\nTrainingId: 16441\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769935	2025-03-14	09:58:04.9214428	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 26, 1990\r\nIsGovernmentService: True\r\nMonthlySalary: 3,102.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Substitute\r\nToDate: January 22, 1994\r\n	admin	Experiences	1
769936	2025-03-14	09:58:04.9314093	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 16, 1988\r\nIsGovernmentService: True\r\nMonthlySalary: 1,764.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Substitute\r\nToDate: February 28, 1990\r\n	admin	Experiences	1
769938	2025-03-14	09:58:51.8354527	<Undetected>	Update	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12311\r\nFromDate: June 06, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 3,902.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1994\r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12311\r\nFromDate: June 06, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 3,902.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Substitute\r\nToDate: December 31, 1994\r\n	admin	Experiences	1
769959	2025-03-14	10:06:19.3325216	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 06, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 3,902.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Substitute\r\nToDate: November 12, 1994\r\n	admin	Experiences	1
769960	2025-03-14	10:06:19.3454780	<Undetected>	Update	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12284\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 31,732.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-7\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12284\r\nFromDate: January 02, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 31,732.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-7\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
769961	2025-03-14	10:06:19.3584345	<Undetected>	Update	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12311\r\nFromDate: June 06, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 3,902.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Substitute\r\nToDate: December 31, 1994\r\n	BasicInformationId: 3765\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12311\r\nFromDate: June 06, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 3,902.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1994\r\n	admin	Experiences	1
769984	2025-03-14	10:16:17.6552776	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 12/LOT12\r\nAddress2: GC BERBERABE\r\nBarangay: PALLOCAN EAST\r\nBasicInformationId: 0\r\nBirthDate: January 28, 1998\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rodezaamparo.1998@gmail.com\r\nExtensionName: \r\nFirstName: RODEZA MAE\r\nFullName: RODEZA MAE A. BARRAMEDA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.56\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BARRAMEDA\r\nMaidenName: \r\nMiddleName: AMPARO\r\nMobileNumber: 09122107745\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 12/LOT12\r\nPermanentAddress2: GC BERBERABE\r\nPermanentBarangay: PALLOCAN EAST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: AMETHYST STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: AMETHYST STREET\r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769985	2025-03-14	10:16:17.6649646	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3768\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
769986	2025-03-14	10:17:35.1917116	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3768\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JAYSON\r\nFullName: JAYSON DIMABAYAO BARRAMEDA\r\nGender: Male\r\nLastName: BARRAMEDA\r\nMaidenName: \r\nMiddleName: DIMABAYAO\r\nOccupation: MECHANICAL FITTER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
769987	2025-03-14	10:17:35.2016783	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3768\r\nBirthDate: January 07, 2021\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: AMIRAH JHADE\r\nFullName: AMIRAH JHADE AMPARO BARRAMEDA\r\nGender: Male\r\nLastName: BARRAMEDA\r\nMaidenName: \r\nMiddleName: AMPARO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769988	2025-03-14	10:17:35.2066615	<Undetected>	Update	BasicInformationId: 3768\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3565\r\n	BasicInformationId: 3768\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3565\r\n	admin	Questionnaires	1
769945	2025-03-14	10:00:33.4426845	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3766\r\nBirthDate: March 09, 1986\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITTY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MARYGRACE.ADAO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: MARY GRACE\r\nFullName: MARY GRACE B. ADAO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ADAO\r\nMaidenName: \r\nMiddleName: BECHAYDA\r\nMobileNumber: 09985486360\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITTY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO MANGGAHAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: SITIO MANGGAHAN\r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3766\r\nBirthDate: March 09, 1986\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITTY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MARYGRACE.ADAO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: MARY GRACE\r\nFullName: MARY GRACE B. ADAO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ADAO\r\nMaidenName: \r\nMiddleName: BECHAYDA\r\nMobileNumber: 09985486360\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITTY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO MANGGAHAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO MANGGAHAN\r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769946	2025-03-14	10:00:33.4476845	<Undetected>	Update	BasicInformationId: 3766\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3563\r\n	BasicInformationId: 3766\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3563\r\n	admin	Questionnaires	1
769962	2025-03-14	10:07:51.7242491	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3766\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1993\r\nDateTo: 1999\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BANABA WEST ELEMENTYARY SCHOOL\r\nYearGraduated: 1999\r\n	admin	EducationalBackgrounds	1
769963	2025-03-14	10:07:51.7292496	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3766\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1999\r\nDateTo: 2003\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BANABA WEST NATIONAL HIGH SCHOOL\r\nYearGraduated: 2003\r\n	admin	EducationalBackgrounds	1
769964	2025-03-14	10:07:51.7372505	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: STUDENT ASSISTANT\r\nBasicInformationId: 3766\r\nCourse: \r\nCourseId: 1353\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: LYCEUM OF THE PHILIPPINES UNIVERSITY\r\nYearGraduated: 2007\r\n	admin	EducationalBackgrounds	1
769965	2025-03-14	10:07:51.7502508	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: INSTITUTIONAL SCHOLAR\r\nBasicInformationId: 3766\r\nCourse: \r\nCourseId: 1352\r\nCourseOrMajor: \r\nDateFrom: 2011\r\nDateTo: 2012\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: LYCEUM OF THE PHILIPPINES UNIVERSITY\r\nYearGraduated: 2012\r\n	admin	EducationalBackgrounds	1
769966	2025-03-14	10:07:51.7662503	<Undetected>	Update	BasicInformationId: 3766\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3881\r\nExtensionName: \r\nFirstName: ROVAL\r\nFullName: ROVAL MIRANDA ADAO\r\nGender: Male\r\nLastName: ADAO\r\nMaidenName: \r\nMiddleName: MIRANDA\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3766\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3881\r\nExtensionName: \r\nFirstName: ROVAL\r\nFullName: ROVAL ADAO\r\nGender: Male\r\nLastName: ADAO\r\nMaidenName: \r\nMiddleName: MIRANDA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
769967	2025-03-14	10:07:51.7822523	<Undetected>	Update	BasicInformationId: 3766\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3882\r\nExtensionName: JR\r\nFirstName: TEOTIMO\r\nFullName: TEOTIMO BELLEN BECHAYDA JR\r\nGender: Male\r\nLastName: BECHAYDA\r\nMaidenName: \r\nMiddleName: BELLEN\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3766\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3882\r\nExtensionName: JR\r\nFirstName: TEOTIMO\r\nFullName: TEOTIMO BECHAYDA JR\r\nGender: Male\r\nLastName: BECHAYDA\r\nMaidenName: \r\nMiddleName: BELLEN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
769968	2025-03-14	10:07:51.7862514	<Undetected>	Update	BasicInformationId: 3766\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3883\r\nExtensionName: \r\nFirstName: BUENA\r\nFullName: BUENA MAGBUHAT ASIS\r\nGender: Male\r\nLastName: ASIS\r\nMaidenName: \r\nMiddleName: MAGBUHAT\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3766\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3883\r\nExtensionName: \r\nFirstName: BUENA\r\nFullName: BUENA ASIS\r\nGender: Male\r\nLastName: ASIS\r\nMaidenName: \r\nMiddleName: MAGBUHAT\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
769969	2025-03-14	10:07:51.7922574	<Undetected>	Update	BasicInformationId: 3766\r\nBirthDate: November 01, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3884\r\nExtensionName: \r\nFirstName: ROVEAC CHANIEL\r\nFullName: ROVEAC CHANIEL B ADAO\r\nGender: Male\r\nLastName: ADAO\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3766\r\nBirthDate: November 01, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3884\r\nExtensionName: \r\nFirstName: ROVEAC CHANIEL\r\nFullName: ROVEAC CHANIEL ADAO\r\nGender: Male\r\nLastName: ADAO\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769976	2025-03-14	10:16:08.5090416	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3767\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 2003\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BUCAL ELEMENTARY SCHOOL\r\nYearGraduated: 2003\r\n	admin	EducationalBackgrounds	1
769949	2025-03-14	10:00:57.8185582	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3764\r\nEmployeeTrainingId: 0\r\nFromDate: August 09, 2014\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 09, 2024\r\nTrainingId: 16483\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769950	2025-03-14	10:00:57.8246111	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3764\r\nEmployeeTrainingId: 0\r\nFromDate: July 08, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 10, 2024\r\nTrainingId: 16483\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769951	2025-03-14	10:00:57.8286247	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3764\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: January 26, 2024\r\nTrainingId: 16459\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
769952	2025-03-14	10:01:46.4010191	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3764\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
769953	2025-03-14	10:01:46.4060186	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3764\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
769954	2025-03-14	10:01:46.4157693	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3764\r\nOrganizationId: 0\r\nOrganizationName: FOLK DANCE SOCIETY / DULAYAW BATANGAS CITY\r\n	admin	Organizations	1
769955	2025-03-14	10:04:09.0051715	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3764\r\nCharacterReferenceId: 0\r\nCompanyAddress: SORO SORO KARSADA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09195979838\r\nExtensionName: \r\nFirstName: MARISSA\r\nLastName: MACATANGAY\r\nMiddleName: A.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769956	2025-03-14	10:04:09.0103980	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3764\r\nCharacterReferenceId: 0\r\nCompanyAddress: BUCAL, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09167737580\r\nExtensionName: \r\nFirstName: ROWENA\r\nLastName: MACATANGAY\r\nMiddleName: P.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769957	2025-03-14	10:04:09.0155560	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3764\r\nCharacterReferenceId: 0\r\nCompanyAddress: BALETE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09190046008\r\nExtensionName: \r\nFirstName: THELMA\r\nLastName: BLANCO\r\nMiddleName: D.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
769958	2025-03-14	10:06:00.9446876	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK & LOT 13\r\nAddress2: BRIXTON HOMES SUBDIVISION\r\nBarangay: BALINTAWAK\r\nBasicInformationId: 3764\r\nBirthDate: January 08, 1967\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: LIPA CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: enia.papasin2deped.gov.ph\r\nExtensionName: \r\nFirstName: ENIA\r\nFullName: ENIA DG. PAPASIN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.56\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PAPASIN\r\nMaidenName: \r\nMiddleName: DE GUZMAN\r\nMobileNumber: 09171543842\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK & LOT 13\r\nPermanentAddress2: BRIXTON HOMES SUBDIVISION\r\nPermanentBarangay: BALINTAWAK\r\nPermanentCity: LIPA CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4217\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 55\r\nZipCode: 4217\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK & LOT 13\r\nAddress2: BRIXTON HOMES SUBDIVISION\r\nBarangay: BALINTAWAK\r\nBasicInformationId: 3764\r\nBirthDate: January 08, 1967\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: LIPA CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: enia.papasin2deped.gov.ph\r\nExtensionName: \r\nFirstName: ENIA\r\nFullName: ENIA DG. PAPASIN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 10, 1997\r\nGovernmentIdNumber: 0023680\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02002998352\r\nHDMF: 1490-0090-0161\r\nHeight: 1.56\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PAPASIN\r\nMaidenName: \r\nMiddleName: DE GUZMAN\r\nMobileNumber: 09171543842\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK & LOT 13\r\nPermanentAddress2: BRIXTON HOMES SUBDIVISION\r\nPermanentBarangay: BALINTAWAK\r\nPermanentCity: LIPA CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4217\r\nPhilhealth: 09-000009382-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-0718370-8\r\nStreetName: \r\nTIN: 115-305-232-0000\r\nWeight: 55\r\nZipCode: 4217\r\n	admin	BasicInformation	1
769975	2025-03-14	10:16:08.4475140	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BUKAL\r\nBasicInformationId: 0\r\nBirthDate: August 27, 1990\r\nBirthPlace: BUKAL, BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: romabel.villareal@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROMABEL\r\nFullName: ROMABEL V. VIBAL\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.43\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: VIBAL\r\nMaidenName: \r\nMiddleName: VILLAREAL\r\nMobileNumber: 09772063255\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BUKAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 54\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769989	2025-03-14	10:19:08.5566045	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: ENGLISH PROFICIENCY LANGUAGE\r\nLevel: Vocational\r\n	admin	Courses	1
769970	2025-03-14	10:07:51.7962558	<Undetected>	Update	BasicInformationId: 3766\r\nBirthDate: June 27, 2016\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3885\r\nExtensionName: \r\nFirstName: ROV SVETLUTHER\r\nFullName: ROV SVETLUTHER B ADAO\r\nGender: Male\r\nLastName: ADAO\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3766\r\nBirthDate: June 27, 2016\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3885\r\nExtensionName: \r\nFirstName: ROV SVETLUTHER\r\nFullName: ROV SVETLUTHER ADAO\r\nGender: Male\r\nLastName: ADAO\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769971	2025-03-14	10:07:51.8022558	<Undetected>	Update	BasicInformationId: 3766\r\nBirthDate: August 09, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3886\r\nExtensionName: \r\nFirstName: HANNA SVETLANA\r\nFullName: HANNA SVETLANA B ADAO\r\nGender: Male\r\nLastName: ADAO\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3766\r\nBirthDate: August 09, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3886\r\nExtensionName: \r\nFirstName: HANNA SVETLANA\r\nFullName: HANNA SVETLANA ADAO\r\nGender: Male\r\nLastName: ADAO\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769972	2025-03-14	10:12:05.5395090	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3766\r\nDateOfExamination: November 25, 2015\r\nDateOfRelease: March 09, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: November 25, 2015\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0004994\r\nPlaceOfExamination: MANILA\r\nRating: N/A\r\nTitle: PRC LICENSE\r\n	admin	Eligibilities	1
769973	2025-03-14	10:14:55.2545714	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3766\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 29, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 30,308.00\r\nPositionHeld: ADMINISTRATIVE OFFICER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: January 01, 2025\r\n	admin	Experiences	1
769974	2025-03-14	10:15:47.2539003	<Undetected>	Update	BasicInformationId: 3763\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12248\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 16,693.00\r\nPositionHeld: SECURITY GUARD\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 3-8\r\nStatus: Casual\r\nToDate: January 01, 2025\r\n	BasicInformationId: 3763\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12248\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 16,693.00\r\nPositionHeld: SECURITY GUARD\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 3-8\r\nStatus: Permanent\r\nToDate: January 01, 2025\r\n	admin	Experiences	1
770000	2025-03-14	10:26:01.0178456	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3766\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 16, 2018\r\nIsGovernmentService: False\r\nMonthlySalary: 23,877.00\r\nPositionHeld: PROJECT DEVELOPMENT OFFICER-I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: November 07, 2021\r\n	admin	Experiences	1
770001	2025-03-14	10:26:01.0228466	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3766\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: December 12, 2016\r\nIsGovernmentService: False\r\nMonthlySalary: 14,656.00\r\nPositionHeld: ADMINISTRATIVE AIDE VI\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-1\r\nStatus: Permanent\r\nToDate: September 15, 2021\r\n	admin	Experiences	1
770002	2025-03-14	10:26:01.0298464	<Undetected>	Update	BasicInformationId: 3766\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12326\r\nFromDate: June 29, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 30,308.00\r\nPositionHeld: ADMINISTRATIVE OFFICER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: January 01, 2025\r\n	BasicInformationId: 3766\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12326\r\nFromDate: November 08, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 30,308.00\r\nPositionHeld: ADMINISTRATIVE OFFICER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: January 01, 2025\r\n	admin	Experiences	1
770007	2025-03-14	10:31:34.2160166	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING ON PSYCHOLOGICAL FIRST AID RESPONDERS\r\nTrainingId: 0\r\nType:  TECHNICAL\r\n	admin	Trainings	1
770026	2025-03-14	10:42:00.4551352	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING ON THE USE OF ADVANCE TECHNOLOGY FOR YOUTH FORMATION COORDINATORS\r\nTrainingId: 0\r\nType:  TECHNICAL\r\n	admin	Trainings	1
770039	2025-03-14	10:49:26.9179789	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL TRAINING OF TRAIBERS (NTOT) LUZON CLUSTER FOR GRADE 10 CAREER GUIDANCE PROGRAM\r\nTrainingId: 0\r\nType: TECHNICAL \r\n	admin	Trainings	1
770040	2025-03-14	10:51:00.0483644	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3766\r\nEmployeeTrainingId: 0\r\nFromDate: November 12, 2024\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-REGIONAL\r\nStatus: \r\nToDate: November 14, 2024\r\nTrainingId: 16484\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771788	2025-03-18	14:13:27.1788064	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT 4 ORIENTATION TRAINING ON THE IMPLEMENTATION OF ALTERNATIVE DELIVERY MODE (ADM) PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
769977	2025-03-14	10:16:08.5100821	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3767\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGASA NATIONAL HIGH SCHOOL\r\nYearGraduated: 2007\r\n	admin	EducationalBackgrounds	1
769978	2025-03-14	10:16:08.5100821	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3767\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 2007\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: CONTENT COURSE\r\nSchoolorUniversity: COLEGIO NG LUNGSOD NG BATANGAS\r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
769979	2025-03-14	10:16:08.5100821	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3767\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2016\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: ST. JUDE COLLEGE PHINMA\r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
769980	2025-03-14	10:16:08.5110866	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3767\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09273410974\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RICARDO\r\nFullName: RICARDO ABABA VIBAL\r\nGender: Male\r\nLastName: VIBAL\r\nMaidenName: \r\nMiddleName: ABABA\r\nOccupation: PACKER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
769981	2025-03-14	10:16:08.5110866	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3767\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROGELIO\r\nFullName: ROGELIO MANGHINANG VILLAREAL\r\nGender: Male\r\nLastName: VILLAREAL\r\nMaidenName: \r\nMiddleName: MANGHINANG\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
769982	2025-03-14	10:16:08.5110866	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3767\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROSITA\r\nFullName: ROSITA COMETA ANTE\r\nGender: Female\r\nLastName: ANTE\r\nMaidenName: \r\nMiddleName: COMETA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
769983	2025-03-14	10:16:08.5110866	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3767\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
769990	2025-03-14	10:20:40.9304949	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3768\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2004\r\nDateTo: 2010\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: CUMBA ELEMENTARY SCHOOL\r\nYearGraduated: 2010\r\n	admin	EducationalBackgrounds	1
769991	2025-03-14	10:20:40.9414584	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3768\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2010\r\nDateTo: 2014\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: CONDE LABAC NATIONAL HIGH SCHOOL\r\nYearGraduated: 2014\r\n	admin	EducationalBackgrounds	1
769992	2025-03-14	10:20:40.9454449	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3768\r\nCourse: \r\nCourseId: 1383\r\nCourseOrMajor: \r\nDateFrom: 2019\r\nDateTo: 2019\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Vocational Graduate\r\nMajor: \r\nSchoolorUniversity: TECHNICAL EDUCATION AND SKILLS DEVELOPMENT AUTHORITY\r\nYearGraduated: 2019\r\n	admin	EducationalBackgrounds	1
769993	2025-03-14	10:20:40.9504285	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3768\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 2014\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
769994	2025-03-14	10:20:40.9584016	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3768\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2022\r\nDateTo: 2025\r\nEducationalAttainment: 18 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
769995	2025-03-14	10:20:40.9633850	<Undetected>	Update	BasicInformationId: 3768\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3890\r\nExtensionName: \r\nFirstName: JAYSON\r\nFullName: JAYSON DIMABAYAO BARRAMEDA\r\nGender: Male\r\nLastName: BARRAMEDA\r\nMaidenName: \r\nMiddleName: DIMABAYAO\r\nOccupation: MECHANICAL FITTER\r\nRelationship: Husband\r\n	BasicInformationId: 3768\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3890\r\nExtensionName: \r\nFirstName: JAYSON\r\nFullName: JAYSON BARRAMEDA\r\nGender: Male\r\nLastName: BARRAMEDA\r\nMaidenName: \r\nMiddleName: DIMABAYAO\r\nOccupation: MECHANICAL FITTER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
769996	2025-03-14	10:20:40.9683684	<Undetected>	Update	BasicInformationId: 3768\r\nBirthDate: January 07, 2021\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3891\r\nExtensionName: \r\nFirstName: AMIRAH JHADE\r\nFullName: AMIRAH JHADE AMPARO BARRAMEDA\r\nGender: Male\r\nLastName: BARRAMEDA\r\nMaidenName: \r\nMiddleName: AMPARO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3768\r\nBirthDate: January 07, 2021\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3891\r\nExtensionName: \r\nFirstName: AMIRAH JHADE\r\nFullName: AMIRAH JHADE BARRAMEDA\r\nGender: Male\r\nLastName: BARRAMEDA\r\nMaidenName: \r\nMiddleName: AMPARO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
769997	2025-03-14	10:22:12.9645734	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 12/LOT12\r\nAddress2: GC BERBERABE\r\nBarangay: PALLOCAN EAST\r\nBasicInformationId: 3768\r\nBirthDate: January 28, 1998\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rodezaamparo.1998@gmail.com\r\nExtensionName: \r\nFirstName: RODEZA MAE\r\nFullName: RODEZA MAE A. BARRAMEDA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.56\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BARRAMEDA\r\nMaidenName: \r\nMiddleName: AMPARO\r\nMobileNumber: 09122107745\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 12/LOT12\r\nPermanentAddress2: GC BERBERABE\r\nPermanentBarangay: PALLOCAN EAST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: AMETHYST STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: AMETHYST STREET\r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 12/LOT12\r\nAddress2: GC BERBERABE\r\nBarangay: PALLOCAN EAST\r\nBasicInformationId: 3768\r\nBirthDate: January 28, 1998\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rodezaamparo.1998@gmail.com\r\nExtensionName: \r\nFirstName: RODEZA MAE\r\nFullName: RODEZA MAE A. BARRAMEDA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 03, 2019\r\nGovernmentIdNumber: 1697719\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: \r\nHDMF: 1212-3152-9788\r\nHeight: 1.56\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BARRAMEDA\r\nMaidenName: \r\nMiddleName: AMPARO\r\nMobileNumber: 09122107745\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 12/LOT12\r\nPermanentAddress2: GC BERBERABE\r\nPermanentBarangay: PALLOCAN EAST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: AMETHYST STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-250190668-0\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 34-7776914-6\r\nStreetName: AMETHYST STREET\r\nTIN: 656-739-263-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769998	2025-03-14	10:22:51.3749638	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 12/LOT12\r\nAddress2: GC BERBERABE\r\nBarangay: PALLOCAN EAST\r\nBasicInformationId: 3768\r\nBirthDate: January 28, 1998\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rodezaamparo.1998@gmail.com\r\nExtensionName: \r\nFirstName: RODEZA MAE\r\nFullName: RODEZA MAE A. BARRAMEDA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 03, 2019\r\nGovernmentIdNumber: 1697719\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: \r\nHDMF: 1212-3152-9788\r\nHeight: 1.56\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BARRAMEDA\r\nMaidenName: \r\nMiddleName: AMPARO\r\nMobileNumber: 09122107745\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 12/LOT12\r\nPermanentAddress2: GC BERBERABE\r\nPermanentBarangay: PALLOCAN EAST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: AMETHYST STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-250190668-0\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 34-7776914-6\r\nStreetName: AMETHYST STREET\r\nTIN: 656-739-263-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 12/LOT12\r\nAddress2: GC BERBERABE\r\nBarangay: PALLOCAN EAST\r\nBasicInformationId: 3768\r\nBirthDate: January 28, 1998\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rodezaamparo.1998@gmail.com\r\nExtensionName: \r\nFirstName: RODEZA MHAE\r\nFullName: RODEZA MHAE A. BARRAMEDA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 03, 2019\r\nGovernmentIdNumber: 1697719\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02006523215\r\nHDMF: 1212-3152-9788\r\nHeight: 1.56\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BARRAMEDA\r\nMaidenName: \r\nMiddleName: AMPARO\r\nMobileNumber: 09122107745\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 12/LOT12\r\nPermanentAddress2: GC BERBERABE\r\nPermanentBarangay: PALLOCAN EAST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: AMETHYST STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-250190668-0\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 34-7776914-6\r\nStreetName: AMETHYST STREET\r\nTIN: 656-739-263-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
769999	2025-03-14	10:24:03.7410340	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3768\r\nDateOfExamination: September 30, 2018\r\nDateOfRelease: January 28, 2028\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 30, 2018\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1697719\r\nPlaceOfExamination: LUCENA CITY, QUEZON PROVINCE\r\nRating: 77.80\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
770003	2025-03-14	10:26:32.4743539	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3768\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 07, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,024.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
770004	2025-03-14	10:26:32.4862687	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3768\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 21, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: December 19, 2024\r\n	admin	Experiences	1
770005	2025-03-14	10:26:32.4912521	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3768\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 21, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: October 03, 2024\r\n	admin	Experiences	1
770006	2025-03-14	10:26:32.4992255	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3768\r\nCompanyInstitution: EURIEL LEARNING CENTER\r\nExperienceId: 0\r\nFromDate: July 23, 2018\r\nIsGovernmentService: False\r\nMonthlySalary: 7,000.00\r\nPositionHeld: TUTOR/TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: May 05, 2024\r\n	admin	Experiences	1
770008	2025-03-14	10:38:01.1049006	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3767\r\nDateOfExamination: March 31, 2012\r\nDateOfRelease: August 27, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: March 31, 2012\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1134868\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 77.2\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
770009	2025-03-14	10:38:01.1101323	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3767\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,733.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: March 14, 2025\r\n	admin	Experiences	1
770010	2025-03-14	10:38:01.1143156	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3767\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: December 15, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
770011	2025-03-14	10:38:01.1195381	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3767\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 14, 2024\r\n	admin	Experiences	1
770012	2025-03-14	10:38:01.1237297	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3767\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
770013	2025-03-14	10:38:01.1279064	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3767\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,798.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
770014	2025-03-14	10:38:01.1319243	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3767\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: September 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 28,276.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
770015	2025-03-14	10:38:01.1369371	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3767\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 24,161.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: August 31, 2021\r\n	admin	Experiences	1
770016	2025-03-14	10:38:01.1409432	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3767\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,600.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
770017	2025-03-14	10:38:01.1459512	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3767\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 13, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,204.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: \r\nToDate: December 31, 2019\r\n	admin	Experiences	1
770018	2025-03-14	10:38:01.1503030	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BUKAL\r\nBasicInformationId: 3767\r\nBirthDate: August 27, 1990\r\nBirthPlace: BUKAL, BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: romabel.villareal@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROMABEL\r\nFullName: ROMABEL V. VIBAL\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.43\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: VIBAL\r\nMaidenName: \r\nMiddleName: VILLAREAL\r\nMobileNumber: 09772063255\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BUKAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 54\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BUKAL\r\nBasicInformationId: 3767\r\nBirthDate: August 27, 1990\r\nBirthPlace: BUKAL, BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: romabel.villareal@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROMABEL\r\nFullName: ROMABEL V. VIBAL\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.43\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: VIBAL\r\nMaidenName: \r\nMiddleName: VILLAREAL\r\nMobileNumber: 09772063255\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BUKAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 54\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770019	2025-03-14	10:38:01.1553113	<Undetected>	Update	BasicInformationId: 3767\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09273410974\r\nEmployeeRelativeId: 3887\r\nExtensionName: \r\nFirstName: RICARDO\r\nFullName: RICARDO ABABA VIBAL\r\nGender: Male\r\nLastName: VIBAL\r\nMaidenName: \r\nMiddleName: ABABA\r\nOccupation: PACKER\r\nRelationship: Husband\r\n	BasicInformationId: 3767\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09273410974\r\nEmployeeRelativeId: 3887\r\nExtensionName: \r\nFirstName: RICARDO\r\nFullName: RICARDO VIBAL\r\nGender: Male\r\nLastName: VIBAL\r\nMaidenName: \r\nMiddleName: ABABA\r\nOccupation: PACKER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
770020	2025-03-14	10:38:01.1593262	<Undetected>	Update	BasicInformationId: 3767\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3888\r\nExtensionName: \r\nFirstName: ROGELIO\r\nFullName: ROGELIO MANGHINANG VILLAREAL\r\nGender: Male\r\nLastName: VILLAREAL\r\nMaidenName: \r\nMiddleName: MANGHINANG\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3767\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3888\r\nExtensionName: \r\nFirstName: ROGELIO\r\nFullName: ROGELIO VILLAREAL\r\nGender: Male\r\nLastName: VILLAREAL\r\nMaidenName: \r\nMiddleName: MANGHINANG\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770021	2025-03-14	10:38:01.1643354	<Undetected>	Update	BasicInformationId: 3767\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3889\r\nExtensionName: \r\nFirstName: ROSITA\r\nFullName: ROSITA COMETA ANTE\r\nGender: Female\r\nLastName: ANTE\r\nMaidenName: \r\nMiddleName: COMETA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3767\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3889\r\nExtensionName: \r\nFirstName: ROSITA\r\nFullName: ROSITA ANTE\r\nGender: Female\r\nLastName: ANTE\r\nMaidenName: \r\nMiddleName: COMETA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
770022	2025-03-14	10:38:01.1693436	<Undetected>	Update	BasicInformationId: 3767\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3564\r\n	BasicInformationId: 3767\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3564\r\n	admin	Questionnaires	1
770023	2025-03-14	10:38:21.3188275	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DEPARTMENT OF EDUCATION INFORMATION AND COMMUNICATION TECHNOLOGY INITIATIVES FOR THE NEW NORMAL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770024	2025-03-14	10:39:50.2423698	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: LEARNING REFRAMED PART 1: BEYOND CLASSROOM: THE HOME AS A PLACE WHERE WE FIRST LEARN\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770028	2025-03-14	10:44:29.2791982	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3768\r\nEmployeeTrainingId: 0\r\nFromDate: July 17, 2020\r\nHours: 2\r\nNatureOfParticipation: \r\nSponsoringAgency: TECH O'CLOCK BYTE SIZED SERIES\r\nStatus: \r\nToDate: July 17, 2020\r\nTrainingId: 16485\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770029	2025-03-14	10:44:29.2841815	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3768\r\nEmployeeTrainingId: 0\r\nFromDate: February 07, 2020\r\nHours: 2\r\nNatureOfParticipation: \r\nSponsoringAgency: RESOURCE FOR EDUCATORS AND ACADEMIC PROFESSIONALS\r\nStatus: \r\nToDate: February 07, 2020\r\nTrainingId: 16486\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770030	2025-03-14	10:44:29.2891649	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3768\r\nEmployeeTrainingId: 0\r\nFromDate: June 19, 2020\r\nHours: 2\r\nNatureOfParticipation: \r\nSponsoringAgency: RESOURCE FOR EDUCATORS AND ACADEMIC PROFESSIONALS\r\nStatus: \r\nToDate: June 19, 2020\r\nTrainingId: 16487\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770031	2025-03-14	10:44:29.2931515	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3768\r\nEmployeeTrainingId: 0\r\nFromDate: June 19, 2020\r\nHours: 2\r\nNatureOfParticipation: \r\nSponsoringAgency: RESOURCE FOR EDUCATORS AND ACADEMIC PROFESSIONALS\r\nStatus: \r\nToDate: June 19, 2020\r\nTrainingId: 16489\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770032	2025-03-14	10:44:29.2981348	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3768\r\nEmployeeTrainingId: 0\r\nFromDate: June 17, 2020\r\nHours: 1\r\nNatureOfParticipation: \r\nSponsoringAgency: ABIVA PUBLISHING HOUSE, INCORPORATION\r\nStatus: \r\nToDate: June 17, 2020\r\nTrainingId: 16018\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770033	2025-03-14	10:44:57.1194270	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3768\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
770034	2025-03-14	10:44:57.1234136	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3768\r\nSkillId: 0\r\nSkillName: GOOD COMMUNICATION SKILLS\r\n	admin	Skills	1
770035	2025-03-14	10:44:57.1283971	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3768\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
770036	2025-03-14	10:46:37.6601591	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3768\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09082668908\r\nExtensionName: \r\nFirstName: VICTOR\r\nLastName: CLAVERIA\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770037	2025-03-14	10:46:37.6681327	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3768\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09171609774\r\nExtensionName: \r\nFirstName: MARITES\r\nLastName: TARCELO\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770038	2025-03-14	10:46:37.6731162	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3768\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09062544334\r\nExtensionName: \r\nFirstName: JOCELYN\r\nLastName: ADOYO\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770041	2025-03-14	10:51:00.0533641	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3766\r\nEmployeeTrainingId: 0\r\nFromDate: May 15, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: May 17, 2023\r\nTrainingId: 15046\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770042	2025-03-14	10:51:00.0583647	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3766\r\nEmployeeTrainingId: 0\r\nFromDate: June 02, 2021\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION CENTRAL OFFICE\r\nStatus: \r\nToDate: June 05, 2021\r\nTrainingId: 16488\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770043	2025-03-14	10:51:00.0623643	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3766\r\nEmployeeTrainingId: 0\r\nFromDate: May 19, 2021\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A CALABARZON\r\nStatus: \r\nToDate: May 21, 2021\r\nTrainingId: 15393\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770044	2025-03-14	10:51:00.0683641	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3766\r\nEmployeeTrainingId: 0\r\nFromDate: February 03, 2020\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: BUREAU OF LEARNERS SUPPORT SERVICES-YOUTH FORMATION DIVISION\r\nStatus: \r\nToDate: February 07, 2020\r\nTrainingId: 16490\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770045	2025-03-14	10:52:33.9177170	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3766\r\nSkillId: 0\r\nSkillName: MS OFFICE APPLIUCATIONS \r\n	admin	Skills	1
770046	2025-03-14	10:52:33.9227169	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3766\r\nSkillId: 0\r\nSkillName: DRIVING\r\n	admin	Skills	1
770047	2025-03-14	10:52:33.9332296	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3766\r\nOrganizationId: 0\r\nOrganizationName: DEPARTMENT OF EDUCATION-NATIONAL EMPLOYEES UNION\r\n	admin	Organizations	1
770048	2025-03-14	10:57:11.6603549	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3766\r\nCharacterReferenceId: 0\r\nCompanyAddress: TALUMPOK WEST BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 7022094\r\nExtensionName: \r\nFirstName: DR. SACORO\r\nLastName: COMIA\r\nMiddleName: R.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770049	2025-03-14	10:57:11.6673547	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3766\r\nCharacterReferenceId: 0\r\nCompanyAddress: ALANGILAN BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09959959454\r\nExtensionName: \r\nFirstName: AMELIA\r\nLastName: BAY\r\nMiddleName: B.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770050	2025-03-14	10:57:11.6723548	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3766\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN WEST BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 7848020\r\nExtensionName: \r\nFirstName: RUEL \r\nLastName: DE CASTRO\r\nMiddleName: B. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770051	2025-03-14	10:57:18.6770064	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3767\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 12, 2019\r\n	admin	Experiences	1
770052	2025-03-14	10:57:18.6830068	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3767\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / KATANDALA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
770053	2025-03-14	10:57:18.6870063	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3767\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / KATANDALA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,620.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
770054	2025-03-14	10:57:18.6920344	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3767\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / KATANDALA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 13, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: \r\nToDate: December 31, 2016\r\n	admin	Experiences	1
770055	2025-03-14	10:57:18.6970638	<Undetected>	Update	BasicInformationId: 3767\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 12341\r\nFromDate: June 13, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,204.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: \r\nToDate: December 31, 2019\r\n	BasicInformationId: 3767\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 12341\r\nFromDate: June 13, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,204.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
770056	2025-03-14	11:00:40.9428205	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3766\r\nBirthDate: March 09, 1986\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITTY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MARYGRACE.ADAO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: MARY GRACE\r\nFullName: MARY GRACE B. ADAO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ADAO\r\nMaidenName: \r\nMiddleName: BECHAYDA\r\nMobileNumber: 09985486360\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITTY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO MANGGAHAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO MANGGAHAN\r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3766\r\nBirthDate: March 09, 1986\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITTY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MARYGRACE.ADAO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: MARY GRACE\r\nFullName: MARY GRACE B. ADAO\r\nGender: Female\r\nGovernmentIdIssuedDate: November 25, 2015\r\nGovernmentIdNumber: 0004994\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02005120805\r\nHDMF: 1490-0038-4369\r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ADAO\r\nMaidenName: \r\nMiddleName: BECHAYDA\r\nMobileNumber: 09985486360\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITTY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO MANGGAHAN\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025132766-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1434149-4\r\nStreetName: SITIO MANGGAHAN\r\nTIN: 253-006-873-0000\r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770057	2025-03-14	11:01:46.4896309	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3766\r\nBirthDate: March 09, 1986\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITTY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MARYGRACE.ADAO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: MARY GRACE\r\nFullName: MARY GRACE B. ADAO\r\nGender: Female\r\nGovernmentIdIssuedDate: November 25, 2015\r\nGovernmentIdNumber: 0004994\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02005120805\r\nHDMF: 1490-0038-4369\r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ADAO\r\nMaidenName: \r\nMiddleName: BECHAYDA\r\nMobileNumber: 09985486360\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITTY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO MANGGAHAN\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025132766-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1434149-4\r\nStreetName: SITIO MANGGAHAN\r\nTIN: 253-006-873-0000\r\nWeight: 55\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3766\r\nBirthDate: March 09, 1986\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITTY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MARYGRACE.ADAO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: MARY GRACE\r\nFullName: MARY GRACE B. ADAO\r\nGender: Female\r\nGovernmentIdIssuedDate: November 25, 2015\r\nGovernmentIdNumber: 0004994\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02005120805\r\nHDMF: 1490-0038-4369\r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ADAO\r\nMaidenName: \r\nMiddleName: BECHAYDA\r\nMobileNumber: 09985486360\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITTY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO MANGGAHAN\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025132766-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: 04-1434149-4\r\nStreetName: SITIO MANGGAHAN\r\nTIN: 253-006-873-0000\r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770058	2025-03-14	11:05:29.7872012	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3767\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 16, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: September 11, 2013\r\n	admin	Experiences	1
770059	2025-03-14	11:05:29.7944607	<Undetected>	Update	BasicInformationId: 3767\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / KATANDALA ELEMENTARY SCHOOL\r\nExperienceId: 12345\r\nFromDate: June 13, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: \r\nToDate: December 31, 2016\r\n	BasicInformationId: 3767\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / KATANDALA ELEMENTARY SCHOOL\r\nExperienceId: 12345\r\nFromDate: June 13, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
770060	2025-03-14	11:06:20.1650112	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 0\r\nBirthDate: August 20, 1990\r\nBirthPlace: BAOGO INABANGA BOHOL\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MARISSA.ALANO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: MARISSA\r\nFullName: MARISSA C. ALANO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 162\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALANO\r\nMaidenName: \r\nMiddleName: CEPEDOSA\r\nMobileNumber: 09097964658\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LOOBAN 2\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: LOOBAN 2\r\nTIN: \r\nWeight: 53\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770061	2025-03-14	11:06:20.1760139	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3769\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
770062	2025-03-14	11:06:50.6065746	<Undetected>	Update	BasicInformationId: 3769\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3566\r\n	BasicInformationId: 3769\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3566\r\n	admin	Questionnaires	1
770063	2025-03-14	11:07:33.1638325	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2024 DIVISION LEARNING RESOURCE EXPO (DLRE) CUM LAUNCHING OF PROJECT LEARNING RESOURCE AND LIBRARY (LR-LIB) EXPRESS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770065	2025-03-14	11:10:33.2755952	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3769\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROWEL\r\nFullName: ROWEL PAROCHA ALANO\r\nGender: Male\r\nLastName: ALANO\r\nMaidenName: \r\nMiddleName: PAROCHA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
770066	2025-03-14	11:10:33.2806796	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3769\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SIXTO\r\nFullName: SIXTO ANASCO CEPEDOSA\r\nGender: Male\r\nLastName: CEPEDOSA\r\nMaidenName: \r\nMiddleName: ANASCO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770067	2025-03-14	11:10:33.2856874	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3769\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LOLITA\r\nFullName: LOLITA ONTONG CENIZA\r\nGender: Male\r\nLastName: CENIZA\r\nMaidenName: \r\nMiddleName: ONTONG\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
770068	2025-03-14	11:10:33.2946876	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3769\r\nBirthDate: October 24, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RENZ MATTHEW\r\nFullName: RENZ MATTHEW C. ALANO\r\nGender: Male\r\nLastName: ALANO\r\nMaidenName: \r\nMiddleName: C.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770069	2025-03-14	11:10:33.2996894	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3769\r\nBirthDate: June 24, 2022\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RITTZ MARTIN\r\nFullName: RITTZ MARTIN C. ALANO\r\nGender: Male\r\nLastName: ALANO\r\nMaidenName: \r\nMiddleName: C.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770070	2025-03-14	11:10:33.3056885	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3769\r\nBirthDate: August 20, 1990\r\nBirthPlace: BAOGO INABANGA BOHOL\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MARISSA.ALANO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: MARISSA\r\nFullName: MARISSA C. ALANO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 162\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALANO\r\nMaidenName: \r\nMiddleName: CEPEDOSA\r\nMobileNumber: 09097964658\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LOOBAN 2\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: LOOBAN 2\r\nTIN: \r\nWeight: 53\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3769\r\nBirthDate: August 20, 1990\r\nBirthPlace: BAOGO INABANGA BOHOL\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MARISSA.ALANO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: MARISSA\r\nFullName: MARISSA C. ALANO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 162\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALANO\r\nMaidenName: \r\nMiddleName: CEPEDOSA\r\nMobileNumber: 09097964658\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LOOBAN 2\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LOOBAN 2\r\nTIN: \r\nWeight: 53\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770076	2025-03-14	11:15:35.8764636	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3769\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1997\r\nDateTo: 2003\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: MALITAM ELEMENTRAY SCHOOL \r\nYearGraduated: 2003\r\n	admin	EducationalBackgrounds	1
770077	2025-03-14	11:15:35.8874619	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3769\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL \r\nYearGraduated: 2007\r\n	admin	EducationalBackgrounds	1
770078	2025-03-14	11:15:35.8924622	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3769\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 2007\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: COLEGIO NG LUNGSOD NG BATANGAS \r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
770079	2025-03-14	11:15:35.8994618	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3769\r\nCourse: \r\nCourseId: 1348\r\nCourseOrMajor: \r\nDateFrom: 2012\r\nDateTo: 2017\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: EDUCATIONAL ADMINISTRATION\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2017\r\n	admin	EducationalBackgrounds	1
770080	2025-03-14	11:15:35.9034619	<Undetected>	Update	BasicInformationId: 3769\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3892\r\nExtensionName: \r\nFirstName: ROWEL\r\nFullName: ROWEL PAROCHA ALANO\r\nGender: Male\r\nLastName: ALANO\r\nMaidenName: \r\nMiddleName: PAROCHA\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3769\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3892\r\nExtensionName: \r\nFirstName: ROWEL\r\nFullName: ROWEL ALANO\r\nGender: Male\r\nLastName: ALANO\r\nMaidenName: \r\nMiddleName: PAROCHA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
770071	2025-03-14	11:14:04.3457314	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3767\r\nEmployeeTrainingId: 0\r\nFromDate: December 17, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: December 17, 2024\r\nTrainingId: 16491\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770072	2025-03-14	11:14:04.3507478	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3767\r\nEmployeeTrainingId: 0\r\nFromDate: November 27, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16456\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770073	2025-03-14	11:14:04.3557656	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3767\r\nEmployeeTrainingId: 0\r\nFromDate: August 09, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 09, 2024\r\nTrainingId: 16492\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770074	2025-03-14	11:14:04.3607813	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3767\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF ANTIPOLO CITY\r\nStatus: \r\nToDate: January 26, 2024\r\nTrainingId: 15579\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770075	2025-03-14	11:14:04.3648629	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3767\r\nEmployeeTrainingId: 0\r\nFromDate: November 17, 2023\r\nHours: 4\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION CENTRAL OFFICE\r\nStatus: \r\nToDate: November 17, 2023\r\nTrainingId: 15303\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770085	2025-03-14	11:15:40.4699268	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3767\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
770086	2025-03-14	11:15:40.4749607	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3767\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
770087	2025-03-14	11:15:40.4789603	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3767\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
770088	2025-03-14	11:15:40.4884668	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3767\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY PUBLIC SCHOOL TEACHERS AND EMPLOYEES\r\n	admin	Organizations	1
770089	2025-03-14	11:15:40.4934665	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3767\r\nOrganizationId: 0\r\nOrganizationName: BUCAL MULTI-PURPOSE COOPERATIVE INCORPORATED\r\n	admin	Organizations	1
770090	2025-03-14	11:19:17.7080665	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3767\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN JOSE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09165227488\r\nExtensionName: \r\nFirstName: BEN\r\nLastName: AGUILA\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770091	2025-03-14	11:19:17.7152104	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3767\r\nCharacterReferenceId: 0\r\nCompanyAddress: BUCAL BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09913533013\r\nExtensionName: \r\nFirstName: AQUILINO\r\nLastName: MAGNAYE\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770092	2025-03-14	11:19:17.7202354	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3767\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAMPAGA BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09081891192\r\nExtensionName: \r\nFirstName: KRISTINA \r\nLastName: GUTIERREZ\r\nMiddleName: C.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770093	2025-03-14	11:19:17.7350016	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BUKAL\r\nBasicInformationId: 3767\r\nBirthDate: August 27, 1990\r\nBirthPlace: BUKAL, BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: romabel.villareal@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROMABEL\r\nFullName: ROMABEL V. VIBAL\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.43\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: VIBAL\r\nMaidenName: \r\nMiddleName: VILLAREAL\r\nMobileNumber: 09772063255\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BUKAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 54\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BUKAL\r\nBasicInformationId: 3767\r\nBirthDate: August 27, 1990\r\nBirthPlace: BUKAL, BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: romabel.villareal@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROMABEL\r\nFullName: ROMABEL V. VIBAL\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: 1134868\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC LICENSE\r\nGSIS: 02004488918\r\nHDMF: 1210-4417-1454\r\nHeight: 1.43\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: VIBAL\r\nMaidenName: \r\nMiddleName: VILLAREAL\r\nMobileNumber: 09772063255\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BUKAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050333922-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 439-917-512-0000\r\nWeight: 54\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770081	2025-03-14	11:15:35.9124619	<Undetected>	Update	BasicInformationId: 3769\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3893\r\nExtensionName: \r\nFirstName: SIXTO\r\nFullName: SIXTO ANASCO CEPEDOSA\r\nGender: Male\r\nLastName: CEPEDOSA\r\nMaidenName: \r\nMiddleName: ANASCO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3769\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3893\r\nExtensionName: \r\nFirstName: SIXTO\r\nFullName: SIXTO CEPEDOSA\r\nGender: Male\r\nLastName: CEPEDOSA\r\nMaidenName: \r\nMiddleName: ANASCO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770082	2025-03-14	11:15:35.9164618	<Undetected>	Update	BasicInformationId: 3769\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3894\r\nExtensionName: \r\nFirstName: LOLITA\r\nFullName: LOLITA ONTONG CENIZA\r\nGender: Male\r\nLastName: CENIZA\r\nMaidenName: \r\nMiddleName: ONTONG\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3769\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3894\r\nExtensionName: \r\nFirstName: LOLITA\r\nFullName: LOLITA CENIZA\r\nGender: Male\r\nLastName: CENIZA\r\nMaidenName: \r\nMiddleName: ONTONG\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
770083	2025-03-14	11:15:35.9214617	<Undetected>	Update	BasicInformationId: 3769\r\nBirthDate: October 24, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3895\r\nExtensionName: \r\nFirstName: RENZ MATTHEW\r\nFullName: RENZ MATTHEW C. ALANO\r\nGender: Male\r\nLastName: ALANO\r\nMaidenName: \r\nMiddleName: C.\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3769\r\nBirthDate: October 24, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3895\r\nExtensionName: \r\nFirstName: RENZ MATTHEW\r\nFullName: RENZ MATTHEW ALANO\r\nGender: Male\r\nLastName: ALANO\r\nMaidenName: \r\nMiddleName: C.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770084	2025-03-14	11:15:35.9264619	<Undetected>	Update	BasicInformationId: 3769\r\nBirthDate: June 24, 2022\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3896\r\nExtensionName: \r\nFirstName: RITTZ MARTIN\r\nFullName: RITTZ MARTIN C. ALANO\r\nGender: Male\r\nLastName: ALANO\r\nMaidenName: \r\nMiddleName: C.\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3769\r\nBirthDate: June 24, 2022\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3896\r\nExtensionName: \r\nFirstName: RITTZ MARTIN\r\nFullName: RITTZ MARTIN ALANO\r\nGender: Male\r\nLastName: ALANO\r\nMaidenName: \r\nMiddleName: C.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770094	2025-03-14	11:21:07.5385948	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3769\r\nDateOfExamination: September 01, 2011\r\nDateOfRelease: August 20, 2028\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 01, 2011\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1123669\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 75.40\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
770095	2025-03-14	11:23:37.2059910	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3769\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: June 22, 2012\r\nIsGovernmentService: False\r\nMonthlySalary: 0.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: March 14, 2025\r\n	admin	Experiences	1
770096	2025-03-14	11:38:45.8958053	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3769\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 33,183.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: January 01, 2025\r\n	admin	Experiences	1
770097	2025-03-14	11:38:45.9058554	<Undetected>	Update	BasicInformationId: 3769\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 12347\r\nFromDate: June 22, 2012\r\nIsGovernmentService: False\r\nMonthlySalary: 0.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Casual\r\nToDate: March 14, 2025\r\n	BasicInformationId: 3769\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 12347\r\nFromDate: June 22, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 20,437.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 01, 2018\r\n	admin	Experiences	1
770098	2025-03-14	11:45:19.0249124	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION ROLL OUT ON HIGHER ORDER THINKING SKILLS PROFESSIIONAL LEARNING PACKAGES HOT PLP'S FOR MATHEMATICS, ENGLISH AND SCIENCE TEACHER\r\nTrainingId: 0\r\nType: TECHNICAL \r\n	admin	Trainings	1
770099	2025-03-14	11:46:55.5140972	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3769\r\nEmployeeTrainingId: 0\r\nFromDate: August 30, 2024\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: August 31, 2024\r\nTrainingId: 16385\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770100	2025-03-14	11:46:55.5240978	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3769\r\nEmployeeTrainingId: 0\r\nFromDate: August 30, 2024\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: August 31, 2024\r\nTrainingId: 16493\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770110	2025-03-14	14:14:26.3183803	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3772\r\nCourse: \r\nCourseId: 1318\r\nCourseOrMajor: \r\nDateFrom: 1997\r\nDateTo: 2001\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2001\r\n	admin	EducationalBackgrounds	1
770101	2025-03-14	13:30:52.9372876	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIPONPON\r\nBasicInformationId: 0\r\nBirthDate: June 22, 1981\r\nBirthPlace: LIPONPON, ISLA VERDE\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: myla.gonzales002@deped.gov.ph\r\nExtensionName: \r\nFirstName: MYLA\r\nFullName: MYLA B. GONZALES\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GONZALES\r\nMaidenName: \r\nMiddleName: BAJA\r\nMobileNumber: 09605572141\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIPONPON\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 56\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770102	2025-03-14	13:30:53.0780952	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3770\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
770103	2025-03-14	13:32:44.4242071	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANTONIO, ISLA VERDE\r\nBasicInformationId: 0\r\nBirthDate: September 24, 1985\r\nBirthPlace: SAN ANTONIO, ISLA VERDE, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: analyn.villanueva004@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANALYN\r\nFullName: ANALYN O. VILLANUEVA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: VILLANUEVA\r\nMaidenName: \r\nMiddleName: OLIT\r\nMobileNumber: 09684979005\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANTONIO, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 46\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770104	2025-03-14	13:32:44.4328950	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3771\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
770105	2025-03-14	13:55:51.5061739	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: NC II COOKERY\r\nLevel: Vocational\r\n	admin	Courses	1
770106	2025-03-14	14:14:26.3009882	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIPONPON, ISLA VERDE\r\nBasicInformationId: 0\r\nBirthDate: December 01, 1981\r\nBirthPlace: LIPONPON ISLA VERDE, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: charill.dimasacat001@deped.gov.ph\r\nExtensionName: \r\nFirstName: CHARILL\r\nFullName: CHARILL E. DIMASACAT\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DIMASACAT\r\nMaidenName: \r\nMiddleName: EBORA\r\nMobileNumber: 09396237887\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIPONPON, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770107	2025-03-14	14:14:26.3183803	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3772\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1987\r\nDateTo: 1993\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: LIPONPON ELEMENTARY SCHOO;\r\nYearGraduated: 1993\r\n	admin	EducationalBackgrounds	1
770108	2025-03-14	14:14:26.3183803	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3772\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1993\r\nDateTo: 1997\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGUSTIN NATIONAL HIGH SCHOOL\r\nYearGraduated: 1997\r\n	admin	EducationalBackgrounds	1
770109	2025-03-14	14:14:26.3183803	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3772\r\nCourse: \r\nCourseId: 1384\r\nCourseOrMajor: \r\nDateFrom: 2015\r\nDateTo: 2015\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Vocational Graduate\r\nMajor: \r\nSchoolorUniversity: CRISTOREY INSTITUTE AND TECHNOLOGY\r\nYearGraduated: 2015\r\n	admin	EducationalBackgrounds	1
770111	2025-03-14	14:14:26.3193771	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3772\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2023\r\nDateTo: 2025\r\nEducationalAttainment: 39 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: PACIFIC INTERCONTINENTAL COLLEGE (PIC)\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
770112	2025-03-14	14:14:26.3193771	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3772\r\nBirthDate: January 01, 0001\r\nCivilStatus: Seperated\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RUEL\r\nFullName: RUEL DUDAS DIMASACAT\r\nGender: Male\r\nLastName: DIMASACAT\r\nMaidenName: \r\nMiddleName: DUDAS\r\nOccupation: BARANGAY COUNCILOR\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
770113	2025-03-14	14:14:26.3193771	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3772\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FLORENTINO\r\nFullName: FLORENTINO DUTADO EBORA\r\nGender: Male\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: DUTADO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770114	2025-03-14	14:14:26.3193771	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3772\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LIWAYWAY\r\nFullName: LIWAYWAY BACULO ESCAREZ\r\nGender: Female\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: BACULO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
770115	2025-03-14	14:14:26.3193771	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3772\r\nDateOfExamination: August 26, 2001\r\nDateOfRelease: October 26, 2001\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 26, 2001\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 709083\r\nPlaceOfExamination: RAMON MAGSAYSAY HIGH SCHOOL\r\nRating: 75\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
770116	2025-03-14	14:14:26.3193771	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3772\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 31,489.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-7\r\nStatus: Permanent\r\nToDate: March 14, 2025\r\n	admin	Experiences	1
770117	2025-03-14	14:14:26.3193771	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3772\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 29,974.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-7\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
770118	2025-03-14	14:14:26.3233639	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3772\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 28,462.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-7\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
770119	2025-03-14	14:14:26.3233639	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3772\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH\r\nExperienceId: 0\r\nFromDate: September 21, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 27,205.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-7\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
770120	2025-03-14	14:14:26.3233639	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3772\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 26,901.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-6\r\nStatus: Permanent\r\nToDate: September 20, 2022\r\n	admin	Experiences	1
770121	2025-03-14	14:14:26.3233639	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3772\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 25,339.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-6\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
770147	2025-03-14	14:26:42.9079484	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3772\r\nEmployeeTrainingId: 0\r\nFromDate: August 30, 2021\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency:  NEAP REGION IV-A CALABARZON\r\nStatus: \r\nToDate: September 03, 2021\r\nTrainingId: 16409\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770122	2025-03-14	14:14:26.3233639	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3772\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 23,778.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-6\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
770123	2025-03-14	14:14:26.3243603	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3772\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH\r\nExperienceId: 0\r\nFromDate: September 21, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 22,216.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-6\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
770124	2025-03-14	14:14:26.3243603	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3772\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,915.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: September 20, 2019\r\n	admin	Experiences	1
770125	2025-03-14	14:14:26.3243603	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3772\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 21,231.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
770126	2025-03-14	14:14:26.3243603	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3772\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 20,567.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
770127	2025-03-14	14:14:26.3243603	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3772\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH\r\nExperienceId: 0\r\nFromDate: September 21, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,925.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
770128	2025-03-14	14:14:26.3243603	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3772\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,709.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: September 20, 2016\r\n	admin	Experiences	1
770129	2025-03-14	14:14:26.3243603	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3772\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH\r\nExperienceId: 0\r\nFromDate: August 20, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 19,111.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
770130	2025-03-14	14:14:26.3253571	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3772\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH\r\nExperienceId: 0\r\nFromDate: January 06, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 18,922.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: August 19, 2013\r\n	admin	Experiences	1
770131	2025-03-14	14:14:26.3253571	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3772\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH\r\nExperienceId: 0\r\nFromDate: January 06, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 17,318.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
770132	2025-03-14	14:14:26.3253571	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3772\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH\r\nExperienceId: 0\r\nFromDate: September 21, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 15,900.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
770163	2025-03-14	14:37:19.7751885	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SEMINAR WORKSHOP ON CAPABILITY BUILDING FOCUSING ON LEARNERS CENTERED APPROACH FOR EFFECTIVE DELIVERY INSTRUCTION IN ENSCIMA\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770133	2025-03-14	14:14:26.3253571	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3772\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH\r\nExperienceId: 0\r\nFromDate: June 12, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 15,900.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: September 20, 2010\r\n	admin	Experiences	1
770134	2025-03-14	14:14:26.3253571	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3772\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH\r\nExperienceId: 0\r\nFromDate: January 07, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 14,483.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
770135	2025-03-14	14:14:26.3253571	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3772\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH\r\nExperienceId: 0\r\nFromDate: January 07, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,026.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
770136	2025-03-14	14:14:26.3253571	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3772\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH\r\nExperienceId: 0\r\nFromDate: January 07, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,933.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
770137	2025-03-14	14:14:26.3253571	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3772\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH\r\nExperienceId: 0\r\nFromDate: August 20, 2004\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
770138	2025-03-14	14:14:26.3263537	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3772\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
770139	2025-03-14	14:17:36.6444562	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SEMINAR ON EDUCATIONAL INNOVATION AND PEDAGOGIES FOR TEACHERS OF ENGLISH, SCIENCE, MATHEMATICS, FILIPINO, SOCIAL STUDIES, MAPEH, ESP, AND TLE MAJORS 1.0\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770140	2025-03-14	14:20:03.0825600	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: COMPUTER SKILLS DEVELOPMENT TRAINING : IMPROVING CLASSROM LEARNING THRU ICT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770141	2025-03-14	14:22:29.8646391	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REVISITING MAGNA CARTA FOR PUBLIC SCHOOL TEACHERS (R.A.4670) AND ADAPTION OF INTERNATIONAL STANDARDS ON EDUCATIONAL LEADERSHIP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770142	2025-03-14	14:24:14.0575868	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RESKILLING COODE OF PROFESSIONAL ETHICS FOR TEACHERS AND CURRICULUM DEVELOPMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770143	2025-03-14	14:26:42.8850249	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3772\r\nEmployeeTrainingId: 0\r\nFromDate: April 18, 2024\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: CPDCFT TRAINING CENTER\r\nStatus: \r\nToDate: April 19, 2024\r\nTrainingId: 16494\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770144	2025-03-14	14:26:42.8939950	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3772\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2024\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: CPDCFT TRAINING CENTER\r\nStatus: \r\nToDate: March 24, 2024\r\nTrainingId: 16495\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770145	2025-03-14	14:26:42.8979816	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3772\r\nEmployeeTrainingId: 0\r\nFromDate: March 23, 2024\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: CPDCFT TRAINING CENTER\r\nStatus: \r\nToDate: March 24, 2024\r\nTrainingId: 16496\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770146	2025-03-14	14:26:42.9029650	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3772\r\nEmployeeTrainingId: 0\r\nFromDate: March 09, 2024\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: CPDCFT TRAINING CENTER\r\nStatus: \r\nToDate: March 10, 2024\r\nTrainingId: 16497\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770148	2025-03-14	14:26:42.9139283	<Undetected>	Update	BasicInformationId: 3772\r\nBirthDate: January 01, 0001\r\nCivilStatus: Seperated\r\nContactNumber: \r\nEmployeeRelativeId: 3897\r\nExtensionName: \r\nFirstName: RUEL\r\nFullName: RUEL DUDAS DIMASACAT\r\nGender: Male\r\nLastName: DIMASACAT\r\nMaidenName: \r\nMiddleName: DUDAS\r\nOccupation: BARANGAY COUNCILOR\r\nRelationship: Husband\r\n	BasicInformationId: 3772\r\nBirthDate: January 01, 0001\r\nCivilStatus: Seperated\r\nContactNumber: \r\nEmployeeRelativeId: 3897\r\nExtensionName: \r\nFirstName: RUEL\r\nFullName: RUEL DIMASACAT\r\nGender: Male\r\nLastName: DIMASACAT\r\nMaidenName: \r\nMiddleName: DUDAS\r\nOccupation: BARANGAY COUNCILOR\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
770149	2025-03-14	14:26:42.9189116	<Undetected>	Update	BasicInformationId: 3772\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3898\r\nExtensionName: \r\nFirstName: FLORENTINO\r\nFullName: FLORENTINO DUTADO EBORA\r\nGender: Male\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: DUTADO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3772\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3898\r\nExtensionName: \r\nFirstName: FLORENTINO\r\nFullName: FLORENTINO EBORA\r\nGender: Male\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: DUTADO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770150	2025-03-14	14:26:42.9238951	<Undetected>	Update	BasicInformationId: 3772\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3899\r\nExtensionName: \r\nFirstName: LIWAYWAY\r\nFullName: LIWAYWAY BACULO ESCAREZ\r\nGender: Female\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: BACULO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3772\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3899\r\nExtensionName: \r\nFirstName: LIWAYWAY\r\nFullName: LIWAYWAY ESCAREZ\r\nGender: Female\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: BACULO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
770151	2025-03-14	14:26:42.9288784	<Undetected>	Update	BasicInformationId: 3772\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3569\r\n	BasicInformationId: 3772\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3569\r\n	admin	Questionnaires	1
770152	2025-03-14	14:27:51.9681383	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3772\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
770153	2025-03-14	14:27:51.9800987	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3772\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
770154	2025-03-14	14:27:51.9850817	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3772\r\nSkillId: 0\r\nSkillName: OFFICIATING / SPORTS\r\n	admin	Skills	1
770155	2025-03-14	14:27:51.9920583	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3772\r\nSkillId: 0\r\nSkillName: COACHING / SPORTS RAAM / ATHLETICS\r\n	admin	Skills	1
770156	2025-03-14	14:27:51.9970416	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3772\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
770157	2025-03-14	14:27:52.0060118	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3772\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
770158	2025-03-14	14:30:25.3266948	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3772\r\nCharacterReferenceId: 0\r\nCompanyAddress: LIPONPON ISLA VERDE,BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09295745268\r\nExtensionName: \r\nFirstName: ROLAND\r\nLastName: EBORA\r\nMiddleName: C.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770159	2025-03-14	14:30:25.3406480	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3772\r\nCharacterReferenceId: 0\r\nCompanyAddress: BOLBOK, BATANAGS CITY\r\nCompanyName: \r\nContactNumber: 09209680729\r\nExtensionName: \r\nFirstName: DANDY \r\nLastName: EBORA\r\nMiddleName: G.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770160	2025-03-14	14:30:25.3456313	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3772\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09076854205\r\nExtensionName: \r\nFirstName: TEODORICA\r\nLastName: PORCINO\r\nMiddleName: S.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770161	2025-03-14	14:30:50.4763610	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIPONPON, ISLA VERDE\r\nBasicInformationId: 3772\r\nBirthDate: December 01, 1981\r\nBirthPlace: LIPONPON ISLA VERDE, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: charill.dimasacat001@deped.gov.ph\r\nExtensionName: \r\nFirstName: CHARILL\r\nFullName: CHARILL E. DIMASACAT\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DIMASACAT\r\nMaidenName: \r\nMiddleName: EBORA\r\nMobileNumber: 09396237887\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIPONPON, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIPONPON, ISLA VERDE\r\nBasicInformationId: 3772\r\nBirthDate: December 01, 1981\r\nBirthPlace: LIPONPON ISLA VERDE, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: charill.dimasacat001@deped.gov.ph\r\nExtensionName: \r\nFirstName: CHARILL\r\nFullName: CHARILL E. DIMASACAT\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: 709083\r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: PRC\r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DIMASACAT\r\nMaidenName: \r\nMiddleName: EBORA\r\nMobileNumber: 09396237887\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIPONPON, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770170	2025-03-14	14:42:01.3619341	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3769\r\nEmployeeTrainingId: 0\r\nFromDate: August 15, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: August 17, 2023\r\nTrainingId: 16498\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770162	2025-03-14	14:32:21.8677066	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIPONPON, ISLA VERDE\r\nBasicInformationId: 3772\r\nBirthDate: December 01, 1981\r\nBirthPlace: LIPONPON ISLA VERDE, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: charill.dimasacat001@deped.gov.ph\r\nExtensionName: \r\nFirstName: CHARILL\r\nFullName: CHARILL E. DIMASACAT\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: 709083\r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: PRC\r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DIMASACAT\r\nMaidenName: \r\nMiddleName: EBORA\r\nMobileNumber: 09396237887\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIPONPON, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIPONPON, ISLA VERDE\r\nBasicInformationId: 3772\r\nBirthDate: December 01, 1981\r\nBirthPlace: LIPONPON ISLA VERDE, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: charill.dimasacat001@deped.gov.ph\r\nExtensionName: \r\nFirstName: CHARILL\r\nFullName: CHARILL E. DIMASACAT\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: 709083\r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: PRC\r\nGSIS: 81011200389\r\nHDMF: 0401-5295-9806\r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DIMASACAT\r\nMaidenName: \r\nMiddleName: EBORA\r\nMobileNumber: 09396237887\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIPONPON, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000081985-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 934-873-660-0000\r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770164	2025-03-14	14:41:45.4008659	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIPONPON ISLA VERDE\r\nBasicInformationId: 0\r\nBirthDate: August 22, 1987\r\nBirthPlace: LIPONPON ISLA VERDE, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ilyn.dutado@deped .gov.ph\r\nExtensionName: \r\nFirstName: ILYN\r\nFullName: ILYN D. AMUL\r\nGender: Female\r\nGovernmentIdIssuedDate: July 23, 2021\r\nGovernmentIdNumber: 1046209\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PPRC ID\r\nGSIS: 02004190803\r\nHDMF: 1210-8787-4278\r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: AMUL\r\nMaidenName: \r\nMiddleName: DUTADO\r\nMobileNumber: 09605572145\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIPONPON ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-950228907-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-2120864-3\r\nStreetName: \r\nTIN: 276-965-600-0000\r\nWeight: 54\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770165	2025-03-14	14:41:45.4105035	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3773\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROMEL\r\nFullName: ROMEL CUETO AMUL\r\nGender: Male\r\nLastName: AMUL\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770166	2025-03-14	14:41:45.4105035	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3773\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SERAPIO\r\nFullName: SERAPIO EVANGELISTA DUTADO\r\nGender: Male\r\nLastName: DUTADO\r\nMaidenName: \r\nMiddleName: EVANGELISTA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770167	2025-03-14	14:41:45.4105035	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3773\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ZANAIDA\r\nFullName: ZANAIDA RAYOS CUETO\r\nGender: Female\r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: RAYOS\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
770168	2025-03-14	14:41:45.4105035	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3773\r\nBirthDate: October 08, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RHIANNA IVONNE\r\nFullName: RHIANNA IVONNE DUTADO AMUL\r\nGender: Male\r\nLastName: AMUL\r\nMaidenName: \r\nMiddleName: DUTADO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770169	2025-03-14	14:41:45.4105035	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3773\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
770173	2025-03-14	14:46:18.5160816	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 10 / LOT 8\r\nAddress2: LE CLERMONT SUBDIVISION\r\nBarangay: BALIMBING\r\nBasicInformationId: 0\r\nBirthDate: November 14, 1985\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: SAN PACUAL\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rommel.rosales@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROMMEL\r\nFullName: ROMMEL A. ROSALES\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.69\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ROSALES\r\nMaidenName: \r\nMiddleName: ADARLO\r\nMobileNumber: 09219882493\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 10 / LOT 8\r\nPermanentAddress2: LE CLERMONT SUBDIVISION\r\nPermanentBarangay: BALIMBING\r\nPermanentCity: SAN PACUAL\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS CITY\r\nPermanentStreetName: \r\nPermanentZipCode: 4204\r\nPhilhealth: \r\nProvince: BATANGAS CITY\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 69\r\nZipCode: 4204\r\n	admin	BasicInformation	1
770171	2025-03-14	14:42:01.3729340	<Undetected>	Update	BasicInformationId: 3769\r\nEmployeeTrainingId: 9570\r\nFromDate: August 30, 2024\r\nHours: 16.00\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: August 31, 2024\r\nTrainingId: 16493\r\nTrainingPerformanceRate: 0\r\n	BasicInformationId: 3769\r\nEmployeeTrainingId: 9570\r\nFromDate: January 24, 2024\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: January 27, 2024\r\nTrainingId: 16493\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770172	2025-03-14	14:45:08.0459160	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PEER EDUCATION TRAINING FOR ALTERNATIVE LEARNING SYSTEM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770213	2025-03-14	15:22:43.1538381	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MASS TRAINING OF ALS TEACHERS ON THE IMPLEMENTATION OF ALS ACT AND ITS IMPLEMENTING RULES AND REGULATIONS (IRR)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770217	2025-03-14	15:24:01.3034288	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3769\r\nEmployeeTrainingId: 0\r\nFromDate: November 28, 2022\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: November 29, 2022\r\nTrainingId: 16499\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770218	2025-03-14	15:24:01.3084297	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3769\r\nEmployeeTrainingId: 0\r\nFromDate: July 28, 2022\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 29, 2022\r\nTrainingId: 16504\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770220	2025-03-14	15:26:58.3784743	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3769\r\nSkillId: 0\r\nSkillName: GOOD COMMUNICATION SKILLS\r\n	admin	Skills	1
770221	2025-03-14	15:26:58.3824734	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3769\r\nSkillId: 0\r\nSkillName: COLLABORATION SKILLS\r\n	admin	Skills	1
770222	2025-03-14	15:26:58.3874740	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3769\r\nSkillId: 0\r\nSkillName: LEADERSHIP SKILLS\r\n	admin	Skills	1
770223	2025-03-14	15:26:58.3974742	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3769\r\nSkillId: 0\r\nSkillName: CAN WORK UNDER PRESSURE\r\n	admin	Skills	1
770224	2025-03-14	15:26:58.4014734	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3769\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
770225	2025-03-14	15:26:58.4094740	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3769\r\nRecognitionId: 0\r\nRecognitionName: ALS OUTSTANDING TEACHER DIVISION QUALIFIER YEAR 2022\r\n	admin	Recognitions	1
770226	2025-03-14	15:26:58.4134734	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3769\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY ALS TEACHERS ASSOCIATION (OFFICER)\r\n	admin	Organizations	1
770227	2025-03-14	15:30:00.1628640	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3769\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN WEST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09563977545\r\nExtensionName: \r\nFirstName: RUEL\r\nLastName: DE CASTRO\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770228	2025-03-14	15:30:00.1678640	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3769\r\nCharacterReferenceId: 0\r\nCompanyAddress: BANABA WEST BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 402-723-9175\r\nExtensionName: \r\nFirstName: CHITO\r\nLastName: MACATANGAY\r\nMiddleName: H\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770229	2025-03-14	15:30:00.1748641	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3769\r\nCharacterReferenceId: 0\r\nCompanyAddress: BANABA WEST BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09397921705\r\nExtensionName: \r\nFirstName: FE\r\nLastName: MENDOZA\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770230	2025-03-14	15:33:49.8072065	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3769\r\nBirthDate: August 20, 1990\r\nBirthPlace: BAOGO INABANGA BOHOL\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MARISSA.ALANO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: MARISSA\r\nFullName: MARISSA C. ALANO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 162\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALANO\r\nMaidenName: \r\nMiddleName: CEPEDOSA\r\nMobileNumber: 09097964658\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LOOBAN 2\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LOOBAN 2\r\nTIN: \r\nWeight: 53\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3769\r\nBirthDate: August 20, 1990\r\nBirthPlace: BAOGO INABANGA BOHOL\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MARISSA.ALANO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: MARISSA\r\nFullName: MARISSA C. ALANO\r\nGender: Female\r\nGovernmentIdIssuedDate: April 18, 2012\r\nGovernmentIdNumber: 1123669\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: 02004232299\r\nHDMF: 1211-4369-2512\r\nHeight: 162\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALANO\r\nMaidenName: \r\nMiddleName: CEPEDOSA\r\nMobileNumber: 09097964658\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LOOBAN 2\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000085313-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LOOBAN 2\r\nTIN: 408-200-240-0000\r\nWeight: 53\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770175	2025-03-14	14:48:32.2704567	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3774\r\nBirthDate: May 15, 2016\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RYESSYA JULIANA\r\nFullName: RYESSYA JULIANA A. ROSALES\r\nGender: Female\r\nLastName: ROSALES\r\nMaidenName: \r\nMiddleName: A.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770176	2025-03-14	14:48:32.2833714	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3774\r\nBirthDate: July 09, 2019\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RYANNAH\r\nFullName: RYANNAH A. ROSALES\r\nGender: Female\r\nLastName: ROSALES\r\nMaidenName: \r\nMiddleName: A.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770177	2025-03-14	14:48:32.2873579	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 10 / LOT 8\r\nAddress2: LE CLERMONT SUBDIVISION\r\nBarangay: BALIMBING\r\nBasicInformationId: 3774\r\nBirthDate: November 14, 1985\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: SAN PACUAL\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rommel.rosales@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROMMEL\r\nFullName: ROMMEL A. ROSALES\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.69\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ROSALES\r\nMaidenName: \r\nMiddleName: ADARLO\r\nMobileNumber: 09219882493\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 10 / LOT 8\r\nPermanentAddress2: LE CLERMONT SUBDIVISION\r\nPermanentBarangay: BALIMBING\r\nPermanentCity: SAN PACUAL\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS CITY\r\nPermanentStreetName: \r\nPermanentZipCode: 4204\r\nPhilhealth: \r\nProvince: BATANGAS CITY\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 69\r\nZipCode: 4204\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 10 / LOT 8\r\nAddress2: LE CLERMONT SUBDIVISION\r\nBarangay: BALIMBING\r\nBasicInformationId: 3774\r\nBirthDate: November 14, 1985\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: SAN PACUAL\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rommel.rosales@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROMMEL\r\nFullName: ROMMEL A. ROSALES\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.69\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ROSALES\r\nMaidenName: \r\nMiddleName: ADARLO\r\nMobileNumber: 09219882493\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 10 / LOT 8\r\nPermanentAddress2: LE CLERMONT SUBDIVISION\r\nPermanentBarangay: BALIMBING\r\nPermanentCity: SAN PACUAL\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS CITY\r\nPermanentStreetName: \r\nPermanentZipCode: 4204\r\nPhilhealth: \r\nProvince: BATANGAS CITY\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 69\r\nZipCode: 4204\r\n	admin	BasicInformation	1
770178	2025-03-14	14:48:32.2973245	<Undetected>	Update	BasicInformationId: 3774\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3571\r\n	BasicInformationId: 3774\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3571\r\n	admin	Questionnaires	1
770179	2025-03-14	14:57:48.5580400	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3774\r\nDateOfExamination: September 24, 2017\r\nDateOfRelease: November 04, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 24, 2017\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1587508\r\nPlaceOfExamination: MANILA\r\nRating: 81.6\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
770180	2025-03-14	14:57:48.5630230	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3774\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 03, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 37,024.00\r\nPositionHeld: HEAD TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: March 14, 2025\r\n	admin	Experiences	1
770181	2025-03-14	14:57:48.5680064	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3774\r\nCompanyInstitution: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 04, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 30,705.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: February 01, 2025\r\n	admin	Experiences	1
770182	2025-03-14	14:57:48.5729897	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3774\r\nCompanyInstitution: SULTANATE OF OMAN\r\nExperienceId: 0\r\nFromDate: October 21, 2012\r\nIsGovernmentService: False\r\nMonthlySalary: 185,700.00\r\nPositionHeld: COLLEGE INSTRUCTOR\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: June 30, 2016\r\n	admin	Experiences	1
770183	2025-03-14	14:57:48.5769762	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3774\r\nCompanyInstitution: BATANGAS STATE UNIVERSITY\r\nExperienceId: 0\r\nFromDate: June 17, 2008\r\nIsGovernmentService: False\r\nMonthlySalary: 18,333.00\r\nPositionHeld: COLLEGE INSTRUCTOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Temporary\r\nToDate: October 20, 2012\r\n	admin	Experiences	1
770184	2025-03-14	14:57:48.5819592	<Undetected>	Update	BasicInformationId: 3774\r\nBirthDate: May 15, 2016\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3904\r\nExtensionName: \r\nFirstName: RYESSYA JULIANA\r\nFullName: RYESSYA JULIANA A. ROSALES\r\nGender: Female\r\nLastName: ROSALES\r\nMaidenName: \r\nMiddleName: A.\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3774\r\nBirthDate: May 15, 2016\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3904\r\nExtensionName: \r\nFirstName: RYESSYA JULIANA\r\nFullName: RYESSYA JULIANA ROSALES\r\nGender: Female\r\nLastName: ROSALES\r\nMaidenName: \r\nMiddleName: A.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770185	2025-03-14	14:57:48.5869431	<Undetected>	Update	BasicInformationId: 3774\r\nBirthDate: July 09, 2019\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3905\r\nExtensionName: \r\nFirstName: RYANNAH\r\nFullName: RYANNAH A. ROSALES\r\nGender: Female\r\nLastName: ROSALES\r\nMaidenName: \r\nMiddleName: A.\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3774\r\nBirthDate: July 09, 2019\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3905\r\nExtensionName: \r\nFirstName: RYANNAH\r\nFullName: RYANNAH ROSALES\r\nGender: Female\r\nLastName: ROSALES\r\nMaidenName: \r\nMiddleName: A.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770186	2025-03-14	15:01:09.1248691	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3774\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: TERESITA JOYCE\r\nFullName: TERESITA JOYCE AYALA\r\nGender: Female\r\nLastName: ROSALES\r\nMaidenName: \r\nMiddleName: AYALA\r\nOccupation: \r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
770187	2025-03-14	15:01:09.1298524	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3774\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RODRIGO\r\nFullName: RODRIGO AGUILA ROSALES\r\nGender: Male\r\nLastName: ROSALES\r\nMaidenName: \r\nMiddleName: AGUILA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770188	2025-03-14	15:01:09.1467958	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3774\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MELENCIANA\r\nFullName: MELENCIANA CANTOS ADARLO\r\nGender: Female\r\nLastName: ADARLO\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
770189	2025-03-14	15:08:01.5829893	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: VALEDICTORIAN\r\nBasicInformationId: 3774\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1992\r\nDateTo: 1999\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BANABA ELEMENTARY SCHOOL\r\nYearGraduated: 1999\r\n	admin	EducationalBackgrounds	1
770190	2025-03-14	15:08:01.5879737	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: ACHIEVER\r\nBasicInformationId: 3774\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1999\r\nDateTo: 2003\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAN PASCUAL NATIONAL HIGH SCHOOL\r\nYearGraduated: 2003\r\n	admin	EducationalBackgrounds	1
770191	2025-03-14	15:08:01.5929566	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: DOST SCHOLAR\r\nBasicInformationId: 3774\r\nCourse: \r\nCourseId: 1282\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2008\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MAJOR IN MECHANICAL ENGINEERING TECHNOLOGY\r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2008\r\n	admin	EducationalBackgrounds	1
770192	2025-03-14	15:08:01.6029232	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3774\r\nCourse: \r\nCourseId: 1274\r\nCourseOrMajor: \r\nDateFrom: 2010\r\nDateTo: 2011\r\nEducationalAttainment: 18 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
770193	2025-03-14	15:08:01.6069104	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: BEST THESIS PRESENTER\r\nBasicInformationId: 3774\r\nCourse: \r\nCourseId: 1333\r\nCourseOrMajor: \r\nDateFrom: 2018\r\nDateTo: 2020\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN TECHNOLOGY AND LIVELIHOOD EDUCATION\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2020\r\n	admin	EducationalBackgrounds	1
770194	2025-03-14	15:08:01.6169203	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3774\r\nCourse: \r\nCourseId: 1349\r\nCourseOrMajor: \r\nDateFrom: 2021\r\nDateTo: 2023\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: MAJOR IN SCHOOL LEADERSHIP AND MANAGEMENT\r\nSchoolorUniversity: SAINT DOMINIC SAVIO COLLEGE\r\nYearGraduated: 2023\r\n	admin	EducationalBackgrounds	1
770195	2025-03-14	15:08:01.6209044	<Undetected>	Update	BasicInformationId: 3774\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3906\r\nExtensionName: \r\nFirstName: TERESITA JOYCE\r\nFullName: TERESITA JOYCE AYALA\r\nGender: Female\r\nLastName: ROSALES\r\nMaidenName: \r\nMiddleName: AYALA\r\nOccupation: \r\nRelationship: Wife\r\n	BasicInformationId: 3774\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3906\r\nExtensionName: \r\nFirstName: TERESITA JOYCE\r\nFullName: TERESITA JOYCE ROSALES\r\nGender: Female\r\nLastName: ROSALES\r\nMaidenName: \r\nMiddleName: AYALA\r\nOccupation: \r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
770196	2025-03-14	15:08:01.6268423	<Undetected>	Update	BasicInformationId: 3774\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3907\r\nExtensionName: \r\nFirstName: RODRIGO\r\nFullName: RODRIGO AGUILA ROSALES\r\nGender: Male\r\nLastName: ROSALES\r\nMaidenName: \r\nMiddleName: AGUILA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3774\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3907\r\nExtensionName: \r\nFirstName: RODRIGO\r\nFullName: RODRIGO ROSALES\r\nGender: Male\r\nLastName: ROSALES\r\nMaidenName: \r\nMiddleName: AGUILA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
771546	2025-03-18	11:29:21.7125328	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EDUCATING TEACHERS ON HOW TO FACILITATE ONLINE CLASSES WITH THE UTILIZATION OF DIFFERENT ONLINE APPLICATIONS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770197	2025-03-14	15:08:01.6308290	<Undetected>	Update	BasicInformationId: 3774\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3908\r\nExtensionName: \r\nFirstName: MELENCIANA\r\nFullName: MELENCIANA CANTOS ADARLO\r\nGender: Female\r\nLastName: ADARLO\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3774\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3908\r\nExtensionName: \r\nFirstName: MELENCIANA\r\nFullName: MELENCIANA ADARLO\r\nGender: Female\r\nLastName: ADARLO\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
770198	2025-03-14	15:09:58.9345929	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPACITY BUILDING WORKSHIP ON THE EVALUATION OF BASIC AND ACTION RESEARCH ETHICS, PUBLICATION AND CONTINOUS PROJECT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770199	2025-03-14	15:13:45.3025009	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPACITY BUILDING IN SCIENCE, MATHEMATICS AND ENGLISH TEACHERS ON THE IMPLEMENTATION OF THE NATIONAL LEARNING CAMP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770200	2025-03-14	15:15:50.9123684	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REINVENTING EDUCATION FOR RELEVANCE AND QUALITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770201	2025-03-14	15:18:02.8802975	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INTERNATIONAL CONFERENCE ON EDUCATION, INNOVATIONS AND COMMUNITY DEVELOPMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770202	2025-03-14	15:18:55.7187479	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3774\r\nEmployeeTrainingId: 0\r\nFromDate: July 10, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 12, 2024\r\nTrainingId: 16500\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770203	2025-03-14	15:18:55.7267212	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3774\r\nEmployeeTrainingId: 0\r\nFromDate: January 29, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: January 31, 2024\r\nTrainingId: 16501\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770204	2025-03-14	15:18:55.7317047	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3774\r\nEmployeeTrainingId: 0\r\nFromDate: February 08, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: February 08, 2023\r\nTrainingId: 15172\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770205	2025-03-14	15:18:55.7396780	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3774\r\nEmployeeTrainingId: 0\r\nFromDate: August 27, 2022\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: PHILIPPINE ACADEMY OF TEACHERS, ADMINISTRATORS AND PRACTITIONERS IN EDUCATION (PATAPE)\r\nStatus: \r\nToDate: August 27, 2022\r\nTrainingId: 16502\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770206	2025-03-14	15:18:55.7446612	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3774\r\nEmployeeTrainingId: 0\r\nFromDate: October 28, 2021\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: BICOL UNIVERSITY\r\nStatus: \r\nToDate: October 03, 2021\r\nTrainingId: 15770\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770207	2025-03-14	15:20:56.4042495	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3774\r\nSkillId: 0\r\nSkillName: PLAYING GUITAR\r\n	admin	Skills	1
770208	2025-03-14	15:20:56.4082359	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3774\r\nSkillId: 0\r\nSkillName: DRIVING\r\n	admin	Skills	1
770209	2025-03-14	15:20:56.4201962	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3774\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
770210	2025-03-14	15:20:56.4241826	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3774\r\nOrganizationId: 0\r\nOrganizationName: ALOYSIAN PUBLICATIONS\r\n	admin	Organizations	1
770211	2025-03-14	15:20:56.4311596	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3774\r\nOrganizationId: 0\r\nOrganizationName: ETCOR (EMBRACING, CULTURE OF RESEARCH, EDUCATIONAL RESEARCH CENTER, PHILIPPINES)\r\n	admin	Organizations	1
770212	2025-03-14	15:20:56.4361429	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3774\r\nOrganizationId: 0\r\nOrganizationName: PHILIPPINE ACADEMY OF TEACHERS, ADMINISTRATORS AND PRACTITIONERS IN EDUCATION (PATAPE)\r\n	admin	Organizations	1
770214	2025-03-14	15:22:59.0384392	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3774\r\nCharacterReferenceId: 0\r\nCompanyAddress: BALETE BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09292621229\r\nExtensionName: \r\nFirstName: LANIE\r\nLastName: SALAZAR\r\nMiddleName: M.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770215	2025-03-14	15:22:59.0434226	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3774\r\nCharacterReferenceId: 0\r\nCompanyAddress: BANABA SAN PASCUAL BATANGAS\r\nCompanyName: \r\nContactNumber: 09166652417\r\nExtensionName: \r\nFirstName: ROLANDO\r\nLastName: MARANAN\r\nMiddleName: A.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770216	2025-03-14	15:22:59.0484477	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3774\r\nCharacterReferenceId: 0\r\nCompanyAddress: CONDE LABAC, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09169588932\r\nExtensionName: \r\nFirstName: DAISY\r\nLastName: SULIT\r\nMiddleName: G.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770219	2025-03-14	15:24:39.9023620	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 10 / LOT 8\r\nAddress2: LE CLERMONT SUBDIVISION\r\nBarangay: BALIMBING\r\nBasicInformationId: 3774\r\nBirthDate: November 14, 1985\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: SAN PACUAL\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rommel.rosales@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROMMEL\r\nFullName: ROMMEL A. ROSALES\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.69\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ROSALES\r\nMaidenName: \r\nMiddleName: ADARLO\r\nMobileNumber: 09219882493\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 10 / LOT 8\r\nPermanentAddress2: LE CLERMONT SUBDIVISION\r\nPermanentBarangay: BALIMBING\r\nPermanentCity: SAN PACUAL\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS CITY\r\nPermanentStreetName: \r\nPermanentZipCode: 4204\r\nPhilhealth: \r\nProvince: BATANGAS CITY\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 69\r\nZipCode: 4204\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 10 / LOT 8\r\nAddress2: LE CLERMONT SUBDIVISION\r\nBarangay: BALIMBING\r\nBasicInformationId: 3774\r\nBirthDate: November 14, 1985\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: SAN PACUAL\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rommel.rosales@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROMMEL\r\nFullName: ROMMEL A. ROSALES\r\nGender: Male\r\nGovernmentIdIssuedDate: December 15, 2017\r\nGovernmentIdNumber: 1587508\r\nGovernmentIdPlaceIssued: PRC MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02003473159\r\nHDMF: 1490-0002-2095\r\nHeight: 1.69\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ROSALES\r\nMaidenName: \r\nMiddleName: ADARLO\r\nMobileNumber: 09219882493\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 10 / LOT 8\r\nPermanentAddress2: LE CLERMONT SUBDIVISION\r\nPermanentBarangay: BALIMBING\r\nPermanentCity: SAN PACUAL\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS CITY\r\nPermanentStreetName: \r\nPermanentZipCode: 4204\r\nPhilhealth: 09-000072474-1\r\nProvince: BATANGAS CITY\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 262-324-760-0000\r\nWeight: 69\r\nZipCode: 4204\r\n	admin	BasicInformation	1
770231	2025-03-14	15:37:07.3033049	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER OF ARTS IN ENGLISH LANGUAGE TEACHING\r\nLevel: Master's\r\n	admin	Courses	1
770232	2025-03-14	15:37:58.9154440	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 30 LOT 51 & 52\r\nAddress2: MERCEDES HOMES\r\nBarangay: SORO-SORO\r\nBasicInformationId: 0\r\nBirthDate: January 12, 1993\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: magenevaalmeraarah.escalona@deped.gov.ph\r\nExtensionName: \r\nFirstName: MA. GENEVA ALMERA ARAH\r\nFullName: MA. GENEVA ALMERA ARAH E. ESCALONA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ESCALONA\r\nMaidenName: \r\nMiddleName: ESPELETA\r\nMobileNumber: 09972806867\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 30 LOT 51 & 52\r\nPermanentAddress2: MERCEDES HOMES\r\nPermanentBarangay: SORO-SORO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 68\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770233	2025-03-14	15:37:58.9290093	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: RANK 6\r\nBasicInformationId: 3775\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1999\r\nDateTo: 2004\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: JULIANA A. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nYearGraduated: 2004\r\n	admin	EducationalBackgrounds	1
770234	2025-03-14	15:37:58.9290093	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3775\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2004\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL \r\nYearGraduated: 2009\r\n	admin	EducationalBackgrounds	1
770235	2025-03-14	15:37:58.9290093	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3775\r\nCourse: \r\nCourseId: 1270\r\nCourseOrMajor: \r\nDateFrom: 2009\r\nDateTo: 2013\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MAJOR IN ENGLISH\r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2013\r\n	admin	EducationalBackgrounds	1
770236	2025-03-14	15:37:58.9290093	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3775\r\nCourse: \r\nCourseId: 1385\r\nCourseOrMajor: \r\nDateFrom: 2015\r\nDateTo: 2023\r\nEducationalAttainment: 36 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
770237	2025-03-14	15:37:58.9290093	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3775\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JAIME NICHOLO\r\nFullName: JAIME NICHOLO MALAYAN ESCALONA\r\nGender: Male\r\nLastName: ESCALONA\r\nMaidenName: \r\nMiddleName: MALAYAN\r\nOccupation: CUSTOMER SERVICE REPRESENTATIVE\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
770238	2025-03-14	15:37:58.9290093	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3775\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ELMER\r\nFullName: ELMER EBREO ESPELETA\r\nGender: Male\r\nLastName: ESPELETA\r\nMaidenName: \r\nMiddleName: EBREO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770239	2025-03-14	15:37:58.9290093	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3775\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOCELYN\r\nFullName: JOCELYN BENEDICTO LUALHATI\r\nGender: Female\r\nLastName: LUALHATI\r\nMaidenName: \r\nMiddleName: BENEDICTO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
770240	2025-03-14	15:37:58.9290093	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3775\r\nBirthDate: July 22, 2018\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JULIA AUBRYN\r\nFullName: JULIA AUBRYN ESPELETA ESCALONA\r\nGender: Female\r\nLastName: ESCALONA\r\nMaidenName: \r\nMiddleName: ESPELETA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770241	2025-03-14	15:37:58.9300058	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3775\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
770242	2025-03-14	15:40:30.5481973	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3775\r\nDateOfExamination: September 29, 2013\r\nDateOfRelease: January 12, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 29, 2013\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1236144\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 76.40\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
770243	2025-03-14	15:40:30.5531805	<Undetected>	Update	BasicInformationId: 3775\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3909\r\nExtensionName: \r\nFirstName: JAIME NICHOLO\r\nFullName: JAIME NICHOLO MALAYAN ESCALONA\r\nGender: Male\r\nLastName: ESCALONA\r\nMaidenName: \r\nMiddleName: MALAYAN\r\nOccupation: CUSTOMER SERVICE REPRESENTATIVE\r\nRelationship: Husband\r\n	BasicInformationId: 3775\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3909\r\nExtensionName: \r\nFirstName: JAIME NICHOLO\r\nFullName: JAIME NICHOLO ESCALONA\r\nGender: Male\r\nLastName: ESCALONA\r\nMaidenName: \r\nMiddleName: MALAYAN\r\nOccupation: CUSTOMER SERVICE REPRESENTATIVE\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
770244	2025-03-14	15:40:30.5621505	<Undetected>	Update	BasicInformationId: 3775\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3910\r\nExtensionName: \r\nFirstName: ELMER\r\nFullName: ELMER EBREO ESPELETA\r\nGender: Male\r\nLastName: ESPELETA\r\nMaidenName: \r\nMiddleName: EBREO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3775\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3910\r\nExtensionName: \r\nFirstName: ELMER\r\nFullName: ELMER ESPELETA\r\nGender: Male\r\nLastName: ESPELETA\r\nMaidenName: \r\nMiddleName: EBREO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770245	2025-03-14	15:40:30.5661371	<Undetected>	Update	BasicInformationId: 3775\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3911\r\nExtensionName: \r\nFirstName: JOCELYN\r\nFullName: JOCELYN BENEDICTO LUALHATI\r\nGender: Female\r\nLastName: LUALHATI\r\nMaidenName: \r\nMiddleName: BENEDICTO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3775\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3911\r\nExtensionName: \r\nFirstName: JOCELYN\r\nFullName: JOCELYN LUALHATI\r\nGender: Female\r\nLastName: LUALHATI\r\nMaidenName: \r\nMiddleName: BENEDICTO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
770246	2025-03-14	15:40:30.5721171	<Undetected>	Update	BasicInformationId: 3775\r\nBirthDate: July 22, 2018\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3912\r\nExtensionName: \r\nFirstName: JULIA AUBRYN\r\nFullName: JULIA AUBRYN ESPELETA ESCALONA\r\nGender: Female\r\nLastName: ESCALONA\r\nMaidenName: \r\nMiddleName: ESPELETA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3775\r\nBirthDate: July 22, 2018\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3912\r\nExtensionName: \r\nFirstName: JULIA AUBRYN\r\nFullName: JULIA AUBRYN ESCALONA\r\nGender: Female\r\nLastName: ESCALONA\r\nMaidenName: \r\nMiddleName: ESPELETA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770247	2025-03-14	15:40:30.5771005	<Undetected>	Update	BasicInformationId: 3775\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3572\r\n	BasicInformationId: 3775\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3572\r\n	admin	Questionnaires	1
770250	2025-03-14	15:52:53.9100010	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3775\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 28,796.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: March 14, 2025\r\n	admin	Experiences	1
770251	2025-03-14	15:52:53.9149841	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3775\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,796.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
770252	2025-03-14	15:52:53.9199672	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3775\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
770248	2025-03-14	15:51:53.8054476	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: TINGA LABAC\r\nBasicInformationId: 0\r\nBirthDate: November 19, 1981\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RHEZIEL.COMETA@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RHEZIEL\r\nFullName: RHEZIEL B. COMETA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: COMETA\r\nMaidenName: \r\nMiddleName: BORILLO\r\nMobileNumber: 09196950576\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: TINGA LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO 2\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: SITIO 2\r\nTIN: \r\nWeight: 54\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770249	2025-03-14	15:51:53.8194535	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3776\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
770259	2025-03-14	15:55:43.2653867	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3776\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CRISTOPHER\r\nFullName: CRISTOPHER MANTAL COMETA\r\nGender: Male\r\nLastName: COMETA\r\nMaidenName: \r\nMiddleName: MANTAL\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
770260	2025-03-14	15:55:43.2773890	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3776\r\nBirthDate: December 29, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RHIEZTOFF MATHEW\r\nFullName: RHIEZTOFF MATHEW B COMETA\r\nGender: Male\r\nLastName: COMETA\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770261	2025-03-14	15:55:43.2813887	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3776\r\nBirthDate: December 21, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: KRISTOF MARCUS\r\nFullName: KRISTOF MARCUS B COMETA\r\nGender: Male\r\nLastName: COMETA\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770262	2025-03-14	15:55:43.2903902	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: TINGA LABAC\r\nBasicInformationId: 3776\r\nBirthDate: November 19, 1981\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RHEZIEL.COMETA@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RHEZIEL\r\nFullName: RHEZIEL B. COMETA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: COMETA\r\nMaidenName: \r\nMiddleName: BORILLO\r\nMobileNumber: 09196950576\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: TINGA LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO 2\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: SITIO 2\r\nTIN: \r\nWeight: 54\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: TINGA LABAC\r\nBasicInformationId: 3776\r\nBirthDate: November 19, 1981\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RHEZIEL.COMETA@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RHEZIEL\r\nFullName: RHEZIEL B. COMETA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: COMETA\r\nMaidenName: \r\nMiddleName: BORILLO\r\nMobileNumber: 09196950576\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: TINGA LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO 2\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO 2\r\nTIN: \r\nWeight: 54\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770263	2025-03-14	15:55:43.2948952	<Undetected>	Update	BasicInformationId: 3776\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3573\r\n	BasicInformationId: 3776\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3573\r\n	admin	Questionnaires	1
770266	2025-03-14	15:58:28.1885335	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3776\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1988\r\nDateTo: 1994\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: TINGA LABAC ELEMENTARY SCHOOL\r\nYearGraduated: 1994\r\n	admin	EducationalBackgrounds	1
770267	2025-03-14	15:58:28.1940371	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3776\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 1998\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1998\r\n	admin	EducationalBackgrounds	1
770253	2025-03-14	15:52:53.9249508	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3775\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,439.00\r\nPositionHeld: TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
770254	2025-03-14	15:52:53.9289374	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3775\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 19, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 23,877.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
770255	2025-03-14	15:52:53.9339207	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3775\r\nCompanyInstitution: BATANGAS NATONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: November 25, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,316.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: February 12, 2021\r\n	admin	Experiences	1
770256	2025-03-14	15:52:53.9389042	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3775\r\nCompanyInstitution: HOLY FAMILY MONTESSORI OF SAN JOSE, BATANGAS, INC.\r\nExperienceId: 0\r\nFromDate: June 13, 2016\r\nIsGovernmentService: False\r\nMonthlySalary: 12,000.00\r\nPositionHeld: SENIOR HIGH SCHOOL TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: March 31, 2017\r\n	admin	Experiences	1
770257	2025-03-14	15:52:53.9438876	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3775\r\nCompanyInstitution: HOLY FAMILY MONTESSORI OF SAN JOSE, BATANGAS, INC.\r\nExperienceId: 0\r\nFromDate: June 03, 2013\r\nIsGovernmentService: False\r\nMonthlySalary: 12,000.00\r\nPositionHeld: JUNIOR HIGH SCHOOL TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: March 31, 2017\r\n	admin	Experiences	1
770258	2025-03-14	15:55:11.1009186	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING OF GRADE 7 TEACHERS ON MATATAG CURRICULUM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770264	2025-03-14	15:58:11.8195969	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3775\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - BATANGAS CITY\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16457\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770265	2025-03-14	15:58:11.8285671	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3775\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - BATANGAS CITY\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16505\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770268	2025-03-14	15:58:28.1980361	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3776\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1998\r\nDateTo: 2002\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2002\r\n	admin	EducationalBackgrounds	1
770269	2025-03-14	15:58:28.2111208	<Undetected>	Update	BasicInformationId: 3776\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3913\r\nExtensionName: \r\nFirstName: CRISTOPHER\r\nFullName: CRISTOPHER MANTAL COMETA\r\nGender: Male\r\nLastName: COMETA\r\nMaidenName: \r\nMiddleName: MANTAL\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3776\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3913\r\nExtensionName: \r\nFirstName: CRISTOPHER\r\nFullName: CRISTOPHER COMETA\r\nGender: Male\r\nLastName: COMETA\r\nMaidenName: \r\nMiddleName: MANTAL\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
770270	2025-03-14	15:58:28.2211196	<Undetected>	Update	BasicInformationId: 3776\r\nBirthDate: December 29, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3914\r\nExtensionName: \r\nFirstName: RHIEZTOFF MATHEW\r\nFullName: RHIEZTOFF MATHEW B COMETA\r\nGender: Male\r\nLastName: COMETA\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3776\r\nBirthDate: December 29, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3914\r\nExtensionName: \r\nFirstName: RHIEZTOFF MATHEW\r\nFullName: RHIEZTOFF MATHEW COMETA\r\nGender: Male\r\nLastName: COMETA\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770271	2025-03-14	15:58:28.2531206	<Undetected>	Update	BasicInformationId: 3776\r\nBirthDate: December 21, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3915\r\nExtensionName: \r\nFirstName: KRISTOF MARCUS\r\nFullName: KRISTOF MARCUS B COMETA\r\nGender: Male\r\nLastName: COMETA\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3776\r\nBirthDate: December 21, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3915\r\nExtensionName: \r\nFirstName: KRISTOF MARCUS\r\nFullName: KRISTOF MARCUS COMETA\r\nGender: Male\r\nLastName: COMETA\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770272	2025-03-14	16:07:14.8328883	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3776\r\nCourse: \r\nCourseId: 1348\r\nCourseOrMajor: \r\nDateFrom: 2017\r\nDateTo: 2019\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN PRE SCHOOL\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2019\r\n	admin	EducationalBackgrounds	1
770273	2025-03-14	16:14:55.4022405	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2024 GAD TRAINING WITH THE THEME: "INTEGRATING GAD CONCEPTS AND ACTIVITIES IN TEACHING WHILE ENSURING GENDER RESPONSIVENESS AND SAFETY OF LEARNERS AND PERSONNEL"\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770274	2025-03-14	16:15:27.5553035	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3775\r\nEmployeeTrainingId: 0\r\nFromDate: April 26, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - BATANGAS CITY\r\nStatus: \r\nToDate: April 26, 2024\r\nTrainingId: 16506\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770275	2025-03-14	16:16:06.3348601	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3776\r\nDateOfExamination: August 25, 2002\r\nDateOfRelease: November 19, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 25, 2002\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0780473\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 77.80\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
770276	2025-03-14	16:16:06.3388587	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3776\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: March 10, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 32,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: January 01, 2025\r\n	admin	Experiences	1
770277	2025-03-14	16:16:06.3438574	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3776\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 19, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 27,608.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: February 10, 2022\r\n	admin	Experiences	1
770278	2025-03-14	16:16:06.3488591	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3776\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 18, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 22,938.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: August 18, 2019\r\n	admin	Experiences	1
770279	2025-03-14	16:16:15.1320493	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION ROLL-OUT OF HIGHER THINKING SKILLS PROFESSIONAL LEARNING PACKAGES (HOTS-PLPS) FOR ENGLISH, SCIENCE AND MATHEMATICS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770281	2025-03-14	16:17:16.3308997	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL LEARNING ACTION CELL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770280	2025-03-14	16:16:53.8514067	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3775\r\nEmployeeTrainingId: 0\r\nFromDate: September 20, 2023\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - BATANGAS CITY\r\nStatus: \r\nToDate: September 23, 2023\r\nTrainingId: 15605\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770282	2025-03-14	16:17:52.6431506	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3775\r\nEmployeeTrainingId: 0\r\nFromDate: July 18, 2023\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - BATANGAS CITY\r\nStatus: \r\nToDate: July 20, 2023\r\nTrainingId: 15617\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770283	2025-03-14	16:18:15.8582563	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3775\r\nSkillId: 0\r\nSkillName: HOSTING\r\n	admin	Skills	1
770284	2025-03-14	16:18:15.8622428	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3775\r\nSkillId: 0\r\nSkillName: DRAWING/LETTERING\r\n	admin	Skills	1
770285	2025-03-14	16:18:15.8722687	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3775\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
770286	2025-03-14	16:20:14.3816615	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3775\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN JOSE, BATANGAS\r\nCompanyName: \r\nContactNumber: 7262783\r\nExtensionName: \r\nFirstName: JUANITA\r\nLastName: ALDAY\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770287	2025-03-14	16:20:14.3856483	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3775\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09298270559\r\nExtensionName: \r\nFirstName: TEODORICA\r\nLastName: PORCINO\r\nMiddleName: S\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770288	2025-03-14	16:20:14.3916281	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3775\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ANTONIO, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09602114973\r\nExtensionName: \r\nFirstName: JOSE BUHAY\r\nLastName: FATALLA\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770290	2025-03-14	16:21:36.9930076	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 30 LOT 51 & 52\r\nAddress2: MERCEDES HOMES\r\nBarangay: SORO-SORO\r\nBasicInformationId: 3775\r\nBirthDate: January 12, 1993\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: magenevaalmeraarah.escalona@deped.gov.ph\r\nExtensionName: \r\nFirstName: MA. GENEVA ALMERA ARAH\r\nFullName: MA. GENEVA ALMERA ARAH E. ESCALONA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ESCALONA\r\nMaidenName: \r\nMiddleName: ESPELETA\r\nMobileNumber: 09972806867\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 30 LOT 51 & 52\r\nPermanentAddress2: MERCEDES HOMES\r\nPermanentBarangay: SORO-SORO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 68\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 30 LOT 51 & 52\r\nAddress2: MERCEDES HOMES\r\nBarangay: SORO-SORO\r\nBasicInformationId: 3775\r\nBirthDate: January 12, 1993\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: magenevaalmeraarah.escalona@deped.gov.ph\r\nExtensionName: \r\nFirstName: MA. GENEVA ALMERA ARAH\r\nFullName: MA. GENEVA ALMERA ARAH E. ESCALONA\r\nGender: Female\r\nGovernmentIdIssuedDate: December 05, 2013\r\nGovernmentIdNumber: 1236144\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC LICENSE\r\nGSIS: 02005837619\r\nHDMF: 1210-9129-0267\r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ESCALONA\r\nMaidenName: \r\nMiddleName: ESPELETA\r\nMobileNumber: 09972806867\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 30 LOT 51 & 52\r\nPermanentAddress2: MERCEDES HOMES\r\nPermanentBarangay: SORO-SORO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050375159-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-2758123-8\r\nStreetName: \r\nTIN: 446-250-925-0000\r\nWeight: 68\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770291	2025-03-14	16:28:21.3484617	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: BANABA A-POOL\r\nBarangay: SANTA RITA KARSADA\r\nBasicInformationId: 0\r\nBirthDate: February 03, 1984\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: aishajade.garcia@deped.gov.ph\r\nExtensionName: \r\nFirstName: AISHA JADE\r\nFullName: AISHA JADE C. GARCIA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: CASTILLO\r\nMobileNumber: 09219335918\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 74\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770292	2025-03-14	16:28:21.3607447	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3777\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
770294	2025-03-14	16:30:19.6770158	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3777\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RYAN REX\r\nFullName: RYAN REX TOLENTINO GARCIA\r\nGender: Male\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: TOLENTINO\r\nOccupation: SAFETY OFFICER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
770295	2025-03-14	16:30:19.7029291	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3777\r\nBirthDate: December 18, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ELISHA KACEY\r\nFullName: ELISHA KACEY CASTILLO GARCIA\r\nGender: Male\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: CASTILLO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770296	2025-03-14	16:30:19.7128956	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3777\r\nBirthDate: December 12, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DUSTINE ZETH\r\nFullName: DUSTINE ZETH CASTILLO GARCIA\r\nGender: Male\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: CASTILLO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770297	2025-03-14	16:30:19.7168822	<Undetected>	Update	BasicInformationId: 3777\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3574\r\n	BasicInformationId: 3777\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3574\r\n	admin	Questionnaires	1
770298	2025-03-14	16:32:27.0144050	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF ARTS\r\nLevel: College\r\n	admin	Courses	1
770300	2025-03-14	16:32:53.3657891	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3777\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1990\r\nDateTo: 1996\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BANABA WEST ELEMENTARY SCHOOL\r\nYearGraduated: 1996\r\n	admin	EducationalBackgrounds	1
770301	2025-03-14	16:32:53.3707724	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3777\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 2000\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BANABA WEST NATIONAL HIGH SCHOOL\r\nYearGraduated: 2000\r\n	admin	EducationalBackgrounds	1
770302	2025-03-14	16:32:53.3747590	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3777\r\nCourse: \r\nCourseId: 1386\r\nCourseOrMajor: \r\nDateFrom: 2000\r\nDateTo: 2005\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: PSYCHOLOGY\r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2005\r\n	admin	EducationalBackgrounds	1
770303	2025-03-14	16:32:53.3837290	<Undetected>	Update	BasicInformationId: 3777\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3916\r\nExtensionName: \r\nFirstName: RYAN REX\r\nFullName: RYAN REX TOLENTINO GARCIA\r\nGender: Male\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: TOLENTINO\r\nOccupation: SAFETY OFFICER\r\nRelationship: Husband\r\n	BasicInformationId: 3777\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3916\r\nExtensionName: \r\nFirstName: RYAN REX\r\nFullName: RYAN REX GARCIA\r\nGender: Male\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: TOLENTINO\r\nOccupation: SAFETY OFFICER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
770304	2025-03-14	16:32:53.3877157	<Undetected>	Update	BasicInformationId: 3777\r\nBirthDate: December 18, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3917\r\nExtensionName: \r\nFirstName: ELISHA KACEY\r\nFullName: ELISHA KACEY CASTILLO GARCIA\r\nGender: Male\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: CASTILLO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3777\r\nBirthDate: December 18, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3917\r\nExtensionName: \r\nFirstName: ELISHA KACEY\r\nFullName: ELISHA KACEY GARCIA\r\nGender: Male\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: CASTILLO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770305	2025-03-14	16:32:53.3936956	<Undetected>	Update	BasicInformationId: 3777\r\nBirthDate: December 12, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3918\r\nExtensionName: \r\nFirstName: DUSTINE ZETH\r\nFullName: DUSTINE ZETH CASTILLO GARCIA\r\nGender: Male\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: CASTILLO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3777\r\nBirthDate: December 12, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3918\r\nExtensionName: \r\nFirstName: DUSTINE ZETH\r\nFullName: DUSTINE ZETH GARCIA\r\nGender: Male\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: CASTILLO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770311	2025-03-14	16:35:39.2850071	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: BANABA A-POOL\r\nBarangay: SANTA RITA KARSADA\r\nBasicInformationId: 3777\r\nBirthDate: February 03, 1984\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: aishajade.garcia@deped.gov.ph\r\nExtensionName: \r\nFirstName: AISHA JADE\r\nFullName: AISHA JADE C. GARCIA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: CASTILLO\r\nMobileNumber: 09219335918\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 74\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: BANABA A-POOL\r\nBarangay: SANTA RITA KARSADA\r\nBasicInformationId: 3777\r\nBirthDate: February 03, 1984\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: aishajade.garcia@deped.gov.ph\r\nExtensionName: \r\nFirstName: AISHA JADE\r\nFullName: AISHA JADE C. GARCIA\r\nGender: Female\r\nGovernmentIdIssuedDate: September 22, 2009\r\nGovernmentIdNumber: 1645769\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02006141124\r\nHDMF: 1213-0853-0362\r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: CASTILLO\r\nMobileNumber: 09219335918\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: 09-250167427-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 721-330-806-0000\r\nWeight: 74\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770306	2025-03-14	16:33:42.9911448	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3776\r\nEmployeeTrainingId: 0\r\nFromDate: February 07, 2025\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BANABA WEST ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: February 07, 2025\r\nTrainingId: 16508\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770307	2025-03-14	16:33:43.0001437	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3776\r\nEmployeeTrainingId: 0\r\nFromDate: December 02, 2024\r\nHours: 48\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOL DIVISION BATANGAS CITY\r\nStatus: \r\nToDate: December 07, 2024\r\nTrainingId: 16332\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770308	2025-03-14	16:33:43.0051430	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3776\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOL DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16361\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770309	2025-03-14	16:33:43.0101435	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3776\r\nEmployeeTrainingId: 0\r\nFromDate: May 03, 2024\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BANABA WEST ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: May 03, 2024\r\nTrainingId: 16510\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770310	2025-03-14	16:33:43.0141440	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3776\r\nEmployeeTrainingId: 0\r\nFromDate: January 25, 2024\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DISTRICT VII AND BANABA WEST ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16511\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770312	2025-03-14	16:35:46.1745867	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3776\r\nSkillId: 0\r\nSkillName: WILLINGNESS TO LEARN\r\n	admin	Skills	1
770313	2025-03-14	16:35:46.1865874	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3776\r\nSkillId: 0\r\nSkillName: COMPUTER SKILLS\r\n	admin	Skills	1
770314	2025-03-14	16:35:46.1905886	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3776\r\nSkillId: 0\r\nSkillName: ADAPTIVE SKILLS\r\n	admin	Skills	1
770315	2025-03-14	16:35:46.1955893	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3776\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
770316	2025-03-14	16:35:46.2072375	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3776\r\nRecognitionId: 0\r\nRecognitionName: OUTSTANDING KINDERGARTEN TEACHER OF THE YEAR 2024\r\n	admin	Recognitions	1
770317	2025-03-14	16:35:46.2112418	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3776\r\nRecognitionId: 0\r\nRecognitionName: OUTSTANDING TEACHER OF THE YEAR 2022\r\n	admin	Recognitions	1
770318	2025-03-14	16:35:46.2171947	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3776\r\nRecognitionId: 0\r\nRecognitionName: OUTSTANDING FUNCTIONAL KINDERGARTEN CLASSROOM 2022\r\n	admin	Recognitions	1
770319	2025-03-14	16:35:46.2211926	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3776\r\nRecognitionId: 0\r\nRecognitionName: MOST PUNCTUAL AWARD\r\n	admin	Recognitions	1
770323	2025-03-14	16:38:44.1314707	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3776\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN WEST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09563977545\r\nExtensionName: \r\nFirstName: RUEL\r\nLastName: DE CASTRO\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770324	2025-03-14	16:38:44.1404733	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3776\r\nCharacterReferenceId: 0\r\nCompanyAddress: BOLBOK, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175044945\r\nExtensionName: \r\nFirstName: SUSAN\r\nLastName: ALDOVER\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770325	2025-03-14	16:38:44.1444736	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3776\r\nCharacterReferenceId: 0\r\nCompanyAddress: BALAGTAS BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09997383399\r\nExtensionName: \r\nFirstName: LANIE\r\nLastName: SALAZAR\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770355	2025-03-17	10:30:54.6088581	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3779\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1970\r\nDateTo: 1976\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: PARANG ELEMENTARY SCHOOL\r\nYearGraduated: 1976\r\n	admin	EducationalBackgrounds	1
770356	2025-03-17	10:30:54.6088581	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3779\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1976\r\nDateTo: 1980\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: ISLA VERDE HIGH SCHOOL\r\nYearGraduated: 1980\r\n	admin	EducationalBackgrounds	1
770357	2025-03-17	10:30:54.6088581	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3779\r\nCourse: \r\nCourseId: 1318\r\nCourseOrMajor: \r\nDateFrom: 1980\r\nDateTo: 1985\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES\r\nYearGraduated: 1985\r\n	admin	EducationalBackgrounds	1
770320	2025-03-14	16:36:56.3259944	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3777\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09298270559\r\nExtensionName: \r\nFirstName: TEODORICA\r\nLastName: PORCINA\r\nMiddleName: S\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770321	2025-03-14	16:36:56.3369577	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3777\r\nCharacterReferenceId: 0\r\nCompanyAddress: BOLBOK, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09209680729\r\nExtensionName: \r\nFirstName: DANDY\r\nLastName: EBORA\r\nMiddleName: G\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770322	2025-03-14	16:38:02.8457027	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3777\r\nDateOfExamination: September 22, 2009\r\nDateOfRelease: August 22, 2024\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 22, 2009\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1046209\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 75\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
770326	2025-03-14	16:39:46.2114569	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3777\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 14, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 29,768.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
770327	2025-03-14	16:39:46.2204268	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3777\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 14, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: October 14, 2024\r\n	admin	Experiences	1
770328	2025-03-14	16:39:46.2244135	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3777\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 14, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,000.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: October 14, 2023\r\n	admin	Experiences	1
770329	2025-03-14	16:41:10.6690231	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPABILITY BUILDING TRAINING FOR SPECIAL EDUCATION AND RECEIVING TEACHERS ON FILIPINO SIGN LANGUAGE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770331	2025-03-14	16:43:56.5562158	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION ROLL OUT OF DEPED COMPUTERIZATION PROGRAM ADOPTION CAPABILITY BUILDING FOR TEACHERS OF DCP RECEPIENT SCHOOL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770332	2025-03-14	16:44:59.4701047	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3777\r\nEmployeeTrainingId: 0\r\nFromDate: December 05, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - BATANGAS CITY\r\nStatus: \r\nToDate: December 07, 2024\r\nTrainingId: 16512\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770333	2025-03-14	16:44:59.4800715	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3777\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 10\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - BATANGAS CITY\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16340\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770334	2025-03-14	16:44:59.5059848	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3777\r\nEmployeeTrainingId: 0\r\nFromDate: November 27, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - BATANGAS CITY\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16513\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770335	2025-03-14	16:46:31.1679425	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3777\r\nEmployeeTrainingId: 0\r\nFromDate: November 08, 2024\r\nHours: 30\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - BATANGAS CITY\r\nStatus: \r\nToDate: November 10, 2024\r\nTrainingId: 16355\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770336	2025-03-14	16:46:31.1729261	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3777\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - BATANGAS CITY\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16347\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770337	2025-03-14	16:46:52.5351078	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3777\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
770330	2025-03-14	16:42:13.6824133	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: TINGA LABAC\r\nBasicInformationId: 3776\r\nBirthDate: November 19, 1981\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RHEZIEL.COMETA@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RHEZIEL\r\nFullName: RHEZIEL B. COMETA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: COMETA\r\nMaidenName: \r\nMiddleName: BORILLO\r\nMobileNumber: 09196950576\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: TINGA LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO 2\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO 2\r\nTIN: \r\nWeight: 54\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: TINGA LABAC\r\nBasicInformationId: 3776\r\nBirthDate: November 19, 1981\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RHEZIEL.COMETA@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RHEZIEL\r\nFullName: RHEZIEL B. COMETA\r\nGender: Female\r\nGovernmentIdIssuedDate: November 19, 2002\r\nGovernmentIdNumber: 0780473\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC LICENSE\r\nGSIS: 02004510692\r\nHDMF: 1211-2389-5068\r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: COMETA\r\nMaidenName: \r\nMiddleName: BORILLO\r\nMobileNumber: 09196950576\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: TINGA LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO 2\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050103743-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1369542-6\r\nStreetName: SITIO 2\r\nTIN: 250-820-662-0000\r\nWeight: 54\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770338	2025-03-14	16:50:05.8017556	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 375\r\nAddress2: \r\nBarangay: BANABA KANLURAN\r\nBasicInformationId: 0\r\nBirthDate: August 09, 1970\r\nBirthPlace: BATANGAS CITY\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSALIE.MACATANGAY001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSALIE\r\nFullName: ROSALIE M. MACATANGAY\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nMobileNumber: 09068671057\r\nNationality: Filipino\r\nPermanentAddress1: 375\r\nPermanentAddress2: \r\nPermanentBarangay: BANABA KANLURAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO LOOBAN 1\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: SITIO LOOBAN 1\r\nTIN: \r\nWeight: 51\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770339	2025-03-14	16:50:05.8264580	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3778\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LORETO\r\nFullName: LORETO MACATANGAY MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770340	2025-03-14	16:50:05.8264580	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3778\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SOFIA\r\nFullName: SOFIA MACATANGAY MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
770341	2025-03-14	16:50:05.8264580	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3778\r\nBirthDate: June 20, 2010\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: YSABELLE\r\nFullName: YSABELLE MACATANGAY MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770342	2025-03-14	16:50:05.8274700	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3778\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
770343	2025-03-14	16:51:56.9202269	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3778\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1977\r\nDateTo: 1983\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BANABA WEST ELEMENTARY SCHOOL\r\nYearGraduated: 1983\r\n	admin	EducationalBackgrounds	1
770344	2025-03-14	16:51:56.9273158	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3778\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1983\r\nDateTo: 1987\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BANABA WEST BARANGAY HIGH SCHOOL\r\nYearGraduated: 1987\r\n	admin	EducationalBackgrounds	1
770345	2025-03-14	16:51:56.9373158	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3778\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1989\r\nDateTo: 1993\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 1993\r\n	admin	EducationalBackgrounds	1
770363	2025-03-17	10:31:25.4541450	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: VIRTUAL IN-SERVICE TRAINING 2.0\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770346	2025-03-14	16:51:56.9423161	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 375\r\nAddress2: \r\nBarangay: BANABA KANLURAN\r\nBasicInformationId: 3778\r\nBirthDate: August 09, 1970\r\nBirthPlace: BATANGAS CITY\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSALIE.MACATANGAY001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSALIE\r\nFullName: ROSALIE M. MACATANGAY\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nMobileNumber: 09068671057\r\nNationality: Filipino\r\nPermanentAddress1: 375\r\nPermanentAddress2: \r\nPermanentBarangay: BANABA KANLURAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO LOOBAN 1\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: SITIO LOOBAN 1\r\nTIN: \r\nWeight: 51\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 375\r\nAddress2: \r\nBarangay: BANABA KANLURAN\r\nBasicInformationId: 3778\r\nBirthDate: August 09, 1970\r\nBirthPlace: BATANGAS CITY\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSALIE.MACATANGAY001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSALIE\r\nFullName: ROSALIE M. MACATANGAY\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nMobileNumber: 09068671057\r\nNationality: Filipino\r\nPermanentAddress1: 375\r\nPermanentAddress2: \r\nPermanentBarangay: BANABA KANLURAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO LOOBAN 1\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO LOOBAN 1\r\nTIN: \r\nWeight: 51\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770347	2025-03-14	16:51:56.9503159	<Undetected>	Update	BasicInformationId: 3778\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3919\r\nExtensionName: \r\nFirstName: LORETO\r\nFullName: LORETO MACATANGAY MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3778\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3919\r\nExtensionName: \r\nFirstName: LORETO\r\nFullName: LORETO MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770348	2025-03-14	16:51:56.9553158	<Undetected>	Update	BasicInformationId: 3778\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3920\r\nExtensionName: \r\nFirstName: SOFIA\r\nFullName: SOFIA MACATANGAY MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3778\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3920\r\nExtensionName: \r\nFirstName: SOFIA\r\nFullName: SOFIA MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
770349	2025-03-14	16:51:56.9603161	<Undetected>	Update	BasicInformationId: 3778\r\nBirthDate: June 20, 2010\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3921\r\nExtensionName: \r\nFirstName: YSABELLE\r\nFullName: YSABELLE MACATANGAY MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3778\r\nBirthDate: June 20, 2010\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3921\r\nExtensionName: \r\nFirstName: YSABELLE\r\nFullName: YSABELLE MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770350	2025-03-14	16:51:56.9643150	<Undetected>	Update	BasicInformationId: 3778\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3575\r\n	BasicInformationId: 3778\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3575\r\n	admin	Questionnaires	1
770351	2025-03-14	16:54:10.0328624	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3778\r\nDateOfExamination: May 30, 1993\r\nDateOfRelease: January 23, 1997\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: May 30, 1993\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0029319\r\nPlaceOfExamination: BATANGAS CITY SOUTH ELEMENTARY SCHOOL\r\nRating: 78.3\r\nTitle: PROFESSIONAL BORAD EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
770352	2025-03-14	16:55:49.1413201	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3778\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 06, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 32,099.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: January 01, 2025\r\n	admin	Experiences	1
770353	2025-03-17	10:29:15.0628338	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BATANGAS CITY E-RAISE UP FOR PROFICIENT TEACHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770354	2025-03-17	10:30:54.4746937	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANTONIO, ISLA VERDE\r\nBasicInformationId: 0\r\nBirthDate: January 01, 1965\r\nBirthPlace: SAN ANTONIO, ISLA VERDE, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: edna.mojado@deped.gov.ph\r\nExtensionName: \r\nFirstName: EDNA\r\nFullName: EDNA C. MOJADO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MOJADO\r\nMaidenName: \r\nMiddleName: CUSI\r\nMobileNumber: 09771366067\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANTONIO, ISLA VERDE\r\nPermanentCity: BATANGS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 56\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770358	2025-03-17	10:30:54.6098593	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3779\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FLORENCIO\r\nFullName: FLORENCIO MAGSUMBOL MOJADO\r\nGender: Male\r\nLastName: MOJADO\r\nMaidenName: \r\nMiddleName: MAGSUMBOL\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
770359	2025-03-17	10:30:54.6098593	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3779\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PEDRO\r\nFullName: PEDRO GUNO CUSI\r\nGender: Male\r\nLastName: CUSI\r\nMaidenName: \r\nMiddleName: GUNO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770360	2025-03-17	10:30:54.6098593	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3779\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GLORIA\r\nFullName: GLORIA AMUL POPULI\r\nGender: Female\r\nLastName: POPULI\r\nMaidenName: \r\nMiddleName: AMUL\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
770361	2025-03-17	10:30:54.6108665	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3779\r\nDateOfExamination: November 24, 1985\r\nDateOfRelease: January 01, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: November 24, 1985\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0099378\r\nPlaceOfExamination: QUEZON CITY\r\nRating: 70\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
770362	2025-03-17	10:30:54.6108665	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3779\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
770364	2025-03-17	10:32:57.1395188	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3771\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: REYMAR\r\nFullName: REYMAR ALOT VILLANUEVA\r\nGender: Male\r\nLastName: VILLANUEVA\r\nMaidenName: \r\nMiddleName: ALOT\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
770365	2025-03-17	10:32:57.1494853	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3771\r\nBirthDate: October 13, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: KEN ANDREI\r\nFullName: KEN ANDREI OLIT VILLANUEVA\r\nGender: Male\r\nLastName: VILLANUEVA\r\nMaidenName: \r\nMiddleName: OLIT\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770366	2025-03-17	10:32:57.1544687	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3771\r\nBirthDate: June 24, 2015\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: KIM ARIELLE\r\nFullName: KIM ARIELLE OLIT VILLANUEVA\r\nGender: Male\r\nLastName: VILLANUEVA\r\nMaidenName: \r\nMiddleName: OLIT\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770367	2025-03-17	10:32:57.1634387	<Undetected>	Update	BasicInformationId: 3771\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3568\r\n	BasicInformationId: 3771\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3568\r\n	admin	Questionnaires	1
770369	2025-03-17	10:34:39.4655435	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: VALEDICTORIAN\r\nBasicInformationId: 3771\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1992\r\nDateTo: 1998\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: PARANG ELEMENTARY SCHOOL\r\nYearGraduated: 1998\r\n	admin	EducationalBackgrounds	1
770370	2025-03-17	10:34:39.4705274	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3771\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1998\r\nDateTo: 2002\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAN ANTONIO NATIONAL HIGH SCHOOL\r\nYearGraduated: 2002\r\n	admin	EducationalBackgrounds	1
770371	2025-03-17	10:34:39.4745136	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3771\r\nCourse: \r\nCourseId: 1318\r\nCourseOrMajor: \r\nDateFrom: 2002\r\nDateTo: 2006\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: MINDORO STATE COLLEGE OF AGRICULTURE & TECHNOLOGY\r\nYearGraduated: 2006\r\n	admin	EducationalBackgrounds	1
770372	2025-03-17	10:34:39.4844803	<Undetected>	Update	BasicInformationId: 3771\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3925\r\nExtensionName: \r\nFirstName: REYMAR\r\nFullName: REYMAR ALOT VILLANUEVA\r\nGender: Male\r\nLastName: VILLANUEVA\r\nMaidenName: \r\nMiddleName: ALOT\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3771\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3925\r\nExtensionName: \r\nFirstName: REYMAR\r\nFullName: REYMAR VILLANUEVA\r\nGender: Male\r\nLastName: VILLANUEVA\r\nMaidenName: \r\nMiddleName: ALOT\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
770373	2025-03-17	10:34:39.4894637	<Undetected>	Update	BasicInformationId: 3771\r\nBirthDate: October 13, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3926\r\nExtensionName: \r\nFirstName: KEN ANDREI\r\nFullName: KEN ANDREI OLIT VILLANUEVA\r\nGender: Male\r\nLastName: VILLANUEVA\r\nMaidenName: \r\nMiddleName: OLIT\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3771\r\nBirthDate: October 13, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3926\r\nExtensionName: \r\nFirstName: KEN ANDREI\r\nFullName: KEN ANDREI VILLANUEVA\r\nGender: Male\r\nLastName: VILLANUEVA\r\nMaidenName: \r\nMiddleName: OLIT\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770374	2025-03-17	10:34:39.4974370	<Undetected>	Update	BasicInformationId: 3771\r\nBirthDate: June 24, 2015\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3927\r\nExtensionName: \r\nFirstName: KIM ARIELLE\r\nFullName: KIM ARIELLE OLIT VILLANUEVA\r\nGender: Male\r\nLastName: VILLANUEVA\r\nMaidenName: \r\nMiddleName: OLIT\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3771\r\nBirthDate: June 24, 2015\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3927\r\nExtensionName: \r\nFirstName: KIM ARIELLE\r\nFullName: KIM ARIELLE VILLANUEVA\r\nGender: Male\r\nLastName: VILLANUEVA\r\nMaidenName: \r\nMiddleName: OLIT\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770376	2025-03-17	10:36:31.3198664	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANTONIO, ISLA VERDE\r\nBasicInformationId: 3771\r\nBirthDate: September 24, 1985\r\nBirthPlace: SAN ANTONIO, ISLA VERDE, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: analyn.villanueva004@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANALYN\r\nFullName: ANALYN O. VILLANUEVA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: VILLANUEVA\r\nMaidenName: \r\nMiddleName: OLIT\r\nMobileNumber: 09684979005\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANTONIO, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 46\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANTONIO, ISLA VERDE\r\nBasicInformationId: 3771\r\nBirthDate: September 24, 1985\r\nBirthPlace: SAN ANTONIO, ISLA VERDE, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: analyn.villanueva004@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANALYN\r\nFullName: ANALYN O. VILLANUEVA\r\nGender: Female\r\nGovernmentIdIssuedDate: May 05, 2013\r\nGovernmentIdNumber: 1198046\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: 02004396527\r\nHDMF: 1211-0023-8354\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: VILLANUEVA\r\nMaidenName: \r\nMiddleName: OLIT\r\nMobileNumber: 09684979005\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANTONIO, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 23-001926421-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 437-092-690-0000\r\nWeight: 46\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770381	2025-03-17	10:38:19.5825555	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3771\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09298270559\r\nExtensionName: \r\nFirstName: TEODORICA\r\nLastName: PORCINO\r\nMiddleName: S\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770382	2025-03-17	10:38:19.5995530	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3771\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ANTONIO, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09166474847\r\nExtensionName: \r\nFirstName: JOSE BUHAY\r\nLastName: FATALLA\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770383	2025-03-17	10:38:19.6044831	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3771\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ANTONIO, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09074369644\r\nExtensionName: \r\nFirstName: FRANCISCO\r\nLastName: DE CASTRO\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770384	2025-03-17	10:39:16.8181744	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3771\r\nDateOfExamination: January 29, 2013\r\nDateOfRelease: September 24, 2020\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: January 29, 2013\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1198046\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 77\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
770388	2025-03-17	10:45:33.9059426	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3771\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 29,085.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
770389	2025-03-17	10:45:33.9109261	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3771\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,573.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
770390	2025-03-17	10:45:33.9159092	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3771\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 13, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 26,012.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
770406	2025-03-17	11:00:51.0912046	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3771\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPED BATANGAS CITY\r\nStatus: \r\nToDate: July 17, 2024\r\nTrainingId: 16347\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770377	2025-03-17	10:37:02.0522075	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3778\r\nEmployeeTrainingId: 0\r\nFromDate: October 04, 2021\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-BATANGAS CITY\r\nStatus: \r\nToDate: October 08, 2021\r\nTrainingId: 16514\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770378	2025-03-17	10:37:02.0602838	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3778\r\nEmployeeTrainingId: 0\r\nFromDate: August 30, 2021\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-BATANGAS CITY\r\nStatus: \r\nToDate: September 03, 2021\r\nTrainingId: 16515\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770379	2025-03-17	10:37:02.0652513	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3778\r\nEmployeeTrainingId: 0\r\nFromDate: March 15, 2021\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-BATANGAS CITY\r\nStatus: \r\nToDate: March 19, 2021\r\nTrainingId: 16516\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770380	2025-03-17	10:37:02.0692505	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3778\r\nEmployeeTrainingId: 0\r\nFromDate: July 13, 2020\r\nHours: 12\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-BATANGAS CITY\r\nStatus: \r\nToDate: July 15, 2020\r\nTrainingId: 16517\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770385	2025-03-17	10:39:35.4540581	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3778\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN WEST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09563977545\r\nExtensionName: \r\nFirstName: RUEL\r\nLastName: DE CASTRO\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770386	2025-03-17	10:39:35.4590587	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3778\r\nCharacterReferenceId: 0\r\nCompanyAddress: BANABA WEST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09995115678\r\nExtensionName: \r\nFirstName: ESPERANZA \r\nLastName: LUSANTA\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770387	2025-03-17	10:39:35.4671024	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3778\r\nCharacterReferenceId: 0\r\nCompanyAddress: BANABA WEST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 402-723-9175\r\nExtensionName: \r\nFirstName: CHITO\r\nLastName: MACATANGAY\r\nMiddleName: H\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770403	2025-03-17	10:48:11.3068802	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 375\r\nAddress2: \r\nBarangay: BANABA KANLURAN\r\nBasicInformationId: 3778\r\nBirthDate: August 09, 1970\r\nBirthPlace: BATANGAS CITY\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSALIE.MACATANGAY001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSALIE\r\nFullName: ROSALIE M. MACATANGAY\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nMobileNumber: 09068671057\r\nNationality: Filipino\r\nPermanentAddress1: 375\r\nPermanentAddress2: \r\nPermanentBarangay: BANABA KANLURAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO LOOBAN 1\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO LOOBAN 1\r\nTIN: \r\nWeight: 51\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 375\r\nAddress2: \r\nBarangay: BANABA KANLURAN\r\nBasicInformationId: 3778\r\nBirthDate: August 09, 1970\r\nBirthPlace: BATANGAS CITY\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSALIE.MACATANGAY001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ROSALIE\r\nFullName: ROSALIE M. MACATANGAY\r\nGender: Female\r\nGovernmentIdIssuedDate: May 15, 2010\r\nGovernmentIdNumber: 006-0069-9533-3\r\nGovernmentIdPlaceIssued: BATANAGS CITY\r\nGovernmentIssuedId: GSIS ID\r\nGSIS: 02002996675\r\nHDMF: 1490-0086-7309\r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nMobileNumber: 09068671057\r\nNationality: Filipino\r\nPermanentAddress1: 375\r\nPermanentAddress2: \r\nPermanentBarangay: BANABA KANLURAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO LOOBAN 1\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000012397-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO LOOBAN 1\r\nTIN: 174-453-302-0000\r\nWeight: 51\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770423	2025-03-17	11:06:23.0494762	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 56\r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 0\r\nBirthDate: September 03, 1979\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: LANILYN.DIMACULANGAN@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: LANILYN\r\nFullName: LANILYN A. DIMACULANGAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.64\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437749208\r\nLastName: DIMACULANGAN\r\nMaidenName: \r\nMiddleName: ARANAS\r\nMobileNumber: 09125894836\r\nNationality: Filipino\r\nPermanentAddress1: 56\r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO LAGUNDI\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: SITIO LAGUNDI\r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770424	2025-03-17	11:06:23.0690098	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3780\r\nBirthDate: March 21, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RIE CLAIRE CYNDELLE\r\nFullName: RIE CLAIRE CYNDELLE D CASTILLO\r\nGender: Male\r\nLastName: CASTILLO\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770486	2025-03-17	11:16:42.7077555	<Undetected>	Update	BasicInformationId: 3779\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3576\r\n	BasicInformationId: 3779\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3576\r\n	admin	Questionnaires	1
770391	2025-03-17	10:45:33.9208928	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3771\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,723.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 12, 2022\r\n	admin	Experiences	1
770392	2025-03-17	10:45:33.9258759	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3771\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 24,161.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
770393	2025-03-17	10:45:33.9298628	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3771\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,600.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
770394	2025-03-17	10:45:33.9358425	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3771\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 13, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,038.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
770395	2025-03-17	10:45:33.9398293	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3771\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 12, 2019\r\n	admin	Experiences	1
770396	2025-03-17	10:45:33.9448125	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3771\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
770397	2025-03-17	10:45:33.9487992	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3771\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,620.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
770398	2025-03-17	10:45:33.9537827	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3771\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 12, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
770399	2025-03-17	10:45:33.9587660	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3771\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,007.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 06, 2016\r\n	admin	Experiences	1
770400	2025-03-17	10:45:33.9637492	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3771\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 13, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
770401	2025-03-17	10:45:33.9677359	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3771\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 06, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 3,000.00\r\nPositionHeld: KINDERGARTED TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: March 31, 2013\r\n	admin	Experiences	1
770402	2025-03-17	10:47:06.2206737	<Undetected>	Update	BasicInformationId: 3771\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12400\r\nFromDate: June 12, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	BasicInformationId: 3771\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12400\r\nFromDate: June 13, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
770407	2025-03-17	11:00:51.0991780	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3771\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: NEAP REGION -V-A CALABARZON\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16518\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770408	2025-03-17	11:00:51.1041617	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3771\r\nEmployeeTrainingId: 0\r\nFromDate: July 01, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPED BATANGAS CITY\r\nStatus: \r\nToDate: July 03, 2024\r\nTrainingId: 16519\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770409	2025-03-17	11:00:51.1091448	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3771\r\nEmployeeTrainingId: 0\r\nFromDate: April 26, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPED BATANGAS CITY\r\nStatus: \r\nToDate: April 26, 2024\r\nTrainingId: 16506\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770410	2025-03-17	11:00:51.1131315	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3771\r\nEmployeeTrainingId: 0\r\nFromDate: July 25, 2022\r\nHours: 56\r\nNatureOfParticipation: \r\nSponsoringAgency: NEAP REGION IV-A CALABARZON\r\nStatus: \r\nToDate: August 02, 2022\r\nTrainingId: 16397\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770411	2025-03-17	11:01:09.7195696	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3771\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
770412	2025-03-17	11:01:09.7305331	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3771\r\nSkillId: 0\r\nSkillName: DRAWING\r\n	admin	Skills	1
770413	2025-03-17	11:03:53.5920211	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3770\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: REYNALDO\r\nFullName: REYNALDO MALIBIRAN GONZALES\r\nGender: Male\r\nLastName: GONZALES\r\nMaidenName: \r\nMiddleName: MALIBIRAN\r\nOccupation: RIGGER FOREMAN\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
770414	2025-03-17	11:03:53.6130825	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3770\r\nBirthDate: February 20, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: REEYAN MARCO\r\nFullName: REEYAN MARCO BAJA GONZALES\r\nGender: Male\r\nLastName: GONZALES\r\nMaidenName: \r\nMiddleName: BAJA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770415	2025-03-17	11:03:53.6250862	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3770\r\nBirthDate: March 24, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RHIZ MAYUMI\r\nFullName: RHIZ MAYUMI BAJA GONZALES\r\nGender: Male\r\nLastName: GONZALES\r\nMaidenName: \r\nMiddleName: BAJA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770416	2025-03-17	11:03:53.6290787	<Undetected>	Update	BasicInformationId: 3770\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3567\r\n	BasicInformationId: 3770\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3567\r\n	admin	Questionnaires	1
770417	2025-03-17	11:05:21.6116151	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3770\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1987\r\nDateTo: 1993\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: LIPONPON ELEMENTARY SCHOOL\r\nYearGraduated: 1993\r\n	admin	EducationalBackgrounds	1
770418	2025-03-17	11:05:21.6225784	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3770\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1993\r\nDateTo: 1997\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGUSTIN NATIONAL HIGH SCHOOL\r\nYearGraduated: 1997\r\n	admin	EducationalBackgrounds	1
770419	2025-03-17	11:05:21.6265653	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3770\r\nCourse: \r\nCourseId: 1270\r\nCourseOrMajor: \r\nDateFrom: 1997\r\nDateTo: 2001\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2001\r\n	admin	EducationalBackgrounds	1
770420	2025-03-17	11:05:21.6355349	<Undetected>	Update	BasicInformationId: 3770\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3928\r\nExtensionName: \r\nFirstName: REYNALDO\r\nFullName: REYNALDO MALIBIRAN GONZALES\r\nGender: Male\r\nLastName: GONZALES\r\nMaidenName: \r\nMiddleName: MALIBIRAN\r\nOccupation: RIGGER FOREMAN\r\nRelationship: Husband\r\n	BasicInformationId: 3770\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3928\r\nExtensionName: \r\nFirstName: REYNALDO\r\nFullName: REYNALDO GONZALES\r\nGender: Male\r\nLastName: GONZALES\r\nMaidenName: \r\nMiddleName: MALIBIRAN\r\nOccupation: RIGGER FOREMAN\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
770421	2025-03-17	11:05:21.6405184	<Undetected>	Update	BasicInformationId: 3770\r\nBirthDate: February 20, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3929\r\nExtensionName: \r\nFirstName: REEYAN MARCO\r\nFullName: REEYAN MARCO BAJA GONZALES\r\nGender: Male\r\nLastName: GONZALES\r\nMaidenName: \r\nMiddleName: BAJA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3770\r\nBirthDate: February 20, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3929\r\nExtensionName: \r\nFirstName: REEYAN MARCO\r\nFullName: REEYAN MARCO GONZALES\r\nGender: Male\r\nLastName: GONZALES\r\nMaidenName: \r\nMiddleName: BAJA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770422	2025-03-17	11:05:21.6455006	<Undetected>	Update	BasicInformationId: 3770\r\nBirthDate: March 24, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3930\r\nExtensionName: \r\nFirstName: RHIZ MAYUMI\r\nFullName: RHIZ MAYUMI BAJA GONZALES\r\nGender: Male\r\nLastName: GONZALES\r\nMaidenName: \r\nMiddleName: BAJA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3770\r\nBirthDate: March 24, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3930\r\nExtensionName: \r\nFirstName: RHIZ MAYUMI\r\nFullName: RHIZ MAYUMI GONZALES\r\nGender: Male\r\nLastName: GONZALES\r\nMaidenName: \r\nMiddleName: BAJA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770439	2025-03-17	11:07:55.1517054	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIPONPON\r\nBasicInformationId: 3770\r\nBirthDate: June 22, 1981\r\nBirthPlace: LIPONPON, ISLA VERDE\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: myla.gonzales002@deped.gov.ph\r\nExtensionName: \r\nFirstName: MYLA\r\nFullName: MYLA B. GONZALES\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GONZALES\r\nMaidenName: \r\nMiddleName: BAJA\r\nMobileNumber: 09605572141\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIPONPON\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 56\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIPONPON\r\nBasicInformationId: 3770\r\nBirthDate: June 22, 1981\r\nBirthPlace: LIPONPON, ISLA VERDE\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: myla.gonzales002@deped.gov.ph\r\nExtensionName: \r\nFirstName: MYLA\r\nFullName: MYLA B. GONZALES\r\nGender: Female\r\nGovernmentIdIssuedDate: November 24, 2003\r\nGovernmentIdNumber: 0820926\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: 02002511754\r\nHDMF: 0449-0798-9406\r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GONZALES\r\nMaidenName: \r\nMiddleName: BAJA\r\nMobileNumber: 09605572141\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIPONPON\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000063590-0\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 301-853-264-0000\r\nWeight: 56\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770443	2025-03-17	11:09:18.8517428	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3770\r\nCharacterReferenceId: 0\r\nCompanyAddress: TALUMPOK, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: SACORO\r\nLastName: COMIA\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770444	2025-03-17	11:09:18.8567261	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3770\r\nCharacterReferenceId: 0\r\nCompanyAddress: ANALYN SUBDIVISION, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 092086442920\r\nExtensionName: \r\nFirstName: RAYMUNDO\r\nLastName: GUNO\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770445	2025-03-17	11:09:18.8617097	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3770\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN PASCUAL, BATANGAS\r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: ROMMEL\r\nLastName: ROSALES\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770446	2025-03-17	11:10:12.6103971	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3770\r\nDateOfExamination: August 30, 2003\r\nDateOfRelease: June 22, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 30, 2003\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0820926\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 76.4\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
770487	2025-03-17	11:17:40.6505996	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3770\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 31,189.42\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
770488	2025-03-17	11:17:40.6565796	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3770\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,160.17\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
770489	2025-03-17	11:17:40.6605663	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3770\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 28,161.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
770490	2025-03-17	11:17:40.6655496	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3770\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,865.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: July 31, 2023\r\n	admin	Experiences	1
770425	2025-03-17	11:06:23.0690098	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3780\r\nBirthDate: March 21, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RIE CLAIRE CYNDELLE\r\nFullName: RIE CLAIRE CYNDELLE D CASTILLO\r\nGender: Male\r\nLastName: CASTILLO\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770426	2025-03-17	11:06:23.0690098	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3780\r\nBirthDate: September 15, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RIO GIAN CARLO\r\nFullName: RIO GIAN CARLO A DIMACULANGAN\r\nGender: Male\r\nLastName: DIMACULANGAN\r\nMaidenName: \r\nMiddleName: A\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770427	2025-03-17	11:06:23.0690098	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3780\r\nBirthDate: June 22, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: REENA LEIGH\r\nFullName: REENA LEIGH A DIMACULANGAN\r\nGender: Male\r\nLastName: DIMACULANGAN\r\nMaidenName: \r\nMiddleName: A\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770428	2025-03-17	11:06:23.0690098	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3780\r\nBirthDate: September 15, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RIO GIAN CARLO\r\nFullName: RIO GIAN CARLO A DIMACULANGAN\r\nGender: Male\r\nLastName: DIMACULANGAN\r\nMaidenName: \r\nMiddleName: A\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770429	2025-03-17	11:06:23.0690098	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3780\r\nBirthDate: February 16, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RAHYAN MARC ALEXIS\r\nFullName: RAHYAN MARC ALEXIS A DIMACULANGAN\r\nGender: Male\r\nLastName: DIMACULANGAN\r\nMaidenName: \r\nMiddleName: A\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770430	2025-03-17	11:06:23.0690098	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3780\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
770431	2025-03-17	11:07:00.0655215	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 56\r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3780\r\nBirthDate: September 03, 1979\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: LANILYN.DIMACULANGAN@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: LANILYN\r\nFullName: LANILYN A. DIMACULANGAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.64\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437749208\r\nLastName: DIMACULANGAN\r\nMaidenName: \r\nMiddleName: ARANAS\r\nMobileNumber: 09125894836\r\nNationality: Filipino\r\nPermanentAddress1: 56\r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO LAGUNDI\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: SITIO LAGUNDI\r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 56\r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3780\r\nBirthDate: September 03, 1979\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: LANILYN.DIMACULANGAN@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: LANILYN\r\nFullName: LANILYN A. DIMACULANGAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.64\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437749208\r\nLastName: DIMACULANGAN\r\nMaidenName: \r\nMiddleName: ARANAS\r\nMobileNumber: 09125894836\r\nNationality: Filipino\r\nPermanentAddress1: 56\r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO LAGUNDI\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO LAGUNDI\r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770432	2025-03-17	11:07:00.0795206	<Undetected>	Update	BasicInformationId: 3780\r\nBirthDate: March 21, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3932\r\nExtensionName: \r\nFirstName: RIE CLAIRE CYNDELLE\r\nFullName: RIE CLAIRE CYNDELLE D CASTILLO\r\nGender: Male\r\nLastName: CASTILLO\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3780\r\nBirthDate: March 21, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3932\r\nExtensionName: \r\nFirstName: RIE CLAIRE CYNDELLE\r\nFullName: RIE CLAIRE CYNDELLE CASTILLO\r\nGender: Male\r\nLastName: CASTILLO\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770433	2025-03-17	11:07:00.0967483	<Undetected>	Update	BasicInformationId: 3780\r\nBirthDate: September 15, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3933\r\nExtensionName: \r\nFirstName: RIO GIAN CARLO\r\nFullName: RIO GIAN CARLO A DIMACULANGAN\r\nGender: Male\r\nLastName: DIMACULANGAN\r\nMaidenName: \r\nMiddleName: A\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3780\r\nBirthDate: September 15, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3933\r\nExtensionName: \r\nFirstName: RIO GIAN CARLO\r\nFullName: RIO GIAN CARLO DIMACULANGAN\r\nGender: Male\r\nLastName: DIMACULANGAN\r\nMaidenName: \r\nMiddleName: A\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770434	2025-03-17	11:07:00.1007479	<Undetected>	Update	BasicInformationId: 3780\r\nBirthDate: June 22, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3934\r\nExtensionName: \r\nFirstName: REENA LEIGH\r\nFullName: REENA LEIGH A DIMACULANGAN\r\nGender: Male\r\nLastName: DIMACULANGAN\r\nMaidenName: \r\nMiddleName: A\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3780\r\nBirthDate: June 22, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3934\r\nExtensionName: \r\nFirstName: REENA LEIGH\r\nFullName: REENA LEIGH DIMACULANGAN\r\nGender: Male\r\nLastName: DIMACULANGAN\r\nMaidenName: \r\nMiddleName: A\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770653	2025-03-17	13:21:27.1170392	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3781\r\nCharacterReferenceId: 0\r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: 09563977545\r\nExtensionName: \r\nFirstName: RUEL\r\nLastName: DE CASTRO\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770435	2025-03-17	11:07:00.1097483	<Undetected>	Update	BasicInformationId: 3780\r\nBirthDate: February 16, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3936\r\nExtensionName: \r\nFirstName: RAHYAN MARC ALEXIS\r\nFullName: RAHYAN MARC ALEXIS A DIMACULANGAN\r\nGender: Male\r\nLastName: DIMACULANGAN\r\nMaidenName: \r\nMiddleName: A\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3780\r\nBirthDate: February 16, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3936\r\nExtensionName: \r\nFirstName: RAHYAN MARC ALEXIS\r\nFullName: RAHYAN MARC ALEXIS DIMACULANGAN\r\nGender: Male\r\nLastName: DIMACULANGAN\r\nMaidenName: \r\nMiddleName: A\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770436	2025-03-17	11:07:00.1137477	<Undetected>	Update	BasicInformationId: 3780\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3577\r\n	BasicInformationId: 3780\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3577\r\n	admin	Questionnaires	1
770437	2025-03-17	11:07:00.1197479	<Undetected>	Delete	BasicInformationId: 3780\r\nBirthDate: March 21, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3931\r\nExtensionName: \r\nFirstName: RIE CLAIRE CYNDELLE\r\nFullName: RIE CLAIRE CYNDELLE D CASTILLO\r\nGender: Male\r\nLastName: CASTILLO\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	admin	EmployeeRelatives	1
770438	2025-03-17	11:07:00.1237478	<Undetected>	Delete	BasicInformationId: 3780\r\nBirthDate: September 15, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3935\r\nExtensionName: \r\nFirstName: RIO GIAN CARLO\r\nFullName: RIO GIAN CARLO A DIMACULANGAN\r\nGender: Male\r\nLastName: DIMACULANGAN\r\nMaidenName: \r\nMiddleName: A\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	admin	EmployeeRelatives	1
770440	2025-03-17	11:08:44.2596946	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3780\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: REYNANTE\r\nFullName: REYNANTE MJANALO DIMACULANGAN\r\nGender: Male\r\nLastName: DIMACULANGAN\r\nMaidenName: \r\nMiddleName: MJANALO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
770441	2025-03-17	11:08:44.2706935	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3780\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ARSENIO\r\nFullName: ARSENIO MACATANGAY ARANAS\r\nGender: Male\r\nLastName: ARANAS\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770442	2025-03-17	11:08:44.2746937	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3780\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SALUD\r\nFullName: SALUD PAGLICAUAN DE VILLA\r\nGender: Male\r\nLastName: DE VILLA\r\nMaidenName: \r\nMiddleName: PAGLICAUAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
770447	2025-03-17	11:16:03.8557467	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3780\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1986\r\nDateTo: 1992\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BANABA WEST ELEMENTARY SCHOOL\r\nYearGraduated: 1992\r\n	admin	EducationalBackgrounds	1
770448	2025-03-17	11:16:03.8692607	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3780\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1992\r\nDateTo: 1996\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 1996\r\n	admin	EducationalBackgrounds	1
770449	2025-03-17	11:16:03.8732603	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3780\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 2004\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MAJOR IN MATHEMATICS\r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 2004\r\n	admin	EducationalBackgrounds	1
770450	2025-03-17	11:16:03.8802602	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3780\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2009\r\nDateTo: 2014\r\nEducationalAttainment: 27\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
770451	2025-03-17	11:16:03.8842601	<Undetected>	Update	BasicInformationId: 3780\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3937\r\nExtensionName: \r\nFirstName: REYNANTE\r\nFullName: REYNANTE MJANALO DIMACULANGAN\r\nGender: Male\r\nLastName: DIMACULANGAN\r\nMaidenName: \r\nMiddleName: MJANALO\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3780\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3937\r\nExtensionName: \r\nFirstName: REYNANTE\r\nFullName: REYNANTE DIMACULANGAN\r\nGender: Male\r\nLastName: DIMACULANGAN\r\nMaidenName: \r\nMiddleName: MJANALO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
770452	2025-03-17	11:16:03.8932611	<Undetected>	Update	BasicInformationId: 3780\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3938\r\nExtensionName: \r\nFirstName: ARSENIO\r\nFullName: ARSENIO MACATANGAY ARANAS\r\nGender: Male\r\nLastName: ARANAS\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3780\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3938\r\nExtensionName: \r\nFirstName: ARSENIO\r\nFullName: ARSENIO ARANAS\r\nGender: Male\r\nLastName: ARANAS\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770453	2025-03-17	11:16:03.8972601	<Undetected>	Update	BasicInformationId: 3780\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3939\r\nExtensionName: \r\nFirstName: SALUD\r\nFullName: SALUD PAGLICAUAN DE VILLA\r\nGender: Male\r\nLastName: DE VILLA\r\nMaidenName: \r\nMiddleName: PAGLICAUAN\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3780\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3939\r\nExtensionName: \r\nFirstName: SALUD\r\nFullName: SALUD DE VILLA\r\nGender: Male\r\nLastName: DE VILLA\r\nMaidenName: \r\nMiddleName: PAGLICAUAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
770501	2025-03-17	11:17:40.6486672	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3780\r\nDateOfExamination: August 14, 2005\r\nDateOfRelease: September 03, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 14, 2005\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 09454274\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 76.0\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
770502	2025-03-17	11:20:34.5192328	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3780\r\nCompanyInstitution: DEPARTMENT OF EDUCATION- SCHOOLS DIVISION OFFICE\r\nExperienceId: 0\r\nFromDate: November 06, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 30,989.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: January 01, 2025\r\n	admin	Experiences	1
770503	2025-03-17	11:20:34.5242331	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3780\r\nCompanyInstitution: DEPARTMENT OF EDUCATION-SCHOOLS DIVISION OFFICE\r\nExperienceId: 0\r\nFromDate: June 10, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 22,149.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: November 05, 2018\r\n	admin	Experiences	1
770509	2025-03-17	11:22:37.5365115	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPACITY BUILDING FOR GRADES 4-6 ENCIMA TEACHERS ON THE IMPLEMENTATION OF END-OF-SCHOOL YEAR (EOSY) BREAK REMEDIATION ACTIVITIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770518	2025-03-17	11:25:17.6008924	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT VIII ON THE CRAFTING OF THE SCHOOL'S CONTIGENCY AND SAFETY PLAN\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770519	2025-03-17	11:27:15.8485417	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT VIII ORIENTATION ON NATIONAL LEARNING CAMP (NATIONAL LEARNING)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770525	2025-03-17	11:28:58.8706718	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL LEARNING ACTION CELL PROGRAM 2024\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770532	2025-03-17	11:30:51.4238774	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3780\r\nEmployeeTrainingId: 0\r\nFromDate: November 18, 2024\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OFFICE OF BATANGAS CITY\r\nStatus: \r\nToDate: November 20, 2024\r\nTrainingId: 16520\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770533	2025-03-17	11:30:51.4338834	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3780\r\nEmployeeTrainingId: 0\r\nFromDate: September 17, 2024\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OFFICE OF BATANGAS CITY- DISTRICT VIII\r\nStatus: \r\nToDate: September 17, 2024\r\nTrainingId: 16521\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770534	2025-03-17	11:30:51.4388764	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3780\r\nEmployeeTrainingId: 0\r\nFromDate: May 31, 2024\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BANABA WEST ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: May 31, 2024\r\nTrainingId: 16522\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770535	2025-03-17	11:30:51.4438764	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3780\r\nEmployeeTrainingId: 0\r\nFromDate: May 03, 2024\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BANABA WEST ELEMENTRAY SCHOOL\r\nStatus: \r\nToDate: May 03, 2024\r\nTrainingId: 16523\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770536	2025-03-17	11:30:51.4488792	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3780\r\nEmployeeTrainingId: 0\r\nFromDate: January 26, 2024\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BANABA WEST ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16404\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770544	2025-03-17	11:32:13.0986590	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3780\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
770545	2025-03-17	11:32:13.1101674	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3780\r\nSkillId: 0\r\nSkillName: DRIVING MANUAL CAR\r\n	admin	Skills	1
770546	2025-03-17	11:32:13.1141661	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3780\r\nSkillId: 0\r\nSkillName: DRIVING AUTOMATIC MOTORCYCLE\r\n	admin	Skills	1
770454	2025-03-17	11:16:42.5536577	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3779\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH SCHOOLDEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 27,064.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
770455	2025-03-17	11:16:42.5577084	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3779\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: June 13, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 25,545.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
770456	2025-03-17	11:16:42.5627247	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3779\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 25,232.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: June 12, 2019\r\n	admin	Experiences	1
770457	2025-03-17	11:16:42.5677594	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3779\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 24,224.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
770458	2025-03-17	11:16:42.5727589	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3779\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 23,257.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
770459	2025-03-17	11:16:42.5767586	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3779\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: June 13, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 22,328.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
770460	2025-03-17	11:16:42.5819295	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3779\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: July 02, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 20,140.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
770461	2025-03-17	11:16:42.5859529	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3779\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 19,495.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: July 01, 2012\r\n	admin	Experiences	1
770462	2025-03-17	11:16:42.5910465	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3779\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,227.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
770463	2025-03-17	11:16:42.5960633	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3779\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 16,959.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
770464	2025-03-17	11:16:42.6010800	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3779\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 15,691.00\r\nPositionHeld: TEAHCER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
772134	2025-03-18	16:07:53.8453781	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2024 STORYBOOK TRAINING WORKSHOP AND COMPETITION (2024 TEODORA ALFONSO)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770465	2025-03-17	11:16:42.6051458	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3779\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 13,608.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
770466	2025-03-17	11:16:42.6102173	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3779\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 12,371.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
770467	2025-03-17	11:16:42.6142301	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3779\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 11,256.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
770468	2025-03-17	11:16:42.6202862	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3779\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: November 01, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 10,704.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2006\r\n	admin	Experiences	1
770469	2025-03-17	11:16:42.6242993	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3779\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 10,442.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: October 31, 2005\r\n	admin	Experiences	1
770470	2025-03-17	11:16:42.6293166	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3779\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 9,949.00\r\nPositionHeld: TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
770471	2025-03-17	11:16:42.6333540	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3779\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: August 15, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 8,874.33\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: -\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
770472	2025-03-17	11:16:42.6383702	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3779\r\nCompanyInstitution: WENCESLAO TRINIDAD MEMORIAL NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: November 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 8,874.33\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: August 14, 1998\r\n	admin	Experiences	1
770473	2025-03-17	11:16:42.6433940	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3779\r\nCompanyInstitution: WENCESLAO TRINIDAD MEMORIAL NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 7,558.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: March 31, 1997\r\n	admin	Experiences	1
770474	2025-03-17	11:16:42.6485123	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3779\r\nCompanyInstitution: WENCESLAO TRINIDAD MEMORIAL NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 6,075.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 1996\r\n	admin	Experiences	1
770475	2025-03-17	11:16:42.6539807	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3779\r\nCompanyInstitution: WENCESLAO TRINIDAD MEMORIAL NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 1955\r\nIsGovernmentService: True\r\nMonthlySalary: 4,933.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 1995\r\n	admin	Experiences	1
770552	2025-03-17	11:32:11.7217007	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3779\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09076854205\r\nExtensionName: \r\nFirstName: TEODORICA\r\nLastName: PORCINO\r\nMiddleName: S.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770476	2025-03-17	11:16:42.6592435	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3779\r\nCompanyInstitution: WENCESLAO TRINIDAD MEMORIAL NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 4,076.33\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 1994\r\n	admin	Experiences	1
770477	2025-03-17	11:16:42.6644929	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3779\r\nCompanyInstitution: WENCESLAO TRINIDAD MEMORIAL NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 1989\r\nIsGovernmentService: True\r\nMonthlySalary: 3,102.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1993\r\n	admin	Experiences	1
770478	2025-03-17	11:16:42.6695016	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3779\r\nCompanyInstitution: WENCESLAO TRINIDAD MEMORIAL NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 1988\r\nIsGovernmentService: True\r\nMonthlySalary: 1,764.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 1989\r\n	admin	Experiences	1
770479	2025-03-17	11:16:42.6735089	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3779\r\nCompanyInstitution: WENCESLAO TRINIDAD MEMORIAL NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: December 31, 1987\r\nIsGovernmentService: True\r\nMonthlySalary: 1,604.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: March 01, 1988\r\n	admin	Experiences	1
770480	2025-03-17	11:16:42.6785289	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3779\r\nCompanyInstitution: WENCESLAO TRINIDAD MEMORIAL NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 14, 1987\r\nIsGovernmentService: True\r\nMonthlySalary: 1,337.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-0\r\nStatus: Permanent\r\nToDate: February 28, 1987\r\n	admin	Experiences	1
770481	2025-03-17	11:16:42.6835511	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3779\r\nCompanyInstitution: WENCESLAO TRINIDAD MEMORIAL NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: September 24, 1985\r\nIsGovernmentService: True\r\nMonthlySalary: 1,053.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-0\r\nStatus: Permanent\r\nToDate: October 23, 1985\r\n	admin	Experiences	1
770482	2025-03-17	11:16:42.6885594	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANTONIO, ISLA VERDE\r\nBasicInformationId: 3779\r\nBirthDate: January 01, 1965\r\nBirthPlace: SAN ANTONIO, ISLA VERDE, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: edna.mojado@deped.gov.ph\r\nExtensionName: \r\nFirstName: EDNA\r\nFullName: EDNA C. MOJADO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MOJADO\r\nMaidenName: \r\nMiddleName: CUSI\r\nMobileNumber: 09771366067\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANTONIO, ISLA VERDE\r\nPermanentCity: BATANGS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 56\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANTONIO, ISLA VERDE\r\nBasicInformationId: 3779\r\nBirthDate: January 01, 1965\r\nBirthPlace: SAN ANTONIO, ISLA VERDE, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: edna.mojado@deped.gov.ph\r\nExtensionName: \r\nFirstName: EDNA\r\nFullName: EDNA C. MOJADO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MOJADO\r\nMaidenName: \r\nMiddleName: CUSI\r\nMobileNumber: 09771366067\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANTONIO, ISLA VERDE\r\nPermanentCity: BATANGS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 56\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770483	2025-03-17	11:16:42.6935675	<Undetected>	Update	BasicInformationId: 3779\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3922\r\nExtensionName: \r\nFirstName: FLORENCIO\r\nFullName: FLORENCIO MAGSUMBOL MOJADO\r\nGender: Male\r\nLastName: MOJADO\r\nMaidenName: \r\nMiddleName: MAGSUMBOL\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3779\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3922\r\nExtensionName: \r\nFirstName: FLORENCIO\r\nFullName: FLORENCIO MOJADO\r\nGender: Male\r\nLastName: MOJADO\r\nMaidenName: \r\nMiddleName: MAGSUMBOL\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
770484	2025-03-17	11:16:42.6986025	<Undetected>	Update	BasicInformationId: 3779\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3923\r\nExtensionName: \r\nFirstName: PEDRO\r\nFullName: PEDRO GUNO CUSI\r\nGender: Male\r\nLastName: CUSI\r\nMaidenName: \r\nMiddleName: GUNO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3779\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3923\r\nExtensionName: \r\nFirstName: PEDRO\r\nFullName: PEDRO CUSI\r\nGender: Male\r\nLastName: CUSI\r\nMaidenName: \r\nMiddleName: GUNO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770485	2025-03-17	11:16:42.7026085	<Undetected>	Update	BasicInformationId: 3779\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3924\r\nExtensionName: \r\nFirstName: GLORIA\r\nFullName: GLORIA AMUL POPULI\r\nGender: Female\r\nLastName: POPULI\r\nMaidenName: \r\nMiddleName: AMUL\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3779\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3924\r\nExtensionName: \r\nFirstName: GLORIA\r\nFullName: GLORIA POPULI\r\nGender: Female\r\nLastName: POPULI\r\nMaidenName: \r\nMiddleName: AMUL\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
770491	2025-03-17	11:17:40.6705329	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3770\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 26,304.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
770492	2025-03-17	11:17:40.6755165	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3770\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 24,742.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
770493	2025-03-17	11:17:40.6804996	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3770\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 23,181.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
770494	2025-03-17	11:17:40.6844862	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3770\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,889.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: July 31, 2020\r\n	admin	Experiences	1
770495	2025-03-17	11:17:40.6894695	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3770\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,327.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
770496	2025-03-17	11:17:40.6944529	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3770\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,698.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
770497	2025-03-17	11:17:40.6984395	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3770\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 20,088.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
770498	2025-03-17	11:17:40.7034229	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3770\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,853.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: July 31, 2017\r\n	admin	Experiences	1
770499	2025-03-17	11:17:40.7084064	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3770\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,286.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
770500	2025-03-17	11:17:40.7133898	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3770\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 01, 2014\r\nIsGovernmentService: False\r\nMonthlySalary: 18,735.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
770510	2025-03-17	11:23:19.0521589	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3770\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: July 31, 2014\r\n	admin	Experiences	1
770511	2025-03-17	11:23:19.0581390	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3770\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 17,099.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
770504	2025-03-17	11:21:41.1733844	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3779\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 33,499.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: March 17, 2025\r\n	admin	Experiences	1
770505	2025-03-17	11:21:41.1804453	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3779\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,949.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Probationary\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
770506	2025-03-17	11:21:41.1844514	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3779\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: June 13, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 30,427.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
770507	2025-03-17	11:21:41.1894616	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3779\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 30,111.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: June 12, 2022\r\n	admin	Experiences	1
770508	2025-03-17	11:21:41.1944689	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3779\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 28,589.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
770520	2025-03-17	11:27:18.5759632	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3779\r\nEmployeeTrainingId: 0\r\nFromDate: April 18, 2024\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: CPDCFT TRAINING CENTER\r\nStatus: \r\nToDate: April 19, 2024\r\nTrainingId: 16494\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770521	2025-03-17	11:27:18.5809730	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3779\r\nEmployeeTrainingId: 0\r\nFromDate: March 30, 2024\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: CPDCFT TRAINING CENTER\r\nStatus: \r\nToDate: March 31, 2024\r\nTrainingId: 16495\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770522	2025-03-17	11:27:18.5859955	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3779\r\nEmployeeTrainingId: 0\r\nFromDate: March 23, 2024\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: CPDCFT TRAINING CENTER\r\nStatus: \r\nToDate: March 24, 2024\r\nTrainingId: 16496\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770523	2025-03-17	11:27:18.5910034	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3779\r\nEmployeeTrainingId: 0\r\nFromDate: March 09, 2024\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: CPDCFT TRAINING CENTER\r\nStatus: \r\nToDate: March 10, 2024\r\nTrainingId: 16497\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770524	2025-03-17	11:27:18.5960126	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3779\r\nEmployeeTrainingId: 0\r\nFromDate: August 30, 2021\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: NEAP REGION IV-A CALABARZON\r\nStatus: \r\nToDate: September 03, 2021\r\nTrainingId: 16409\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770547	2025-03-17	11:32:11.6911558	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3779\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
770548	2025-03-17	11:32:11.6966724	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3779\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
770549	2025-03-17	11:32:11.7073925	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3779\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
770550	2025-03-17	11:32:11.7115392	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3779\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ANTONIO, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09602114973\r\nExtensionName: \r\nFirstName: JOSE\r\nLastName: FATALLA\r\nMiddleName: BUHAY\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770551	2025-03-17	11:32:11.7166922	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3779\r\nCharacterReferenceId: 0\r\nCompanyAddress: BOLBOK, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09209680729\r\nExtensionName: \r\nFirstName: DANDY\r\nLastName: EBORA\r\nMiddleName: G.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770512	2025-03-17	11:23:19.0631222	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3770\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 17,099.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: July 31, 2011\r\n	admin	Experiences	1
770513	2025-03-17	11:23:19.0681058	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3770\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 16, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 15,649.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
770514	2025-03-17	11:23:19.0720922	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3770\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 13,333.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: July 15, 2010\r\n	admin	Experiences	1
770515	2025-03-17	11:23:19.0770754	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3770\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 06, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2009\r\n	admin	Experiences	1
770516	2025-03-17	11:23:19.0820590	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3770\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 06, 2004\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Substitute\r\nToDate: November 12, 2005\r\n	admin	Experiences	1
770517	2025-03-17	11:23:19.0870423	<Undetected>	Update	BasicInformationId: 3770\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12445\r\nFromDate: August 01, 2014\r\nIsGovernmentService: False\r\nMonthlySalary: 18,735.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	BasicInformationId: 3770\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12445\r\nFromDate: August 01, 2014\r\nIsGovernmentService: False\r\nMonthlySalary: 18,735.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
770526	2025-03-17	11:29:20.4537992	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ENHANCING THE CAPABILITY OF SCHOOL HEADS AND TEACHERS IN THE IMPLEMENTATION OF PROFESSIONAL PROGRAM VIA SCHOOL LEARNING ACTION CELL BATCH 2-CLUSTER1 (DISTRICT 10)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770527	2025-03-17	11:29:49.9059040	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3770\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPED BATANGAS CITY\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16470\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770528	2025-03-17	11:29:49.9128807	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3770\r\nEmployeeTrainingId: 0\r\nFromDate: April 26, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPED BATANGAS CITY\r\nStatus: \r\nToDate: April 26, 2024\r\nTrainingId: 16506\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770529	2025-03-17	11:29:49.9178644	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3770\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPED BATANGAS CITY\r\nStatus: \r\nToDate: January 27, 2024\r\nTrainingId: 16341\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770530	2025-03-17	11:29:49.9228476	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3770\r\nEmployeeTrainingId: 0\r\nFromDate: July 18, 2023\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPED BATANGAS CITY\r\nStatus: \r\nToDate: July 20, 2023\r\nTrainingId: 15617\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770531	2025-03-17	11:29:49.9278310	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3770\r\nEmployeeTrainingId: 0\r\nFromDate: July 25, 2022\r\nHours: 56\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPED BATANGAS CITY\r\nStatus: \r\nToDate: August 02, 2022\r\nTrainingId: 16524\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770537	2025-03-17	11:31:02.6278651	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3770\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
770538	2025-03-17	11:31:02.6328485	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3770\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
770564	2025-03-17	11:38:12.6331240	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3773\r\nCharacterReferenceId: 0\r\nCompanyAddress: BOLBOK, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09209680729\r\nExtensionName: \r\nFirstName: DANDY\r\nLastName: EBORA\r\nMiddleName: G\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770539	2025-03-17	11:31:51.8271058	<Undetected>	Update	BasicInformationId: 3773\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3900\r\nExtensionName: \r\nFirstName: ROMEL\r\nFullName: ROMEL CUETO AMUL\r\nGender: Male\r\nLastName: AMUL\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3773\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3900\r\nExtensionName: \r\nFirstName: ROMEL\r\nFullName: ROMEL AMUL\r\nGender: Male\r\nLastName: AMUL\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770540	2025-03-17	11:31:51.8310922	<Undetected>	Update	BasicInformationId: 3773\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3901\r\nExtensionName: \r\nFirstName: SERAPIO\r\nFullName: SERAPIO EVANGELISTA DUTADO\r\nGender: Male\r\nLastName: DUTADO\r\nMaidenName: \r\nMiddleName: EVANGELISTA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3773\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3901\r\nExtensionName: \r\nFirstName: SERAPIO\r\nFullName: SERAPIO DUTADO\r\nGender: Male\r\nLastName: DUTADO\r\nMaidenName: \r\nMiddleName: EVANGELISTA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770541	2025-03-17	11:31:51.8450475	<Undetected>	Update	BasicInformationId: 3773\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3902\r\nExtensionName: \r\nFirstName: ZANAIDA\r\nFullName: ZANAIDA RAYOS CUETO\r\nGender: Female\r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: RAYOS\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3773\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3902\r\nExtensionName: \r\nFirstName: ZANAIDA\r\nFullName: ZANAIDA CUETO\r\nGender: Female\r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: RAYOS\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
770542	2025-03-17	11:31:51.8580017	<Undetected>	Update	BasicInformationId: 3773\r\nBirthDate: October 08, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3903\r\nExtensionName: \r\nFirstName: RHIANNA IVONNE\r\nFullName: RHIANNA IVONNE DUTADO AMUL\r\nGender: Male\r\nLastName: AMUL\r\nMaidenName: \r\nMiddleName: DUTADO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3773\r\nBirthDate: October 08, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3903\r\nExtensionName: \r\nFirstName: RHIANNA IVONNE\r\nFullName: RHIANNA IVONNE AMUL\r\nGender: Male\r\nLastName: AMUL\r\nMaidenName: \r\nMiddleName: DUTADO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770543	2025-03-17	11:31:51.8719565	<Undetected>	Update	BasicInformationId: 3773\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3570\r\n	BasicInformationId: 3773\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3570\r\n	admin	Questionnaires	1
770554	2025-03-17	11:32:39.4785221	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIPONPON, ISLA VERDE\r\nBasicInformationId: 3772\r\nBirthDate: December 01, 1981\r\nBirthPlace: LIPONPON ISLA VERDE, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: charill.dimasacat001@deped.gov.ph\r\nExtensionName: \r\nFirstName: CHARILL\r\nFullName: CHARILL E. DIMASACAT\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: 709083\r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: PRC\r\nGSIS: 81011200389\r\nHDMF: 0401-5295-9806\r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DIMASACAT\r\nMaidenName: \r\nMiddleName: EBORA\r\nMobileNumber: 09396237887\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIPONPON, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000081985-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 934-873-660-0000\r\nWeight: 65\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIPONPON, ISLA VERDE\r\nBasicInformationId: 3772\r\nBirthDate: December 01, 1981\r\nBirthPlace: LIPONPON ISLA VERDE, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: charill.dimasacat001@deped.gov.ph\r\nExtensionName: \r\nFirstName: CHARILL\r\nFullName: CHARILL E. DIMASACAT\r\nGender: Female\r\nGovernmentIdIssuedDate: October 26, 2001\r\nGovernmentIdNumber: 709083\r\nGovernmentIdPlaceIssued: RAMON MAGSAYSAY HIGH SCHOOL\r\nGovernmentIssuedId: PRC\r\nGSIS: 81011200389\r\nHDMF: 0401-5295-9806\r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DIMASACAT\r\nMaidenName: \r\nMiddleName: EBORA\r\nMobileNumber: 09396237887\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIPONPON, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000081985-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 934-873-660-0000\r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770558	2025-03-17	11:36:19.5597369	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3773\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 2000\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: LIPONPON ELEMENTARY SCHOOL\r\nYearGraduated: 2000\r\n	admin	EducationalBackgrounds	1
770559	2025-03-17	11:36:19.5706999	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3773\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2000\r\nDateTo: 2004\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAN ANTONIO NATIONAL HIGH SCHOOL\r\nYearGraduated: 2004\r\n	admin	EducationalBackgrounds	1
770560	2025-03-17	11:36:19.5756834	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: ST JOHN EUDES SCHOLAR\r\nBasicInformationId: 3773\r\nCourse: \r\nCourseId: 1270\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: BIOLOGICAL SCIENCES\r\nSchoolorUniversity: SAINT BRIDGET COLLEGE\r\nYearGraduated: 2009\r\n	admin	EducationalBackgrounds	1
770561	2025-03-17	11:36:19.5846533	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3773\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2019\r\nDateTo: 2022\r\nEducationalAttainment: 43 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: PHILIPPINE COLLEGE OF HEALTH SCIENCE, INC.\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
770563	2025-03-17	11:38:12.6281408	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3773\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO, ISLA VERDE BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09298270559\r\nExtensionName: \r\nFirstName: TEODORICA\r\nLastName: PORCINO\r\nMiddleName: S\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770553	2025-03-17	11:32:11.7268774	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANTONIO, ISLA VERDE\r\nBasicInformationId: 3779\r\nBirthDate: January 01, 1965\r\nBirthPlace: SAN ANTONIO, ISLA VERDE, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: edna.mojado@deped.gov.ph\r\nExtensionName: \r\nFirstName: EDNA\r\nFullName: EDNA C. MOJADO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MOJADO\r\nMaidenName: \r\nMiddleName: CUSI\r\nMobileNumber: 09771366067\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANTONIO, ISLA VERDE\r\nPermanentCity: BATANGS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 56\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANTONIO, ISLA VERDE\r\nBasicInformationId: 3779\r\nBirthDate: January 01, 1965\r\nBirthPlace: SAN ANTONIO, ISLA VERDE, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: edna.mojado@deped.gov.ph\r\nExtensionName: \r\nFirstName: EDNA\r\nFullName: EDNA C. MOJADO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: 0099378\r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: PRC\r\nGSIS: 81011200389\r\nHDMF: 1490-0099-3746\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MOJADO\r\nMaidenName: \r\nMiddleName: CUSI\r\nMobileNumber: 09771366067\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANTONIO, ISLA VERDE\r\nPermanentCity: BATANGS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000010515-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 124-612-263-0000\r\nWeight: 56\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770555	2025-03-17	11:34:37.8164117	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3780\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09563977545\r\nExtensionName: \r\nFirstName: RUEL\r\nLastName: DE CASTRO\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770556	2025-03-17	11:34:37.8274118	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3780\r\nCharacterReferenceId: 0\r\nCompanyAddress: ALANGILAN BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09285044985\r\nExtensionName: \r\nFirstName: ROSALINDA \r\nLastName: COMIA\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770557	2025-03-17	11:34:37.8464126	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3780\r\nCharacterReferenceId: 0\r\nCompanyAddress: BANABA WESTR BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09995114678\r\nExtensionName: \r\nFirstName: ESPERANZA\r\nLastName: LUSANTA\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770562	2025-03-17	11:37:14.4307346	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 56\r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3780\r\nBirthDate: September 03, 1979\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: LANILYN.DIMACULANGAN@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: LANILYN\r\nFullName: LANILYN A. DIMACULANGAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.64\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437749208\r\nLastName: DIMACULANGAN\r\nMaidenName: \r\nMiddleName: ARANAS\r\nMobileNumber: 09125894836\r\nNationality: Filipino\r\nPermanentAddress1: 56\r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO LAGUNDI\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO LAGUNDI\r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 56\r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3780\r\nBirthDate: September 03, 1979\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: LANILYN.DIMACULANGAN@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: LANILYN\r\nFullName: LANILYN A. DIMACULANGAN\r\nGender: Female\r\nGovernmentIdIssuedDate: September 03, 2027\r\nGovernmentIdNumber: 094527\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: 02004285012\r\nHDMF: 1210-8931-5321\r\nHeight: 1.64\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437749208\r\nLastName: DIMACULANGAN\r\nMaidenName: \r\nMiddleName: ARANAS\r\nMobileNumber: 09125894836\r\nNationality: Filipino\r\nPermanentAddress1: 56\r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO LAGUNDI\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000086738-0\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO LAGUNDI\r\nTIN: 280-325-750-0000\r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770572	2025-03-17	11:45:56.3000195	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA KANLURAN\r\nBasicInformationId: 0\r\nBirthDate: June 13, 1996\r\nBirthPlace: PASIG CITY\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: JOHNRAFAEL.HERRERA@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: JOHN RAFAEL\r\nFullName: JOHN RAFAEL P. HERRERA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.75\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 4023562\r\nLastName: HERRERA\r\nMaidenName: \r\nMiddleName: PAGSUYOIN\r\nMobileNumber: 09391849311\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA KANLURAN\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO GO WEST\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: SITIO GO WEST\r\nTIN: \r\nWeight: 98\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770573	2025-03-17	11:45:56.3099883	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3781\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SEVERO BOY\r\nFullName: SEVERO BOY AYUSON HERRERA\r\nGender: Male\r\nLastName: HERRERA\r\nMaidenName: \r\nMiddleName: AYUSON\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770574	2025-03-17	11:45:56.3099883	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3781\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOSEPHINE\r\nFullName: JOSEPHINE CLARETE PAGSUYOIN\r\nGender: Male\r\nLastName: PAGSUYOIN\r\nMaidenName: \r\nMiddleName: CLARETE\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
770575	2025-03-17	11:45:56.3099883	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3781\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
770576	2025-03-17	11:49:48.1542690	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3781\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2002\r\nDateTo: 2008\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BANABA WEST ELEMENTARY SCHOOL\r\nYearGraduated: 2008\r\n	admin	EducationalBackgrounds	1
770577	2025-03-17	11:49:48.1713238	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3781\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2008\r\nDateTo: 2012\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BANABA WEST NATIONAL HIGH SCHOOL\r\nYearGraduated: 2012\r\n	admin	EducationalBackgrounds	1
770565	2025-03-17	11:39:09.5095950	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3773\r\nDateOfExamination: September 22, 2009\r\nDateOfRelease: August 22, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 22, 2009\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1046209\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 75\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
770566	2025-03-17	11:42:13.1413593	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 DISTRICT ASSEMBLE FOR STRATEGIC DIRECTIONS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770567	2025-03-17	11:44:18.0289546	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3773\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16482\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770568	2025-03-17	11:44:18.0339366	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3773\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: January 19, 2024\r\nTrainingId: 16505\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770569	2025-03-17	11:44:18.0389209	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3773\r\nEmployeeTrainingId: 0\r\nFromDate: April 26, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION,  BATANGAS CITY\r\nStatus: \r\nToDate: April 26, 2024\r\nTrainingId: 16506\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770570	2025-03-17	11:44:18.0439033	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3773\r\nEmployeeTrainingId: 0\r\nFromDate: October 13, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: October 13, 2023\r\nTrainingId: 16525\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770571	2025-03-17	11:44:18.0479293	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3773\r\nEmployeeTrainingId: 0\r\nFromDate: September 20, 2023\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION, BATANGAS CITY\r\nStatus: \r\nToDate: September 23, 2023\r\nTrainingId: 16507\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770585	2025-03-17	11:56:25.2524338	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3773\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,421.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
770586	2025-03-17	11:56:25.2574173	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3773\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 12, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
770587	2025-03-17	11:56:25.2624006	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3773\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 29,673.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: February 11, 2024\r\n	admin	Experiences	1
770588	2025-03-17	11:56:25.2663872	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3773\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 12, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 28,161.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
770589	2025-03-17	11:56:25.2723676	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3773\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,865.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: September 11, 2023\r\n	admin	Experiences	1
770590	2025-03-17	11:56:25.2763538	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3773\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 26,304.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
770578	2025-03-17	11:49:48.1772680	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3781\r\nCourse: \r\nCourseId: 1314\r\nCourseOrMajor: \r\nDateFrom: 2012\r\nDateTo: 2016\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2016\r\n	admin	EducationalBackgrounds	1
770579	2025-03-17	11:49:48.1862684	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: BEST IN ACTION RESEARCH\r\nBasicInformationId: 3781\r\nCourse: \r\nCourseId: 1333\r\nCourseOrMajor: \r\nDateFrom: 2019\r\nDateTo: 2021\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN ELEMENTARY EDUCATION\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2021\r\n	admin	EducationalBackgrounds	1
770580	2025-03-17	11:49:48.1902704	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA KANLURAN\r\nBasicInformationId: 3781\r\nBirthDate: June 13, 1996\r\nBirthPlace: PASIG CITY\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: JOHNRAFAEL.HERRERA@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: JOHN RAFAEL\r\nFullName: JOHN RAFAEL P. HERRERA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.75\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 4023562\r\nLastName: HERRERA\r\nMaidenName: \r\nMiddleName: PAGSUYOIN\r\nMobileNumber: 09391849311\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA KANLURAN\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO GO WEST\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: SITIO GO WEST\r\nTIN: \r\nWeight: 98\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA KANLURAN\r\nBasicInformationId: 3781\r\nBirthDate: June 13, 1996\r\nBirthPlace: PASIG CITY\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: JOHNRAFAEL.HERRERA@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: JOHN RAFAEL\r\nFullName: JOHN RAFAEL P. HERRERA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.75\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 4023562\r\nLastName: HERRERA\r\nMaidenName: \r\nMiddleName: PAGSUYOIN\r\nMobileNumber: 09391849311\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA KANLURAN\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO GO WEST\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO GO WEST\r\nTIN: \r\nWeight: 98\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770581	2025-03-17	11:49:48.1962702	<Undetected>	Update	BasicInformationId: 3781\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3940\r\nExtensionName: \r\nFirstName: SEVERO BOY\r\nFullName: SEVERO BOY AYUSON HERRERA\r\nGender: Male\r\nLastName: HERRERA\r\nMaidenName: \r\nMiddleName: AYUSON\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3781\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3940\r\nExtensionName: \r\nFirstName: SEVERO BOY\r\nFullName: SEVERO BOY HERRERA\r\nGender: Male\r\nLastName: HERRERA\r\nMaidenName: \r\nMiddleName: AYUSON\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770582	2025-03-17	11:49:48.2002703	<Undetected>	Update	BasicInformationId: 3781\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3941\r\nExtensionName: \r\nFirstName: JOSEPHINE\r\nFullName: JOSEPHINE CLARETE PAGSUYOIN\r\nGender: Male\r\nLastName: PAGSUYOIN\r\nMaidenName: \r\nMiddleName: CLARETE\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3781\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3941\r\nExtensionName: \r\nFirstName: JOSEPHINE\r\nFullName: JOSEPHINE PAGSUYOIN\r\nGender: Male\r\nLastName: PAGSUYOIN\r\nMaidenName: \r\nMiddleName: CLARETE\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
770583	2025-03-17	11:49:48.2057747	<Undetected>	Update	BasicInformationId: 3781\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3578\r\n	BasicInformationId: 3781\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3578\r\n	admin	Questionnaires	1
770584	2025-03-17	11:54:32.5825191	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3781\r\nDateOfExamination: June 07, 2018\r\nDateOfRelease: June 13, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: June 07, 2018\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1634360\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 75.0\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
770603	2025-03-17	13:05:50.4888962	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3781\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 08, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 30,024.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 01, 2025\r\n	admin	Experiences	1
770604	2025-03-17	13:05:50.4938963	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3781\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 12, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: SUBSTITUTE TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: June 21, 2023\r\n	admin	Experiences	1
770610	2025-03-17	13:11:17.1613018	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MASTERCLASS FOR GRADE 4 TEACHERS ACROSS ALL LEARNING AREAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770620	2025-03-17	13:14:20.8005534	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BASIC TRAINING COURSES FOR TEACHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770591	2025-03-17	11:56:25.2813372	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3773\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 24,742.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
770592	2025-03-17	11:56:25.2863205	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3773\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 12, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 23,181.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
770593	2025-03-17	11:56:25.2913039	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3773\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,899.00\r\nPositionHeld: TEACHER  I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: September 11, 2020\r\n	admin	Experiences	1
770594	2025-03-17	11:56:25.2952905	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3773\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,327.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
770595	2025-03-17	11:56:25.3012708	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3773\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,698.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
770596	2025-03-17	11:56:25.3052576	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3773\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 12, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 20,088.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
770597	2025-03-17	11:56:25.3102404	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3773\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,853.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: September 11, 2017\r\n	admin	Experiences	1
770598	2025-03-17	11:56:25.3152239	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3773\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,286.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
770599	2025-03-17	11:56:25.3202076	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3773\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 12, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 18,735.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
770600	2025-03-17	11:56:25.3241937	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3773\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: September 11, 2014\r\n	admin	Experiences	1
770601	2025-03-17	11:56:25.3291768	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3773\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 12, 2011\r\nIsGovernmentService: False\r\nMonthlySalary: 17,099.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
770602	2025-03-17	11:56:25.3341605	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3773\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 13, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 17,099.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: July 17, 2011\r\n	admin	Experiences	1
770605	2025-03-17	13:06:59.7593281	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: LOT 9 BLOK 15\r\nAddress2: \r\nBarangay: SANTA CLARA\r\nBasicInformationId: 0\r\nBirthDate: August 12, 1998\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: cleolalaineprocino@gmail.com\r\nExtensionName: \r\nFirstName: CLEO LALAINE\r\nFullName: CLEO LALAINE P. PORCINO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PORCINO\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nMobileNumber: 09669221216\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 45\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770606	2025-03-17	13:06:59.7699611	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3782\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
770607	2025-03-17	13:08:40.1458910	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3782\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LEONARDO\r\nFullName: LEONARDO CASTILLA PORCINO\r\nGender: Male\r\nLastName: PORCINO\r\nMaidenName: \r\nMiddleName: CASTILLA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770608	2025-03-17	13:08:40.1498777	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3782\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MA. LORETA\r\nFullName: MA. LORETA PAGCALIWAGAN PORCINO\r\nGender: Male\r\nLastName: PORCINO\r\nMaidenName: CAFE\r\nMiddleName: PAGCALIWAGAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
770609	2025-03-17	13:08:40.1598444	<Undetected>	Update	BasicInformationId: 3782\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3579\r\n	BasicInformationId: 3782\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3579\r\n	admin	Questionnaires	1
770611	2025-03-17	13:11:32.4880409	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3782\r\nCharacterReferenceId: 0\r\nCompanyAddress: SANTA CLARA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09984051167\r\nExtensionName: \r\nFirstName: DERICK\r\nLastName: ARAGO\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770612	2025-03-17	13:11:32.4930242	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3782\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09171906704\r\nExtensionName: \r\nFirstName: ROSA ADELAIDA\r\nLastName: ECALNIR\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770613	2025-03-17	13:11:32.5000009	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3782\r\nCharacterReferenceId: 0\r\nCompanyAddress: SANTA CLARA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09167675265\r\nExtensionName: \r\nFirstName: PRINCESS LEI\r\nLastName: BRIONES\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770614	2025-03-17	13:11:32.5039877	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: LOT 9 BLOK 15\r\nAddress2: \r\nBarangay: SANTA CLARA\r\nBasicInformationId: 3782\r\nBirthDate: August 12, 1998\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: cleolalaineprocino@gmail.com\r\nExtensionName: \r\nFirstName: CLEO LALAINE\r\nFullName: CLEO LALAINE P. PORCINO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PORCINO\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nMobileNumber: 09669221216\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 45\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: LOT 9 BLOK 15\r\nAddress2: \r\nBarangay: SANTA CLARA\r\nBasicInformationId: 3782\r\nBirthDate: August 12, 1998\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: cleolalaineprocino@gmail.com\r\nExtensionName: \r\nFirstName: CLEO LALAINE\r\nFullName: CLEO LALAINE P. PORCINO\r\nGender: Female\r\nGovernmentIdIssuedDate: July 26, 2023\r\nGovernmentIdNumber: 2077826\r\nGovernmentIdPlaceIssued: LIPA, BATANGAS\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02006517090\r\nHDMF: 1212-8171-4955\r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PORCINO\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nMobileNumber: 09669221216\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: 09-250156032-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 34-9208882-8\r\nStreetName: \r\nTIN: 396-218-440-0000\r\nWeight: 45\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770623	2025-03-17	13:17:00.8393482	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BASKETBALL ACCREDITATION UNDER DEPARTMENT OF EDUCATION REFEREES ASOCIATION (DEBRA)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770615	2025-03-17	13:11:32.5119610	<Undetected>	Update	BasicInformationId: 3782\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3942\r\nExtensionName: \r\nFirstName: LEONARDO\r\nFullName: LEONARDO CASTILLA PORCINO\r\nGender: Male\r\nLastName: PORCINO\r\nMaidenName: \r\nMiddleName: CASTILLA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3782\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3942\r\nExtensionName: \r\nFirstName: LEONARDO\r\nFullName: LEONARDO PORCINO\r\nGender: Male\r\nLastName: PORCINO\r\nMaidenName: \r\nMiddleName: CASTILLA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770616	2025-03-17	13:11:32.5159475	<Undetected>	Update	BasicInformationId: 3782\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3943\r\nExtensionName: \r\nFirstName: MA. LORETA\r\nFullName: MA. LORETA PAGCALIWAGAN PORCINO\r\nGender: Male\r\nLastName: PORCINO\r\nMaidenName: CAFE\r\nMiddleName: PAGCALIWAGAN\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3782\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3943\r\nExtensionName: \r\nFirstName: MA. LORETA\r\nFullName: MA. LORETA PORCINO\r\nGender: Male\r\nLastName: PORCINO\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
770617	2025-03-17	13:13:08.0572160	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3782\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SANTA CLARA ELEMENTARY SCHOOL\r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
770618	2025-03-17	13:13:08.0621993	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3782\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2011\r\nDateTo: 2015\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS INTEGRATED HIGH SCHOOL\r\nYearGraduated: 2015\r\n	admin	EducationalBackgrounds	1
770619	2025-03-17	13:13:08.0661860	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3782\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2015\r\nDateTo: 2020\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY - TNEU MAIN CAMPUS I\r\nYearGraduated: 2020\r\n	admin	EducationalBackgrounds	1
770621	2025-03-17	13:15:34.8879457	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL SEMINAR-WORKSHOP ON THE NEW CURRICULUM FOR TEACHERS AND SCHOOL LEADERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770622	2025-03-17	13:16:39.9377059	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL SEMINAR-WORKSHOP ON PPST-BASED CURRICULUM IMPLEMENTATION AND INSTRUCTIONAL LEADERSHIP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770629	2025-03-17	13:18:29.6486343	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL WEBINAR ON ELEVATING TEACHERS' CLASSROOM PRACTICES: PLANNING, DEVELOPING, AND EXECUTING STRATEGIES ALIGNED WITH THE PHILIPPINE PROFESSIONAL STANDARDS FOR TEACHERS (PPST)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770630	2025-03-17	13:19:09.0667209	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3782\r\nEmployeeTrainingId: 0\r\nFromDate: June 21, 2024\r\nHours: 25\r\nNatureOfParticipation: \r\nSponsoringAgency: CENTER FOR THE PROFESIONAL ADVANCEMENT OF EDUCATORS\r\nStatus: \r\nToDate: June 23, 2024\r\nTrainingId: 16528\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770631	2025-03-17	13:19:09.0727016	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3782\r\nEmployeeTrainingId: 0\r\nFromDate: May 31, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: CENTER FOR THE PROFESSIONAL ADVANCEMENT OF EDUCATORS\r\nStatus: \r\nToDate: June 02, 2024\r\nTrainingId: 16529\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770632	2025-03-17	13:19:09.0776849	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3782\r\nEmployeeTrainingId: 0\r\nFromDate: May 24, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: CENTER FOR THE PROFESSIONAL ADVANCEMENT OF EDUCATORS\r\nStatus: \r\nToDate: May 26, 2024\r\nTrainingId: 16531\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770633	2025-03-17	13:19:09.0826683	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3782\r\nDateOfExamination: March 19, 2023\r\nDateOfRelease: August 12, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: March 19, 2023\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 2077826\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 75\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
770634	2025-03-17	13:19:09.0866546	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3782\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 12, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
770624	2025-03-17	13:17:52.6535107	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3781\r\nEmployeeTrainingId: 0\r\nFromDate: February 07, 2025\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OFFICE BATANGAS CITY\r\nStatus: \r\nToDate: February 07, 2025\r\nTrainingId: 16508\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770625	2025-03-17	13:17:52.6585112	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3781\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16526\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770626	2025-03-17	13:17:52.6635108	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3781\r\nEmployeeTrainingId: 0\r\nFromDate: November 18, 2024\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: November 20, 2024\r\nTrainingId: 16479\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770627	2025-03-17	13:17:52.6675159	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3781\r\nEmployeeTrainingId: 0\r\nFromDate: November 08, 2024\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BOY SCOUT OF THE PHILIPPINES BATANGAS CITY COUNCIL\r\nStatus: \r\nToDate: November 10, 2024\r\nTrainingId: 16527\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770628	2025-03-17	13:17:52.6725159	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3781\r\nEmployeeTrainingId: 0\r\nFromDate: October 05, 2024\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BASKETBALL REFEREES ASSOCIATION\r\nStatus: \r\nToDate: October 06, 2024\r\nTrainingId: 16530\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770635	2025-03-17	13:19:34.5361900	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: ALANGILAN\r\nBasicInformationId: 0\r\nBirthDate: June 08, 1998\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: angelasamonte.0608@gmail.com\r\nExtensionName: \r\nFirstName: ANGELA\r\nFullName: ANGELA V. SAMONTE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SAMONTE\r\nMaidenName: \r\nMiddleName: VALENCIA\r\nMobileNumber: 09812246251\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: ALANGILAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO 2A\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO 2A\r\nTIN: \r\nWeight: 73\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770636	2025-03-17	13:19:34.6408510	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3783\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2004\r\nDateTo: 2010\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: ALANGILAN CENTRAL ELEMENTARY SCHOOL\r\nYearGraduated: 2010\r\n	admin	EducationalBackgrounds	1
770637	2025-03-17	13:19:34.6408510	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3783\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2010\r\nDateTo: 2014\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: CASE DEL BAMBINO EMMANUEL MONTESSORI\r\nYearGraduated: 2014\r\n	admin	EducationalBackgrounds	1
770638	2025-03-17	13:19:34.6408510	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3783\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 2014\r\nDateTo: 2019\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MAJOR IN EARLY CHILDHOOD EDUCATION\r\nSchoolorUniversity: ST. BRIDGET COLLEGE\r\nYearGraduated: 2019\r\n	admin	EducationalBackgrounds	1
770639	2025-03-17	13:19:34.6418509	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3783\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2023\r\nDateTo: 2025\r\nEducationalAttainment: 9 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN EDUCATION ADMINISTRATION\r\nSchoolorUniversity: RIZAL COLLEGE OF TAAL\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
770640	2025-03-17	13:19:34.6418509	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3783\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RAMON\r\nFullName: RAMON ESTOLANO SAMONTE\r\nGender: Male\r\nLastName: SAMONTE\r\nMaidenName: \r\nMiddleName: ESTOLANO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770644	2025-03-17	13:20:07.1848240	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3781\r\nSkillId: 0\r\nSkillName: FLEXIBLE\r\n	admin	Skills	1
770641	2025-03-17	13:19:34.6418509	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3783\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LORETA\r\nFullName: LORETA VALENCIA CENIZA\r\nGender: Female\r\nLastName: CENIZA\r\nMaidenName: \r\nMiddleName: VALENCIA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
770642	2025-03-17	13:19:34.6428508	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3783\r\nDateOfExamination: September 29, 2019\r\nDateOfRelease: June 08, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 29, 2019\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1810560\r\nPlaceOfExamination: LUCENA CITY, QUEZON\r\nRating: 75.0\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
770643	2025-03-17	13:19:34.6428508	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3783\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
770672	2025-03-17	13:27:29.4801880	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT IV GAD TRAINING: GENDER AND DEVELOPMENT TRAINING (EQUAL VOICES: A CELEBRATION OF WOMEN AND GENDER EQUITY)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770673	2025-03-17	13:28:56.0025005	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BSIP BASIC TRAINING COURSE FOR KAWAN LEADERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770678	2025-03-17	13:31:23.6271542	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CURRICULUM: CURRICULUM MAPPING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770682	2025-03-17	13:33:18.7467551	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INSTRUCTIONAL STRATEGIES: DISTANCE LEARNING STRATEGIES THAT WORK IN FILIPINO\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770696	2025-03-17	13:40:31.0765518	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3783\r\nSkillId: 0\r\nSkillName: READING A BOOK/STORY TELLING\r\n	admin	Skills	1
770697	2025-03-17	13:40:31.0805515	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3783\r\nSkillId: 0\r\nSkillName: ARTISTIC ACTIVITY\r\n	admin	Skills	1
770698	2025-03-17	13:40:31.0855515	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3783\r\nSkillId: 0\r\nSkillName: PHOTOGRAPHY\r\n	admin	Skills	1
770699	2025-03-17	13:40:31.0905515	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3783\r\nSkillId: 0\r\nSkillName: WATCHING DOCUMENTARIES\r\n	admin	Skills	1
770700	2025-03-17	13:40:31.0955509	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3783\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
770701	2025-03-17	13:40:31.1005515	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3783\r\nRecognitionId: 0\r\nRecognitionName: LEADERSHEPHERD (OFFICER) "LIFE CLUB" (2016-2017)\r\n	admin	Recognitions	1
770702	2025-03-17	13:40:31.1055518	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3783\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
770703	2025-03-17	13:40:31.1095516	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3783\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY - DISTRICT IV\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16532\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770704	2025-03-17	13:40:31.1145516	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3783\r\nEmployeeTrainingId: 0\r\nFromDate: January 08, 2024\r\nHours: 20\r\nNatureOfParticipation: \r\nSponsoringAgency: BOYSCOUT OF THE PHILIPPINES - BATANGAS CITY COUNCIL\r\nStatus: \r\nToDate: November 10, 2024\r\nTrainingId: 16533\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770705	2025-03-17	13:40:31.1195517	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3783\r\nEmployeeTrainingId: 0\r\nFromDate: April 05, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: TECHNICAL EDUCATION AND SKILLS DEVELOPMENT AND AUTHORITY (TESDA)\r\nStatus: \r\nToDate: April 06, 2024\r\nTrainingId: 15194\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770706	2025-03-17	13:40:31.1245517	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3783\r\nEmployeeTrainingId: 0\r\nFromDate: October 22, 2021\r\nHours: 4\r\nNatureOfParticipation: \r\nSponsoringAgency: PHOENIX PUBLISHING HOUSE\r\nStatus: \r\nToDate: October 22, 2021\r\nTrainingId: 16534\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770707	2025-03-17	13:40:31.1285515	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3783\r\nEmployeeTrainingId: 0\r\nFromDate: October 22, 2021\r\nHours: 4\r\nNatureOfParticipation: \r\nSponsoringAgency: PHOOENIX PUBLISHING HOUSE\r\nStatus: \r\nToDate: October 22, 2021\r\nTrainingId: 16535\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770654	2025-03-17	13:21:27.1220543	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3781\r\nCharacterReferenceId: 0\r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: 09994861077\r\nExtensionName: \r\nFirstName: MARIA\r\nLastName: RUBIA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770655	2025-03-17	13:21:27.1290531	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3781\r\nCharacterReferenceId: 0\r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: 09399198761\r\nExtensionName: \r\nFirstName: EDEN \r\nLastName: DESTACAMENTO\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770659	2025-03-17	13:23:45.4285209	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA KANLURAN\r\nBasicInformationId: 3781\r\nBirthDate: June 13, 1996\r\nBirthPlace: PASIG CITY\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: JOHNRAFAEL.HERRERA@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: JOHN RAFAEL\r\nFullName: JOHN RAFAEL P. HERRERA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.75\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 4023562\r\nLastName: HERRERA\r\nMaidenName: \r\nMiddleName: PAGSUYOIN\r\nMobileNumber: 09391849311\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA KANLURAN\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO GO WEST\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO GO WEST\r\nTIN: \r\nWeight: 98\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA KANLURAN\r\nBasicInformationId: 3781\r\nBirthDate: June 13, 1996\r\nBirthPlace: PASIG CITY\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: JOHNRAFAEL.HERRERA@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: JOHN RAFAEL\r\nFullName: JOHN RAFAEL P. HERRERA\r\nGender: Male\r\nGovernmentIdIssuedDate: March 25, 2018\r\nGovernmentIdNumber: 1634360\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02006122685\r\nHDMF: 1212-0415-2570\r\nHeight: 1.75\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 4023562\r\nLastName: HERRERA\r\nMaidenName: \r\nMiddleName: PAGSUYOIN\r\nMobileNumber: 09391849311\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA KANLURAN\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO GO WEST\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-250244062-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3932919-0\r\nStreetName: SITIO GO WEST\r\nTIN: 706-291-472-0000\r\nWeight: 98\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770680	2025-03-17	13:31:58.0959115	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO LOOBAN 1\r\nBarangay: BANABA WEST\r\nBasicInformationId: 0\r\nBirthDate: July 10, 1979\r\nBirthPlace: NARRA PALAWAN\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: DARRAHLYNN.MENDOZA001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: DARRAH LYNN\r\nFullName: DARRAH LYNN D. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 150\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DAGOT\r\nMobileNumber: 09122286974\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO LOOBAN 1\r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770681	2025-03-17	13:31:58.1069102	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3785\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
770723	2025-03-17	13:46:14.9066277	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3785\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JULIO\r\nFullName: JULIO CULLA MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: CULLA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
770724	2025-03-17	13:46:14.9116829	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3785\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROBERTO\r\nFullName: ROBERTO BACABAG DAGOT\r\nGender: Male\r\nLastName: DAGOT\r\nMaidenName: \r\nMiddleName: BACABAG\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770725	2025-03-17	13:46:14.9296273	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3785\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARILYN\r\nFullName: MARILYN GARCIA PASOL\r\nGender: Male\r\nLastName: PASOL\r\nMaidenName: \r\nMiddleName: GARCIA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
770726	2025-03-17	13:46:14.9346277	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3785\r\nBirthDate: March 27, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JUSTYNN JADE\r\nFullName: JUSTYNN JADE D MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770746	2025-03-17	13:50:55.4448078	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3786\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: HENRY\r\nFullName: HENRY UNTIVEROS FESTIJO\r\nGender: Male\r\nLastName: FESTIJO\r\nMaidenName: \r\nMiddleName: UNTIVEROS\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770656	2025-03-17	13:22:08.7548152	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: PERLAS COMPOUND\r\nBarangay: KUMINTANG ILAYA\r\nBasicInformationId: 0\r\nBirthDate: December 03, 1962\r\nBirthPlace: BAUAN, BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: precita.mendoza@deped.gov.ph\r\nExtensionName: \r\nFirstName: PRECITA\r\nFullName: PRECITA C. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: CIUDAD\r\nMobileNumber: 09\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: PERLAS COMPOUND\r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: EMERALD STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: EMERALD STREET\r\nTIN: \r\nWeight: 58.8\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770657	2025-03-17	13:22:08.7641314	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3784\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
770658	2025-03-17	13:22:16.5424602	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: LOT 9 BLOK 15\r\nAddress2: \r\nBarangay: SANTA CLARA\r\nBasicInformationId: 3782\r\nBirthDate: August 12, 1998\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: cleolalaineprocino@gmail.com\r\nExtensionName: \r\nFirstName: CLEO LALAINE\r\nFullName: CLEO LALAINE P. PORCINO\r\nGender: Female\r\nGovernmentIdIssuedDate: July 26, 2023\r\nGovernmentIdNumber: 2077826\r\nGovernmentIdPlaceIssued: LIPA, BATANGAS\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02006517090\r\nHDMF: 1212-8171-4955\r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PORCINO\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nMobileNumber: 09669221216\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: 09-250156032-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 34-9208882-8\r\nStreetName: \r\nTIN: 396-218-440-0000\r\nWeight: 45\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: LOT 9 BLOK 15\r\nAddress2: \r\nBarangay: SANTA CLARA\r\nBasicInformationId: 3782\r\nBirthDate: August 12, 1998\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: cleolalaineprocino@gmail.com\r\nExtensionName: \r\nFirstName: CLEO LALAINE\r\nFullName: CLEO LALAINE P. PORCINO\r\nGender: Female\r\nGovernmentIdIssuedDate: July 26, 2023\r\nGovernmentIdNumber: 2077826\r\nGovernmentIdPlaceIssued: LIPA, BATANGAS\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02006517090\r\nHDMF: 1212-8171-4955\r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PORCINO\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nMobileNumber: 09669221216\r\nNationality: Filipino\r\nPermanentAddress1: LOT 9 BLOK 15\r\nPermanentAddress2: \r\nPermanentBarangay: SANTA CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-250156032-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 34-9208882-8\r\nStreetName: \r\nTIN: 396-218-440-0000\r\nWeight: 45\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770660	2025-03-17	13:25:27.4129000	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3784\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09272553868\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EMANUEL\r\nFullName: EMANUEL LIGAYA MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: LIGAYA\r\nOccupation: INSTRUCTOR\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
770661	2025-03-17	13:25:27.4278494	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3784\r\nBirthDate: May 26, 1992\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JED KEVIN\r\nFullName: JED KEVIN CIUDAD MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: CIUDAD\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770662	2025-03-17	13:25:27.4328330	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3784\r\nBirthDate: February 12, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JANA KRIZA\r\nFullName: JANA KRIZA CIUDAD MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: CIUDAD\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770663	2025-03-17	13:25:27.4427996	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3784\r\nBirthDate: July 18, 1998\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JEUS KIM\r\nFullName: JEUS KIM CIUDAD MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: CIUDAD\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770664	2025-03-17	13:25:27.4477830	<Undetected>	Update	BasicInformationId: 3784\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3581\r\n	BasicInformationId: 3784\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3581\r\n	admin	Questionnaires	1
770665	2025-03-17	13:27:18.1386685	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3784\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1970\r\nDateTo: 1976\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAN ANDRES ELEMENTARY SCHOOL\r\nYearGraduated: 1976\r\n	admin	EducationalBackgrounds	1
770666	2025-03-17	13:27:18.1436518	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3784\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1977\r\nDateTo: 1981\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: ST. THERESA'S ACADEMY\r\nYearGraduated: 1981\r\n	admin	EducationalBackgrounds	1
770667	2025-03-17	13:27:18.1476385	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3784\r\nCourse: \r\nCourseId: 1358\r\nCourseOrMajor: \r\nDateFrom: 1982\r\nDateTo: 1987\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: RIZAL TECHNOLOGICAL COLLEGES\r\nYearGraduated: 1987\r\n	admin	EducationalBackgrounds	1
770668	2025-03-17	13:27:18.1645820	<Undetected>	Update	BasicInformationId: 3784\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09272553868\r\nEmployeeRelativeId: 3946\r\nExtensionName: \r\nFirstName: EMANUEL\r\nFullName: EMANUEL LIGAYA MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: LIGAYA\r\nOccupation: INSTRUCTOR\r\nRelationship: Husband\r\n	BasicInformationId: 3784\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09272553868\r\nEmployeeRelativeId: 3946\r\nExtensionName: \r\nFirstName: EMANUEL\r\nFullName: EMANUEL MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: LIGAYA\r\nOccupation: INSTRUCTOR\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
770669	2025-03-17	13:27:18.1802428	<Undetected>	Update	BasicInformationId: 3784\r\nBirthDate: May 26, 1992\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3947\r\nExtensionName: \r\nFirstName: JED KEVIN\r\nFullName: JED KEVIN CIUDAD MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: CIUDAD\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3784\r\nBirthDate: May 26, 1992\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3947\r\nExtensionName: \r\nFirstName: JED KEVIN\r\nFullName: JED KEVIN MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: CIUDAD\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770670	2025-03-17	13:27:18.1931988	<Undetected>	Update	BasicInformationId: 3784\r\nBirthDate: February 12, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3948\r\nExtensionName: \r\nFirstName: JANA KRIZA\r\nFullName: JANA KRIZA CIUDAD MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: CIUDAD\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3784\r\nBirthDate: February 12, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3948\r\nExtensionName: \r\nFirstName: JANA KRIZA\r\nFullName: JANA KRIZA MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: CIUDAD\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770671	2025-03-17	13:27:18.1971854	<Undetected>	Update	BasicInformationId: 3784\r\nBirthDate: July 18, 1998\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3949\r\nExtensionName: \r\nFirstName: JEUS KIM\r\nFullName: JEUS KIM CIUDAD MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: CIUDAD\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3784\r\nBirthDate: July 18, 1998\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3949\r\nExtensionName: \r\nFirstName: JEUS KIM\r\nFullName: JEUS KIM MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: CIUDAD\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770674	2025-03-17	13:29:05.0601620	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: PERLAS COMPOUND\r\nBarangay: KUMINTANG ILAYA\r\nBasicInformationId: 3784\r\nBirthDate: December 03, 1962\r\nBirthPlace: BAUAN, BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: precita.mendoza@deped.gov.ph\r\nExtensionName: \r\nFirstName: PRECITA\r\nFullName: PRECITA C. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: CIUDAD\r\nMobileNumber: 09\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: PERLAS COMPOUND\r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: EMERALD STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: EMERALD STREET\r\nTIN: \r\nWeight: 58.8\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: PERLAS COMPOUND\r\nBarangay: KUMINTANG ILAYA\r\nBasicInformationId: 3784\r\nBirthDate: December 03, 1962\r\nBirthPlace: BAUAN, BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: precita.mendoza@deped.gov.ph\r\nExtensionName: \r\nFirstName: PRECITA\r\nFullName: PRECITA C. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 1988\r\nGovernmentIdNumber: 0392811347\r\nGovernmentIdPlaceIssued: BATANGAS CITY\r\nGovernmentIssuedId: SSS ID\r\nGSIS: 02005312626\r\nHDMF: 1490-0025-1206\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: CIUDAD\r\nMobileNumber: 09\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: PERLAS COMPOUND\r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: EMERALD STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025073206-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 03-9281134-7\r\nStreetName: EMERALD STREET\r\nTIN: 127-387-170-0000\r\nWeight: 58.8\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770675	2025-03-17	13:30:41.1831974	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3784\r\nCharacterReferenceId: 0\r\nCompanyAddress: KUMINTANG ILAYA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 0437236318\r\nExtensionName: \r\nFirstName: NERMA \r\nLastName: BUSTOS\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770676	2025-03-17	13:30:41.1871843	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3784\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES, SORO-SORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09913261235\r\nExtensionName: \r\nFirstName: EPITACIA\r\nLastName: CULLERA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770677	2025-03-17	13:30:41.1921677	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3784\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN EAST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175057894\r\nExtensionName: \r\nFirstName: AUREA\r\nLastName: OCON\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770679	2025-03-17	13:31:39.3548856	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3784\r\nDateOfExamination: July 26, 1987\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: July 26, 1987\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: QUEZON CITY\r\nRating: 71.9\r\nTitle: CAREER SERVICE PROFESSIONAL\r\n	admin	Eligibilities	1
770747	2025-03-17	13:50:55.4547750	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3786\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: NERIA\r\nFullName: NERIA SAJUL FESTIJO\r\nGender: Male\r\nLastName: FESTIJO\r\nMaidenName: NABAT\r\nMiddleName: SAJUL\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
770683	2025-03-17	13:38:16.9311672	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3784\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 21,839.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 08-3\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
770684	2025-03-17	13:38:16.9361507	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3784\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 20,908.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 08-3\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
770685	2025-03-17	13:38:16.9411342	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3784\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 02, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 20,140.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 08-3\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
770686	2025-03-17	13:38:16.9451206	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3784\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 19,923.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 08-2\r\nStatus: Permanent\r\nToDate: November 01, 2023\r\n	admin	Experiences	1
770687	2025-03-17	13:38:16.9501041	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3784\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 19,170.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 08-2\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
770688	2025-03-17	13:38:16.9551257	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3784\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 18,417.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 08-2\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
770689	2025-03-17	13:38:16.9601107	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3784\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 17,683.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 08-2\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
770690	2025-03-17	13:38:16.9640957	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3784\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 17,505.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 08-1\r\nStatus: Permanent\r\nToDate: November 01, 2020\r\n	admin	Experiences	1
770691	2025-03-17	13:38:16.9700363	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3784\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 16,758.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 08-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
770692	2025-03-17	13:38:16.9740230	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3784\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 16,282.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 08-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
770693	2025-03-17	13:38:16.9790063	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3784\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 02, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 15,818.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 08-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
770748	2025-03-17	13:50:55.4587615	<Undetected>	Update	BasicInformationId: 3786\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3583\r\n	BasicInformationId: 3786\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3583\r\n	admin	Questionnaires	1
770694	2025-03-17	13:39:41.2482645	<Undetected>	Update	BasicInformationId: 3784\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12487\r\nFromDate: November 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 17,683.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 08-2\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	BasicInformationId: 3784\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12487\r\nFromDate: November 02, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 17,683.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 08-2\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
770695	2025-03-17	13:40:16.9199916	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EQUAL VOICES: A CELEBRATION OF WOMEN AND GENDER EQUITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770719	2025-03-17	13:41:36.2793788	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL-LEVEL WRITESHOP ON THE DEVELOPMENT AND/OR ENHANCEMENT OF EXISTING SCHOOL CONTINGENCY PLAN\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770720	2025-03-17	13:42:29.5586755	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL BASED IN-SET TRAINING 2024\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770721	2025-03-17	13:43:31.3280871	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL-BASED IN-SET TRAINING 2024\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770722	2025-03-17	13:45:08.0641327	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAPACITY BUILDING PROMOTING TRANSPARENCY, ACCOUNTABILITY AND OPTIMIZED USE OF SCHOOL RESOURCES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770729	2025-03-17	13:46:34.7119924	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3784\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: STA. CLARA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16536\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770730	2025-03-17	13:46:34.7169761	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3784\r\nEmployeeTrainingId: 0\r\nFromDate: September 10, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: STA. CLARA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: September 10, 2024\r\nTrainingId: 16537\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770731	2025-03-17	13:46:34.7219589	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3784\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: STA.C LARA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16539\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770732	2025-03-17	13:46:34.7269425	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3784\r\nEmployeeTrainingId: 0\r\nFromDate: August 17, 2021\r\nHours: 12\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF ECUCATION\r\nStatus: \r\nToDate: September 19, 2021\r\nTrainingId: 16540\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770733	2025-03-17	13:46:34.7319258	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3784\r\nEmployeeTrainingId: 0\r\nFromDate: January 17, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: January 17, 2023\r\nTrainingId: 15560\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770734	2025-03-17	13:46:48.3821155	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3784\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
770735	2025-03-17	13:48:58.8384343	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 302\r\nAddress2: \r\nBarangay: TINGA ITAAS\r\nBasicInformationId: 0\r\nBirthDate: December 30, 1998\r\nBirthPlace: TINGGA ITAAS, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: irish.festijo@deped.gov.ph\r\nExtensionName: \r\nFirstName: IRISH\r\nFullName: IRISH S. FESTIJO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: FESTIJO\r\nMaidenName: \r\nMiddleName: SAJUL\r\nMobileNumber: 09770076091\r\nNationality: Filipino\r\nPermanentAddress1: 302\r\nPermanentAddress2: \r\nPermanentBarangay: TINGA ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 4\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 4\r\nTIN: \r\nWeight: 52\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770736	2025-03-17	13:48:58.8479427	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3786\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
770708	2025-03-17	13:40:31.1335519	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3783\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: October 16, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: March 17, 2025\r\n	admin	Experiences	1
770709	2025-03-17	13:40:31.1385511	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3783\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: August 15, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Substitute\r\nToDate: September 27, 2024\r\n	admin	Experiences	1
770710	2025-03-17	13:40:31.1425518	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3783\r\nCompanyInstitution: ST. BRIDGET COLLEGE\r\nExperienceId: 0\r\nFromDate: August 08, 2021\r\nIsGovernmentService: False\r\nMonthlySalary: 18,000.00\r\nPositionHeld: SUBSTITUTE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Temporary\r\nToDate: December 15, 2021\r\n	admin	Experiences	1
770711	2025-03-17	13:40:31.1475517	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3783\r\nCompanyInstitution: ST. BRIDGET COLLEGE\r\nExperienceId: 0\r\nFromDate: June 01, 2019\r\nIsGovernmentService: False\r\nMonthlySalary: 16,000.00\r\nPositionHeld: ELEMENTARY TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: August 15, 2020\r\n	admin	Experiences	1
770712	2025-03-17	13:40:31.1525519	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3783\r\nCharacterReferenceId: 0\r\nCompanyAddress: ALANGILAN, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09309940794\r\nExtensionName: \r\nFirstName: HEIDILYN\r\nLastName: DELEN\r\nMiddleName: J.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770713	2025-03-17	13:40:31.1565515	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3783\r\nCharacterReferenceId: 0\r\nCompanyAddress: BAUAN, BATANGAS\r\nCompanyName: \r\nContactNumber: 09926529749\r\nExtensionName: \r\nFirstName: ELAINE\r\nLastName: DELEN\r\nMiddleName: J.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770714	2025-03-17	13:40:31.1615516	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3783\r\nCharacterReferenceId: 0\r\nCompanyAddress: TINGA ITAAS BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09770076091\r\nExtensionName: \r\nFirstName: IRISH\r\nLastName: FESTIJO\r\nMiddleName: S.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770715	2025-03-17	13:40:31.1665517	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: ALANGILAN\r\nBasicInformationId: 3783\r\nBirthDate: June 08, 1998\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: angelasamonte.0608@gmail.com\r\nExtensionName: \r\nFirstName: ANGELA\r\nFullName: ANGELA V. SAMONTE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SAMONTE\r\nMaidenName: \r\nMiddleName: VALENCIA\r\nMobileNumber: 09812246251\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: ALANGILAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO 2A\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO 2A\r\nTIN: \r\nWeight: 73\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: ALANGILAN\r\nBasicInformationId: 3783\r\nBirthDate: June 08, 1998\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: angelasamonte.0608@gmail.com\r\nExtensionName: \r\nFirstName: ANGELA\r\nFullName: ANGELA V. SAMONTE\r\nGender: Female\r\nGovernmentIdIssuedDate: December 18, 2019\r\nGovernmentIdNumber: 1810560\r\nGovernmentIdPlaceIssued: LUCENA\r\nGovernmentIssuedId: PRC LICENSE\r\nGSIS: \r\nHDMF: 1212-5055-8025\r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SAMONTE\r\nMaidenName: \r\nMiddleName: VALENCIA\r\nMobileNumber: 09812246251\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: ALANGILAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO 2A\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-250224331-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 34-8452201-7\r\nStreetName: SITIO 2A\r\nTIN: 743-515-560-0000\r\nWeight: 73\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770716	2025-03-17	13:40:31.1715519	<Undetected>	Update	BasicInformationId: 3783\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3944\r\nExtensionName: \r\nFirstName: RAMON\r\nFullName: RAMON ESTOLANO SAMONTE\r\nGender: Male\r\nLastName: SAMONTE\r\nMaidenName: \r\nMiddleName: ESTOLANO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3783\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3944\r\nExtensionName: \r\nFirstName: RAMON\r\nFullName: RAMON SAMONTE\r\nGender: Male\r\nLastName: SAMONTE\r\nMaidenName: \r\nMiddleName: ESTOLANO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770717	2025-03-17	13:40:31.1755514	<Undetected>	Update	BasicInformationId: 3783\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3945\r\nExtensionName: \r\nFirstName: LORETA\r\nFullName: LORETA VALENCIA CENIZA\r\nGender: Female\r\nLastName: CENIZA\r\nMaidenName: \r\nMiddleName: VALENCIA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3783\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3945\r\nExtensionName: \r\nFirstName: LORETA\r\nFullName: LORETA CENIZA\r\nGender: Female\r\nLastName: CENIZA\r\nMaidenName: \r\nMiddleName: VALENCIA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
770718	2025-03-17	13:40:31.1805516	<Undetected>	Update	BasicInformationId: 3783\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3580\r\n	BasicInformationId: 3783\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3580\r\n	admin	Questionnaires	1
770727	2025-03-17	13:46:14.9406267	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO LOOBAN 1\r\nBarangay: BANABA WEST\r\nBasicInformationId: 3785\r\nBirthDate: July 10, 1979\r\nBirthPlace: NARRA PALAWAN\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: DARRAHLYNN.MENDOZA001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: DARRAH LYNN\r\nFullName: DARRAH LYNN D. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 150\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DAGOT\r\nMobileNumber: 09122286974\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO LOOBAN 1\r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO LOOBAN 1\r\nBarangay: BANABA WEST\r\nBasicInformationId: 3785\r\nBirthDate: July 10, 1979\r\nBirthPlace: NARRA PALAWAN\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: DARRAHLYNN.MENDOZA001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: DARRAH LYNN\r\nFullName: DARRAH LYNN D. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 150\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DAGOT\r\nMobileNumber: 09122286974\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO LOOBAN 1\r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770728	2025-03-17	13:46:14.9496782	<Undetected>	Update	BasicInformationId: 3785\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3582\r\n	BasicInformationId: 3785\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3582\r\n	admin	Questionnaires	1
770749	2025-03-17	13:51:30.0226629	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: OUTSTANDING\r\nBasicInformationId: 3785\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1986\r\nDateTo: 1992\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: NARRA PILOT ELEMENTARY SCHOOL\r\nYearGraduated: 1992\r\n	admin	EducationalBackgrounds	1
770750	2025-03-17	13:51:30.0336642	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: 6TH HONORS\r\nBasicInformationId: 3785\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1992\r\nDateTo: 1996\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: NARRA NATIONAL HIGH SCHOOL\r\nYearGraduated: 1996\r\n	admin	EducationalBackgrounds	1
770751	2025-03-17	13:51:30.0376628	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: WITH DISTINCTION\r\nBasicInformationId: 3785\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 2000\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: SAN FRANCISCO JAVIER COLLEGE \r\nYearGraduated: 2000\r\n	admin	EducationalBackgrounds	1
770752	2025-03-17	13:51:30.0446618	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3785\r\nCourse: \r\nCourseId: 1328\r\nCourseOrMajor: \r\nDateFrom: 2014\r\nDateTo: 2014\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES \r\nYearGraduated: 2014\r\n	admin	EducationalBackgrounds	1
770753	2025-03-17	13:51:30.0496686	<Undetected>	Update	BasicInformationId: 3785\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3950\r\nExtensionName: \r\nFirstName: JULIO\r\nFullName: JULIO CULLA MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: CULLA\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3785\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3950\r\nExtensionName: \r\nFirstName: JULIO\r\nFullName: JULIO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: CULLA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
770754	2025-03-17	13:51:30.0576690	<Undetected>	Update	BasicInformationId: 3785\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3951\r\nExtensionName: \r\nFirstName: ROBERTO\r\nFullName: ROBERTO BACABAG DAGOT\r\nGender: Male\r\nLastName: DAGOT\r\nMaidenName: \r\nMiddleName: BACABAG\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3785\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3951\r\nExtensionName: \r\nFirstName: ROBERTO\r\nFullName: ROBERTO DAGOT\r\nGender: Male\r\nLastName: DAGOT\r\nMaidenName: \r\nMiddleName: BACABAG\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770755	2025-03-17	13:51:30.0626686	<Undetected>	Update	BasicInformationId: 3785\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3952\r\nExtensionName: \r\nFirstName: MARILYN\r\nFullName: MARILYN GARCIA PASOL\r\nGender: Male\r\nLastName: PASOL\r\nMaidenName: \r\nMiddleName: GARCIA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3785\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3952\r\nExtensionName: \r\nFirstName: MARILYN\r\nFullName: MARILYN PASOL\r\nGender: Male\r\nLastName: PASOL\r\nMaidenName: \r\nMiddleName: GARCIA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
770756	2025-03-17	13:51:30.0671809	<Undetected>	Update	BasicInformationId: 3785\r\nBirthDate: March 27, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3953\r\nExtensionName: \r\nFirstName: JUSTYNN JADE\r\nFullName: JUSTYNN JADE D MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3785\r\nBirthDate: March 27, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3953\r\nExtensionName: \r\nFirstName: JUSTYNN JADE\r\nFullName: JUSTYNN JADE MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770800	2025-03-17	14:06:15.9314336	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TEACHING ENGLISH AS A FOREIGN LANGUAGE COURSE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770801	2025-03-17	14:08:43.0494937	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3787\r\nSkillId: 0\r\nSkillName: ADVANCE COMPUTER SKILLS\r\n	admin	Skills	1
770737	2025-03-17	13:49:19.1441794	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: PUROK 6\r\nBarangay: CALICANTO\r\nBasicInformationId: 0\r\nBirthDate: January 10, 1999\r\nBirthPlace: CALICANTO, BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ninajhustine.plata@deped.gov.ph\r\nExtensionName: \r\nFirstName: NINA JHUSTINE\r\nFullName: NINA JHUSTINE B. PLATA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PLATA\r\nMaidenName: \r\nMiddleName: BORRES\r\nMobileNumber: 09854023021\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: PUROK 6\r\nPermanentBarangay: CALICANTO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 54\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770738	2025-03-17	13:49:19.1603467	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3787\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: CALICANTO ELEMENTARY SCHOOL\r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
770739	2025-03-17	13:49:19.1603467	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3787\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2011\r\nDateTo: 2015\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2015\r\n	admin	EducationalBackgrounds	1
770740	2025-03-17	13:49:19.1603467	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: EBD SCHOLAR\r\nBasicInformationId: 3787\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2015\r\nDateTo: 2019\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MAJOR IN EARLY CHILDHOOD EDUCATION\r\nSchoolorUniversity: ST. BRIDGET COLLEGE\r\nYearGraduated: 2019\r\n	admin	EducationalBackgrounds	1
770741	2025-03-17	13:49:19.1613495	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3787\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOHN PATRICK\r\nFullName: JOHN PATRICK REMOLAR PLATA\r\nGender: Male\r\nLastName: PLATA\r\nMaidenName: \r\nMiddleName: REMOLAR\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
770742	2025-03-17	13:49:19.1613495	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3787\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GUALBERTO\r\nFullName: GUALBERTO RABINO BORRES\r\nGender: Male\r\nLastName: BORRES\r\nMaidenName: \r\nMiddleName: RABINO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770743	2025-03-17	13:49:19.1623494	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3787\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DONNA\r\nFullName: DONNA UMAHON CASAS\r\nGender: Female\r\nLastName: CASAS\r\nMaidenName: \r\nMiddleName: UMAHON\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
770744	2025-03-17	13:49:19.1623494	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3787\r\nDateOfExamination: September 28, 2019\r\nDateOfRelease: January 10, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 28, 2019\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1873847\r\nPlaceOfExamination: LUCENA CITY, QUEZON\r\nRating: 80.60\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS (RA 1080)\r\n	admin	Eligibilities	1
770745	2025-03-17	13:49:19.1633489	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3787\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
770765	2025-03-17	13:57:30.1959646	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3787\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,024.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: March 17, 2025\r\n	admin	Experiences	1
770766	2025-03-17	13:57:30.1999643	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3787\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: October 04, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
770757	2025-03-17	13:52:22.9855736	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3786\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: TINGA ITAAS ELEMENTARY SCHOOL\r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
770758	2025-03-17	13:52:22.9965370	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3786\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2011\r\nDateTo: 2015\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: TINGA SOROSORO NATIONAL HIGH SCHOOL\r\nYearGraduated: 2015\r\n	admin	EducationalBackgrounds	1
770759	2025-03-17	13:52:23.0015204	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: EBD SCHOLAR\r\nBasicInformationId: 3786\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2015\r\nDateTo: 2019\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: PRESCHOOL\r\nSchoolorUniversity: WESTMEAD INTERNATIONAL SCHOOL\r\nYearGraduated: 2019\r\n	admin	EducationalBackgrounds	1
770760	2025-03-17	13:52:23.0114861	<Undetected>	Update	BasicInformationId: 3786\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3957\r\nExtensionName: \r\nFirstName: HENRY\r\nFullName: HENRY UNTIVEROS FESTIJO\r\nGender: Male\r\nLastName: FESTIJO\r\nMaidenName: \r\nMiddleName: UNTIVEROS\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3786\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3957\r\nExtensionName: \r\nFirstName: HENRY\r\nFullName: HENRY FESTIJO\r\nGender: Male\r\nLastName: FESTIJO\r\nMaidenName: \r\nMiddleName: UNTIVEROS\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770761	2025-03-17	13:52:23.0224508	<Undetected>	Update	BasicInformationId: 3786\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3958\r\nExtensionName: \r\nFirstName: NERIA\r\nFullName: NERIA SAJUL FESTIJO\r\nGender: Male\r\nLastName: FESTIJO\r\nMaidenName: NABAT\r\nMiddleName: SAJUL\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3786\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3958\r\nExtensionName: \r\nFirstName: NERIA\r\nFullName: NERIA FESTIJO\r\nGender: Male\r\nLastName: FESTIJO\r\nMaidenName: \r\nMiddleName: SAJUL\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
770762	2025-03-17	13:53:48.1398981	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 302\r\nAddress2: \r\nBarangay: TINGA ITAAS\r\nBasicInformationId: 3786\r\nBirthDate: December 30, 1998\r\nBirthPlace: TINGGA ITAAS, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: irish.festijo@deped.gov.ph\r\nExtensionName: \r\nFirstName: IRISH\r\nFullName: IRISH S. FESTIJO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: FESTIJO\r\nMaidenName: \r\nMiddleName: SAJUL\r\nMobileNumber: 09770076091\r\nNationality: Filipino\r\nPermanentAddress1: 302\r\nPermanentAddress2: \r\nPermanentBarangay: TINGA ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 4\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 4\r\nTIN: \r\nWeight: 52\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 302\r\nAddress2: \r\nBarangay: TINGA ITAAS\r\nBasicInformationId: 3786\r\nBirthDate: December 30, 1998\r\nBirthPlace: TINGGA ITAAS, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: irish.festijo@deped.gov.ph\r\nExtensionName: \r\nFirstName: IRISH\r\nFullName: IRISH S. FESTIJO\r\nGender: Female\r\nGovernmentIdIssuedDate: April 22, 2022\r\nGovernmentIdNumber: 1901674\r\nGovernmentIdPlaceIssued: ROBINSONS STA. ROSA LAGUNA\r\nGovernmentIssuedId: PRC ID/LICENSE\r\nGSIS: 02006188687\r\nHDMF: 1212-5140-0790\r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: FESTIJO\r\nMaidenName: \r\nMiddleName: SAJUL\r\nMobileNumber: 09770076091\r\nNationality: Filipino\r\nPermanentAddress1: 302\r\nPermanentAddress2: \r\nPermanentBarangay: TINGA ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 4\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025672940-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-4275706-3\r\nStreetName: PUROK 4\r\nTIN: 749-304-109-0000\r\nWeight: 52\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770764	2025-03-17	13:54:42.8144493	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3786\r\nDateOfExamination: January 30, 2022\r\nDateOfRelease: December 30, 2028\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: January 30, 2022\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1901674\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 85.40\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
770776	2025-03-17	13:58:28.4440061	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3786\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,024.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
770777	2025-03-17	13:58:28.4499861	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3786\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
770778	2025-03-17	13:58:28.4539728	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3786\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
770802	2025-03-17	14:08:43.0574938	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3787\r\nRecognitionId: 0\r\nRecognitionName: MICROSOFT WORD 2016 SPECIALIST\r\n	admin	Recognitions	1
770763	2025-03-17	13:53:51.3378645	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3785\r\nDateOfExamination: August 27, 2000\r\nDateOfRelease: November 26, 2000\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 27, 2000\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0684889\r\nPlaceOfExamination: MANILA\r\nRating: 79.60\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
770787	2025-03-17	14:02:35.8550058	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3785\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 26, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 21,387.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
770788	2025-03-17	14:02:35.8600051	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3785\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 26,754.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
770789	2025-03-17	14:02:35.8650055	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3785\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 35,049.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: January 01, 2025\r\n	admin	Experiences	1
770826	2025-03-17	14:18:35.9364385	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 DIVISION LEADERSHIP TRAINING\r\nTrainingId: 0\r\nType: TECHNICAL \r\n	admin	Trainings	1
770853	2025-03-17	14:30:21.5716200	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: IKA 48 PAMBANSANG SEMINAR-GAWAING KAPULUNGAN SA FILIPINO\r\nTrainingId: 0\r\nType:  TECHNICAL\r\n	admin	Trainings	1
770937	2025-03-17	15:07:54.5987546	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WRITESHOP IN THE DEVELOPMENT OF ARALING PANLIPUNAN ASSESSMENT TOOL IN THE NEW NORMAL\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
770941	2025-03-17	15:12:27.8547084	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3785\r\nEmployeeTrainingId: 0\r\nFromDate: January 04, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED BATANGAS CITY\r\nStatus: \r\nToDate: January 04, 2023\r\nTrainingId: 16549\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770942	2025-03-17	15:12:27.8597083	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3785\r\nEmployeeTrainingId: 0\r\nFromDate: November 17, 2021\r\nHours: 12\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPED BATANGAS CITY \r\nStatus: \r\nToDate: November 19, 2021\r\nTrainingId: 16454\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770943	2025-03-17	15:12:27.8677539	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3785\r\nEmployeeTrainingId: 0\r\nFromDate: November 13, 2021\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: PAMBANSANG SAMAHAN NG MGA TAGAPAGTAGUYOD SA FILIPINO\r\nStatus: \r\nToDate: November 27, 2021\r\nTrainingId: 16553\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770944	2025-03-17	15:12:27.8727562	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3785\r\nEmployeeTrainingId: 0\r\nFromDate: October 31, 2021\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: November 02, 2021\r\nTrainingId: 16558\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770945	2025-03-17	15:12:27.8777565	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3785\r\nEmployeeTrainingId: 0\r\nFromDate: August 30, 2021\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION CENTRAL\r\nStatus: \r\nToDate: September 03, 2021\r\nTrainingId: 16409\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770946	2025-03-17	15:12:52.8840618	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3785\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
770956	2025-03-17	15:18:57.9134943	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3785\r\nCharacterReferenceId: 0\r\nCompanyAddress: BANABA WEST ELEMENTARY SCHOOL\r\nCompanyName: \r\nContactNumber: 09563977545\r\nExtensionName: \r\nFirstName: RUEL \r\nLastName: DE CASTRO\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770957	2025-03-17	15:18:57.9174926	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3785\r\nCharacterReferenceId: 0\r\nCompanyAddress: BANABA WEST INTEGRATED SCHOOL\r\nCompanyName: \r\nContactNumber: 09997383399\r\nExtensionName: \r\nFirstName: LANIE\r\nLastName: SALAZAR\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770767	2025-03-17	13:57:30.2049643	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3787\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / ALANGILAN CENTRAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: April 11, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: May 31, 2024\r\n	admin	Experiences	1
770768	2025-03-17	13:57:30.2099647	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3787\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / WAWA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 22, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: March 27, 2024\r\n	admin	Experiences	1
770769	2025-03-17	13:57:30.2139643	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3787\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / WAWA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: November 09, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: December 15, 2023\r\n	admin	Experiences	1
770770	2025-03-17	13:57:30.2189660	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3787\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / WAWA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: September 04, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: November 02, 2023\r\n	admin	Experiences	1
770771	2025-03-17	13:57:30.2239662	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3787\r\nCompanyInstitution: WEASTMED ACADEMY OF SCIENCE AND TECHNOLOGY FOUNDATION INC.\r\nExperienceId: 0\r\nFromDate: September 15, 2021\r\nIsGovernmentService: False\r\nMonthlySalary: 11,000.00\r\nPositionHeld: ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: August 01, 2023\r\n	admin	Experiences	1
770772	2025-03-17	13:57:30.2279657	<Undetected>	Update	BasicInformationId: 3787\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3954\r\nExtensionName: \r\nFirstName: JOHN PATRICK\r\nFullName: JOHN PATRICK REMOLAR PLATA\r\nGender: Male\r\nLastName: PLATA\r\nMaidenName: \r\nMiddleName: REMOLAR\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3787\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3954\r\nExtensionName: \r\nFirstName: JOHN PATRICK\r\nFullName: JOHN PATRICK PLATA\r\nGender: Male\r\nLastName: PLATA\r\nMaidenName: \r\nMiddleName: REMOLAR\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
770773	2025-03-17	13:57:30.2329643	<Undetected>	Update	BasicInformationId: 3787\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3955\r\nExtensionName: \r\nFirstName: GUALBERTO\r\nFullName: GUALBERTO RABINO BORRES\r\nGender: Male\r\nLastName: BORRES\r\nMaidenName: \r\nMiddleName: RABINO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3787\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3955\r\nExtensionName: \r\nFirstName: GUALBERTO\r\nFullName: GUALBERTO BORRES\r\nGender: Male\r\nLastName: BORRES\r\nMaidenName: \r\nMiddleName: RABINO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770774	2025-03-17	13:57:30.2380070	<Undetected>	Update	BasicInformationId: 3787\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3956\r\nExtensionName: \r\nFirstName: DONNA\r\nFullName: DONNA UMAHON CASAS\r\nGender: Female\r\nLastName: CASAS\r\nMaidenName: \r\nMiddleName: UMAHON\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3787\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3956\r\nExtensionName: \r\nFirstName: DONNA\r\nFullName: DONNA CASAS\r\nGender: Female\r\nLastName: CASAS\r\nMaidenName: \r\nMiddleName: UMAHON\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
770775	2025-03-17	13:57:30.2450090	<Undetected>	Update	BasicInformationId: 3787\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3584\r\n	BasicInformationId: 3787\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3584\r\n	admin	Questionnaires	1
770781	2025-03-17	13:58:59.1452349	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: GENDER AND DEVELOPMENT TRAINING: EQUAL VOICE: A CELEBRATION OF WOMEN AND GENDER EQUITY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770783	2025-03-17	14:00:55.1414423	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MASTER CLASSES FOR KINDER TEACHERS ACROSS ALL LEARNING AREAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770786	2025-03-17	14:02:27.1321615	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BOY SCOUT OF THE PHILIPPINES BASIC TRAINING COURSE FOR KAWN LEADERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770795	2025-03-17	14:04:44.7150833	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCES LEARN: STRATEGIC COACHING ON ENHANCING STRUGGLING LEARNER'S ENGAGEMENT APPROACH FOR READING AND NUMERACY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770803	2025-03-17	14:08:43.0624942	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3787\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
770779	2025-03-17	13:58:28.4589562	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3786\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 22, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,439.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
770780	2025-03-17	13:58:28.4639396	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3786\r\nCompanyInstitution: WESTMEAD ACADEMY OF SCIENCE AND TECHNOLOGY FOUNDATION INS.\r\nExperienceId: 0\r\nFromDate: June 24, 2019\r\nIsGovernmentService: False\r\nMonthlySalary: 9,269.00\r\nPositionHeld: ELEMENTARY TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: July 06, 2022\r\n	admin	Experiences	1
770782	2025-03-17	14:00:09.0155421	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT IV GAD TRAINI NG: GENDER AND DEVELOPMENT TRAINING (EQUAL VOICES: A CELEBRATION OF WOMEN AND GENDER EQUITY)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770784	2025-03-17	14:01:10.5742265	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BSP BASIC TRAINING COURSE FOR KAWAN LEADERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770785	2025-03-17	14:02:18.5117595	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BASIC GRAPHIC DESIGN AND DIGITAL ARTS FOR SCHOOL PAPER\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770790	2025-03-17	14:04:21.0244067	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3786\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16532\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770791	2025-03-17	14:04:21.0323797	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3786\r\nEmployeeTrainingId: 0\r\nFromDate: November 08, 2024\r\nHours: 20\r\nNatureOfParticipation: \r\nSponsoringAgency: BOYSCOUT OF THE PHILIPPINES - BATANGAS CITY COUNCIL\r\nStatus: \r\nToDate: November 10, 2024\r\nTrainingId: 16544\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770792	2025-03-17	14:04:21.0373630	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3786\r\nEmployeeTrainingId: 0\r\nFromDate: September 14, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 14, 2024\r\nTrainingId: 16545\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770793	2025-03-17	14:04:21.0453363	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3786\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16347\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770794	2025-03-17	14:04:21.0493228	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3786\r\nEmployeeTrainingId: 0\r\nFromDate: August 14, 2023\r\nHours: 45\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 18, 2023\r\nTrainingId: 15574\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770796	2025-03-17	14:06:11.9540998	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3786\r\nSkillId: 0\r\nSkillName: ADVANCED COMPUTER SKILLS\r\n	admin	Skills	1
770797	2025-03-17	14:06:11.9630699	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3786\r\nCharacterReferenceId: 0\r\nCompanyAddress: ALANGILAN, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09309940794\r\nExtensionName: \r\nFirstName: HEIDILYN\r\nLastName: VALENCIA\r\nMiddleName: J\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770798	2025-03-17	14:06:11.9670564	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3786\r\nCharacterReferenceId: 0\r\nCompanyAddress: WAWA BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09773646513\r\nExtensionName: \r\nFirstName: ROSEBEL\r\nLastName: GAMAB\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770799	2025-03-17	14:06:11.9720397	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3786\r\nCharacterReferenceId: 0\r\nCompanyAddress: LIBJO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09067951760\r\nExtensionName: \r\nFirstName: ROMELYN\r\nLastName: DELA TORRE\r\nMiddleName: V\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770824	2025-03-17	14:15:29.6215160	<Undetected>	Update	BasicInformationId: 3788\r\nBirthDate: August 02, 2021\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3961\r\nExtensionName: \r\nFirstName: ALEAH\r\nFullName: ALEAH PATAL ENOT\r\nGender: Male\r\nLastName: ENOT\r\nMaidenName: \r\nMiddleName: PATAL\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3788\r\nBirthDate: August 02, 2021\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3961\r\nExtensionName: \r\nFirstName: ALEAH\r\nFullName: ALEAH ENOT\r\nGender: Male\r\nLastName: ENOT\r\nMaidenName: \r\nMiddleName: PATAL\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770804	2025-03-17	14:08:43.0674943	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3787\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16541\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770805	2025-03-17	14:08:43.0714940	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3787\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 15\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16543\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770806	2025-03-17	14:08:43.0764940	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3787\r\nEmployeeTrainingId: 0\r\nFromDate: November 08, 2024\r\nHours: 20\r\nNatureOfParticipation: \r\nSponsoringAgency: BOY SCOUT OF THE PHILIPPINES - BATANGAS CITY COUNCIL\r\nStatus: \r\nToDate: November 20, 2024\r\nTrainingId: 16546\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770807	2025-03-17	14:08:43.0804937	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3787\r\nEmployeeTrainingId: 0\r\nFromDate: October 09, 2024\r\nHours: 4\r\nNatureOfParticipation: \r\nSponsoringAgency: GOKONGWEI BROTHER FOUNDATION\r\nStatus: \r\nToDate: October 09, 2024\r\nTrainingId: 16547\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770808	2025-03-17	14:08:43.0854937	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3787\r\nEmployeeTrainingId: 0\r\nFromDate: April 24, 2024\r\nHours: 120\r\nNatureOfParticipation: \r\nSponsoringAgency: TEACHING ENGLISH AS A FOREIGN LANGUAGE - PROFESSIONAL INSTITUTE - TEACHER RECORD\r\nStatus: \r\nToDate: May 07, 2024\r\nTrainingId: 16548\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770815	2025-03-17	14:13:04.8290167	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3787\r\nCharacterReferenceId: 0\r\nCompanyAddress: ALANGILAN, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09309940794\r\nExtensionName: \r\nFirstName: HEIDILYN\r\nLastName: VALENCIA\r\nMiddleName: J. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770816	2025-03-17	14:13:04.8340172	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3787\r\nCharacterReferenceId: 0\r\nCompanyAddress: TINGA ITAAS, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09770076091\r\nExtensionName: \r\nFirstName: IRISH\r\nLastName: FESTIJO\r\nMiddleName: S.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770817	2025-03-17	14:13:04.8410171	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3787\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ISIDRO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09559468978\r\nExtensionName: \r\nFirstName: DIOSA MARIE\r\nLastName: BALMES\r\nMiddleName: M.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770818	2025-03-17	14:13:04.8450166	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: PUROK 6\r\nBarangay: CALICANTO\r\nBasicInformationId: 3787\r\nBirthDate: January 10, 1999\r\nBirthPlace: CALICANTO, BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ninajhustine.plata@deped.gov.ph\r\nExtensionName: \r\nFirstName: NINA JHUSTINE\r\nFullName: NINA JHUSTINE B. PLATA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PLATA\r\nMaidenName: \r\nMiddleName: BORRES\r\nMobileNumber: 09854023021\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: PUROK 6\r\nPermanentBarangay: CALICANTO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 54\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: PUROK 6\r\nBarangay: CALICANTO\r\nBasicInformationId: 3787\r\nBirthDate: January 10, 1999\r\nBirthPlace: CALICANTO, BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ninajhustine.plata@deped.gov.ph\r\nExtensionName: \r\nFirstName: NINA JHUSTINE\r\nFullName: NINA JHUSTINE B. PLATA\r\nGender: Female\r\nGovernmentIdIssuedDate: February 17, 2020\r\nGovernmentIdNumber: 1873847\r\nGovernmentIdPlaceIssued: LUCENA CITY, QUEZON\r\nGovernmentIssuedId: PRC LICENSE\r\nGSIS: \r\nHDMF: 1212-7112-6002\r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PLATA\r\nMaidenName: \r\nMiddleName: BORRES\r\nMobileNumber: 09854023021\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: PUROK 6\r\nPermanentBarangay: CALICANTO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025735809-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 34-9410455-1\r\nStreetName: \r\nTIN: 761-341-928-0000\r\nWeight: 54\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770831	2025-03-17	14:21:07.5032581	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: DUMANTAY\r\nBasicInformationId: 0\r\nBirthDate: April 10, 1982\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mercydelina.lozano@deped.gov.ph\r\nExtensionName: \r\nFirstName: MERCYDELINA\r\nFullName: MERCYDELINA A. LOZANO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.46\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: LOZANO\r\nMaidenName: \r\nMiddleName: ATIENZA\r\nMobileNumber: 09217404320\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: DUMANTAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 58\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770809	2025-03-17	14:09:44.8535789	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BALAGTAS\r\nBasicInformationId: 0\r\nBirthDate: December 16, 1990\r\nBirthPlace: BIGA LOBO BATANGAS\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: meryrose.enot@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARYROSE\r\nFullName: MARYROSE P. ENOT\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.45\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ENOT\r\nMaidenName: \r\nMiddleName: PATAL\r\nMobileNumber: 09662872559\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BALAGTAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO 1\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO 1\r\nTIN: \r\nWeight: 57\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770810	2025-03-17	14:09:44.8636384	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3788\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
770811	2025-03-17	14:11:15.4241972	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3788\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: BLAIRE\r\nFullName: BLAIRE AGUDERA ENOT\r\nGender: Male\r\nLastName: ENOT\r\nMaidenName: \r\nMiddleName: AGUDERA\r\nOccupation: CARPENTER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
770812	2025-03-17	14:11:15.4361567	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3788\r\nBirthDate: April 23, 2010\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JUSTINE BLAIRE\r\nFullName: JUSTINE BLAIRE PATAL ENOT\r\nGender: Male\r\nLastName: ENOT\r\nMaidenName: \r\nMiddleName: PATAL\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770813	2025-03-17	14:11:15.4411400	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3788\r\nBirthDate: August 02, 2021\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALEAH\r\nFullName: ALEAH PATAL ENOT\r\nGender: Male\r\nLastName: ENOT\r\nMaidenName: \r\nMiddleName: PATAL\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770814	2025-03-17	14:11:15.4501100	<Undetected>	Update	BasicInformationId: 3788\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3585\r\n	BasicInformationId: 3788\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3585\r\n	admin	Questionnaires	1
770819	2025-03-17	14:15:29.5667003	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3788\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 2002\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BIGA ELEMENTARY SCHOOL\r\nYearGraduated: 2002\r\n	admin	EducationalBackgrounds	1
770820	2025-03-17	14:15:29.5706872	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3788\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2002\r\nDateTo: 2006\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: LAIYA NATIONAL HIGH SCHOOL\r\nYearGraduated: 2006\r\n	admin	EducationalBackgrounds	1
770821	2025-03-17	14:15:29.5806532	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3788\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2013\r\nDateTo: 2016\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: JOSEFENA CERRILES STATE COLLEGE DUMINGAG CAMPUS\r\nYearGraduated: 2016\r\n	admin	EducationalBackgrounds	1
770822	2025-03-17	14:15:29.5936097	<Undetected>	Update	BasicInformationId: 3788\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3959\r\nExtensionName: \r\nFirstName: BLAIRE\r\nFullName: BLAIRE AGUDERA ENOT\r\nGender: Male\r\nLastName: ENOT\r\nMaidenName: \r\nMiddleName: AGUDERA\r\nOccupation: CARPENTER\r\nRelationship: Husband\r\n	BasicInformationId: 3788\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3959\r\nExtensionName: \r\nFirstName: BLAIRE\r\nFullName: BLAIRE ENOT\r\nGender: Male\r\nLastName: ENOT\r\nMaidenName: \r\nMiddleName: AGUDERA\r\nOccupation: CARPENTER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
770823	2025-03-17	14:15:29.6135427	<Undetected>	Update	BasicInformationId: 3788\r\nBirthDate: April 23, 2010\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3960\r\nExtensionName: \r\nFirstName: JUSTINE BLAIRE\r\nFullName: JUSTINE BLAIRE PATAL ENOT\r\nGender: Male\r\nLastName: ENOT\r\nMaidenName: \r\nMiddleName: PATAL\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3788\r\nBirthDate: April 23, 2010\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3960\r\nExtensionName: \r\nFirstName: JUSTINE BLAIRE\r\nFullName: JUSTINE BLAIRE ENOT\r\nGender: Male\r\nLastName: ENOT\r\nMaidenName: \r\nMiddleName: PATAL\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770825	2025-03-17	14:17:47.8901437	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BALAGTAS\r\nBasicInformationId: 3788\r\nBirthDate: December 16, 1990\r\nBirthPlace: BIGA LOBO BATANGAS\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: meryrose.enot@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARYROSE\r\nFullName: MARYROSE P. ENOT\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.45\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ENOT\r\nMaidenName: \r\nMiddleName: PATAL\r\nMobileNumber: 09662872559\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BALAGTAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO 1\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO 1\r\nTIN: \r\nWeight: 57\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BALAGTAS\r\nBasicInformationId: 3788\r\nBirthDate: December 16, 1990\r\nBirthPlace: BIGA LOBO BATANGAS\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: meryrose.enot@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARYROSE\r\nFullName: MARYROSE P. ENOT\r\nGender: Female\r\nGovernmentIdIssuedDate: July 04, 2016\r\nGovernmentIdNumber: 1470287\r\nGovernmentIdPlaceIssued: PAGADIAN CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02005411648\r\nHDMF: 1211-9080-3916\r\nHeight: 1.45\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ENOT\r\nMaidenName: \r\nMiddleName: PATAL\r\nMobileNumber: 09662872559\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BALAGTAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO 1\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-201474173-0\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3842136-1\r\nStreetName: SITIO 1\r\nTIN: 334-630-775-0000\r\nWeight: 57\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770827	2025-03-17	14:19:41.6289535	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3788\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES, SORO-SORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09089915567\r\nExtensionName: \r\nFirstName: EPITACIA\r\nLastName: CULLERA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770828	2025-03-17	14:19:41.6329396	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3788\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN EAST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175057894\r\nExtensionName: \r\nFirstName: AUREA\r\nLastName: OCON\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770829	2025-03-17	14:19:41.6379231	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3788\r\nCharacterReferenceId: 0\r\nCompanyAddress: P. HERRERA STREET,  BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09618306429\r\nExtensionName: \r\nFirstName: ELIZA\r\nLastName: NEBRIDA\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770830	2025-03-17	14:20:38.7730545	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3788\r\nDateOfExamination: March 02, 2016\r\nDateOfRelease: December 16, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: March 02, 2016\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1470287\r\nPlaceOfExamination: PAGADIAN CITY\r\nRating: 75\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
770840	2025-03-17	14:24:56.3881217	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3788\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 32,245.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
770841	2025-03-17	14:24:56.3931051	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3788\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 30,705.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
770842	2025-03-17	14:24:56.3980890	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3788\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,796.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
770843	2025-03-17	14:24:56.4030723	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3788\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,284.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
770844	2025-03-17	14:24:56.4080555	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3788\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,723.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
770832	2025-03-17	14:21:07.5204864	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: SECOND HONORABLE MENTION\r\nBasicInformationId: 3789\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1989\r\nDateTo: 1955\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: STA. CLARA ELEMENTARTY SCHOOL\r\nYearGraduated: 1955\r\n	admin	EducationalBackgrounds	1
770833	2025-03-17	14:21:07.5204864	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3789\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1995\r\nDateTo: 1999\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1999\r\n	admin	EducationalBackgrounds	1
770834	2025-03-17	14:21:07.5204864	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3789\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 2000\r\nDateTo: 2004\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2004\r\n	admin	EducationalBackgrounds	1
770835	2025-03-17	14:21:07.5214858	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3789\r\nCourse: \r\nCourseId: 1284\r\nCourseOrMajor: \r\nDateFrom: 2015\r\nDateTo: 2017\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2017\r\n	admin	EducationalBackgrounds	1
770836	2025-03-17	14:21:07.5214858	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3789\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CHRISTIAN\r\nFullName: CHRISTIAN CASTANEDA LOZANO\r\nGender: Male\r\nLastName: LOZANO\r\nMaidenName: \r\nMiddleName: CASTANEDA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
770837	2025-03-17	14:21:07.5214858	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3789\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARCELINO\r\nFullName: MARCELINO GUTIERREZ ATIENZA\r\nGender: Male\r\nLastName: ATIENZA\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770838	2025-03-17	14:21:07.5224858	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3789\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MAGDALENA\r\nFullName: MAGDALENA VILLAROSA JASA\r\nGender: Female\r\nLastName: JASA\r\nMaidenName: \r\nMiddleName: VILLAROSA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
770839	2025-03-17	14:21:07.5224858	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3789\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
770863	2025-03-17	14:43:44.4174334	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3789\r\nDateOfExamination: August 29, 2004\r\nDateOfRelease: April 10, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 29, 2004\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0875489\r\nPlaceOfExamination: LUCENA\r\nRating: 80.6\r\nTitle: PROFESSIONAL REGULATION COMISSION\r\n	admin	Eligibilities	1
770864	2025-03-17	14:43:44.4234322	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3789\r\nCompanyInstitution: DEPARMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,683.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: March 17, 2025\r\n	admin	Experiences	1
770865	2025-03-17	14:43:44.4294318	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3789\r\nCompanyInstitution: DEPARMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 33,183.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
770866	2025-03-17	14:43:44.4334319	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3789\r\nCompanyInstitution: DEPARMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: November 03, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,633.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
770845	2025-03-17	14:24:56.4130389	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3788\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 18, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 24,161.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
770846	2025-03-17	14:24:56.4170253	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3788\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 23,877.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 17, 2021\r\n	admin	Experiences	1
770847	2025-03-17	14:24:56.4220087	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3788\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,316.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
770848	2025-03-17	14:24:56.4269921	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3788\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
770849	2025-03-17	14:24:56.4319755	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3788\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 18, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
770850	2025-03-17	14:26:32.8307696	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EXPLICIT TEACHING LITERACY AND NUMERACY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770851	2025-03-17	14:27:23.1439231	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: IMPLEMENTATION OF ALTERNATIVE DELIVERY MODE PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770852	2025-03-17	14:28:33.7902218	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL-BASED IN-SERVICE TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770854	2025-03-17	14:30:43.3907870	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: LEARNING THROUGH ENHANCED AND EVIDENCE-BASED PEDAGOGIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770855	2025-03-17	14:31:22.2397438	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3788\r\nEmployeeTrainingId: 0\r\nFromDate: October 31, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: October 31, 2024\r\nTrainingId: 16550\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770856	2025-03-17	14:31:22.2487208	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3788\r\nEmployeeTrainingId: 0\r\nFromDate: January 25, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: January 25, 2024\r\nTrainingId: 16551\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770857	2025-03-17	14:31:22.2527002	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3788\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: January 28, 2024\r\nTrainingId: 16552\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770858	2025-03-17	14:31:22.2586809	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3788\r\nEmployeeTrainingId: 0\r\nFromDate: August 14, 2023\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: August 18, 2024\r\nTrainingId: 15773\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770859	2025-03-17	14:31:22.2626672	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3788\r\nEmployeeTrainingId: 0\r\nFromDate: September 29, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: September 29, 2023\r\nTrainingId: 16554\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770860	2025-03-17	14:31:41.2659646	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3788\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
770861	2025-03-17	14:42:57.4683801	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 11 LOT NO. 13\r\nAddress2: \r\nBarangay: STA. CLARA\r\nBasicInformationId: 0\r\nBirthDate: April 05, 1991\r\nBirthPlace: STA. CLARA, BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: melodykylie.ceniza@deped.gov.ph\r\nExtensionName: \r\nFirstName: MELODY KYLIE\r\nFullName: MELODY KYLIE M. CENIZA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.67\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CENIZA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09178066514\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 11 LOT NO. 13\r\nPermanentAddress2: \r\nPermanentBarangay: STA. CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 75\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770862	2025-03-17	14:42:57.4786753	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3790\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
770882	2025-03-17	14:44:23.4079421	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3790\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: NOEL\r\nFullName: NOEL CASAS CENIZA\r\nGender: Male\r\nLastName: CENIZA\r\nMaidenName: \r\nMiddleName: CASAS\r\nOccupation: STEVEDORE\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
770883	2025-03-17	14:44:23.4129255	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3790\r\nBirthDate: December 31, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LHEION KHYLE\r\nFullName: LHEION KHYLE MENDOZA CENIZA\r\nGender: Male\r\nLastName: CENIZA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770884	2025-03-17	14:44:23.4238889	<Undetected>	Update	BasicInformationId: 3790\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3587\r\n	BasicInformationId: 3790\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3587\r\n	admin	Questionnaires	1
770885	2025-03-17	14:46:13.6034593	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3790\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1997\r\nDateTo: 2003\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: STA. CLARA ELEMENTARY SCHOOL\r\nYearGraduated: 2003\r\n	admin	EducationalBackgrounds	1
770886	2025-03-17	14:46:13.6074455	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3790\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2007\r\n	admin	EducationalBackgrounds	1
770887	2025-03-17	14:46:13.6124290	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3790\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 2007\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: COLEGIO NG LUNGSOD NG BATANGAS \r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
770888	2025-03-17	14:46:13.6223958	<Undetected>	Update	BasicInformationId: 3790\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3965\r\nExtensionName: \r\nFirstName: NOEL\r\nFullName: NOEL CASAS CENIZA\r\nGender: Male\r\nLastName: CENIZA\r\nMaidenName: \r\nMiddleName: CASAS\r\nOccupation: STEVEDORE\r\nRelationship: Husband\r\n	BasicInformationId: 3790\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3965\r\nExtensionName: \r\nFirstName: NOEL\r\nFullName: NOEL CENIZA\r\nGender: Male\r\nLastName: CENIZA\r\nMaidenName: \r\nMiddleName: CASAS\r\nOccupation: STEVEDORE\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
770889	2025-03-17	14:46:13.6263821	<Undetected>	Update	BasicInformationId: 3790\r\nBirthDate: December 31, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3966\r\nExtensionName: \r\nFirstName: LHEION KHYLE\r\nFullName: LHEION KHYLE MENDOZA CENIZA\r\nGender: Male\r\nLastName: CENIZA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3790\r\nBirthDate: December 31, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3966\r\nExtensionName: \r\nFirstName: LHEION KHYLE\r\nFullName: LHEION KHYLE CENIZA\r\nGender: Male\r\nLastName: CENIZA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770908	2025-03-17	14:59:57.2834873	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3789\r\nCharacterReferenceId: 0\r\nCompanyAddress: P. HERRERA ST. BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09618306429\r\nExtensionName: \r\nFirstName: ELIZA\r\nLastName: NEBRIDA\r\nMiddleName: B.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770916	2025-03-17	15:03:07.5790460	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3790\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 24,161.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
770867	2025-03-17	14:43:44.4384318	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3789\r\nCompanyInstitution: DEPARMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
770868	2025-03-17	14:43:44.4424317	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3789\r\nCompanyInstitution: DEPARMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,798.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
770869	2025-03-17	14:43:44.4474319	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3789\r\nCompanyInstitution: DEPARMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 28,276.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
770870	2025-03-17	14:43:44.4524317	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3789\r\nCompanyInstitution: DEPARMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: November 03, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 26,754.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
770871	2025-03-17	14:43:44.4574319	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3789\r\nCompanyInstitution: DEPARMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,600.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: November 02, 2020\r\n	admin	Experiences	1
770872	2025-03-17	14:43:44.4614317	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3789\r\nCompanyInstitution: DEPARMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,038.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
770873	2025-03-17	14:43:44.4664317	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3789\r\nCompanyInstitution: DEPARMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,437.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Annual\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
770874	2025-03-17	14:43:44.4704318	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3789\r\nCompanyInstitution: DEPARMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 18, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,853.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
770875	2025-03-17	14:43:44.4754318	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3789\r\nCompanyInstitution: DEPARMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,620.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 17, 2017\r\n	admin	Experiences	1
770876	2025-03-17	14:43:44.4794319	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3789\r\nCompanyInstitution: DEPARMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
770877	2025-03-17	14:43:44.4844318	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3789\r\nCompanyInstitution: DEPARMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 18, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
770878	2025-03-17	14:43:44.4894318	<Undetected>	Update	BasicInformationId: 3789\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3962\r\nExtensionName: \r\nFirstName: CHRISTIAN\r\nFullName: CHRISTIAN CASTANEDA LOZANO\r\nGender: Male\r\nLastName: LOZANO\r\nMaidenName: \r\nMiddleName: CASTANEDA\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3789\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3962\r\nExtensionName: \r\nFirstName: CHRISTIAN\r\nFullName: CHRISTIAN LOZANO\r\nGender: Male\r\nLastName: LOZANO\r\nMaidenName: \r\nMiddleName: CASTANEDA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
770879	2025-03-17	14:43:44.4934319	<Undetected>	Update	BasicInformationId: 3789\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3963\r\nExtensionName: \r\nFirstName: MARCELINO\r\nFullName: MARCELINO GUTIERREZ ATIENZA\r\nGender: Male\r\nLastName: ATIENZA\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3789\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3963\r\nExtensionName: \r\nFirstName: MARCELINO\r\nFullName: MARCELINO ATIENZA\r\nGender: Male\r\nLastName: ATIENZA\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770880	2025-03-17	14:43:44.4984318	<Undetected>	Update	BasicInformationId: 3789\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3964\r\nExtensionName: \r\nFirstName: MAGDALENA\r\nFullName: MAGDALENA VILLAROSA JASA\r\nGender: Female\r\nLastName: JASA\r\nMaidenName: \r\nMiddleName: VILLAROSA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3789\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3964\r\nExtensionName: \r\nFirstName: MAGDALENA\r\nFullName: MAGDALENA JASA\r\nGender: Female\r\nLastName: JASA\r\nMaidenName: \r\nMiddleName: VILLAROSA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
770881	2025-03-17	14:43:44.5034319	<Undetected>	Update	BasicInformationId: 3789\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3586\r\n	BasicInformationId: 3789\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3586\r\n	admin	Questionnaires	1
770891	2025-03-17	14:48:45.2599153	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PROJECT E-LRC: WORKSHOP ON CREATING A VIRTUAL SCHOOL LIBRARY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770895	2025-03-17	14:50:51.3548314	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: VIRTUAL IN-SERVICE TRAINING FOR PUBLIC SCHOOL TEACHERS 2.0\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770897	2025-03-17	14:51:32.0916444	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3789\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - NATONAL\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16480\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770898	2025-03-17	14:51:32.0986428	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3789\r\nEmployeeTrainingId: 0\r\nFromDate: November 18, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - NATONAL\r\nStatus: \r\nToDate: November 19, 2024\r\nTrainingId: 16479\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770899	2025-03-17	14:51:32.1036450	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3789\r\nEmployeeTrainingId: 0\r\nFromDate: September 13, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - NATONAL\r\nStatus: \r\nToDate: September 13, 2024\r\nTrainingId: 16555\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770900	2025-03-17	14:51:32.1116447	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3789\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - NATONAL\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16357\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770901	2025-03-17	14:51:32.1156440	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3789\r\nEmployeeTrainingId: 0\r\nFromDate: August 30, 2022\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - NATONAL\r\nStatus: \r\nToDate: September 03, 2022\r\nTrainingId: 16515\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770902	2025-03-17	14:59:57.2444880	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3789\r\nSkillId: 0\r\nSkillName: POWERPOINT LAYOUTING\r\n	admin	Skills	1
770903	2025-03-17	14:59:57.2594874	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3789\r\nSkillId: 0\r\nSkillName: PLANTING\r\n	admin	Skills	1
770904	2025-03-17	14:59:57.2644898	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3789\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
770905	2025-03-17	14:59:57.2694887	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3789\r\nRecognitionId: 0\r\nRecognitionName: BRONZE SERVICE AWARD (BSP)\r\n	admin	Recognitions	1
770906	2025-03-17	14:59:57.2744890	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3789\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES SORO-SORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09913261235\r\nExtensionName: \r\nFirstName: EPITACIA\r\nLastName: CULLERA\r\nMiddleName: C.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770907	2025-03-17	14:59:57.2794878	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3789\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN EAST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175057894\r\nExtensionName: \r\nFirstName: AUREA \r\nLastName: OCON\r\nMiddleName: P.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770890	2025-03-17	14:48:18.2571743	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 11 LOT NO. 13\r\nAddress2: \r\nBarangay: STA. CLARA\r\nBasicInformationId: 3790\r\nBirthDate: April 05, 1991\r\nBirthPlace: STA. CLARA, BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: melodykylie.ceniza@deped.gov.ph\r\nExtensionName: \r\nFirstName: MELODY KYLIE\r\nFullName: MELODY KYLIE M. CENIZA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.67\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CENIZA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09178066514\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 11 LOT NO. 13\r\nPermanentAddress2: \r\nPermanentBarangay: STA. CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 75\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 11 LOT NO. 13\r\nAddress2: \r\nBarangay: STA. CLARA\r\nBasicInformationId: 3790\r\nBirthDate: April 05, 1991\r\nBirthPlace: STA. CLARA, BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: melodykylie.ceniza@deped.gov.ph\r\nExtensionName: \r\nFirstName: MELODY KYLIE\r\nFullName: MELODY KYLIE M. CENIZA\r\nGender: Female\r\nGovernmentIdIssuedDate: June 18, 2012\r\nGovernmentIdNumber: 1135054\r\nGovernmentIdPlaceIssued: LUCENA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02004488931\r\nHDMF: 1210-4414-9359\r\nHeight: 1.67\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CENIZA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09178066514\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 11 LOT NO. 13\r\nPermanentAddress2: \r\nPermanentBarangay: STA. CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025364256-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-2391079-3\r\nStreetName: \r\nTIN: 287-591-103-0000\r\nWeight: 75\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770892	2025-03-17	14:50:26.0760528	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3790\r\nCharacterReferenceId: 0\r\nCompanyAddress: STA. CLARA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09553910395\r\nExtensionName: \r\nFirstName: DERICK\r\nLastName: ARAGO\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770893	2025-03-17	14:50:26.0830285	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3790\r\nCharacterReferenceId: 0\r\nCompanyAddress: P. ZAMORA ST. TAAL, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175930974\r\nExtensionName: \r\nFirstName: ROWENA\r\nLastName: CABANDING\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770894	2025-03-17	14:50:26.0900065	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3790\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES, SORO-SORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09089915567\r\nExtensionName: \r\nFirstName: EPITACIA\r\nLastName: CULLERA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770896	2025-03-17	14:51:29.7373129	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3790\r\nDateOfExamination: March 11, 2012\r\nDateOfRelease: April 05, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: March 11, 2012\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1135054\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 75\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
770910	2025-03-17	15:03:07.5491448	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3790\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,597.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
770911	2025-03-17	15:03:07.5541287	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3790\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 29,085.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
770912	2025-03-17	15:03:07.5591123	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3790\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,796.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: January 31, 2024\r\n	admin	Experiences	1
770913	2025-03-17	15:03:07.5640960	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3790\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,284.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
770914	2025-03-17	15:03:07.5690792	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3790\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: December 06, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,723.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
770915	2025-03-17	15:03:07.5740629	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3790\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,723.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 05, 2022\r\n	admin	Experiences	1
770909	2025-03-17	14:59:57.2884874	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: DUMANTAY\r\nBasicInformationId: 3789\r\nBirthDate: April 10, 1982\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mercydelina.lozano@deped.gov.ph\r\nExtensionName: \r\nFirstName: MERCYDELINA\r\nFullName: MERCYDELINA A. LOZANO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.46\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: LOZANO\r\nMaidenName: \r\nMiddleName: ATIENZA\r\nMobileNumber: 09217404320\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: DUMANTAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 58\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: DUMANTAY\r\nBasicInformationId: 3789\r\nBirthDate: April 10, 1982\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mercydelina.lozano@deped.gov.ph\r\nExtensionName: \r\nFirstName: MERCYDELINA\r\nFullName: MERCYDELINA A. LOZANO\r\nGender: Female\r\nGovernmentIdIssuedDate: October 28, 2004\r\nGovernmentIdNumber: 0875489\r\nGovernmentIdPlaceIssued: LUCENA\r\nGovernmentIssuedId: PRC LICENSE\r\nGSIS: 02004532195\r\nHDMF: 1210-4693-3655\r\nHeight: 1.46\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: LOZANO\r\nMaidenName: \r\nMiddleName: ATIENZA\r\nMobileNumber: 09217404320\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: DUMANTAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 19-051278069-9\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 33-6765819-2\r\nStreetName: \r\nTIN: 202-731-224-0000\r\nWeight: 58\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770923	2025-03-17	15:06:56.9441611	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 425\r\nAddress2: \r\nBarangay: WAWA\r\nBasicInformationId: 0\r\nBirthDate: February 14, 1997\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rosebel.gamab@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROSEBEL\r\nFullName: ROSEBEL A. GAMAB\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GAMAB\r\nMaidenName: \r\nMiddleName: ARGUELLES\r\nMobileNumber: 09773646513\r\nNationality: Filipino\r\nPermanentAddress1: 425\r\nPermanentAddress2: \r\nPermanentBarangay: WAWA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 3\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 3\r\nTIN: \r\nWeight: 46\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770924	2025-03-17	15:06:56.9622201	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3791\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: WAWA ELEMENTARY SCHOOL\r\nYearGraduated: 2009\r\n	admin	EducationalBackgrounds	1
770925	2025-03-17	15:06:56.9622201	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3791\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2009\r\nDateTo: 2013\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2013\r\n	admin	EducationalBackgrounds	1
770926	2025-03-17	15:06:56.9632218	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3791\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 2013\r\nDateTo: 2017\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: COLEGIO NG LUNGSOD NG BATANGAS\r\nYearGraduated: 2017\r\n	admin	EducationalBackgrounds	1
770927	2025-03-17	15:06:56.9632218	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3791\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2021\r\nDateTo: 2024\r\nEducationalAttainment: COMPREHENSIVE EXAM PASSER / 33 UNITA\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN EDUCATIONAL MANAGEMENT - THESIS PROGRAM\r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY - THE NATIONAL ENGINEERING UNIVERSITY\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
770928	2025-03-17	15:06:56.9642204	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3791\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROY\r\nFullName: ROY MENDOZA GAMAB\r\nGender: Male\r\nLastName: GAMAB\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770929	2025-03-17	15:06:56.9752172	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3791\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LILIAN\r\nFullName: LILIAN MALALUAN ARGUILLES\r\nGender: Female\r\nLastName: ARGUILLES\r\nMaidenName: \r\nMiddleName: MALALUAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
770930	2025-03-17	15:06:56.9752172	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3791\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
770917	2025-03-17	15:03:07.5830325	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3790\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 23,877.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 31, 2021\r\n	admin	Experiences	1
770918	2025-03-17	15:03:07.5880157	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3790\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,316.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
770919	2025-03-17	15:03:07.5929992	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3790\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
770920	2025-03-17	15:03:07.5979825	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3790\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
770921	2025-03-17	15:03:07.6019693	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3790\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 04, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: September 01, 2016\r\n	admin	Experiences	1
770922	2025-03-17	15:03:07.6069524	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3790\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 13, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: December 28, 2015\r\n	admin	Experiences	1
770931	2025-03-17	15:07:17.9014508	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SEMESTRAL BREAK IN SERVICE TRAINING ON PEDAGOGICAL APPROACHES IN TEACHING CUM STRATEGIES IN TEACHING READING FOR KEY STAGE 1 AND 2 TEACHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770932	2025-03-17	15:07:39.8067104	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3790\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 20\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16457\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770933	2025-03-17	15:07:39.8116926	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3790\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16470\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770934	2025-03-17	15:07:39.8166764	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3790\r\nEmployeeTrainingId: 0\r\nFromDate: January 25, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: January 25, 2024\r\nTrainingId: 16346\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770935	2025-03-17	15:07:39.8216594	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3790\r\nEmployeeTrainingId: 0\r\nFromDate: February 08, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: February 08, 2023\r\nTrainingId: 15172\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770936	2025-03-17	15:07:39.8266427	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3790\r\nEmployeeTrainingId: 0\r\nFromDate: February 06, 2023\r\nHours: 18\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: February 08, 2023\r\nTrainingId: 16557\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770958	2025-03-17	15:18:57.9234933	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3785\r\nCharacterReferenceId: 0\r\nCompanyAddress: STA. RITA BATANGAS CITY\r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: SUSAN\r\nLastName: ALDOVER\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771551	2025-03-18	11:30:57.6314555	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION ONLINE WRITESHOP AND QUALITY ASSURANCE LEARNING ACTIVITY SHEETS FOR QUARTERS 3 & 4\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770938	2025-03-17	15:10:06.7867447	<Undetected>	Update	BasicInformationId: 3791\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3967\r\nExtensionName: \r\nFirstName: ROY\r\nFullName: ROY MENDOZA GAMAB\r\nGender: Male\r\nLastName: GAMAB\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3791\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3967\r\nExtensionName: \r\nFirstName: ROY\r\nFullName: ROY GAMAB\r\nGender: Male\r\nLastName: GAMAB\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770939	2025-03-17	15:10:06.7907430	<Undetected>	Update	BasicInformationId: 3791\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3968\r\nExtensionName: \r\nFirstName: LILIAN\r\nFullName: LILIAN MALALUAN ARGUILLES\r\nGender: Female\r\nLastName: ARGUILLES\r\nMaidenName: \r\nMiddleName: MALALUAN\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3791\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3968\r\nExtensionName: \r\nFirstName: LILIAN\r\nFullName: LILIAN ARGUILLES\r\nGender: Female\r\nLastName: ARGUILLES\r\nMaidenName: \r\nMiddleName: MALALUAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
770940	2025-03-17	15:10:06.7957433	<Undetected>	Update	BasicInformationId: 3791\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3588\r\n	BasicInformationId: 3791\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3588\r\n	admin	Questionnaires	1
770947	2025-03-17	15:13:29.1664791	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STA. CLARA\r\nBasicInformationId: 0\r\nBirthDate: April 24, 1979\r\nBirthPlace: LIPA CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: richard.gasco@deped.gov.ph\r\nExtensionName: \r\nFirstName: RICHARD\r\nFullName: RICHARD M. GASCO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GASCO\r\nMaidenName: \r\nMiddleName: MATANGUIHAN\r\nMobileNumber: 09292677297\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STA. CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 52\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770948	2025-03-17	15:13:29.1754027	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3792\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
770949	2025-03-17	15:16:35.3231890	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3792\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: IRENE\r\nFullName: IRENE TOLENTINO\r\nGender: Female\r\nLastName: GASCO\r\nMaidenName: \r\nMiddleName: TOLENTINO\r\nOccupation: TEACHER\r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
770950	2025-03-17	15:16:35.3341520	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3792\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: IRENE\r\nFullName: IRENE TOLENTINO\r\nGender: Female\r\nLastName: GASCO\r\nMaidenName: \r\nMiddleName: TOLENTINO\r\nOccupation: TEACHER\r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
770951	2025-03-17	15:16:35.3391354	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3792\r\nBirthDate: November 16, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: AIVER CHLEIN\r\nFullName: AIVER CHLEIN TOLENTINO GASCO\r\nGender: Male\r\nLastName: GASCO\r\nMaidenName: \r\nMiddleName: TOLENTINO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770952	2025-03-17	15:16:35.3431220	<Undetected>	Update	BasicInformationId: 3792\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3589\r\n	BasicInformationId: 3792\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3589\r\n	admin	Questionnaires	1
770953	2025-03-17	15:17:12.9298215	<Undetected>	Update	BasicInformationId: 3792\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3969\r\nExtensionName: \r\nFirstName: IRENE\r\nFullName: IRENE TOLENTINO\r\nGender: Female\r\nLastName: GASCO\r\nMaidenName: \r\nMiddleName: TOLENTINO\r\nOccupation: TEACHER\r\nRelationship: Wife\r\n	BasicInformationId: 3792\r\nBirthDate: August 07, 2001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3969\r\nExtensionName: \r\nFirstName: AIRA CHARISSE\r\nFullName: AIRA CHARISSE TOLENTINO\r\nGender: Female\r\nLastName: GASCO\r\nMaidenName: \r\nMiddleName: TOLENTINO\r\nOccupation: TEACHER\r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770954	2025-03-17	15:17:12.9397879	<Undetected>	Update	BasicInformationId: 3792\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3970\r\nExtensionName: \r\nFirstName: IRENE\r\nFullName: IRENE TOLENTINO\r\nGender: Female\r\nLastName: GASCO\r\nMaidenName: \r\nMiddleName: TOLENTINO\r\nOccupation: TEACHER\r\nRelationship: Wife\r\n	BasicInformationId: 3792\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3970\r\nExtensionName: \r\nFirstName: IRENE\r\nFullName: IRENE GASCO\r\nGender: Female\r\nLastName: GASCO\r\nMaidenName: \r\nMiddleName: TOLENTINO\r\nOccupation: TEACHER\r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
770955	2025-03-17	15:17:12.9447716	<Undetected>	Update	BasicInformationId: 3792\r\nBirthDate: November 16, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3971\r\nExtensionName: \r\nFirstName: AIVER CHLEIN\r\nFullName: AIVER CHLEIN TOLENTINO GASCO\r\nGender: Male\r\nLastName: GASCO\r\nMaidenName: \r\nMiddleName: TOLENTINO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3792\r\nBirthDate: November 16, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3971\r\nExtensionName: \r\nFirstName: AIVER CHLEIN\r\nFullName: AIVER CHLEIN GASCO\r\nGender: Male\r\nLastName: GASCO\r\nMaidenName: \r\nMiddleName: TOLENTINO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770962	2025-03-17	15:19:49.5029409	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3792\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1986\r\nDateTo: 1992\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: STA. CLARA ELEMENTARY SCHOOL\r\nYearGraduated: 1992\r\n	admin	EducationalBackgrounds	1
770963	2025-03-17	15:19:49.5219318	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3792\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1992\r\nDateTo: 1996\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1996\r\n	admin	EducationalBackgrounds	1
770959	2025-03-17	15:18:57.9315372	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO LOOBAN 1\r\nBarangay: BANABA WEST\r\nBasicInformationId: 3785\r\nBirthDate: July 10, 1979\r\nBirthPlace: NARRA PALAWAN\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: DARRAHLYNN.MENDOZA001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: DARRAH LYNN\r\nFullName: DARRAH LYNN D. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 150\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DAGOT\r\nMobileNumber: 09122286974\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO LOOBAN 1\r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO LOOBAN 1\r\nBarangay: BANABA WEST\r\nBasicInformationId: 3785\r\nBirthDate: July 10, 1979\r\nBirthPlace: NARRA PALAWAN\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: DARRAHLYNN.MENDOZA001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: DARRAH LYNN\r\nFullName: DARRAH LYNN D. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: November 27, 2000\r\nGovernmentIdNumber: 0684889\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02002896292\r\nHDMF: 1490-0097-4297\r\nHeight: 150\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DAGOT\r\nMobileNumber: 09122286974\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO LOOBAN 1\r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000075396-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 942-071-235-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770960	2025-03-17	15:19:14.7819315	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO LOOBAN 1\r\nBarangay: BANABA WEST\r\nBasicInformationId: 3785\r\nBirthDate: July 10, 1979\r\nBirthPlace: NARRA PALAWAN\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: DARRAHLYNN.MENDOZA001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: DARRAH LYNN\r\nFullName: DARRAH LYNN D. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: November 27, 2000\r\nGovernmentIdNumber: 0684889\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02002896292\r\nHDMF: 1490-0097-4297\r\nHeight: 150\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DAGOT\r\nMobileNumber: 09122286974\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO LOOBAN 1\r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000075396-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 942-071-235-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO LOOBAN 1\r\nBarangay: BANABA WEST\r\nBasicInformationId: 3785\r\nBirthDate: July 10, 1979\r\nBirthPlace: NARRA PALAWAN\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: DARRAHLYNN.MENDOZA001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: DARRAH LYNN\r\nFullName: DARRAH LYNN D. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: November 27, 2000\r\nGovernmentIdNumber: 0684889\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02002896292\r\nHDMF: 1490-0097-4297\r\nHeight: 150\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DAGOT\r\nMobileNumber: 09122286974\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO LOOBAN 1\r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000075396-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: 942-071-235-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770961	2025-03-17	15:19:42.2821309	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO LOOBAN 1\r\nBarangay: BANABA WEST\r\nBasicInformationId: 3785\r\nBirthDate: July 10, 1979\r\nBirthPlace: NARRA PALAWAN\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: DARRAHLYNN.MENDOZA001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: DARRAH LYNN\r\nFullName: DARRAH LYNN D. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: November 27, 2000\r\nGovernmentIdNumber: 0684889\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02002896292\r\nHDMF: 1490-0097-4297\r\nHeight: 150\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DAGOT\r\nMobileNumber: 09122286974\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO LOOBAN 1\r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000075396-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: 942-071-235-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO LOOBAN 1\r\nBarangay: BANABA WEST\r\nBasicInformationId: 3785\r\nBirthDate: July 10, 1979\r\nBirthPlace: NARRA PALAWAN\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: DARRAHLYNN.MENDOZA001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: DARRAH LYNN\r\nFullName: DARRAH LYNN D. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: November 27, 2000\r\nGovernmentIdNumber: 0684889\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02002896292\r\nHDMF: 1490-0097-4297\r\nHeight: 150\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DAGOT\r\nMobileNumber: 09122286974\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO LOOBAN 1\r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000075396-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 942-071-235-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770971	2025-03-17	15:23:30.5897948	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STA. RITA KARSADA BANABA A-POOL\r\nBasicInformationId: 0\r\nBirthDate: October 19, 1997\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: DIANAROSE.MENDOZA001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: DIANA ROSE\r\nFullName: DIANA ROSE C. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.61\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: CAISIP\r\nMobileNumber: 09099736978\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STA. RITA KARSADA BANABA A-POOL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 48\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770972	2025-03-17	15:23:30.6013210	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3793\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
770978	2025-03-17	15:26:13.5090023	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3793\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RHODEER\r\nFullName: RHODEER AGUILAR MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: AGUILAR\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
770964	2025-03-17	15:19:49.5388379	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: DEAN'S LISTER\r\nBasicInformationId: 3792\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 2009\r\nDateTo: 2013\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: SOCIAL STUDIES\r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 2013\r\n	admin	EducationalBackgrounds	1
770965	2025-03-17	15:19:49.5438213	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3792\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2017\r\nDateTo: 2020\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2020\r\n	admin	EducationalBackgrounds	1
770966	2025-03-17	15:19:49.5507977	<Undetected>	Update	BasicInformationId: 3792\r\nBirthDate: August 07, 2001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3969\r\nExtensionName: \r\nFirstName: AIRA CHARISSE\r\nFullName: AIRA CHARISSE TOLENTINO\r\nGender: Female\r\nLastName: GASCO\r\nMaidenName: \r\nMiddleName: TOLENTINO\r\nOccupation: TEACHER\r\nRelationship: Child\r\n	BasicInformationId: 3792\r\nBirthDate: August 07, 2001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3969\r\nExtensionName: \r\nFirstName: AIRA CHARISSE\r\nFullName: AIRA CHARISSE GASCO\r\nGender: Female\r\nLastName: GASCO\r\nMaidenName: \r\nMiddleName: TOLENTINO\r\nOccupation: TEACHER\r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770967	2025-03-17	15:19:50.2898993	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CAMPUS JOURNALISM BOOTCAMP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770968	2025-03-17	15:21:15.0661572	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: CREATE FOR THE CLIMATE INFORMATION, EDUCATION, AND COMMUNICATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770969	2025-03-17	15:22:02.7758254	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STA. CLARA\r\nBasicInformationId: 3792\r\nBirthDate: April 24, 1979\r\nBirthPlace: LIPA CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: richard.gasco@deped.gov.ph\r\nExtensionName: \r\nFirstName: RICHARD\r\nFullName: RICHARD M. GASCO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GASCO\r\nMaidenName: \r\nMiddleName: MATANGUIHAN\r\nMobileNumber: 09292677297\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STA. CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 52\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STA. CLARA\r\nBasicInformationId: 3792\r\nBirthDate: April 24, 1979\r\nBirthPlace: LIPA CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: richard.gasco@deped.gov.ph\r\nExtensionName: \r\nFirstName: RICHARD\r\nFullName: RICHARD M. GASCO\r\nGender: Male\r\nGovernmentIdIssuedDate: December 16, 2013\r\nGovernmentIdNumber: 1254000\r\nGovernmentIdPlaceIssued: PRC MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02004510731\r\nHDMF: 1211-4455-6896\r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GASCO\r\nMaidenName: \r\nMiddleName: MATANGUIHAN\r\nMobileNumber: 09292677297\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STA. CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025114137-0\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 33-7518908-0\r\nStreetName: \r\nTIN: 213-743-619-0000\r\nWeight: 52\r\nZipCode: 4200\r\n	admin	BasicInformation	1
770970	2025-03-17	15:22:33.0982011	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL BASED IN-SERVICE TRAINING 2024\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770973	2025-03-17	15:23:45.0950559	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3792\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES, SOROSORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09475854670\r\nExtensionName: \r\nFirstName: EPITACIA\r\nLastName: CULLERA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770974	2025-03-17	15:23:45.1000393	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3792\r\nCharacterReferenceId: 0\r\nCompanyAddress: CALICANTO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09618306429\r\nExtensionName: \r\nFirstName: ELIZA \r\nLastName: NEBRIDA\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770975	2025-03-17	15:23:45.1159850	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3792\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGUSTIN, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09475854670\r\nExtensionName: \r\nFirstName: RIZA\r\nLastName: EBORA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
770976	2025-03-17	15:25:03.0237257	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3792\r\nDateOfExamination: September 29, 2013\r\nDateOfRelease: April 24, 2028\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 29, 2013\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1254000\r\nPlaceOfExamination: MANILA\r\nRating: 80\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
770977	2025-03-17	15:26:00.1090892	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION WORKSHOP TRAINING ON TEACHING THE CRITICAL COMPETENCIES IN ALL LEARNING AREAS OF KEY STAGE 1-2\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
770979	2025-03-17	15:26:13.5170079	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3793\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: VIRGILIO\r\nFullName: VIRGILIO CAISIP CAISIP\r\nGender: Male\r\nLastName: CAISIP\r\nMaidenName: \r\nMiddleName: CAISIP\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
770980	2025-03-17	15:26:13.5280009	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3793\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: HELEN\r\nFullName: HELEN LONTOK LAIT\r\nGender: Male\r\nLastName: LAIT\r\nMaidenName: \r\nMiddleName: LONTOK\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
770981	2025-03-17	15:26:13.5330012	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3793\r\nBirthDate: November 11, 2020\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RODRICH SEVANI\r\nFullName: RODRICH SEVANI C MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: C\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
770982	2025-03-17	15:26:13.5410007	<Undetected>	Update	BasicInformationId: 3793\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3590\r\n	BasicInformationId: 3793\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3590\r\n	admin	Questionnaires	1
770994	2025-03-17	15:32:24.6073283	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: TOP 8\r\nBasicInformationId: 3793\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2004\r\nDateTo: 2010\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: TALUMPOK PROPER ELEMENTARY SCHOOL\r\nYearGraduated: 2010\r\n	admin	EducationalBackgrounds	1
770995	2025-03-17	15:32:24.6123310	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3793\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2010\r\nDateTo: 2014\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: TALUMPOK NATIONAL HIGH SCHOOL \r\nYearGraduated: 2014\r\n	admin	EducationalBackgrounds	1
770996	2025-03-17	15:32:24.6223312	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: DEAN'S LISTER\r\nBasicInformationId: 3793\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2014\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: COLEGIO NG LUNGSOD NG BATANGAS \r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
770997	2025-03-17	15:32:24.6348449	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3793\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2023\r\nDateTo: 2025\r\nEducationalAttainment: 33 UNITS \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: GOLDEN GATE COLLEGES \r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
770998	2025-03-17	15:32:24.6508451	<Undetected>	Update	BasicInformationId: 3793\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3972\r\nExtensionName: \r\nFirstName: RHODEER\r\nFullName: RHODEER AGUILAR MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: AGUILAR\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3793\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3972\r\nExtensionName: \r\nFirstName: RHODEER\r\nFullName: RHODEER MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: AGUILAR\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
770999	2025-03-17	15:32:24.6659292	<Undetected>	Update	BasicInformationId: 3793\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3973\r\nExtensionName: \r\nFirstName: VIRGILIO\r\nFullName: VIRGILIO CAISIP CAISIP\r\nGender: Male\r\nLastName: CAISIP\r\nMaidenName: \r\nMiddleName: CAISIP\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3793\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3973\r\nExtensionName: \r\nFirstName: VIRGILIO\r\nFullName: VIRGILIO CAISIP\r\nGender: Male\r\nLastName: CAISIP\r\nMaidenName: \r\nMiddleName: CAISIP\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
771000	2025-03-17	15:32:24.6748962	<Undetected>	Update	BasicInformationId: 3793\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3974\r\nExtensionName: \r\nFirstName: HELEN\r\nFullName: HELEN LONTOK LAIT\r\nGender: Male\r\nLastName: LAIT\r\nMaidenName: \r\nMiddleName: LONTOK\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3793\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3974\r\nExtensionName: \r\nFirstName: HELEN\r\nFullName: HELEN LAIT\r\nGender: Male\r\nLastName: LAIT\r\nMaidenName: \r\nMiddleName: LONTOK\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
771001	2025-03-17	15:32:24.6819002	<Undetected>	Update	BasicInformationId: 3793\r\nBirthDate: November 11, 2020\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3975\r\nExtensionName: \r\nFirstName: RODRICH SEVANI\r\nFullName: RODRICH SEVANI C MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: C\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3793\r\nBirthDate: November 11, 2020\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3975\r\nExtensionName: \r\nFirstName: RODRICH SEVANI\r\nFullName: RODRICH SEVANI MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: C\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771009	2025-03-17	15:34:12.3495492	<Undetected>	Update	Awards: \r\nBasicInformationId: 3793\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2023\r\nDateTo: 2025\r\nEducationalAttainment: 33 UNITS \r\nEducationalBackgroundId: 14243\r\nLevel: Master's Degree\r\nMajor: EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: GOLDEN GATE COLLEGES \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3793\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2023\r\nDateTo: 2025\r\nEducationalAttainment: \r\nEducationalBackgroundId: 14243\r\nLevel: Master's Degree\r\nMajor: EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: GOLDEN GATE COLLEGES \r\nYearGraduated: 2025\r\n	admin	EducationalBackgrounds	1
770983	2025-03-17	15:26:41.5478267	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3791\r\nEmployeeTrainingId: 0\r\nFromDate: August 21, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 24, 2024\r\nTrainingId: 16559\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770984	2025-03-17	15:26:41.5528251	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3791\r\nEmployeeTrainingId: 0\r\nFromDate: February 14, 2024\r\nHours: 5\r\nNatureOfParticipation: \r\nSponsoringAgency: FIRST GEN CORPORATION\r\nStatus: \r\nToDate: February 14, 2024\r\nTrainingId: 16560\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770985	2025-03-17	15:26:41.5578255	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3791\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY - DISTRICT IV\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16561\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770986	2025-03-17	15:26:41.5628266	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3791\r\nEmployeeTrainingId: 0\r\nFromDate: January 25, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: January 25, 2024\r\nTrainingId: 16346\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770987	2025-03-17	15:26:41.5668267	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3791\r\nEmployeeTrainingId: 0\r\nFromDate: August 14, 2024\r\nHours: 45\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 18, 2024\r\nTrainingId: 16562\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
770988	2025-03-17	15:26:41.5718267	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3791\r\nDateOfExamination: March 25, 2018\r\nDateOfRelease: February 14, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: March 25, 2018\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1638128\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 76.80\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS \r\n	admin	Eligibilities	1
770989	2025-03-17	15:26:41.5758265	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3791\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,024.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: March 17, 2025\r\n	admin	Experiences	1
770990	2025-03-17	15:26:41.5808267	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3791\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
770991	2025-03-17	15:26:41.5858266	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3791\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 02, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
770992	2025-03-17	15:26:41.5908269	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3791\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / KATANDALA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 22, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,439.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
770993	2025-03-17	15:26:41.5948267	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3791\r\nCompanyInstitution: PRINCETON SCIENCE SCHOOL - HOME OF YOUNG ACHIEVERS\r\nExperienceId: 0\r\nFromDate: June 16, 2017\r\nIsGovernmentService: False\r\nMonthlySalary: 17,200.00\r\nPositionHeld: KINDERGARTEN TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: April 30, 2022\r\n	admin	Experiences	1
771002	2025-03-17	15:32:45.6038153	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3791\r\nSkillId: 0\r\nSkillName: ADVANCED COMPUTER SKILLS\r\n	admin	Skills	1
771003	2025-03-17	15:32:45.6138153	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3791\r\nRecognitionId: 0\r\nRecognitionName: TOP PERFORMING TEACHER IN THE PRE-ELEMENTARY LEVEL - PRINCETON SCIENCE SCHOOL\r\n	admin	Recognitions	1
771004	2025-03-17	15:32:45.6188165	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3791\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
771005	2025-03-17	15:32:45.6238150	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3791\r\nCharacterReferenceId: 0\r\nCompanyAddress: WAWA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 043 723 0878\r\nExtensionName: \r\nFirstName: JEROME\r\nLastName: GRIMPLUMA\r\nMiddleName: G. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771006	2025-03-17	15:32:45.6288153	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3791\r\nCharacterReferenceId: 0\r\nCompanyAddress: STA. CLARA BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09165684718\r\nExtensionName: \r\nFirstName: JOYCELYN\r\nLastName: ANOYO\r\nMiddleName: L.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771007	2025-03-17	15:32:45.6338162	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3791\r\nCharacterReferenceId: 0\r\nCompanyAddress: TINGA ITAAS, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09770076091\r\nExtensionName: \r\nFirstName: IRISH\r\nLastName: FESTIJO\r\nMiddleName: S.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771008	2025-03-17	15:32:45.6388163	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 425\r\nAddress2: \r\nBarangay: WAWA\r\nBasicInformationId: 3791\r\nBirthDate: February 14, 1997\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rosebel.gamab@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROSEBEL\r\nFullName: ROSEBEL A. GAMAB\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GAMAB\r\nMaidenName: \r\nMiddleName: ARGUELLES\r\nMobileNumber: 09773646513\r\nNationality: Filipino\r\nPermanentAddress1: 425\r\nPermanentAddress2: \r\nPermanentBarangay: WAWA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 3\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 3\r\nTIN: \r\nWeight: 46\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 425\r\nAddress2: \r\nBarangay: WAWA\r\nBasicInformationId: 3791\r\nBirthDate: February 14, 1997\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rosebel.gamab@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROSEBEL\r\nFullName: ROSEBEL A. GAMAB\r\nGender: Female\r\nGovernmentIdIssuedDate: January 29, 2024\r\nGovernmentIdNumber: 1638128\r\nGovernmentIdPlaceIssued: SOUTH PARK CENTER\r\nGovernmentIssuedId: PRC ID / LICENSE\r\nGSIS: 02006108789\r\nHDMF: 1212-0561-1111\r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GAMAB\r\nMaidenName: \r\nMiddleName: ARGUELLES\r\nMobileNumber: 09773646513\r\nNationality: Filipino\r\nPermanentAddress1: 425\r\nPermanentAddress2: \r\nPermanentBarangay: WAWA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 3\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050521133-1\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3906590-4\r\nStreetName: PUROK 3\r\nTIN: 705-325-364-0000\r\nWeight: 46\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771044	2025-03-17	15:43:58.0183490	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 0081\r\nAddress2: PUROK 1\r\nBarangay: CONDE LABAC\r\nBasicInformationId: 0\r\nBirthDate: March 30, 1997\r\nBirthPlace: CORCUERA, ROMBLON\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: carla.falculan@deped.gov.ph\r\nExtensionName: \r\nFirstName: CARLA\r\nFullName: CARLA F. FALCULAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437028138\r\nLastName: FALCULAN\r\nMaidenName: \r\nMiddleName: FAMODULAN\r\nMobileNumber: 09555945710\r\nNationality: Filipino\r\nPermanentAddress1: 0081\r\nPermanentAddress2: PUROK 1\r\nPermanentBarangay: CONDE LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: MALIGAYA ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: MALIGAYA ROAD\r\nTIN: \r\nWeight: 71\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771045	2025-03-17	15:43:58.0414350	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3795\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2004\r\nDateTo: 2010\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: WAWA ELEMENTARY SCHOOL\r\nYearGraduated: 2010\r\n	admin	EducationalBackgrounds	1
771046	2025-03-17	15:43:58.0424348	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: 8TH PLACE\r\nBasicInformationId: 3795\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2010\r\nDateTo: 2014\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: CONDE LABAC NATIONAL HIGH SCHOOL\r\nYearGraduated: 2014\r\n	admin	EducationalBackgrounds	1
771047	2025-03-17	15:43:58.0424348	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: BEST IN PRACTICE TEACHING\r\nBasicInformationId: 3795\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2014\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
771048	2025-03-17	15:43:58.0424348	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: MAGNA CUM LAUDE\r\nBasicInformationId: 3795\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2019\r\nDateTo: 2021\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2021\r\n	admin	EducationalBackgrounds	1
772531	2025-03-19	10:05:58.6732422	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3826\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
771010	2025-03-17	15:34:23.7206568	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3792\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,421.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
771011	2025-03-17	15:34:23.7256401	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3792\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
771012	2025-03-17	15:34:23.7306235	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3792\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
771013	2025-03-17	15:34:23.7356068	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3792\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 03, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,798.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
771014	2025-03-17	15:34:23.7405901	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3792\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 26,012.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: October 02, 2022\r\n	admin	Experiences	1
771015	2025-03-17	15:34:23.7445768	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3792\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 24,450.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
771016	2025-03-17	15:34:23.7495601	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3792\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 24,161.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 30, 2021\r\n	admin	Experiences	1
771017	2025-03-17	15:34:23.7545435	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3792\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,600.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
771018	2025-03-17	15:34:23.7595269	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3792\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 13, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,038.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
771019	2025-03-17	15:34:23.7635135	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3792\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 12, 2019\r\n	admin	Experiences	1
771020	2025-03-17	15:34:23.7684968	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3792\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
771021	2025-03-17	15:34:23.7734801	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3792\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,620.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
771022	2025-03-17	15:34:23.7784636	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3792\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 13, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 18,735.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
771023	2025-03-17	15:34:23.7824501	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3792\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 18,735.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 12, 2016\r\n	admin	Experiences	1
771024	2025-03-17	15:34:23.7874336	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3792\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
771025	2025-03-17	15:34:23.7924167	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3792\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: March 11, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2015\r\n	admin	Experiences	1
771027	2025-03-17	15:36:54.2018915	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3792\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 12977\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771028	2025-03-17	15:36:54.2138511	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3792\r\nEmployeeTrainingId: 0\r\nFromDate: October 07, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: October 10, 2024\r\nTrainingId: 16508\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771029	2025-03-17	15:36:54.2258108	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3792\r\nEmployeeTrainingId: 0\r\nFromDate: July 03, 2024\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 03, 2024\r\nTrainingId: 16483\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771030	2025-03-17	15:36:54.2547142	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3792\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16471\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771031	2025-03-17	15:36:54.2626886	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3792\r\nEmployeeTrainingId: 0\r\nFromDate: August 30, 2022\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: September 03, 2022\r\nTrainingId: 16556\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771032	2025-03-17	15:37:22.1375022	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3792\r\nSkillId: 0\r\nSkillName: DRIVING\r\n	admin	Skills	1
771033	2025-03-17	15:38:15.4212035	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3790\r\nSkillId: 0\r\nSkillName: READING\r\n	admin	Skills	1
771034	2025-03-17	15:38:15.4311702	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3790\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
771035	2025-03-17	15:38:15.4361537	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3790\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
771036	2025-03-17	15:38:15.4441268	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3790\r\nSkillId: 0\r\nSkillName: DRAWING\r\n	admin	Skills	1
771037	2025-03-17	15:38:15.4481134	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3790\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
771049	2025-03-17	15:43:58.0424348	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: BEST RESEARCH PRESENTER\r\nBasicInformationId: 3795\r\nCourse: \r\nCourseId: 1259\r\nCourseOrMajor: \r\nDateFrom: 2022\r\nDateTo: 2024\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: SPECIALIZED IN EDUCATION\r\nSchoolorUniversity: LYCEUM OF THE PHILIPPINES UNIVERSITY BATANGAS\r\nYearGraduated: 2024\r\n	admin	EducationalBackgrounds	1
771050	2025-03-17	15:43:58.0424348	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3795\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CARLITO\r\nFullName: CARLITO FALCUTILA FALCULAN\r\nGender: Male\r\nLastName: FALCULAN\r\nMaidenName: \r\nMiddleName: FALCUTILA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
771026	2025-03-17	15:36:00.9055788	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3793\r\nDateOfExamination: March 06, 2019\r\nDateOfRelease: October 19, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: March 06, 2019\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1757728\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 79.80\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS \r\n	admin	Eligibilities	1
771040	2025-03-17	15:41:27.4631994	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3793\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: September 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: January 01, 2024\r\n	admin	Experiences	1
771060	2025-03-17	15:48:41.4015475	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BAWAT PAARALAN EDUKASYON- THE PHILIPPINE WHOLE SCHOOL CONTINUUM CONGRESS (BPE CONGRESS)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
771074	2025-03-17	15:51:45.2918708	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SELF-PACED LEARNING ROLES OF TEACHERS TOWARDS THE NEW NORMAL\r\nTrainingId: 0\r\nType: TECHNICAL \r\n	admin	Trainings	1
771075	2025-03-17	15:53:14.0016900	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3793\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16400\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771076	2025-03-17	15:53:14.0096928	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3793\r\nEmployeeTrainingId: 0\r\nFromDate: January 26, 2024\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BANABA WEST ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16471\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771077	2025-03-17	15:53:14.0146929	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3793\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: January 25, 2024\r\nTrainingId: 16468\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771078	2025-03-17	15:53:14.0196932	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3793\r\nEmployeeTrainingId: 0\r\nFromDate: May 13, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: REX ACADEMY \r\nStatus: \r\nToDate: May 20, 2022\r\nTrainingId: 16563\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771079	2025-03-17	15:53:14.0246929	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3793\r\nEmployeeTrainingId: 0\r\nFromDate: January 04, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: C&E PUBLISHING INCORPORATION\r\nStatus: \r\nToDate: January 04, 2022\r\nTrainingId: 16564\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771082	2025-03-17	15:57:01.0896937	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3793\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN WEST BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09563977545\r\nExtensionName: \r\nFirstName: RUEL \r\nLastName: DE CASTRO \r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771083	2025-03-17	15:57:01.0936934	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3793\r\nCharacterReferenceId: 0\r\nCompanyAddress: BANABA WEST BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 7239175\r\nExtensionName: \r\nFirstName: CHITO\r\nLastName: MACATANGAY\r\nMiddleName: H\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771084	2025-03-17	15:57:01.0996936	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3793\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN EAST BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 7231608\r\nExtensionName: \r\nFirstName: EDEN \r\nLastName: DESTACAMENTO\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771107	2025-03-17	16:00:28.7983756	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3795\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 3\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16340\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771108	2025-03-17	16:00:28.8023757	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3795\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16400\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771038	2025-03-17	15:41:10.5499434	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STA. CLARA\r\nBasicInformationId: 0\r\nBirthDate: August 31, 1979\r\nBirthPlace: STA. CLARA, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lorelyn.mendoza001@deped.gov.ph\r\nExtensionName: \r\nFirstName: LORELYN\r\nFullName: LORELYN M. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.56\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09158591386\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STA. CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 6\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 6\r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771039	2025-03-17	15:41:10.5606555	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3794\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
771041	2025-03-17	15:42:46.1589251	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3794\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LEOPOLDO\r\nFullName: LEOPOLDO OCAMPO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: OCAMPO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
771042	2025-03-17	15:42:46.1688919	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3794\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: COLETA\r\nFullName: COLETA MENDOZA MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: ANDAL\r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
771043	2025-03-17	15:42:46.1738751	<Undetected>	Update	BasicInformationId: 3794\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3591\r\n	BasicInformationId: 3794\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3591\r\n	admin	Questionnaires	1
771054	2025-03-17	15:45:19.7357857	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3794\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1988\r\nDateTo: 1993\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: STA. CLARA ELEMENTARY SCHOOL\r\nYearGraduated: 1993\r\n	admin	EducationalBackgrounds	1
771055	2025-03-17	15:45:19.7397725	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3794\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 1997\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1997\r\n	admin	EducationalBackgrounds	1
771056	2025-03-17	15:45:19.7497391	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3794\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1997\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
771057	2025-03-17	15:45:19.7547226	<Undetected>	Update	BasicInformationId: 3794\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3976\r\nExtensionName: \r\nFirstName: LEOPOLDO\r\nFullName: LEOPOLDO OCAMPO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: OCAMPO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3794\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3976\r\nExtensionName: \r\nFirstName: LEOPOLDO\r\nFullName: LEOPOLDO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: OCAMPO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
771058	2025-03-17	15:45:19.7616992	<Undetected>	Update	BasicInformationId: 3794\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3977\r\nExtensionName: \r\nFirstName: COLETA\r\nFullName: COLETA MENDOZA MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: ANDAL\r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3794\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3977\r\nExtensionName: \r\nFirstName: COLETA\r\nFullName: COLETA MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
771080	2025-03-17	15:54:33.7683889	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: JUAN KAPATID COACH TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
771081	2025-03-17	15:56:39.4959194	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ILEARN, ICREATE, ISHARE DIGITAL CAPABILITIESl: EMPOWERING EDUCATORS FOR 21ST CENTURY LEARNING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
771099	2025-03-17	16:00:28.7603754	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3795\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
771100	2025-03-17	16:00:28.7643754	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3795\r\nSkillId: 0\r\nSkillName: HOSTING\r\n	admin	Skills	1
771051	2025-03-17	15:43:58.0424348	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3795\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LIWAYWAY\r\nFullName: LIWAYWAY FAJICULAY FAMODULAN\r\nGender: Female\r\nLastName: FAMODULAN\r\nMaidenName: \r\nMiddleName: FAJICULAY\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
771052	2025-03-17	15:43:58.0424348	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3795\r\nDateOfExamination: September 30, 2018\r\nDateOfRelease: March 30, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 30, 2018\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1697710\r\nPlaceOfExamination: PRC LUCENA\r\nRating: 79.60\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
771053	2025-03-17	15:43:58.0434346	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3795\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
771065	2025-03-17	15:50:07.0992828	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3795\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,024.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: March 17, 2025\r\n	admin	Experiences	1
771066	2025-03-17	15:50:07.1042845	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3795\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
771067	2025-03-17	15:50:07.1092844	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3795\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / LIBJO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 22, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: April 21, 2023\r\n	admin	Experiences	1
771068	2025-03-17	15:50:07.1132841	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3795\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / MALIBAYO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: November 02, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,439.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: December 16, 2022\r\n	admin	Experiences	1
771069	2025-03-17	15:50:07.1182829	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3795\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / MALIBAYO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 22, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,439.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: October 20, 2022\r\n	admin	Experiences	1
771070	2025-03-17	15:50:07.1232828	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3795\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / MALIBAYO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 16, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,439.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: April 14, 2022\r\n	admin	Experiences	1
771071	2025-03-17	15:50:07.1272841	<Undetected>	Update	BasicInformationId: 3795\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3978\r\nExtensionName: \r\nFirstName: CARLITO\r\nFullName: CARLITO FALCUTILA FALCULAN\r\nGender: Male\r\nLastName: FALCULAN\r\nMaidenName: \r\nMiddleName: FALCUTILA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3795\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3978\r\nExtensionName: \r\nFirstName: CARLITO\r\nFullName: CARLITO FALCULAN\r\nGender: Male\r\nLastName: FALCULAN\r\nMaidenName: \r\nMiddleName: FALCUTILA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
771072	2025-03-17	15:50:07.1322840	<Undetected>	Update	BasicInformationId: 3795\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3979\r\nExtensionName: \r\nFirstName: LIWAYWAY\r\nFullName: LIWAYWAY FAJICULAY FAMODULAN\r\nGender: Female\r\nLastName: FAMODULAN\r\nMaidenName: \r\nMiddleName: FAJICULAY\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3795\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3979\r\nExtensionName: \r\nFirstName: LIWAYWAY\r\nFullName: LIWAYWAY FAMODULAN\r\nGender: Female\r\nLastName: FAMODULAN\r\nMaidenName: \r\nMiddleName: FAJICULAY\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
771073	2025-03-17	15:50:07.1372842	<Undetected>	Update	BasicInformationId: 3795\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3592\r\n	BasicInformationId: 3795\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3592\r\n	admin	Questionnaires	1
771059	2025-03-17	15:46:55.6367883	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STA. CLARA\r\nBasicInformationId: 3794\r\nBirthDate: August 31, 1979\r\nBirthPlace: STA. CLARA, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lorelyn.mendoza001@deped.gov.ph\r\nExtensionName: \r\nFirstName: LORELYN\r\nFullName: LORELYN M. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.56\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09158591386\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STA. CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 6\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 6\r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STA. CLARA\r\nBasicInformationId: 3794\r\nBirthDate: August 31, 1979\r\nBirthPlace: STA. CLARA, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lorelyn.mendoza001@deped.gov.ph\r\nExtensionName: \r\nFirstName: LORELYN\r\nFullName: LORELYN M. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 16, 2017\r\nGovernmentIdNumber: 1200638\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02004739881\r\nHDMF: 1212-0596-6432\r\nHeight: 1.56\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09158591386\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STA. CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 6\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-201847329-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 6\r\nTIN: 447-936-123-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771061	2025-03-17	15:48:54.2400091	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3794\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES, SORO-SORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09913261235\r\nExtensionName: \r\nFirstName: EPITACIA\r\nLastName: CULLERA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771062	2025-03-17	15:48:54.2439957	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3794\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN EAST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175057894\r\nExtensionName: \r\nFirstName: AUREA\r\nLastName: OCON\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771063	2025-03-17	15:48:54.2499758	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3794\r\nCharacterReferenceId: 0\r\nCompanyAddress: P. HERRERA ST., BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09618306429\r\nExtensionName: \r\nFirstName: ELIZA\r\nLastName: NEBRIDA\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771064	2025-03-17	15:49:57.0370053	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3794\r\nDateOfExamination: March 10, 2013\r\nDateOfRelease: August 31, 2024\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: March 10, 2013\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1200638\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 77.4\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
771085	2025-03-17	15:57:55.3972225	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3794\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,597.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
771086	2025-03-17	15:57:55.4032023	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3794\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 04, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 29,085.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
771087	2025-03-17	15:57:55.4071887	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3794\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,796.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 03, 2024\r\n	admin	Experiences	1
771088	2025-03-17	15:57:55.4121720	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3794\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,284.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
771089	2025-03-17	15:57:55.4171555	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3794\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,723.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
771101	2025-03-17	16:00:28.7693755	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3795\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
771090	2025-03-17	15:57:55.4221390	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3794\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 04, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 24,161.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
771091	2025-03-17	15:57:55.4261253	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3794\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 23,877.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 03, 2021\r\n	admin	Experiences	1
771092	2025-03-17	15:57:55.4311086	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3794\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,316.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
771093	2025-03-17	15:57:55.4360922	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3794\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
771094	2025-03-17	15:57:55.4410756	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3794\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 04, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
771095	2025-03-17	15:57:55.4460595	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3794\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 10, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,620.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: October 30, 2017\r\n	admin	Experiences	1
771096	2025-03-17	15:57:55.4510427	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3794\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 27, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: December 15, 2016\r\n	admin	Experiences	1
771097	2025-03-17	15:57:55.4550294	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3794\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 10, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: October 08, 2015\r\n	admin	Experiences	1
771112	2025-03-17	16:01:19.9510450	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3794\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 20\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16457\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771113	2025-03-17	16:01:19.9560285	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3794\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16470\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771114	2025-03-17	16:01:19.9610121	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3794\r\nEmployeeTrainingId: 0\r\nFromDate: January 25, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: January 25, 2024\r\nTrainingId: 16346\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771115	2025-03-17	16:01:19.9649986	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3794\r\nEmployeeTrainingId: 0\r\nFromDate: February 08, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: February 08, 2023\r\nTrainingId: 15172\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771116	2025-03-17	16:01:19.9699819	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3794\r\nEmployeeTrainingId: 0\r\nFromDate: February 06, 2023\r\nHours: 18\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: February 08, 2023\r\nTrainingId: 16557\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771098	2025-03-17	16:00:18.1379228	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STA. RITA KARSADA BANABA A-POOL\r\nBasicInformationId: 3793\r\nBirthDate: October 19, 1997\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: DIANAROSE.MENDOZA001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: DIANA ROSE\r\nFullName: DIANA ROSE C. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.61\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: CAISIP\r\nMobileNumber: 09099736978\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STA. RITA KARSADA BANABA A-POOL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 48\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STA. RITA KARSADA BANABA A-POOL\r\nBasicInformationId: 3793\r\nBirthDate: October 19, 1997\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: DIANAROSE.MENDOZA001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: DIANA ROSE\r\nFullName: DIANA ROSE C. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: June 03, 2019\r\nGovernmentIdNumber: 1757728\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: 02006108745\r\nHDMF: 1211-6910-4489\r\nHeight: 1.61\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: CAISIP\r\nMobileNumber: 09099736978\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STA. RITA KARSADA BANABA A-POOL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-250197858-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 34-5872659-3\r\nStreetName: \r\nTIN: 327-960-231-0000\r\nWeight: 48\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771121	2025-03-17	16:03:51.9122741	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 0\r\nBirthDate: November 12, 1974\r\nBirthPlace: BATANGAS CITY\r\nBloodType: \r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: KATHLEEN.MENDOZA001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: KATHLEEN\r\nFullName: KATHLEEN T. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.34\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 9806001\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: TINGCHUY\r\nMobileNumber: 09293210478\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ROADSIDE\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ROADSIDE\r\nTIN: \r\nWeight: 58\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771122	2025-03-17	16:03:51.9231576	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3796\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
771133	2025-03-17	16:08:15.8311753	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3796\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RUBEN\r\nFullName: RUBEN MACATANGAY TINGCHUY\r\nGender: Male\r\nLastName: TINGCHUY\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
771134	2025-03-17	16:08:15.8516911	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3796\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MA. VICTORIA\r\nFullName: MA. VICTORIA LOZA DE LEYOS\r\nGender: Male\r\nLastName: DE LEYOS\r\nMaidenName: \r\nMiddleName: LOZA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
771135	2025-03-17	16:08:15.8556905	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3796\r\nBirthDate: January 28, 1995\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JULIUS ADRIELLE\r\nFullName: JULIUS ADRIELLE T MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: T\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771136	2025-03-17	16:08:15.8656907	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3796\r\nBirthDate: June 18, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARIA SOPHIA\r\nFullName: MARIA SOPHIA T MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: T\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771137	2025-03-17	16:08:15.8696905	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3796\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALLEN\r\nFullName: ALLEN LUNAR MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: LUNAR\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771138	2025-03-17	16:08:15.8756906	<Undetected>	Update	BasicInformationId: 3796\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3593\r\n	BasicInformationId: 3796\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3593\r\n	admin	Questionnaires	1
771150	2025-03-17	16:12:31.6144648	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3796\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1983\r\nDateTo: 1988\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BANABA WEST ELEMENTARY SCHOOL \r\nYearGraduated: 1988\r\n	admin	EducationalBackgrounds	1
771109	2025-03-17	16:00:28.8073757	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3795\r\nEmployeeTrainingId: 0\r\nFromDate: October 07, 2024\r\nHours: 9\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGS CITY - STA. CLARA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: October 09, 2024\r\nTrainingId: 16547\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771110	2025-03-17	16:00:28.8113740	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3795\r\nEmployeeTrainingId: 0\r\nFromDate: September 13, 2024\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: GOKONGWEI BROTHERS FOUNDATION\r\nStatus: \r\nToDate: September 14, 2024\r\nTrainingId: 16565\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771111	2025-03-17	16:00:28.8163740	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3795\r\nEmployeeTrainingId: 0\r\nFromDate: June 15, 2024\r\nHours: 4\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY\r\nStatus: \r\nToDate: June 15, 2024\r\nTrainingId: 16566\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771123	2025-03-17	16:04:26.2763177	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3795\r\nCharacterReferenceId: 0\r\nCompanyAddress: BANABA SOUTH, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09189305412\r\nExtensionName: \r\nFirstName: `FLORA\r\nLastName: MACALALAD\r\nMiddleName: A.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771124	2025-03-17	16:04:26.2853181	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3795\r\nCharacterReferenceId: 0\r\nCompanyAddress: NATUNUAN NORTH SAN PASCUAL, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09276974555\r\nExtensionName: \r\nFirstName: MAILA\r\nLastName: COMIA\r\nMiddleName: C.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771125	2025-03-17	16:04:26.2963189	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3795\r\nCharacterReferenceId: 0\r\nCompanyAddress: BALAGTAS, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09171761446\r\nExtensionName: \r\nFirstName: BABY LESSETE\r\nLastName: AGUBA\r\nMiddleName: G.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771126	2025-03-17	16:04:26.3183176	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 0081\r\nAddress2: PUROK 1\r\nBarangay: CONDE LABAC\r\nBasicInformationId: 3795\r\nBirthDate: March 30, 1997\r\nBirthPlace: CORCUERA, ROMBLON\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: carla.falculan@deped.gov.ph\r\nExtensionName: \r\nFirstName: CARLA\r\nFullName: CARLA F. FALCULAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437028138\r\nLastName: FALCULAN\r\nMaidenName: \r\nMiddleName: FAMODULAN\r\nMobileNumber: 09555945710\r\nNationality: Filipino\r\nPermanentAddress1: 0081\r\nPermanentAddress2: PUROK 1\r\nPermanentBarangay: CONDE LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: MALIGAYA ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: MALIGAYA ROAD\r\nTIN: \r\nWeight: 71\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 0081\r\nAddress2: PUROK 1\r\nBarangay: CONDE LABAC\r\nBasicInformationId: 3795\r\nBirthDate: March 30, 1997\r\nBirthPlace: CORCUERA, ROMBLON\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: carla.falculan@deped.gov.ph\r\nExtensionName: \r\nFirstName: CARLA\r\nFullName: CARLA F. FALCULAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 03, 2019\r\nGovernmentIdNumber: 1697710\r\nGovernmentIdPlaceIssued: LUCENA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02006022875\r\nHDMF: 1212-9407-8178\r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437028138\r\nLastName: FALCULAN\r\nMaidenName: \r\nMiddleName: FAMODULAN\r\nMobileNumber: 09555945710\r\nNationality: Filipino\r\nPermanentAddress1: 0081\r\nPermanentAddress2: PUROK 1\r\nPermanentBarangay: CONDE LABAC\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: MALIGAYA ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050561710-9\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-4084374-6\r\nStreetName: MALIGAYA ROAD\r\nTIN: 605-687-216-0000\r\nWeight: 71\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771139	2025-03-17	16:08:34.9440577	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3789\r\nBirthDate: September 11, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RICHARD BIATO THYREESE\r\nFullName: RICHARD BIATO THYREESE ATIENZA LOZANO\r\nGender: Male\r\nLastName: LOZANO\r\nMaidenName: \r\nMiddleName: ATIENZA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771140	2025-03-17	16:08:34.9550571	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3789\r\nBirthDate: November 07, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SIMONE MELACHEA\r\nFullName: SIMONE MELACHEA ATIENZA LOZANO\r\nGender: Male\r\nLastName: LOZANO\r\nMaidenName: \r\nMiddleName: ATIENZA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771141	2025-03-17	16:08:34.9590569	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3789\r\nBirthDate: April 12, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ZANDRO LUIS\r\nFullName: ZANDRO LUIS ATIENZA LAZANO\r\nGender: Male\r\nLastName: LAZANO\r\nMaidenName: \r\nMiddleName: ATIENZA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771142	2025-03-17	16:08:34.9640570	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3789\r\nBirthDate: March 05, 2019\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CONCEPCION MARTINA\r\nFullName: CONCEPCION MARTINA ATIENZA LAZANO\r\nGender: Female\r\nLastName: LAZANO\r\nMaidenName: \r\nMiddleName: ATIENZA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771148	2025-03-17	16:09:49.1265451	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3787\r\nBirthDate: January 06, 2020\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: XYRIEL BREANNE\r\nFullName: XYRIEL BREANNE BORRES PLATA\r\nGender: Female\r\nLastName: PLATA\r\nMaidenName: \r\nMiddleName: BORRES\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771127	2025-03-17	16:05:04.5816205	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 163\r\nAddress2: \r\nBarangay: MALITAM\r\nBasicInformationId: 0\r\nBirthDate: June 25, 1993\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: aiza.mercado@deped.gov.ph\r\nExtensionName: \r\nFirstName: AIZA\r\nFullName: AIZA M. GUTIERREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GUTIERREZ\r\nMaidenName: \r\nMiddleName: MERCADO\r\nMobileNumber: 09661725842\r\nNationality: Filipino\r\nPermanentAddress1: 163\r\nPermanentAddress2: \r\nPermanentBarangay: MALITAM\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ROSAL\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ROSAL\r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771128	2025-03-17	16:05:04.5912903	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3797\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
771129	2025-03-17	16:06:11.8165521	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3797\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09166827012\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ANSELMO\r\nFullName: ANSELMO GRABOSO GUTIERREZ\r\nGender: Male\r\nLastName: GUTIERREZ\r\nMaidenName: \r\nMiddleName: GRABOSO\r\nOccupation: TEACHER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771130	2025-03-17	16:06:11.8275155	<Undetected>	Update	BasicInformationId: 3797\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3594\r\n	BasicInformationId: 3797\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3594\r\n	admin	Questionnaires	1
771131	2025-03-17	16:06:56.5849803	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3797\r\nBirthDate: May 02, 2023\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: AZIA AINSLEY\r\nFullName: AZIA AINSLEY MERCADO GUTIERREZ\r\nGender: Male\r\nLastName: GUTIERREZ\r\nMaidenName: \r\nMiddleName: MERCADO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771132	2025-03-17	16:06:56.5959439	<Undetected>	Update	BasicInformationId: 3797\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09166827012\r\nEmployeeRelativeId: 3980\r\nExtensionName: \r\nFirstName: ANSELMO\r\nFullName: ANSELMO GRABOSO GUTIERREZ\r\nGender: Male\r\nLastName: GUTIERREZ\r\nMaidenName: \r\nMiddleName: GRABOSO\r\nOccupation: TEACHER\r\nRelationship: Husband\r\n	BasicInformationId: 3797\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09166827012\r\nEmployeeRelativeId: 3980\r\nExtensionName: \r\nFirstName: ANSELMO\r\nFullName: ANSELMO GUTIERREZ\r\nGender: Male\r\nLastName: GUTIERREZ\r\nMaidenName: \r\nMiddleName: GRABOSO\r\nOccupation: TEACHER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771143	2025-03-17	16:09:10.7927092	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: 2ND HONOR\r\nBasicInformationId: 3797\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2000\r\nDateTo: 2006\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: LIPONPON ELEMENTARY SCHOOL\r\nYearGraduated: 2006\r\n	admin	EducationalBackgrounds	1
771144	2025-03-17	16:09:10.7976927	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: EBD SCHOLARSHIP\r\nBasicInformationId: 3797\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2006\r\nDateTo: 2010\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAN ANTONIO NATIONAL HIGH SCHOOL\r\nYearGraduated: 2010\r\n	admin	EducationalBackgrounds	1
771145	2025-03-17	16:09:10.8116452	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3797\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 2010\r\nDateTo: 2014\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: COLEGIO NG LUNGSOD NG BATANGAS\r\nYearGraduated: 2014\r\n	admin	EducationalBackgrounds	1
771146	2025-03-17	16:09:10.8306208	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3797\r\nCourse: \r\nCourseId: 1284\r\nCourseOrMajor: \r\nDateFrom: 2015\r\nDateTo: 2017\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: EDUCATIONAL ADMINISTRATION\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2017\r\n	admin	EducationalBackgrounds	1
771147	2025-03-17	16:09:10.8451525	<Undetected>	Update	BasicInformationId: 3797\r\nBirthDate: May 02, 2023\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3981\r\nExtensionName: \r\nFirstName: AZIA AINSLEY\r\nFullName: AZIA AINSLEY MERCADO GUTIERREZ\r\nGender: Male\r\nLastName: GUTIERREZ\r\nMaidenName: \r\nMiddleName: MERCADO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3797\r\nBirthDate: May 02, 2023\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3981\r\nExtensionName: \r\nFirstName: AZIA AINSLEY\r\nFullName: AZIA AINSLEY GUTIERREZ\r\nGender: Male\r\nLastName: GUTIERREZ\r\nMaidenName: \r\nMiddleName: MERCADO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771149	2025-03-17	16:11:50.5601692	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 163\r\nAddress2: \r\nBarangay: MALITAM\r\nBasicInformationId: 3797\r\nBirthDate: June 25, 1993\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: aiza.mercado@deped.gov.ph\r\nExtensionName: \r\nFirstName: AIZA\r\nFullName: AIZA M. GUTIERREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GUTIERREZ\r\nMaidenName: \r\nMiddleName: MERCADO\r\nMobileNumber: 09661725842\r\nNationality: Filipino\r\nPermanentAddress1: 163\r\nPermanentAddress2: \r\nPermanentBarangay: MALITAM\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ROSAL\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ROSAL\r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 163\r\nAddress2: \r\nBarangay: MALITAM\r\nBasicInformationId: 3797\r\nBirthDate: June 25, 1993\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: aiza.mercado@deped.gov.ph\r\nExtensionName: \r\nFirstName: AIZA\r\nFullName: AIZA M. GUTIERREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005142104\r\nHDMF: 1211-2339-1021\r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GUTIERREZ\r\nMaidenName: \r\nMiddleName: MERCADO\r\nMobileNumber: 09661725842\r\nNationality: Filipino\r\nPermanentAddress1: 163\r\nPermanentAddress2: \r\nPermanentBarangay: MALITAM\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ROSAL\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ROSAL\r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771160	2025-03-17	16:17:34.1992187	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 163\r\nAddress2: \r\nBarangay: MALITAM\r\nBasicInformationId: 3797\r\nBirthDate: June 25, 1993\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: aiza.mercado@deped.gov.ph\r\nExtensionName: \r\nFirstName: AIZA\r\nFullName: AIZA M. GUTIERREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02005142104\r\nHDMF: 1211-2339-1021\r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GUTIERREZ\r\nMaidenName: \r\nMiddleName: MERCADO\r\nMobileNumber: 09661725842\r\nNationality: Filipino\r\nPermanentAddress1: 163\r\nPermanentAddress2: \r\nPermanentBarangay: MALITAM\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ROSAL\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ROSAL\r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 163\r\nAddress2: \r\nBarangay: MALITAM\r\nBasicInformationId: 3797\r\nBirthDate: June 25, 1993\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: aiza.mercado@deped.gov.ph\r\nExtensionName: \r\nFirstName: AIZA\r\nFullName: AIZA M. GUTIERREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: November 25, 2014\r\nGovernmentIdNumber: 1335485\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC LICENSE\r\nGSIS: 02005142104\r\nHDMF: 1211-2339-1021\r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GUTIERREZ\r\nMaidenName: \r\nMiddleName: MERCADO\r\nMobileNumber: 09661725842\r\nNationality: Filipino\r\nPermanentAddress1: 163\r\nPermanentAddress2: \r\nPermanentBarangay: MALITAM\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ROSAL\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025426561-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ROSAL\r\nTIN: 460-276-473-0000\r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771161	2025-03-17	16:19:26.5545137	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3797\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES, SORO SORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09913261235\r\nExtensionName: \r\nFirstName: EPITACIA\r\nLastName: CULLERA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771162	2025-03-17	16:19:26.5585003	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3797\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN EAST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175057894\r\nExtensionName: \r\nFirstName: AUREA\r\nLastName: OCON\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771163	2025-03-17	16:19:26.5664738	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3797\r\nCharacterReferenceId: 0\r\nCompanyAddress: P. HERRERA STREET, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09618306429\r\nExtensionName: \r\nFirstName: ELIZA\r\nLastName: NEBRIDA\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771164	2025-03-17	16:21:01.0621016	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3797\r\nDateOfExamination: August 17, 2014\r\nDateOfRelease: June 25, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 17, 2014\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1335485\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 76\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
771168	2025-03-17	16:30:54.1457316	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3797\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,733.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
771169	2025-03-17	16:30:54.1497182	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3797\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 16, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 33,183.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
771151	2025-03-17	16:12:31.6195145	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3796\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1989\r\nDateTo: 1992\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAINT BRIDGET COLLEGE \r\nYearGraduated: 1992\r\n	admin	EducationalBackgrounds	1
771152	2025-03-17	16:12:31.6254637	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3796\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1993\r\nDateTo: 1999\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY\r\nYearGraduated: 1999\r\n	admin	EducationalBackgrounds	1
771153	2025-03-17	16:12:31.6374678	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3796\r\nCourse: \r\nCourseId: 1333\r\nCourseOrMajor: \r\nDateFrom: 2012\r\nDateTo: 2014\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: EDUCATIONAL MANAGEMENT \r\nSchoolorUniversity: GOLDEN GATE COLLEGES \r\nYearGraduated: 2014\r\n	admin	EducationalBackgrounds	1
771154	2025-03-17	16:12:31.6474707	<Undetected>	Update	BasicInformationId: 3796\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3982\r\nExtensionName: \r\nFirstName: RUBEN\r\nFullName: RUBEN MACATANGAY TINGCHUY\r\nGender: Male\r\nLastName: TINGCHUY\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3796\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3982\r\nExtensionName: \r\nFirstName: RUBEN\r\nFullName: RUBEN TINGCHUY\r\nGender: Male\r\nLastName: TINGCHUY\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
771155	2025-03-17	16:12:31.6710205	<Undetected>	Update	BasicInformationId: 3796\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3983\r\nExtensionName: \r\nFirstName: MA. VICTORIA\r\nFullName: MA. VICTORIA LOZA DE LEYOS\r\nGender: Male\r\nLastName: DE LEYOS\r\nMaidenName: \r\nMiddleName: LOZA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3796\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3983\r\nExtensionName: \r\nFirstName: MA. VICTORIA\r\nFullName: MA. VICTORIA DE LEYOS\r\nGender: Male\r\nLastName: DE LEYOS\r\nMaidenName: \r\nMiddleName: LOZA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
771156	2025-03-17	16:12:31.6778924	<Undetected>	Update	BasicInformationId: 3796\r\nBirthDate: January 28, 1995\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3984\r\nExtensionName: \r\nFirstName: JULIUS ADRIELLE\r\nFullName: JULIUS ADRIELLE T MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: T\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3796\r\nBirthDate: January 28, 1995\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3984\r\nExtensionName: \r\nFirstName: JULIUS ADRIELLE\r\nFullName: JULIUS ADRIELLE MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: T\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771157	2025-03-17	16:12:31.6839371	<Undetected>	Update	BasicInformationId: 3796\r\nBirthDate: June 18, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3985\r\nExtensionName: \r\nFirstName: MARIA SOPHIA\r\nFullName: MARIA SOPHIA T MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: T\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3796\r\nBirthDate: June 18, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3985\r\nExtensionName: \r\nFirstName: MARIA SOPHIA\r\nFullName: MARIA SOPHIA MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: T\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771158	2025-03-17	16:12:31.6879369	<Undetected>	Update	BasicInformationId: 3796\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3986\r\nExtensionName: \r\nFirstName: ALLEN\r\nFullName: ALLEN LUNAR MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: LUNAR\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3796\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3986\r\nExtensionName: \r\nFirstName: ALLEN\r\nFullName: ALLEN MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: LUNAR\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771159	2025-03-17	16:14:28.2101780	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3796\r\nDateOfExamination: August 08, 1999\r\nDateOfRelease: November 12, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 08, 1999\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0592341\r\nPlaceOfExamination: V. MAPA HIGHSCHOOL QUIAPO MANILA\r\nRating: 79\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS \r\n	admin	Eligibilities	1
771165	2025-03-17	16:21:44.4015136	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3796\r\nCompanyInstitution: DEPARTMENT OF EDUCATION  \r\nExperienceId: 0\r\nFromDate: October 19, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 19,940.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: January 05, 2014\r\n	admin	Experiences	1
771166	2025-03-17	16:21:44.4135133	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3796\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 06, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 19,940.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: October 25, 2014\r\n	admin	Experiences	1
771193	2025-03-17	16:43:01.5073705	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3797\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16400\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771167	2025-03-17	16:21:44.4375985	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3796\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: October 26, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 33,819.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: January 01, 2025\r\n	admin	Experiences	1
771219	2025-03-17	16:55:55.4304128	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2021 REGIONAL WEBINAR IN READING\r\nTrainingId: 0\r\nType: TECHNICAL \r\n	admin	Trainings	1
771222	2025-03-17	16:59:00.7027048	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL LEARNING ACTION CELL\r\nTrainingId: 0\r\nType: TECHNICAL \r\n	admin	Trainings	1
771223	2025-03-17	17:00:29.1533393	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3796\r\nEmployeeTrainingId: 0\r\nFromDate: February 07, 2025\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OFFICE BATANGAS CITY BANABA WEST ELEMENTARY\r\nStatus: \r\nToDate: February 07, 2025\r\nTrainingId: 16508\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771224	2025-03-17	17:00:29.1593405	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3796\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION  SCHOOLS DIVISION OFFICE BATANGAS CITY\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16357\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771225	2025-03-17	17:00:29.1633391	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3796\r\nEmployeeTrainingId: 0\r\nFromDate: March 01, 2021\r\nHours: 20\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION 4A CALABARZON\r\nStatus: \r\nToDate: March 05, 2021\r\nTrainingId: 16342\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771226	2025-03-17	17:00:29.1693387	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3796\r\nEmployeeTrainingId: 0\r\nFromDate: December 11, 2021\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION 4-A CALABARZON  \r\nStatus: \r\nToDate: December 11, 2021\r\nTrainingId: 16568\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771170	2025-03-17	16:30:54.1556980	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3797\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: February 15, 2024\r\n	admin	Experiences	1
771171	2025-03-17	16:30:54.1596854	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3797\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
771172	2025-03-17	16:30:54.1647067	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3797\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 15, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,798.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
771173	2025-03-17	16:30:54.1696917	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3797\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,798.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: August 14, 2022\r\n	admin	Experiences	1
771174	2025-03-17	16:30:54.1746734	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3797\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 28,276.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
771175	2025-03-17	16:30:54.1786609	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3797\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 03, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 26,754.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
771176	2025-03-17	16:30:54.1836041	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3797\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,316.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: November 02, 2020\r\n	admin	Experiences	1
771177	2025-03-17	16:30:54.1875908	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3797\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
771178	2025-03-17	16:30:54.1925744	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3797\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
771179	2025-03-17	16:30:54.1975574	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3797\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 05, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,620.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
771180	2025-03-17	16:34:01.0339206	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCES LEARN: STRATEGIC COACHING ON ENHANCING STRUGGLING LEARNERS ENGAGEMENT APPROACH FOR READING AND NUMERACY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
771192	2025-03-17	16:43:01.4984006	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3797\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 3\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16340\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771274	2025-03-18	08:21:11.3283784	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3796\r\nRecognitionId: 0\r\nRecognitionName: RESEARCH PRESENTER \r\n	admin	Recognitions	1
771181	2025-03-17	16:35:56.3214969	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK. 1, LOT 14\r\nAddress2: \r\nBarangay: DUMANTAY\r\nBasicInformationId: 0\r\nBirthDate: February 12, 1991\r\nBirthPlace: BATANGAS CITY\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: \r\nExtensionName: \r\nFirstName: MA. ALELI\r\nFullName: MA. ALELI P. BAYANI\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BAYANI\r\nMaidenName: \r\nMiddleName: PANALIGAN\r\nMobileNumber: 09079937667\r\nNationality: Filipino\r\nPermanentAddress1: BLK. 1, LOT 14\r\nPermanentAddress2: \r\nPermanentBarangay: DUMANTAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO KANLURAN\r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO KANLURAN\r\nTIN: \r\nWeight: 49\r\nZipCode: \r\n	admin	BasicInformation	1
771182	2025-03-17	16:35:56.3392551	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3798\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1998\r\nDateTo: 2003\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: STA. CLARA ELEMENTARY SCHOOL\r\nYearGraduated: 2003\r\n	admin	EducationalBackgrounds	1
771183	2025-03-17	16:35:56.3402551	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3798\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2007\r\n	admin	EducationalBackgrounds	1
771184	2025-03-17	16:35:56.3402551	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3798\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2008\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: COLEGIO NG LUNGSOD NG BATANGAS\r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
771185	2025-03-17	16:35:56.3402551	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3798\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EDWIN\r\nFullName: EDWIN MANALO BAYANI\r\nGender: Male\r\nLastName: BAYANI\r\nMaidenName: \r\nMiddleName: MANALO\r\nOccupation: TRICYCLE DRIVER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771186	2025-03-17	16:35:56.3412538	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3798\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROLANDO\r\nFullName: ROLANDO GUNIHIN PANALIGAN\r\nGender: Male\r\nLastName: PANALIGAN\r\nMaidenName: \r\nMiddleName: GUNIHIN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
771187	2025-03-17	16:35:56.3412538	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3798\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MA. DOLORES\r\nFullName: MA. DOLORES ARCEGA PAGWAGAN\r\nGender: Female\r\nLastName: PAGWAGAN\r\nMaidenName: \r\nMiddleName: ARCEGA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
771188	2025-03-17	16:35:56.3412538	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3798\r\nBirthDate: May 22, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALLIYAH MAE\r\nFullName: ALLIYAH MAE PANALIGAN BAYANI\r\nGender: Female\r\nLastName: BAYANI\r\nMaidenName: \r\nMiddleName: PANALIGAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771189	2025-03-17	16:35:56.3422537	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3798\r\nBirthDate: September 24, 2015\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALDWIN JAY\r\nFullName: ALDWIN JAY PANALIGAN BAYANI\r\nGender: Male\r\nLastName: BAYANI\r\nMaidenName: \r\nMiddleName: PANALIGAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771190	2025-03-17	16:35:56.3422537	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3798\r\nDateOfExamination: January 26, 2014\r\nDateOfRelease: February 12, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: January 26, 2014\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1307303\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 75.0\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
771191	2025-03-17	16:35:56.3422537	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3798\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
771275	2025-03-18	08:21:11.3373776	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3796\r\nRecognitionId: 0\r\nRecognitionName: MOST BEHAVE AWARD (SCHOOL CATEGORY)\r\n	admin	Recognitions	1
771194	2025-03-17	16:43:01.5113575	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3797\r\nEmployeeTrainingId: 0\r\nFromDate: October 07, 2024\r\nHours: 9\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: October 09, 2024\r\nTrainingId: 16567\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771195	2025-03-17	16:43:01.5163406	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3797\r\nEmployeeTrainingId: 0\r\nFromDate: June 15, 2024\r\nHours: 4\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY\r\nStatus: \r\nToDate: June 15, 2024\r\nTrainingId: 16566\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771196	2025-03-17	16:43:01.5213239	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3797\r\nEmployeeTrainingId: 0\r\nFromDate: June 08, 2024\r\nHours: 4\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY\r\nStatus: \r\nToDate: June 08, 2024\r\nTrainingId: 16566\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771217	2025-03-17	16:53:32.6961120	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: HALIGUE SILANGAN\r\nBasicInformationId: 0\r\nBirthDate: December 25, 1994\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: revegen.balmes@deped.gov.ph\r\nExtensionName: \r\nFirstName: REVEGEN\r\nFullName: REVEGEN M. BALMES\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BALMES\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nMobileNumber: 09268507800\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: HALIGUE SILANGAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 48\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771218	2025-03-17	16:53:32.7091501	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3799\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
771220	2025-03-17	16:56:59.3636058	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 10 LOT 34\r\nAddress2: \r\nBarangay: BALETE RELOCATION SITE\r\nBasicInformationId: 0\r\nBirthDate: September 05, 1981\r\nBirthPlace: CORCUERA, ROMBLON\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: melisa.mendoza001@deped.gov.ph\r\nExtensionName: \r\nFirstName: MELISA\r\nFullName: MELISA F. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: FALEJO\r\nMobileNumber: 09493687250\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 10 LOT 34\r\nPermanentAddress2: \r\nPermanentBarangay: BALETE RELOCATION SITE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 54\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771221	2025-03-17	16:56:59.3731573	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3800\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
771197	2025-03-17	16:53:00.7571726	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3798\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,597.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: March 17, 2025\r\n	admin	Experiences	1
771198	2025-03-17	16:53:00.7621727	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3798\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 04, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 29,085.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
771199	2025-03-17	16:53:00.7661710	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3798\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,796.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 03, 2024\r\n	admin	Experiences	1
771200	2025-03-17	16:53:00.7711710	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3798\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,573.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
771201	2025-03-17	16:53:00.7761725	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3798\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,723.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
771202	2025-03-17	16:53:00.7811715	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3798\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TIBIG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 04, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 24,161.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
771203	2025-03-17	16:53:00.7851712	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3798\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TIBIG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 23,877.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 03, 2021\r\n	admin	Experiences	1
771204	2025-03-17	16:53:00.7901728	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3798\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TIBIG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,316.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
771205	2025-03-17	16:53:00.7941724	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3798\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TIBIG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
771206	2025-03-17	16:53:00.8000528	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3798\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TIBIG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 04, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
771207	2025-03-17	16:53:00.8050543	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3798\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. RITA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: September 29, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,620.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: October 19, 2017\r\n	admin	Experiences	1
771208	2025-03-17	16:53:00.8100522	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3798\r\nCompanyInstitution: LOCAL SCHOOL BOARD \r\nExperienceId: 0\r\nFromDate: November 03, 2014\r\nIsGovernmentService: False\r\nMonthlySalary: 7,000.00\r\nPositionHeld: LOCAL SCHOOL BOARD TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: May 31, 2015\r\n	admin	Experiences	1
771209	2025-03-17	16:53:00.8172186	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3798\r\nCompanyInstitution: MARANATHA CHRISTIAN ACADEMY\r\nExperienceId: 0\r\nFromDate: September 01, 2013\r\nIsGovernmentService: False\r\nMonthlySalary: 4,000.00\r\nPositionHeld: ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: November 15, 2013\r\n	admin	Experiences	1
771210	2025-03-17	16:53:00.8262093	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3798\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / JULIAN A. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 08, 2011\r\nIsGovernmentService: False\r\nMonthlySalary: 3,000.00\r\nPositionHeld: KINDERGARTEN VOLUNTEER TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: March 30, 2012\r\n	admin	Experiences	1
771211	2025-03-17	16:53:00.8312049	<Undetected>	Update	BasicInformationId: 3798\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3992\r\nExtensionName: \r\nFirstName: EDWIN\r\nFullName: EDWIN MANALO BAYANI\r\nGender: Male\r\nLastName: BAYANI\r\nMaidenName: \r\nMiddleName: MANALO\r\nOccupation: TRICYCLE DRIVER\r\nRelationship: Husband\r\n	BasicInformationId: 3798\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3992\r\nExtensionName: \r\nFirstName: EDWIN\r\nFullName: EDWIN BAYANI\r\nGender: Male\r\nLastName: BAYANI\r\nMaidenName: \r\nMiddleName: MANALO\r\nOccupation: TRICYCLE DRIVER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771212	2025-03-17	16:53:00.8361658	<Undetected>	Update	BasicInformationId: 3798\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3993\r\nExtensionName: \r\nFirstName: ROLANDO\r\nFullName: ROLANDO GUNIHIN PANALIGAN\r\nGender: Male\r\nLastName: PANALIGAN\r\nMaidenName: \r\nMiddleName: GUNIHIN\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3798\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3993\r\nExtensionName: \r\nFirstName: ROLANDO\r\nFullName: ROLANDO PANALIGAN\r\nGender: Male\r\nLastName: PANALIGAN\r\nMaidenName: \r\nMiddleName: GUNIHIN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
771213	2025-03-17	16:53:00.8411647	<Undetected>	Update	BasicInformationId: 3798\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3994\r\nExtensionName: \r\nFirstName: MA. DOLORES\r\nFullName: MA. DOLORES ARCEGA PAGWAGAN\r\nGender: Female\r\nLastName: PAGWAGAN\r\nMaidenName: \r\nMiddleName: ARCEGA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3798\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3994\r\nExtensionName: \r\nFirstName: MA. DOLORES\r\nFullName: MA. DOLORES PAGWAGAN\r\nGender: Female\r\nLastName: PAGWAGAN\r\nMaidenName: \r\nMiddleName: ARCEGA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
771214	2025-03-17	16:53:00.8451647	<Undetected>	Update	BasicInformationId: 3798\r\nBirthDate: May 22, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3995\r\nExtensionName: \r\nFirstName: ALLIYAH MAE\r\nFullName: ALLIYAH MAE PANALIGAN BAYANI\r\nGender: Female\r\nLastName: BAYANI\r\nMaidenName: \r\nMiddleName: PANALIGAN\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3798\r\nBirthDate: May 22, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3995\r\nExtensionName: \r\nFirstName: ALLIYAH MAE\r\nFullName: ALLIYAH MAE BAYANI\r\nGender: Female\r\nLastName: BAYANI\r\nMaidenName: \r\nMiddleName: PANALIGAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771215	2025-03-17	16:53:00.8501647	<Undetected>	Update	BasicInformationId: 3798\r\nBirthDate: September 24, 2015\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3996\r\nExtensionName: \r\nFirstName: ALDWIN JAY\r\nFullName: ALDWIN JAY PANALIGAN BAYANI\r\nGender: Male\r\nLastName: BAYANI\r\nMaidenName: \r\nMiddleName: PANALIGAN\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3798\r\nBirthDate: September 24, 2015\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3996\r\nExtensionName: \r\nFirstName: ALDWIN JAY\r\nFullName: ALDWIN JAY BAYANI\r\nGender: Male\r\nLastName: BAYANI\r\nMaidenName: \r\nMiddleName: PANALIGAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771216	2025-03-17	16:53:00.8551646	<Undetected>	Update	BasicInformationId: 3798\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3595\r\n	BasicInformationId: 3798\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3595\r\n	admin	Questionnaires	1
771227	2025-03-18	07:52:17.2110236	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3800\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EMMANUEL\r\nFullName: EMMANUEL MEJICO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: MEJICO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771228	2025-03-18	07:52:17.2219875	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3800\r\nBirthDate: May 01, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: HALLE PATRICIA\r\nFullName: HALLE PATRICIA FALEJO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: FALEJO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771229	2025-03-18	07:52:17.2269705	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3800\r\nBirthDate: December 24, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DEA NOREEN\r\nFullName: DEA NOREEN FALEJO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: FALEJO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771230	2025-03-18	07:52:17.2309571	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3800\r\nBirthDate: May 14, 2010\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MATT ETHAN\r\nFullName: MATT ETHAN FALEJO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: FALEJO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771231	2025-03-18	07:52:17.2399275	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3800\r\nBirthDate: June 16, 2019\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RADLEIGH\r\nFullName: RADLEIGH FALEJO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: FALEJO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771232	2025-03-18	07:52:17.2449101	<Undetected>	Update	BasicInformationId: 3800\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3597\r\n	BasicInformationId: 3800\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3597\r\n	admin	Questionnaires	1
771233	2025-03-18	07:55:19.1987526	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3800\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1988\r\nDateTo: 1994\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: STA. CLARA ELEMENTARY SCHOOL\r\nYearGraduated: 1994\r\n	admin	EducationalBackgrounds	1
771234	2025-03-18	07:55:19.2037361	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3800\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 1998\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1998\r\n	admin	EducationalBackgrounds	1
771235	2025-03-18	07:55:19.2077224	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3800\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1998\r\nDateTo: 2001\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2001\r\n	admin	EducationalBackgrounds	1
771236	2025-03-18	07:55:19.2176893	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3800\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2018\r\nDateTo: 2022\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY - THE NATIONAL ENGINEERING UNIVERSITY\r\nYearGraduated: 2022\r\n	admin	EducationalBackgrounds	1
771237	2025-03-18	07:55:19.2216756	<Undetected>	Update	BasicInformationId: 3800\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3997\r\nExtensionName: \r\nFirstName: EMMANUEL\r\nFullName: EMMANUEL MEJICO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: MEJICO\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3800\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3997\r\nExtensionName: \r\nFirstName: EMMANUEL\r\nFullName: EMMANUEL MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: MEJICO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771238	2025-03-18	07:55:19.2286521	<Undetected>	Update	BasicInformationId: 3800\r\nBirthDate: May 01, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3998\r\nExtensionName: \r\nFirstName: HALLE PATRICIA\r\nFullName: HALLE PATRICIA FALEJO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: FALEJO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3800\r\nBirthDate: May 01, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3998\r\nExtensionName: \r\nFirstName: HALLE PATRICIA\r\nFullName: HALLE PATRICIA MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: FALEJO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771239	2025-03-18	07:55:19.2336770	<Undetected>	Update	BasicInformationId: 3800\r\nBirthDate: December 24, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3999\r\nExtensionName: \r\nFirstName: DEA NOREEN\r\nFullName: DEA NOREEN FALEJO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: FALEJO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3800\r\nBirthDate: December 24, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3999\r\nExtensionName: \r\nFirstName: DEA NOREEN\r\nFullName: DEA NOREEN MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: FALEJO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771240	2025-03-18	07:55:19.2406554	<Undetected>	Update	BasicInformationId: 3800\r\nBirthDate: May 14, 2010\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4000\r\nExtensionName: \r\nFirstName: MATT ETHAN\r\nFullName: MATT ETHAN FALEJO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: FALEJO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3800\r\nBirthDate: May 14, 2010\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4000\r\nExtensionName: \r\nFirstName: MATT ETHAN\r\nFullName: MATT ETHAN MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: FALEJO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771241	2025-03-18	07:55:19.2456361	<Undetected>	Update	BasicInformationId: 3800\r\nBirthDate: June 16, 2019\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4001\r\nExtensionName: \r\nFirstName: RADLEIGH\r\nFullName: RADLEIGH FALEJO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: FALEJO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3800\r\nBirthDate: June 16, 2019\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4001\r\nExtensionName: \r\nFirstName: RADLEIGH\r\nFullName: RADLEIGH MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: FALEJO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771276	2025-03-18	08:21:11.3424211	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3796\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: NATIONAL EDUCATORS ACADAMEY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16570\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771242	2025-03-18	07:57:24.0573398	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 10 LOT 34\r\nAddress2: \r\nBarangay: BALETE RELOCATION SITE\r\nBasicInformationId: 3800\r\nBirthDate: September 05, 1981\r\nBirthPlace: CORCUERA, ROMBLON\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: melisa.mendoza001@deped.gov.ph\r\nExtensionName: \r\nFirstName: MELISA\r\nFullName: MELISA F. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: FALEJO\r\nMobileNumber: 09493687250\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 10 LOT 34\r\nPermanentAddress2: \r\nPermanentBarangay: BALETE RELOCATION SITE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 54\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 10 LOT 34\r\nAddress2: \r\nBarangay: BALETE RELOCATION SITE\r\nBasicInformationId: 3800\r\nBirthDate: September 05, 1981\r\nBirthPlace: CORCUERA, ROMBLON\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: melisa.mendoza001@deped.gov.ph\r\nExtensionName: \r\nFirstName: MELISA\r\nFullName: MELISA F. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: September 25, 2016\r\nGovernmentIdNumber: 1480734\r\nGovernmentIdPlaceIssued: LUCENA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02003448045\r\nHDMF: 1490-0098-0914\r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: FALEJO\r\nMobileNumber: 09493687250\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 10 LOT 34\r\nPermanentAddress2: \r\nPermanentBarangay: BALETE RELOCATION SITE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000069547-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 944-779-028-0000\r\nWeight: 54\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771243	2025-03-18	07:58:27.6805262	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 10 LOT 34\r\nAddress2: \r\nBarangay: BALETE RELOCATION SITE\r\nBasicInformationId: 3800\r\nBirthDate: September 05, 1981\r\nBirthPlace: CORCUERA, ROMBLON\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: melisa.mendoza001@deped.gov.ph\r\nExtensionName: \r\nFirstName: MELISA\r\nFullName: MELISA F. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: September 25, 2016\r\nGovernmentIdNumber: 1480734\r\nGovernmentIdPlaceIssued: LUCENA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02003448045\r\nHDMF: 1490-0098-0914\r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: FALEJO\r\nMobileNumber: 09493687250\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 10 LOT 34\r\nPermanentAddress2: \r\nPermanentBarangay: BALETE RELOCATION SITE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000069547-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 944-779-028-0000\r\nWeight: 54\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 10 LOT 34\r\nAddress2: \r\nBarangay: BALETE RELOCATION SITE\r\nBasicInformationId: 3800\r\nBirthDate: September 05, 1981\r\nBirthPlace: CORCUERA, ROMBLON\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: melisa.mendoza001@deped.gov.ph\r\nExtensionName: \r\nFirstName: MELISA\r\nFullName: MELISA F. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: October 29, 2002\r\nGovernmentIdNumber: 0756656\r\nGovernmentIdPlaceIssued: LUCENA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02003448045\r\nHDMF: 1490-0098-0914\r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: FALEJO\r\nMobileNumber: 09493687250\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 10 LOT 34\r\nPermanentAddress2: \r\nPermanentBarangay: BALETE RELOCATION SITE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000069547-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 944-779-028-0000\r\nWeight: 54\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771244	2025-03-18	08:00:14.9092739	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3800\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES, SORO-SORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09089915567\r\nExtensionName: \r\nFirstName: EPITACIA\r\nLastName: CULLERA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771245	2025-03-18	08:00:14.9132603	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3800\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN EAST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175057894\r\nExtensionName: \r\nFirstName: AUREA\r\nLastName: OCON\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771246	2025-03-18	08:00:14.9192407	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3800\r\nCharacterReferenceId: 0\r\nCompanyAddress: P. HERRERA STREET, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09618306429\r\nExtensionName: \r\nFirstName: ELIZA\r\nLastName: NEBRIDA\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771247	2025-03-18	08:01:14.0166607	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3800\r\nDateOfExamination: January 08, 2001\r\nDateOfRelease: September 05, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: January 08, 2001\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0756656\r\nPlaceOfExamination: LUCENA CITY\r\nRating: \r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
771248	2025-03-18	08:08:38.8827852	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3800\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,421.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
771249	2025-03-18	08:08:38.8877683	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3800\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 10, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
771250	2025-03-18	08:08:38.8927519	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3800\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 30,705.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 10, 2024\r\n	admin	Experiences	1
771251	2025-03-18	08:08:38.8967383	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3800\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 29,165.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
771252	2025-03-18	08:08:38.9017217	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3800\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 02, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 27,608.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
771253	2025-03-18	08:08:38.9067050	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3800\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: March 12, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 26,901.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-6\r\nStatus: Permanent\r\nToDate: November 01, 2022\r\n	admin	Experiences	1
771254	2025-03-18	08:18:57.3314142	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MASTER FOR GRADE 1 TEACHERS ACROSS ALL LEARNING AREAS\r\nTrainingId: 0\r\nType: TEHCNICAL \r\n	admin	Trainings	1
771255	2025-03-18	08:20:44.4207880	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3800\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 26,600.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: November 03, 2022\r\n	admin	Experiences	1
771256	2025-03-18	08:20:44.4257714	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3800\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 25,038.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
771257	2025-03-18	08:20:44.4307546	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3800\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 23,477.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
771258	2025-03-18	08:20:44.4357380	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3800\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: December 03, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,915.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
771259	2025-03-18	08:20:44.4397246	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3800\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,619.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: November 03, 2019\r\n	admin	Experiences	1
771260	2025-03-18	08:20:44.4447080	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3800\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,963.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
771261	2025-03-18	08:20:44.4496912	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3800\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 20,326.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
771262	2025-03-18	08:20:44.4546747	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3800\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: December 03, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,709.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
771273	2025-03-18	08:21:11.3233776	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3796\r\nSkillId: 0\r\nSkillName: COMPUTER SKILLS \r\n	admin	Skills	1
771263	2025-03-18	08:20:44.4596580	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3800\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,496.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: November 03, 2016\r\n	admin	Experiences	1
771264	2025-03-18	08:20:44.4646413	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3800\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: December 03, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 18,922.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
771265	2025-03-18	08:20:44.4686279	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3800\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 06, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 18,735.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: November 03, 2013\r\n	admin	Experiences	1
771266	2025-03-18	08:20:44.4736114	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3800\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 06, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 17,318.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
771267	2025-03-18	08:20:44.4785947	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3800\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 15,900.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
771268	2025-03-18	08:20:44.4835780	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3800\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: March 12, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 14,483.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
771269	2025-03-18	08:20:44.4875646	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3800\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 07, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 14,198.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: March 11, 2010\r\n	admin	Experiences	1
771270	2025-03-18	08:20:44.4925481	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3800\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 07, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,026.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
771271	2025-03-18	08:20:44.4975312	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3800\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,933.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
771272	2025-03-18	08:20:44.5025146	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3800\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: March 12, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
771277	2025-03-18	08:22:36.4815110	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT IV TRAINING OF K-3 TEACHERS FOR EARLY LANGUAGE, LITERACY AND NUMERACY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
771282	2025-03-18	08:24:02.5902744	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PAMBANSANG SEMINAR GAWAING-KAPULUNGAN SA FILIPINO\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
771283	2025-03-18	08:24:34.3870702	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3800\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 20\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16457\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771278	2025-03-18	08:23:13.6879545	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3796\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09563977545\r\nExtensionName: \r\nFirstName: RUEL \r\nLastName: DE CASTRO\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771279	2025-03-18	08:23:13.6959546	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3796\r\nCharacterReferenceId: 0\r\nCompanyAddress: STA. RITA BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 7273554\r\nExtensionName: \r\nFirstName: SUSAN\r\nLastName: ALDOVER\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771280	2025-03-18	08:23:13.7009597	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3796\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ANDRES BAUAN BATANGAS \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: ANTONIA \r\nLastName: DOLOR \r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771281	2025-03-18	08:23:59.2771907	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT IV GAD TRAINING: GENDER AND DEVELOPMENT TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
771292	2025-03-18	08:27:47.5589422	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL-BASED IN-SERVICE TRAINING 2024\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
771300	2025-03-18	08:30:04.6882644	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SEMSTRAL BREAK IN-SERVICE TRAINING ON PEDAGOGICAL APPROACHES IN TEACHING CUM STRATEGIES IN TEACHING READING FOR KEY STAGE 1 & 2 TEACHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
771313	2025-03-18	08:35:39.1782939	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3798\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
771314	2025-03-18	08:35:39.1833102	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3798\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
771315	2025-03-18	08:35:39.1883831	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3798\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
771316	2025-03-18	08:35:39.1926122	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3798\r\nSkillId: 0\r\nSkillName: DRAWING\r\n	admin	Skills	1
771317	2025-03-18	08:35:39.1978889	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3798\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
771318	2025-03-18	08:35:39.2020780	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3798\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
771319	2025-03-18	08:35:39.2071399	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3798\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / DISTRICT IV\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16572\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771320	2025-03-18	08:35:39.2123699	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3798\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: January 19, 2024\r\nTrainingId: 16470\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771321	2025-03-18	08:35:39.2163767	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3798\r\nEmployeeTrainingId: 0\r\nFromDate: January 25, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / DISTRICT IV\r\nStatus: \r\nToDate: January 25, 2024\r\nTrainingId: 16346\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771322	2025-03-18	08:35:39.2215702	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3798\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16552\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771323	2025-03-18	08:35:39.2265876	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3798\r\nEmployeeTrainingId: 0\r\nFromDate: February 06, 2023\r\nHours: 18\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: February 08, 2023\r\nTrainingId: 16575\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771324	2025-03-18	08:35:39.2305947	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3798\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES SORO-SORO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09913261235\r\nExtensionName: \r\nFirstName: EPITACIA CONCHA\r\nLastName: CULLERA\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771325	2025-03-18	08:35:39.2356054	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3798\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN EAST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175057894\r\nExtensionName: \r\nFirstName: AUREA \r\nLastName: OCON\r\nMiddleName: P.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771284	2025-03-18	08:24:34.3920534	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3800\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16470\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771285	2025-03-18	08:24:34.3970372	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3800\r\nEmployeeTrainingId: 0\r\nFromDate: April 01, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY - DISTRICT IV\r\nStatus: \r\nToDate: April 01, 2023\r\nTrainingId: 16571\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771286	2025-03-18	08:24:34.4030168	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3800\r\nEmployeeTrainingId: 0\r\nFromDate: August 03, 2022\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: August 05, 2022\r\nTrainingId: 16381\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771287	2025-03-18	08:24:34.4070038	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3800\r\nEmployeeTrainingId: 0\r\nFromDate: November 27, 2021\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: November 27, 2021\r\nTrainingId: 16573\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771288	2025-03-18	08:24:49.4912905	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3800\r\nSkillId: 0\r\nSkillName: READING\r\n	admin	Skills	1
771289	2025-03-18	08:26:13.6532709	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3799\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: BENJAMIN\r\nFullName: BENJAMIN MAGTIBAY BALMES\r\nGender: Male\r\nLastName: BALMES\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
771290	2025-03-18	08:26:13.6582541	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3799\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MINA\r\nFullName: MINA MARASIGAN BALMES\r\nGender: Male\r\nLastName: BALMES\r\nMaidenName: VELASQUEZ\r\nMiddleName: MARASIGAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
771291	2025-03-18	08:26:13.6632376	<Undetected>	Update	BasicInformationId: 3799\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3596\r\n	BasicInformationId: 3799\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3596\r\n	admin	Questionnaires	1
771293	2025-03-18	08:28:07.6103570	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3796\r\nBirthDate: November 12, 1974\r\nBirthPlace: BATANGAS CITY\r\nBloodType: \r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: KATHLEEN.MENDOZA001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: KATHLEEN\r\nFullName: KATHLEEN T. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.34\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 9806001\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: TINGCHUY\r\nMobileNumber: 09293210478\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ROADSIDE\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ROADSIDE\r\nTIN: \r\nWeight: 58\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3796\r\nBirthDate: November 12, 1974\r\nBirthPlace: BATANGAS CITY\r\nBloodType: \r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: KATHLEEN.MENDOZA001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: KATHLEEN\r\nFullName: KATHLEEN T. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: October 21, 1999\r\nGovernmentIdNumber: 0592341\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02002877290\r\nHDMF: 1490-0094-5321\r\nHeight: 1.34\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 9806001\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: TINGCHUY\r\nMobileNumber: 09293210478\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ROADSIDE\r\nPermanentZipCode: 4200\r\nPhilhealth: 17-000041403-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ROADSIDE\r\nTIN: 926-102-678-0000\r\nWeight: 58\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771294	2025-03-18	08:28:12.0659194	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: HALIGUE SILANGAN\r\nBasicInformationId: 3799\r\nBirthDate: December 25, 1994\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: revegen.balmes@deped.gov.ph\r\nExtensionName: \r\nFirstName: REVEGEN\r\nFullName: REVEGEN M. BALMES\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BALMES\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nMobileNumber: 09268507800\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: HALIGUE SILANGAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 48\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: HALIGUE SILANGAN\r\nBasicInformationId: 3799\r\nBirthDate: December 25, 1994\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: revegen.balmes@deped.gov.ph\r\nExtensionName: \r\nFirstName: REVEGEN\r\nFullName: REVEGEN M. BALMES\r\nGender: Female\r\nGovernmentIdIssuedDate: September 25, 2016\r\nGovernmentIdNumber: 1480734\r\nGovernmentIdPlaceIssued: LUCENA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02005603688\r\nHDMF: 1212-0323-6194\r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BALMES\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nMobileNumber: 09268507800\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: HALIGUE SILANGAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050519306-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-4169949-4\r\nStreetName: \r\nTIN: 744-648-019-0000\r\nWeight: 48\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771295	2025-03-18	08:28:12.0778794	<Undetected>	Update	BasicInformationId: 3799\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4002\r\nExtensionName: \r\nFirstName: BENJAMIN\r\nFullName: BENJAMIN MAGTIBAY BALMES\r\nGender: Male\r\nLastName: BALMES\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3799\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4002\r\nExtensionName: \r\nFirstName: BENJAMIN\r\nFullName: BENJAMIN BALMES\r\nGender: Male\r\nLastName: BALMES\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
771296	2025-03-18	08:28:12.0818661	<Undetected>	Update	BasicInformationId: 3799\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4003\r\nExtensionName: \r\nFirstName: MINA\r\nFullName: MINA MARASIGAN BALMES\r\nGender: Male\r\nLastName: BALMES\r\nMaidenName: VELASQUEZ\r\nMiddleName: MARASIGAN\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3799\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4003\r\nExtensionName: \r\nFirstName: MINA\r\nFullName: MINA BALMES\r\nGender: Male\r\nLastName: BALMES\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
771297	2025-03-18	08:29:48.4787375	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3799\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES, SORO-SORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09913261235\r\nExtensionName: \r\nFirstName: EPITACIA\r\nLastName: CULLERA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771298	2025-03-18	08:29:48.4857144	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3799\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN EAST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175057894\r\nExtensionName: \r\nFirstName: AUREA\r\nLastName: OCON\r\nMiddleName: P \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771299	2025-03-18	08:29:48.4906977	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3799\r\nCharacterReferenceId: 0\r\nCompanyAddress: P. HERRERA STREET, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09618306429\r\nExtensionName: \r\nFirstName: ELIZA\r\nLastName: NEBRIDA\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771303	2025-03-18	08:32:04.0527681	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3799\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: HALIGUE SILANGAN ELEMENTARY SCHOOL\r\nYearGraduated: 2007\r\n	admin	EducationalBackgrounds	1
771304	2025-03-18	08:32:04.0637312	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3799\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2007\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: STO. NINO NATIONAL HIGH SCHOOL\r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
771305	2025-03-18	08:32:04.0677179	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3799\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2012\r\nDateTo: 2016\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2016\r\n	admin	EducationalBackgrounds	1
771306	2025-03-18	08:32:04.0727010	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3799\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2017\r\nDateTo: 2019\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: PRESCHOOL EDUCATION\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2019\r\n	admin	EducationalBackgrounds	1
771329	2025-03-18	08:39:11.4043205	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3799\r\nDateOfExamination: September 25, 2016\r\nDateOfRelease: December 25, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 25, 2016\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1480734\r\nPlaceOfExamination: LUCENA\r\nRating: 77.2\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
771330	2025-03-18	08:39:11.4093037	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3799\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,024.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
771331	2025-03-18	08:39:11.4142873	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3799\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
771362	2025-03-18	08:43:40.8204261	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3799\r\nEmployeeTrainingId: 0\r\nFromDate: May 24, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: INTERNATIONAL WEBINAR-TRAINING IN ENGLISH\r\nStatus: \r\nToDate: May 24, 2024\r\nTrainingId: 16577\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771301	2025-03-18	08:31:25.7865723	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 0\r\nBirthDate: May 08, 1986\r\nBirthPlace: SAN MIGUEL BULACAN\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: JOVELYN.PASYA@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: JOVELYN\r\nFullName: JOVELYN G. PASIA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PASIA\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nMobileNumber: 09926280464\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO MANGGAHAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO MANGGAHAN\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771302	2025-03-18	08:31:25.7995844	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3801\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
771307	2025-03-18	08:34:44.1973652	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3801\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JAYSON\r\nFullName: JAYSON DE CASTRO PASIA\r\nGender: Male\r\nLastName: PASIA\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771308	2025-03-18	08:34:44.2013652	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3801\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOEL\r\nFullName: JOEL VICENTE GUTIERREZ\r\nGender: Male\r\nLastName: GUTIERREZ\r\nMaidenName: \r\nMiddleName: VICENTE\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
771309	2025-03-18	08:34:44.2113651	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3801\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: VIRGINIA\r\nFullName: VIRGINIA CABARTIJA LEGASPI\r\nGender: Male\r\nLastName: LEGASPI\r\nMaidenName: \r\nMiddleName: CABARTIJA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
771310	2025-03-18	08:34:44.2163650	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3801\r\nBirthDate: January 27, 2012\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FHERCISSE JHAYLENE\r\nFullName: FHERCISSE JHAYLENE G PASIA\r\nGender: Male\r\nLastName: PASIA\r\nMaidenName: \r\nMiddleName: G\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771311	2025-03-18	08:34:44.2233662	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3801\r\nBirthDate: September 21, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CALEB JHESUA\r\nFullName: CALEB JHESUA G PASIA\r\nGender: Male\r\nLastName: PASIA\r\nMaidenName: \r\nMiddleName: G\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771312	2025-03-18	08:34:44.2293673	<Undetected>	Update	BasicInformationId: 3801\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3598\r\n	BasicInformationId: 3801\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3598\r\n	admin	Questionnaires	1
771328	2025-03-18	08:39:02.8224831	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER OF ARTS IN EDUC.\r\nLevel: College\r\n	admin	Courses	1
771340	2025-03-18	08:42:05.8082401	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3801\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1993\r\nDateTo: 1999\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: CAMIAS NORTH CENTRAL ELEMENTARY SCHOOL \r\nYearGraduated: 1999\r\n	admin	EducationalBackgrounds	1
771341	2025-03-18	08:42:05.8132473	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3801\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1999\r\nDateTo: 2003\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAN MIGUEL HIGH SCHOOL \r\nYearGraduated: 2003\r\n	admin	EducationalBackgrounds	1
771342	2025-03-18	08:42:05.8232473	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3801\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BULACAN AGRICULTURAL STATE COLLEGE\r\nYearGraduated: 2003\r\n	admin	EducationalBackgrounds	1
771343	2025-03-18	08:42:05.8289063	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3801\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2015\r\nDateTo: 2016\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: DR. GLORIA D. LACSON FOUNDATION COLLEGES, INC\r\nYearGraduated: 2016\r\n	admin	EducationalBackgrounds	1
771326	2025-03-18	08:35:39.2396116	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3798\r\nCharacterReferenceId: 0\r\nCompanyAddress: P. HERRERA ST. BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09618306429\r\nExtensionName: \r\nFirstName: ELIZA\r\nLastName: NEBRIDA\r\nMiddleName: B.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771327	2025-03-18	08:35:39.2456881	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLK. 1, LOT 14\r\nAddress2: \r\nBarangay: DUMANTAY\r\nBasicInformationId: 3798\r\nBirthDate: February 12, 1991\r\nBirthPlace: BATANGAS CITY\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: \r\nExtensionName: \r\nFirstName: MA. ALELI\r\nFullName: MA. ALELI P. BAYANI\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BAYANI\r\nMaidenName: \r\nMiddleName: PANALIGAN\r\nMobileNumber: 09079937667\r\nNationality: Filipino\r\nPermanentAddress1: BLK. 1, LOT 14\r\nPermanentAddress2: \r\nPermanentBarangay: DUMANTAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO KANLURAN\r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO KANLURAN\r\nTIN: \r\nWeight: 49\r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK. 1, LOT 14\r\nAddress2: \r\nBarangay: DUMANTAY\r\nBasicInformationId: 3798\r\nBirthDate: February 12, 1991\r\nBirthPlace: BATANGAS CITY\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: \r\nExtensionName: \r\nFirstName: MA. ALELI\r\nFullName: MA. ALELI P. BAYANI\r\nGender: Female\r\nGovernmentIdIssuedDate: October 01, 2014\r\nGovernmentIdNumber: 1307303\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID / LICENSE\r\nGSIS: 02005283860\r\nHDMF: 1212-1039-8284\r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BAYANI\r\nMaidenName: \r\nMiddleName: PANALIGAN\r\nMobileNumber: 09079937667\r\nNationality: Filipino\r\nPermanentAddress1: BLK. 1, LOT 14\r\nPermanentAddress2: \r\nPermanentBarangay: DUMANTAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO KANLURAN\r\nPermanentZipCode: \r\nPhilhealth: 09-000091416-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO KANLURAN\r\nTIN: 460-310-841-0000\r\nWeight: 49\r\nZipCode: \r\n	admin	BasicInformation	1
771350	2025-03-18	08:43:19.6762065	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 120\r\nAddress2: \r\nBarangay: SAN PEDRO\r\nBasicInformationId: 0\r\nBirthDate: November 04, 1993\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ANGELICA.RAMIREZ@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ANGELICA\r\nFullName: ANGELICA M. RAMIREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.61\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09953169522\r\nNationality: Filipino\r\nPermanentAddress1: 120\r\nPermanentAddress2: \r\nPermanentBarangay: SAN PEDRO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771351	2025-03-18	08:43:19.6900591	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3802\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOEL\r\nFullName: JOEL BATHAN RAMIREZ\r\nGender: Male\r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: BATHAN\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771352	2025-03-18	08:43:19.6900591	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3802\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ANGELITO\r\nFullName: ANGELITO PENTINO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: PENTINO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
771353	2025-03-18	08:43:19.6900591	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3802\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ELVIE\r\nFullName: ELVIE MALLORCA MADALI\r\nGender: Female\r\nLastName: MADALI\r\nMaidenName: \r\nMiddleName: MALLORCA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
771354	2025-03-18	08:43:19.6900591	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3802\r\nBirthDate: May 24, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: AARON JAMES\r\nFullName: AARON JAMES MENDOZA RAMIREZ\r\nGender: Male\r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771355	2025-03-18	08:43:19.6900591	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3802\r\nBirthDate: November 19, 2021\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DWAYNE JEIAN\r\nFullName: DWAYNE JEIAN MENDOZA BAGON\r\nGender: Male\r\nLastName: BAGON\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771363	2025-03-18	08:44:12.0281889	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3799\r\nSkillId: 0\r\nSkillName: ARTS AND CRAFTS\r\n	admin	Skills	1
771364	2025-03-18	08:44:12.0391512	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3799\r\nSkillId: 0\r\nSkillName: DRAWING\r\n	admin	Skills	1
771332	2025-03-18	08:39:11.4192704	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3799\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 19, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks:  \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
771333	2025-03-18	08:39:11.4232570	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3799\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 18, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: October 18, 2023\r\n	admin	Experiences	1
771334	2025-03-18	08:39:11.4282405	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3799\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 06, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: October 18, 2023\r\n	admin	Experiences	1
771335	2025-03-18	08:39:11.4332239	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3799\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 02, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: July 07, 2023\r\n	admin	Experiences	1
771336	2025-03-18	08:39:11.4382073	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3799\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: March 09, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,439.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: October 20, 2022\r\n	admin	Experiences	1
771337	2025-03-18	08:39:11.4431904	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3799\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 04, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 23,877.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: July 09, 2021\r\n	admin	Experiences	1
771338	2025-03-18	08:39:11.4481737	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3799\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 18, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: October 31, 2019\r\n	admin	Experiences	1
771339	2025-03-18	08:41:00.5506172	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: STRUGGLING LEARNER'S ENGAGEMENT APPROACH FOR READING AND NUMERACY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
771349	2025-03-18	08:42:52.9824894	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: STRENGTHENING THE EDUCATIONAL LANDSCAPE THROUGH LANGUAGE AND LITERACY DEVELOPMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
771358	2025-03-18	08:43:40.8004929	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3799\r\nEmployeeTrainingId: 0\r\nFromDate: December 02, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: December 04, 2024\r\nTrainingId: 16332\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771359	2025-03-18	08:43:40.8054760	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3799\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16536\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771360	2025-03-18	08:43:40.8104595	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3799\r\nEmployeeTrainingId: 0\r\nFromDate: October 07, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: GOKONGWEI BROTHERS FOUNDATION\r\nStatus: \r\nToDate: October 09, 2024\r\nTrainingId: 16576\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771361	2025-03-18	08:43:40.8154427	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3799\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16470\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771365	2025-03-18	08:44:12.0441344	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3799\r\nSkillId: 0\r\nSkillName: PLAYING PIANO AND BANDURRIA\r\n	admin	Skills	1
771366	2025-03-18	08:44:12.0570919	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3799\r\nSkillId: 0\r\nSkillName: READING BIBLE\r\n	admin	Skills	1
771344	2025-03-18	08:42:05.8359063	<Undetected>	Update	BasicInformationId: 3801\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4004\r\nExtensionName: \r\nFirstName: JAYSON\r\nFullName: JAYSON DE CASTRO PASIA\r\nGender: Male\r\nLastName: PASIA\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3801\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4004\r\nExtensionName: \r\nFirstName: JAYSON\r\nFullName: JAYSON PASIA\r\nGender: Male\r\nLastName: PASIA\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771345	2025-03-18	08:42:05.8409064	<Undetected>	Update	BasicInformationId: 3801\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4005\r\nExtensionName: \r\nFirstName: JOEL\r\nFullName: JOEL VICENTE GUTIERREZ\r\nGender: Male\r\nLastName: GUTIERREZ\r\nMaidenName: \r\nMiddleName: VICENTE\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3801\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4005\r\nExtensionName: \r\nFirstName: JOEL\r\nFullName: JOEL GUTIERREZ\r\nGender: Male\r\nLastName: GUTIERREZ\r\nMaidenName: \r\nMiddleName: VICENTE\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
771346	2025-03-18	08:42:05.8499125	<Undetected>	Update	BasicInformationId: 3801\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4006\r\nExtensionName: \r\nFirstName: VIRGINIA\r\nFullName: VIRGINIA CABARTIJA LEGASPI\r\nGender: Male\r\nLastName: LEGASPI\r\nMaidenName: \r\nMiddleName: CABARTIJA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3801\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4006\r\nExtensionName: \r\nFirstName: VIRGINIA\r\nFullName: VIRGINIA LEGASPI\r\nGender: Male\r\nLastName: LEGASPI\r\nMaidenName: \r\nMiddleName: CABARTIJA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
771347	2025-03-18	08:42:05.8549097	<Undetected>	Update	BasicInformationId: 3801\r\nBirthDate: January 27, 2012\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4007\r\nExtensionName: \r\nFirstName: FHERCISSE JHAYLENE\r\nFullName: FHERCISSE JHAYLENE G PASIA\r\nGender: Male\r\nLastName: PASIA\r\nMaidenName: \r\nMiddleName: G\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3801\r\nBirthDate: January 27, 2012\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4007\r\nExtensionName: \r\nFirstName: FHERCISSE JHAYLENE\r\nFullName: FHERCISSE JHAYLENE PASIA\r\nGender: Male\r\nLastName: PASIA\r\nMaidenName: \r\nMiddleName: G\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771348	2025-03-18	08:42:05.8603670	<Undetected>	Update	BasicInformationId: 3801\r\nBirthDate: September 21, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4008\r\nExtensionName: \r\nFirstName: CALEB JHESUA\r\nFullName: CALEB JHESUA G PASIA\r\nGender: Male\r\nLastName: PASIA\r\nMaidenName: \r\nMiddleName: G\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3801\r\nBirthDate: September 21, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4008\r\nExtensionName: \r\nFirstName: CALEB JHESUA\r\nFullName: CALEB JHESUA PASIA\r\nGender: Male\r\nLastName: PASIA\r\nMaidenName: \r\nMiddleName: G\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771367	2025-03-18	08:44:22.8762635	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3801\r\nDateOfExamination: August 26, 2007\r\nDateOfRelease: May 08, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 26, 2007\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 948541\r\nPlaceOfExamination: GEN. MAXIMO SCHOOL, TONDO MANILA\r\nRating: 75.40\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS \r\n	admin	Eligibilities	1
771368	2025-03-18	08:54:59.0231556	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3801\r\nEmployeeTrainingId: 0\r\nFromDate: February 07, 2025\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: BANABA WEST ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: February 07, 2025\r\nTrainingId: 16508\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771369	2025-03-18	08:54:59.0271558	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3801\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16457\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771370	2025-03-18	08:54:59.0361594	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3801\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OFFICE BATANGAS CITY\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16347\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771371	2025-03-18	08:54:59.0401588	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3801\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION DISTRICT-VIII\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16404\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771372	2025-03-18	08:54:59.0456654	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3801\r\nEmployeeTrainingId: 0\r\nFromDate: August 08, 2022\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: OFFICE OF THE UNDERSECRETARY FOR ADMINISTRATION \r\nStatus: \r\nToDate: August 11, 2022\r\nTrainingId: 16516\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771373	2025-03-18	08:54:59.0506653	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3801\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: November 03, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 22,316.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: August 31, 2020\r\n	admin	Experiences	1
771468	2025-03-18	10:45:03.2426432	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3805\r\nRecognitionId: 0\r\nRecognitionName: OUTSTANDING INNOVATOR (TEACHER CATEGORY) 2021\r\n	admin	Recognitions	1
771356	2025-03-18	08:43:19.6900591	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3802\r\nBirthDate: January 12, 2023\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JENICA JEIN\r\nFullName: JENICA JEIN MENDOZA RAMIREZ\r\nGender: Female\r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771357	2025-03-18	08:43:19.6900591	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3802\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
771374	2025-03-18	08:54:59.0556652	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3801\r\nCompanyInstitution: DPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 30,989.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: January 01, 2024\r\n	admin	Experiences	1
771375	2025-03-18	08:55:37.8676680	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3801\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE \r\n	admin	Skills	1
771376	2025-03-18	08:55:37.8787481	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3801\r\nSkillId: 0\r\nSkillName: GOOD COMMUNICATION SKILLS \r\n	admin	Skills	1
771377	2025-03-18	08:55:37.8827476	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3801\r\nSkillId: 0\r\nSkillName: WRITER\r\n	admin	Skills	1
771378	2025-03-18	08:57:51.1691501	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3801\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN WEST BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09563977545\r\nExtensionName: \r\nFirstName: RUEL \r\nLastName: DE CASTRO\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771379	2025-03-18	08:57:51.1797867	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3801\r\nCharacterReferenceId: 0\r\nCompanyAddress: KUMINTANG ILAYA BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 7024838\r\nExtensionName: \r\nFirstName: MERLA \r\nLastName: GAREJO\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771380	2025-03-18	08:57:51.1837867	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3801\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN WEST BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09997159711\r\nExtensionName: \r\nFirstName: MARILYN \r\nLastName: RECIO\r\nMiddleName: Q\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771381	2025-03-18	08:59:56.6029321	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3801\r\nBirthDate: May 08, 1986\r\nBirthPlace: SAN MIGUEL BULACAN\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: JOVELYN.PASYA@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: JOVELYN\r\nFullName: JOVELYN G. PASIA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PASIA\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nMobileNumber: 09926280464\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO MANGGAHAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO MANGGAHAN\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3801\r\nBirthDate: May 08, 1986\r\nBirthPlace: SAN MIGUEL BULACAN\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: JOVELYN.PASYA@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: JOVELYN\r\nFullName: JOVELYN G. PASIA\r\nGender: Female\r\nGovernmentIdIssuedDate: November 21, 2007\r\nGovernmentIdNumber: 0948541\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02003736386\r\nHDMF: 1210-2821-9744\r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PASIA\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nMobileNumber: 09926280464\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO MANGGAHAN\r\nPermanentZipCode: 4200\r\nPhilhealth: 21-000005692-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 34-1124698-4\r\nStreetName: SITIO MANGGAHAN\r\nTIN: 261-337-856-0000\r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771382	2025-03-18	09:03:46.7500028	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 201\r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 0\r\nBirthDate: July 13, 1969\r\nBirthPlace: BANABA WEST BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MARLENE.PERSINCULA001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: MARLENE\r\nFullName: MARLENE F. PERSINCULA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PERSINCULA\r\nMaidenName: \r\nMiddleName: FALTADO\r\nMobileNumber: 09204028921\r\nNationality: Filipino\r\nPermanentAddress1: 201\r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO SEEKERS\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO SEEKERS\r\nTIN: \r\nWeight: 51\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771383	2025-03-18	09:03:46.7600134	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3803\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
771384	2025-03-18	09:06:33.1468851	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3803\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ISAGANI\r\nFullName: ISAGANI GARCIA PERSINCULA\r\nGender: Male\r\nLastName: PERSINCULA\r\nMaidenName: \r\nMiddleName: GARCIA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771385	2025-03-18	09:06:33.1518850	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3803\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ERNESTO\r\nFullName: ERNESTO MACATANGAY FALTADO\r\nGender: Male\r\nLastName: FALTADO\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
771469	2025-03-18	10:45:03.2476444	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3805\r\nRecognitionId: 0\r\nRecognitionName: MOST FUNCTIONAL CLASSROOM (GRADE 1) 2022\r\n	admin	Recognitions	1
771386	2025-03-18	09:06:33.1623914	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3803\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: BONIFACIA\r\nFullName: BONIFACIA MACATANGAY CLARETE\r\nGender: Male\r\nLastName: CLARETE\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
771387	2025-03-18	09:06:33.1673910	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3803\r\nBirthDate: June 24, 1994\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GENELYN JOY\r\nFullName: GENELYN JOY F PERSINCULA\r\nGender: Male\r\nLastName: PERSINCULA\r\nMaidenName: \r\nMiddleName: F\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771388	2025-03-18	09:06:33.1733905	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3803\r\nBirthDate: September 13, 1996\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GRACE ANN\r\nFullName: GRACE ANN F PERSINCULA\r\nGender: Male\r\nLastName: PERSINCULA\r\nMaidenName: \r\nMiddleName: F\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771389	2025-03-18	09:06:33.1784341	<Undetected>	Update	BasicInformationId: 3803\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3600\r\n	BasicInformationId: 3803\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3600\r\n	admin	Questionnaires	1
771390	2025-03-18	09:08:02.4865432	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: CERTIFICATE\r\nBasicInformationId: 3803\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1976\r\nDateTo: 1982\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BANABA WEST ELEMENTARY SCHOOL  \r\nYearGraduated: 1982\r\n	admin	EducationalBackgrounds	1
771391	2025-03-18	09:08:02.4985416	<Undetected>	Update	BasicInformationId: 3803\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4015\r\nExtensionName: \r\nFirstName: ISAGANI\r\nFullName: ISAGANI GARCIA PERSINCULA\r\nGender: Male\r\nLastName: PERSINCULA\r\nMaidenName: \r\nMiddleName: GARCIA\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3803\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4015\r\nExtensionName: \r\nFirstName: ISAGANI\r\nFullName: ISAGANI PERSINCULA\r\nGender: Male\r\nLastName: PERSINCULA\r\nMaidenName: \r\nMiddleName: GARCIA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771392	2025-03-18	09:08:02.5035418	<Undetected>	Update	BasicInformationId: 3803\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4016\r\nExtensionName: \r\nFirstName: ERNESTO\r\nFullName: ERNESTO MACATANGAY FALTADO\r\nGender: Male\r\nLastName: FALTADO\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3803\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4016\r\nExtensionName: \r\nFirstName: ERNESTO\r\nFullName: ERNESTO FALTADO\r\nGender: Male\r\nLastName: FALTADO\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
771393	2025-03-18	09:08:02.5125449	<Undetected>	Update	BasicInformationId: 3803\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4017\r\nExtensionName: \r\nFirstName: BONIFACIA\r\nFullName: BONIFACIA MACATANGAY CLARETE\r\nGender: Male\r\nLastName: CLARETE\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3803\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4017\r\nExtensionName: \r\nFirstName: BONIFACIA\r\nFullName: BONIFACIA CLARETE\r\nGender: Male\r\nLastName: CLARETE\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
771394	2025-03-18	09:08:02.5165449	<Undetected>	Update	BasicInformationId: 3803\r\nBirthDate: June 24, 1994\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4018\r\nExtensionName: \r\nFirstName: GENELYN JOY\r\nFullName: GENELYN JOY F PERSINCULA\r\nGender: Male\r\nLastName: PERSINCULA\r\nMaidenName: \r\nMiddleName: F\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3803\r\nBirthDate: June 24, 1994\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4018\r\nExtensionName: \r\nFirstName: GENELYN JOY\r\nFullName: GENELYN JOY PERSINCULA\r\nGender: Male\r\nLastName: PERSINCULA\r\nMaidenName: \r\nMiddleName: F\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771395	2025-03-18	09:08:02.5225449	<Undetected>	Update	BasicInformationId: 3803\r\nBirthDate: September 13, 1996\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4019\r\nExtensionName: \r\nFirstName: GRACE ANN\r\nFullName: GRACE ANN F PERSINCULA\r\nGender: Male\r\nLastName: PERSINCULA\r\nMaidenName: \r\nMiddleName: F\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3803\r\nBirthDate: September 13, 1996\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4019\r\nExtensionName: \r\nFirstName: GRACE ANN\r\nFullName: GRACE ANN PERSINCULA\r\nGender: Male\r\nLastName: PERSINCULA\r\nMaidenName: \r\nMiddleName: F\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771396	2025-03-18	09:29:41.2787939	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF SCIENCE IN HOME ECONOMICS\r\nLevel: College\r\n	admin	Courses	1
771397	2025-03-18	09:32:22.2971617	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: DIPLOMA\r\nBasicInformationId: 3803\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1982\r\nDateTo: 1986\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1986\r\n	admin	EducationalBackgrounds	1
771398	2025-03-18	09:32:22.3031652	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: DIPLOMA\r\nBasicInformationId: 3803\r\nCourse: \r\nCourseId: 1388\r\nCourseOrMajor: \r\nDateFrom: 1986\r\nDateTo: 1990\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY (PBMIT)\r\nYearGraduated: 1990\r\n	admin	EducationalBackgrounds	1
771470	2025-03-18	10:45:03.2526454	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3805\r\nRecognitionId: 0\r\nRecognitionName: OUTSTANDING INNOVATOR (TEACHER CATEGORY) 2022\r\n	admin	Recognitions	1
771399	2025-03-18	09:32:22.3121652	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3803\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2008\r\nDateTo: 2008\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLGES\r\nYearGraduated: 2008\r\n	admin	EducationalBackgrounds	1
771400	2025-03-18	09:34:00.3304046	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3803\r\nDateOfExamination: May 30, 1993\r\nDateOfRelease: July 13, 2022\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: May 30, 1993\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0060310\r\nPlaceOfExamination: BATANGAS NATIONAL HIGH SCHOOL-BATANGAS CITY\r\nRating: 71\r\nTitle: PROFESSIONAL BOARD EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
771401	2025-03-18	09:49:40.5344931	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3803\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: December 11, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 36,691.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-8\r\nStatus: Permanent\r\nToDate: January 01, 2025\r\n	admin	Experiences	1
771402	2025-03-18	09:49:40.5394931	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3803\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 11, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 14,071.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: -3\r\nStatus: Permanent\r\nToDate: November 11, 2008\r\n	admin	Experiences	1
771403	2025-03-18	09:49:40.5474931	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3803\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: October 11, 1993\r\nIsGovernmentService: True\r\nMonthlySalary: 4,902.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-7\r\nStatus: Permanent\r\nToDate: September 11, 1995\r\n	admin	Experiences	1
771404	2025-03-18	09:49:40.5524953	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3803\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 15, 1992\r\nIsGovernmentService: False\r\nMonthlySalary: 3,102.00\r\nPositionHeld: PROVISIONAL ITEM\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: September 11, 1993\r\n	admin	Experiences	1
771405	2025-03-18	09:49:40.5594944	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3803\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 18, 1991\r\nIsGovernmentService: True\r\nMonthlySalary: 3,102.00\r\nPositionHeld: SUBSTITUTE TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Substitute\r\nToDate: February 15, 1991\r\n	admin	Experiences	1
771406	2025-03-18	09:52:50.9770615	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT IN-SERVICE TRAINING FOR TEACHERS 2024\r\nTrainingId: 0\r\nType: technical\r\n	admin	Trainings	1
771409	2025-03-18	09:56:45.0527575	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT VIII IN-SERVICE TRAINING FOR TEACHERS 2024\r\nTrainingId: 0\r\nType:  TECHNICAL\r\n	admin	Trainings	1
771415	2025-03-18	09:58:52.2123179	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT IN-SERVICE TRAINING FOR TEACHERS\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
771421	2025-03-18	10:02:04.5571739	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL IN-SERVICE TRAINING FOR TEACHERS\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
771422	2025-03-18	10:07:06.3969277	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3803\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: January 25, 2024\r\nTrainingId: 16579\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771423	2025-03-18	10:07:06.4019267	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3803\r\nEmployeeTrainingId: 0\r\nFromDate: January 26, 2024\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16580\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771424	2025-03-18	10:07:06.4114368	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3803\r\nEmployeeTrainingId: 0\r\nFromDate: January 31, 2022\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: February 04, 2022\r\nTrainingId: 16581\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771407	2025-03-18	09:54:33.4395233	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK 8 LOT 9\r\nAddress2: CAMELLA\r\nBarangay: ALANGILAN\r\nBasicInformationId: 0\r\nBirthDate: November 30, 1965\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: andrea.mendoza002@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANDREA GINA\r\nFullName: ANDREA GINA I. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.68\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: ILAGAN\r\nMobileNumber: 09183779813\r\nNationality: Filipino\r\nPermanentAddress1: BLK 8 LOT 9\r\nPermanentAddress2: CAMELLA\r\nPermanentBarangay: ALANGILAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: VERONA, PHASE 2\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: VERONA, PHASE 2\r\nTIN: \r\nWeight: 82\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771408	2025-03-18	09:54:33.4509081	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3804\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
771410	2025-03-18	09:57:01.9657294	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3804\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09176526789\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RODERIC\r\nFullName: RODERIC DILAY MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DILAY\r\nOccupation: SEAFERER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771411	2025-03-18	09:57:01.9697155	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3804\r\nBirthDate: October 20, 1996\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JENDRICK\r\nFullName: JENDRICK ILAGAN MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: ILAGAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771412	2025-03-18	09:57:01.9746989	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3804\r\nBirthDate: February 20, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RENDRIC\r\nFullName: RENDRIC ILAGAN MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: ILAGAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771413	2025-03-18	09:57:01.9856622	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3804\r\nBirthDate: September 27, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ZENDRIC\r\nFullName: ZENDRIC ILAGAN MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: ILAGAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771414	2025-03-18	09:57:01.9966255	<Undetected>	Update	BasicInformationId: 3804\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3601\r\n	BasicInformationId: 3804\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3601\r\n	admin	Questionnaires	1
771416	2025-03-18	09:59:25.0319416	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLK 8 LOT 9\r\nAddress2: CAMELLA\r\nBarangay: ALANGILAN\r\nBasicInformationId: 3804\r\nBirthDate: November 30, 1965\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: andrea.mendoza002@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANDREA GINA\r\nFullName: ANDREA GINA I. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.68\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: ILAGAN\r\nMobileNumber: 09183779813\r\nNationality: Filipino\r\nPermanentAddress1: BLK 8 LOT 9\r\nPermanentAddress2: CAMELLA\r\nPermanentBarangay: ALANGILAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: VERONA, PHASE 2\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: VERONA, PHASE 2\r\nTIN: \r\nWeight: 82\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK 8 LOT 9\r\nAddress2: CAMELLA\r\nBarangay: ALANGILAN\r\nBasicInformationId: 3804\r\nBirthDate: November 30, 1965\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: andrea.mendoza002@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANDREA GINA\r\nFullName: ANDREA GINA I. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: December 07, 2005\r\nGovernmentIdNumber: 0896630\r\nGovernmentIdPlaceIssued: LUCENA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02003512481\r\nHDMF: 1211-7036-0253\r\nHeight: 1.68\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: ILAGAN\r\nMobileNumber: 09183779813\r\nNationality: Filipino\r\nPermanentAddress1: BLK 8 LOT 9\r\nPermanentAddress2: CAMELLA\r\nPermanentBarangay: ALANGILAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: VERONA, PHASE 2\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025045516-9\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 03-9178403-5\r\nStreetName: VERONA, PHASE 2\r\nTIN: 120-966-860-0000\r\nWeight: 82\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771417	2025-03-18	09:59:25.0359281	<Undetected>	Update	BasicInformationId: 3804\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09176526789\r\nEmployeeRelativeId: 4020\r\nExtensionName: \r\nFirstName: RODERIC\r\nFullName: RODERIC DILAY MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DILAY\r\nOccupation: SEAFERER\r\nRelationship: Husband\r\n	BasicInformationId: 3804\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09176526789\r\nEmployeeRelativeId: 4020\r\nExtensionName: \r\nFirstName: RODERIC\r\nFullName: RODERIC MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DILAY\r\nOccupation: SEAFERER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771418	2025-03-18	09:59:25.0409115	<Undetected>	Update	BasicInformationId: 3804\r\nBirthDate: October 20, 1996\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4021\r\nExtensionName: \r\nFirstName: JENDRICK\r\nFullName: JENDRICK ILAGAN MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: ILAGAN\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3804\r\nBirthDate: October 20, 1996\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4021\r\nExtensionName: \r\nFirstName: JENDRICK\r\nFullName: JENDRICK MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: ILAGAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771419	2025-03-18	09:59:25.0518748	<Undetected>	Update	BasicInformationId: 3804\r\nBirthDate: February 20, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4022\r\nExtensionName: \r\nFirstName: RENDRIC\r\nFullName: RENDRIC ILAGAN MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: ILAGAN\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3804\r\nBirthDate: February 20, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4022\r\nExtensionName: \r\nFirstName: RENDRIC\r\nFullName: RENDRIC MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: ILAGAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771420	2025-03-18	09:59:25.0558614	<Undetected>	Update	BasicInformationId: 3804\r\nBirthDate: September 27, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4023\r\nExtensionName: \r\nFirstName: ZENDRIC\r\nFullName: ZENDRIC ILAGAN MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: ILAGAN\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3804\r\nBirthDate: September 27, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4023\r\nExtensionName: \r\nFirstName: ZENDRIC\r\nFullName: ZENDRIC MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: ILAGAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771425	2025-03-18	10:07:06.4154364	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3803\r\nEmployeeTrainingId: 0\r\nFromDate: November 27, 2021\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: November 27, 2021\r\nTrainingId: 16573\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771426	2025-03-18	10:07:06.4214365	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3803\r\nEmployeeTrainingId: 0\r\nFromDate: August 30, 2021\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: NATIONAL\r\nStatus: \r\nToDate: September 03, 2021\r\nTrainingId: 16516\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771427	2025-03-18	10:07:38.7267362	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3803\r\nSkillId: 0\r\nSkillName: PLAYING VOLLEYBALL\r\n	admin	Skills	1
771428	2025-03-18	10:07:38.7317362	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3803\r\nSkillId: 0\r\nSkillName: READING NOVEL STORIES\r\n	admin	Skills	1
771429	2025-03-18	10:09:56.4073175	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3803\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN WEST BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09563977545\r\nExtensionName: \r\nFirstName: RUEL \r\nLastName: DE CASTRO\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771430	2025-03-18	10:09:56.4183193	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3803\r\nCharacterReferenceId: 0\r\nCompanyAddress: BANABA WEST BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 9688568867\r\nExtensionName: \r\nFirstName: CHITO \r\nLastName: MACATANGAY \r\nMiddleName: H\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771431	2025-03-18	10:09:56.4264889	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3803\r\nCharacterReferenceId: 0\r\nCompanyAddress: BANABA WEST BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09183262472\r\nExtensionName: \r\nFirstName: ESPERANZA\r\nLastName: LUZANTA\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771432	2025-03-18	10:12:08.2265705	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 201\r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3803\r\nBirthDate: July 13, 1969\r\nBirthPlace: BANABA WEST BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MARLENE.PERSINCULA001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: MARLENE\r\nFullName: MARLENE F. PERSINCULA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PERSINCULA\r\nMaidenName: \r\nMiddleName: FALTADO\r\nMobileNumber: 09204028921\r\nNationality: Filipino\r\nPermanentAddress1: 201\r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO SEEKERS\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO SEEKERS\r\nTIN: \r\nWeight: 51\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 201\r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3803\r\nBirthDate: July 13, 1969\r\nBirthPlace: BANABA WEST BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MARLENE.PERSINCULA001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: MARLENE\r\nFullName: MARLENE F. PERSINCULA\r\nGender: Female\r\nGovernmentIdIssuedDate: May 15, 1997\r\nGovernmentIdNumber: 0060310\r\nGovernmentIdPlaceIssued: LUCENA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02002995095\r\nHDMF: 1490-0088-1379\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PERSINCULA\r\nMaidenName: \r\nMiddleName: FALTADO\r\nMobileNumber: 09204028921\r\nNationality: Filipino\r\nPermanentAddress1: 201\r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO SEEKERS\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000014215-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO SEEKERS\r\nTIN: 168-177-882-0000\r\nWeight: 51\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771433	2025-03-18	10:16:44.7199220	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 316\r\nAddress2: \r\nBarangay: BANABA CENTER\r\nBasicInformationId: 0\r\nBirthDate: May 26, 1989\r\nBirthPlace: CALICANTO, BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: JOLEFEANONUEVO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: JOLEFEL\r\nFullName: JOLEFEL A. SADABA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SADABA\r\nMaidenName: \r\nMiddleName: ANONUEVO\r\nMobileNumber: 09506519187\r\nNationality: Filipino\r\nPermanentAddress1: 316\r\nPermanentAddress2: \r\nPermanentBarangay: BANABA CENTER\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO PARANG 2\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: SITIO PARANG 2\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771434	2025-03-18	10:16:44.7309220	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3805\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MICHAEL\r\nFullName: MICHAEL SURELA SABADA\r\nGender: Male\r\nLastName: SABADA\r\nMaidenName: \r\nMiddleName: SURELA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771435	2025-03-18	10:16:44.7309220	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3805\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JESUS\r\nFullName: JESUS ABADA ANONUEVO\r\nGender: Male\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: ABADA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
771471	2025-03-18	10:45:03.2576444	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3805\r\nRecognitionId: 0\r\nRecognitionName: BEST SCHOOL PRACTICES 2021 (DISTRICT LEVEL) 2022\r\n	admin	Recognitions	1
771472	2025-03-18	10:45:03.2626443	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3805\r\nOrganizationId: 0\r\nOrganizationName: ALOYSIAN PUBLICATIONS\r\n	admin	Organizations	1
771436	2025-03-18	10:16:44.7309220	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3805\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FELIPA\r\nFullName: FELIPA FALCUNIT ANONUEVO\r\nGender: Male\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: FALCUNIT\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
771437	2025-03-18	10:16:44.7309220	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3805\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
771438	2025-03-18	10:22:58.9391816	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3805\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 2001\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BANABA WEST ELEMENTARY SCHOOL\r\nYearGraduated: 2001\r\n	admin	EducationalBackgrounds	1
771439	2025-03-18	10:22:58.9441814	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3805\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2005\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BANABA WEST NATIONAL HIGH SCHOOL\r\nYearGraduated: 2005\r\n	admin	EducationalBackgrounds	1
771440	2025-03-18	10:22:58.9481814	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3805\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MAJOR IN CONTENT PURPOSE\r\nSchoolorUniversity: SAINT BRIDGET COLLEGE\r\nYearGraduated: 2009\r\n	admin	EducationalBackgrounds	1
771441	2025-03-18	10:22:58.9611877	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3805\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2012\r\nDateTo: 2017\r\nEducationalAttainment: 39\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN EARLY CHILDHOOD EDUCATION\r\nSchoolorUniversity: PHILIPPINE NORMAL UNIVERSITY\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
771442	2025-03-18	10:22:58.9716992	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 316\r\nAddress2: \r\nBarangay: BANABA CENTER\r\nBasicInformationId: 3805\r\nBirthDate: May 26, 1989\r\nBirthPlace: CALICANTO, BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: JOLEFEANONUEVO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: JOLEFEL\r\nFullName: JOLEFEL A. SADABA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SADABA\r\nMaidenName: \r\nMiddleName: ANONUEVO\r\nMobileNumber: 09506519187\r\nNationality: Filipino\r\nPermanentAddress1: 316\r\nPermanentAddress2: \r\nPermanentBarangay: BANABA CENTER\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO PARANG 2\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: SITIO PARANG 2\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 316\r\nAddress2: \r\nBarangay: BANABA CENTER\r\nBasicInformationId: 3805\r\nBirthDate: May 26, 1989\r\nBirthPlace: CALICANTO, BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: JOLEFEANONUEVO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: JOLEFEL\r\nFullName: JOLEFEL A. SADABA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SADABA\r\nMaidenName: \r\nMiddleName: ANONUEVO\r\nMobileNumber: 09506519187\r\nNationality: Filipino\r\nPermanentAddress1: 316\r\nPermanentAddress2: \r\nPermanentBarangay: BANABA CENTER\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO PARANG 2\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO PARANG 2\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771443	2025-03-18	10:22:58.9936962	<Undetected>	Update	BasicInformationId: 3805\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4024\r\nExtensionName: \r\nFirstName: MICHAEL\r\nFullName: MICHAEL SURELA SABADA\r\nGender: Male\r\nLastName: SABADA\r\nMaidenName: \r\nMiddleName: SURELA\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3805\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4024\r\nExtensionName: \r\nFirstName: MICHAEL\r\nFullName: MICHAEL SABADA\r\nGender: Male\r\nLastName: SABADA\r\nMaidenName: \r\nMiddleName: SURELA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771444	2025-03-18	10:22:58.9976958	<Undetected>	Update	BasicInformationId: 3805\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4025\r\nExtensionName: \r\nFirstName: JESUS\r\nFullName: JESUS ABADA ANONUEVO\r\nGender: Male\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: ABADA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3805\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4025\r\nExtensionName: \r\nFirstName: JESUS\r\nFullName: JESUS ANONUEVO\r\nGender: Male\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: ABADA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
771445	2025-03-18	10:22:59.0037432	<Undetected>	Update	BasicInformationId: 3805\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4026\r\nExtensionName: \r\nFirstName: FELIPA\r\nFullName: FELIPA FALCUNIT ANONUEVO\r\nGender: Male\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: FALCUNIT\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3805\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4026\r\nExtensionName: \r\nFirstName: FELIPA\r\nFullName: FELIPA ANONUEVO\r\nGender: Male\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: FALCUNIT\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
771446	2025-03-18	10:22:59.0077431	<Undetected>	Update	BasicInformationId: 3805\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3602\r\n	BasicInformationId: 3805\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3602\r\n	admin	Questionnaires	1
771447	2025-03-18	10:25:53.9346558	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3805\r\nDateOfExamination: April 10, 2009\r\nDateOfRelease: May 26, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: April 10, 2009\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1045833\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 76.6\r\nTitle: LET/PRC\r\n	admin	Eligibilities	1
771448	2025-03-18	10:26:59.8094033	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3805\r\nCompanyInstitution: DERPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 15, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 28,786.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: January 01, 2025\r\n	admin	Experiences	1
771449	2025-03-18	10:30:39.7021495	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPACITY BUILDING OF SME GRADE 1-3 TEACHERS ON THE IMPLEMENTATION OF NLC BATCH 4\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
771450	2025-03-18	10:36:15.9201302	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT-WIDE TRAINING FOR K TO 3 TEACHERS ON THE EARLY LANGUAGE LITERACY AND NUMERACY (ELLN)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
771451	2025-03-18	10:37:14.7455030	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3805\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16462\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771452	2025-03-18	10:37:14.7495011	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3805\r\nEmployeeTrainingId: 0\r\nFromDate: September 25, 2024\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OFFICE-BATANGAS CITY\r\nStatus: \r\nToDate: September 27, 2024\r\nTrainingId: 16582\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771453	2025-03-18	10:37:14.7586288	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3805\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OFFICE-BATANGAS CITY\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16361\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771454	2025-03-18	10:37:14.7636265	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3805\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OFFICE-BATANGAS CITY\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16468\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771455	2025-03-18	10:37:14.7696288	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3805\r\nEmployeeTrainingId: 0\r\nFromDate: March 11, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OFFICE-BATANGAS CITY\r\nStatus: \r\nToDate: March 15, 2023\r\nTrainingId: 16583\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771456	2025-03-18	10:45:03.1671946	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3805\r\nSkillId: 0\r\nSkillName: WIILINGNESS TO LEARN\r\n	admin	Skills	1
771457	2025-03-18	10:45:03.1841334	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3805\r\nSkillId: 0\r\nSkillName: PPOSITIVE ATTITUDE\r\n	admin	Skills	1
771458	2025-03-18	10:45:03.1891332	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3805\r\nSkillId: 0\r\nSkillName: HAS STRONG WORK ETHICS\r\n	admin	Skills	1
771459	2025-03-18	10:45:03.1981333	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3805\r\nSkillId: 0\r\nSkillName: OPNE-MINDED\r\n	admin	Skills	1
771460	2025-03-18	10:45:03.2031349	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3805\r\nSkillId: 0\r\nSkillName: COMPUTER SKILLS\r\n	admin	Skills	1
771461	2025-03-18	10:45:03.2081332	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3805\r\nSkillId: 0\r\nSkillName: FLEXIBLE\r\n	admin	Skills	1
771462	2025-03-18	10:45:03.2121356	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3805\r\nSkillId: 0\r\nSkillName: RESILIENT\r\n	admin	Skills	1
771463	2025-03-18	10:45:03.2171356	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3805\r\nRecognitionId: 0\r\nRecognitionName: RESOURCE SPEAKER IN SCHOOL IN-SERVICE TRAINING FOR ELLN DIGITAL COURSE SESSION 5\r\n	admin	Recognitions	1
771464	2025-03-18	10:45:03.2221357	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3805\r\nRecognitionId: 0\r\nRecognitionName: RESOURCE SPEAKER IN SCHOOL IN-SERVICE TRAINING FOR ELLN DIGITAL COURSE SESSION 13\r\n	admin	Recognitions	1
771465	2025-03-18	10:45:03.2271360	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3805\r\nRecognitionId: 0\r\nRecognitionName: WRITER OF LEARNING ACTIVITY SHEET IN MATHEMATICS 2, QUARTER 3 WEEK 1 AND QUARTER 4 WEEK 4\r\n	admin	Recognitions	1
771466	2025-03-18	10:45:03.2316416	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3805\r\nRecognitionId: 0\r\nRecognitionName: TEAM LEADER DURING THE SUCCESSFUL IMPLEMENTATION OF THE PROJECT BEST\r\n	admin	Recognitions	1
771467	2025-03-18	10:45:03.2376445	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3805\r\nRecognitionId: 0\r\nRecognitionName: BEST SCHOOL PRACTICES 2021 (DISTRICT LEVEL)\r\n	admin	Recognitions	1
771473	2025-03-18	10:47:43.4157987	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3805\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09563977545\r\nExtensionName: \r\nFirstName: RUEL\r\nLastName: DE CASTRO\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771474	2025-03-18	10:47:43.4207993	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3805\r\nCharacterReferenceId: 0\r\nCompanyAddress: BANABA WEST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09293210478\r\nExtensionName: \r\nFirstName: KATHLEEN\r\nLastName: MENDOZA\r\nMiddleName: T\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771475	2025-03-18	10:47:43.4288048	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3805\r\nCharacterReferenceId: 0\r\nCompanyAddress: STA. RITA KARSADA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09075163027\r\nExtensionName: \r\nFirstName: JENNYLYN \r\nLastName: DELA PENA\r\nMiddleName: MAALA\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771476	2025-03-18	10:50:10.9625809	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 316\r\nAddress2: \r\nBarangay: BANABA CENTER\r\nBasicInformationId: 3805\r\nBirthDate: May 26, 1989\r\nBirthPlace: CALICANTO, BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: JOLEFEANONUEVO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: JOLEFEL\r\nFullName: JOLEFEL A. SADABA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SADABA\r\nMaidenName: \r\nMiddleName: ANONUEVO\r\nMobileNumber: 09506519187\r\nNationality: Filipino\r\nPermanentAddress1: 316\r\nPermanentAddress2: \r\nPermanentBarangay: BANABA CENTER\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO PARANG 2\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO PARANG 2\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 316\r\nAddress2: \r\nBarangay: BANABA CENTER\r\nBasicInformationId: 3805\r\nBirthDate: May 26, 1989\r\nBirthPlace: CALICANTO, BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: JOLEFEANONUEVO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: JOLEFEL\r\nFullName: JOLEFEL A. SADABA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 06, 2010\r\nGovernmentIdNumber: 1045833\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02005746213\r\nHDMF: 1210-7957-9068\r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SADABA\r\nMaidenName: \r\nMiddleName: ANONUEVO\r\nMobileNumber: 09506519187\r\nNationality: Filipino\r\nPermanentAddress1: 316\r\nPermanentAddress2: \r\nPermanentBarangay: BANABA CENTER\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO PARANG 2\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050231788-0\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-2117227-4\r\nStreetName: SITIO PARANG 2\r\nTIN: 279-166-594-0000\r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771477	2025-03-18	10:54:45.0230285	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3804\r\nCharacterReferenceId: 0\r\nCompanyAddress: BOLBOK, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09258260240\r\nExtensionName: \r\nFirstName: ETHEL\r\nLastName: SALIGAO\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771478	2025-03-18	10:54:45.0339911	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3804\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES, SORO-SORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09989976778\r\nExtensionName: \r\nFirstName: REBECCA\r\nLastName: PAGCALIWAGAN\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771479	2025-03-18	10:54:45.0379778	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3804\r\nCharacterReferenceId: 0\r\nCompanyAddress: STA. CLARA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09263661969\r\nExtensionName: \r\nFirstName: GEMMA\r\nLastName: MACALINDONG\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771480	2025-03-18	10:54:56.0326929	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: TINGA LABAC\r\nBasicInformationId: 0\r\nBirthDate: May 09, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: HELEN.SUMAGUE001@DEPED.GO.PH\r\nExtensionName: \r\nFirstName: HELEN\r\nFullName: HELEN M. SUMAGUE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SUMAGUE\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nMobileNumber: 09273689443\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: TINGA LABAC\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: POOK MASIKAP\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: POOK MASIKAP\r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771481	2025-03-18	10:54:56.0447003	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3806\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOEL\r\nFullName: JOEL TREMILLOS SUMAGUE\r\nGender: Male\r\nLastName: SUMAGUE\r\nMaidenName: \r\nMiddleName: TREMILLOS\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771482	2025-03-18	10:54:56.0457059	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3806\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SEVERINO\r\nFullName: SEVERINO DE GUZMAN MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: DE GUZMAN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
771483	2025-03-18	10:54:56.0457059	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3806\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FELICIDAD\r\nFullName: FELICIDAD CASAS ANTE\r\nGender: Male\r\nLastName: ANTE\r\nMaidenName: \r\nMiddleName: CASAS\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
771484	2025-03-18	10:54:56.0457059	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3806\r\nBirthDate: June 05, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ANNLYZETTE-JOYCE\r\nFullName: ANNLYZETTE-JOYCE M SUMAGUE\r\nGender: Male\r\nLastName: SUMAGUE\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771485	2025-03-18	10:54:56.0457059	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3806\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
771486	2025-03-18	10:58:19.2390845	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3806\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1984\r\nDateTo: 1990\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: ALANGILAN CENTRAL SCHOOL\r\nYearGraduated: 1990\r\n	admin	EducationalBackgrounds	1
771487	2025-03-18	10:58:19.2500844	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3806\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1990\r\nDateTo: 1994\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1994\r\n	admin	EducationalBackgrounds	1
771488	2025-03-18	10:58:19.2545905	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3806\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 1998\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY\r\nYearGraduated: 1998\r\n	admin	EducationalBackgrounds	1
771489	2025-03-18	10:58:19.2595904	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3806\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 1999\r\nDateTo: 2004\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN TECHNOLOGY AND HOME ECONOMICS\r\nSchoolorUniversity: PHILIPPINE NORMAL UNIVERSITY\r\nYearGraduated: 2004\r\n	admin	EducationalBackgrounds	1
771490	2025-03-18	10:58:19.2685919	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: TINGA LABAC\r\nBasicInformationId: 3806\r\nBirthDate: May 09, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: HELEN.SUMAGUE001@DEPED.GO.PH\r\nExtensionName: \r\nFirstName: HELEN\r\nFullName: HELEN M. SUMAGUE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SUMAGUE\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nMobileNumber: 09273689443\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: TINGA LABAC\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: POOK MASIKAP\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: POOK MASIKAP\r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: TINGA LABAC\r\nBasicInformationId: 3806\r\nBirthDate: May 09, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: HELEN.SUMAGUE001@DEPED.GO.PH\r\nExtensionName: \r\nFirstName: HELEN\r\nFullName: HELEN M. SUMAGUE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SUMAGUE\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nMobileNumber: 09273689443\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: TINGA LABAC\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: POOK MASIKAP\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: POOK MASIKAP\r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771491	2025-03-18	10:58:19.2735904	<Undetected>	Update	BasicInformationId: 3806\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4027\r\nExtensionName: \r\nFirstName: JOEL\r\nFullName: JOEL TREMILLOS SUMAGUE\r\nGender: Male\r\nLastName: SUMAGUE\r\nMaidenName: \r\nMiddleName: TREMILLOS\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3806\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4027\r\nExtensionName: \r\nFirstName: JOEL\r\nFullName: JOEL SUMAGUE\r\nGender: Male\r\nLastName: SUMAGUE\r\nMaidenName: \r\nMiddleName: TREMILLOS\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771492	2025-03-18	10:58:19.2785916	<Undetected>	Update	BasicInformationId: 3806\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4028\r\nExtensionName: \r\nFirstName: SEVERINO\r\nFullName: SEVERINO DE GUZMAN MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: DE GUZMAN\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3806\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4028\r\nExtensionName: \r\nFirstName: SEVERINO\r\nFullName: SEVERINO MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: DE GUZMAN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
771493	2025-03-18	10:58:19.2835907	<Undetected>	Update	BasicInformationId: 3806\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4029\r\nExtensionName: \r\nFirstName: FELICIDAD\r\nFullName: FELICIDAD CASAS ANTE\r\nGender: Male\r\nLastName: ANTE\r\nMaidenName: \r\nMiddleName: CASAS\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3806\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4029\r\nExtensionName: \r\nFirstName: FELICIDAD\r\nFullName: FELICIDAD ANTE\r\nGender: Male\r\nLastName: ANTE\r\nMaidenName: \r\nMiddleName: CASAS\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
771494	2025-03-18	10:58:19.2895953	<Undetected>	Update	BasicInformationId: 3806\r\nBirthDate: June 05, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4030\r\nExtensionName: \r\nFirstName: ANNLYZETTE-JOYCE\r\nFullName: ANNLYZETTE-JOYCE M SUMAGUE\r\nGender: Male\r\nLastName: SUMAGUE\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3806\r\nBirthDate: June 05, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4030\r\nExtensionName: \r\nFirstName: ANNLYZETTE-JOYCE\r\nFullName: ANNLYZETTE-JOYCE SUMAGUE\r\nGender: Male\r\nLastName: SUMAGUE\r\nMaidenName: \r\nMiddleName: M\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771495	2025-03-18	10:58:19.2955904	<Undetected>	Update	BasicInformationId: 3806\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3603\r\n	BasicInformationId: 3806\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3603\r\n	admin	Questionnaires	1
771496	2025-03-18	11:00:11.3079661	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3806\r\nDateOfExamination: August 14, 1998\r\nDateOfRelease: May 09, 2024\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 14, 1998\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0582707\r\nPlaceOfExamination: TAYUMAN TONDO MANILA\r\nRating: 75\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
771497	2025-03-18	11:03:14.1103378	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3804\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1972\r\nDateTo: 1978\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: JULIAN A. PASTOR ELEMENTARY SCHOOL\r\nYearGraduated: 1978\r\n	admin	EducationalBackgrounds	1
771498	2025-03-18	11:03:14.1143245	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3804\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1978\r\nDateTo: 1982\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1982\r\n	admin	EducationalBackgrounds	1
771499	2025-03-18	11:03:14.1262846	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3804\r\nCourse: \r\nCourseId: 1252\r\nCourseOrMajor: \r\nDateFrom: 1982\r\nDateTo: 1987\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MAJOR IN ACCOUNTING\r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGE\r\nYearGraduated: 1987\r\n	admin	EducationalBackgrounds	1
771500	2025-03-18	11:03:14.1302711	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3804\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2015\r\nDateTo: 2017\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2017\r\n	admin	EducationalBackgrounds	1
771501	2025-03-18	11:07:59.5011587	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3806\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 05, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 51,304.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-\r\nStatus: Permanent\r\nToDate: February 05, 2024\r\n	admin	Experiences	1
771502	2025-03-18	11:07:59.5241172	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3806\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 11, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 391,128.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: February 04, 2024\r\n	admin	Experiences	1
771503	2025-03-18	11:07:59.5331137	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3806\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 10, 2004\r\nIsGovernmentService: True\r\nMonthlySalary: 139,068.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: February 10, 2008\r\n	admin	Experiences	1
771504	2025-03-18	11:09:35.6137865	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3806\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 17, 2002\r\nIsGovernmentService: False\r\nMonthlySalary: 119,270.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: February 09, 2004\r\n	admin	Experiences	1
771505	2025-03-18	11:12:37.8392339	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3804\r\nDateOfExamination: August 14, 2005\r\nDateOfRelease: November 30, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 14, 2005\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0896630\r\nPlaceOfExamination: LUCENA\r\nRating: 75.80\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
771506	2025-03-18	11:12:37.8442173	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3804\r\nDateOfExamination: July 28, 1991\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: July 28, 1991\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 78705\r\nPlaceOfExamination: MANILA\r\nRating: 80.80\r\nTitle: CAREER SERVICE PROFESSIONAL\r\n	admin	Eligibilities	1
771507	2025-03-18	11:14:40.7106381	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3806\r\nSkillId: 0\r\nSkillName: DRIVING\r\n	admin	Skills	1
771508	2025-03-18	11:14:40.7156368	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3806\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
771509	2025-03-18	11:14:40.7221580	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3806\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
771510	2025-03-18	11:14:40.7367143	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3806\r\nSkillId: 0\r\nSkillName: DOING SPORTS\r\n	admin	Skills	1
771511	2025-03-18	11:21:19.2267746	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3806\r\nRecognitionId: 0\r\nRecognitionName: 2024 OUTSTANDING MASTER TEACHER FINALIST - DISTRICT VIII\r\n	admin	Recognitions	1
771518	2025-03-18	11:22:06.7377834	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3804\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 34,421.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
771519	2025-03-18	11:22:06.7427668	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3804\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 16, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 32,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
771520	2025-03-18	11:22:06.7477501	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3804\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 16, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
771521	2025-03-18	11:22:06.7527334	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3804\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 28,161.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: June 15, 2023\r\n	admin	Experiences	1
771522	2025-03-18	11:22:06.7567200	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3804\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 26,600.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
771523	2025-03-18	11:22:06.7617035	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3804\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 25,038.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
771524	2025-03-18	11:22:06.7666869	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3804\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 19, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 23,477.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
771525	2025-03-18	11:22:06.7716701	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3804\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 23,181.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: June 18, 2020\r\n	admin	Experiences	1
771526	2025-03-18	11:22:06.7756567	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3804\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,619.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
771527	2025-03-18	11:22:06.7806400	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3804\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,963.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
771528	2025-03-18	11:22:06.7856234	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3804\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 19, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 20,326.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
771529	2025-03-18	11:22:06.7906067	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3804\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 20,088.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: June 18, 2017\r\n	admin	Experiences	1
771530	2025-03-18	11:22:06.7945933	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3804\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,496.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
771531	2025-03-18	11:22:06.7995768	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3804\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 19, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 18,922.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
771532	2025-03-18	11:22:06.8045600	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3804\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 18,735.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 18, 2014\r\n	admin	Experiences	1
771533	2025-03-18	11:22:06.8085467	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3804\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 19, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 17,318.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
771534	2025-03-18	11:22:06.8135301	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3804\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 17,099.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 18, 2011\r\n	admin	Experiences	1
771535	2025-03-18	11:22:06.8185133	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3804\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 15,649.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
771536	2025-03-18	11:22:06.8225000	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3804\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 14, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 14,198.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
771537	2025-03-18	11:22:06.8274834	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3804\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,026.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
771538	2025-03-18	11:22:06.8324667	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3804\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 17, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,933.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Substitute\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
771539	2025-03-18	11:22:06.8374500	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3804\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 25, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Substitute\r\nToDate: August 22, 2007\r\n	admin	Experiences	1
771543	2025-03-18	11:25:52.2976428	<Undetected>	Update	BasicInformationId: 3804\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12681\r\nFromDate: July 14, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 14,198.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	BasicInformationId: 3804\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12681\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 14,198.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
771545	2025-03-18	11:28:20.9353540	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EMPOWERING TEACHERS ON THE PREPARATION OF INDIVIDUAL PORTFOLIO FOR IPCRF SY 2021-2022 CUM MEANS OF VERIFICATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
771540	2025-03-18	11:24:01.8285555	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3806\r\nCharacterReferenceId: 0\r\nCompanyAddress: D. SILANG ST. BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09757328865\r\nExtensionName: \r\nFirstName: BELINDA\r\nLastName: PEREZ\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771541	2025-03-18	11:24:01.8386094	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3806\r\nCharacterReferenceId: 0\r\nCompanyAddress: EL SITIO DUMANTAY BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09471737723\r\nExtensionName: \r\nFirstName: JEANETH\r\nLastName: FAA\r\nMiddleName: F\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771542	2025-03-18	11:24:01.8446030	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3806\r\nCharacterReferenceId: 0\r\nCompanyAddress: GULOD LABAC BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 0439846169\r\nExtensionName: \r\nFirstName: ELMA\r\nLastName: CELEMIN\r\nMiddleName: L\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771544	2025-03-18	11:26:10.8585423	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: TINGA LABAC\r\nBasicInformationId: 3806\r\nBirthDate: May 09, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: HELEN.SUMAGUE001@DEPED.GO.PH\r\nExtensionName: \r\nFirstName: HELEN\r\nFullName: HELEN M. SUMAGUE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SUMAGUE\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nMobileNumber: 09273689443\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: TINGA LABAC\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: POOK MASIKAP\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: POOK MASIKAP\r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: TINGA LABAC\r\nBasicInformationId: 3806\r\nBirthDate: May 09, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: HELEN.SUMAGUE001@DEPED.GO.PH\r\nExtensionName: \r\nFirstName: HELEN\r\nFullName: HELEN M. SUMAGUE\r\nGender: Female\r\nGovernmentIdIssuedDate: October 09, 1999\r\nGovernmentIdNumber: 0582707\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02002992497\r\nHDMF: 1490-0092-8534\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SUMAGUE\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nMobileNumber: 09273689443\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: TINGA LABAC\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: POOK MASIKAP\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000053917-0\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3319840-8\r\nStreetName: POOK MASIKAP\r\nTIN: 902-364-202-0000\r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771547	2025-03-18	11:30:07.1980424	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SANTA RITA KARSADA\r\nBasicInformationId: 0\r\nBirthDate: March 01, 1997\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSHELLE.VERGARA@DEPED.HOV.PH\r\nExtensionName: \r\nFirstName: ROSHELLE\r\nFullName: ROSHELLE G. VERGARA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: VERGARA\r\nMaidenName: \r\nMiddleName: GUTEZA\r\nMobileNumber: 09954686641\r\nNationality: Filipino\r\nPermanentAddress1: 077\r\nPermanentAddress2: \r\nPermanentBarangay: LEPUTE\r\nPermanentCity: SAN JOSE\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4227\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771548	2025-03-18	11:30:07.2110484	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3807\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ISIDRO\r\nFullName: ISIDRO PEREZ VERGARA\r\nGender: Male\r\nLastName: VERGARA\r\nMaidenName: \r\nMiddleName: PEREZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
771549	2025-03-18	11:30:07.2110484	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3807\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LOIDA\r\nFullName: LOIDA ESPELETA GUTEZA\r\nGender: Male\r\nLastName: GUTEZA\r\nMaidenName: \r\nMiddleName: ESPELETA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
771550	2025-03-18	11:30:07.2120448	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3807\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
771559	2025-03-18	11:32:58.3438627	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3807\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2002\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BIGAIN ELEMENTARY SCHOOL\r\nYearGraduated: 2009\r\n	admin	EducationalBackgrounds	1
771552	2025-03-18	11:31:34.0603463	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3804\r\nEmployeeTrainingId: 0\r\nFromDate: February 06, 2023\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY/STA.CLARA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: February 08, 2023\r\nTrainingId: 16557\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771553	2025-03-18	11:31:34.0653297	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3804\r\nEmployeeTrainingId: 0\r\nFromDate: August 03, 2022\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION/REGION IV-A\r\nStatus: \r\nToDate: August 05, 2022\r\nTrainingId: 16381\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771554	2025-03-18	11:31:34.0703131	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3804\r\nEmployeeTrainingId: 0\r\nFromDate: July 20, 2022\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION/REGION IV-A\r\nStatus: \r\nToDate: July 20, 2022\r\nTrainingId: 16584\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771555	2025-03-18	11:31:34.0752963	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3804\r\nEmployeeTrainingId: 0\r\nFromDate: February 02, 2022\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION/REGION IV-A\r\nStatus: \r\nToDate: February 04, 2022\r\nTrainingId: 16585\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771556	2025-03-18	11:31:34.0792831	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3804\r\nEmployeeTrainingId: 0\r\nFromDate: May 19, 2021\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION/REGION IV-A\r\nStatus: \r\nToDate: May 21, 2021\r\nTrainingId: 15393\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771557	2025-03-18	11:31:34.0842666	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3804\r\nEmployeeTrainingId: 0\r\nFromDate: March 03, 2021\r\nHours: 128\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 16, 2021\r\nTrainingId: 16586\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771558	2025-03-18	11:31:46.3193671	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3804\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
771567	2025-03-18	11:33:32.7009110	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: ABACAN SUBDIVISION\r\nBarangay: CALICANTO\r\nBasicInformationId: 0\r\nBirthDate: December 23, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: eliza.nebrida@deped.gov.ph\r\nExtensionName: \r\nFirstName: ELIZA\r\nFullName: ELIZA B. NEBRIDA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.56\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: NEBRIDA\r\nMaidenName: \r\nMiddleName: BAGSIT\r\nMobileNumber: 09618306429\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: ABACAN SUBDIVISION\r\nPermanentBarangay: CALICANTO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771568	2025-03-18	11:33:32.7128144	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3808\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
771570	2025-03-18	11:35:33.8502046	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 545\r\nAddress2: \r\nBarangay: SAMPAGA CENTRO\r\nBasicInformationId: 0\r\nBirthDate: February 02, 1968\r\nBirthPlace: FABRICA, LOBO BATANGAS\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: cecilia.zaraspe@deped.gov.ph\r\nExtensionName: \r\nFirstName: CECILIA\r\nFullName: CECILIA D. ZARASPE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: DELGADO\r\nMobileNumber: 09396213330\r\nNationality: Filipino\r\nPermanentAddress1: 545\r\nPermanentAddress2: \r\nPermanentBarangay: SAMPAGA CENTRO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: GOV. ANTONIO CARPIO ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: GOV. ANTONIO CARPIO ROAD\r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771571	2025-03-18	11:35:33.8603181	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3809\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
771790	2025-03-18	14:15:31.1211998	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TEACHER'S CONGRESS: BASIC AND ACTION RESEARCH PROJECTS FOR CONTINUOUS IMPROVEMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
771560	2025-03-18	11:32:58.3561166	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3807\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2009\r\nDateTo: 2013\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: HOLY FAMILY MONTESSORI\r\nYearGraduated: 2013\r\n	admin	EducationalBackgrounds	1
771561	2025-03-18	11:32:58.3611165	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3807\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2013\r\nDateTo: 2017\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MAJOR IN EARLY CHILDHOOD EDUCATION\r\nSchoolorUniversity: SAINT BRIDGET COLLEGE\r\nYearGraduated: 2017\r\n	admin	EducationalBackgrounds	1
771562	2025-03-18	11:32:58.3711194	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3807\r\nCourse: \r\nCourseId: 1333\r\nCourseOrMajor: \r\nDateFrom: 2018\r\nDateTo: 2019\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN PRESCHOOL\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2019\r\n	admin	EducationalBackgrounds	1
771563	2025-03-18	11:32:58.3761197	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SANTA RITA KARSADA\r\nBasicInformationId: 3807\r\nBirthDate: March 01, 1997\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSHELLE.VERGARA@DEPED.HOV.PH\r\nExtensionName: \r\nFirstName: ROSHELLE\r\nFullName: ROSHELLE G. VERGARA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: VERGARA\r\nMaidenName: \r\nMiddleName: GUTEZA\r\nMobileNumber: 09954686641\r\nNationality: Filipino\r\nPermanentAddress1: 077\r\nPermanentAddress2: \r\nPermanentBarangay: LEPUTE\r\nPermanentCity: SAN JOSE\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4227\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SANTA RITA KARSADA\r\nBasicInformationId: 3807\r\nBirthDate: March 01, 1997\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSHELLE.VERGARA@DEPED.HOV.PH\r\nExtensionName: \r\nFirstName: ROSHELLE\r\nFullName: ROSHELLE G. VERGARA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: VERGARA\r\nMaidenName: \r\nMiddleName: GUTEZA\r\nMobileNumber: 09954686641\r\nNationality: Filipino\r\nPermanentAddress1: 077\r\nPermanentAddress2: \r\nPermanentBarangay: LEPUTE\r\nPermanentCity: SAN JOSE\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4227\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771564	2025-03-18	11:32:58.3811188	<Undetected>	Update	BasicInformationId: 3807\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4031\r\nExtensionName: \r\nFirstName: ISIDRO\r\nFullName: ISIDRO PEREZ VERGARA\r\nGender: Male\r\nLastName: VERGARA\r\nMaidenName: \r\nMiddleName: PEREZ\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3807\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4031\r\nExtensionName: \r\nFirstName: ISIDRO\r\nFullName: ISIDRO VERGARA\r\nGender: Male\r\nLastName: VERGARA\r\nMaidenName: \r\nMiddleName: PEREZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
771565	2025-03-18	11:32:58.3891229	<Undetected>	Update	BasicInformationId: 3807\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4032\r\nExtensionName: \r\nFirstName: LOIDA\r\nFullName: LOIDA ESPELETA GUTEZA\r\nGender: Male\r\nLastName: GUTEZA\r\nMaidenName: \r\nMiddleName: ESPELETA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3807\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4032\r\nExtensionName: \r\nFirstName: LOIDA\r\nFullName: LOIDA GUTEZA\r\nGender: Male\r\nLastName: GUTEZA\r\nMaidenName: \r\nMiddleName: ESPELETA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
771566	2025-03-18	11:32:58.3981172	<Undetected>	Update	BasicInformationId: 3807\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3604\r\n	BasicInformationId: 3807\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3604\r\n	admin	Questionnaires	1
771569	2025-03-18	11:34:27.3404362	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3807\r\nDateOfExamination: September 24, 2017\r\nDateOfRelease: March 01, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 24, 2017\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1567936\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 79.4\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
771572	2025-03-18	11:35:54.8346250	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3802\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2000\r\nDateTo: 2006\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: JULIIAN A. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nYearGraduated: 2006\r\n	admin	EducationalBackgrounds	1
771573	2025-03-18	11:35:54.8426249	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3802\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2006\r\nDateTo: 2010\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2010\r\n	admin	EducationalBackgrounds	1
771620	2025-03-18	11:45:26.2446783	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3802\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: STA. CLARA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16536\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771574	2025-03-18	11:35:54.8476404	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: EBD / VAD SCHOLAR\r\nBasicInformationId: 3802\r\nCourse: \r\nCourseId: 1257\r\nCourseOrMajor: \r\nDateFrom: 2010\r\nDateTo: 2014\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2014\r\n	admin	EducationalBackgrounds	1
771575	2025-03-18	11:35:54.8526559	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3802\r\nDateOfExamination: March 18, 2018\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 7\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: March 18, 2018\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS NATIONAL HIGH SCHOOL\r\nRating: 80.79\r\nTitle: CAREER SERVICE PROFESSIONAL ELIGIBILITY\r\n	admin	Eligibilities	1
771576	2025-03-18	11:35:54.8569574	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3802\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 23,411.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-2\r\nStatus: Permanent\r\nToDate: March 18, 2025\r\n	admin	Experiences	1
771577	2025-03-18	11:35:54.8622285	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3802\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 22,404.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-2\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
771578	2025-03-18	11:35:54.8672440	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3802\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 21,388.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT  III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-2\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
771579	2025-03-18	11:35:54.8724709	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3802\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: November 27, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 20,572.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-2\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
771580	2025-03-18	11:35:54.8764835	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3802\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 20,402.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-1\r\nStatus: Permanent\r\nToDate: November 26, 2022\r\n	admin	Experiences	1
771581	2025-03-18	11:35:54.8825037	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3802\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 19,593.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
771582	2025-03-18	11:35:54.8865596	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3802\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: November 15, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 18,784.00\r\nPositionHeld: ADMINSTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
771583	2025-03-18	11:35:54.8916001	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3802\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 18,784.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-1\r\nStatus: Permanent\r\nToDate: November 14, 2020\r\n	admin	Experiences	1
771621	2025-03-18	11:45:26.2496940	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3802\r\nEmployeeTrainingId: 0\r\nFromDate: September 10, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: STA. CLARA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: September 10, 2024\r\nTrainingId: 16537\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771584	2025-03-18	11:35:54.8966163	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3802\r\nCompanyInstitution: BATANGAS HEALTH CARE MULTI-PURPOSE COOPERATIVE - JESUS OF NAZARETH\r\nExperienceId: 0\r\nFromDate: June 16, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 10,300.00\r\nPositionHeld: ACCOUNTING CLERK\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: June 14, 2019\r\n	admin	Experiences	1
771585	2025-03-18	11:35:54.9017770	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3802\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / PEDRO S. TOLENTINO MEMORIAL NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: June 17, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 17,975.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
771586	2025-03-18	11:35:54.9057894	<Undetected>	Update	BasicInformationId: 3802\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4009\r\nExtensionName: \r\nFirstName: JOEL\r\nFullName: JOEL BATHAN RAMIREZ\r\nGender: Male\r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: BATHAN\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3802\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4009\r\nExtensionName: \r\nFirstName: JOEL\r\nFullName: JOEL RAMIREZ\r\nGender: Male\r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: BATHAN\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771587	2025-03-18	11:35:54.9108056	<Undetected>	Update	BasicInformationId: 3802\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4010\r\nExtensionName: \r\nFirstName: ANGELITO\r\nFullName: ANGELITO PENTINO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: PENTINO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3802\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4010\r\nExtensionName: \r\nFirstName: ANGELITO\r\nFullName: ANGELITO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: PENTINO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
771588	2025-03-18	11:35:54.9168920	<Undetected>	Update	BasicInformationId: 3802\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4011\r\nExtensionName: \r\nFirstName: ELVIE\r\nFullName: ELVIE MALLORCA MADALI\r\nGender: Female\r\nLastName: MADALI\r\nMaidenName: \r\nMiddleName: MALLORCA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3802\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4011\r\nExtensionName: \r\nFirstName: ELVIE\r\nFullName: ELVIE MADALI\r\nGender: Female\r\nLastName: MADALI\r\nMaidenName: \r\nMiddleName: MALLORCA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
771589	2025-03-18	11:35:54.9249448	<Undetected>	Update	BasicInformationId: 3802\r\nBirthDate: May 24, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4012\r\nExtensionName: \r\nFirstName: AARON JAMES\r\nFullName: AARON JAMES MENDOZA RAMIREZ\r\nGender: Male\r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3802\r\nBirthDate: May 24, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4012\r\nExtensionName: \r\nFirstName: AARON JAMES\r\nFullName: AARON JAMES RAMIREZ\r\nGender: Male\r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771590	2025-03-18	11:35:54.9289523	<Undetected>	Update	BasicInformationId: 3802\r\nBirthDate: November 19, 2021\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4013\r\nExtensionName: \r\nFirstName: DWAYNE JEIAN\r\nFullName: DWAYNE JEIAN MENDOZA BAGON\r\nGender: Male\r\nLastName: BAGON\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3802\r\nBirthDate: November 19, 2021\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4013\r\nExtensionName: \r\nFirstName: DWAYNE JEIAN\r\nFullName: DWAYNE JEIAN BAGON\r\nGender: Male\r\nLastName: BAGON\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771591	2025-03-18	11:35:54.9339820	<Undetected>	Update	BasicInformationId: 3802\r\nBirthDate: January 12, 2023\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4014\r\nExtensionName: \r\nFirstName: JENICA JEIN\r\nFullName: JENICA JEIN MENDOZA RAMIREZ\r\nGender: Female\r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3802\r\nBirthDate: January 12, 2023\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4014\r\nExtensionName: \r\nFirstName: JENICA JEIN\r\nFullName: JENICA JEIN RAMIREZ\r\nGender: Female\r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771592	2025-03-18	11:35:54.9389908	<Undetected>	Update	BasicInformationId: 3802\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3599\r\n	BasicInformationId: 3802\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3599\r\n	admin	Questionnaires	1
771597	2025-03-18	11:38:16.1879568	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: LAWS AND RULES ON GOVERNMENT EXPENDITURES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
771601	2025-03-18	11:39:36.9968520	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FY 2025 BUDGET PREPARATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
771615	2025-03-18	11:45:26.2203751	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3802\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
771616	2025-03-18	11:45:26.2243862	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3802\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
771617	2025-03-18	11:45:26.2293863	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3802\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
771618	2025-03-18	11:45:26.2345687	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3802\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
771619	2025-03-18	11:45:26.2395983	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3802\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
771593	2025-03-18	11:36:09.2602426	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3807\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 16, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 34,421.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: January 01, 2025\r\n	admin	Experiences	1
771594	2025-03-18	11:36:09.2733183	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3807\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 04, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 15, 2023\r\n	admin	Experiences	1
771598	2025-03-18	11:38:46.0061704	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MASTERCLASS FOR GRADE 1 TEACHERS ACROSS ALL LEARNING AREAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
771602	2025-03-18	11:41:28.5981874	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL TRAINING OF RECEIVING TEACHERS ON SPECIAL NEEDS EDUCATIONS (SNED)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
771607	2025-03-18	11:43:07.6901071	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3807\r\nEmployeeTrainingId: 0\r\nFromDate: February 07, 2025\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OFFICE-BATANGAS CITY-BANABA WEST ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: February 07, 2025\r\nTrainingId: 16508\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771608	2025-03-18	11:43:07.6981068	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3807\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16319\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771609	2025-03-18	11:43:07.7031074	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3807\r\nEmployeeTrainingId: 0\r\nFromDate: November 18, 2024\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION/REGION IV-A CALABARZON OFFICE\r\nStatus: \r\nToDate: November 20, 2024\r\nTrainingId: 16590\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771614	2025-03-18	11:44:56.0701114	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PROJECT E-LRC: WORKSHOP ON CREATING VIRTUAL SCHOOL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
771633	2025-03-18	11:46:52.0251463	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3807\r\nEmployeeTrainingId: 0\r\nFromDate: September 13, 2024\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION/ SCHOOLS DIVISION OFFICE OF BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2024\r\nTrainingId: 16591\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771634	2025-03-18	11:46:52.0291458	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3807\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION/ SCHOOLS DIVISION OFFICE OF BATANGAS CITY\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16347\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771647	2025-03-18	11:54:11.8607693	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3807\r\nSkillId: 0\r\nSkillName: POSITIVE ATTITUDE\r\n	admin	Skills	1
771648	2025-03-18	11:54:11.8685894	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3807\r\nSkillId: 0\r\nSkillName: WILLINGNESS TO LEARN\r\n	admin	Skills	1
771649	2025-03-18	11:54:11.8735878	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3807\r\nSkillId: 0\r\nSkillName: HAS STRONG WORK ETHICS\r\n	admin	Skills	1
771650	2025-03-18	11:54:11.8815881	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3807\r\nSkillId: 0\r\nSkillName: OPEN-MINDED\r\n	admin	Skills	1
771651	2025-03-18	11:54:11.8865872	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3807\r\nSkillId: 0\r\nSkillName: COMPUTER SKILLS\r\n	admin	Skills	1
771652	2025-03-18	11:54:11.8915871	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3807\r\nSkillId: 0\r\nSkillName: FLEXIBLE\r\n	admin	Skills	1
771653	2025-03-18	11:54:11.8955871	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3807\r\nSkillId: 0\r\nSkillName: RESILIENT\r\n	admin	Skills	1
771654	2025-03-18	11:54:11.9015897	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3807\r\nRecognitionId: 0\r\nRecognitionName: OUTSTANDING TEACHER OF THE YEAR 2024 (SCHOOL LEVEL)\r\n	admin	Recognitions	1
771655	2025-03-18	11:54:11.9055915	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3807\r\nRecognitionId: 0\r\nRecognitionName: LAYOUT ARTIST IN THE QUALLITY ASSURANCE OF THE HISTORY OF SCHOOLS AND BARANGAYS (DIVISION LEVEL)\r\n	admin	Recognitions	1
771656	2025-03-18	11:54:11.9105914	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3807\r\nRecognitionId: 0\r\nRecognitionName: RESOURCE SPEAKER IN SCHOOL IN-SERVICE TRAINING FOR TEACHERS (SCHOOL LEVEL)\r\n	admin	Recognitions	1
771657	2025-03-18	11:54:11.9155917	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3807\r\nRecognitionId: 0\r\nRecognitionName: LEARNING RESOURCE MATERIALS DEVELOPER (DIVISION LEVEL)\r\n	admin	Recognitions	1
771595	2025-03-18	11:37:34.3534930	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 21\r\nAddress2: SIRANG LUPA\r\nBarangay: SIRANG LUPA\r\nBasicInformationId: 0\r\nBirthDate: March 11, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: glades.alvarez001@deped.gov.ph\r\nExtensionName: \r\nFirstName: GLADES\r\nFullName: GLADES M. ALVAREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.56\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALVAREZ\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nMobileNumber: 09605313203\r\nNationality: Filipino\r\nPermanentAddress1: 21\r\nPermanentAddress2: SIRANG LUPA\r\nPermanentBarangay: SIRANG LUPA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 1\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 1\r\nTIN: \r\nWeight: 62\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771596	2025-03-18	11:37:34.3636238	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3810\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
771599	2025-03-18	11:39:24.6047161	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 11 RS\r\nAddress2: \r\nBarangay: CUTA WEST\r\nBasicInformationId: 0\r\nBirthDate: October 02, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marife.ronquillo@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIFE\r\nFullName: MARIFE A. RONQUILLO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RONQUILLO\r\nMaidenName: \r\nMiddleName: ABEL\r\nMobileNumber: 09605313210\r\nNationality: Filipino\r\nPermanentAddress1: 11 RS\r\nPermanentAddress2: \r\nPermanentBarangay: CUTA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: M.H. DEL PILAR STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: M.H. DEL PILAR STREET\r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771600	2025-03-18	11:39:24.6145408	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3811\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
771603	2025-03-18	11:42:41.6447949	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3808\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DOMINADOR\r\nFullName: DOMINADOR MARANAN NEBRIDA\r\nGender: Male\r\nLastName: NEBRIDA\r\nMaidenName: \r\nMiddleName: MARANAN\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771604	2025-03-18	11:42:41.6557581	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3808\r\nBirthDate: August 30, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DMONINC GABRIEL\r\nFullName: DMONINC GABRIEL BAGSIT NEBRIDA\r\nGender: Male\r\nLastName: NEBRIDA\r\nMaidenName: \r\nMiddleName: BAGSIT\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771605	2025-03-18	11:42:41.6607414	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3808\r\nBirthDate: December 23, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: IRISH COLEEN\r\nFullName: IRISH COLEEN BAGSIT NEBRIDA\r\nGender: Male\r\nLastName: NEBRIDA\r\nMaidenName: \r\nMiddleName: BAGSIT\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771606	2025-03-18	11:42:41.6697116	<Undetected>	Update	BasicInformationId: 3808\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3605\r\n	BasicInformationId: 3808\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3605\r\n	admin	Questionnaires	1
771610	2025-03-18	11:44:25.8534022	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: ABACAN SUBDIVISION\r\nBarangay: CALICANTO\r\nBasicInformationId: 3808\r\nBirthDate: December 23, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: eliza.nebrida@deped.gov.ph\r\nExtensionName: \r\nFirstName: ELIZA\r\nFullName: ELIZA B. NEBRIDA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.56\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: NEBRIDA\r\nMaidenName: \r\nMiddleName: BAGSIT\r\nMobileNumber: 09618306429\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: ABACAN SUBDIVISION\r\nPermanentBarangay: CALICANTO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: ABACAN SUBDIVISION\r\nBarangay: CALICANTO\r\nBasicInformationId: 3808\r\nBirthDate: December 23, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: eliza.nebrida@deped.gov.ph\r\nExtensionName: \r\nFirstName: ELIZA\r\nFullName: ELIZA B. NEBRIDA\r\nGender: Female\r\nGovernmentIdIssuedDate: November 16, 1998\r\nGovernmentIdNumber: 0492668\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC LICENSE\r\nGSIS: 02003003069\r\nHDMF: 1490-0096-7291\r\nHeight: 1.56\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: NEBRIDA\r\nMaidenName: \r\nMiddleName: BAGSIT\r\nMobileNumber: 09618306429\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: ABACAN SUBDIVISION\r\nPermanentBarangay: CALICANTO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050053617-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3296734-2\r\nStreetName: \r\nTIN: 912-183-446-0000\r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771611	2025-03-18	11:44:25.8583856	<Undetected>	Update	BasicInformationId: 3808\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4033\r\nExtensionName: \r\nFirstName: DOMINADOR\r\nFullName: DOMINADOR MARANAN NEBRIDA\r\nGender: Male\r\nLastName: NEBRIDA\r\nMaidenName: \r\nMiddleName: MARANAN\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3808\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4033\r\nExtensionName: \r\nFirstName: DOMINADOR\r\nFullName: DOMINADOR NEBRIDA\r\nGender: Male\r\nLastName: NEBRIDA\r\nMaidenName: \r\nMiddleName: MARANAN\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771612	2025-03-18	11:44:25.8723388	<Undetected>	Update	BasicInformationId: 3808\r\nBirthDate: August 30, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4034\r\nExtensionName: \r\nFirstName: DMONINC GABRIEL\r\nFullName: DMONINC GABRIEL BAGSIT NEBRIDA\r\nGender: Male\r\nLastName: NEBRIDA\r\nMaidenName: \r\nMiddleName: BAGSIT\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3808\r\nBirthDate: August 30, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4034\r\nExtensionName: \r\nFirstName: DMONINC GABRIEL\r\nFullName: DMONINC GABRIEL NEBRIDA\r\nGender: Male\r\nLastName: NEBRIDA\r\nMaidenName: \r\nMiddleName: BAGSIT\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771613	2025-03-18	11:44:25.8862923	<Undetected>	Update	BasicInformationId: 3808\r\nBirthDate: December 23, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4035\r\nExtensionName: \r\nFirstName: IRISH COLEEN\r\nFullName: IRISH COLEEN BAGSIT NEBRIDA\r\nGender: Male\r\nLastName: NEBRIDA\r\nMaidenName: \r\nMiddleName: BAGSIT\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3808\r\nBirthDate: December 23, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4035\r\nExtensionName: \r\nFirstName: IRISH COLEEN\r\nFullName: IRISH COLEEN NEBRIDA\r\nGender: Male\r\nLastName: NEBRIDA\r\nMaidenName: \r\nMiddleName: BAGSIT\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771629	2025-03-18	11:46:01.3538749	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3808\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES, SORO-SORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09913261235\r\nExtensionName: \r\nFirstName: EPITACIA\r\nLastName: CULLERA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771630	2025-03-18	11:46:01.3578616	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3808\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN EAST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175057894\r\nExtensionName: \r\nFirstName: AUREA\r\nLastName: OCON\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771631	2025-03-18	11:46:01.3638415	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3808\r\nCharacterReferenceId: 0\r\nCompanyAddress: SIRANG LUPA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09605313203\r\nExtensionName: \r\nFirstName: GLADES\r\nLastName: ALVAREZ\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771632	2025-03-18	11:46:51.4986034	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3808\r\nDateOfExamination: January 08, 1998\r\nDateOfRelease: December 23, 2024\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: January 08, 1998\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0492668\r\nPlaceOfExamination: MANILA\r\nRating: 75\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
771635	2025-03-18	11:48:48.4211111	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3808\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1984\r\nDateTo: 1990\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS CITY EAST ELEMENTARY SCHOOL\r\nYearGraduated: 1990\r\n	admin	EducationalBackgrounds	1
771636	2025-03-18	11:48:48.4310779	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3808\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1990\r\nDateTo: 1994\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1994\r\n	admin	EducationalBackgrounds	1
771637	2025-03-18	11:48:48.4360611	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3808\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 1998\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 1998\r\n	admin	EducationalBackgrounds	1
771638	2025-03-18	11:48:48.4430379	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3808\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2018\r\nDateTo: 2022\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2022\r\n	admin	EducationalBackgrounds	1
771639	2025-03-18	11:50:17.3752219	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: JUAN KAPATID TEACHER SUMMIT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
771640	2025-03-18	11:51:50.5494419	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3808\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16319\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771622	2025-03-18	11:45:26.2537076	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3802\r\nEmployeeTrainingId: 0\r\nFromDate: September 04, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: COMMISSION ON AUDIT REGIONAL OFFICE NO. IV-A\r\nStatus: \r\nToDate: September 06, 2024\r\nTrainingId: 16587\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771623	2025-03-18	11:45:26.2587585	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3802\r\nEmployeeTrainingId: 0\r\nFromDate: January 28, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPED SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: January 28, 2024\r\nTrainingId: 16589\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771624	2025-03-18	11:45:26.2637756	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3802\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: STA. CLARA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16561\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771625	2025-03-18	11:45:26.2688045	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3802\r\nCharacterReferenceId: 0\r\nCompanyAddress: CUTA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175042263\r\nExtensionName: II\r\nFirstName: GERARDO\r\nLastName: AGUADO \r\nMiddleName: B.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771626	2025-03-18	11:45:26.2728172	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3802\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN WEST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09081723628\r\nExtensionName: \r\nFirstName: ISABELLA ANNE\r\nLastName: PEREZ\r\nMiddleName: B. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771627	2025-03-18	11:45:26.2779254	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3802\r\nCharacterReferenceId: 0\r\nCompanyAddress: BANABA WEST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09387196736\r\nExtensionName: \r\nFirstName: MYRA\r\nLastName: MACATANGAY\r\nMiddleName: T.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771628	2025-03-18	11:45:26.2832197	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 120\r\nAddress2: \r\nBarangay: SAN PEDRO\r\nBasicInformationId: 3802\r\nBirthDate: November 04, 1993\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ANGELICA.RAMIREZ@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ANGELICA\r\nFullName: ANGELICA M. RAMIREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.61\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09953169522\r\nNationality: Filipino\r\nPermanentAddress1: 120\r\nPermanentAddress2: \r\nPermanentBarangay: SAN PEDRO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 120\r\nAddress2: \r\nBarangay: SAN PEDRO\r\nBasicInformationId: 3802\r\nBirthDate: November 04, 1993\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ANGELICA.RAMIREZ@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ANGELICA\r\nFullName: ANGELICA M. RAMIREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: 011154940413\r\nGovernmentIdPlaceIssued: BATANGAS CITY\r\nGovernmentIssuedId: SSS UMID ID\r\nGSIS: 02005607464\r\nHDMF: 1211-2969-9839\r\nHeight: 1.61\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nMobileNumber: 09953169522\r\nNationality: Filipino\r\nPermanentAddress1: 120\r\nPermanentAddress2: \r\nPermanentBarangay: SAN PEDRO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-201776323-9\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-2714264-8\r\nStreetName: \r\nTIN: 473-104-773-0000\r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771665	2025-03-18	12:02:29.2714038	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: BEREDO'S COMPOUND\r\nBarangay: ALANGILAN\r\nBasicInformationId: 0\r\nBirthDate: July 29, 1983\r\nBirthPlace: ISLA VERDE, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: emma.santos001@deped.gov.ph\r\nExtensionName: \r\nFirstName: EMMA\r\nFullName: EMMA C. SANTOS\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SANTOS\r\nMaidenName: \r\nMiddleName: CUETO\r\nMobileNumber: 09185932204\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: BEREDO'S COMPOUND\r\nPermanentBarangay: ALANGILAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 56\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771666	2025-03-18	12:02:29.2918311	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3812\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09085738159\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: HECTOR SHELLINO OCTAVIO\r\nFullName: HECTOR SHELLINO OCTAVIO AMISTOSO SANTOS\r\nGender: Male\r\nLastName: SANTOS\r\nMaidenName: \r\nMiddleName: AMISTOSO\r\nOccupation: ENGINEER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771792	2025-03-18	14:17:30.2483041	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT IV TRAINING OF K TO 3 TEACHERS FOR THE EARLY LANGUAGE LITERACY AND NUMERACY PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
771641	2025-03-18	11:51:50.5574163	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3808\r\nEmployeeTrainingId: 0\r\nFromDate: October 10, 2024\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: October 11, 2024\r\nTrainingId: 16321\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771642	2025-03-18	11:51:50.5623992	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3808\r\nEmployeeTrainingId: 0\r\nFromDate: July 31, 2023\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: August 04, 2023\r\nTrainingId: 16592\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771643	2025-03-18	11:51:50.5673825	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3808\r\nEmployeeTrainingId: 0\r\nFromDate: August 30, 2022\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: September 03, 2022\r\nTrainingId: 16556\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771644	2025-03-18	11:51:50.5713694	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3808\r\nEmployeeTrainingId: 0\r\nFromDate: March 15, 2021\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: March 19, 2021\r\nTrainingId: 16516\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771645	2025-03-18	11:52:33.5776795	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3808\r\nSkillId: 0\r\nSkillName: MOTOR DRIVING\r\n	admin	Skills	1
771646	2025-03-18	11:52:33.5816651	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3808\r\nRecognitionId: 0\r\nRecognitionName: GOLD SERVICE AWARDS - BOY SCHOUT OF THE PHILIPPINES\r\n	admin	Recognitions	1
771672	2025-03-18	12:08:08.4749952	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3808\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,421.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
771673	2025-03-18	12:08:08.4799785	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3808\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
771674	2025-03-18	12:08:08.4849618	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3808\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 22, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,798.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
771675	2025-03-18	12:08:08.4899453	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3808\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 28,766.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: November 21, 2022\r\n	admin	Experiences	1
771676	2025-03-18	12:08:08.4949285	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3808\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 27,210.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
771677	2025-03-18	12:08:08.4989153	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3808\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 25,653.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
771678	2025-03-18	12:08:08.5038985	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3808\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: December 21, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 24,096.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
771679	2025-03-18	12:08:08.5088818	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3808\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 23,801.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: December 20, 2019\r\n	admin	Experiences	1
771661	2025-03-18	11:54:11.9356524	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3807\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN, BATANGAS CITYY\r\nCompanyName: \r\nContactNumber: 09563977545\r\nExtensionName: \r\nFirstName: RULE\r\nLastName: DE CASTRO\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771662	2025-03-18	11:54:11.9406505	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3807\r\nCharacterReferenceId: 0\r\nCompanyAddress: CUTA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09985553861\r\nExtensionName: \r\nFirstName: MARIETA\r\nLastName: PEREZ\r\nMiddleName: N\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771663	2025-03-18	11:54:11.9446505	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3807\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAMPAGA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175050018\r\nExtensionName: \r\nFirstName: ROSANNA\r\nLastName: BAGON\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771664	2025-03-18	11:56:19.6662023	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SANTA RITA KARSADA\r\nBasicInformationId: 3807\r\nBirthDate: March 01, 1997\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSHELLE.VERGARA@DEPED.HOV.PH\r\nExtensionName: \r\nFirstName: ROSHELLE\r\nFullName: ROSHELLE G. VERGARA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: VERGARA\r\nMaidenName: \r\nMiddleName: GUTEZA\r\nMobileNumber: 09954686641\r\nNationality: Filipino\r\nPermanentAddress1: 077\r\nPermanentAddress2: \r\nPermanentBarangay: LEPUTE\r\nPermanentCity: SAN JOSE\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4227\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SANTA RITA KARSADA\r\nBasicInformationId: 3807\r\nBirthDate: March 01, 1997\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ROSHELLE.VERGARA@DEPED.HOV.PH\r\nExtensionName: \r\nFirstName: ROSHELLE\r\nFullName: ROSHELLE G. VERGARA\r\nGender: Female\r\nGovernmentIdIssuedDate: December 08, 2017\r\nGovernmentIdNumber: 1567936\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02005622377\r\nHDMF: 1211-9782-7017\r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: VERGARA\r\nMaidenName: \r\nMiddleName: GUTEZA\r\nMobileNumber: 09954686641\r\nNationality: Filipino\r\nPermanentAddress1: 077\r\nPermanentAddress2: \r\nPermanentBarangay: LEPUTE\r\nPermanentCity: SAN JOSE\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4227\r\nPhilhealth: 09-050515028-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3892891-6\r\nStreetName: \r\nTIN: 337-861-701-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771747	2025-03-18	14:10:27.5563868	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 33\r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 0\r\nBirthDate: April 17, 1971\r\nBirthPlace: MISAMIS ORIENTAL\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MILAALMA.VALLE@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: MILA ALMA\r\nFullName: MILA ALMA G. VALLE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: VALLE\r\nMaidenName: \r\nMiddleName: GALARPE\r\nMobileNumber: 09107544671\r\nNationality: Filipino\r\nPermanentAddress1: 33\r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LOOBAN 1\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: LOOBAN 1\r\nTIN: \r\nWeight: 63\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771748	2025-03-18	14:10:27.5709944	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3813\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: NILO\r\nFullName: NILO CANDIDO VALLE\r\nGender: Male\r\nLastName: VALLE\r\nMaidenName: \r\nMiddleName: CANDIDO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771749	2025-03-18	14:10:27.5709944	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3813\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EPITACIO\r\nFullName: EPITACIO LEGASPI GALARPE\r\nGender: Male\r\nLastName: GALARPE\r\nMaidenName: \r\nMiddleName: LEGASPI\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
771750	2025-03-18	14:10:27.5720028	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3813\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PATROCINIO\r\nFullName: PATROCINIO MIRANDA GALVEZ\r\nGender: Male\r\nLastName: GALVEZ\r\nMaidenName: \r\nMiddleName: MIRANDA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
771751	2025-03-18	14:10:27.5720028	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3813\r\nBirthDate: March 07, 1990\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: NEILMAR\r\nFullName: NEILMAR G VALLE\r\nGender: Male\r\nLastName: VALLE\r\nMaidenName: \r\nMiddleName: G\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771667	2025-03-18	12:02:29.2918311	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3812\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ANTONIO\r\nFullName: ANTONIO CALALUAN CUETO\r\nGender: Male\r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: CALALUAN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
771668	2025-03-18	12:02:29.2918311	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3812\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARILOU\r\nFullName: MARILOU CUETO PURIO\r\nGender: Female\r\nLastName: PURIO\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
771669	2025-03-18	12:02:29.2918311	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3812\r\nBirthDate: September 26, 2012\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SOPHIA BIANCA\r\nFullName: SOPHIA BIANCA CUETO SANTOS\r\nGender: Female\r\nLastName: SANTOS\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771670	2025-03-18	12:02:29.2928357	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3812\r\nBirthDate: January 28, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CHRISTOPHER JULIAN\r\nFullName: CHRISTOPHER JULIAN CUETO SANTOS\r\nGender: Male\r\nLastName: SANTOS\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771671	2025-03-18	12:02:29.2928357	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3812\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
771717	2025-03-18	13:46:46.7365255	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3812\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1990\r\nDateTo: 1996\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGAPITO ELEMENTARY SCHOOL\r\nYearGraduated: 1996\r\n	admin	EducationalBackgrounds	1
771718	2025-03-18	13:46:46.7478217	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3812\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 2000\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGAPITO NATIONAL HIGH SCHOOL\r\nYearGraduated: 2000\r\n	admin	EducationalBackgrounds	1
771719	2025-03-18	13:46:46.7518337	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: PESFA SCHOLAR\r\nBasicInformationId: 3812\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2005\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 2005\r\n	admin	EducationalBackgrounds	1
771720	2025-03-18	13:46:46.7610844	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3812\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2008\r\nDateTo: 2011\r\nEducationalAttainment: 24 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLCEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
771721	2025-03-18	13:46:46.7660845	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3812\r\nDateOfExamination: August 14, 2005\r\nDateOfRelease: July 29, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 14, 2005\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0898878\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 78.60\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
771722	2025-03-18	13:46:46.7715271	<Undetected>	Update	BasicInformationId: 3812\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09085738159\r\nEmployeeRelativeId: 4036\r\nExtensionName: \r\nFirstName: HECTOR SHELLINO OCTAVIO\r\nFullName: HECTOR SHELLINO OCTAVIO AMISTOSO SANTOS\r\nGender: Male\r\nLastName: SANTOS\r\nMaidenName: \r\nMiddleName: AMISTOSO\r\nOccupation: ENGINEER\r\nRelationship: Husband\r\n	BasicInformationId: 3812\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09085738159\r\nEmployeeRelativeId: 4036\r\nExtensionName: \r\nFirstName: HECTOR SHELLINO OCTAVIO\r\nFullName: HECTOR SHELLINO OCTAVIO SANTOS\r\nGender: Male\r\nLastName: SANTOS\r\nMaidenName: \r\nMiddleName: AMISTOSO\r\nOccupation: ENGINEER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771723	2025-03-18	13:46:46.7755269	<Undetected>	Update	BasicInformationId: 3812\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4037\r\nExtensionName: \r\nFirstName: ANTONIO\r\nFullName: ANTONIO CALALUAN CUETO\r\nGender: Male\r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: CALALUAN\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3812\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4037\r\nExtensionName: \r\nFirstName: ANTONIO\r\nFullName: ANTONIO CUETO\r\nGender: Male\r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: CALALUAN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
771793	2025-03-18	14:19:23.6316142	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3812\r\nSkillId: 0\r\nSkillName: READING \r\n	admin	Skills	1
771794	2025-03-18	14:19:23.6366312	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3812\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
771680	2025-03-18	12:08:08.5138652	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3808\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 22,942.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
771681	2025-03-18	12:08:08.5188486	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3808\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 22,113.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
771682	2025-03-18	12:08:08.5238319	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3808\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: December 20, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 21,315.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
771683	2025-03-18	12:08:08.5288152	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3808\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 21,091.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
771684	2025-03-18	12:08:08.5337985	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3808\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: December 21, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 20,341.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
771685	2025-03-18	12:08:08.5377852	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3808\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 20,140.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: December 20, 2013\r\n	admin	Experiences	1
771686	2025-03-18	12:08:08.5427685	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3808\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 06, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,568.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
771687	2025-03-18	12:08:08.5477519	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3808\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: December 21, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 16,995.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
771688	2025-03-18	12:08:08.5527351	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3808\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 16,726.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 20, 2010\r\n	admin	Experiences	1
771689	2025-03-18	12:08:08.5577185	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3808\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 07, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 15,119.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
771690	2025-03-18	12:08:08.5627018	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3808\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 07, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,748.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
771691	2025-03-18	12:08:08.5666885	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3808\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: December 20, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 11,589.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
771692	2025-03-18	12:08:08.5716717	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3808\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 07, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,933.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: February 19, 2007\r\n	admin	Experiences	1
771693	2025-03-18	12:08:08.5766553	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3808\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 27, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
771694	2025-03-18	13:25:53.5117135	<Undetected>	Update	BasicInformationId: 3808\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12717\r\nFromDate: January 07, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,933.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: February 19, 2007\r\n	BasicInformationId: 3808\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12717\r\nFromDate: January 07, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,933.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: February 19, 2007\r\n	admin	Experiences	1
771695	2025-03-18	13:25:53.5260638	<Undetected>	Update	BasicInformationId: 3808\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12718\r\nFromDate: February 27, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	BasicInformationId: 3808\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12718\r\nFromDate: February 27, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
771696	2025-03-18	13:31:28.3727622	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3809\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MEDEL\r\nFullName: MEDEL ARAJA ZARASPE\r\nGender: Male\r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: ARAJA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771697	2025-03-18	13:31:28.3877125	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3809\r\nBirthDate: October 03, 1987\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MEDEL\r\nFullName: MEDEL DELGADO ZARASPE\r\nGender: Male\r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: DELGADO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771698	2025-03-18	13:31:28.3976793	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3809\r\nBirthDate: February 27, 1992\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SHARA CECILLE\r\nFullName: SHARA CECILLE DELGADO ZARASPE\r\nGender: Male\r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: DELGADO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771699	2025-03-18	13:31:28.4186099	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3809\r\nBirthDate: October 03, 1998\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARIENELLE CECILLE\r\nFullName: MARIENELLE CECILLE DELGADO ZARASPE\r\nGender: Male\r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: DELGADO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771700	2025-03-18	13:31:28.4235918	<Undetected>	Update	BasicInformationId: 3809\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3606\r\n	BasicInformationId: 3809\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3606\r\n	admin	Questionnaires	1
771701	2025-03-18	13:35:32.8572641	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3809\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1974\r\nDateTo: 1980\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: LOBO CENTRAL SCHOOL\r\nYearGraduated: 1980\r\n	admin	EducationalBackgrounds	1
771702	2025-03-18	13:35:32.8612508	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3809\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1980\r\nDateTo: 1984\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: LOBO INSTITUTE\r\nYearGraduated: 1984\r\n	admin	EducationalBackgrounds	1
771703	2025-03-18	13:35:32.8732109	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3809\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1984\r\nDateTo: 1989\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES\r\nYearGraduated: 1989\r\n	admin	EducationalBackgrounds	1
771704	2025-03-18	13:35:32.8771974	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3809\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1989\r\nDateTo: 1993\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: PHYSICAL EDUCATION\r\nSchoolorUniversity: NCPE PAMANTASAN NG LUNGSOD NG MAYNILA\r\nYearGraduated: 1993\r\n	admin	EducationalBackgrounds	1
771705	2025-03-18	13:35:32.8851707	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3809\r\nCourse: \r\nCourseId: 1378\r\nCourseOrMajor: \r\nDateFrom: 1993\r\nDateTo: 1995\r\nEducationalAttainment: 30 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: PHYSICAL EDUCATION\r\nSchoolorUniversity: NCPE PAMANTASAN NG LUNGSOD NG MAYNILA\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
771706	2025-03-18	13:35:32.8901540	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3809\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 1997\r\nEducationalAttainment: 9 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
771707	2025-03-18	13:35:32.8951374	<Undetected>	Update	BasicInformationId: 3809\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4041\r\nExtensionName: \r\nFirstName: MEDEL\r\nFullName: MEDEL ARAJA ZARASPE\r\nGender: Male\r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: ARAJA\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3809\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4041\r\nExtensionName: \r\nFirstName: MEDEL\r\nFullName: MEDEL ZARASPE\r\nGender: Male\r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: ARAJA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771708	2025-03-18	13:35:32.8991240	<Undetected>	Update	BasicInformationId: 3809\r\nBirthDate: October 03, 1987\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4042\r\nExtensionName: \r\nFirstName: MEDEL\r\nFullName: MEDEL DELGADO ZARASPE\r\nGender: Male\r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: DELGADO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3809\r\nBirthDate: October 03, 1987\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4042\r\nExtensionName: \r\nFirstName: MEDEL\r\nFullName: MEDEL ZARASPE\r\nGender: Male\r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: DELGADO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771709	2025-03-18	13:35:32.9041073	<Undetected>	Update	BasicInformationId: 3809\r\nBirthDate: February 27, 1992\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4043\r\nExtensionName: \r\nFirstName: SHARA CECILLE\r\nFullName: SHARA CECILLE DELGADO ZARASPE\r\nGender: Male\r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: DELGADO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3809\r\nBirthDate: February 27, 1992\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4043\r\nExtensionName: \r\nFirstName: SHARA CECILLE\r\nFullName: SHARA CECILLE ZARASPE\r\nGender: Male\r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: DELGADO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771710	2025-03-18	13:35:32.9090907	<Undetected>	Update	BasicInformationId: 3809\r\nBirthDate: October 03, 1998\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4044\r\nExtensionName: \r\nFirstName: MARIENELLE CECILLE\r\nFullName: MARIENELLE CECILLE DELGADO ZARASPE\r\nGender: Male\r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: DELGADO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3809\r\nBirthDate: October 03, 1998\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4044\r\nExtensionName: \r\nFirstName: MARIENELLE CECILLE\r\nFullName: MARIENELLE CECILLE ZARASPE\r\nGender: Male\r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: DELGADO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771711	2025-03-18	13:40:32.0190567	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 545\r\nAddress2: \r\nBarangay: SAMPAGA CENTRO\r\nBasicInformationId: 3809\r\nBirthDate: February 02, 1968\r\nBirthPlace: FABRICA, LOBO BATANGAS\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: cecilia.zaraspe@deped.gov.ph\r\nExtensionName: \r\nFirstName: CECILIA\r\nFullName: CECILIA D. ZARASPE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: DELGADO\r\nMobileNumber: 09396213330\r\nNationality: Filipino\r\nPermanentAddress1: 545\r\nPermanentAddress2: \r\nPermanentBarangay: SAMPAGA CENTRO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: GOV. ANTONIO CARPIO ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: GOV. ANTONIO CARPIO ROAD\r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 545\r\nAddress2: \r\nBarangay: SAMPAGA CENTRO\r\nBasicInformationId: 3809\r\nBirthDate: February 02, 1968\r\nBirthPlace: FABRICA, LOBO BATANGAS\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: cecilia.zaraspe@deped.gov.ph\r\nExtensionName: \r\nFirstName: CECILIA\r\nFullName: CECILIA D. ZARASPE\r\nGender: Female\r\nGovernmentIdIssuedDate: September 08, 1998\r\nGovernmentIdNumber: 043100\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC LICENSE\r\nGSIS: 02003002799\r\nHDMF: 1490-0089-4909\r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ZARASPE\r\nMaidenName: \r\nMiddleName: DELGADO\r\nMobileNumber: 09396213330\r\nNationality: Filipino\r\nPermanentAddress1: 545\r\nPermanentAddress2: \r\nPermanentBarangay: SAMPAGA CENTRO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: GOV. ANTONIO CARPIO ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000007118-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: GOV. ANTONIO CARPIO ROAD\r\nTIN: 192-983-402-0000\r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771712	2025-03-18	13:42:33.0687321	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3809\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES, SORO-SORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09913261225\r\nExtensionName: \r\nFirstName: EPITACIA\r\nLastName: CULLERA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771713	2025-03-18	13:42:33.0777020	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3809\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN EAST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175057894\r\nExtensionName: \r\nFirstName: AUREA\r\nLastName: OCON\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771714	2025-03-18	13:42:33.0816887	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3809\r\nCharacterReferenceId: 0\r\nCompanyAddress: CALICANTO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09618306429\r\nExtensionName: \r\nFirstName: ELIZA\r\nLastName: NEBRIDA\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771724	2025-03-18	13:46:46.7807037	<Undetected>	Update	BasicInformationId: 3812\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4038\r\nExtensionName: \r\nFirstName: MARILOU\r\nFullName: MARILOU CUETO PURIO\r\nGender: Female\r\nLastName: PURIO\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3812\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4038\r\nExtensionName: \r\nFirstName: MARILOU\r\nFullName: MARILOU PURIO\r\nGender: Female\r\nLastName: PURIO\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
771715	2025-03-18	13:44:51.9098311	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3809\r\nDateOfExamination: May 05, 1994\r\nDateOfRelease: February 02, 2024\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: May 05, 1994\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 043100\r\nPlaceOfExamination: BATANGS NATIONAL HIGH SCHOOL\r\nRating: 70.69\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
771716	2025-03-18	13:45:21.8734520	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT GENDER AND DEVELOPMENT TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
771728	2025-03-18	13:48:38.7786175	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BLOOMS TAXONOMY AND UNPACKING OF MELC\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
771729	2025-03-18	13:49:43.3838062	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3809\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION/DISTRICT IV\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16593\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771730	2025-03-18	13:49:43.3887895	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3809\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION/NATIONAL\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16457\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771731	2025-03-18	13:49:43.3937731	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3809\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION/NATIONAL\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16470\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771732	2025-03-18	13:49:43.3987561	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3809\r\nEmployeeTrainingId: 0\r\nFromDate: October 07, 2022\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION/DISTRICT IV\r\nStatus: \r\nToDate: October 07, 2022\r\nTrainingId: 16594\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771733	2025-03-18	13:49:43.4038150	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3809\r\nEmployeeTrainingId: 0\r\nFromDate: July 20, 2022\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION/DISTRICT IV\r\nStatus: \r\nToDate: July 20, 2022\r\nTrainingId: 16584\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771734	2025-03-18	13:50:05.5959227	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3809\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
771735	2025-03-18	13:50:05.6068861	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3809\r\nSkillId: 0\r\nSkillName: READING \r\n	admin	Skills	1
771736	2025-03-18	14:01:34.3675022	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,310.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-8\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
771737	2025-03-18	14:01:34.3724855	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,770.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-8\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
771738	2025-03-18	14:01:34.3774692	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,464.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-8\r\nStatus: Permanent\r\nToDate: July 31, 2024\r\n	admin	Experiences	1
771739	2025-03-18	14:01:34.3824522	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 30,924.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-7\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
771740	2025-03-18	14:01:34.3864388	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,367.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-7\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
771725	2025-03-18	13:46:46.7857197	<Undetected>	Update	BasicInformationId: 3812\r\nBirthDate: September 26, 2012\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4039\r\nExtensionName: \r\nFirstName: SOPHIA BIANCA\r\nFullName: SOPHIA BIANCA CUETO SANTOS\r\nGender: Female\r\nLastName: SANTOS\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3812\r\nBirthDate: September 26, 2012\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4039\r\nExtensionName: \r\nFirstName: SOPHIA BIANCA\r\nFullName: SOPHIA BIANCA SANTOS\r\nGender: Female\r\nLastName: SANTOS\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771726	2025-03-18	13:46:46.7907660	<Undetected>	Update	BasicInformationId: 3812\r\nBirthDate: January 28, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4040\r\nExtensionName: \r\nFirstName: CHRISTOPHER JULIAN\r\nFullName: CHRISTOPHER JULIAN CUETO SANTOS\r\nGender: Male\r\nLastName: SANTOS\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3812\r\nBirthDate: January 28, 2017\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4040\r\nExtensionName: \r\nFirstName: CHRISTOPHER JULIAN\r\nFullName: CHRISTOPHER JULIAN SANTOS\r\nGender: Male\r\nLastName: SANTOS\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771727	2025-03-18	13:46:46.7947914	<Undetected>	Update	BasicInformationId: 3812\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3609\r\n	BasicInformationId: 3812\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3609\r\n	admin	Questionnaires	1
771741	2025-03-18	14:01:34.3914222	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 15, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 27,811.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-7\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
771742	2025-03-18	14:01:34.3964055	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 27,509.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-6\r\nStatus: Permanent\r\nToDate: July 14, 2021\r\n	admin	Experiences	1
771743	2025-03-18	14:01:34.4013889	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 25,952.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-6\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
771744	2025-03-18	14:01:34.4053756	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 24,395.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-6\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
771745	2025-03-18	14:01:34.4103589	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 15, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 23,486.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-6\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
771746	2025-03-18	14:01:34.4153421	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 23,212.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: July 14, 2018\r\n	admin	Experiences	1
771815	2025-03-18	14:26:10.4615968	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 22,361.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
771816	2025-03-18	14:26:10.4665796	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 21,540.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
771817	2025-03-18	14:26:10.4725599	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 15, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 20,750.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
771818	2025-03-18	14:26:10.4765462	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 15, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 20,545.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: July 14, 2015\r\n	admin	Experiences	1
771819	2025-03-18	14:26:10.4825263	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 20,341.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: July 14, 2012\r\n	admin	Experiences	1
771820	2025-03-18	14:26:10.4865127	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,805.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
771752	2025-03-18	14:10:27.5720028	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3813\r\nBirthDate: September 12, 1991\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GRACE\r\nFullName: GRACE G VALLE\r\nGender: Male\r\nLastName: VALLE\r\nMaidenName: \r\nMiddleName: G\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771753	2025-03-18	14:10:27.5720028	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3813\r\nBirthDate: August 02, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: KID RAD\r\nFullName: KID RAD G VALLE\r\nGender: Male\r\nLastName: VALLE\r\nMaidenName: \r\nMiddleName: G\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771754	2025-03-18	14:10:27.5720028	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3813\r\nBirthDate: August 09, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RED\r\nFullName: RED G VALLE\r\nGender: Male\r\nLastName: VALLE\r\nMaidenName: \r\nMiddleName: G\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771755	2025-03-18	14:10:27.5720028	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3813\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
771756	2025-03-18	14:10:54.8878481	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3812\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 33,403.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: March 18, 2025\r\n	admin	Experiences	1
771757	2025-03-18	14:10:54.8928806	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3812\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 31,863.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
771758	2025-03-18	14:10:54.8978809	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3812\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 30,323.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
771759	2025-03-18	14:10:54.9028809	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3812\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 28,766.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
771760	2025-03-18	14:10:54.9101700	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3812\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: October 20, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 27,210.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
771761	2025-03-18	14:10:54.9161826	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3812\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 26,915.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: October 19, 2021\r\n	admin	Experiences	1
771762	2025-03-18	14:10:54.9202557	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3812\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 25,067.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
771763	2025-03-18	14:10:54.9254157	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3812\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 23,510.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
771764	2025-03-18	14:10:54.9294344	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3812\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 22,149.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
771765	2025-03-18	14:10:54.9344417	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3812\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 21,387.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
771766	2025-03-18	14:10:54.9394939	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3812\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 20,651.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
771767	2025-03-18	14:10:54.9445021	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3812\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 19,940.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
771768	2025-03-18	14:10:54.9485078	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3812\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,333.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
771769	2025-03-18	14:10:54.9537187	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3812\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 16,726.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
771770	2025-03-18	14:10:54.9577258	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3812\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: October 20, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 15,119.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
771771	2025-03-18	14:10:54.9627614	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3812\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 14,198.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: October 19, 2009\r\n	admin	Experiences	1
771772	2025-03-18	14:10:54.9677926	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3812\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,026.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
771773	2025-03-18	14:10:54.9728004	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3812\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,933.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
771774	2025-03-18	14:10:54.9768072	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3812\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 04, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 10,933.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
771776	2025-03-18	14:13:25.4982194	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: CERTIFICATE\r\nBasicInformationId: 3813\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1978\r\nDateTo: 1984\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: INITAO CENTRAL SCHOOL\r\nYearGraduated: 1984\r\n	admin	EducationalBackgrounds	1
771777	2025-03-18	14:13:25.5022188	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: DIPLOMA\r\nBasicInformationId: 3813\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1984\r\nDateTo: 1988\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: XAVIER HIGH SCHOOL\r\nYearGraduated: 1988\r\n	admin	EducationalBackgrounds	1
771778	2025-03-18	14:13:25.5072207	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: DIPLOMA\r\nBasicInformationId: 3813\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1988\r\nDateTo: 2000\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: DON MARIANO MARCOS MEMORIAL STATE UNIVERSITY\r\nYearGraduated: 2000\r\n	admin	EducationalBackgrounds	1
771779	2025-03-18	14:13:25.5172225	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 33\r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3813\r\nBirthDate: April 17, 1971\r\nBirthPlace: MISAMIS ORIENTAL\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MILAALMA.VALLE@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: MILA ALMA\r\nFullName: MILA ALMA G. VALLE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: VALLE\r\nMaidenName: \r\nMiddleName: GALARPE\r\nMobileNumber: 09107544671\r\nNationality: Filipino\r\nPermanentAddress1: 33\r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LOOBAN 1\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: LOOBAN 1\r\nTIN: \r\nWeight: 63\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 33\r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3813\r\nBirthDate: April 17, 1971\r\nBirthPlace: MISAMIS ORIENTAL\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MILAALMA.VALLE@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: MILA ALMA\r\nFullName: MILA ALMA G. VALLE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: VALLE\r\nMaidenName: \r\nMiddleName: GALARPE\r\nMobileNumber: 09107544671\r\nNationality: Filipino\r\nPermanentAddress1: 33\r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LOOBAN 1\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LOOBAN 1\r\nTIN: \r\nWeight: 63\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771780	2025-03-18	14:13:25.5222285	<Undetected>	Update	BasicInformationId: 3813\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4045\r\nExtensionName: \r\nFirstName: NILO\r\nFullName: NILO CANDIDO VALLE\r\nGender: Male\r\nLastName: VALLE\r\nMaidenName: \r\nMiddleName: CANDIDO\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3813\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4045\r\nExtensionName: \r\nFirstName: NILO\r\nFullName: NILO VALLE\r\nGender: Male\r\nLastName: VALLE\r\nMaidenName: \r\nMiddleName: CANDIDO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771781	2025-03-18	14:13:25.5277421	<Undetected>	Update	BasicInformationId: 3813\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4046\r\nExtensionName: \r\nFirstName: EPITACIO\r\nFullName: EPITACIO LEGASPI GALARPE\r\nGender: Male\r\nLastName: GALARPE\r\nMaidenName: \r\nMiddleName: LEGASPI\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3813\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4046\r\nExtensionName: \r\nFirstName: EPITACIO\r\nFullName: EPITACIO GALARPE\r\nGender: Male\r\nLastName: GALARPE\r\nMaidenName: \r\nMiddleName: LEGASPI\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
771782	2025-03-18	14:13:25.5327427	<Undetected>	Update	BasicInformationId: 3813\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4047\r\nExtensionName: \r\nFirstName: PATROCINIO\r\nFullName: PATROCINIO MIRANDA GALVEZ\r\nGender: Male\r\nLastName: GALVEZ\r\nMaidenName: \r\nMiddleName: MIRANDA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3813\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4047\r\nExtensionName: \r\nFirstName: PATROCINIO\r\nFullName: PATROCINIO GALVEZ\r\nGender: Male\r\nLastName: GALVEZ\r\nMaidenName: \r\nMiddleName: MIRANDA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
771783	2025-03-18	14:13:25.5377418	<Undetected>	Update	BasicInformationId: 3813\r\nBirthDate: March 07, 1990\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4048\r\nExtensionName: \r\nFirstName: NEILMAR\r\nFullName: NEILMAR G VALLE\r\nGender: Male\r\nLastName: VALLE\r\nMaidenName: \r\nMiddleName: G\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3813\r\nBirthDate: March 07, 1990\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4048\r\nExtensionName: \r\nFirstName: NEILMAR\r\nFullName: NEILMAR VALLE\r\nGender: Male\r\nLastName: VALLE\r\nMaidenName: \r\nMiddleName: G\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771784	2025-03-18	14:13:25.5427426	<Undetected>	Update	BasicInformationId: 3813\r\nBirthDate: September 12, 1991\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4049\r\nExtensionName: \r\nFirstName: GRACE\r\nFullName: GRACE G VALLE\r\nGender: Male\r\nLastName: VALLE\r\nMaidenName: \r\nMiddleName: G\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3813\r\nBirthDate: September 12, 1991\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4049\r\nExtensionName: \r\nFirstName: GRACE\r\nFullName: GRACE VALLE\r\nGender: Male\r\nLastName: VALLE\r\nMaidenName: \r\nMiddleName: G\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771785	2025-03-18	14:13:25.5477424	<Undetected>	Update	BasicInformationId: 3813\r\nBirthDate: August 02, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4050\r\nExtensionName: \r\nFirstName: KID RAD\r\nFullName: KID RAD G VALLE\r\nGender: Male\r\nLastName: VALLE\r\nMaidenName: \r\nMiddleName: G\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3813\r\nBirthDate: August 02, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4050\r\nExtensionName: \r\nFirstName: KID RAD\r\nFullName: KID RAD VALLE\r\nGender: Male\r\nLastName: VALLE\r\nMaidenName: \r\nMiddleName: G\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771795	2025-03-18	14:19:23.6421484	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3812\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
771786	2025-03-18	14:13:25.5527427	<Undetected>	Update	BasicInformationId: 3813\r\nBirthDate: August 09, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4051\r\nExtensionName: \r\nFirstName: RED\r\nFullName: RED G VALLE\r\nGender: Male\r\nLastName: VALLE\r\nMaidenName: \r\nMiddleName: G\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3813\r\nBirthDate: August 09, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4051\r\nExtensionName: \r\nFirstName: RED\r\nFullName: RED VALLE\r\nGender: Male\r\nLastName: VALLE\r\nMaidenName: \r\nMiddleName: G\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771787	2025-03-18	14:13:25.5607887	<Undetected>	Update	BasicInformationId: 3813\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3610\r\n	BasicInformationId: 3813\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3610\r\n	admin	Questionnaires	1
771789	2025-03-18	14:14:50.8685898	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3813\r\nDateOfExamination: January 10, 2001\r\nDateOfRelease: April 17, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: January 10, 2001\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 06922950\r\nPlaceOfExamination: BAGUIO\r\nRating: 75\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
771791	2025-03-18	14:16:28.3990269	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3813\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 19, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 30,278.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-7\r\nStatus: Permanent\r\nToDate: January 01, 2025\r\n	admin	Experiences	1
771801	2025-03-18	14:19:37.5683264	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT VIII GAD TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
771802	2025-03-18	14:22:33.7956931	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3813\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-NARIONAL LEVEL\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16470\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771803	2025-03-18	14:22:33.8006944	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3813\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-BANABA WEST ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16422\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771804	2025-03-18	14:22:33.8078734	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3813\r\nEmployeeTrainingId: 0\r\nFromDate: September 12, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION- DISTRICT VIII STA. RITA\r\nStatus: \r\nToDate: September 12, 2023\r\nTrainingId: 16599\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771805	2025-03-18	14:22:33.8123846	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3813\r\nEmployeeTrainingId: 0\r\nFromDate: January 31, 2022\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-BANABA WEST ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: April 02, 2024\r\nTrainingId: 16581\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771806	2025-03-18	14:22:33.8173845	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3813\r\nEmployeeTrainingId: 0\r\nFromDate: December 11, 2021\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV A\r\nStatus: \r\nToDate: December 11, 2021\r\nTrainingId: 16568\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771807	2025-03-18	14:22:55.9723222	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3813\r\nSkillId: 0\r\nSkillName: TEACHING MINI-BAND\r\n	admin	Skills	1
771812	2025-03-18	14:25:00.3671642	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3813\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09563977545\r\nExtensionName: \r\nFirstName: RUEL\r\nLastName: DE CASTRO\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771813	2025-03-18	14:25:00.3721628	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3813\r\nCharacterReferenceId: 0\r\nCompanyAddress: BANABA WEST BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09995114678\r\nExtensionName: \r\nFirstName: ESPERANA\r\nLastName: LUSANTA\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771814	2025-03-18	14:25:00.3801620	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3813\r\nCharacterReferenceId: 0\r\nCompanyAddress: BANABA WEST BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 4027239175\r\nExtensionName: \r\nFirstName: CHITO\r\nLastName: MACATANGAY\r\nMiddleName: H\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771911	2025-03-18	14:59:40.7326947	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3810\r\nEmployeeTrainingId: 0\r\nFromDate: January 25, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY - DISTRICT IV\r\nStatus: \r\nToDate: January 25, 2024\r\nTrainingId: 16551\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771796	2025-03-18	14:19:23.6471649	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3812\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 15\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMNE TOF EDUCATION\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16482\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771797	2025-03-18	14:19:23.6521810	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3812\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16595\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771798	2025-03-18	14:19:23.6586361	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3812\r\nEmployeeTrainingId: 0\r\nFromDate: January 25, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY - DISTRICT IV\r\nStatus: \r\nToDate: January 25, 2024\r\nTrainingId: 16596\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771799	2025-03-18	14:19:23.6649594	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3812\r\nEmployeeTrainingId: 0\r\nFromDate: August 02, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY - DISTRICT IV\r\nStatus: \r\nToDate: August 02, 2023\r\nTrainingId: 15172\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771800	2025-03-18	14:19:23.6691619	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3812\r\nEmployeeTrainingId: 0\r\nFromDate: April 01, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGS CITY - DISTRICT IV\r\nStatus: \r\nToDate: April 01, 2023\r\nTrainingId: 16598\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771808	2025-03-18	14:22:59.1551172	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3812\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09913261235\r\nExtensionName: \r\nFirstName: EPITACIA\r\nLastName: CULLERA\r\nMiddleName: C.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771809	2025-03-18	14:22:59.1603272	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3812\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175756947\r\nExtensionName: \r\nFirstName: AUREA\r\nLastName: OCON\r\nMiddleName: P.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771810	2025-03-18	14:22:59.1655547	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3812\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175421815\r\nExtensionName: \r\nFirstName: ELIZA\r\nLastName: NEBRIDA\r\nMiddleName: B.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771811	2025-03-18	14:22:59.1697905	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: BEREDO'S COMPOUND\r\nBarangay: ALANGILAN\r\nBasicInformationId: 3812\r\nBirthDate: July 29, 1983\r\nBirthPlace: ISLA VERDE, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: emma.santos001@deped.gov.ph\r\nExtensionName: \r\nFirstName: EMMA\r\nFullName: EMMA C. SANTOS\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SANTOS\r\nMaidenName: \r\nMiddleName: CUETO\r\nMobileNumber: 09185932204\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: BEREDO'S COMPOUND\r\nPermanentBarangay: ALANGILAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 56\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: BEREDO'S COMPOUND\r\nBarangay: ALANGILAN\r\nBasicInformationId: 3812\r\nBirthDate: July 29, 1983\r\nBirthPlace: ISLA VERDE, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: emma.santos001@deped.gov.ph\r\nExtensionName: \r\nFirstName: EMMA\r\nFullName: EMMA C. SANTOS\r\nGender: Female\r\nGovernmentIdIssuedDate: December 31, 2005\r\nGovernmentIdNumber: 0898878\r\nGovernmentIdPlaceIssued: LUCENA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02002895317\r\nHDMF: 1490-0097-4564\r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SANTOS\r\nMaidenName: \r\nMiddleName: CUETO\r\nMobileNumber: 09185932204\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: BEREDO'S COMPOUND\r\nPermanentBarangay: ALANGILAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000066245-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 304-225-135-0000\r\nWeight: 56\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771867	2025-03-18	14:44:11.1544632	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3815\r\nDateOfExamination: August 31, 2003\r\nDateOfRelease: October 02, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 31, 2003\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 02981072\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 78\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
771868	2025-03-18	14:44:11.1594632	<Undetected>	Update	BasicInformationId: 3815\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4055\r\nExtensionName: \r\nFirstName: ZACARIAS\r\nFullName: ZACARIAS DIMAYACYAC GARCIA\r\nGender: Male\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: DIMAYACYAC\r\nOccupation: PIPE FITTER\r\nRelationship: Husband\r\n	BasicInformationId: 3815\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4055\r\nExtensionName: \r\nFirstName: ZACARIAS\r\nFullName: ZACARIAS GARCIA\r\nGender: Male\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: DIMAYACYAC\r\nOccupation: PIPE FITTER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771973	2025-03-18	15:11:53.2684969	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3815\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
771821	2025-03-18	14:26:10.4914963	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 17,269.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
771822	2025-03-18	14:26:10.4964795	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 15, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 15,733.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
771823	2025-03-18	14:26:10.5014628	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 15,422.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: July 14, 2009\r\n	admin	Experiences	1
771824	2025-03-18	14:26:10.5064461	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 13,066.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
771825	2025-03-18	14:26:10.5114297	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 11,878.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
771826	2025-03-18	14:26:10.5164128	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,798.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
771827	2025-03-18	14:26:10.5213962	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 15, 2003\r\nIsGovernmentService: True\r\nMonthlySalary: 10,535.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2006\r\n	admin	Experiences	1
771828	2025-03-18	14:26:10.5253828	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: July 14, 2003\r\n	admin	Experiences	1
771829	2025-03-18	14:26:10.5303659	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
771830	2025-03-18	14:26:10.5353494	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
771831	2025-03-18	14:26:10.5403330	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 7,309.00\r\nPositionHeld: ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: October 31, 1997\r\n	admin	Experiences	1
771832	2025-03-18	14:26:10.5453162	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 6,013.00\r\nPositionHeld: ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1996\r\n	admin	Experiences	1
771833	2025-03-18	14:26:10.5502995	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 05, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 4,902.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1995\r\n	admin	Experiences	1
771834	2025-03-18	14:26:10.5552829	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 09, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 4,902.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Substitute\r\nToDate: March 03, 1995\r\n	admin	Experiences	1
771836	2025-03-18	14:27:35.1138605	<Undetected>	Update	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12766\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 7,309.00\r\nPositionHeld: ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: October 31, 1997\r\n	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12766\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 7,309.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: October 31, 1997\r\n	admin	Experiences	1
771837	2025-03-18	14:27:35.1178470	<Undetected>	Update	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12767\r\nFromDate: January 01, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 6,013.00\r\nPositionHeld: ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1996\r\n	BasicInformationId: 3809\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12767\r\nFromDate: January 01, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 6,013.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1996\r\n	admin	Experiences	1
771838	2025-03-18	14:30:58.0913083	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3810\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: NELSON\r\nFullName: NELSON DELA CRUZ ALVAREZ\r\nGender: Male\r\nLastName: ALVAREZ\r\nMaidenName: \r\nMiddleName: DELA CRUZ\r\nOccupation: MAINTENANCE/CARETAKER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771839	2025-03-18	14:30:58.1022716	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3810\r\nBirthDate: September 14, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GODWIN\r\nFullName: GODWIN MARASIGAN ALVAREZ\r\nGender: Male\r\nLastName: ALVAREZ\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771840	2025-03-18	14:30:58.1122384	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3810\r\nBirthDate: December 05, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GODRICH\r\nFullName: GODRICH MARASIGAN ALVAREZ\r\nGender: Male\r\nLastName: ALVAREZ\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771841	2025-03-18	14:30:58.1271883	<Undetected>	Update	BasicInformationId: 3810\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3607\r\n	BasicInformationId: 3810\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3607\r\n	admin	Questionnaires	1
771842	2025-03-18	14:32:44.4645867	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 21\r\nAddress2: SIRANG LUPA\r\nBarangay: SIRANG LUPA\r\nBasicInformationId: 3810\r\nBirthDate: March 11, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: glades.alvarez001@deped.gov.ph\r\nExtensionName: \r\nFirstName: GLADES\r\nFullName: GLADES M. ALVAREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.56\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALVAREZ\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nMobileNumber: 09605313203\r\nNationality: Filipino\r\nPermanentAddress1: 21\r\nPermanentAddress2: SIRANG LUPA\r\nPermanentBarangay: SIRANG LUPA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 1\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 1\r\nTIN: \r\nWeight: 62\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 21\r\nAddress2: SIRANG LUPA\r\nBarangay: SIRANG LUPA\r\nBasicInformationId: 3810\r\nBirthDate: March 11, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: glades.alvarez001@deped.gov.ph\r\nExtensionName: \r\nFirstName: GLADES\r\nFullName: GLADES M. ALVAREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: October 28, 2000\r\nGovernmentIdNumber: 0657668\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC LICENSE\r\nGSIS: 02002896400\r\nHDMF: 1490-0096-8809\r\nHeight: 1.56\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALVAREZ\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nMobileNumber: 09605313203\r\nNationality: Filipino\r\nPermanentAddress1: 21\r\nPermanentAddress2: SIRANG LUPA\r\nPermanentBarangay: SIRANG LUPA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 1\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050078295-0\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1114602-9\r\nStreetName: PUROK 1\r\nTIN: 302-580-412-0000\r\nWeight: 62\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771843	2025-03-18	14:32:44.4755501	<Undetected>	Update	BasicInformationId: 3810\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4052\r\nExtensionName: \r\nFirstName: NELSON\r\nFullName: NELSON DELA CRUZ ALVAREZ\r\nGender: Male\r\nLastName: ALVAREZ\r\nMaidenName: \r\nMiddleName: DELA CRUZ\r\nOccupation: MAINTENANCE/CARETAKER\r\nRelationship: Husband\r\n	BasicInformationId: 3810\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4052\r\nExtensionName: \r\nFirstName: NELSON\r\nFullName: NELSON ALVAREZ\r\nGender: Male\r\nLastName: ALVAREZ\r\nMaidenName: \r\nMiddleName: DELA CRUZ\r\nOccupation: MAINTENANCE/CARETAKER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771974	2025-03-18	15:11:53.2735126	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3815\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
771835	2025-03-18	14:27:09.2440208	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 33\r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3813\r\nBirthDate: April 17, 1971\r\nBirthPlace: MISAMIS ORIENTAL\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MILAALMA.VALLE@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: MILA ALMA\r\nFullName: MILA ALMA G. VALLE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: VALLE\r\nMaidenName: \r\nMiddleName: GALARPE\r\nMobileNumber: 09107544671\r\nNationality: Filipino\r\nPermanentAddress1: 33\r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LOOBAN 1\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LOOBAN 1\r\nTIN: \r\nWeight: 63\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 33\r\nAddress2: \r\nBarangay: BANABA WEST\r\nBasicInformationId: 3813\r\nBirthDate: April 17, 1971\r\nBirthPlace: MISAMIS ORIENTAL\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MILAALMA.VALLE@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: MILA ALMA\r\nFullName: MILA ALMA G. VALLE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 10, 2001\r\nGovernmentIdNumber: 0692950\r\nGovernmentIdPlaceIssued: BAGUIO\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02002123600\r\nHDMF: 1490-0036-9370\r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: VALLE\r\nMaidenName: \r\nMiddleName: GALARPE\r\nMobileNumber: 09107544671\r\nNationality: Filipino\r\nPermanentAddress1: 33\r\nPermanentAddress2: \r\nPermanentBarangay: BANABA WEST\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LOOBAN 1\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000064834-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LOOBAN 1\r\nTIN: 302-550-871-0000\r\nWeight: 63\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771849	2025-03-18	14:36:05.8030687	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 1289\r\nAddress2: \r\nBarangay: LIBJO\r\nBasicInformationId: 0\r\nBirthDate: April 09, 1972\r\nBirthPlace: LIBJO BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: LUISA.ABEJO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: LUISA\r\nFullName: LUISA S. ABEJO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.21\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7744805\r\nLastName: ABEJO\r\nMaidenName: \r\nMiddleName: SANCHEZ\r\nMobileNumber: 09497449222\r\nNationality: Filipino\r\nPermanentAddress1: 1289\r\nPermanentAddress2: \r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LAMAO\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LAMAO\r\nTIN: \r\nWeight: 75\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771850	2025-03-18	14:36:05.8142236	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3814\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
771881	2025-03-18	14:48:14.6432930	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3814\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: BOBBY\r\nFullName: BOBBY LARAÑIO ABEJO\r\nGender: Male\r\nLastName: ABEJO\r\nMaidenName: \r\nMiddleName: LARAÑIO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771882	2025-03-18	14:48:14.6552917	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3814\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROMEO\r\nFullName: ROMEO CATIBOG SANCHEZ\r\nGender: Male\r\nLastName: SANCHEZ\r\nMaidenName: \r\nMiddleName: CATIBOG\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
771883	2025-03-18	14:48:14.6613386	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3814\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: REMEDIOS\r\nFullName: REMEDIOS CUASAY ENRIQUEZ\r\nGender: Male\r\nLastName: ENRIQUEZ\r\nMaidenName: \r\nMiddleName: CUASAY\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
771884	2025-03-18	14:48:14.6712472	<Undetected>	Update	BasicInformationId: 3814\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3611\r\n	BasicInformationId: 3814\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3611\r\n	admin	Questionnaires	1
771905	2025-03-18	14:59:06.8356943	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3814\r\nBirthDate: February 12, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: NATHALIE\r\nFullName: NATHALIE SANCHEZ ABEJO\r\nGender: Male\r\nLastName: ABEJO\r\nMaidenName: \r\nMiddleName: SANCHEZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771906	2025-03-18	14:59:06.8406967	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3814\r\nBirthDate: March 01, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LAURICE\r\nFullName: LAURICE SANCHEZ ABEJO\r\nGender: Male\r\nLastName: ABEJO\r\nMaidenName: \r\nMiddleName: SANCHEZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771844	2025-03-18	14:32:44.4974768	<Undetected>	Update	BasicInformationId: 3810\r\nBirthDate: September 14, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4053\r\nExtensionName: \r\nFirstName: GODWIN\r\nFullName: GODWIN MARASIGAN ALVAREZ\r\nGender: Male\r\nLastName: ALVAREZ\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3810\r\nBirthDate: September 14, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4053\r\nExtensionName: \r\nFirstName: GODWIN\r\nFullName: GODWIN ALVAREZ\r\nGender: Male\r\nLastName: ALVAREZ\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771845	2025-03-18	14:32:44.5064468	<Undetected>	Update	BasicInformationId: 3810\r\nBirthDate: December 05, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4054\r\nExtensionName: \r\nFirstName: GODRICH\r\nFullName: GODRICH MARASIGAN ALVAREZ\r\nGender: Male\r\nLastName: ALVAREZ\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3810\r\nBirthDate: December 05, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4054\r\nExtensionName: \r\nFirstName: GODRICH\r\nFullName: GODRICH ALVAREZ\r\nGender: Male\r\nLastName: ALVAREZ\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771846	2025-03-18	14:34:15.9169536	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3810\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES, SORO-SORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09913261235\r\nExtensionName: \r\nFirstName: EPITACIA\r\nLastName: CULLERA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771847	2025-03-18	14:34:15.9219370	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3810\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN EAST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175051894\r\nExtensionName: \r\nFirstName: AUREA\r\nLastName: OCON\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771848	2025-03-18	14:34:15.9309070	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3810\r\nCharacterReferenceId: 0\r\nCompanyAddress: P. HERRERA STREET, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09618306429\r\nExtensionName: \r\nFirstName: ELIZA\r\nLastName: NEBRIDA\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771851	2025-03-18	14:36:37.0690669	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: FIRST HONORABLE MENTION\r\nBasicInformationId: 3810\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1985\r\nDateTo: 1990\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SIRANG LUPA ELEMENTARY SCHOOL\r\nYearGraduated: 1990\r\n	admin	EducationalBackgrounds	1
771852	2025-03-18	14:36:37.0800305	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3810\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1990\r\nDateTo: 1995\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1995\r\n	admin	EducationalBackgrounds	1
771853	2025-03-18	14:36:37.0850136	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3810\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 2000\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY\r\nYearGraduated: 2000\r\n	admin	EducationalBackgrounds	1
771854	2025-03-18	14:36:37.0917207	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3810\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2018\r\nDateTo: 2022\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2022\r\n	admin	EducationalBackgrounds	1
771862	2025-03-18	14:37:42.1511381	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3810\r\nDateOfExamination: August 27, 2000\r\nDateOfRelease: March 11, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 27, 2000\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0657668\r\nPlaceOfExamination: MANILA\r\nRating: 80.60\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
771874	2025-03-18	14:45:17.2378184	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3810\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,421.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
771875	2025-03-18	14:45:17.2428017	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3810\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 23, 2024\r\n	admin	Experiences	1
771975	2025-03-18	15:11:53.2785402	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3815\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09176748063\r\nExtensionName: \r\nFirstName: EPITACIA\r\nLastName: CULLERA\r\nMiddleName: C.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771855	2025-03-18	14:37:03.1878966	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STA. CLARA\r\nBasicInformationId: 0\r\nBirthDate: October 02, 1979\r\nBirthPlace: STA. CLARA, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: aerzac_2@yahoo.com\r\nExtensionName: \r\nFirstName: REA\r\nFullName: REA A. GARCIA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: ALEA\r\nMobileNumber: 09450895437\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 7\r\nTIN: \r\nWeight: 62\r\nZipCode: 2400\r\n	admin	BasicInformation	1
771856	2025-03-18	14:37:03.2012023	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3815\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ZACARIAS\r\nFullName: ZACARIAS DIMAYACYAC GARCIA\r\nGender: Male\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: DIMAYACYAC\r\nOccupation: PIPE FITTER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771857	2025-03-18	14:37:03.2012023	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3815\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALBERTO\r\nFullName: ALBERTO CORTEZ ALEA\r\nGender: Male\r\nLastName: ALEA\r\nMaidenName: \r\nMiddleName: CORTEZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
771858	2025-03-18	14:37:03.2022217	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3815\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FLORENTINA\r\nFullName: FLORENTINA CONCEPCION FAJARDO\r\nGender: Female\r\nLastName: FAJARDO\r\nMaidenName: \r\nMiddleName: CONCEPCION\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
771859	2025-03-18	14:37:03.2022217	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3815\r\nBirthDate: September 04, 2010\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RAIN\r\nFullName: RAIN ALEA GARCIA\r\nGender: Female\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: ALEA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771860	2025-03-18	14:37:03.2022217	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3815\r\nBirthDate: June 01, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RAINIEL\r\nFullName: RAINIEL ALEA GARCIA\r\nGender: Male\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: ALEA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771861	2025-03-18	14:37:03.2022217	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3815\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
771863	2025-03-18	14:44:11.1231474	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3815\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1986\r\nDateTo: 1992\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: STA. CLARA ELEMENTARY SCHOOL\r\nYearGraduated: 1992\r\n	admin	EducationalBackgrounds	1
771864	2025-03-18	14:44:11.1374638	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3815\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1992\r\nDateTo: 1996\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1996\r\n	admin	EducationalBackgrounds	1
771865	2025-03-18	14:44:11.1414632	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3815\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1999\r\nDateTo: 2003\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2003\r\n	admin	EducationalBackgrounds	1
771866	2025-03-18	14:44:11.1504637	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3815\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 1996\r\nEducationalAttainment: 27 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
771869	2025-03-18	14:44:11.1644635	<Undetected>	Update	BasicInformationId: 3815\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4056\r\nExtensionName: \r\nFirstName: ALBERTO\r\nFullName: ALBERTO CORTEZ ALEA\r\nGender: Male\r\nLastName: ALEA\r\nMaidenName: \r\nMiddleName: CORTEZ\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3815\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4056\r\nExtensionName: \r\nFirstName: ALBERTO\r\nFullName: ALBERTO ALEA\r\nGender: Male\r\nLastName: ALEA\r\nMaidenName: \r\nMiddleName: CORTEZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
771870	2025-03-18	14:44:11.1694636	<Undetected>	Update	BasicInformationId: 3815\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4057\r\nExtensionName: \r\nFirstName: FLORENTINA\r\nFullName: FLORENTINA CONCEPCION FAJARDO\r\nGender: Female\r\nLastName: FAJARDO\r\nMaidenName: \r\nMiddleName: CONCEPCION\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3815\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4057\r\nExtensionName: \r\nFirstName: FLORENTINA\r\nFullName: FLORENTINA FAJARDO\r\nGender: Female\r\nLastName: FAJARDO\r\nMaidenName: \r\nMiddleName: CONCEPCION\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
771871	2025-03-18	14:44:11.1734632	<Undetected>	Update	BasicInformationId: 3815\r\nBirthDate: September 04, 2010\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4058\r\nExtensionName: \r\nFirstName: RAIN\r\nFullName: RAIN ALEA GARCIA\r\nGender: Female\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: ALEA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3815\r\nBirthDate: September 04, 2010\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4058\r\nExtensionName: \r\nFirstName: RAIN\r\nFullName: RAIN GARCIA\r\nGender: Female\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: ALEA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771872	2025-03-18	14:44:11.1794632	<Undetected>	Update	BasicInformationId: 3815\r\nBirthDate: June 01, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4059\r\nExtensionName: \r\nFirstName: RAINIEL\r\nFullName: RAINIEL ALEA GARCIA\r\nGender: Male\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: ALEA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3815\r\nBirthDate: June 01, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4059\r\nExtensionName: \r\nFirstName: RAINIEL\r\nFullName: RAINIEL GARCIA\r\nGender: Male\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: ALEA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771873	2025-03-18	14:44:11.1834635	<Undetected>	Update	BasicInformationId: 3815\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3612\r\n	BasicInformationId: 3815\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3612\r\n	admin	Questionnaires	1
771926	2025-03-18	15:04:56.5816980	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3815\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,421.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: March 18, 2025\r\n	admin	Experiences	1
771927	2025-03-18	15:04:56.5868476	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3815\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: October 07, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
771928	2025-03-18	15:04:56.5918477	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3815\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,162.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-6\r\nStatus: Permanent\r\nToDate: October 26, 2024\r\n	admin	Experiences	1
771929	2025-03-18	15:04:56.5960785	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3815\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 30,622.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-6\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
771930	2025-03-18	15:04:56.6011199	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3815\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: December 21, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,065.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-6\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
771931	2025-03-18	15:04:56.6061365	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3815\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 28,766.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 20, 2022\r\n	admin	Experiences	1
771976	2025-03-18	15:11:53.2848727	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3815\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175756947\r\nExtensionName: \r\nFirstName: AUREA\r\nLastName: OCON\r\nMiddleName: P. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771876	2025-03-18	14:45:17.2477857	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3810\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
771877	2025-03-18	14:45:17.2527689	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3810\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: December 02, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,798.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
771878	2025-03-18	14:45:17.2567552	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3810\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 27,608.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 01, 2022\r\n	admin	Experiences	1
771879	2025-03-18	14:45:17.2617386	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3810\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 22, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 26,052.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
771880	2025-03-18	14:45:17.2667223	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3810\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 13, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 25,339.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-6\r\nStatus: Permanent\r\nToDate: September 21, 2021\r\n	admin	Experiences	1
771885	2025-03-18	14:51:43.4518266	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3810\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 25,038.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: June 12, 2021\r\n	admin	Experiences	1
771886	2025-03-18	14:51:43.4568100	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3810\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 23,447.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
771887	2025-03-18	14:51:43.4617934	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3810\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,915.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
771888	2025-03-18	14:51:43.4667766	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3810\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 13, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 21,231.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
771889	2025-03-18	14:51:43.4717600	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3810\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,963.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: June 12, 2018\r\n	admin	Experiences	1
771890	2025-03-18	14:51:43.4757466	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3810\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 20,326.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
771891	2025-03-18	14:51:43.4807301	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3810\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,709.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
771892	2025-03-18	14:51:43.4857133	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3810\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 13, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 19,111.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
771893	2025-03-18	14:51:43.4906966	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3810\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 18,922.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 13, 2012\r\n	admin	Experiences	1
771894	2025-03-18	14:51:43.4946833	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3810\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 18,735.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 13, 2012\r\n	admin	Experiences	1
771895	2025-03-18	14:51:43.4996666	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3810\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 17,318.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
771896	2025-03-18	14:51:43.5046500	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3810\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 15,900.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
771897	2025-03-18	14:51:43.5096332	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3810\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 14,483.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
771898	2025-03-18	14:51:43.5146166	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3810\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 13, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 12,328.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-2\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
771899	2025-03-18	14:51:43.5196000	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3810\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,026.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 12, 2009\r\n	admin	Experiences	1
771900	2025-03-18	14:51:43.5235866	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3810\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,933.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
771901	2025-03-18	14:51:43.5285699	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3810\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 13, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
771902	2025-03-18	14:56:17.9041161	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: LAC SESSION ON TRAINING WORKSHOP IN KNOWLEDGE CHANNEL LEARNING EFFECTIVELY THROUGH ENHANCED AND EVIDENCE BASED PEDAGOGIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
771903	2025-03-18	14:57:07.1040860	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: KNOWLEDGE CHANNEL WORKSHOP LEARNING EFFECTIVELY THROUGH ENHANCED AND EVIDENCE BASED PEDAGOGIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
771904	2025-03-18	14:58:58.0086524	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING ON RESKILLING AND UPSKILLING OF SCHOOL LABORATORY TECHNICIANS/MANAGERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
771907	2025-03-18	14:59:06.8452099	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3814\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LAURICE\r\nFullName: LAURICE SANCHEZ ABEJO\r\nGender: Male\r\nLastName: ABEJO\r\nMaidenName: \r\nMiddleName: SANCHEZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771908	2025-03-18	14:59:06.8542089	<Undetected>	Update	BasicInformationId: 3814\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4060\r\nExtensionName: \r\nFirstName: BOBBY\r\nFullName: BOBBY LARAÑIO ABEJO\r\nGender: Male\r\nLastName: ABEJO\r\nMaidenName: \r\nMiddleName: LARAÑIO\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3814\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4060\r\nExtensionName: \r\nFirstName: BOBBY\r\nFullName: BOBBY ABEJO\r\nGender: Male\r\nLastName: ABEJO\r\nMaidenName: \r\nMiddleName: LARAÑIO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771909	2025-03-18	14:59:06.8592101	<Undetected>	Update	BasicInformationId: 3814\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4061\r\nExtensionName: \r\nFirstName: ROMEO\r\nFullName: ROMEO CATIBOG SANCHEZ\r\nGender: Male\r\nLastName: SANCHEZ\r\nMaidenName: \r\nMiddleName: CATIBOG\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3814\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4061\r\nExtensionName: \r\nFirstName: ROMEO\r\nFullName: ROMEO SANCHEZ\r\nGender: Male\r\nLastName: SANCHEZ\r\nMaidenName: \r\nMiddleName: CATIBOG\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
771910	2025-03-18	14:59:06.8642092	<Undetected>	Update	BasicInformationId: 3814\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4062\r\nExtensionName: \r\nFirstName: REMEDIOS\r\nFullName: REMEDIOS CUASAY ENRIQUEZ\r\nGender: Male\r\nLastName: ENRIQUEZ\r\nMaidenName: \r\nMiddleName: CUASAY\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3814\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4062\r\nExtensionName: \r\nFirstName: REMEDIOS\r\nFullName: REMEDIOS ENRIQUEZ\r\nGender: Male\r\nLastName: ENRIQUEZ\r\nMaidenName: \r\nMiddleName: CUASAY\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
771969	2025-03-18	15:11:23.7091393	<Undetected>	Update	BasicInformationId: 3814\r\nBirthDate: February 12, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4063\r\nExtensionName: \r\nFirstName: NATHALIE\r\nFullName: NATHALIE SANCHEZ ABEJO\r\nGender: Male\r\nLastName: ABEJO\r\nMaidenName: \r\nMiddleName: SANCHEZ\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3814\r\nBirthDate: February 12, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4063\r\nExtensionName: \r\nFirstName: NATHALIE\r\nFullName: NATHALIE ABEJO\r\nGender: Male\r\nLastName: ABEJO\r\nMaidenName: \r\nMiddleName: SANCHEZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771970	2025-03-18	15:11:23.7141390	<Undetected>	Update	BasicInformationId: 3814\r\nBirthDate: March 01, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4064\r\nExtensionName: \r\nFirstName: LAURICE\r\nFullName: LAURICE SANCHEZ ABEJO\r\nGender: Male\r\nLastName: ABEJO\r\nMaidenName: \r\nMiddleName: SANCHEZ\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3814\r\nBirthDate: March 01, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4064\r\nExtensionName: \r\nFirstName: LAURICE\r\nFullName: LAURICE ABEJO\r\nGender: Male\r\nLastName: ABEJO\r\nMaidenName: \r\nMiddleName: SANCHEZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771971	2025-03-18	15:11:23.7266591	<Undetected>	Delete	BasicInformationId: 3814\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4065\r\nExtensionName: \r\nFirstName: LAURICE\r\nFullName: LAURICE SANCHEZ ABEJO\r\nGender: Male\r\nLastName: ABEJO\r\nMaidenName: \r\nMiddleName: SANCHEZ\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	admin	EmployeeRelatives	1
771979	2025-03-18	15:16:20.8972967	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3814\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1980\r\nDateTo: 1985\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: LIBJO ELEMENTARY SCHOOL \r\nYearGraduated: 1985\r\n	admin	EducationalBackgrounds	1
771980	2025-03-18	15:16:20.9148351	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3814\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1985\r\nDateTo: 1989\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES\r\nYearGraduated: 1989\r\n	admin	EducationalBackgrounds	1
771981	2025-03-18	15:16:20.9198339	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3814\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1991\r\nDateTo: 1994\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES \r\nYearGraduated: 1994\r\n	admin	EducationalBackgrounds	1
771982	2025-03-18	15:16:20.9288343	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3814\r\nCourse: \r\nCourseId: 1333\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 2001\r\nEducationalAttainment: 42 UNITS \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
771984	2025-03-18	15:18:51.3713429	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3814\r\nDateOfExamination: May 29, 1994\r\nDateOfRelease: April 09, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: May 29, 1994\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0359274\r\nPlaceOfExamination: BATANGAS NATIONAL HIGH SCHOOL \r\nRating: 77.18\r\nTitle: PROFESSIONAL BOARD EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
771912	2025-03-18	14:59:40.7406678	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3810\r\nEmployeeTrainingId: 0\r\nFromDate: October 06, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: October 06, 2023\r\nTrainingId: 16600\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771913	2025-03-18	14:59:40.7456514	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3810\r\nEmployeeTrainingId: 0\r\nFromDate: July 20, 2023\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 22, 2023\r\nTrainingId: 16601\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771914	2025-03-18	14:59:40.7526279	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3810\r\nEmployeeTrainingId: 0\r\nFromDate: August 30, 2022\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: September 03, 2022\r\nTrainingId: 16556\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771915	2025-03-18	14:59:40.7566143	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3810\r\nEmployeeTrainingId: 0\r\nFromDate: June 09, 2022\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: June 10, 2022\r\nTrainingId: 16602\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771916	2025-03-18	15:00:25.4611728	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3810\r\nSkillId: 0\r\nSkillName: PLANTING\r\n	admin	Skills	1
771917	2025-03-18	15:00:25.4721365	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3810\r\nSkillId: 0\r\nSkillName: MOTOR DRIVING\r\n	admin	Skills	1
771918	2025-03-18	15:00:25.4771195	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3810\r\nRecognitionId: 0\r\nRecognitionName: BRONZE SERVICE AWARD (BSP)\r\n	admin	Recognitions	1
771919	2025-03-18	15:00:25.4840961	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3810\r\nOrganizationId: 0\r\nOrganizationName: SIRANG LUPA KALIPI WOMEN'S GROUP\r\n	admin	Organizations	1
771920	2025-03-18	15:03:42.0990851	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3811\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09292929601\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MAR\r\nFullName: MAR ROQUE RONQUILLO\r\nGender: Male\r\nLastName: RONQUILLO\r\nMaidenName: \r\nMiddleName: ROQUE\r\nOccupation: ADMINISTRATIVE AIDE III\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771921	2025-03-18	15:03:42.1100483	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3811\r\nBirthDate: January 19, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARIELLE\r\nFullName: MARIELLE ABEL RONQUILLO\r\nGender: Male\r\nLastName: RONQUILLO\r\nMaidenName: \r\nMiddleName: ABEL\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771922	2025-03-18	15:03:42.1140347	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3811\r\nBirthDate: October 21, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALESSANDRA MAE\r\nFullName: ALESSANDRA MAE ABEL RONQUILLO\r\nGender: Male\r\nLastName: RONQUILLO\r\nMaidenName: \r\nMiddleName: ABEL\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771923	2025-03-18	15:03:42.1210118	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3811\r\nBirthDate: May 04, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALEC JOSHUA\r\nFullName: ALEC JOSHUA ABEL RONQUILLO\r\nGender: Male\r\nLastName: RONQUILLO\r\nMaidenName: \r\nMiddleName: ABEL\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771924	2025-03-18	15:03:42.1259948	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3811\r\nBirthDate: December 23, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARC JEFFREY\r\nFullName: MARC JEFFREY ABEL RONQUILLO\r\nGender: Male\r\nLastName: RONQUILLO\r\nMaidenName: \r\nMiddleName: ABEL\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771925	2025-03-18	15:03:42.1329718	<Undetected>	Update	BasicInformationId: 3811\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3608\r\n	BasicInformationId: 3811\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3608\r\n	admin	Questionnaires	1
771950	2025-03-18	15:05:59.9077363	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3811\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1984\r\nDateTo: 1990\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: JULIAN A. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nYearGraduated: 1990\r\n	admin	EducationalBackgrounds	1
771951	2025-03-18	15:05:59.9186998	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3811\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1990\r\nDateTo: 1995\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1995\r\n	admin	EducationalBackgrounds	1
771932	2025-03-18	15:04:56.6124456	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3815\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 27,210.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
771933	2025-03-18	15:04:56.6188308	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3815\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 25,653.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
771934	2025-03-18	15:04:56.6250467	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3815\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: December 21, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 24,096.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
771935	2025-03-18	15:04:56.6291856	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3815\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 23,801.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: December 20, 2019\r\n	admin	Experiences	1
771936	2025-03-18	15:04:56.6342201	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3815\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 22,942.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
771937	2025-03-18	15:04:56.6392367	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3815\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 22,113.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
771938	2025-03-18	15:04:56.6443250	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3815\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: December 21, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 21,315.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
771939	2025-03-18	15:04:56.6483603	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3815\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 21,091.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 20, 2016\r\n	admin	Experiences	1
771940	2025-03-18	15:04:56.6533751	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3815\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: December 22, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 20,341.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
771941	2025-03-18	15:04:56.6583921	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3815\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 20,140.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: December 21, 2013\r\n	admin	Experiences	1
771942	2025-03-18	15:04:56.6634695	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3815\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,568.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
771943	2025-03-18	15:04:56.6674829	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3815\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: December 22, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 16,995.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
771944	2025-03-18	15:04:56.6725083	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3815\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 16,726.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 21, 2010\r\n	admin	Experiences	1
771945	2025-03-18	15:04:56.6777060	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3815\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 15,119.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
771946	2025-03-18	15:04:56.6827443	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3815\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,748.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
771947	2025-03-18	15:04:56.6867564	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3815\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: December 21, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 11,589.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
771948	2025-03-18	15:04:56.6917728	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3815\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,933.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 20, 2007\r\n	admin	Experiences	1
771949	2025-03-18	15:04:56.6971108	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3815\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: March 01, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
771960	2025-03-18	15:08:26.9756652	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3815\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 15\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: November 28, 2024\r\nTrainingId: 16482\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771961	2025-03-18	15:08:26.9871393	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3815\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16595\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771962	2025-03-18	15:08:26.9911454	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3815\r\nEmployeeTrainingId: 0\r\nFromDate: August 02, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: August 02, 2023\r\nTrainingId: 16597\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771963	2025-03-18	15:08:26.9961531	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3815\r\nEmployeeTrainingId: 0\r\nFromDate: April 01, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: April 01, 2023\r\nTrainingId: 16557\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771964	2025-03-18	15:08:27.0011891	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3815\r\nEmployeeTrainingId: 0\r\nFromDate: February 06, 2023\r\nHours: 18\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: February 08, 2023\r\nTrainingId: 16381\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771972	2025-03-18	15:11:53.2603124	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3815\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
771952	2025-03-18	15:05:59.9236831	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3811\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1995\r\nDateTo: 2001\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2001\r\n	admin	EducationalBackgrounds	1
771953	2025-03-18	15:05:59.9276697	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3811\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2017\r\nDateTo: 2020\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2020\r\n	admin	EducationalBackgrounds	1
771954	2025-03-18	15:05:59.9366398	<Undetected>	Update	BasicInformationId: 3811\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09292929601\r\nEmployeeRelativeId: 4066\r\nExtensionName: \r\nFirstName: MAR\r\nFullName: MAR ROQUE RONQUILLO\r\nGender: Male\r\nLastName: RONQUILLO\r\nMaidenName: \r\nMiddleName: ROQUE\r\nOccupation: ADMINISTRATIVE AIDE III\r\nRelationship: Husband\r\n	BasicInformationId: 3811\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09292929601\r\nEmployeeRelativeId: 4066\r\nExtensionName: \r\nFirstName: MAR\r\nFullName: MAR RONQUILLO\r\nGender: Male\r\nLastName: RONQUILLO\r\nMaidenName: \r\nMiddleName: ROQUE\r\nOccupation: ADMINISTRATIVE AIDE III\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
771955	2025-03-18	15:05:59.9416232	<Undetected>	Update	BasicInformationId: 3811\r\nBirthDate: January 19, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4067\r\nExtensionName: \r\nFirstName: MARIELLE\r\nFullName: MARIELLE ABEL RONQUILLO\r\nGender: Male\r\nLastName: RONQUILLO\r\nMaidenName: \r\nMiddleName: ABEL\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3811\r\nBirthDate: January 19, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4067\r\nExtensionName: \r\nFirstName: MARIELLE\r\nFullName: MARIELLE RONQUILLO\r\nGender: Male\r\nLastName: RONQUILLO\r\nMaidenName: \r\nMiddleName: ABEL\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771956	2025-03-18	15:05:59.9466066	<Undetected>	Update	BasicInformationId: 3811\r\nBirthDate: October 21, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4068\r\nExtensionName: \r\nFirstName: ALESSANDRA MAE\r\nFullName: ALESSANDRA MAE ABEL RONQUILLO\r\nGender: Male\r\nLastName: RONQUILLO\r\nMaidenName: \r\nMiddleName: ABEL\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3811\r\nBirthDate: October 21, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4068\r\nExtensionName: \r\nFirstName: ALESSANDRA MAE\r\nFullName: ALESSANDRA MAE RONQUILLO\r\nGender: Male\r\nLastName: RONQUILLO\r\nMaidenName: \r\nMiddleName: ABEL\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771957	2025-03-18	15:05:59.9505929	<Undetected>	Update	BasicInformationId: 3811\r\nBirthDate: May 04, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4069\r\nExtensionName: \r\nFirstName: ALEC JOSHUA\r\nFullName: ALEC JOSHUA ABEL RONQUILLO\r\nGender: Male\r\nLastName: RONQUILLO\r\nMaidenName: \r\nMiddleName: ABEL\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3811\r\nBirthDate: May 04, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4069\r\nExtensionName: \r\nFirstName: ALEC JOSHUA\r\nFullName: ALEC JOSHUA RONQUILLO\r\nGender: Male\r\nLastName: RONQUILLO\r\nMaidenName: \r\nMiddleName: ABEL\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771958	2025-03-18	15:05:59.9565732	<Undetected>	Update	BasicInformationId: 3811\r\nBirthDate: December 23, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4070\r\nExtensionName: \r\nFirstName: MARC JEFFREY\r\nFullName: MARC JEFFREY ABEL RONQUILLO\r\nGender: Male\r\nLastName: RONQUILLO\r\nMaidenName: \r\nMiddleName: ABEL\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3811\r\nBirthDate: December 23, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4070\r\nExtensionName: \r\nFirstName: MARC JEFFREY\r\nFullName: MARC JEFFREY RONQUILLO\r\nGender: Male\r\nLastName: RONQUILLO\r\nMaidenName: \r\nMiddleName: ABEL\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
771959	2025-03-18	15:07:40.8996056	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 11 RS\r\nAddress2: \r\nBarangay: CUTA WEST\r\nBasicInformationId: 3811\r\nBirthDate: October 02, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marife.ronquillo@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIFE\r\nFullName: MARIFE A. RONQUILLO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RONQUILLO\r\nMaidenName: \r\nMiddleName: ABEL\r\nMobileNumber: 09605313210\r\nNationality: Filipino\r\nPermanentAddress1: 11 RS\r\nPermanentAddress2: \r\nPermanentBarangay: CUTA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: M.H. DEL PILAR STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: M.H. DEL PILAR STREET\r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 11 RS\r\nAddress2: \r\nBarangay: CUTA WEST\r\nBasicInformationId: 3811\r\nBirthDate: October 02, 1977\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: marife.ronquillo@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIFE\r\nFullName: MARIFE A. RONQUILLO\r\nGender: Female\r\nGovernmentIdIssuedDate: October 26, 2001\r\nGovernmentIdNumber: 0709902\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC LICENSE\r\nGSIS: 02002992757\r\nHDMF: 1490-0092-8544\r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RONQUILLO\r\nMaidenName: \r\nMiddleName: ABEL\r\nMobileNumber: 09605313210\r\nNationality: Filipino\r\nPermanentAddress1: 11 RS\r\nPermanentAddress2: \r\nPermanentBarangay: CUTA WEST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: M.H. DEL PILAR STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: 19-000831582-9\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: M.H. DEL PILAR STREET\r\nTIN: 927-337-716-0000\r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
771965	2025-03-18	15:09:07.3605814	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3811\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES, SORO-SORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09913261235\r\nExtensionName: \r\nFirstName: EPITACIA\r\nLastName: CULLERA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771966	2025-03-18	15:09:07.3695512	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3811\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN EAST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175051894\r\nExtensionName: \r\nFirstName: AUREA\r\nLastName: OCON\r\nMiddleName: P \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771967	2025-03-18	15:09:07.3745347	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3811\r\nCharacterReferenceId: 0\r\nCompanyAddress: CALICANTO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09618306429\r\nExtensionName: \r\nFirstName: ELIZA\r\nLastName: NEBRIDA\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771968	2025-03-18	15:09:56.7566976	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3811\r\nDateOfExamination: August 26, 2001\r\nDateOfRelease: October 02, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 26, 2001\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0709902\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 83\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
771986	2025-03-18	15:20:40.1035757	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3811\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,421.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
771987	2025-03-18	15:20:40.1085590	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3811\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
771988	2025-03-18	15:20:40.1135426	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3811\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
771989	2025-03-18	15:20:40.1185258	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3811\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 10, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,798.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
771990	2025-03-18	15:20:40.1235091	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3811\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 28,766.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: October 09, 2022\r\n	admin	Experiences	1
771991	2025-03-18	15:20:40.1274957	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3811\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: April 16, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 27,210.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
771992	2025-03-18	15:20:40.1324791	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3811\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 26,915.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: April 15, 2021\r\n	admin	Experiences	1
771993	2025-03-18	15:20:40.1374624	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3811\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 25,358.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
771994	2025-03-18	15:20:40.1424458	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3811\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 23,801.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
771995	2025-03-18	15:20:40.1464324	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3811\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 22,942.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
772075	2025-03-18	15:47:27.9115211	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3814\r\nCharacterReferenceId: 0\r\nCompanyAddress: AMBULONG, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09162622738\r\nExtensionName: \r\nFirstName: FRANCISCA \r\nLastName: ANONUEVO\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771977	2025-03-18	15:11:53.2927542	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3815\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175421815\r\nExtensionName: \r\nFirstName: TERESITA\r\nLastName: CULLA\r\nMiddleName: L.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
771978	2025-03-18	15:11:53.2977543	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STA. CLARA\r\nBasicInformationId: 3815\r\nBirthDate: October 02, 1979\r\nBirthPlace: STA. CLARA, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: aerzac_2@yahoo.com\r\nExtensionName: \r\nFirstName: REA\r\nFullName: REA A. GARCIA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: ALEA\r\nMobileNumber: 09450895437\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 7\r\nTIN: \r\nWeight: 62\r\nZipCode: 2400\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STA. CLARA\r\nBasicInformationId: 3815\r\nBirthDate: October 02, 1979\r\nBirthPlace: STA. CLARA, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: aerzac_2@yahoo.com\r\nExtensionName: \r\nFirstName: REA\r\nFullName: REA A. GARCIA\r\nGender: Female\r\nGovernmentIdIssuedDate: November 24, 2003\r\nGovernmentIdNumber: 0820694\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02002895579\r\nHDMF: 1490-0094-7686\r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: ALEA\r\nMobileNumber: 09450895437\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: 09-000063672-9\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 7\r\nTIN: 938-792-667-0000\r\nWeight: 62\r\nZipCode: 2400\r\n	admin	BasicInformation	1
771983	2025-03-18	15:18:34.6713218	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACCALAUREATE IN ACCOUNTANCY\r\nLevel: College\r\n	admin	Courses	1
771985	2025-03-18	15:19:40.6810966	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER OF MANAGEMENT IN PUBLIC ADMINISTRATION\r\nLevel: Master's\r\n	admin	Courses	1
772012	2025-03-18	15:21:23.4631685	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: VILLAS DE JESUS SUBDIVISION\r\nBarangay: BARANGAY 20\r\nBasicInformationId: 0\r\nBirthDate: March 17, 1968\r\nBirthPlace: MANILA\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jazmin.crelencia001@deped.gov.ph\r\nExtensionName: \r\nFirstName: JAZMIN\r\nFullName: JAZMIN M. CRELENCIA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CRELENCIA\r\nMaidenName: \r\nMiddleName: MAGLUNOG\r\nMobileNumber: 09338162523\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: VILLAS DE JESUS SUBDIVISION\r\nPermanentBarangay: BARANGAY 20\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ARRIETA ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ARRIETA ROAD\r\nTIN: \r\nWeight: 62\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772013	2025-03-18	15:21:23.4802270	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: SALUTATORIAN\r\nBasicInformationId: 3816\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1974\r\nDateTo: 1981\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: IMMACULATE CONCEPTION COLLEGE\r\nYearGraduated: 1981\r\n	admin	EducationalBackgrounds	1
772014	2025-03-18	15:21:23.4812375	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3816\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1981\r\nDateTo: 1985\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: IMMACULATE CONCEPTION COLLEGE\r\nYearGraduated: 1985\r\n	admin	EducationalBackgrounds	1
772015	2025-03-18	15:21:23.4812375	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3816\r\nCourse: \r\nCourseId: 1389\r\nCourseOrMajor: \r\nDateFrom: 1986\r\nDateTo: 1990\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: POLYTECHNIC UNIVERSITY OF THE PHILIPPINES\r\nYearGraduated: 1990\r\n	admin	EducationalBackgrounds	1
772016	2025-03-18	15:21:23.4812375	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3816\r\nCourse: \r\nCourseId: 1390\r\nCourseOrMajor: \r\nDateFrom: 2017\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: PHILIPPINE CHRISTIAN UNIVERSITY\r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
772017	2025-03-18	15:21:23.4822415	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3816\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CONRADO\r\nFullName: CONRADO MAGLUNOG CRELENCIA\r\nGender: Male\r\nLastName: CRELENCIA\r\nMaidenName: \r\nMiddleName: MAGLUNOG\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
772144	2025-03-18	16:10:54.4396255	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3822\r\nEmployeeTrainingId: 0\r\nFromDate: August 30, 2021\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: September 03, 2021\r\nTrainingId: 16422\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
771996	2025-03-18	15:20:40.1514157	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3811\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 24, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 22,113.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
771997	2025-03-18	15:20:40.1563991	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3811\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 21,868.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: November 23, 2017\r\n	admin	Experiences	1
771998	2025-03-18	15:20:40.1613824	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3811\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 21,091.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
771999	2025-03-18	15:20:40.1663657	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3811\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 24, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 20,341.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
772000	2025-03-18	15:20:40.1713492	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3811\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 20,140.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: November 23, 2014\r\n	admin	Experiences	1
772001	2025-03-18	15:20:40.1753357	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3811\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 24, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,568.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
772002	2025-03-18	15:20:40.1803190	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3811\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,333.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: November 23, 2011\r\n	admin	Experiences	1
772003	2025-03-18	15:20:40.1853024	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3811\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 16,726.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
772004	2025-03-18	15:20:40.1902858	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3811\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 15,119.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
772005	2025-03-18	15:20:40.1942723	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3811\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 24, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,748.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
772006	2025-03-18	15:20:40.2002524	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3811\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,635.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: November 23, 2008\r\n	admin	Experiences	1
772007	2025-03-18	15:20:40.2042391	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3811\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 19, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 11,486.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
772008	2025-03-18	15:20:40.2092224	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3811\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 11,207.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 18, 2008\r\n	admin	Experiences	1
772009	2025-03-18	15:20:40.2142058	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3811\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 10,188.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
772010	2025-03-18	15:20:40.2191891	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3811\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 16, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 2005\r\n	admin	Experiences	1
772011	2025-03-18	15:20:40.2231757	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3811\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 18, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Substitute\r\nToDate: June 30, 2002\r\n	admin	Experiences	1
772021	2025-03-18	15:28:13.0298068	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL ACCREDITATION FOR DEPED TECHNICAL OFFICIALS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
772022	2025-03-18	15:30:54.0365358	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EMPOWERING TEACHERS ON THE PREPARATION OF INDIVIDUAL PORTFOLIO FOR IPCRF SY 2021-2022\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
772023	2025-03-18	15:31:38.9538028	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3811\r\nEmployeeTrainingId: 0\r\nFromDate: March 22, 2024\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A CALABARZON\r\nStatus: \r\nToDate: March 23, 2024\r\nTrainingId: 16603\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772024	2025-03-18	15:31:38.9587861	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3811\r\nEmployeeTrainingId: 0\r\nFromDate: March 13, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A CALABARZON\r\nStatus: \r\nToDate: March 13, 2024\r\nTrainingId: 16603\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772025	2025-03-18	15:31:38.9637695	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3811\r\nEmployeeTrainingId: 0\r\nFromDate: January 25, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION DISTRICT 4\r\nStatus: \r\nToDate: January 25, 2024\r\nTrainingId: 16346\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772026	2025-03-18	15:31:38.9677562	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3811\r\nEmployeeTrainingId: 0\r\nFromDate: October 07, 2022\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION STA. CLARA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: October 07, 2022\r\nTrainingId: 16594\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772027	2025-03-18	15:31:38.9737360	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3811\r\nEmployeeTrainingId: 0\r\nFromDate: July 20, 2022\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION STA CLARA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: July 20, 2022\r\nTrainingId: 16604\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772031	2025-03-18	15:33:38.2119277	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3811\r\nSkillId: 0\r\nSkillName: VOLLEYBALL OFFICIATING OFFICIAL\r\n	admin	Skills	1
772032	2025-03-18	15:33:38.2169111	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3811\r\nSkillId: 0\r\nSkillName: CHESS OFFICIATING OFFICIAL\r\n	admin	Skills	1
772033	2025-03-18	15:33:38.2268780	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3811\r\nSkillId: 0\r\nSkillName: CAN PLAY XYLOPHONE \r\n	admin	Skills	1
772034	2025-03-18	15:33:38.2318611	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3811\r\nSkillId: 0\r\nSkillName: VOLLEYBALL PLAYER\r\n	admin	Skills	1
772035	2025-03-18	15:33:38.2388378	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3811\r\nSkillId: 0\r\nSkillName: CHESS PLAYER\r\n	admin	Skills	1
772036	2025-03-18	15:33:38.2428245	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3811\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
772037	2025-03-18	15:33:38.2507977	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3811\r\nOrganizationId: 0\r\nOrganizationName: DIVISION ATHLETIC ASSOCIATION MEMBER\r\n	admin	Organizations	1
772038	2025-03-18	15:33:38.2547844	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3811\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY PUBLIC SCHOOL TEACHERS ASSOCIATION\r\n	admin	Organizations	1
772018	2025-03-18	15:21:23.4822415	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3816\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ENRIQUETA\r\nFullName: ENRIQUETA INCIONG MAGLUNOG\r\nGender: Female\r\nLastName: MAGLUNOG\r\nMaidenName: \r\nMiddleName: INCIONG\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
772019	2025-03-18	15:21:23.4822415	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3816\r\nDateOfExamination: November 27, 1994\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: November 27, 1994\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS NATIONAL HIGH SCHOOL\r\nRating: 81.11\r\nTitle: CAREER SERVICE PROFESSIONAL ELIGIBILITY\r\n	admin	Eligibilities	1
772020	2025-03-18	15:21:23.4822415	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3816\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
772045	2025-03-18	15:43:20.7299841	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3816\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,308.00\r\nPositionHeld: ADMINISTRATIVE OFFICER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: March 18, 2025\r\n	admin	Experiences	1
772046	2025-03-18	15:43:20.7351104	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3816\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,796.00\r\nPositionHeld: ADMINISTRATIVE OFFICER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
772047	2025-03-18	15:43:20.7401180	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3816\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: October 12, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,284.00\r\nPositionHeld: ADMINISTRATIVE OFFICER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
772048	2025-03-18	15:43:20.7451262	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3816\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: ADMINISTRATIVE OFFICER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: October 11, 2023\r\n	admin	Experiences	1
772049	2025-03-18	15:43:20.7491602	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3816\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,439.00\r\nPositionHeld: ADMINISTRATIVE OFFICER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
772050	2025-03-18	15:43:20.7541685	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3816\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 23,877.00\r\nPositionHeld: ADMINISTRATIVE OFFICER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
772051	2025-03-18	15:43:20.7591767	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3816\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: October 12, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,316.00\r\nPositionHeld: ADMINISTRATIVE OFFICER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
772052	2025-03-18	15:43:20.7642174	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3816\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TABANGAO INTEGRATED SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 19,100.00\r\nPositionHeld: SENIOR BOOKKEEPER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-3\r\nStatus: Permanent\r\nToDate: October 11, 2020\r\n	admin	Experiences	1
772145	2025-03-18	16:15:39.7874709	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3822\r\nSkillId: 0\r\nSkillName: FACILITATING LECTURE/ECHOING\r\n	admin	Skills	1
772028	2025-03-18	15:31:44.5630990	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3814\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: June 15, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 20,362.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-7\r\nStatus: Permanent\r\nToDate: June 12, 2016\r\n	admin	Experiences	1
772029	2025-03-18	15:31:44.5701033	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3814\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: June 13, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 29,732.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: August 11, 2024\r\n	admin	Experiences	1
772030	2025-03-18	15:31:44.5751029	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3814\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: August 12, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 413,053.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: December 21, 2024\r\n	admin	Experiences	1
772039	2025-03-18	15:38:58.7031490	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INTERNATIONAL WEBINAR-TRAINING IN ENGLISH WITH THE THEME- "STRENGTHENING THE EDUCATIONAL LANDSCAPE THROUGH LANGUAGE AND LITERACY DEVELOPMENT"\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
772043	2025-03-18	15:41:18.5675892	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MIDYEAR PERFORMACE REVIEW AND CAPACITY BUILDING FOR SCHOOL PERSONNEL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
772044	2025-03-18	15:43:22.6800815	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SLAC SESSION ON INTEGRATING APPRECIATIVE INQUIRY APPROACH\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
772063	2025-03-18	15:44:14.5595863	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3814\r\nEmployeeTrainingId: 0\r\nFromDate: November 27, 2024\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SCHOOLS DIVISION OFFICE\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16362\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772064	2025-03-18	15:44:14.5700879	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3814\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 20\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16588\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772065	2025-03-18	15:44:14.5740903	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3814\r\nEmployeeTrainingId: 0\r\nFromDate: May 24, 2024\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SAMAHAN NG MGA GURO NG INTELEKTUWALISASYON NG PILIPINO\r\nStatus: \r\nToDate: May 26, 2024\r\nTrainingId: 16605\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772066	2025-03-18	15:44:14.5790908	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3814\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: LIBJO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16606\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772067	2025-03-18	15:44:14.5840927	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3814\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: LIBJO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: November 29, 2023\r\nTrainingId: 16607\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772068	2025-03-18	15:45:00.9485707	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3814\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
772069	2025-03-18	15:45:00.9585702	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3814\r\nSkillId: 0\r\nSkillName: GARDENING\r\n	admin	Skills	1
772070	2025-03-18	15:45:00.9645722	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3814\r\nRecognitionId: 0\r\nRecognitionName: BOY SCOUT OF THE PHILIPPINES (BRONZE AWARD)\r\n	admin	Recognitions	1
772073	2025-03-18	15:47:27.8995092	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3814\r\nCharacterReferenceId: 0\r\nCompanyAddress: TABANGAO DAO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 7231358\r\nExtensionName: \r\nFirstName: RICA\r\nLastName: SUAREZ\r\nMiddleName: A \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772074	2025-03-18	15:47:27.9065204	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3814\r\nCharacterReferenceId: 0\r\nCompanyAddress: LAMAO LIBJO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09219648224\r\nExtensionName: \r\nFirstName: MARICEL \r\nLastName: MALIBIRAN\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772146	2025-03-18	16:15:39.7924728	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3822\r\nSkillId: 0\r\nSkillName: DOCUMENT PREPARATION USING MS OFFICES\r\n	admin	Skills	1
772040	2025-03-18	15:40:18.0322358	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: EASTERN\r\nBarangay: LIBJO\r\nBasicInformationId: 0\r\nBirthDate: August 07, 1971\r\nBirthPlace: WAWA, BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: corazon.balitaan001@deped.gov.ph\r\nExtensionName: \r\nFirstName: CORAZON\r\nFullName: CORAZON C. BALITAAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BALITAAN\r\nMaidenName: \r\nMiddleName: CAAWAY\r\nMobileNumber: 09940772705\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: EASTERN\r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 57\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772041	2025-03-18	15:40:18.0423326	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3817\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
772042	2025-03-18	15:40:31.9931179	<Undetected>	Update	BasicInformationId: 3817\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3614\r\n	BasicInformationId: 3817\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3614\r\n	admin	Questionnaires	1
772071	2025-03-18	15:45:17.6452183	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: NO. 20\r\nAddress2: STARVILLE SUBDIVISION\r\nBarangay: GULOD ITAAS\r\nBasicInformationId: 0\r\nBirthDate: October 02, 1976\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: nelisa.custodio@deped.gov.ph\r\nExtensionName: \r\nFirstName: NELISA\r\nFullName: NELISA P. CUSTODIO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CUSTODIO\r\nMaidenName: \r\nMiddleName: PAPASIN\r\nMobileNumber: 09157226912\r\nNationality: Filipino\r\nPermanentAddress1: NO. 20\r\nPermanentAddress2: STARVILLE SUBDIVISION\r\nPermanentBarangay: GULOD ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SUPERNOVA\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SUPERNOVA\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772072	2025-03-18	15:45:17.6556385	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3818\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
772076	2025-03-18	15:47:53.4283037	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 363-A\r\nAddress2: \r\nBarangay: TULO CENTRO\r\nBasicInformationId: 0\r\nBirthDate: November 22, 1974\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: aida.dinglasan@deped.gov.ph\r\nExtensionName: \r\nFirstName: AIDA\r\nFullName: AIDA A. DINGLASAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: ATIENZA\r\nMobileNumber: 09295160800\r\nNationality: Filipino\r\nPermanentAddress1: 363-A\r\nPermanentAddress2: \r\nPermanentBarangay: TULO CENTRO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: CALLEJON ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: CALLEJON ROAD\r\nTIN: \r\nWeight: 52\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772077	2025-03-18	15:47:53.4383665	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3819\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
772078	2025-03-18	15:48:01.0364473	<Undetected>	Update	BasicInformationId: 3819\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3616\r\n	BasicInformationId: 3819\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3616\r\n	admin	Questionnaires	1
772084	2025-03-18	15:50:17.0204765	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3816\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16552\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772053	2025-03-18	15:43:20.7682346	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3816\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TABANGAO INTEGRATED SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 18,941.00\r\nPositionHeld: SENIOR BOOKKEEPER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-2\r\nStatus: Permanent\r\nToDate: June 30, 2020\r\n	admin	Experiences	1
772054	2025-03-18	15:43:20.7732419	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3816\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TABANGAO INTEGRATED SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 18,125.00\r\nPositionHeld: SENIOR BOOKKEEPER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-2\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
772055	2025-03-18	15:43:20.7772545	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3816\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TABANGAO INTEGRATED SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 17,627.00\r\nPositionHeld: SENIOR BOOKKEEPER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-2\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
772056	2025-03-18	15:43:20.7823132	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3816\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TABANGAO INTEGRATED SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 17,142.00\r\nPositionHeld: SENIOR BOOKKEEPER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-2\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
772057	2025-03-18	15:43:20.7873208	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3816\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TABANGAO INTEGRATED SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 16,986.00\r\nPositionHeld: SENIOR BOOKKEEPER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-1\r\nStatus: Permanent\r\nToDate: June 30, 2017\r\n	admin	Experiences	1
772058	2025-03-18	15:43:20.7923290	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3816\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TABANGAO INTEGRATED SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 16,512.00\r\nPositionHeld: SENIOR BOOKKEEPER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
772059	2025-03-18	15:43:20.7963435	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3816\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TABANGAO INTEGRATED SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 16,051.00\r\nPositionHeld: SENIOR BOOKKEEPER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 9-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
772060	2025-03-18	15:43:20.8013540	<Undetected>	Update	BasicInformationId: 3816\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4071\r\nExtensionName: \r\nFirstName: CONRADO\r\nFullName: CONRADO MAGLUNOG CRELENCIA\r\nGender: Male\r\nLastName: CRELENCIA\r\nMaidenName: \r\nMiddleName: MAGLUNOG\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3816\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4071\r\nExtensionName: \r\nFirstName: CONRADO\r\nFullName: CONRADO CRELENCIA\r\nGender: Male\r\nLastName: CRELENCIA\r\nMaidenName: \r\nMiddleName: MAGLUNOG\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
772061	2025-03-18	15:43:20.8063620	<Undetected>	Update	BasicInformationId: 3816\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4072\r\nExtensionName: \r\nFirstName: ENRIQUETA\r\nFullName: ENRIQUETA INCIONG MAGLUNOG\r\nGender: Female\r\nLastName: MAGLUNOG\r\nMaidenName: \r\nMiddleName: INCIONG\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3816\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4072\r\nExtensionName: \r\nFirstName: ENRIQUETA\r\nFullName: ENRIQUETA MAGLUNOG\r\nGender: Female\r\nLastName: MAGLUNOG\r\nMaidenName: \r\nMiddleName: INCIONG\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
772062	2025-03-18	15:43:20.8114243	<Undetected>	Update	BasicInformationId: 3816\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3613\r\n	BasicInformationId: 3816\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3613\r\n	admin	Questionnaires	1
772079	2025-03-18	15:48:22.9837112	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: OPERATORS' DAY: ENHANCE YOUR TECHNICAL PROFICIENCY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
772083	2025-03-18	15:50:17.0114767	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3816\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16353\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772080	2025-03-18	15:49:43.3529681	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 1289\r\nAddress2: \r\nBarangay: LIBJO\r\nBasicInformationId: 3814\r\nBirthDate: April 09, 1972\r\nBirthPlace: LIBJO BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: LUISA.ABEJO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: LUISA\r\nFullName: LUISA S. ABEJO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.21\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7744805\r\nLastName: ABEJO\r\nMaidenName: \r\nMiddleName: SANCHEZ\r\nMobileNumber: 09497449222\r\nNationality: Filipino\r\nPermanentAddress1: 1289\r\nPermanentAddress2: \r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LAMAO\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LAMAO\r\nTIN: \r\nWeight: 75\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 1289\r\nAddress2: \r\nBarangay: LIBJO\r\nBasicInformationId: 3814\r\nBirthDate: April 09, 1972\r\nBirthPlace: LIBJO BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: LUISA.ABEJO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: LUISA\r\nFullName: LUISA S. ABEJO\r\nGender: Female\r\nGovernmentIdIssuedDate: June 27, 2024\r\nGovernmentIdNumber: 0359274\r\nGovernmentIdPlaceIssued: ALABANG CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02002942930\r\nHDMF: 1490-0098-4721\r\nHeight: 1.21\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7744805\r\nLastName: ABEJO\r\nMaidenName: \r\nMiddleName: SANCHEZ\r\nMobileNumber: 09497449222\r\nNationality: Filipino\r\nPermanentAddress1: 1289\r\nPermanentAddress2: \r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LAMAO\r\nPermanentZipCode: 4200\r\nPhilhealth: 19-000362705-9\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LAMAO\r\nTIN: 187-897-475-0000\r\nWeight: 75\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772090	2025-03-18	15:54:19.1947207	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: CONDE ITAAS\r\nBasicInformationId: 0\r\nBirthDate: September 18, 1984\r\nBirthPlace: CONDE ITAAS, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: TOMMY.ALMAREZ@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: TOMMY\r\nFullName: TOMMY A. ALMAREZ\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALMAREZ\r\nMaidenName: \r\nMiddleName: ASI\r\nMobileNumber: 09276968746\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: CONDE ITAAS\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 74\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772091	2025-03-18	15:54:19.2067276	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3822\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOSE\r\nFullName: JOSE ALMAREZ RONQUILLO\r\nGender: Male\r\nLastName: RONQUILLO\r\nMaidenName: \r\nMiddleName: ALMAREZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
772092	2025-03-18	15:54:19.2067276	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3822\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARIA\r\nFullName: MARIA MENDOZA ASI\r\nGender: Male\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
772093	2025-03-18	15:54:19.2077280	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3822\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
772104	2025-03-18	15:58:43.5133389	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: 7th HONORS\r\nBasicInformationId: 3822\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1991\r\nDateTo: 1997\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: CONDE ITAAS ELEMENTARY SCHOOL\r\nYearGraduated: 1997\r\n	admin	EducationalBackgrounds	1
772105	2025-03-18	15:58:43.5193374	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: TOP 10\r\nBasicInformationId: 3822\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1997\r\nDateTo: 2001\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: CONDE LABAC ELEMENTARY SCHOOL\r\nYearGraduated: 2001\r\n	admin	EducationalBackgrounds	1
772106	2025-03-18	15:58:43.5233362	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: BAYANIHAN AWARDEE\r\nBasicInformationId: 3822\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2005\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: SAINT BRIDGET COLLEGE\r\nYearGraduated: 2001\r\n	admin	EducationalBackgrounds	1
772107	2025-03-18	15:58:43.5343832	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3822\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2012\r\nDateTo: 2014\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2014\r\n	admin	EducationalBackgrounds	1
772081	2025-03-18	15:49:56.6804959	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: CUTA CENTRAL\r\nBasicInformationId: 0\r\nBirthDate: March 11, 1984\r\nBirthPlace: BATANGAS CITY\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: maryjane.torres@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARY JANE\r\nFullName: MARY JANE C. TORRES\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: TORRES\r\nMaidenName: \r\nMiddleName: CADANO\r\nMobileNumber: 09157364449\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: CUTA CENTRAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 56\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772082	2025-03-18	15:49:56.6898461	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3820\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
772088	2025-03-18	15:51:44.7284702	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: TULO\r\nBasicInformationId: 0\r\nBirthDate: March 31, 1980\r\nBirthPlace: CUTA, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rea.ramirez@deped.gov.ph\r\nExtensionName: \r\nFirstName: REA\r\nFullName: REA G. RAMIREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: GABOG\r\nMobileNumber: 09684934474\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: TULO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 48\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772089	2025-03-18	15:51:44.7382545	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3821\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
772094	2025-03-18	15:55:50.8689321	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3817\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09568903244\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FLORENCIO\r\nFullName: FLORENCIO CARAIG BALITAAN\r\nGender: Male\r\nLastName: BALITAAN\r\nMaidenName: \r\nMiddleName: CARAIG\r\nOccupation: TIG WELDER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
772095	2025-03-18	15:55:50.8739153	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3817\r\nBirthDate: August 10, 1987\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOHN MARC ACE BRYAN\r\nFullName: JOHN MARC ACE BRYAN CAAWAY BALITAAN\r\nGender: Male\r\nLastName: BALITAAN\r\nMaidenName: \r\nMiddleName: CAAWAY\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772096	2025-03-18	15:55:50.8788997	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3817\r\nBirthDate: November 23, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOY MAUREEN\r\nFullName: JOY MAUREEN CAAWAY BALITAAN\r\nGender: Male\r\nLastName: BALITAAN\r\nMaidenName: \r\nMiddleName: CAAWAY\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772112	2025-03-18	15:59:50.6942580	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3817\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1978\r\nDateTo: 1984\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: WAWA ELEMENTARY SCHOOL\r\nYearGraduated: 1984\r\n	admin	EducationalBackgrounds	1
772113	2025-03-18	15:59:50.6992412	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3817\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1984\r\nDateTo: 1988\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1988\r\n	admin	EducationalBackgrounds	1
772147	2025-03-18	16:15:39.7964729	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3822\r\nSkillId: 0\r\nSkillName: SIMPLE SLIDE LAYOUTING\r\n	admin	Skills	1
772085	2025-03-18	15:50:17.0244762	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3816\r\nEmployeeTrainingId: 0\r\nFromDate: October 27, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: October 27, 2023\r\nTrainingId: 16448\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772086	2025-03-18	15:50:17.0306232	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3816\r\nEmployeeTrainingId: 0\r\nFromDate: June 14, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: GAKKEN PHILIPPINES, INC.\r\nStatus: \r\nToDate: June 14, 2023\r\nTrainingId: 16608\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772087	2025-03-18	15:50:17.0346226	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3816\r\nEmployeeTrainingId: 0\r\nFromDate: May 15, 2023\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: May 17, 2023\r\nTrainingId: 15046\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772097	2025-03-18	15:56:51.5387295	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3816\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
772098	2025-03-18	15:56:51.5457507	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3816\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
772099	2025-03-18	15:56:51.5497906	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3816\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
772100	2025-03-18	15:56:51.5578815	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3816\r\nCharacterReferenceId: 0\r\nCompanyAddress: MAKATI CITY\r\nCompanyName: \r\nContactNumber: 027518264\r\nExtensionName: \r\nFirstName: JERICO\r\nLastName: BORJA\r\nMiddleName: T.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772101	2025-03-18	15:56:51.5629059	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3816\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09162770177\r\nExtensionName: \r\nFirstName: MARCO FERDINAND\r\nLastName: MEDINA\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772102	2025-03-18	15:56:51.5716146	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3816\r\nCharacterReferenceId: 0\r\nCompanyAddress: BALAYAN, BATANGAS \r\nCompanyName: \r\nContactNumber: 09228694424\r\nExtensionName: \r\nFirstName: RAQUEL \r\nLastName: ESGUERRA\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772103	2025-03-18	15:56:51.5758165	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: VILLAS DE JESUS SUBDIVISION\r\nBarangay: BARANGAY 20\r\nBasicInformationId: 3816\r\nBirthDate: March 17, 1968\r\nBirthPlace: MANILA\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jazmin.crelencia001@deped.gov.ph\r\nExtensionName: \r\nFirstName: JAZMIN\r\nFullName: JAZMIN M. CRELENCIA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CRELENCIA\r\nMaidenName: \r\nMiddleName: MAGLUNOG\r\nMobileNumber: 09338162523\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: VILLAS DE JESUS SUBDIVISION\r\nPermanentBarangay: BARANGAY 20\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ARRIETA ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: ARRIETA ROAD\r\nTIN: \r\nWeight: 62\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: VILLAS DE JESUS SUBDIVISION\r\nBarangay: BARANGAY 20\r\nBasicInformationId: 3816\r\nBirthDate: March 17, 1968\r\nBirthPlace: MANILA\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jazmin.crelencia001@deped.gov.ph\r\nExtensionName: \r\nFirstName: JAZMIN\r\nFullName: JAZMIN M. CRELENCIA\r\nGender: Female\r\nGovernmentIdIssuedDate: December 01, 2022\r\nGovernmentIdNumber: 2867195706205216\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: NATIONAL ID\r\nGSIS: 02004561006\r\nHDMF: 1210-2026-3105\r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CRELENCIA\r\nMaidenName: \r\nMiddleName: MAGLUNOG\r\nMobileNumber: 09338162523\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: VILLAS DE JESUS SUBDIVISION\r\nPermanentBarangay: BARANGAY 20\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: ARRIETA ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: 19-089733125-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 33-0935347-1\r\nStreetName: ARRIETA ROAD\r\nTIN: 101-871-429-0000\r\nWeight: 62\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772126	2025-03-18	16:04:42.9096913	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STA. CLARA\r\nBasicInformationId: 0\r\nBirthDate: January 12, 1966\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: taciana.macaraig001@deped.gov.ph\r\nExtensionName: QUINERY\r\nFirstName: TACIANA\r\nFullName: TACIANA MACARAIG QUINERY\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.64\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MACARAIG\r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: 0173677576\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STA. CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 6\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 6\r\nTIN: \r\nWeight: 69\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772127	2025-03-18	16:04:42.9212116	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3823\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SONNY\r\nFullName: SONNY GARING MACARAIG\r\nGender: Male\r\nLastName: MACARAIG\r\nMaidenName: \r\nMiddleName: GARING\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
772148	2025-03-18	16:15:39.8105064	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3822\r\nSkillId: 0\r\nSkillName: HOSTING/DANCING/SINGING\r\n	admin	Skills	1
772108	2025-03-18	15:58:43.5403845	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: CONDE ITAAS\r\nBasicInformationId: 3822\r\nBirthDate: September 18, 1984\r\nBirthPlace: CONDE ITAAS, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: TOMMY.ALMAREZ@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: TOMMY\r\nFullName: TOMMY A. ALMAREZ\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALMAREZ\r\nMaidenName: \r\nMiddleName: ASI\r\nMobileNumber: 09276968746\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: CONDE ITAAS\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mr.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 74\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: CONDE ITAAS\r\nBasicInformationId: 3822\r\nBirthDate: September 18, 1984\r\nBirthPlace: CONDE ITAAS, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: TOMMY.ALMAREZ@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: TOMMY\r\nFullName: TOMMY A. ALMAREZ\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALMAREZ\r\nMaidenName: \r\nMiddleName: ASI\r\nMobileNumber: 09276968746\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: CONDE ITAAS\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 74\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772109	2025-03-18	15:58:43.5563856	<Undetected>	Update	BasicInformationId: 3822\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4073\r\nExtensionName: \r\nFirstName: JOSE\r\nFullName: JOSE ALMAREZ RONQUILLO\r\nGender: Male\r\nLastName: RONQUILLO\r\nMaidenName: \r\nMiddleName: ALMAREZ\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3822\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4073\r\nExtensionName: \r\nFirstName: JOSE\r\nFullName: JOSE RONQUILLO\r\nGender: Male\r\nLastName: RONQUILLO\r\nMaidenName: \r\nMiddleName: ALMAREZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
772110	2025-03-18	15:58:43.5698941	<Undetected>	Update	BasicInformationId: 3822\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4074\r\nExtensionName: \r\nFirstName: MARIA\r\nFullName: MARIA MENDOZA ASI\r\nGender: Male\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3822\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4074\r\nExtensionName: \r\nFirstName: MARIA\r\nFullName: MARIA ASI\r\nGender: Male\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
772111	2025-03-18	15:58:43.5838973	<Undetected>	Update	BasicInformationId: 3822\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3619\r\n	BasicInformationId: 3822\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3619\r\n	admin	Questionnaires	1
772119	2025-03-18	16:00:06.1118434	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3822\r\nDateOfExamination: April 30, 2018\r\nDateOfRelease: January 09, 2024\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: April 30, 2018\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1024364\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 77\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
772124	2025-03-18	16:03:20.3151159	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3822\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 12, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 30,308.00\r\nPositionHeld: ADMINISTRATIVE OFFICER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: January 01, 2025\r\n	admin	Experiences	1
772133	2025-03-18	16:06:32.7507795	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 LUZON CHAPTER RESPONSIBLE PUBLIC SECTOR UNIONISM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
772140	2025-03-18	16:10:54.4004535	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3822\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: LIBJO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16471\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772141	2025-03-18	16:10:54.4114537	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3822\r\nEmployeeTrainingId: 0\r\nFromDate: October 25, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION NATIONAL EMPLOYEES UNION\r\nStatus: \r\nToDate: October 27, 2023\r\nTrainingId: 16609\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772142	2025-03-18	16:10:54.4264567	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3822\r\nEmployeeTrainingId: 0\r\nFromDate: May 15, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-SCHOOLS DIVISION OFFICE OF BATANGAS CITY\r\nStatus: \r\nToDate: May 17, 2023\r\nTrainingId: 15046\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772143	2025-03-18	16:10:54.4336268	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3822\r\nEmployeeTrainingId: 0\r\nFromDate: May 10, 2023\r\nHours: 16\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMETNT OF EDUCATION-SCHOOLS DIVISION OFFICE OF BATANGAS\r\nStatus: \r\nToDate: May 11, 2023\r\nTrainingId: 15860\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772149	2025-03-18	16:15:39.8178147	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3822\r\nRecognitionId: 0\r\nRecognitionName: 2023 DISTRICT VII OUTSTANDING NON-TEACHING PERSONNEL\r\n	admin	Recognitions	1
772114	2025-03-18	15:59:50.7092079	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3817\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1989\r\nDateTo: 1996\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 1996\r\n	admin	EducationalBackgrounds	1
772115	2025-03-18	15:59:50.7131946	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3817\r\nCourse: \r\nCourseId: 1348\r\nCourseOrMajor: \r\nDateFrom: 2011\r\nDateTo: 2013\r\nEducationalAttainment: 45 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: POLYTECHNIQUE UNIVERSITY OF THE PHILIPPINES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
772116	2025-03-18	15:59:50.7201712	<Undetected>	Update	BasicInformationId: 3817\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09568903244\r\nEmployeeRelativeId: 4075\r\nExtensionName: \r\nFirstName: FLORENCIO\r\nFullName: FLORENCIO CARAIG BALITAAN\r\nGender: Male\r\nLastName: BALITAAN\r\nMaidenName: \r\nMiddleName: CARAIG\r\nOccupation: TIG WELDER\r\nRelationship: Husband\r\n	BasicInformationId: 3817\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09568903244\r\nEmployeeRelativeId: 4075\r\nExtensionName: \r\nFirstName: FLORENCIO\r\nFullName: FLORENCIO BALITAAN\r\nGender: Male\r\nLastName: BALITAAN\r\nMaidenName: \r\nMiddleName: CARAIG\r\nOccupation: TIG WELDER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
772117	2025-03-18	15:59:50.7251545	<Undetected>	Update	BasicInformationId: 3817\r\nBirthDate: August 10, 1987\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4076\r\nExtensionName: \r\nFirstName: JOHN MARC ACE BRYAN\r\nFullName: JOHN MARC ACE BRYAN CAAWAY BALITAAN\r\nGender: Male\r\nLastName: BALITAAN\r\nMaidenName: \r\nMiddleName: CAAWAY\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3817\r\nBirthDate: August 10, 1987\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4076\r\nExtensionName: \r\nFirstName: JOHN MARC ACE BRYAN\r\nFullName: JOHN MARC ACE BRYAN BALITAAN\r\nGender: Male\r\nLastName: BALITAAN\r\nMaidenName: \r\nMiddleName: CAAWAY\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772118	2025-03-18	15:59:50.7361179	<Undetected>	Update	BasicInformationId: 3817\r\nBirthDate: November 23, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4077\r\nExtensionName: \r\nFirstName: JOY MAUREEN\r\nFullName: JOY MAUREEN CAAWAY BALITAAN\r\nGender: Male\r\nLastName: BALITAAN\r\nMaidenName: \r\nMiddleName: CAAWAY\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3817\r\nBirthDate: November 23, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4077\r\nExtensionName: \r\nFirstName: JOY MAUREEN\r\nFullName: JOY MAUREEN BALITAAN\r\nGender: Male\r\nLastName: BALITAAN\r\nMaidenName: \r\nMiddleName: CAAWAY\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772120	2025-03-18	16:01:20.9161878	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: EASTERN\r\nBarangay: LIBJO\r\nBasicInformationId: 3817\r\nBirthDate: August 07, 1971\r\nBirthPlace: WAWA, BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: corazon.balitaan001@deped.gov.ph\r\nExtensionName: \r\nFirstName: CORAZON\r\nFullName: CORAZON C. BALITAAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BALITAAN\r\nMaidenName: \r\nMiddleName: CAAWAY\r\nMobileNumber: 09940772705\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: EASTERN\r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 57\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: EASTERN\r\nBarangay: LIBJO\r\nBasicInformationId: 3817\r\nBirthDate: August 07, 1971\r\nBirthPlace: WAWA, BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: corazon.balitaan001@deped.gov.ph\r\nExtensionName: \r\nFirstName: CORAZON\r\nFullName: CORAZON C. BALITAAN\r\nGender: Female\r\nGovernmentIdIssuedDate: August 08, 1999\r\nGovernmentIdNumber: 0592155\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02002896269\r\nHDMF: 1490-0094-2957\r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BALITAAN\r\nMaidenName: \r\nMiddleName: CAAWAY\r\nMobileNumber: 09940772705\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: EASTERN\r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000057610-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 934-312-614-0000\r\nWeight: 57\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772121	2025-03-18	16:02:52.6078440	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3817\r\nCharacterReferenceId: 0\r\nCompanyAddress: SORO-SORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09913261235\r\nExtensionName: \r\nFirstName: EPITACIA\r\nLastName: CULLERA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772122	2025-03-18	16:02:52.6118305	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3817\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN EAST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175071078\r\nExtensionName: \r\nFirstName: AUREA\r\nLastName: OCON\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772123	2025-03-18	16:02:52.6198037	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3817\r\nCharacterReferenceId: 0\r\nCompanyAddress: BANABA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175021815\r\nExtensionName: \r\nFirstName: TERESITA\r\nLastName: CULLA\r\nMiddleName: L\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772125	2025-03-18	16:04:00.5027235	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3817\r\nDateOfExamination: August 08, 1999\r\nDateOfRelease: July 08, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 08, 9999\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0592155\r\nPlaceOfExamination: NATIONAL TEACHER COLLEGES\r\nRating: 76.60\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
772128	2025-03-18	16:04:42.9212116	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3823\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RODOLFO\r\nFullName: RODOLFO ATIENZA QUINERY\r\nGender: Male\r\nLastName: QUINERY\r\nMaidenName: \r\nMiddleName: ATIENZA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
772129	2025-03-18	16:04:42.9212116	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3823\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FLORENCIA\r\nFullName: FLORENCIA RIVERA MENDOZA\r\nGender: Female\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: RIVERA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
772130	2025-03-18	16:04:42.9222307	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3823\r\nBirthDate: April 25, 1993\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SYBIL\r\nFullName: SYBIL QUINERY MACARAIG\r\nGender: Male\r\nLastName: MACARAIG\r\nMaidenName: \r\nMiddleName: QUINERY\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772131	2025-03-18	16:04:42.9222307	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3823\r\nBirthDate: November 04, 1996\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SANDRA MAE\r\nFullName: SANDRA MAE MACARAIG SERRANO\r\nGender: Female\r\nLastName: SERRANO\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772132	2025-03-18	16:04:42.9222307	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3823\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
772189	2025-03-18	16:28:13.7700844	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3823\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1977\r\nDateTo: 1978\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: STA. CLARA ELEMENTARY SCHOOL\r\nYearGraduated: 1978\r\n	admin	EducationalBackgrounds	1
772190	2025-03-18	16:28:13.7751021	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: FIRST HONORABLE MENTION\r\nBasicInformationId: 3823\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1984\r\nDateTo: 1985\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1985\r\n	admin	EducationalBackgrounds	1
772191	2025-03-18	16:28:13.7801422	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3823\r\nCourse: \r\nCourseId: 1270\r\nCourseOrMajor: \r\nDateFrom: 1991\r\nDateTo: 1992\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES\r\nYearGraduated: 1992\r\n	admin	EducationalBackgrounds	1
772192	2025-03-18	16:28:13.7851589	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3823\r\nDateOfExamination: May 29, 1994\r\nDateOfRelease: January 12, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: May 29, 1994\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0975381\r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 75.60\r\nTitle: PROFESSIONAL REGULATION COMMISSION\r\n	admin	Eligibilities	1
772193	2025-03-18	16:28:13.7891813	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3823\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 32,245.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: March 18, 2025\r\n	admin	Experiences	1
772194	2025-03-18	16:28:13.7943252	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3823\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 30,705.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
772195	2025-03-18	16:28:13.7993727	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3823\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: September 06, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 29,165.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
772135	2025-03-18	16:08:44.4288864	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3817\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16338\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772136	2025-03-18	16:08:44.4368599	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3817\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16400\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772137	2025-03-18	16:08:44.4418434	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3817\r\nEmployeeTrainingId: 0\r\nFromDate: October 31, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION/STA. CLARA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: October 31, 2024\r\nTrainingId: 16550\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772138	2025-03-18	16:08:44.4468269	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3817\r\nEmployeeTrainingId: 0\r\nFromDate: October 07, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION/STA. CLARA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: October 09, 2024\r\nTrainingId: 16547\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772139	2025-03-18	16:08:44.4518100	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3817\r\nEmployeeTrainingId: 0\r\nFromDate: August 29, 2024\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 30, 2024\r\nTrainingId: 16610\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772162	2025-03-18	16:20:18.2525557	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3817\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 33,403.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
772163	2025-03-18	16:20:18.2575385	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3817\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 31,863.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
772164	2025-03-18	16:20:18.2615255	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3817\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 30,323.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
772165	2025-03-18	16:20:18.2675040	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3817\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 28,766.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
772166	2025-03-18	16:20:18.2714920	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3817\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 27,210.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
772167	2025-03-18	16:20:18.2764757	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3817\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 25,653.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
772168	2025-03-18	16:20:18.2814587	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3817\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 25,358.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: June 30, 2020\r\n	admin	Experiences	1
772169	2025-03-18	16:20:18.2864422	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3817\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 23,801.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
772159	2025-03-18	16:19:11.9316839	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3822\r\nCharacterReferenceId: 0\r\nCompanyAddress: TABANGAO DAO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09279802637\r\nExtensionName: \r\nFirstName: RICA\r\nLastName: SUAREZ\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772160	2025-03-18	16:19:11.9386826	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3822\r\nCharacterReferenceId: 0\r\nCompanyAddress: TANGISAN, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09274083148\r\nExtensionName: \r\nFirstName: GEMMA\r\nLastName: CLAVERIA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772161	2025-03-18	16:19:11.9476814	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3822\r\nCharacterReferenceId: 0\r\nCompanyAddress: CONDE ITAAS, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09266943729\r\nExtensionName: \r\nFirstName: JONALYN\r\nLastName: SUAREZ\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772188	2025-03-18	16:22:05.4281075	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: CONDE ITAAS\r\nBasicInformationId: 3822\r\nBirthDate: September 18, 1984\r\nBirthPlace: CONDE ITAAS, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: TOMMY.ALMAREZ@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: TOMMY\r\nFullName: TOMMY A. ALMAREZ\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALMAREZ\r\nMaidenName: \r\nMiddleName: ASI\r\nMobileNumber: 09276968746\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: CONDE ITAAS\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 74\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: CONDE ITAAS\r\nBasicInformationId: 3822\r\nBirthDate: September 18, 1984\r\nBirthPlace: CONDE ITAAS, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: TOMMY.ALMAREZ@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: TOMMY\r\nFullName: TOMMY A. ALMAREZ\r\nGender: Male\r\nGovernmentIdIssuedDate: May 28, 2009\r\nGovernmentIdNumber: 1024364\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02005820456\r\nHDMF: 1490-0009-7718\r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALMAREZ\r\nMaidenName: \r\nMiddleName: ASI\r\nMobileNumber: 09276968746\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: CONDE ITAAS\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050120001-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1613648-8\r\nStreetName: \r\nTIN: 938-789-069-0000\r\nWeight: 74\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772223	2025-03-18	16:30:12.6159264	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 106\r\nAddress2: \r\nBarangay: TABANGAO AMBULONG\r\nBasicInformationId: 0\r\nBirthDate: March 09, 1969\r\nBirthPlace: TABANGAO AMBULONG, BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: \r\nExtensionName: \r\nFirstName: FRANCISCA\r\nFullName: FRANCISCA DC. ANONUEVO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nMobileNumber: 09162622738\r\nNationality: Filipino\r\nPermanentAddress1: 106\r\nPermanentAddress2: \r\nPermanentBarangay: TABANGAO AMBULONG\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO PROPER\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: SITIO PROPER\r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772224	2025-03-18	16:30:12.6368609	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3824\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SEBASTIAN\r\nFullName: SEBASTIAN CASTILLO ANONUEVO\r\nGender: Male\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: CASTILLO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
772225	2025-03-18	16:30:12.6368609	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3824\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FABIAN\r\nFullName: FABIAN MACARAIG DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
772226	2025-03-18	16:30:12.6368609	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3824\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LUCINA\r\nFullName: LUCINA MACAPUNO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: MACAPUNO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
772227	2025-03-18	16:30:12.6368609	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3824\r\nBirthDate: August 08, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOHN CYRILE\r\nFullName: JOHN CYRILE DE CASTRO ANONUEVO\r\nGender: Male\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772559	2025-03-19	10:15:04.4686014	<Undetected>	Update	BasicInformationId: 3826\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3623\r\n	BasicInformationId: 3826\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3623\r\n	admin	Questionnaires	1
772170	2025-03-18	16:20:18.2904287	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3817\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 22,942.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
772171	2025-03-18	16:20:18.2954120	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3817\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 22,113.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
772172	2025-03-18	16:20:18.3003958	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3817\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 21,868.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: June 30, 2017\r\n	admin	Experiences	1
772173	2025-03-18	16:20:18.3053788	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3817\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 21,091.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
772174	2025-03-18	16:20:18.3093652	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3817\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 20,341.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
772175	2025-03-18	16:20:18.3143485	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3817\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 10, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 20,140.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: June 30, 2014\r\n	admin	Experiences	1
772176	2025-03-18	16:20:18.3193320	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3817\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 10, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 20,140.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: October 09, 2013\r\n	admin	Experiences	1
772177	2025-03-18	16:20:18.3243159	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3817\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 20,140.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: September 09, 2013\r\n	admin	Experiences	1
772178	2025-03-18	16:20:18.3283019	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3817\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 02, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,568.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
772179	2025-03-18	16:20:18.3332855	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3817\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,333.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: July 01, 2011\r\n	admin	Experiences	1
772180	2025-03-18	16:20:18.3382689	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3817\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 16,726.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
772181	2025-03-18	16:20:18.3432524	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3817\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 15,119.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
772182	2025-03-18	16:20:18.3482355	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3817\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 26, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,748.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
772183	2025-03-18	16:20:18.3532187	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3817\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 26, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,748.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: October 25, 2008\r\n	admin	Experiences	1
772184	2025-03-18	16:20:18.3572052	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3817\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,748.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: September 25, 2008\r\n	admin	Experiences	1
772185	2025-03-18	16:20:18.3621886	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3817\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 11,207.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-2\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
772186	2025-03-18	16:20:18.3671721	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3817\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,933.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 2007\r\n	admin	Experiences	1
772187	2025-03-18	16:20:18.3721556	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3817\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 16, 2004\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
772237	2025-03-18	16:34:03.5029759	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3818\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ANGELO\r\nFullName: ANGELO MAGBUHAT CUSTODIO\r\nGender: Male\r\nLastName: CUSTODIO\r\nMaidenName: \r\nMiddleName: MAGBUHAT\r\nOccupation: PIPE FITTER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
772238	2025-03-18	16:34:03.5069625	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3818\r\nBirthDate: September 12, 2018\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MIGUEL IVAN\r\nFullName: MIGUEL IVAN PAPASIN CUSTODIO\r\nGender: Male\r\nLastName: CUSTODIO\r\nMaidenName: \r\nMiddleName: PAPASIN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772239	2025-03-18	16:34:03.5189227	<Undetected>	Update	BasicInformationId: 3818\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3615\r\n	BasicInformationId: 3818\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3615\r\n	admin	Questionnaires	1
772252	2025-03-18	16:36:00.8562286	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3818\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1986\r\nDateTo: 1989\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: STA. CLARA ELEMENTARY SCHOOL\r\nYearGraduated: 1989\r\n	admin	EducationalBackgrounds	1
772253	2025-03-18	16:36:00.8612119	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3818\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1989\r\nDateTo: 1993\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES\r\nYearGraduated: 1993\r\n	admin	EducationalBackgrounds	1
772254	2025-03-18	16:36:00.8661952	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3818\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1993\r\nDateTo: 1997\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 1997\r\n	admin	EducationalBackgrounds	1
772255	2025-03-18	16:36:00.8801486	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3818\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 1998\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
772196	2025-03-18	16:28:13.8043890	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3823\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 10, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 28,462.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-6\r\nStatus: Permanent\r\nToDate: September 05, 2023\r\n	admin	Experiences	1
772197	2025-03-18	16:28:13.8084014	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3823\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 28,161.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: June 09, 2023\r\n	admin	Experiences	1
772198	2025-03-18	16:28:13.8135377	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3823\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 26,600.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
772199	2025-03-18	16:28:13.8185625	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3823\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 25,038.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
772200	2025-03-18	16:28:13.8235786	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3823\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 10, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 23,477.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
772201	2025-03-18	16:28:13.8276120	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3823\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 23,181.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: June 09, 2020\r\n	admin	Experiences	1
772202	2025-03-18	16:28:13.8326276	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3823\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,619.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
772203	2025-03-18	16:28:13.8376431	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3823\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,963.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
772204	2025-03-18	16:28:13.8426542	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3823\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 11, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 20,326.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
772205	2025-03-18	16:28:13.8466541	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3823\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 11, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 20,326.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
772206	2025-03-18	16:28:13.8516541	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3823\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 20,088.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: June 10, 2017\r\n	admin	Experiences	1
772207	2025-03-18	16:28:13.8566541	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3823\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,496.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
772208	2025-03-18	16:28:13.8640199	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3823\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,496.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
772209	2025-03-18	16:28:13.8690274	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3823\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 11, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 18,922.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
772210	2025-03-18	16:28:13.8740511	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3823\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 18,735.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 10, 2014\r\n	admin	Experiences	1
772211	2025-03-18	16:28:13.8780655	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3823\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 11, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 17,318.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
772212	2025-03-18	16:28:13.8830734	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3823\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 17,099.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 10, 2011\r\n	admin	Experiences	1
772213	2025-03-18	16:28:13.8870794	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3823\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 15,649.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
772214	2025-03-18	16:28:13.8920948	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3823\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 14,198.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
772215	2025-03-18	16:28:13.8971027	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3823\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,206.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
772216	2025-03-18	16:28:13.9021104	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3823\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 10, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 10,933.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
772217	2025-03-18	16:28:13.9061491	<Undetected>	Update	BasicInformationId: 3823\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4078\r\nExtensionName: \r\nFirstName: SONNY\r\nFullName: SONNY GARING MACARAIG\r\nGender: Male\r\nLastName: MACARAIG\r\nMaidenName: \r\nMiddleName: GARING\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3823\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4078\r\nExtensionName: \r\nFirstName: SONNY\r\nFullName: SONNY MACARAIG\r\nGender: Male\r\nLastName: MACARAIG\r\nMaidenName: \r\nMiddleName: GARING\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
772218	2025-03-18	16:28:13.9112038	<Undetected>	Update	BasicInformationId: 3823\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4079\r\nExtensionName: \r\nFirstName: RODOLFO\r\nFullName: RODOLFO ATIENZA QUINERY\r\nGender: Male\r\nLastName: QUINERY\r\nMaidenName: \r\nMiddleName: ATIENZA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3823\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4079\r\nExtensionName: \r\nFirstName: RODOLFO\r\nFullName: RODOLFO QUINERY\r\nGender: Male\r\nLastName: QUINERY\r\nMaidenName: \r\nMiddleName: ATIENZA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
772219	2025-03-18	16:28:13.9162111	<Undetected>	Update	BasicInformationId: 3823\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4080\r\nExtensionName: \r\nFirstName: FLORENCIA\r\nFullName: FLORENCIA RIVERA MENDOZA\r\nGender: Female\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: RIVERA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3823\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4080\r\nExtensionName: \r\nFirstName: FLORENCIA\r\nFullName: FLORENCIA MENDOZA\r\nGender: Female\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: RIVERA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
772220	2025-03-18	16:28:13.9212192	<Undetected>	Update	BasicInformationId: 3823\r\nBirthDate: April 25, 1993\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4081\r\nExtensionName: \r\nFirstName: SYBIL\r\nFullName: SYBIL QUINERY MACARAIG\r\nGender: Male\r\nLastName: MACARAIG\r\nMaidenName: \r\nMiddleName: QUINERY\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3823\r\nBirthDate: April 25, 1993\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4081\r\nExtensionName: \r\nFirstName: SYBIL\r\nFullName: SYBIL MACARAIG\r\nGender: Male\r\nLastName: MACARAIG\r\nMaidenName: \r\nMiddleName: QUINERY\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772221	2025-03-18	16:28:13.9253408	<Undetected>	Update	BasicInformationId: 3823\r\nBirthDate: November 04, 1996\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4082\r\nExtensionName: \r\nFirstName: SANDRA MAE\r\nFullName: SANDRA MAE MACARAIG SERRANO\r\nGender: Female\r\nLastName: SERRANO\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3823\r\nBirthDate: November 04, 1996\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4082\r\nExtensionName: \r\nFirstName: SANDRA MAE\r\nFullName: SANDRA MAE SERRANO\r\nGender: Female\r\nLastName: SERRANO\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772222	2025-03-18	16:28:13.9304323	<Undetected>	Update	BasicInformationId: 3823\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3620\r\n	BasicInformationId: 3823\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3620\r\n	admin	Questionnaires	1
772230	2025-03-18	16:30:51.6189839	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SBTT MATATAG CURRICULUM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
772231	2025-03-18	16:32:46.8608464	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3823\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - DISTRICT IV\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 11543\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772232	2025-03-18	16:32:46.8689423	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3823\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - NATIONAL\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16482\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772233	2025-03-18	16:32:46.8739530	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3823\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - NATIONAL\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16611\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772234	2025-03-18	16:32:46.8789700	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3823\r\nEmployeeTrainingId: 0\r\nFromDate: August 30, 2022\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - NATIONAL\r\nStatus: \r\nToDate: September 03, 2022\r\nTrainingId: 16556\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772235	2025-03-18	16:32:46.8831577	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3823\r\nEmployeeTrainingId: 0\r\nFromDate: March 15, 2021\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - NATIONAL\r\nStatus: \r\nToDate: March 19, 2021\r\nTrainingId: 16516\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772269	2025-03-18	16:41:32.1826523	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3823\r\nSkillId: 0\r\nSkillName: N/A\r\n	admin	Skills	1
772270	2025-03-18	16:41:32.1877185	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3823\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
772271	2025-03-18	16:41:32.1967952	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3823\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
772272	2025-03-18	16:41:32.2018107	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3823\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES SORO-SORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09913261235\r\nExtensionName: \r\nFirstName: EPITACIA\r\nLastName: CULLERA\r\nMiddleName: C.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772273	2025-03-18	16:41:32.2068666	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3823\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN EAST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175057894\r\nExtensionName: \r\nFirstName: AUREA\r\nLastName: OCON\r\nMiddleName: P. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772228	2025-03-18	16:30:12.6368609	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3824\r\nBirthDate: February 16, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: KENNETH\r\nFullName: KENNETH DE CASTRO ANONUEVO\r\nGender: Male\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772229	2025-03-18	16:30:12.6378688	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3824\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
772236	2025-03-18	16:33:29.9526493	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: COBOL PROGRAMMING\r\nLevel: Vocational\r\n	admin	Courses	1
772240	2025-03-18	16:35:27.6290662	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3824\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1977\r\nDateTo: 1982\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: AMBULONG ELEMENTARY SCHOOL\r\nYearGraduated: 1982\r\n	admin	EducationalBackgrounds	1
772241	2025-03-18	16:35:27.6340715	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: 3rd HONORABLE MENTION\r\nBasicInformationId: 3824\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1982\r\nDateTo: 1986\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: TABANGAO BARANGAY HIGH SCHOOL\r\nYearGraduated: 1986\r\n	admin	EducationalBackgrounds	1
772242	2025-03-18	16:35:27.6440702	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3824\r\nCourse: \r\nCourseId: 1391\r\nCourseOrMajor: \r\nDateFrom: 1993\r\nDateTo: 1993\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Vocational Graduate\r\nMajor: \r\nSchoolorUniversity: SYSTEM TECHNOLOGY INSTITUTE\r\nYearGraduated: 1993\r\n	admin	EducationalBackgrounds	1
772243	2025-03-18	16:35:27.6490464	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3824\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1986\r\nDateTo: 1995\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MAJOR IN MATHEMATICS\r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES\r\nYearGraduated: 1995\r\n	admin	EducationalBackgrounds	1
772244	2025-03-18	16:35:27.6610609	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3824\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 1999\r\nDateTo: 2008\r\nEducationalAttainment: 45\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
772245	2025-03-18	16:35:27.6781040	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 106\r\nAddress2: \r\nBarangay: TABANGAO AMBULONG\r\nBasicInformationId: 3824\r\nBirthDate: March 09, 1969\r\nBirthPlace: TABANGAO AMBULONG, BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: \r\nExtensionName: \r\nFirstName: FRANCISCA\r\nFullName: FRANCISCA DC. ANONUEVO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nMobileNumber: 09162622738\r\nNationality: Filipino\r\nPermanentAddress1: 106\r\nPermanentAddress2: \r\nPermanentBarangay: TABANGAO AMBULONG\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO PROPER\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: SITIO PROPER\r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 106\r\nAddress2: \r\nBarangay: TABANGAO AMBULONG\r\nBasicInformationId: 3824\r\nBirthDate: March 09, 1969\r\nBirthPlace: TABANGAO AMBULONG, BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: \r\nExtensionName: \r\nFirstName: FRANCISCA\r\nFullName: FRANCISCA DC. ANONUEVO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nMobileNumber: 09162622738\r\nNationality: Filipino\r\nPermanentAddress1: 106\r\nPermanentAddress2: \r\nPermanentBarangay: TABANGAO AMBULONG\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO PROPER\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO PROPER\r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772246	2025-03-18	16:35:27.6954899	<Undetected>	Update	BasicInformationId: 3824\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4083\r\nExtensionName: \r\nFirstName: SEBASTIAN\r\nFullName: SEBASTIAN CASTILLO ANONUEVO\r\nGender: Male\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: CASTILLO\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3824\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4083\r\nExtensionName: \r\nFirstName: SEBASTIAN\r\nFullName: SEBASTIAN ANONUEVO\r\nGender: Male\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: CASTILLO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
772247	2025-03-18	16:35:27.7049849	<Undetected>	Update	BasicInformationId: 3824\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4084\r\nExtensionName: \r\nFirstName: FABIAN\r\nFullName: FABIAN MACARAIG DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3824\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4084\r\nExtensionName: \r\nFirstName: FABIAN\r\nFullName: FABIAN DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
772274	2025-03-18	16:41:32.2108914	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3823\r\nCharacterReferenceId: 0\r\nCompanyAddress: P. HERRERA ST. BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09618306429\r\nExtensionName: \r\nFirstName: ELIZA \r\nLastName: NEBRIDA\r\nMiddleName: B.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772248	2025-03-18	16:35:27.7109848	<Undetected>	Update	BasicInformationId: 3824\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4085\r\nExtensionName: \r\nFirstName: LUCINA\r\nFullName: LUCINA MACAPUNO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: MACAPUNO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3824\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4085\r\nExtensionName: \r\nFirstName: LUCINA\r\nFullName: LUCINA MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: MACAPUNO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
772249	2025-03-18	16:35:27.7149842	<Undetected>	Update	BasicInformationId: 3824\r\nBirthDate: August 08, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4086\r\nExtensionName: \r\nFirstName: JOHN CYRILE\r\nFullName: JOHN CYRILE DE CASTRO ANONUEVO\r\nGender: Male\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3824\r\nBirthDate: August 08, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4086\r\nExtensionName: \r\nFirstName: JOHN CYRILE\r\nFullName: JOHN CYRILE ANONUEVO\r\nGender: Male\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772250	2025-03-18	16:35:27.7210732	<Undetected>	Update	BasicInformationId: 3824\r\nBirthDate: February 16, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4087\r\nExtensionName: \r\nFirstName: KENNETH\r\nFullName: KENNETH DE CASTRO ANONUEVO\r\nGender: Male\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3824\r\nBirthDate: February 16, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4087\r\nExtensionName: \r\nFirstName: KENNETH\r\nFullName: KENNETH ANONUEVO\r\nGender: Male\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772251	2025-03-18	16:35:27.7260740	<Undetected>	Update	BasicInformationId: 3824\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3621\r\n	BasicInformationId: 3824\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3621\r\n	admin	Questionnaires	1
772258	2025-03-18	16:37:04.1269178	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3824\r\nDateOfExamination: August 24, 1996\r\nDateOfRelease: March 09, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 24, 1996\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0034705\r\nPlaceOfExamination: NATIONAL CAPITAL REGION-MANILA\r\nRating: 76.6\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
772264	2025-03-18	16:40:20.0879751	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3824\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 08, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 32,922.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-7\r\nStatus: Permanent\r\nToDate: January 01, 2025\r\n	admin	Experiences	1
772265	2025-03-18	16:40:20.0979790	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3824\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 25, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 10,535.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 07, 2005\r\n	admin	Experiences	1
772266	2025-03-18	16:40:20.1030137	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3824\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 15, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-\r\nStatus: Permanent\r\nToDate: July 24, 2002\r\n	admin	Experiences	1
772284	2025-03-18	16:44:39.2945300	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INTERNATIONAL WEBINAR-TRAINING IN ENGLISH\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
772306	2025-03-18	16:50:27.0713430	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL LEARNING ACTION CELL SESSION ON INTEGRATING APPRECIATIVE INQUIRY APPROACH CUM GAWAD KINANGAN YEAR 2\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
772316	2025-03-18	16:52:49.8461881	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL LEARNING ACTION CELL SESSION ON DO. NO.35 S 2016 AND FOUR QUADRANTS OA A TEACHER\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
772327	2025-03-18	16:54:23.4972121	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3824\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16400\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772328	2025-03-18	16:54:23.5032119	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3824\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16347\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772256	2025-03-18	16:36:00.8970919	<Undetected>	Update	BasicInformationId: 3818\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4088\r\nExtensionName: \r\nFirstName: ANGELO\r\nFullName: ANGELO MAGBUHAT CUSTODIO\r\nGender: Male\r\nLastName: CUSTODIO\r\nMaidenName: \r\nMiddleName: MAGBUHAT\r\nOccupation: PIPE FITTER\r\nRelationship: Husband\r\n	BasicInformationId: 3818\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4088\r\nExtensionName: \r\nFirstName: ANGELO\r\nFullName: ANGELO CUSTODIO\r\nGender: Male\r\nLastName: CUSTODIO\r\nMaidenName: \r\nMiddleName: MAGBUHAT\r\nOccupation: PIPE FITTER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
772257	2025-03-18	16:36:00.9121033	<Undetected>	Update	BasicInformationId: 3818\r\nBirthDate: September 12, 2018\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4089\r\nExtensionName: \r\nFirstName: MIGUEL IVAN\r\nFullName: MIGUEL IVAN PAPASIN CUSTODIO\r\nGender: Male\r\nLastName: CUSTODIO\r\nMaidenName: \r\nMiddleName: PAPASIN\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3818\r\nBirthDate: September 12, 2018\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4089\r\nExtensionName: \r\nFirstName: MIGUEL IVAN\r\nFullName: MIGUEL IVAN CUSTODIO\r\nGender: Male\r\nLastName: CUSTODIO\r\nMaidenName: \r\nMiddleName: PAPASIN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772259	2025-03-18	16:37:06.7025827	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: NO. 20\r\nAddress2: STARVILLE SUBDIVISION\r\nBarangay: GULOD ITAAS\r\nBasicInformationId: 3818\r\nBirthDate: October 02, 1976\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: nelisa.custodio@deped.gov.ph\r\nExtensionName: \r\nFirstName: NELISA\r\nFullName: NELISA P. CUSTODIO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CUSTODIO\r\nMaidenName: \r\nMiddleName: PAPASIN\r\nMobileNumber: 09157226912\r\nNationality: Filipino\r\nPermanentAddress1: NO. 20\r\nPermanentAddress2: STARVILLE SUBDIVISION\r\nPermanentBarangay: GULOD ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SUPERNOVA\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SUPERNOVA\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: NO. 20\r\nAddress2: STARVILLE SUBDIVISION\r\nBarangay: GULOD ITAAS\r\nBasicInformationId: 3818\r\nBirthDate: October 02, 1976\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: nelisa.custodio@deped.gov.ph\r\nExtensionName: \r\nFirstName: NELISA\r\nFullName: NELISA P. CUSTODIO\r\nGender: Female\r\nGovernmentIdIssuedDate: December 12, 1997\r\nGovernmentIdNumber: 0241662\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC LICENSE\r\nGSIS: 02002927441\r\nHDMF: 1490-0091-5924\r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CUSTODIO\r\nMaidenName: \r\nMiddleName: PAPASIN\r\nMobileNumber: 09157226912\r\nNationality: Filipino\r\nPermanentAddress1: NO. 20\r\nPermanentAddress2: STARVILLE SUBDIVISION\r\nPermanentBarangay: GULOD ITAAS\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SUPERNOVA\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000044809-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SUPERNOVA\r\nTIN: 922-069-847-0000\r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772260	2025-03-18	16:38:37.9988373	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3818\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES, SORO-SORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09913261235\r\nExtensionName: \r\nFirstName: EPITACIA\r\nLastName: CULLERA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772261	2025-03-18	16:38:38.0068102	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3818\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN EAST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175057894\r\nExtensionName: \r\nFirstName: AUREA\r\nLastName: OCON\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772262	2025-03-18	16:38:38.0117939	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3818\r\nCharacterReferenceId: 0\r\nCompanyAddress: P. HERRERA STREET, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09618306429\r\nExtensionName: \r\nFirstName: ELIZA\r\nLastName: NEBRIDA\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772263	2025-03-18	16:39:53.6622770	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3818\r\nDateOfExamination: August 23, 1997\r\nDateOfRelease: October 02, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 23, 1997\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0241662\r\nPlaceOfExamination: NATIONAL UNIVERSITY, MANILA\r\nRating: 76.6\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
772267	2025-03-18	16:40:53.8561892	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3818\r\nEmployeeTrainingId: 0\r\nFromDate: July 20, 2023\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 22, 2023\r\nTrainingId: 16601\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772268	2025-03-18	16:40:53.8681491	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3818\r\nEmployeeTrainingId: 0\r\nFromDate: August 30, 2022\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: September 03, 2022\r\nTrainingId: 16516\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772276	2025-03-18	16:41:47.4744913	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3818\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
772277	2025-03-18	16:41:47.4784776	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3818\r\nOrganizationId: 0\r\nOrganizationName: STA.CLARA ELEMENTARY SCHOOL TEACHERS' ASSOCIATION\r\n	admin	Organizations	1
772278	2025-03-18	16:41:47.4834614	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3818\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY PUBLIC SCHOOL TEACHER AND EMPLOYERS ASSOCIATION\r\n	admin	Organizations	1
772279	2025-03-18	16:43:51.8644645	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3818\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 36,022.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-6\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
772275	2025-03-18	16:41:32.2159070	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STA. CLARA\r\nBasicInformationId: 3823\r\nBirthDate: January 12, 1966\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: taciana.macaraig001@deped.gov.ph\r\nExtensionName: QUINERY\r\nFirstName: TACIANA\r\nFullName: TACIANA MACARAIG QUINERY\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.64\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MACARAIG\r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: 0173677576\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STA. CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 6\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 6\r\nTIN: \r\nWeight: 69\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STA. CLARA\r\nBasicInformationId: 3823\r\nBirthDate: January 12, 1966\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: taciana.macaraig001@deped.gov.ph\r\nExtensionName: QUINERY\r\nFirstName: TACIANA\r\nFullName: TACIANA MACARAIG QUINERY\r\nGender: Female\r\nGovernmentIdIssuedDate: February 19, 2008\r\nGovernmentIdNumber: 975381\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC LICENSE\r\nGSIS: 02003493334\r\nHDMF: 1490-0098-9937\r\nHeight: 1.64\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MACARAIG\r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: 0173677576\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STA. CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 6\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000071645-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 6\r\nTIN: 253-894-762-0000\r\nWeight: 69\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772285	2025-03-18	16:45:52.0892051	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 1692 / 11 / 11\r\nAddress2: \r\nBarangay: SANTA CLARA\r\nBasicInformationId: 0\r\nBirthDate: January 28, 1974\r\nBirthPlace: MARINDUQUE\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jeannette.noche001@deped.gov.ph\r\nExtensionName: \r\nFirstName: JEANNETE\r\nFullName: JEANNETE D. NOCHE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: NOCHE\r\nMaidenName: \r\nMiddleName: DIZON\r\nMobileNumber: 09350887064\r\nNationality: Filipino\r\nPermanentAddress1: 1692 / 11 / 11\r\nPermanentAddress2: \r\nPermanentBarangay: SANTA CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PCAD\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PCAD\r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772286	2025-03-18	16:45:52.1001698	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3825\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JERRY\r\nFullName: JERRY VILLANUEVA NOCHE\r\nGender: Male\r\nLastName: NOCHE\r\nMaidenName: \r\nMiddleName: VILLANUEVA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
772287	2025-03-18	16:45:52.1001698	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3825\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
772299	2025-03-18	16:48:37.5416585	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3825\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: BIENVINIDO\r\nFullName: BIENVINIDO LOGDAT DIZON\r\nGender: Male\r\nLastName: DIZON\r\nMaidenName: \r\nMiddleName: LOGDAT\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
772300	2025-03-18	16:48:37.5466581	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3825\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FELISA\r\nFullName: FELISA MAAC LAYAG\r\nGender: Female\r\nLastName: LAYAG\r\nMaidenName: \r\nMiddleName: MAAC\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
772301	2025-03-18	16:48:37.5576583	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3825\r\nBirthDate: May 14, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JILLIANNE CHERRY MAE\r\nFullName: JILLIANNE CHERRY MAE DIZON NOCHE\r\nGender: Female\r\nLastName: NOCHE\r\nMaidenName: \r\nMiddleName: DIZON\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772302	2025-03-18	16:48:37.5626581	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3825\r\nBirthDate: January 23, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JAN JAYVIEN\r\nFullName: JAN JAYVIEN DIZON NOCHE\r\nGender: Male\r\nLastName: NOCHE\r\nMaidenName: \r\nMiddleName: DIZON\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772303	2025-03-18	16:48:37.5706581	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3825\r\nBirthDate: October 15, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JAN JERRY MEL\r\nFullName: JAN JERRY MEL DIZON NOCHE\r\nGender: Male\r\nLastName: NOCHE\r\nMaidenName: \r\nMiddleName: DIZON\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772280	2025-03-18	16:43:51.8694476	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3818\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 34,472.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-6\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
772281	2025-03-18	16:43:51.8764243	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3818\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 32,922.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-6\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
772282	2025-03-18	16:43:51.8814077	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3818\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: December 06, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 31,400.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-6\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
772283	2025-03-18	16:43:51.8893809	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3818\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 31,072.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: December 05, 2022\r\n	admin	Experiences	1
772288	2025-03-18	16:48:29.9451633	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3818\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 29,550.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
772289	2025-03-18	16:48:29.9501465	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3818\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 28,028.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
772290	2025-03-18	16:48:29.9561265	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3818\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: December 06, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 26,506.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
772291	2025-03-18	16:48:29.9601137	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3818\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 26,181.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: December 05, 2019\r\n	admin	Experiences	1
772292	2025-03-18	16:48:29.9660933	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3818\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 25,091.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
772293	2025-03-18	16:48:29.9700798	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3818\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 24,047.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
772294	2025-03-18	16:48:29.9750630	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3818\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: December 06, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 23,045.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
772295	2025-03-18	16:48:29.9800464	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3818\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 22,804.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 05, 2016\r\n	admin	Experiences	1
772296	2025-03-18	16:48:29.9850298	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3818\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: December 07, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 27,867.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
772297	2025-03-18	16:48:29.9890175	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3818\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 21,650.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 06, 2013\r\n	admin	Experiences	1
772298	2025-03-18	16:48:29.9949979	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3818\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 19,908.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
772307	2025-03-18	16:51:47.1373628	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3818\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: December 07, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 18,166.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
772308	2025-03-18	16:51:47.1423462	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3818\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 17,880.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 06, 2010\r\n	admin	Experiences	1
772309	2025-03-18	16:51:47.1473296	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3818\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 16,101.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
772310	2025-03-18	16:51:47.1523129	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3818\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 13,512.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
772311	2025-03-18	16:51:47.1572961	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3818\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: December 06, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 12,284.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
772312	2025-03-18	16:51:47.1612828	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3818\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 11,589.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 05, 2007\r\n	admin	Experiences	1
772313	2025-03-18	16:51:47.1662662	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3818\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 05, 2004\r\nIsGovernmentService: True\r\nMonthlySalary: 10,535.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
772314	2025-03-18	16:51:47.1712496	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3818\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: July 01, 2004\r\n	admin	Experiences	1
772315	2025-03-18	16:51:47.1762328	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3818\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 02, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
772304	2025-03-18	16:48:37.5756583	<Undetected>	Update	BasicInformationId: 3825\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4090\r\nExtensionName: \r\nFirstName: JERRY\r\nFullName: JERRY VILLANUEVA NOCHE\r\nGender: Male\r\nLastName: NOCHE\r\nMaidenName: \r\nMiddleName: VILLANUEVA\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3825\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4090\r\nExtensionName: \r\nFirstName: JERRY\r\nFullName: JERRY NOCHE\r\nGender: Male\r\nLastName: NOCHE\r\nMaidenName: \r\nMiddleName: VILLANUEVA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
772305	2025-03-18	16:48:37.5806582	<Undetected>	Update	BasicInformationId: 3825\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3622\r\n	BasicInformationId: 3825\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3622\r\n	admin	Questionnaires	1
772317	2025-03-18	16:53:24.3091157	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3825\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1981\r\nDateTo: 1987\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: STA. CLARA ELEMENTARY SCHOOL\r\nYearGraduated: 1987\r\n	admin	EducationalBackgrounds	1
772318	2025-03-18	16:53:24.3141212	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3825\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1987\r\nDateTo: 1991\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1991\r\n	admin	EducationalBackgrounds	1
772319	2025-03-18	16:53:24.3181209	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3825\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1991\r\nDateTo: 1995\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY\r\nYearGraduated: 1995\r\n	admin	EducationalBackgrounds	1
772320	2025-03-18	16:53:24.3289008	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3825\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2002\r\nEducationalAttainment: 18 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
772321	2025-03-18	16:53:24.3402367	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3825\r\nDateOfExamination: May 25, 1995\r\nDateOfRelease: January 28, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: May 25, 1995\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0556055\r\nPlaceOfExamination: BATANGAS NATIONAL HIGH SCHOOL BATANGAS CITY\r\nRating: 73\r\nTitle: PROFESSIONAL BOARD EXAM FOR TEACHERS (PBET)\r\n	admin	Eligibilities	1
772322	2025-03-18	16:53:24.3653958	<Undetected>	Update	BasicInformationId: 3825\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4091\r\nExtensionName: \r\nFirstName: BIENVINIDO\r\nFullName: BIENVINIDO LOGDAT DIZON\r\nGender: Male\r\nLastName: DIZON\r\nMaidenName: \r\nMiddleName: LOGDAT\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3825\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4091\r\nExtensionName: \r\nFirstName: BIENVINIDO\r\nFullName: BIENVINIDO DIZON\r\nGender: Male\r\nLastName: DIZON\r\nMaidenName: \r\nMiddleName: LOGDAT\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
772323	2025-03-18	16:53:24.3727436	<Undetected>	Update	BasicInformationId: 3825\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4092\r\nExtensionName: \r\nFirstName: FELISA\r\nFullName: FELISA MAAC LAYAG\r\nGender: Female\r\nLastName: LAYAG\r\nMaidenName: \r\nMiddleName: MAAC\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3825\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4092\r\nExtensionName: \r\nFirstName: FELISA\r\nFullName: FELISA LAYAG\r\nGender: Female\r\nLastName: LAYAG\r\nMaidenName: \r\nMiddleName: MAAC\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
772324	2025-03-18	16:53:24.3778063	<Undetected>	Update	BasicInformationId: 3825\r\nBirthDate: May 14, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4093\r\nExtensionName: \r\nFirstName: JILLIANNE CHERRY MAE\r\nFullName: JILLIANNE CHERRY MAE DIZON NOCHE\r\nGender: Female\r\nLastName: NOCHE\r\nMaidenName: \r\nMiddleName: DIZON\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3825\r\nBirthDate: May 14, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4093\r\nExtensionName: \r\nFirstName: JILLIANNE CHERRY MAE\r\nFullName: JILLIANNE CHERRY MAE NOCHE\r\nGender: Female\r\nLastName: NOCHE\r\nMaidenName: \r\nMiddleName: DIZON\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772325	2025-03-18	16:53:24.3828356	<Undetected>	Update	BasicInformationId: 3825\r\nBirthDate: January 23, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4094\r\nExtensionName: \r\nFirstName: JAN JAYVIEN\r\nFullName: JAN JAYVIEN DIZON NOCHE\r\nGender: Male\r\nLastName: NOCHE\r\nMaidenName: \r\nMiddleName: DIZON\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3825\r\nBirthDate: January 23, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4094\r\nExtensionName: \r\nFirstName: JAN JAYVIEN\r\nFullName: JAN JAYVIEN NOCHE\r\nGender: Male\r\nLastName: NOCHE\r\nMaidenName: \r\nMiddleName: DIZON\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772326	2025-03-18	16:53:24.3878531	<Undetected>	Update	BasicInformationId: 3825\r\nBirthDate: October 15, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4095\r\nExtensionName: \r\nFirstName: JAN JERRY MEL\r\nFullName: JAN JERRY MEL DIZON NOCHE\r\nGender: Male\r\nLastName: NOCHE\r\nMaidenName: \r\nMiddleName: DIZON\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3825\r\nBirthDate: October 15, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4095\r\nExtensionName: \r\nFirstName: JAN JERRY MEL\r\nFullName: JAN JERRY MEL NOCHE\r\nGender: Male\r\nLastName: NOCHE\r\nMaidenName: \r\nMiddleName: DIZON\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772329	2025-03-18	16:54:23.5082128	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3824\r\nEmployeeTrainingId: 0\r\nFromDate: May 24, 2024\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SAMAHAN NG MGA GURO SA INTELEKTUWALISASYON NG FILIPINO (SAGIF)\r\nStatus: \r\nToDate: May 26, 2024\r\nTrainingId: 16612\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772330	2025-03-18	16:54:23.5142130	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3824\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2023\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS-LIBJO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: November 29, 2023\r\nTrainingId: 16613\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772331	2025-03-18	16:54:23.5186336	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3824\r\nEmployeeTrainingId: 0\r\nFromDate: September 29, 2023\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS-LIBJO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: September 29, 2023\r\nTrainingId: 16614\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772332	2025-03-18	16:55:15.4491449	<Undetected>	Update	BasicInformationId: 3818\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12938\r\nFromDate: July 05, 2004\r\nIsGovernmentService: True\r\nMonthlySalary: 10,535.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	BasicInformationId: 3818\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 12938\r\nFromDate: July 02, 2004\r\nIsGovernmentService: True\r\nMonthlySalary: 10,535.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
772333	2025-03-19	07:56:37.1127217	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3819\r\nBirthDate: October 06, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ANGEL JAIDE\r\nFullName: ANGEL JAIDE ATIENZA DINGLASAN\r\nGender: Female\r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: ATIENZA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772334	2025-03-19	07:56:37.1177048	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3819\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOWEL\r\nFullName: JOWEL CATAPANG DINGLASAN\r\nGender: Male\r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: CATAPANG\r\nOccupation: SEAFARER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
772335	2025-03-19	07:59:11.8848649	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3819\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1981\r\nDateTo: 1987\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: TULO II ELEMENTARY SCHOOL\r\nYearGraduated: 1987\r\n	admin	EducationalBackgrounds	1
772336	2025-03-19	07:59:11.8898479	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3819\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1987\r\nDateTo: 1991\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES\r\nYearGraduated: 1991\r\n	admin	EducationalBackgrounds	1
772337	2025-03-19	07:59:11.8998145	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3819\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1991\r\nDateTo: 1995\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: SAINT BRIDGET COLLEGE\r\nYearGraduated: 1995\r\n	admin	EducationalBackgrounds	1
772338	2025-03-19	07:59:11.9047978	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3819\r\nCourse: \r\nCourseId: 1284\r\nCourseOrMajor: \r\nDateFrom: 1997\r\nDateTo: 1999\r\nEducationalAttainment: 45 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: EDUCATIONAL ADMINISTRATION\r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
772339	2025-03-19	07:59:11.9137680	<Undetected>	Update	BasicInformationId: 3819\r\nBirthDate: October 06, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4096\r\nExtensionName: \r\nFirstName: ANGEL JAIDE\r\nFullName: ANGEL JAIDE ATIENZA DINGLASAN\r\nGender: Female\r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: ATIENZA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3819\r\nBirthDate: October 06, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4096\r\nExtensionName: \r\nFirstName: ANGEL JAIDE\r\nFullName: ANGEL JAIDE DINGLASAN\r\nGender: Female\r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: ATIENZA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772340	2025-03-19	07:59:11.9177545	<Undetected>	Update	BasicInformationId: 3819\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4097\r\nExtensionName: \r\nFirstName: JOWEL\r\nFullName: JOWEL CATAPANG DINGLASAN\r\nGender: Male\r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: CATAPANG\r\nOccupation: SEAFARER\r\nRelationship: Husband\r\n	BasicInformationId: 3819\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4097\r\nExtensionName: \r\nFirstName: JOWEL\r\nFullName: JOWEL DINGLASAN\r\nGender: Male\r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: CATAPANG\r\nOccupation: SEAFARER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
772341	2025-03-19	08:00:37.2099517	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 363-A\r\nAddress2: \r\nBarangay: TULO CENTRO\r\nBasicInformationId: 3819\r\nBirthDate: November 22, 1974\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: aida.dinglasan@deped.gov.ph\r\nExtensionName: \r\nFirstName: AIDA\r\nFullName: AIDA A. DINGLASAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: ATIENZA\r\nMobileNumber: 09295160800\r\nNationality: Filipino\r\nPermanentAddress1: 363-A\r\nPermanentAddress2: \r\nPermanentBarangay: TULO CENTRO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: CALLEJON ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: CALLEJON ROAD\r\nTIN: \r\nWeight: 52\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 363-A\r\nAddress2: \r\nBarangay: TULO CENTRO\r\nBasicInformationId: 3819\r\nBirthDate: November 22, 1974\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: aida.dinglasan@deped.gov.ph\r\nExtensionName: \r\nFirstName: AIDA\r\nFullName: AIDA A. DINGLASAN\r\nGender: Female\r\nGovernmentIdIssuedDate: September 02, 1997\r\nGovernmentIdNumber: 0113165\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC LICENSE\r\nGSIS: 02002992058\r\nHDMF: 1490-0083-4274\r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DINGLASAN\r\nMaidenName: \r\nMiddleName: ATIENZA\r\nMobileNumber: 09295160800\r\nNationality: Filipino\r\nPermanentAddress1: 363-A\r\nPermanentAddress2: \r\nPermanentBarangay: TULO CENTRO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: CALLEJON ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000012416-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-0916402-6\r\nStreetName: CALLEJON ROAD\r\nTIN: 182-682-748-0000\r\nWeight: 52\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772342	2025-03-19	08:02:00.3358200	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3819\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES, SORO-SORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09913261225\r\nExtensionName: \r\nFirstName: EPITACIA\r\nLastName: CULLERA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772343	2025-03-19	08:02:00.3408034	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3819\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN EAST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175057894\r\nExtensionName: \r\nFirstName: AUREA\r\nLastName: OCON\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772344	2025-03-19	08:02:00.3457868	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3819\r\nCharacterReferenceId: 0\r\nCompanyAddress: CALICANTO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09618306429\r\nExtensionName: \r\nFirstName: ELIZA\r\nLastName: NEBRIDA\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772345	2025-03-19	08:03:59.1682085	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3819\r\nDateOfExamination: May 28, 1995\r\nDateOfRelease: November 22, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: May 28, 1995\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0113165\r\nPlaceOfExamination: BATANGAS NATIONAL HIGH SCHOOL, BATANGAS CITY\r\nRating: 70.80\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
772346	2025-03-19	08:03:59.1801686	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3819\r\nDateOfExamination: November 27, 1994\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 7\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: November 27, 1994\r\nLevelOfEligibility: First Level (Subprofessional)\r\nLicenseNumber: \r\nPlaceOfExamination: WESTERN PHILIPPINE COLLEGES, HILTOP, BATANGAS CITY\r\nRating: 84.2\r\nTitle: CAREER SERVICE SUB-PROFESSIONAL\r\n	admin	Eligibilities	1
772347	2025-03-19	08:08:22.3963948	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ENHANCING INSTRUCTIONAL SUPERVSION: A POSITIVE APPROACH THROUGH APPRECIATIVE INQUIRY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
772348	2025-03-19	08:09:30.4730741	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3819\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16593\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772349	2025-03-19	08:09:30.4770608	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3819\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION-NATIONAL\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16457\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772350	2025-03-19	08:09:30.4830408	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3819\r\nEmployeeTrainingId: 0\r\nFromDate: October 07, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION-NATIONAL\r\nStatus: \r\nToDate: October 09, 2024\r\nTrainingId: 16547\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772351	2025-03-19	08:09:30.4870276	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3819\r\nEmployeeTrainingId: 0\r\nFromDate: September 30, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 30, 2024\r\nTrainingId: 16615\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772352	2025-03-19	08:09:30.4920108	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3819\r\nEmployeeTrainingId: 0\r\nFromDate: September 13, 2024\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: GOKONGWEI BROTHERS FOUNDATION\r\nStatus: \r\nToDate: September 14, 2024\r\nTrainingId: 16565\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772353	2025-03-19	08:09:59.2135228	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3819\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
772354	2025-03-19	08:09:59.2175095	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3819\r\nSkillId: 0\r\nSkillName: READING\r\n	admin	Skills	1
772355	2025-03-19	08:09:59.2274760	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3819\r\nOrganizationId: 0\r\nOrganizationName: GIRL SCOUTS OF THE PHILIPPINES \r\n	admin	Organizations	1
772356	2025-03-19	08:11:45.8472397	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3825\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,004.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-7\r\nStatus: Permanent\r\nToDate: March 19, 2025\r\n	admin	Experiences	1
772357	2025-03-19	08:11:45.8528227	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3825\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,464.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-7\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
772358	2025-03-19	08:11:45.8588345	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3825\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 12, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 30,924.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-7\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
772359	2025-03-19	08:11:45.8628509	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3825\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 30,622.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-6\r\nStatus: Permanent\r\nToDate: July 11, 2023\r\n	admin	Experiences	1
772360	2025-03-19	08:11:45.8678599	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3825\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,065.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-6\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
772361	2025-03-19	08:11:45.8728815	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3825\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 27,509.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-6\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
772362	2025-03-19	08:11:45.8778896	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3825\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 12, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 25,950.02\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-6\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
772363	2025-03-19	08:11:45.8818957	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3825\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 25,653.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: July 11, 2020\r\n	admin	Experiences	1
772364	2025-03-19	08:11:45.8869321	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3825\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 24,096.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
772365	2025-03-19	08:11:45.8919487	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3825\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 23,212.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
772366	2025-03-19	08:11:45.8959551	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3825\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 12, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 22,361.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
772367	2025-03-19	08:11:45.9009626	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3825\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 22,113.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: July 11, 2017\r\n	admin	Experiences	1
772368	2025-03-19	08:11:45.9060346	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3825\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 21,315.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
772369	2025-03-19	08:11:45.9100405	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3825\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 13, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 20,545.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
772370	2025-03-19	08:11:45.9150483	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3825\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 20,341.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: July 12, 2014\r\n	admin	Experiences	1
772371	2025-03-19	08:11:45.9200675	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3825\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 13, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,805.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
772468	2025-03-19	09:34:26.0272473	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3824\r\nSkillId: 0\r\nSkillName: DANCING \r\n	admin	Skills	1
772469	2025-03-19	09:34:26.0322471	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3824\r\nSkillId: 0\r\nSkillName: PLAYING VOLLEYBALL\r\n	admin	Skills	1
772470	2025-03-19	09:34:26.0422471	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3824\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
772471	2025-03-19	09:34:26.0472471	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3824\r\nRecognitionId: 0\r\nRecognitionName: BRONZE SERVICE AWARD \r\n	admin	Recognitions	1
772472	2025-03-19	09:34:26.0552473	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3824\r\nRecognitionId: 0\r\nRecognitionName: DISTRICT VII-OUTSTANDING GRADE 1 TEACHER\r\n	admin	Recognitions	1
772473	2025-03-19	09:34:26.0602471	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3824\r\nRecognitionId: 0\r\nRecognitionName: PROCESS OWNER \r\n	admin	Recognitions	1
772474	2025-03-19	09:34:26.0652470	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3824\r\nRecognitionId: 0\r\nRecognitionName: DISTRICT VII-WRITER IN MTB-MLE\r\n	admin	Recognitions	1
772475	2025-03-19	09:34:26.0702472	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3824\r\nRecognitionId: 0\r\nRecognitionName: SDO BATANGAS - DEMONSTRATION TEACHER\r\n	admin	Recognitions	1
772476	2025-03-19	09:34:26.0752474	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3824\r\nOrganizationId: 0\r\nOrganizationName: PHILIPPINE PUBLIC SCHOOL TEACHERS ASSOCIATION \r\n	admin	Organizations	1
772477	2025-03-19	09:34:26.0802472	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3824\r\nOrganizationId: 0\r\nOrganizationName: BOYS SCOUT OF THE PHILIPPINES \r\n	admin	Organizations	1
772478	2025-03-19	09:34:26.0852472	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3824\r\nOrganizationId: 0\r\nOrganizationName: GIRL SCOUT OF THE PHILIPPINE \r\n	admin	Organizations	1
772479	2025-03-19	09:38:16.5945085	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3824\r\nCharacterReferenceId: 0\r\nCompanyAddress: TABANGAO DAO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 9155369142\r\nExtensionName: \r\nFirstName: RICA \r\nLastName: SUAREZ\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772480	2025-03-19	09:38:16.6080097	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3824\r\nCharacterReferenceId: 0\r\nCompanyAddress: TABANGAO AMBULONG, BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 9483416234\r\nExtensionName: \r\nFirstName: JEFFERSON\r\nLastName: BERBERABE\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772481	2025-03-19	09:38:16.6271838	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3824\r\nCharacterReferenceId: 0\r\nCompanyAddress: TANGISAN, LIBJO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 9274083148\r\nExtensionName: \r\nFirstName: GEMMA \r\nLastName: CLAVERIA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772483	2025-03-19	09:45:42.2473394	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3821\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,421.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
772484	2025-03-19	09:45:42.2523259	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3821\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
772372	2025-03-19	08:23:09.6180567	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3819\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 60,394.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-6\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
772373	2025-03-19	08:23:09.6230401	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3819\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 57,878.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-6\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
772374	2025-03-19	08:23:09.6280233	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3819\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 55,174.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-6\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
772375	2025-03-19	08:23:09.6330066	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3819\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 53,652.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-6\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
772376	2025-03-19	08:23:09.6379899	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3819\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 52,864.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-5\r\nStatus: Permanent\r\nToDate: July 31, 2022\r\n	admin	Experiences	1
772377	2025-03-19	08:23:09.6419765	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3819\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 51,342.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-5\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
772378	2025-03-19	08:23:09.6469600	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3819\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 49,820.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-5\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
772379	2025-03-19	08:23:09.6519432	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3819\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 48,298.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-5\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
772380	2025-03-19	08:23:09.6569266	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3819\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 47,522.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-4\r\nStatus: Permanent\r\nToDate: July 31, 2019\r\n	admin	Experiences	1
772381	2025-03-19	08:23:09.6609132	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3819\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 44,020.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-4\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
772382	2025-03-19	08:23:09.6658966	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3819\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 40,776.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-4\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
772383	2025-03-19	08:23:09.6708799	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3819\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 37,771.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-4\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
772384	2025-03-19	08:23:09.6758632	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3819\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 34,608.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-3\r\nStatus: Permanent\r\nToDate: July 31, 2016\r\n	admin	Experiences	1
772385	2025-03-19	08:23:09.6808467	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3819\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 34,231.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-2\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
772386	2025-03-19	08:23:09.6858299	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3819\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 30,880.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-2\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
772387	2025-03-19	08:23:09.6898166	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3819\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 01, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 27,528.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-2\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
772388	2025-03-19	08:23:09.6947999	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3819\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 27,088.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: July 31, 2010\r\n	admin	Experiences	1
772389	2025-03-19	08:23:09.6997832	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3819\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 23,703.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
772390	2025-03-19	08:23:09.7047665	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3819\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 18,082.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 17-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
772391	2025-03-19	08:23:09.7087532	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3819\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 16,438.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 17-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
772392	2025-03-19	08:23:09.7137365	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3819\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 15,508.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: July 31, 2007\r\n	admin	Experiences	1
772393	2025-03-19	08:23:09.7187198	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3819\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 19, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 14,098.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
772394	2025-03-19	08:23:09.7237033	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3819\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 15, 2003\r\nIsGovernmentService: True\r\nMonthlySalary: 10,308.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: September 18, 2005\r\n	admin	Experiences	1
772395	2025-03-19	08:23:09.7276899	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3819\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 19, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 10,535.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: September 14, 2003\r\n	admin	Experiences	1
772396	2025-03-19	08:23:09.7326732	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3819\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: November 18, 2001\r\n	admin	Experiences	1
772397	2025-03-19	08:23:09.7376565	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3819\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 01, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
772398	2025-03-19	08:23:09.7426398	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3819\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
772399	2025-03-19	08:23:09.7476231	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3819\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 7,309.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: October 31, 1997\r\n	admin	Experiences	1
772400	2025-03-19	08:23:09.7526065	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3819\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 10, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 6,013.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1996\r\n	admin	Experiences	1
772401	2025-03-19	08:36:04.6833939	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3820\r\nBirthDate: August 10, 2012\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GABRIELLE\r\nFullName: GABRIELLE CADANO TORRES\r\nGender: Male\r\nLastName: TORRES\r\nMaidenName: \r\nMiddleName: CADANO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772402	2025-03-19	08:36:04.6953538	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3820\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: HERBERT\r\nFullName: HERBERT DE GUZMAN TORRES\r\nGender: Male\r\nLastName: TORRES\r\nMaidenName: \r\nMiddleName: DE GUZMAN\r\nOccupation: MECHANICAL FITTER (CONTRACTUAL)/DRIVER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
772403	2025-03-19	08:36:04.7003372	<Undetected>	Update	BasicInformationId: 3820\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3617\r\n	BasicInformationId: 3820\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3617\r\n	admin	Questionnaires	1
772404	2025-03-19	08:38:45.8765120	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3820\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1991\r\nDateTo: 1997\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: JULIAN A. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nYearGraduated: 1997\r\n	admin	EducationalBackgrounds	1
772405	2025-03-19	08:38:45.8814957	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3820\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1997\r\nDateTo: 2001\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2001\r\n	admin	EducationalBackgrounds	1
772406	2025-03-19	08:38:45.8934559	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: BSU MUNICIPAL SCHOLARS\r\nBasicInformationId: 3820\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2005\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2005\r\n	admin	EducationalBackgrounds	1
772407	2025-03-19	08:38:45.8974420	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3820\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2018\r\nDateTo: 2020\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY - THE NATIONAL ENGINEERING UNIVERSITY\r\nYearGraduated: 2022\r\n	admin	EducationalBackgrounds	1
772533	2025-03-19	10:06:24.7416336	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3825\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN EAST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175057894\r\nExtensionName: \r\nFirstName: AUREA\r\nLastName: OCON\r\nMiddleName: P.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772408	2025-03-19	08:38:45.9054152	<Undetected>	Update	BasicInformationId: 3820\r\nBirthDate: August 10, 2012\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4098\r\nExtensionName: \r\nFirstName: GABRIELLE\r\nFullName: GABRIELLE CADANO TORRES\r\nGender: Male\r\nLastName: TORRES\r\nMaidenName: \r\nMiddleName: CADANO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3820\r\nBirthDate: August 10, 2012\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4098\r\nExtensionName: \r\nFirstName: GABRIELLE\r\nFullName: GABRIELLE TORRES\r\nGender: Male\r\nLastName: TORRES\r\nMaidenName: \r\nMiddleName: CADANO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772409	2025-03-19	08:38:45.9103989	<Undetected>	Update	BasicInformationId: 3820\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4099\r\nExtensionName: \r\nFirstName: HERBERT\r\nFullName: HERBERT DE GUZMAN TORRES\r\nGender: Male\r\nLastName: TORRES\r\nMaidenName: \r\nMiddleName: DE GUZMAN\r\nOccupation: MECHANICAL FITTER (CONTRACTUAL)/DRIVER\r\nRelationship: Husband\r\n	BasicInformationId: 3820\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4099\r\nExtensionName: \r\nFirstName: HERBERT\r\nFullName: HERBERT TORRES\r\nGender: Male\r\nLastName: TORRES\r\nMaidenName: \r\nMiddleName: DE GUZMAN\r\nOccupation: MECHANICAL FITTER (CONTRACTUAL)/DRIVER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
772410	2025-03-19	08:42:06.5004738	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: CUTA CENTRAL\r\nBasicInformationId: 3820\r\nBirthDate: March 11, 1984\r\nBirthPlace: BATANGAS CITY\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: maryjane.torres@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARY JANE\r\nFullName: MARY JANE C. TORRES\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: TORRES\r\nMaidenName: \r\nMiddleName: CADANO\r\nMobileNumber: 09157364449\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: CUTA CENTRAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 56\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: CUTA CENTRAL\r\nBasicInformationId: 3820\r\nBirthDate: March 11, 1984\r\nBirthPlace: BATANGAS CITY\r\nBloodType: AB+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: maryjane.torres@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARY JANE\r\nFullName: MARY JANE C. TORRES\r\nGender: Female\r\nGovernmentIdIssuedDate: June 08, 2009\r\nGovernmentIdNumber: 1026698\r\nGovernmentIdPlaceIssued: BATANGAS CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: 02004162667\r\nHDMF: 1490-0081-1749\r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: TORRES\r\nMaidenName: \r\nMiddleName: CADANO\r\nMobileNumber: 09157364449\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: CUTA CENTRAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050120259-1\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1651950-9\r\nStreetName: \r\nTIN: 301-641-010-0000\r\nWeight: 56\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772411	2025-03-19	08:47:02.6690774	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3820\r\nCharacterReferenceId: 0\r\nCompanyAddress: AGUILA, SAN JOSE, BATANGAS\r\nCompanyName: \r\nContactNumber: 09303863270\r\nExtensionName: \r\nFirstName: ROSA JEALYN\r\nLastName: MANALO\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772412	2025-03-19	08:47:02.6770507	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3820\r\nCharacterReferenceId: 0\r\nCompanyAddress: MALALIM, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09605342029\r\nExtensionName: \r\nFirstName: LANIE\r\nLastName: PADILLA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772413	2025-03-19	08:47:02.6820341	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3820\r\nCharacterReferenceId: 0\r\nCompanyAddress: SORO-SORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09090620196\r\nExtensionName: \r\nFirstName: ELIZABETH\r\nLastName: ALEA\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772414	2025-03-19	08:51:06.9057661	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3820\r\nEmployeeTrainingId: 0\r\nFromDate: July 22, 2024\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 09, 2024\r\nTrainingId: 16412\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772415	2025-03-19	08:51:06.9117462	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3820\r\nEmployeeTrainingId: 0\r\nFromDate: July 24, 2024\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVIISON OF BATANGAS CITY\r\nStatus: \r\nToDate: January 27, 2024\r\nTrainingId: 15605\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772416	2025-03-19	08:51:06.9157330	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3820\r\nEmployeeTrainingId: 0\r\nFromDate: August 15, 2023\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 17, 2023\r\nTrainingId: 16498\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772417	2025-03-19	08:51:06.9217132	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3820\r\nEmployeeTrainingId: 0\r\nFromDate: June 14, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: June 14, 2023\r\nTrainingId: 16608\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772418	2025-03-19	08:51:06.9256997	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3820\r\nEmployeeTrainingId: 0\r\nFromDate: July 11, 2022\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION REGION IV-A CALABARZON\r\nStatus: \r\nToDate: July 12, 2022\r\nTrainingId: 16389\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772419	2025-03-19	08:51:18.5083230	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3820\r\nSkillId: 0\r\nSkillName: ART\r\n	admin	Skills	1
772420	2025-03-19	08:52:02.8091107	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3820\r\nDateOfExamination: April 05, 2009\r\nDateOfRelease: March 11, 2028\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: April 05, 2009\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1026698\r\nPlaceOfExamination: IYAM, LUCENA CITY\r\nRating: 75\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
772421	2025-03-19	09:07:33.1445071	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3820\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,421.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
772422	2025-03-19	09:07:33.1494900	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3820\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 07, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
772423	2025-03-19	09:07:33.1544735	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3820\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 30,705.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: October 06, 2024\r\n	admin	Experiences	1
772424	2025-03-19	09:07:33.1594563	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3820\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 29,165.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
772425	2025-03-19	09:07:33.1644403	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3820\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 12, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 27,608.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
772426	2025-03-19	09:07:33.1694233	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3820\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 04, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 26,304.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: October 11, 2022\r\n	admin	Experiences	1
772427	2025-03-19	09:07:33.1734098	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3820\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 26,012.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: January 03, 2022\r\n	admin	Experiences	1
772428	2025-03-19	09:07:33.1783934	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3820\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 24,450.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
772429	2025-03-19	09:07:33.1833767	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3820\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,889.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
772430	2025-03-19	09:07:33.1883597	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3820\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 04, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,327.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
772534	2025-03-19	10:06:24.7491675	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3825\r\nCharacterReferenceId: 0\r\nCompanyAddress: P. HERRERA ST. BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09618306429\r\nExtensionName: \r\nFirstName: ELIZA\r\nLastName: NEBRIDA\r\nMiddleName: B.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772431	2025-03-19	09:07:33.1923464	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3820\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,038.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: January 03, 2019\r\n	admin	Experiences	1
772432	2025-03-19	09:07:33.1973300	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3820\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,437.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
772433	2025-03-19	09:07:33.2023133	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3820\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,853.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
772434	2025-03-19	09:07:33.2072967	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3820\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 04, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,286.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
772435	2025-03-19	09:07:33.2122800	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3820\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 03, 2016\r\n	admin	Experiences	1
772436	2025-03-19	09:07:33.2172632	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3820\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 24, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
772437	2025-03-19	09:07:33.2212494	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3820\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 23, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 23, 2013\r\n	admin	Experiences	1
772438	2025-03-19	09:07:33.2262331	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3820\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 04, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 22, 2013\r\n	admin	Experiences	1
772439	2025-03-19	09:07:33.2312158	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3820\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 07, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 13,333.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 03, 2013\r\n	admin	Experiences	1
772440	2025-03-19	09:07:33.2362388	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3820\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 08, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 13,333.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: September 06, 2012\r\n	admin	Experiences	1
772441	2025-03-19	09:07:33.2402288	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3820\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: April 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 13,333.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: August 07, 2012\r\n	admin	Experiences	1
772442	2025-03-19	09:07:33.2461654	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3820\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 04, 2009\r\nIsGovernmentService: False\r\nMonthlySalary: 3,000.00\r\nPositionHeld: VOLUNTEER PRE-ELEMENTARY TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: March 31, 2011\r\n	admin	Experiences	1
772443	2025-03-19	09:07:33.2501521	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3820\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: April 15, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 4,000.00\r\nPositionHeld: CLASSROOM TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: April 05, 2008\r\n	admin	Experiences	1
772444	2025-03-19	09:07:33.2551356	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3820\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 26, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 13,000.00\r\nPositionHeld: SUBSTITUTE FACULTY\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: March 26, 2006\r\n	admin	Experiences	1
772445	2025-03-19	09:13:57.2346939	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3821\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09673576748\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: NOEL\r\nFullName: NOEL PITEL RAMIREZ\r\nGender: Male\r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: PITEL\r\nOccupation: FACILITY STAFF\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
772446	2025-03-19	09:13:57.2396772	<Undetected>	Update	BasicInformationId: 3821\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3618\r\n	BasicInformationId: 3821\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3618\r\n	admin	Questionnaires	1
772447	2025-03-19	09:23:42.1879607	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: FIRST HONORABLE MENTION\r\nBasicInformationId: 3821\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1987\r\nDateTo: 1993\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: TULO II ELEMENTARY SCHOOL\r\nYearGraduated: 1993\r\n	admin	EducationalBackgrounds	1
772448	2025-03-19	09:23:42.1919473	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3821\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1993\r\nDateTo: 1997\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1997\r\n	admin	EducationalBackgrounds	1
772449	2025-03-19	09:23:42.2088897	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3821\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1997\r\nDateTo: 2001\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2001\r\n	admin	EducationalBackgrounds	1
772450	2025-03-19	09:23:42.2288235	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3821\r\nCourse: \r\nCourseId: 1348\r\nCourseOrMajor: \r\nDateFrom: 2017\r\nDateTo: 2022\r\nEducationalAttainment: 36 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
772451	2025-03-19	09:23:42.2437801	<Undetected>	Update	BasicInformationId: 3821\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09673576748\r\nEmployeeRelativeId: 4100\r\nExtensionName: \r\nFirstName: NOEL\r\nFullName: NOEL PITEL RAMIREZ\r\nGender: Male\r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: PITEL\r\nOccupation: FACILITY STAFF\r\nRelationship: Husband\r\n	BasicInformationId: 3821\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09673576748\r\nEmployeeRelativeId: 4100\r\nExtensionName: \r\nFirstName: NOEL\r\nFullName: NOEL RAMIREZ\r\nGender: Male\r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: PITEL\r\nOccupation: FACILITY STAFF\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
772452	2025-03-19	09:24:38.5000218	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3821\r\nDateOfExamination: August 21, 2001\r\nDateOfRelease: March 31, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 21, 2001\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0709803\r\nPlaceOfExamination: QUEZON NATIONAL HIGH SCHOOL\r\nRating: 78.4\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
772485	2025-03-19	09:45:42.2573092	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3821\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 30,705.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: July 31, 2024\r\n	admin	Experiences	1
772486	2025-03-19	09:45:42.2632904	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3821\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 29,165.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
772453	2025-03-19	09:25:56.7005099	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: TULO\r\nBasicInformationId: 3821\r\nBirthDate: March 31, 1980\r\nBirthPlace: CUTA, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rea.ramirez@deped.gov.ph\r\nExtensionName: \r\nFirstName: REA\r\nFullName: REA G. RAMIREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: GABOG\r\nMobileNumber: 09684934474\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: TULO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 48\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: TULO\r\nBasicInformationId: 3821\r\nBirthDate: March 31, 1980\r\nBirthPlace: CUTA, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rea.ramirez@deped.gov.ph\r\nExtensionName: \r\nFirstName: REA\r\nFullName: REA G. RAMIREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: October 26, 2001\r\nGovernmentIdNumber: 0709803\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: 02003562327\r\nHDMF: 1490-0098-1924\r\nHeight: 1.54\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: GABOG\r\nMobileNumber: 09684934474\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: TULO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050120260-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 301-641-077-0000\r\nWeight: 48\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772454	2025-03-19	09:28:17.0736553	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3821\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES, SORO-SORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09913261235\r\nExtensionName: \r\nFirstName: EPITACIA\r\nLastName: CULLERA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772455	2025-03-19	09:28:17.0786375	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3821\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAMPAGA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09171600146\r\nExtensionName: \r\nFirstName: ROWENA\r\nLastName: ASI\r\nMiddleName: T\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772456	2025-03-19	09:28:17.0836220	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3821\r\nCharacterReferenceId: 0\r\nCompanyAddress: ARRIETA ROAD, BARANGAY 20, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09338162523\r\nExtensionName: \r\nFirstName: JAZMIN\r\nLastName: CRELENCIA\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772457	2025-03-19	09:29:13.7316870	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3821\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
772458	2025-03-19	09:29:13.7426505	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3821\r\nSkillId: 0\r\nSkillName: VIDEO EDITING\r\n	admin	Skills	1
772459	2025-03-19	09:29:13.7466371	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3821\r\nOrganizationId: 0\r\nOrganizationName: SCHOOL FACULTY ORGANIZATION\r\n	admin	Organizations	1
772460	2025-03-19	09:29:13.7556070	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3821\r\nOrganizationId: 0\r\nOrganizationName: BOY SCOUT OF THE PHILIPPINES BATANGAS CITY COUNCIL\r\n	admin	Organizations	1
772461	2025-03-19	09:30:49.6558141	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2024 CAMPUS JOURNALIZM BOOTCAMP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
772462	2025-03-19	09:31:04.0871117	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2024 CAMPUS JOURNALISM BOOTCAMP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
772463	2025-03-19	09:32:48.2100596	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3821\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DISTRICT IV DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16343\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772464	2025-03-19	09:32:48.2150430	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3821\r\nEmployeeTrainingId: 0\r\nFromDate: October 31, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: STA. CLARA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: October 31, 2024\r\nTrainingId: 16550\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772465	2025-03-19	09:32:48.2200262	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3821\r\nEmployeeTrainingId: 0\r\nFromDate: August 21, 2024\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 24, 2024\r\nTrainingId: 16617\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772466	2025-03-19	09:32:48.2250096	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3821\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: STA. CLARA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16561\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772467	2025-03-19	09:32:48.2299929	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3821\r\nEmployeeTrainingId: 0\r\nFromDate: July 31, 2023\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: GOKONGWEI BROTHERS FOUNDATION\r\nStatus: \r\nToDate: August 04, 2023\r\nTrainingId: 16592\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772482	2025-03-19	09:41:42.6667849	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 106\r\nAddress2: \r\nBarangay: TABANGAO AMBULONG\r\nBasicInformationId: 3824\r\nBirthDate: March 09, 1969\r\nBirthPlace: TABANGAO AMBULONG, BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: \r\nExtensionName: \r\nFirstName: FRANCISCA\r\nFullName: FRANCISCA DC. ANONUEVO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nMobileNumber: 09162622738\r\nNationality: Filipino\r\nPermanentAddress1: 106\r\nPermanentAddress2: \r\nPermanentBarangay: TABANGAO AMBULONG\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO PROPER\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO PROPER\r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 106\r\nAddress2: \r\nBarangay: TABANGAO AMBULONG\r\nBasicInformationId: 3824\r\nBirthDate: March 09, 1969\r\nBirthPlace: TABANGAO AMBULONG, BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: \r\nExtensionName: \r\nFirstName: FRANCISCA\r\nFullName: FRANCISCA DC. ANONUEVO\r\nGender: Female\r\nGovernmentIdIssuedDate: February 03, 1997\r\nGovernmentIdNumber: 0034705\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02002927386\r\nHDMF: 1490-0090-4511\r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nMobileNumber: 09162622738\r\nNationality: Filipino\r\nPermanentAddress1: 106\r\nPermanentAddress2: \r\nPermanentBarangay: TABANGAO AMBULONG\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO PROPER\r\nPermanentZipCode: 4200\r\nPhilhealth: 19-000560137-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-0820997-8\r\nStreetName: SITIO PROPER\r\nTIN: 132-109-768-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772508	2025-03-19	09:57:34.3061575	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3825\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,568.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: July 12, 2011\r\n	admin	Experiences	1
772509	2025-03-19	09:57:34.3111749	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3825\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 16,995.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
772510	2025-03-19	09:57:34.3161920	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3825\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 15,422.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
772511	2025-03-19	09:57:34.3224362	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3825\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 13, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 13,066.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
772512	2025-03-19	09:57:34.3264497	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3825\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,748.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: July 12, 2008\r\n	admin	Experiences	1
772513	2025-03-19	09:57:34.3324806	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3825\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 11,589.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
772514	2025-03-19	09:57:34.3365249	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3825\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 12, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 10,535.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
772515	2025-03-19	09:57:34.3415407	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3825\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2004\r\nIsGovernmentService: True\r\nMonthlySalary: 10,442.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: July 11, 2005\r\n	admin	Experiences	1
772487	2025-03-19	09:45:42.2703022	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3821\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 02, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 27,608.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
772488	2025-03-19	09:45:42.2772425	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3821\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 26, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 26,901.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-6\r\nStatus: Permanent\r\nToDate: November 01, 2022\r\n	admin	Experiences	1
772489	2025-03-19	09:45:42.2822259	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3821\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 26,600.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: August 05, 2022\r\n	admin	Experiences	1
772490	2025-03-19	09:45:42.2872091	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3821\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 25,038.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
772491	2025-03-19	09:45:42.2921928	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3821\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 23,477.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
772492	2025-03-19	09:45:42.2971758	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3821\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 06, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,915.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
772493	2025-03-19	09:45:42.3021592	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3821\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,619.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: August 05, 2019\r\n	admin	Experiences	1
772494	2025-03-19	09:45:42.3071426	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3821\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,963.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
772495	2025-03-19	09:45:42.3121257	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3821\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 20,326.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
772496	2025-03-19	09:45:42.3171092	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3821\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 06, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,111.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
772497	2025-03-19	09:45:42.3220926	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3821\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,496.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: August 05, 2016\r\n	admin	Experiences	1
772498	2025-03-19	09:45:42.3270758	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3821\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 07, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 18,922.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
772499	2025-03-19	09:45:42.3320591	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3821\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 18,735.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: August 06, 2013\r\n	admin	Experiences	1
772500	2025-03-19	09:45:42.3360457	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3821\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 17,318.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
772501	2025-03-19	09:45:42.3420258	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3821\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 07, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 15,900.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
772502	2025-03-19	09:45:42.3460123	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3821\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 15,649.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: August 06, 2010\r\n	admin	Experiences	1
772503	2025-03-19	09:45:42.3519924	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3821\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 14,198.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
772504	2025-03-19	09:45:42.3559790	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3821\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,026.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
772505	2025-03-19	09:45:42.3609623	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3821\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 06, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,933.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
772506	2025-03-19	09:45:42.3659458	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3821\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 10, 2004\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Substitute\r\nToDate: August 31, 2004\r\n	admin	Experiences	1
772507	2025-03-19	09:49:03.1041153	<Undetected>	Update	BasicInformationId: 3821\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 13015\r\nFromDate: August 26, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 26,901.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-6\r\nStatus: Permanent\r\nToDate: November 01, 2022\r\n	BasicInformationId: 3821\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 13015\r\nFromDate: August 06, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 26,901.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-6\r\nStatus: Permanent\r\nToDate: November 01, 2022\r\n	admin	Experiences	1
772530	2025-03-19	10:05:58.6626703	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 0265\r\nAddress2: \r\nBarangay: STA. CLARA\r\nBasicInformationId: 0\r\nBirthDate: August 31, 1967\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jean.abacan@deped.gov.ph\r\nExtensionName: \r\nFirstName: JEAN\r\nFullName: JEAN M. ABACAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ABACAN\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nMobileNumber: 09175172621\r\nNationality: Filipino\r\nPermanentAddress1: 0265\r\nPermanentAddress2: \r\nPermanentBarangay: STA. CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 58\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772516	2025-03-19	09:57:34.3465569	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3825\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 10,188.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: November 30, 2003\r\n	admin	Experiences	1
772517	2025-03-19	09:57:34.3516610	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3825\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 2001\r\n	admin	Experiences	1
772518	2025-03-19	09:57:34.3556741	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3825\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
772519	2025-03-19	09:57:34.3607037	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3825\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: November 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
772520	2025-03-19	09:57:34.3657483	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3825\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 04, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 7,309.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: October 31, 1997\r\n	admin	Experiences	1
772521	2025-03-19	10:02:35.3880158	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3825\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
772522	2025-03-19	10:02:35.3930467	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3825\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
772523	2025-03-19	10:02:35.3980464	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3825\r\nRecognitionId: 0\r\nRecognitionName: BRONZE SERVICE AWARD (BOY SCOUT OF THE PHILIPPINES)\r\n	admin	Recognitions	1
772524	2025-03-19	10:02:35.4032965	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3825\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
772525	2025-03-19	10:02:35.4083397	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3825\r\nEmployeeTrainingId: 0\r\nFromDate: December 05, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: December 07, 2024\r\nTrainingId: 16331\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772526	2025-03-19	10:02:35.4133561	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3825\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY DISTRICT IV\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 11543\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772527	2025-03-19	10:02:35.4186025	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3825\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16482\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772528	2025-03-19	10:02:35.4226806	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3825\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16357\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772529	2025-03-19	10:02:35.4276802	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3825\r\nEmployeeTrainingId: 0\r\nFromDate: January 25, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY DISTRICT IV\r\nStatus: \r\nToDate: January 25, 2024\r\nTrainingId: 16346\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772532	2025-03-19	10:06:24.7376339	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3825\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES SORO-SORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09913261235\r\nExtensionName: \r\nFirstName: EPITACIA\r\nLastName: CULLERA\r\nMiddleName: C.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772535	2025-03-19	10:06:24.7578950	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 1692 / 11 / 11\r\nAddress2: \r\nBarangay: SANTA CLARA\r\nBasicInformationId: 3825\r\nBirthDate: January 28, 1974\r\nBirthPlace: MARINDUQUE\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jeannette.noche001@deped.gov.ph\r\nExtensionName: \r\nFirstName: JEANNETE\r\nFullName: JEANNETE D. NOCHE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: NOCHE\r\nMaidenName: \r\nMiddleName: DIZON\r\nMobileNumber: 09350887064\r\nNationality: Filipino\r\nPermanentAddress1: 1692 / 11 / 11\r\nPermanentAddress2: \r\nPermanentBarangay: SANTA CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PCAD\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PCAD\r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 1692 / 11 / 11\r\nAddress2: \r\nBarangay: SANTA CLARA\r\nBasicInformationId: 3825\r\nBirthDate: January 28, 1974\r\nBirthPlace: MARINDUQUE\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jeannette.noche001@deped.gov.ph\r\nExtensionName: \r\nFirstName: JEANNETE\r\nFullName: JEANNETE D. NOCHE\r\nGender: Female\r\nGovernmentIdIssuedDate: May 25, 1999\r\nGovernmentIdNumber: 0556055\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC LICENSE\r\nGSIS: 02003003625\r\nHDMF: 1490-0085-0816\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: NOCHE\r\nMaidenName: \r\nMiddleName: DIZON\r\nMobileNumber: 09350887064\r\nNationality: Filipino\r\nPermanentAddress1: 1692 / 11 / 11\r\nPermanentAddress2: \r\nPermanentBarangay: SANTA CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PCAD\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000013883-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PCAD\r\nTIN: 183-219-434-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772540	2025-03-19	10:11:52.8983665	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SIMLONG\r\nBasicInformationId: 0\r\nBirthDate: January 30, 1975\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lovella.ramirez@deped.gov.ph\r\nExtensionName: \r\nFirstName: LOVELLA\r\nFullName: LOVELLA B. RAMIREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.46\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: BACLAO\r\nMobileNumber: 09605313209\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SIMLONG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 54\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772541	2025-03-19	10:11:52.9116490	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3829\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09988404003\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALBERTO\r\nFullName: ALBERTO BALMES RAMIREZ\r\nGender: Male\r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: BALMES\r\nOccupation: LEADMAN OPERATOR\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
772542	2025-03-19	10:11:52.9116490	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3829\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: VIRGILIO\r\nFullName: VIRGILIO DESPABELADERAS BACLAO\r\nGender: Male\r\nLastName: BACLAO\r\nMaidenName: \r\nMiddleName: DESPABELADERAS\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
772543	2025-03-19	10:11:52.9116490	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3829\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LORENZA\r\nFullName: LORENZA MAYUGA DE CASTRO\r\nGender: Female\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: MAYUGA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
772544	2025-03-19	10:11:52.9116490	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3829\r\nBirthDate: September 28, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ABBY LORRAINE\r\nFullName: ABBY LORRAINE B. RAMIREZ\r\nGender: Female\r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: B.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772545	2025-03-19	10:11:52.9116490	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3829\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
772548	2025-03-19	10:14:21.7225320	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3829\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1982\r\nDateTo: 1988\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: DIVINE CHILD ACADEMY\r\nYearGraduated: 1988\r\n	admin	EducationalBackgrounds	1
772549	2025-03-19	10:14:21.7349625	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3829\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1988\r\nDateTo: 1992\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1992\r\n	admin	EducationalBackgrounds	1
772536	2025-03-19	10:08:00.9742213	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 513\r\nAddress2: \r\nBarangay: TULO\r\nBasicInformationId: 0\r\nBirthDate: March 22, 1973\r\nBirthPlace: TULO, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lorena.guardiano001@deped.gov.ph\r\nExtensionName: \r\nFirstName: LORENA\r\nFullName: LORENA A. GUARDIANO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.47\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GUARDIANO\r\nMaidenName: \r\nMiddleName: ARELLANO\r\nMobileNumber: 09091997660\r\nNationality: Filipino\r\nPermanentAddress1: 513\r\nPermanentAddress2: \r\nPermanentBarangay: TULO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 47\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772537	2025-03-19	10:08:00.9842850	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3827\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
772538	2025-03-19	10:10:43.0741679	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: KUMINTANG ILAYA\r\nBasicInformationId: 0\r\nBirthDate: January 17, 1970\r\nBirthPlace: CORCUERA, ROMBLON\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: margelen.fampulme@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARGELEN\r\nFullName: MARGELEN F. FAMPULME\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: FAMPULME\r\nMaidenName: \r\nMiddleName: FAJILAN\r\nMobileNumber: 09605313229\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 40\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772539	2025-03-19	10:10:43.0838306	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3828\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
772546	2025-03-19	10:13:14.4909918	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK 14A LOT 29\r\nAddress2: CAMELLA SOLAMENTE\r\nBarangay: SORO-SORO KARSADA\r\nBasicInformationId: 0\r\nBirthDate: February 10, 1970\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: guillerma.mendoza001@deped.gov.ph\r\nExtensionName: \r\nFirstName: GUILLERMA\r\nFullName: GUILLERMA R. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: RAMOS\r\nMobileNumber: 09954629717\r\nNationality: Filipino\r\nPermanentAddress1: BLK 14A LOT 29\r\nPermanentAddress2: CAMELLA SOLAMENTE\r\nPermanentBarangay: SORO-SORO KARSADA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: CALLE SEVILLA\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: CALLE SEVILLA\r\nTIN: \r\nWeight: 40\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772547	2025-03-19	10:13:14.5008941	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3830\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
772557	2025-03-19	10:15:04.4546481	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3826\r\nBirthDate: December 08, 1996\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JEAN CHRISTDEL\r\nFullName: JEAN CHRISTDEL MACARAIG ABACAN\r\nGender: Male\r\nLastName: ABACAN\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772558	2025-03-19	10:15:04.4586346	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3826\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RODEL\r\nFullName: RODEL VILLANUEVA ABACAN\r\nGender: Male\r\nLastName: ABACAN\r\nMaidenName: \r\nMiddleName: VILLANUEVA\r\nOccupation: OFW\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
772550	2025-03-19	10:14:21.7459623	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3829\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1992\r\nDateTo: 1996\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 1996\r\n	admin	EducationalBackgrounds	1
772551	2025-03-19	10:14:21.7774672	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3829\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2000\r\nDateTo: 2000\r\nEducationalAttainment: 18 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
772552	2025-03-19	10:14:21.7901017	<Undetected>	Update	BasicInformationId: 3829\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09988404003\r\nEmployeeRelativeId: 4101\r\nExtensionName: \r\nFirstName: ALBERTO\r\nFullName: ALBERTO BALMES RAMIREZ\r\nGender: Male\r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: BALMES\r\nOccupation: LEADMAN OPERATOR\r\nRelationship: Husband\r\n	BasicInformationId: 3829\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09988404003\r\nEmployeeRelativeId: 4101\r\nExtensionName: \r\nFirstName: ALBERTO\r\nFullName: ALBERTO RAMIREZ\r\nGender: Male\r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: BALMES\r\nOccupation: LEADMAN OPERATOR\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
772553	2025-03-19	10:14:21.7951013	<Undetected>	Update	BasicInformationId: 3829\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4102\r\nExtensionName: \r\nFirstName: VIRGILIO\r\nFullName: VIRGILIO DESPABELADERAS BACLAO\r\nGender: Male\r\nLastName: BACLAO\r\nMaidenName: \r\nMiddleName: DESPABELADERAS\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3829\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4102\r\nExtensionName: \r\nFirstName: VIRGILIO\r\nFullName: VIRGILIO BACLAO\r\nGender: Male\r\nLastName: BACLAO\r\nMaidenName: \r\nMiddleName: DESPABELADERAS\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
772554	2025-03-19	10:14:21.8001016	<Undetected>	Update	BasicInformationId: 3829\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4103\r\nExtensionName: \r\nFirstName: LORENZA\r\nFullName: LORENZA MAYUGA DE CASTRO\r\nGender: Female\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: MAYUGA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3829\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4103\r\nExtensionName: \r\nFirstName: LORENZA\r\nFullName: LORENZA DE CASTRO\r\nGender: Female\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: MAYUGA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
772555	2025-03-19	10:14:21.8051016	<Undetected>	Update	BasicInformationId: 3829\r\nBirthDate: September 28, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4104\r\nExtensionName: \r\nFirstName: ABBY LORRAINE\r\nFullName: ABBY LORRAINE B. RAMIREZ\r\nGender: Female\r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: B.\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3829\r\nBirthDate: September 28, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4104\r\nExtensionName: \r\nFirstName: ABBY LORRAINE\r\nFullName: ABBY LORRAINE RAMIREZ\r\nGender: Female\r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: B.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772556	2025-03-19	10:14:21.8091013	<Undetected>	Update	BasicInformationId: 3829\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3626\r\n	BasicInformationId: 3829\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3626\r\n	admin	Questionnaires	1
772575	2025-03-19	10:39:22.1299550	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3829\r\nDateOfExamination: August 25, 1996\r\nDateOfRelease: January 30, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 25, 1996\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 002235\r\nPlaceOfExamination: FEATI, MANILA\r\nRating: 75.50\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
772576	2025-03-19	10:39:22.1349695	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3829\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,004.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-7\r\nStatus: Permanent\r\nToDate: March 19, 2025\r\n	admin	Experiences	1
772577	2025-03-19	10:39:22.1400075	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3829\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 06, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 30,924.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-7\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
772578	2025-03-19	10:39:22.1450549	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3829\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,162.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-6\r\nStatus: Permanent\r\nToDate: May 05, 2024\r\n	admin	Experiences	1
772643	2025-03-19	10:50:15.9037298	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3829\r\nCharacterReferenceId: 0\r\nCompanyAddress: P. HERRERA ST. BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09618306429\r\nExtensionName: \r\nFirstName: ELIZA\r\nLastName: NEBRIDA\r\nMiddleName: B.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772560	2025-03-19	10:20:36.7736250	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3826\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1974\r\nDateTo: 1980\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: STA CLARA ELEMENTARY SCHOOL\r\nYearGraduated: 1980\r\n	admin	EducationalBackgrounds	1
772561	2025-03-19	10:20:36.7776115	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3826\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1980\r\nDateTo: 1984\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1984\r\n	admin	EducationalBackgrounds	1
772562	2025-03-19	10:20:36.7875782	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3826\r\nCourse: \r\nCourseId: 1329\r\nCourseOrMajor: \r\nDateFrom: 1984\r\nDateTo: 1988\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY\r\nYearGraduated: 1988\r\n	admin	EducationalBackgrounds	1
772563	2025-03-19	10:20:36.7925617	<Undetected>	Update	BasicInformationId: 3826\r\nBirthDate: December 08, 1996\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4105\r\nExtensionName: \r\nFirstName: JEAN CHRISTDEL\r\nFullName: JEAN CHRISTDEL MACARAIG ABACAN\r\nGender: Male\r\nLastName: ABACAN\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3826\r\nBirthDate: December 08, 1996\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4105\r\nExtensionName: \r\nFirstName: JEAN CHRISTDEL\r\nFullName: JEAN CHRISTDEL ABACAN\r\nGender: Male\r\nLastName: ABACAN\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772564	2025-03-19	10:20:36.7995383	<Undetected>	Update	BasicInformationId: 3826\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4106\r\nExtensionName: \r\nFirstName: RODEL\r\nFullName: RODEL VILLANUEVA ABACAN\r\nGender: Male\r\nLastName: ABACAN\r\nMaidenName: \r\nMiddleName: VILLANUEVA\r\nOccupation: OFW\r\nRelationship: Husband\r\n	BasicInformationId: 3826\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4106\r\nExtensionName: \r\nFirstName: RODEL\r\nFullName: RODEL ABACAN\r\nGender: Male\r\nLastName: ABACAN\r\nMaidenName: \r\nMiddleName: VILLANUEVA\r\nOccupation: OFW\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
772565	2025-03-19	10:25:03.4968925	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 0265\r\nAddress2: \r\nBarangay: STA. CLARA\r\nBasicInformationId: 3826\r\nBirthDate: August 31, 1967\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jean.abacan@deped.gov.ph\r\nExtensionName: \r\nFirstName: JEAN\r\nFullName: JEAN M. ABACAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ABACAN\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nMobileNumber: 09175172621\r\nNationality: Filipino\r\nPermanentAddress1: 0265\r\nPermanentAddress2: \r\nPermanentBarangay: STA. CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 58\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 0265\r\nAddress2: \r\nBarangay: STA. CLARA\r\nBasicInformationId: 3826\r\nBirthDate: August 31, 1967\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jean.abacan@deped.gov.ph\r\nExtensionName: \r\nFirstName: JEAN\r\nFullName: JEAN M. ABACAN\r\nGender: Female\r\nGovernmentIdIssuedDate: March 13, 1999\r\nGovernmentIdNumber: 0539256\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02002992550\r\nHDMF: 1490-0091-8053\r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ABACAN\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nMobileNumber: 09175172621\r\nNationality: Filipino\r\nPermanentAddress1: 0265\r\nPermanentAddress2: \r\nPermanentBarangay: STA. CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000044259-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 174-047-117-0000\r\nWeight: 58\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772566	2025-03-19	10:27:05.1472066	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3826\r\nCharacterReferenceId: 0\r\nCompanyAddress: STA. CLARA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09655021727\r\nExtensionName: \r\nFirstName: GEMMA\r\nLastName: MACALINDONG\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772567	2025-03-19	10:27:05.1521900	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3826\r\nCharacterReferenceId: 0\r\nCompanyAddress: ALANGILAN, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09183779813\r\nExtensionName: \r\nFirstName: ANDREA GINA\r\nLastName: MENDOZA\r\nMiddleName: I\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772568	2025-03-19	10:27:05.1591665	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3826\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAMPAGA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09173046309\r\nExtensionName: \r\nFirstName: CECILIA\r\nLastName: ZARASPE\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772569	2025-03-19	10:34:12.4472313	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3826\r\nEmployeeTrainingId: 0\r\nFromDate: February 06, 2023\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS ICTY/STA. CLARA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: February 08, 2023\r\nTrainingId: 16557\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772570	2025-03-19	10:34:12.4522143	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3826\r\nEmployeeTrainingId: 0\r\nFromDate: July 20, 2022\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY/STA. CLARA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: July 20, 2022\r\nTrainingId: 16584\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772571	2025-03-19	10:34:12.4571979	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3826\r\nEmployeeTrainingId: 0\r\nFromDate: February 02, 2022\r\nHours: 12\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: February 04, 2022\r\nTrainingId: 16585\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772572	2025-03-19	10:34:12.4621813	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3826\r\nEmployeeTrainingId: 0\r\nFromDate: May 19, 2021\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - REGION IV-A\r\nStatus: \r\nToDate: May 21, 2021\r\nTrainingId: 15393\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772573	2025-03-19	10:34:12.4661678	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3826\r\nEmployeeTrainingId: 0\r\nFromDate: March 15, 2021\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - NATIONAL\r\nStatus: \r\nToDate: March 19, 2021\r\nTrainingId: 16516\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772574	2025-03-19	10:34:24.3619647	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3826\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
772605	2025-03-19	10:43:25.8439069	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3826\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 33,403.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
772606	2025-03-19	10:43:25.8488902	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3826\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 31,863.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
772607	2025-03-19	10:43:25.8538734	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3826\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: March 03, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 30,323.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
772608	2025-03-19	10:43:25.8588568	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3826\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 30,028.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: March 02, 2023\r\n	admin	Experiences	1
772609	2025-03-19	10:43:25.8638403	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3826\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 28,471.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
772610	2025-03-19	10:43:25.8678270	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3826\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 26,915.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
772611	2025-03-19	10:43:25.8738069	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3826\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: March 03, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 25,358.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
772612	2025-03-19	10:43:25.8777934	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3826\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 25,067.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: March 02, 2020\r\n	admin	Experiences	1
772613	2025-03-19	10:43:25.8827769	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3826\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 23,510.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
772713	2025-03-19	11:20:43.1083391	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3827\r\nSkillId: 0\r\nSkillName: READING\r\n	admin	Skills	1
772579	2025-03-19	10:39:22.1500715	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3829\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 30,622.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-6\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
772580	2025-03-19	10:39:22.1550983	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3829\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,065.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-6\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
772581	2025-03-19	10:39:22.1591122	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3829\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 06, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 27,509.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-6\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
772582	2025-03-19	10:39:22.1641601	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3829\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 27,210.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: February 05, 2021\r\n	admin	Experiences	1
772583	2025-03-19	10:39:22.1691776	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3829\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 25,653.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
772584	2025-03-19	10:39:22.1741923	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3829\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 24,096.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
772585	2025-03-19	10:39:22.1838772	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3829\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 06, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 23,212.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
772586	2025-03-19	10:39:22.1912820	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3829\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 22,942.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: February 05, 2018\r\n	admin	Experiences	1
772587	2025-03-19	10:39:22.1965331	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3829\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 22,113.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
772588	2025-03-19	10:39:22.2017413	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3829\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 21,315.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
772589	2025-03-19	10:39:22.2057484	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3829\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 06, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 20,545.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
772590	2025-03-19	10:39:22.2107710	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3829\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 20,341.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: February 05, 2015\r\n	admin	Experiences	1
772591	2025-03-19	10:39:22.2157876	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3829\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 06, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 18,805.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
772592	2025-03-19	10:39:22.2207955	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3829\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,568.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: February 05, 2012\r\n	admin	Experiences	1
772593	2025-03-19	10:39:22.2248142	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3829\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 16,995.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
772594	2025-03-19	10:39:22.2298218	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3829\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 15,422.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
772595	2025-03-19	10:39:22.2348302	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3829\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 06, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 13,066.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
772596	2025-03-19	10:39:22.2398381	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3829\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,748.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: February 05, 2009\r\n	admin	Experiences	1
772597	2025-03-19	10:39:22.2438720	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3829\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 11,589.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
772598	2025-03-19	10:39:22.2488806	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3829\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 06, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 10,535.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
772599	2025-03-19	10:39:22.2539364	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3829\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 10,442.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: February 05, 2006\r\n	admin	Experiences	1
772600	2025-03-19	10:39:22.2589536	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3829\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 10,188.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 2005\r\n	admin	Experiences	1
772601	2025-03-19	10:39:22.2629595	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3829\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 2004\r\n	admin	Experiences	1
772602	2025-03-19	10:39:22.2679668	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3829\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
772603	2025-03-19	10:39:22.2731308	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3829\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: October 25, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
772604	2025-03-19	10:41:25.6392817	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EXPLICIT TEACHING LITERACY AND NUMERACY VIA SCHOOL LEARNING ACTION CELL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
772627	2025-03-19	10:44:26.9536522	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT IV TRAINING OF K-3 TEACHERS FOR THE EARLY LANGUAGE LITERACY AND NUMERACY (ELLN) PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
772628	2025-03-19	10:45:47.6758728	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3829\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
772629	2025-03-19	10:45:47.6828929	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3829\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
772630	2025-03-19	10:45:47.6869397	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3829\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
772631	2025-03-19	10:45:47.6929498	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3829\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16400\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772632	2025-03-19	10:45:47.6969570	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3829\r\nEmployeeTrainingId: 0\r\nFromDate: October 31, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: October 31, 2024\r\nTrainingId: 16618\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772633	2025-03-19	10:45:47.7029781	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3829\r\nEmployeeTrainingId: 0\r\nFromDate: January 25, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: January 25, 2024\r\nTrainingId: 16346\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772634	2025-03-19	10:45:47.7069844	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3829\r\nEmployeeTrainingId: 0\r\nFromDate: February 06, 2023\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: February 08, 2023\r\nTrainingId: 16557\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772635	2025-03-19	10:45:47.7120025	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3829\r\nEmployeeTrainingId: 0\r\nFromDate: January 04, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: January 04, 2023\r\nTrainingId: 16619\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772641	2025-03-19	10:50:15.8915945	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3829\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES SORO-SORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09913261235\r\nExtensionName: \r\nFirstName: EPITACIA\r\nLastName: CULLERA\r\nMiddleName: C. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772642	2025-03-19	10:50:15.8956077	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3829\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN EAST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175057894\r\nExtensionName: \r\nFirstName: AUREA\r\nLastName: OCON\r\nMiddleName: P.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772614	2025-03-19	10:43:25.8877601	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3826\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 22,674.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
772615	2025-03-19	10:43:25.8947369	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3826\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: March 03, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 21,868.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
772616	2025-03-19	10:43:25.9007169	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3826\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 21,626.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: March 02, 2017\r\n	admin	Experiences	1
772617	2025-03-19	10:43:25.9116803	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3826\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 20,870.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
772618	2025-03-19	10:43:25.9156668	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3826\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: March 03, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 20,140.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
772619	2025-03-19	10:43:25.9216469	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3826\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 19,940.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: March 02, 2014\r\n	admin	Experiences	1
772620	2025-03-19	10:43:25.9256335	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3826\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,333.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
772621	2025-03-19	10:43:25.9316136	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3826\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: March 03, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 16,726.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
772622	2025-03-19	10:43:25.9356001	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3826\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 15,900.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: March 02, 2011\r\n	admin	Experiences	1
772623	2025-03-19	10:43:25.9415803	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3826\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 14,483.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
772624	2025-03-19	10:43:25.9465635	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3826\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,328.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-2\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
772625	2025-03-19	10:43:25.9515469	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3826\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 11,207.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-2\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
772626	2025-03-19	10:43:25.9565302	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3826\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 10,188.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-2\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
772636	2025-03-19	10:49:35.2730963	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3826\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 2005\r\n	admin	Experiences	1
772637	2025-03-19	10:49:35.2810699	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3826\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 18, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
772638	2025-03-19	10:49:35.2850561	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3826\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 23, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 17, 2001\r\n	admin	Experiences	1
772639	2025-03-19	10:49:35.2910365	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3826\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 20, 1990\r\nIsGovernmentService: True\r\nMonthlySalary: 3,102.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Substitute\r\nToDate: October 08, 1991\r\n	admin	Experiences	1
772640	2025-03-19	10:49:35.2950230	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3826\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 16, 1989\r\nIsGovernmentService: True\r\nMonthlySalary: 1,764.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Substitute\r\nToDate: March 31, 1990\r\n	admin	Experiences	1
772645	2025-03-19	10:55:02.8487470	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3826\r\nDateOfExamination: March 13, 1999\r\nDateOfRelease: August 31, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: March 13, 1999\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0539256\r\nPlaceOfExamination: LUCENA CITY\r\nRating: \r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
772654	2025-03-19	11:05:10.2972305	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3827\r\nBirthDate: May 01, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LARRA JOYCE\r\nFullName: LARRA JOYCE ARELLANO GUARDIANO\r\nGender: Male\r\nLastName: GUARDIANO\r\nMaidenName: \r\nMiddleName: ARELLANO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772655	2025-03-19	11:05:10.3022137	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3827\r\nBirthDate: December 06, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALYSSA MAE\r\nFullName: ALYSSA MAE ARELLANO GUARDIANO\r\nGender: Male\r\nLastName: GUARDIANO\r\nMaidenName: \r\nMiddleName: ARELLANO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772656	2025-03-19	11:05:10.3121803	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3827\r\nBirthDate: January 05, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: AIRA LOREEN\r\nFullName: AIRA LOREEN ARELLANO GUARDIANO\r\nGender: Male\r\nLastName: GUARDIANO\r\nMaidenName: \r\nMiddleName: ARELLANO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772657	2025-03-19	11:05:10.3161669	<Undetected>	Update	BasicInformationId: 3827\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3624\r\n	BasicInformationId: 3827\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3624\r\n	admin	Questionnaires	1
772658	2025-03-19	11:07:57.6715238	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: FIRST HONORABLE MENTION\r\nBasicInformationId: 3827\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1985\r\nDateTo: 1986\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: PAHARANG ELEMENTARY SCHOOL\r\nYearGraduated: 1986\r\n	admin	EducationalBackgrounds	1
772644	2025-03-19	10:50:15.9087462	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SIMLONG\r\nBasicInformationId: 3829\r\nBirthDate: January 30, 1975\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lovella.ramirez@deped.gov.ph\r\nExtensionName: \r\nFirstName: LOVELLA\r\nFullName: LOVELLA B. RAMIREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.46\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: BACLAO\r\nMobileNumber: 09605313209\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SIMLONG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 54\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SIMLONG\r\nBasicInformationId: 3829\r\nBirthDate: January 30, 1975\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lovella.ramirez@deped.gov.ph\r\nExtensionName: \r\nFirstName: LOVELLA\r\nFullName: LOVELLA B. RAMIREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 30, 2027\r\nGovernmentIdNumber: 0022235\r\nGovernmentIdPlaceIssued: BATANGAS\r\nGovernmentIssuedId: PRC ID / LICENSE\r\nGSIS: 02003004338\r\nHDMF: 1490-0090-8163\r\nHeight: 1.46\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RAMIREZ\r\nMaidenName: \r\nMiddleName: BACLAO\r\nMobileNumber: 09605313209\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SIMLONG\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 19-000531325-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 443-548-000-0000\r\nWeight: 54\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772646	2025-03-19	10:56:35.6189475	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: STO. NINO VILLAGE\r\nBarangay: BOLBOK\r\nBasicInformationId: 0\r\nBirthDate: October 13, 1978\r\nBirthPlace: ISLA VERDE, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ethel.saligao001@deped.gov.ph\r\nExtensionName: \r\nFirstName: ETHEL\r\nFullName: ETHEL M. SALIGAO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.56\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SALIGAO\r\nMaidenName: \r\nMiddleName: MEDINA\r\nMobileNumber: 09085648378\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: STO. NINO VILLAGE\r\nPermanentBarangay: BOLBOK\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: WOODPECKER STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: WOODPECKER STREET\r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772647	2025-03-19	10:56:35.6308224	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3831\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RENATO\r\nFullName: RENATO MACATANGAY SALIGAO\r\nGender: Male\r\nLastName: SALIGAO\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
772648	2025-03-19	10:56:35.6308224	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3831\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ANDRES\r\nFullName: ANDRES MACARAIG MEDINA\r\nGender: Male\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
772649	2025-03-19	10:56:35.6308224	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3831\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ELEANOR\r\nFullName: ELEANOR MEDINA MENDOZA\r\nGender: Female\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: MEDINA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
772650	2025-03-19	10:56:35.6308224	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3831\r\nBirthDate: December 27, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: AERON CHRISTIAN\r\nFullName: AERON CHRISTIAN MEDINA SALIGAO\r\nGender: Male\r\nLastName: SALIGAO\r\nMaidenName: \r\nMiddleName: MEDINA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772651	2025-03-19	10:56:35.6308224	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3831\r\nBirthDate: March 14, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FAYE CAMILLE\r\nFullName: FAYE CAMILLE MEDINA SALIGAO\r\nGender: Female\r\nLastName: SALIGAO\r\nMaidenName: \r\nMiddleName: MEDINA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772652	2025-03-19	10:56:35.6308224	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3831\r\nBirthDate: February 01, 2019\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: NATHANIEL COLLINS\r\nFullName: NATHANIEL COLLINS M. SALIGAO\r\nGender: Male\r\nLastName: SALIGAO\r\nMaidenName: \r\nMiddleName: M.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772653	2025-03-19	10:56:35.6318998	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3831\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
772659	2025-03-19	11:07:57.6885418	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: FIRST HONORABLE MENTION\r\nBasicInformationId: 3827\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1986\r\nDateTo: 1990\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: PAHARANG NATIONAL HIGH SCHOOL\r\nYearGraduated: 1990\r\n	admin	EducationalBackgrounds	1
772660	2025-03-19	11:07:57.7005024	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: OUTSTANDING ACADEMIC ACHIEVEMENT\r\nBasicInformationId: 3827\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1990\r\nDateTo: 1994\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES\r\nYearGraduated: 1994\r\n	admin	EducationalBackgrounds	1
772661	2025-03-19	11:07:57.7044885	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3827\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 1997\r\nEducationalAttainment: 30 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
772662	2025-03-19	11:07:57.7124621	<Undetected>	Update	BasicInformationId: 3827\r\nBirthDate: May 01, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4113\r\nExtensionName: \r\nFirstName: LARRA JOYCE\r\nFullName: LARRA JOYCE ARELLANO GUARDIANO\r\nGender: Male\r\nLastName: GUARDIANO\r\nMaidenName: \r\nMiddleName: ARELLANO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3827\r\nBirthDate: May 01, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4113\r\nExtensionName: \r\nFirstName: LARRA JOYCE\r\nFullName: LARRA JOYCE GUARDIANO\r\nGender: Male\r\nLastName: GUARDIANO\r\nMaidenName: \r\nMiddleName: ARELLANO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772663	2025-03-19	11:07:57.7164484	<Undetected>	Update	BasicInformationId: 3827\r\nBirthDate: December 06, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4114\r\nExtensionName: \r\nFirstName: ALYSSA MAE\r\nFullName: ALYSSA MAE ARELLANO GUARDIANO\r\nGender: Male\r\nLastName: GUARDIANO\r\nMaidenName: \r\nMiddleName: ARELLANO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3827\r\nBirthDate: December 06, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4114\r\nExtensionName: \r\nFirstName: ALYSSA MAE\r\nFullName: ALYSSA MAE GUARDIANO\r\nGender: Male\r\nLastName: GUARDIANO\r\nMaidenName: \r\nMiddleName: ARELLANO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772664	2025-03-19	11:07:57.7254185	<Undetected>	Update	BasicInformationId: 3827\r\nBirthDate: January 05, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4115\r\nExtensionName: \r\nFirstName: AIRA LOREEN\r\nFullName: AIRA LOREEN ARELLANO GUARDIANO\r\nGender: Male\r\nLastName: GUARDIANO\r\nMaidenName: \r\nMiddleName: ARELLANO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3827\r\nBirthDate: January 05, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4115\r\nExtensionName: \r\nFirstName: AIRA LOREEN\r\nFullName: AIRA LOREEN GUARDIANO\r\nGender: Male\r\nLastName: GUARDIANO\r\nMaidenName: \r\nMiddleName: ARELLANO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772665	2025-03-19	11:08:35.6410149	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3827\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LARRY\r\nFullName: LARRY MENDOZA GUARDIANO\r\nGender: Male\r\nLastName: GUARDIANO\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: MULTI-SKILLED TECHNICIAN\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
772666	2025-03-19	11:10:05.3599857	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 513\r\nAddress2: \r\nBarangay: TULO\r\nBasicInformationId: 3827\r\nBirthDate: March 22, 1973\r\nBirthPlace: TULO, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lorena.guardiano001@deped.gov.ph\r\nExtensionName: \r\nFirstName: LORENA\r\nFullName: LORENA A. GUARDIANO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.47\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GUARDIANO\r\nMaidenName: \r\nMiddleName: ARELLANO\r\nMobileNumber: 09091997660\r\nNationality: Filipino\r\nPermanentAddress1: 513\r\nPermanentAddress2: \r\nPermanentBarangay: TULO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 47\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 513\r\nAddress2: \r\nBarangay: TULO\r\nBasicInformationId: 3827\r\nBirthDate: March 22, 1973\r\nBirthPlace: TULO, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lorena.guardiano001@deped.gov.ph\r\nExtensionName: \r\nFirstName: LORENA\r\nFullName: LORENA A. GUARDIANO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 16, 1998\r\nGovernmentIdNumber: 0276964\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02003004204\r\nHDMF: 1490-0083-3341\r\nHeight: 1.47\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GUARDIANO\r\nMaidenName: \r\nMiddleName: ARELLANO\r\nMobileNumber: 09091997660\r\nNationality: Filipino\r\nPermanentAddress1: 513\r\nPermanentAddress2: \r\nPermanentBarangay: TULO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000007124-1\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 166-399-082-0000\r\nWeight: 47\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772667	2025-03-19	11:10:05.3719456	<Undetected>	Update	BasicInformationId: 3827\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4116\r\nExtensionName: \r\nFirstName: LARRY\r\nFullName: LARRY MENDOZA GUARDIANO\r\nGender: Male\r\nLastName: GUARDIANO\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: MULTI-SKILLED TECHNICIAN\r\nRelationship: Husband\r\n	BasicInformationId: 3827\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4116\r\nExtensionName: \r\nFirstName: LARRY\r\nFullName: LARRY GUARDIANO\r\nGender: Male\r\nLastName: GUARDIANO\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: MULTI-SKILLED TECHNICIAN\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
772668	2025-03-19	11:12:25.4616750	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3827\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES, SORO-SORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09913261235\r\nExtensionName: \r\nFirstName: EPITACIA\r\nLastName: CULLERA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772669	2025-03-19	11:12:25.4656623	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3827\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN EAST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175057884\r\nExtensionName: \r\nFirstName: AUREA\r\nLastName: OCON\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772670	2025-03-19	11:12:25.4716424	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3827\r\nCharacterReferenceId: 0\r\nCompanyAddress: P. HERRERA STREET, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09618306429\r\nExtensionName: \r\nFirstName: ELIZA\r\nLastName: NEBRIDA\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772671	2025-03-19	11:16:38.4182771	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3827\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION/NATIONAL EDUCATORS OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16400\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772672	2025-03-19	11:16:38.4262507	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3827\r\nEmployeeTrainingId: 0\r\nFromDate: October 31, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY/STA. CLARA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: October 31, 2024\r\nTrainingId: 16618\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772673	2025-03-19	11:16:38.4312340	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3827\r\nEmployeeTrainingId: 0\r\nFromDate: April 01, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: April 01, 2023\r\nTrainingId: 16598\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772674	2025-03-19	11:16:38.4362174	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3827\r\nEmployeeTrainingId: 0\r\nFromDate: February 06, 2023\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY/STA. CLARA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: February 08, 2023\r\nTrainingId: 16557\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772675	2025-03-19	11:16:38.4402040	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3827\r\nEmployeeTrainingId: 0\r\nFromDate: July 20, 2022\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY/STA. CLARA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: July 20, 2022\r\nTrainingId: 16594\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772676	2025-03-19	11:19:22.5540831	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: SECOND HONORABLE MENTION\r\nBasicInformationId: 3831\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1984\r\nDateTo: 1991\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL\r\nYearGraduated: 1991\r\n	admin	EducationalBackgrounds	1
772677	2025-03-19	11:19:22.5591198	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3831\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1991\r\nDateTo: 1995\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGUSTIN NATIONAL HIGH SCHOOL\r\nYearGraduated: 1995\r\n	admin	EducationalBackgrounds	1
772678	2025-03-19	11:19:22.5641199	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3831\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1995\r\nDateTo: 1999\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY\r\nYearGraduated: 1999\r\n	admin	EducationalBackgrounds	1
772679	2025-03-19	11:19:22.5684921	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3831\r\nCourse: \r\nCourseId: 1284\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2015\r\nEducationalAttainment: MASTER'S GRADUATE W/45 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
772680	2025-03-19	11:19:22.5735411	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3831\r\nDateOfExamination: August 08, 1999\r\nDateOfRelease: October 13, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 08, 1999\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0592304\r\nPlaceOfExamination: V. MAPA HIGH SCHOOL QUIAPO, MANILA\r\nRating: 75.0\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS (LET)\r\n	admin	Eligibilities	1
772681	2025-03-19	11:19:22.5785588	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3831\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 35,049.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: March 19, 2025\r\n	admin	Experiences	1
772682	2025-03-19	11:19:22.5835768	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3831\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,733.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: January 31, 2025\r\n	admin	Experiences	1
772683	2025-03-19	11:19:22.5875890	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3831\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,599.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
772684	2025-03-19	11:19:22.5930325	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3831\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,633.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
772685	2025-03-19	11:19:22.5980492	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3831\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 30,111.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
772686	2025-03-19	11:19:22.6030750	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3831\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,798.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: January 31, 2022\r\n	admin	Experiences	1
772687	2025-03-19	11:19:22.6071096	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3831\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 28,276.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
772688	2025-03-19	11:19:22.6124346	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3831\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 26,754.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
772689	2025-03-19	11:19:22.6174507	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3831\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 25,232.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
772690	2025-03-19	11:19:22.6225483	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3831\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 23,801.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: January 31, 2019\r\n	admin	Experiences	1
772691	2025-03-19	11:19:22.6265608	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3831\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 22,942.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
772692	2025-03-19	11:19:22.6318203	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3831\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 22,133.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
772693	2025-03-19	11:19:22.6368577	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3831\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 21,868.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: May 31, 2017\r\n	admin	Experiences	1
772694	2025-03-19	11:19:22.6418733	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3831\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 21,091.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
772695	2025-03-19	11:19:22.6468844	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3831\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 07, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 20,341.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
772696	2025-03-19	11:19:22.6518842	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3831\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 20,140.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: August 06, 2013\r\n	admin	Experiences	1
772697	2025-03-19	11:19:22.6558839	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3831\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,568.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
772698	2025-03-19	11:19:22.6618842	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3831\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 07, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 16,995.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
772699	2025-03-19	11:19:22.6669744	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3831\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 16,726.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: August 06, 2010\r\n	admin	Experiences	1
772700	2025-03-19	11:19:22.6744489	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3831\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 15,119.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
772701	2025-03-19	11:19:22.6796814	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3831\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,748.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
772702	2025-03-19	11:19:22.6838756	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3831\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 06, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 11,589.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
772703	2025-03-19	11:19:22.6890575	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3831\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 11,207.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: August 05, 2007\r\n	admin	Experiences	1
772704	2025-03-19	11:19:22.6940738	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3831\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,188.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
772705	2025-03-19	11:19:22.6981199	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3831\r\nCompanyInstitution: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 15, 2003\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2006\r\n	admin	Experiences	1
772706	2025-03-19	11:19:22.7031283	<Undetected>	Update	BasicInformationId: 3831\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4107\r\nExtensionName: \r\nFirstName: RENATO\r\nFullName: RENATO MACATANGAY SALIGAO\r\nGender: Male\r\nLastName: SALIGAO\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3831\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4107\r\nExtensionName: \r\nFirstName: RENATO\r\nFullName: RENATO SALIGAO\r\nGender: Male\r\nLastName: SALIGAO\r\nMaidenName: \r\nMiddleName: MACATANGAY\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
772707	2025-03-19	11:19:22.7081363	<Undetected>	Update	BasicInformationId: 3831\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4108\r\nExtensionName: \r\nFirstName: ANDRES\r\nFullName: ANDRES MACARAIG MEDINA\r\nGender: Male\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3831\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4108\r\nExtensionName: \r\nFirstName: ANDRES\r\nFullName: ANDRES MEDINA\r\nGender: Male\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
772708	2025-03-19	11:19:22.7131441	<Undetected>	Update	BasicInformationId: 3831\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4109\r\nExtensionName: \r\nFirstName: ELEANOR\r\nFullName: ELEANOR MEDINA MENDOZA\r\nGender: Female\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: MEDINA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3831\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4109\r\nExtensionName: \r\nFirstName: ELEANOR\r\nFullName: ELEANOR MENDOZA\r\nGender: Female\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: MEDINA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
772709	2025-03-19	11:19:22.7171569	<Undetected>	Update	BasicInformationId: 3831\r\nBirthDate: December 27, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4110\r\nExtensionName: \r\nFirstName: AERON CHRISTIAN\r\nFullName: AERON CHRISTIAN MEDINA SALIGAO\r\nGender: Male\r\nLastName: SALIGAO\r\nMaidenName: \r\nMiddleName: MEDINA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3831\r\nBirthDate: December 27, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4110\r\nExtensionName: \r\nFirstName: AERON CHRISTIAN\r\nFullName: AERON CHRISTIAN SALIGAO\r\nGender: Male\r\nLastName: SALIGAO\r\nMaidenName: \r\nMiddleName: MEDINA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772710	2025-03-19	11:19:22.7232239	<Undetected>	Update	BasicInformationId: 3831\r\nBirthDate: March 14, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4111\r\nExtensionName: \r\nFirstName: FAYE CAMILLE\r\nFullName: FAYE CAMILLE MEDINA SALIGAO\r\nGender: Female\r\nLastName: SALIGAO\r\nMaidenName: \r\nMiddleName: MEDINA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3831\r\nBirthDate: March 14, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4111\r\nExtensionName: \r\nFirstName: FAYE CAMILLE\r\nFullName: FAYE CAMILLE SALIGAO\r\nGender: Female\r\nLastName: SALIGAO\r\nMaidenName: \r\nMiddleName: MEDINA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772711	2025-03-19	11:19:22.7272299	<Undetected>	Update	BasicInformationId: 3831\r\nBirthDate: February 01, 2019\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4112\r\nExtensionName: \r\nFirstName: NATHANIEL COLLINS\r\nFullName: NATHANIEL COLLINS M. SALIGAO\r\nGender: Male\r\nLastName: SALIGAO\r\nMaidenName: \r\nMiddleName: M.\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3831\r\nBirthDate: February 01, 2019\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4112\r\nExtensionName: \r\nFirstName: NATHANIEL COLLINS\r\nFullName: NATHANIEL COLLINS SALIGAO\r\nGender: Male\r\nLastName: SALIGAO\r\nMaidenName: \r\nMiddleName: M.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772712	2025-03-19	11:19:22.7322578	<Undetected>	Update	BasicInformationId: 3831\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3628\r\n	BasicInformationId: 3831\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3628\r\n	admin	Questionnaires	1
772715	2025-03-19	11:21:15.4039883	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MASTER CLASSES OF KINDERGARTEN, GRADE 1, 4, AND 7 ON ALL LEARNING AREAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
772716	2025-03-19	11:22:35.5918095	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL TRAINING OF RECEIVING TEACHERS ON SNED\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
772717	2025-03-19	11:24:45.9231038	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3831\r\nSkillId: 0\r\nSkillName: N/A\r\n	admin	Skills	1
772718	2025-03-19	11:24:45.9271106	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3831\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
772719	2025-03-19	11:24:45.9331303	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3831\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
772720	2025-03-19	11:24:45.9371371	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3831\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16593\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772714	2025-03-19	11:20:43.1193026	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3827\r\nDateOfExamination: May 29, 1994\r\nDateOfRelease: March 22, 2024\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: May 29, 1994\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0276994\r\nPlaceOfExamination: BATANGAS NATIONAL HIGH SCHOOL\r\nRating: 75.54\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
772729	2025-03-19	11:34:25.9769204	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3827\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 36,022.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-6\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
772730	2025-03-19	11:34:25.9819036	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3827\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 28, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 34,472.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-6\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
772731	2025-03-19	11:34:25.9868870	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3827\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 34,144.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: August 27, 2024\r\n	admin	Experiences	1
772732	2025-03-19	11:34:25.9918704	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3827\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 32,594.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
772733	2025-03-19	11:34:25.9968536	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3827\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 31,072.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
772734	2025-03-19	11:34:26.0008405	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3827\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 28, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 29,550.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
772735	2025-03-19	11:34:26.0058236	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3827\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 29,225.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: September 27, 2021\r\n	admin	Experiences	1
772736	2025-03-19	11:34:26.0108070	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3827\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 27,703.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
772737	2025-03-19	11:34:26.0157903	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3827\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 26,181.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
772738	2025-03-19	11:34:26.0207737	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3827\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 28, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 25,091.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
773256	2025-03-20	09:16:44.7674602	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3841\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES. SORO-SOROR BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09913261235\r\nExtensionName: \r\nFirstName: EPITACIA\r\nLastName: CULLERA\r\nMiddleName: C. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772721	2025-03-19	11:24:45.9421802	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3831\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16620\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772722	2025-03-19	11:24:45.9472069	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3831\r\nEmployeeTrainingId: 0\r\nFromDate: November 18, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: November 20, 2024\r\nTrainingId: 16621\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772723	2025-03-19	11:24:45.9522146	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3831\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16611\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772724	2025-03-19	11:24:45.9562214	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3831\r\nEmployeeTrainingId: 0\r\nFromDate: January 25, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: January 25, 2023\r\nTrainingId: 16346\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772725	2025-03-19	11:30:07.3494180	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3831\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES SORO-SORO BATANGS CITY\r\nCompanyName: \r\nContactNumber: 09913261235\r\nExtensionName: \r\nFirstName: EPITACIA\r\nLastName: CULLERA\r\nMiddleName: C. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772726	2025-03-19	11:30:07.3534197	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3831\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN EAST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175057894\r\nExtensionName: \r\nFirstName: AUREA\r\nLastName: OCON\r\nMiddleName: P.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772727	2025-03-19	11:30:07.3588698	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3831\r\nCharacterReferenceId: 0\r\nCompanyAddress: P. HERRERA ST. BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09618306429\r\nExtensionName: \r\nFirstName: ELIZA \r\nLastName: NEBRIDA\r\nMiddleName: B.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772728	2025-03-19	11:30:07.3638989	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: STO. NINO VILLAGE\r\nBarangay: BOLBOK\r\nBasicInformationId: 3831\r\nBirthDate: October 13, 1978\r\nBirthPlace: ISLA VERDE, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ethel.saligao001@deped.gov.ph\r\nExtensionName: \r\nFirstName: ETHEL\r\nFullName: ETHEL M. SALIGAO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.56\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SALIGAO\r\nMaidenName: \r\nMiddleName: MEDINA\r\nMobileNumber: 09085648378\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: STO. NINO VILLAGE\r\nPermanentBarangay: BOLBOK\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: WOODPECKER STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: WOODPECKER STREET\r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: STO. NINO VILLAGE\r\nBarangay: BOLBOK\r\nBasicInformationId: 3831\r\nBirthDate: October 13, 1978\r\nBirthPlace: ISLA VERDE, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ethel.saligao001@deped.gov.ph\r\nExtensionName: \r\nFirstName: ETHEL\r\nFullName: ETHEL M. SALIGAO\r\nGender: Female\r\nGovernmentIdIssuedDate: October 21, 1999\r\nGovernmentIdNumber: 0592304\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02002992405\r\nHDMF: 1490-0093-6250\r\nHeight: 1.56\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SALIGAO\r\nMaidenName: \r\nMiddleName: MEDINA\r\nMobileNumber: 09085648378\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: STO. NINO VILLAGE\r\nPermanentBarangay: BOLBOK\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: WOODPECKER STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-020556485-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3404961-1\r\nStreetName: WOODPECKER STREET\r\nTIN: 933-463-065-0000\r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772760	2025-03-19	11:38:04.9205633	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 9 / LOT 25\r\nAddress2: MERCEDES HOMES\r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 0\r\nBirthDate: May 23, 1975\r\nBirthPlace: IMELDA. SAN JUAN, BATANGAS\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: epitacia.cullera@deped.gov.ph\r\nExtensionName: \r\nFirstName: EPITACIA\r\nFullName: EPITACIA C. CULLERA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.51\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CULLERA\r\nMaidenName: \r\nMiddleName: CONCHA\r\nMobileNumber: 09089915567\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 9 / LOT 25\r\nPermanentAddress2: MERCEDES HOMES\r\nPermanentBarangay: SOROSORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: CAMBRIDGE ST.\r\nPermanentZipCode: 4226\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: CAMBRIDGE ST.\r\nTIN: \r\nWeight: 62\r\nZipCode: 4226\r\n	admin	BasicInformation	1
772761	2025-03-19	11:38:04.9661299	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3832\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09913263595\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MERICK\r\nFullName: MERICK IBON CULLERA\r\nGender: Male\r\nLastName: CULLERA\r\nMaidenName: \r\nMiddleName: IBON\r\nOccupation: SELF EMPLOYED\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
772739	2025-03-19	11:34:26.0257569	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3827\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 24,799.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: September 27, 2018\r\n	admin	Experiences	1
772740	2025-03-19	11:34:26.0307403	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3827\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 23,780.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
772741	2025-03-19	11:34:26.0357237	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3827\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 22,804.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
772742	2025-03-19	11:34:26.0397103	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3827\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 29, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 21,867.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
772743	2025-03-19	11:34:26.0456903	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3827\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 27, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 21,650.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: January 28, 2013\r\n	admin	Experiences	1
772744	2025-03-19	11:34:26.0496771	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3827\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 21,436.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: September 26, 2012\r\n	admin	Experiences	1
772745	2025-03-19	11:34:26.0546602	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3827\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 19,658.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
772746	2025-03-19	11:34:26.0596436	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3827\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 17,880.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
772747	2025-03-19	11:34:26.0646270	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3827\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 28, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 16,101.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
772748	2025-03-19	11:34:26.0686135	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3827\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 15,422.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: September 27, 2009\r\n	admin	Experiences	1
772749	2025-03-19	11:34:26.0745938	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3827\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 13,066.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
772750	2025-03-19	11:34:26.0795770	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3827\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 11,878.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
772751	2025-03-19	11:34:26.0845602	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3827\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,798.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
772752	2025-03-19	11:34:26.0885469	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3827\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: December 01, 2003\r\nIsGovernmentService: True\r\nMonthlySalary: 10,535.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2006\r\n	admin	Experiences	1
772753	2025-03-19	11:34:26.0935302	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3827\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 01, 2003\r\nIsGovernmentService: True\r\nMonthlySalary: 10,188.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-2\r\nStatus: Permanent\r\nToDate: November 30, 2003\r\n	admin	Experiences	1
772754	2025-03-19	11:34:26.0985136	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3827\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: September 30, 2003\r\n	admin	Experiences	1
772755	2025-03-19	11:34:26.1034969	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3827\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: May 30, 2001\r\n	admin	Experiences	1
772756	2025-03-19	11:34:26.1074835	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3827\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
772757	2025-03-19	11:34:26.1134636	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3827\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 7,309.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: October 31, 1997\r\n	admin	Experiences	1
772758	2025-03-19	11:34:26.1174502	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3827\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 20, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 6,013.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1996\r\n	admin	Experiences	1
772759	2025-03-19	11:34:26.1224336	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3827\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 16, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 6,013.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Substitute\r\nToDate: August 19, 1996\r\n	admin	Experiences	1
772762	2025-03-19	11:38:04.9661299	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3832\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ELPIDIO\r\nFullName: ELPIDIO RAMOS CONCHA\r\nGender: Male\r\nLastName: CONCHA\r\nMaidenName: \r\nMiddleName: RAMOS\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
772763	2025-03-19	11:38:04.9671289	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3832\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: AGATONA\r\nFullName: AGATONA UMALI PATAL\r\nGender: Female\r\nLastName: PATAL\r\nMaidenName: \r\nMiddleName: UMALI\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
772764	2025-03-19	11:38:04.9671289	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3832\r\nBirthDate: October 24, 1996\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOHN LEXTER\r\nFullName: JOHN LEXTER CONCHA CULLERA\r\nGender: Male\r\nLastName: CULLERA\r\nMaidenName: \r\nMiddleName: CONCHA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772765	2025-03-19	11:38:04.9671289	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3832\r\nBirthDate: March 08, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JERICK LIONEL\r\nFullName: JERICK LIONEL CONCHA CULLERA\r\nGender: Male\r\nLastName: CULLERA\r\nMaidenName: \r\nMiddleName: CONCHA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772766	2025-03-19	11:38:04.9681279	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3832\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
772767	2025-03-19	11:43:02.8998406	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: THIRD HONOR\r\nBasicInformationId: 3832\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1983\r\nDateTo: 1988\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BARUALTE ELEMENTARY SCHOOL\r\nYearGraduated: 1988\r\n	admin	EducationalBackgrounds	1
772768	2025-03-19	11:43:02.9048462	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: SALUTATORIAN\r\nBasicInformationId: 3832\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1989\r\nDateTo: 1993\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SOUTHERN SAN JUAN ACADEMY\r\nYearGraduated: 1993\r\n	admin	EducationalBackgrounds	1
772769	2025-03-19	11:43:02.9152789	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3832\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 1997\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY\r\nYearGraduated: 1997\r\n	admin	EducationalBackgrounds	1
772770	2025-03-19	11:43:02.9192871	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3832\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2015\r\nDateTo: 2017\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: ST. JUDE COLLEGE\r\nYearGraduated: 2017\r\n	admin	EducationalBackgrounds	1
772771	2025-03-19	11:43:02.9267529	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3832\r\nCourse: \r\nCourseId: 1349\r\nCourseOrMajor: \r\nDateFrom: 2017\r\nDateTo: 2021\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: \r\nSchoolorUniversity: ST. DOMINIC SAVIO COLLEGE\r\nYearGraduated: 2021\r\n	admin	EducationalBackgrounds	1
772772	2025-03-19	11:43:02.9307668	<Undetected>	Update	BasicInformationId: 3832\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09913263595\r\nEmployeeRelativeId: 4117\r\nExtensionName: \r\nFirstName: MERICK\r\nFullName: MERICK IBON CULLERA\r\nGender: Male\r\nLastName: CULLERA\r\nMaidenName: \r\nMiddleName: IBON\r\nOccupation: SELF EMPLOYED\r\nRelationship: Husband\r\n	BasicInformationId: 3832\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09913263595\r\nEmployeeRelativeId: 4117\r\nExtensionName: \r\nFirstName: MERICK\r\nFullName: MERICK CULLERA\r\nGender: Male\r\nLastName: CULLERA\r\nMaidenName: \r\nMiddleName: IBON\r\nOccupation: SELF EMPLOYED\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
772773	2025-03-19	11:43:02.9387753	<Undetected>	Update	BasicInformationId: 3832\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4118\r\nExtensionName: \r\nFirstName: ELPIDIO\r\nFullName: ELPIDIO RAMOS CONCHA\r\nGender: Male\r\nLastName: CONCHA\r\nMaidenName: \r\nMiddleName: RAMOS\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3832\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4118\r\nExtensionName: \r\nFirstName: ELPIDIO\r\nFullName: ELPIDIO CONCHA\r\nGender: Male\r\nLastName: CONCHA\r\nMaidenName: \r\nMiddleName: RAMOS\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
772774	2025-03-19	11:43:02.9437864	<Undetected>	Update	BasicInformationId: 3832\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4119\r\nExtensionName: \r\nFirstName: AGATONA\r\nFullName: AGATONA UMALI PATAL\r\nGender: Female\r\nLastName: PATAL\r\nMaidenName: \r\nMiddleName: UMALI\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3832\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4119\r\nExtensionName: \r\nFirstName: AGATONA\r\nFullName: AGATONA PATAL\r\nGender: Female\r\nLastName: PATAL\r\nMaidenName: \r\nMiddleName: UMALI\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
772775	2025-03-19	11:43:02.9488027	<Undetected>	Update	BasicInformationId: 3832\r\nBirthDate: October 24, 1996\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4120\r\nExtensionName: \r\nFirstName: JOHN LEXTER\r\nFullName: JOHN LEXTER CONCHA CULLERA\r\nGender: Male\r\nLastName: CULLERA\r\nMaidenName: \r\nMiddleName: CONCHA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3832\r\nBirthDate: October 24, 1996\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4120\r\nExtensionName: \r\nFirstName: JOHN LEXTER\r\nFullName: JOHN LEXTER CULLERA\r\nGender: Male\r\nLastName: CULLERA\r\nMaidenName: \r\nMiddleName: CONCHA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772776	2025-03-19	11:43:02.9533407	<Undetected>	Update	BasicInformationId: 3832\r\nBirthDate: March 08, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4121\r\nExtensionName: \r\nFirstName: JERICK LIONEL\r\nFullName: JERICK LIONEL CONCHA CULLERA\r\nGender: Male\r\nLastName: CULLERA\r\nMaidenName: \r\nMiddleName: CONCHA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3832\r\nBirthDate: March 08, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4121\r\nExtensionName: \r\nFirstName: JERICK LIONEL\r\nFullName: JERICK LIONEL CULLERA\r\nGender: Male\r\nLastName: CULLERA\r\nMaidenName: \r\nMiddleName: CONCHA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772777	2025-03-19	11:43:02.9583574	<Undetected>	Update	BasicInformationId: 3832\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3629\r\n	BasicInformationId: 3832\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3629\r\n	admin	Questionnaires	1
772778	2025-03-19	11:45:17.7627950	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3832\r\nDateOfExamination: August 23, 1997\r\nDateOfRelease: May 23, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 23, 1997\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0292812\r\nPlaceOfExamination: MANUEL L. QUEZON UNIVERSITY\r\nRating: 76.2\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS \r\n	admin	Eligibilities	1
772779	2025-03-19	13:16:17.9085834	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3828\r\nBirthDate: March 31, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CHRISTINE ANGELIC\r\nFullName: CHRISTINE ANGELIC FAJILAN FAMPULME\r\nGender: Male\r\nLastName: FAMPULME\r\nMaidenName: \r\nMiddleName: FAJILAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772780	2025-03-19	13:16:17.9205442	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3828\r\nBirthDate: February 04, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GRACELY MAE\r\nFullName: GRACELY MAE FAJILAN FAMPULME\r\nGender: Male\r\nLastName: FAMPULME\r\nMaidenName: \r\nMiddleName: FAJILAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772781	2025-03-19	13:16:17.9255274	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3828\r\nBirthDate: August 08, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: KATE LYLE\r\nFullName: KATE LYLE FAJILAN FAMPULME\r\nGender: Male\r\nLastName: FAMPULME\r\nMaidenName: \r\nMiddleName: FAJILAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772782	2025-03-19	13:16:17.9344980	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3828\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROLLIE\r\nFullName: ROLLIE FRONDA FAMPULME\r\nGender: Male\r\nLastName: FAMPULME\r\nMaidenName: \r\nMiddleName: FRONDA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
772783	2025-03-19	13:16:17.9394806	<Undetected>	Update	BasicInformationId: 3828\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3625\r\n	BasicInformationId: 3828\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3625\r\n	admin	Questionnaires	1
772784	2025-03-19	13:18:32.3502212	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: FIRST HONORABLE MENTION\r\nBasicInformationId: 3828\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1977\r\nDateTo: 1982\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: CORCUERA CENTRAL SCHOOL\r\nYearGraduated: 1982\r\n	admin	EducationalBackgrounds	1
772785	2025-03-19	13:18:32.3611852	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: FIRST HONORABLE MENTION\r\nBasicInformationId: 3828\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1983\r\nDateTo: 1987\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: CORCUERA ACADEMY\r\nYearGraduated: 1987\r\n	admin	EducationalBackgrounds	1
772786	2025-03-19	13:18:32.3661686	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3828\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1989\r\nDateTo: 1992\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 1992\r\n	admin	EducationalBackgrounds	1
772787	2025-03-19	13:18:32.3751382	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3828\r\nCourse: \r\nCourseId: 1367\r\nCourseOrMajor: \r\nDateFrom: 1995\r\nDateTo: 2007\r\nEducationalAttainment: 42 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
772788	2025-03-19	13:18:32.3801216	<Undetected>	Update	BasicInformationId: 3828\r\nBirthDate: March 31, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4122\r\nExtensionName: \r\nFirstName: CHRISTINE ANGELIC\r\nFullName: CHRISTINE ANGELIC FAJILAN FAMPULME\r\nGender: Male\r\nLastName: FAMPULME\r\nMaidenName: \r\nMiddleName: FAJILAN\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3828\r\nBirthDate: March 31, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4122\r\nExtensionName: \r\nFirstName: CHRISTINE ANGELIC\r\nFullName: CHRISTINE ANGELIC FAMPULME\r\nGender: Male\r\nLastName: FAMPULME\r\nMaidenName: \r\nMiddleName: FAJILAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772789	2025-03-19	13:18:32.3851047	<Undetected>	Update	BasicInformationId: 3828\r\nBirthDate: February 04, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4123\r\nExtensionName: \r\nFirstName: GRACELY MAE\r\nFullName: GRACELY MAE FAJILAN FAMPULME\r\nGender: Male\r\nLastName: FAMPULME\r\nMaidenName: \r\nMiddleName: FAJILAN\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3828\r\nBirthDate: February 04, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4123\r\nExtensionName: \r\nFirstName: GRACELY MAE\r\nFullName: GRACELY MAE FAMPULME\r\nGender: Male\r\nLastName: FAMPULME\r\nMaidenName: \r\nMiddleName: FAJILAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772790	2025-03-19	13:18:32.3900883	<Undetected>	Update	BasicInformationId: 3828\r\nBirthDate: August 08, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4124\r\nExtensionName: \r\nFirstName: KATE LYLE\r\nFullName: KATE LYLE FAJILAN FAMPULME\r\nGender: Male\r\nLastName: FAMPULME\r\nMaidenName: \r\nMiddleName: FAJILAN\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3828\r\nBirthDate: August 08, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4124\r\nExtensionName: \r\nFirstName: KATE LYLE\r\nFullName: KATE LYLE FAMPULME\r\nGender: Male\r\nLastName: FAMPULME\r\nMaidenName: \r\nMiddleName: FAJILAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772791	2025-03-19	13:18:32.3950718	<Undetected>	Update	BasicInformationId: 3828\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4125\r\nExtensionName: \r\nFirstName: ROLLIE\r\nFullName: ROLLIE FRONDA FAMPULME\r\nGender: Male\r\nLastName: FAMPULME\r\nMaidenName: \r\nMiddleName: FRONDA\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3828\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4125\r\nExtensionName: \r\nFirstName: ROLLIE\r\nFullName: ROLLIE FAMPULME\r\nGender: Male\r\nLastName: FAMPULME\r\nMaidenName: \r\nMiddleName: FRONDA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
772792	2025-03-19	13:21:36.6664256	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: KUMINTANG ILAYA\r\nBasicInformationId: 3828\r\nBirthDate: January 17, 1970\r\nBirthPlace: CORCUERA, ROMBLON\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: margelen.fampulme@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARGELEN\r\nFullName: MARGELEN F. FAMPULME\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: FAMPULME\r\nMaidenName: \r\nMiddleName: FAJILAN\r\nMobileNumber: 09605313229\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 40\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: KUMINTANG ILAYA\r\nBasicInformationId: 3828\r\nBirthDate: January 17, 1970\r\nBirthPlace: CORCUERA, ROMBLON\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: margelen.fampulme@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARGELEN\r\nFullName: MARGELEN F. FAMPULME\r\nGender: Female\r\nGovernmentIdIssuedDate: December 27, 1996\r\nGovernmentIdNumber: 0015629\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC LICENSE\r\nGSIS: 02003004625\r\nHDMF: 1490-0085-4979\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: FAMPULME\r\nMaidenName: \r\nMiddleName: FAJILAN\r\nMobileNumber: 09605313229\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000007117-9\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 177-620-095-0000\r\nWeight: 40\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772793	2025-03-19	13:24:05.3895126	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3828\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES, SORO-SORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09913261235\r\nExtensionName: \r\nFirstName: EPITACIA\r\nLastName: CULLERA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772794	2025-03-19	13:24:05.3944958	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3828\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN EAST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175051894\r\nExtensionName: \r\nFirstName: AUREA\r\nLastName: OCON\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772795	2025-03-19	13:24:05.4004756	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3828\r\nCharacterReferenceId: 0\r\nCompanyAddress: P. HERRERA STREET, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09618306429\r\nExtensionName: \r\nFirstName: ELIZA\r\nLastName: NEBRIDA\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772796	2025-03-19	13:25:40.2748127	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3828\r\nDateOfExamination: May 30, 1993\r\nDateOfRelease: January 17, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: May 30, 1993\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0015629\r\nPlaceOfExamination: BATANGAS CITY SOUTH ELEMENTARY SCHOOL\r\nRating: 72.74\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
772797	2025-03-19	13:26:56.3186348	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT IV GENDER AND DEVELOPMENT TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774373	2025-03-21	15:10:04.8765892	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT-WIDE ROLL-OUT ON EARLY LANGUAGE LITERCY AND NUMERACY (ELLN)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
772798	2025-03-19	13:29:40.8386994	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3828\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16622\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772799	2025-03-19	13:29:40.8436828	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3828\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 4\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16340\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772800	2025-03-19	13:29:40.8486661	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3828\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 20\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16319\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772801	2025-03-19	13:29:40.8536494	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3828\r\nEmployeeTrainingId: 0\r\nFromDate: November 18, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 20, 2024\r\nTrainingId: 16375\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772802	2025-03-19	13:29:40.8586327	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3828\r\nEmployeeTrainingId: 0\r\nFromDate: September 30, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 30, 2024\r\nTrainingId: 16615\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772803	2025-03-19	13:30:00.8514709	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3828\r\nSkillId: 0\r\nSkillName: READING BIBLE AND INFORMATIVE BOOKS\r\n	admin	Skills	1
772804	2025-03-19	13:44:11.9190052	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 59,567.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-5\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
772805	2025-03-19	13:44:11.9239869	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 57,051.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-5\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
772806	2025-03-19	13:44:11.9299668	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 11, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 54,386.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-5\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
772807	2025-03-19	13:44:11.9349504	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 53,610.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-4\r\nStatus: Permanent\r\nToDate: July 10, 2023\r\n	admin	Experiences	1
772808	2025-03-19	13:44:11.9399335	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 52,088.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-4\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
772809	2025-03-19	13:44:11.9449169	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 50,566.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-4\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
772810	2025-03-19	13:44:11.9499003	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 11, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 49,044.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-4\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
772811	2025-03-19	13:44:11.9548835	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 48,281.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-3\r\nStatus: Permanent\r\nToDate: July 10, 2020\r\n	admin	Experiences	1
772812	2025-03-19	13:44:11.9598669	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 46,759.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-3\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
772813	2025-03-19	13:44:11.9648502	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 43,371.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-3\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
772814	2025-03-19	13:44:11.9708301	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 12, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 40,227.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-3\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
772815	2025-03-19	13:44:11.9748169	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 39,685.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-2\r\nStatus: Permanent\r\nToDate: July 11, 2017\r\n	admin	Experiences	1
772816	2025-03-19	13:44:11.9798001	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 36,857.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-2\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
772817	2025-03-19	13:44:11.9847835	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 12, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 34,231.00\r\nPositionHeld: MASTER TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-2\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
772818	2025-03-19	13:44:11.9897669	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 33,859.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: July 11, 2014\r\n	admin	Experiences	1
772819	2025-03-19	13:44:11.9947501	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 11, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 30,474.00\r\nPositionHeld: MASTER TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
772820	2025-03-19	13:44:12.0007303	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 26,305.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-1\r\nStatus: Permanent\r\nToDate: July 10, 2011\r\n	admin	Experiences	1
772821	2025-03-19	13:44:12.0047168	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 25,259.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-1\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
772822	2025-03-19	13:44:12.0106968	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 22,214.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
772823	2025-03-19	13:44:12.0146838	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 23, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 17,059.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
772824	2025-03-19	13:44:12.0206636	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 13,512.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: February 22, 2009\r\n	admin	Experiences	1
772825	2025-03-19	13:44:12.0256476	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 12,284.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
772826	2025-03-19	13:44:12.0306312	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 11,167.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
772827	2025-03-19	13:44:12.0356146	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 11,068.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: January 31, 2007\r\n	admin	Experiences	1
772828	2025-03-19	13:44:12.0405978	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 10,798.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 01, 2005\r\n	admin	Experiences	1
772829	2025-03-19	13:44:12.0455814	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 10,535.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2004\r\n	admin	Experiences	1
772830	2025-03-19	13:44:12.0505644	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 10,033.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
772831	2025-03-19	13:44:12.0555479	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 25, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 9,121.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
772832	2025-03-19	13:44:12.0605315	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: October 25, 1999\r\n	admin	Experiences	1
772833	2025-03-19	13:44:12.0655148	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 7,309.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: October 31, 1997\r\n	admin	Experiences	1
772834	2025-03-19	13:44:12.0704977	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 6,013.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1996\r\n	admin	Experiences	1
772835	2025-03-19	13:44:12.0755287	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 4,902.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1995\r\n	admin	Experiences	1
772836	2025-03-19	13:44:12.0815037	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 06, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 3,902.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1994\r\n	admin	Experiences	1
772869	2025-03-19	13:49:08.9918212	<Undetected>	Update	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 13174\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 26,305.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-1\r\nStatus: Permanent\r\nToDate: July 10, 2011\r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 13174\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 28,305.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-1\r\nStatus: Permanent\r\nToDate: July 10, 2011\r\n	admin	Experiences	1
772870	2025-03-19	13:49:08.9968043	<Undetected>	Update	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 13186\r\nFromDate: November 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: October 25, 1999\r\n	BasicInformationId: 3828\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 13186\r\nFromDate: November 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: October 24, 1999\r\n	admin	Experiences	1
772877	2025-03-19	13:53:34.3223579	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3830\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: VICENTE\r\nFullName: VICENTE CANTOS MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: SECURITY GUARD\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
772878	2025-03-19	13:53:34.3333213	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3830\r\nBirthDate: November 03, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ANIKA ANNE\r\nFullName: ANIKA ANNE RAMOS MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: RAMOS\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772879	2025-03-19	13:53:34.3383045	<Undetected>	Update	BasicInformationId: 3830\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3627\r\n	BasicInformationId: 3830\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3627\r\n	admin	Questionnaires	1
772880	2025-03-19	13:55:38.8982699	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: SECOND HONORS\r\nBasicInformationId: 3830\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1976\r\nDateTo: 1982\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: HALIGUE KANLURAN ELEMENTARY SCHOOL\r\nYearGraduated: 1982\r\n	admin	EducationalBackgrounds	1
772881	2025-03-19	13:55:38.9022566	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: 2ND HONORABLE MENTION\r\nBasicInformationId: 3830\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1982\r\nDateTo: 1986\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: STO. NINO NATIONAL HIGH SCHOOL\r\nYearGraduated: 1986\r\n	admin	EducationalBackgrounds	1
772882	2025-03-19	13:55:38.9132199	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3830\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1986\r\nDateTo: 1990\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MATHEMATICS\r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 1990\r\n	admin	EducationalBackgrounds	1
772883	2025-03-19	13:55:38.9182032	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3830\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2006\r\nDateTo: 2008\r\nEducationalAttainment: 45 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
772884	2025-03-19	13:55:38.9291667	<Undetected>	Update	BasicInformationId: 3830\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4126\r\nExtensionName: \r\nFirstName: VICENTE\r\nFullName: VICENTE CANTOS MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: SECURITY GUARD\r\nRelationship: Husband\r\n	BasicInformationId: 3830\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4126\r\nExtensionName: \r\nFirstName: VICENTE\r\nFullName: VICENTE MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: SECURITY GUARD\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
773527	2025-03-20	15:05:10.4562255	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2024 SELECTION / SCREENING OF LEARNING RESOURCE EVALUATORS (LRES) ILLUSTRATORS AND LAYOUT ARTISTS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
772837	2025-03-19	13:45:24.6651726	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3832\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 72,577.00\r\nPositionHeld: PRINCIPAL IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: March 19, 2025\r\n	admin	Experiences	1
772838	2025-03-19	13:45:24.6692104	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3832\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 75,952.00\r\nPositionHeld: PRINCIPAL IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-2\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
772839	2025-03-19	13:45:24.6742155	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3832\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 74,836.00\r\nPositionHeld: PRINCIPAL IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: June 30, 2024\r\n	admin	Experiences	1
772840	2025-03-19	13:45:24.6792158	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3832\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 74,836.00\r\nPositionHeld: PRINCIPAL IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: June 30, 2024\r\n	admin	Experiences	1
772841	2025-03-19	13:45:24.6842155	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3832\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 69,963.00\r\nPositionHeld: PRINCIPAL IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
772842	2025-03-19	13:45:24.6887119	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3832\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 68,415.00\r\nPositionHeld: PRINCIPAL IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 22-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
772843	2025-03-19	13:45:24.6937303	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3832\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BALETE ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 60,901.00\r\nPositionHeld: PRINCIPAL III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-1\r\nStatus: Permanent\r\nToDate: June 30, 2021\r\n	admin	Experiences	1
772844	2025-03-19	13:45:24.6987581	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3832\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BALETE ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 59,353.00\r\nPositionHeld: PRINCIPAL III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
772845	2025-03-19	13:45:24.7037582	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3832\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BALETE ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 57,805.00\r\nPositionHeld: PRINCIPAL III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
772846	2025-03-19	13:45:24.7077578	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3832\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BALETE ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: November 19, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 52,554.00\r\nPositionHeld: PRINCIPAL III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 20-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
772847	2025-03-19	13:45:24.7130090	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3832\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 47,037.00\r\nPositionHeld: PRINCIPAL II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: November 18, 2018\r\n	admin	Experiences	1
772848	2025-03-19	13:45:24.7180253	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3832\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 43,250.00\r\nPositionHeld: PRINCIPAL II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
772849	2025-03-19	13:45:24.7230416	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3832\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 13, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 39,768.00\r\nPositionHeld: PRINCIPAL II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 19-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
772850	2025-03-19	13:45:24.7270749	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3832\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BUCAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 36,409.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-1\r\nStatus: Permanent\r\nToDate: June 12, 2016\r\n	admin	Experiences	1
772851	2025-03-19	13:45:24.7320930	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3832\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BANABA CENTER ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: September 08, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 33,859.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
772852	2025-03-19	13:45:24.7371201	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3832\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BANABA CENTER ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 33,859.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: September 07, 2014\r\n	admin	Experiences	1
772853	2025-03-19	13:45:24.7421312	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3832\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BANABA CENTER ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 26,878.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
772854	2025-03-19	13:45:24.7471315	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3832\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: May 16, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 21,969.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
772855	2025-03-19	13:45:24.7521313	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3832\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BANABA CENTER ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: September 04, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 18,166.00\r\nPositionHeld: TEACHER III (TIC)\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: May 15, 2011\r\n	admin	Experiences	1
772856	2025-03-19	13:45:24.7571316	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3832\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BANABA CENTER ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 17,880.00\r\nPositionHeld: TEACHER III (TIC)\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: September 03, 2010\r\n	admin	Experiences	1
772857	2025-03-19	13:45:24.7621312	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3832\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BANABA CENTER ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 16,101.00\r\nPositionHeld: TEACHER III (TIC)\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
772858	2025-03-19	13:45:24.7661312	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3832\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 13,512.00\r\nPositionHeld: TEACHER III (TIC)\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
772859	2025-03-19	13:45:24.7711312	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3832\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 02, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,284.00\r\nPositionHeld: TEACHER III (TIC)\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
772860	2025-03-19	13:45:24.7761315	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3832\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BANABA EAST ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: September 03, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 12,284.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 01, 2008\r\n	admin	Experiences	1
772861	2025-03-19	13:45:24.7811315	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3832\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BANABA EAST ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 11,589.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: September 02, 2007\r\n	admin	Experiences	1
772862	2025-03-19	13:45:24.7851312	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3832\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BANABA EAST ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 02, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,535.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
772863	2025-03-19	13:45:24.7911314	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3832\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BANABA EAST ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: October 17, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 10,358.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-2\r\nStatus: Permanent\r\nToDate: January 31, 2007\r\n	admin	Experiences	1
772864	2025-03-19	13:45:24.7951315	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3832\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BANABA EAST ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 10,442.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-2\r\nStatus: Permanent\r\nToDate: October 16, 2005\r\n	admin	Experiences	1
772865	2025-03-19	13:45:24.8001311	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3832\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / MELDA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-2\r\nStatus: Permanent\r\nToDate: December 31, 2004\r\n	admin	Experiences	1
772866	2025-03-19	13:45:24.8051312	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3832\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / MELDA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
772867	2025-03-19	13:45:24.8101313	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3832\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / PINAGBAYAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 21, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
772868	2025-03-19	13:47:03.0194898	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: UPSKILLING OF EDUCATION LEADERS ON THE EARLY LANGUAGE LITERACY AND NUMERACY (ELLN) WITH FOCUS ON THE SCIENCE OF READING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
772871	2025-03-19	13:50:29.2845758	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION TRAINING ON ALTERNATIVE DELIVERY MODE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
772872	2025-03-19	13:51:15.0556708	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3832\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 27, 2024\r\nTrainingId: 16623\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772873	2025-03-19	13:51:15.0596705	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3832\r\nEmployeeTrainingId: 0\r\nFromDate: November 04, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 08, 2024\r\nTrainingId: 16314\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772874	2025-03-19	13:51:15.0651384	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3832\r\nEmployeeTrainingId: 0\r\nFromDate: October 29, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: October 29, 2024\r\nTrainingId: 16344\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772875	2025-03-19	13:51:15.0701548	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3832\r\nEmployeeTrainingId: 0\r\nFromDate: October 10, 2024\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: October 11, 2024\r\nTrainingId: 16321\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772876	2025-03-19	13:51:15.0752058	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3832\r\nEmployeeTrainingId: 0\r\nFromDate: May 25, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: May 25, 2024\r\nTrainingId: 16624\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772887	2025-03-19	13:57:18.7250286	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3832\r\nSkillId: 0\r\nSkillName: N/A\r\n	admin	Skills	1
772888	2025-03-19	13:57:18.7360468	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3832\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
772889	2025-03-19	13:57:18.7400464	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3832\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
772890	2025-03-19	13:57:18.7461543	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3832\r\nCharacterReferenceId: 0\r\nCompanyAddress: MAHABANG DAHILIG, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175057894\r\nExtensionName: \r\nFirstName: LOLITA\r\nLastName: ASI\r\nMiddleName: T. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772891	2025-03-19	13:57:18.7506511	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3832\r\nCharacterReferenceId: 0\r\nCompanyAddress: TINGA LABAC, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09171483671\r\nExtensionName: \r\nFirstName: DEMETRIA\r\nLastName: ANDAL\r\nMiddleName: P.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772892	2025-03-19	13:57:18.7566652	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3832\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAMPAGA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09451533902\r\nExtensionName: \r\nFirstName: ROWENA\r\nLastName: ASI\r\nMiddleName: T.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772893	2025-03-19	13:57:18.7611038	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 9 / LOT 25\r\nAddress2: MERCEDES HOMES\r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 3832\r\nBirthDate: May 23, 1975\r\nBirthPlace: IMELDA. SAN JUAN, BATANGAS\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: epitacia.cullera@deped.gov.ph\r\nExtensionName: \r\nFirstName: EPITACIA\r\nFullName: EPITACIA C. CULLERA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.51\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CULLERA\r\nMaidenName: \r\nMiddleName: CONCHA\r\nMobileNumber: 09089915567\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 9 / LOT 25\r\nPermanentAddress2: MERCEDES HOMES\r\nPermanentBarangay: SOROSORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: CAMBRIDGE ST.\r\nPermanentZipCode: 4226\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: CAMBRIDGE ST.\r\nTIN: \r\nWeight: 62\r\nZipCode: 4226\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 9 / LOT 25\r\nAddress2: MERCEDES HOMES\r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 3832\r\nBirthDate: May 23, 1975\r\nBirthPlace: IMELDA. SAN JUAN, BATANGAS\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: epitacia.cullera@deped.gov.ph\r\nExtensionName: \r\nFirstName: EPITACIA\r\nFullName: EPITACIA C. CULLERA\r\nGender: Female\r\nGovernmentIdIssuedDate: February 02, 1998\r\nGovernmentIdNumber: 0292812\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: 02002967202\r\nHDMF: 1490-0095-8331\r\nHeight: 1.51\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CULLERA\r\nMaidenName: \r\nMiddleName: CONCHA\r\nMobileNumber: 09089915567\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 9 / LOT 25\r\nPermanentAddress2: MERCEDES HOMES\r\nPermanentBarangay: SOROSORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: CAMBRIDGE ST.\r\nPermanentZipCode: 4226\r\nPhilhealth: 19-000525322-9\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: CAMBRIDGE ST.\r\nTIN: 443-305-300-0000\r\nWeight: 62\r\nZipCode: 4226\r\n	admin	BasicInformation	1
772907	2025-03-19	14:04:10.6277558	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3830\r\nEmployeeTrainingId: 0\r\nFromDate: September 08, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 08, 2024\r\nTrainingId: 16625\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772908	2025-03-19	14:05:43.8484154	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3830\r\nSkillId: 0\r\nSkillName: WRITING\r\n	admin	Skills	1
772909	2025-03-19	14:16:12.2841083	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3830\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 04, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 53,456.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-5\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
773528	2025-03-20	15:05:30.7092525	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FREE HYBRID NATIONAL ORIENTATION SEMINAR ON THE 2022 DEPED EXPANDED CAREER PROGRESSION SYSTEM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
772885	2025-03-19	13:55:38.9391333	<Undetected>	Update	BasicInformationId: 3830\r\nBirthDate: November 03, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4127\r\nExtensionName: \r\nFirstName: ANIKA ANNE\r\nFullName: ANIKA ANNE RAMOS MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: RAMOS\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3830\r\nBirthDate: November 03, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4127\r\nExtensionName: \r\nFirstName: ANIKA ANNE\r\nFullName: ANIKA ANNE MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: RAMOS\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
772886	2025-03-19	13:57:11.3993071	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLK 14A LOT 29\r\nAddress2: CAMELLA SOLAMENTE\r\nBarangay: SORO-SORO KARSADA\r\nBasicInformationId: 3830\r\nBirthDate: February 10, 1970\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: guillerma.mendoza001@deped.gov.ph\r\nExtensionName: \r\nFirstName: GUILLERMA\r\nFullName: GUILLERMA R. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: RAMOS\r\nMobileNumber: 09954629717\r\nNationality: Filipino\r\nPermanentAddress1: BLK 14A LOT 29\r\nPermanentAddress2: CAMELLA SOLAMENTE\r\nPermanentBarangay: SORO-SORO KARSADA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: CALLE SEVILLA\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: CALLE SEVILLA\r\nTIN: \r\nWeight: 40\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK 14A LOT 29\r\nAddress2: CAMELLA SOLAMENTE\r\nBarangay: SORO-SORO KARSADA\r\nBasicInformationId: 3830\r\nBirthDate: February 10, 1970\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: guillerma.mendoza001@deped.gov.ph\r\nExtensionName: \r\nFirstName: GUILLERMA\r\nFullName: GUILLERMA R. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: May 29, 1997\r\nGovernmentIdNumber: 0066417\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02003000882\r\nHDMF: 1490-0088-3243\r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: RAMOS\r\nMobileNumber: 09954629717\r\nNationality: Filipino\r\nPermanentAddress1: BLK 14A LOT 29\r\nPermanentAddress2: CAMELLA SOLAMENTE\r\nPermanentBarangay: SORO-SORO KARSADA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: CALLE SEVILLA\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000007127-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: CALLE SEVILLA\r\nTIN: 163-163-067-0000\r\nWeight: 40\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772894	2025-03-19	13:59:17.1611486	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3830\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES, SORO-SORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09913261235\r\nExtensionName: \r\nFirstName: EPITACIA\r\nLastName: CULLERA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772895	2025-03-19	13:59:17.1691205	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3830\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN EAST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175057894\r\nExtensionName: \r\nFirstName: AUREA\r\nLastName: OCON\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772896	2025-03-19	13:59:17.1741052	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3830\r\nCharacterReferenceId: 0\r\nCompanyAddress: P. HERRERA STREET, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09618306429\r\nExtensionName: \r\nFirstName: ELIZA\r\nLastName: NEBRIDA\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772897	2025-03-19	14:00:30.6716903	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3830\r\nDateOfExamination: October 25, 1992\r\nDateOfRelease: October 02, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: October 25, 1992\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0066417\r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 71.29\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
772902	2025-03-19	14:03:35.7801629	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2024 TRAINING WORKSHOP ON THE DEVELOPMENT OF CONTEXTUALIZED LEARNING RESOURCES/MATERIALS IN ALL LEARNING AREAS & INCLUSICE EDUCATION FOR THE MATATAG CURRICULUM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
772903	2025-03-19	14:04:10.6078224	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3830\r\nEmployeeTrainingId: 0\r\nFromDate: November 27, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16362\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772904	2025-03-19	14:04:10.6118089	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3830\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 20\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16482\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772905	2025-03-19	14:04:10.6177893	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3830\r\nEmployeeTrainingId: 0\r\nFromDate: September 30, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 30, 2024\r\nTrainingId: 16615\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772906	2025-03-19	14:04:10.6227727	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3830\r\nEmployeeTrainingId: 0\r\nFromDate: September 13, 2024\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: GOKONGWEI BROTHERS FOUNDATION\r\nStatus: \r\nToDate: September 14, 2024\r\nTrainingId: 16565\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772977	2025-03-19	14:41:05.3331885	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: EXPLICIT TEACHING LITERACY AND NUMERACY APPROACHES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
772898	2025-03-19	14:00:48.0443302	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STA. CLARA\r\nBasicInformationId: 0\r\nBirthDate: June 11, 1991\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: barry.burog@deped.gov.ph\r\nExtensionName: \r\nFirstName: BARRY\r\nFullName: BARRY B. BUROG\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.59\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BUROG\r\nMaidenName: \r\nMiddleName: BAES\r\nMobileNumber: 09540381018\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STA. CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 56\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772899	2025-03-19	14:00:48.0547006	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3833\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MACARIO\r\nFullName: MACARIO MARANAN BUROG\r\nGender: Male\r\nLastName: BUROG\r\nMaidenName: \r\nMiddleName: MARANAN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
772900	2025-03-19	14:00:48.0547006	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3833\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CONSOLITA\r\nFullName: CONSOLITA BRIONES BAES\r\nGender: Female\r\nLastName: BAES\r\nMaidenName: \r\nMiddleName: BRIONES\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
772901	2025-03-19	14:00:48.0547006	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3833\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
772939	2025-03-19	14:29:57.9703868	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3833\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1997\r\nDateTo: 2003\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: STA. CLARA ELEMENTARY SCHOOL\r\nYearGraduated: 2003\r\n	admin	EducationalBackgrounds	1
772940	2025-03-19	14:29:57.9754019	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3833\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2007\r\n	admin	EducationalBackgrounds	1
772941	2025-03-19	14:29:57.9794018	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3833\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 2007\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: COLEGIO NG LUNGSOD NG BATANGAS\r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
772942	2025-03-19	14:29:57.9848595	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3833\r\nCourse: \r\nCourseId: 1284\r\nCourseOrMajor: \r\nDateFrom: 2017\r\nDateTo: 2017\r\nEducationalAttainment: 18 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
772943	2025-03-19	14:29:57.9898765	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3833\r\nDateOfExamination: October 01, 2011\r\nDateOfRelease: June 11, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: October 01, 2011\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1139002\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 76\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
772944	2025-03-19	14:29:57.9949036	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3833\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,597.00\r\nPositionHeld: ELEMENTARY TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: March 19, 2025\r\n	admin	Experiences	1
772978	2025-03-19	14:43:10.1857003	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING ON SCHOOL PREPAREDNESS AND WRITE SHOP ON THE DEVELOPMENT AND/OR ENHANCEMENT ON EXISTING SCHOOL CONTIGENCY PLAN\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
772910	2025-03-19	14:16:12.2890916	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3830\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 52,907.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-4\r\nStatus: Permanent\r\nToDate: January 03, 2025\r\n	admin	Experiences	1
772911	2025-03-19	14:16:12.2940750	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3830\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 50,617.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-4\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
772912	2025-03-19	14:16:12.2990583	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3830\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 48,253.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-4\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
772913	2025-03-19	14:16:12.3040415	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3830\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 04, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 46,731.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-4\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
772914	2025-03-19	14:16:12.3090251	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3830\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 46,216.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-3\r\nStatus: Permanent\r\nToDate: January 03, 2022\r\n	admin	Experiences	1
772915	2025-03-19	14:16:12.3150050	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3830\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 44,694.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-3\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
772916	2025-03-19	14:16:12.3189916	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3830\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 43,172.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-3\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
772917	2025-03-19	14:16:12.3239749	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3830\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 19, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 41,650.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-3\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
772918	2025-03-19	14:16:12.3289582	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3830\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 41,143.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-2\r\nStatus: Permanent\r\nToDate: January 03, 2019\r\n	admin	Experiences	1
772919	2025-03-19	14:16:12.3339416	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3830\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 38,543.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-2\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
772920	2025-03-19	14:16:12.3389249	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3830\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 36,111.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-2\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
772921	2025-03-19	14:16:12.3439082	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3830\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 04, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 33,831.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-2\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
772922	2025-03-19	14:16:12.3488917	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3830\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 33,452.08\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-1\r\nStatus: Permanent\r\nToDate: January 03, 2016\r\n	admin	Experiences	1
772923	2025-03-19	14:16:12.3538748	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3830\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 04, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 31,351.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
772924	2025-03-19	14:16:12.3588582	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3830\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 21,650.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: January 03, 2013\r\n	admin	Experiences	1
772925	2025-03-19	14:16:12.3628450	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3830\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 19,908.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
772926	2025-03-19	14:16:12.3688248	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3830\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: December 07, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 18,166.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
772927	2025-03-19	14:16:12.3728115	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3830\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 17,880.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 06, 2010\r\n	admin	Experiences	1
772928	2025-03-19	14:16:12.3787917	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3830\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 16,101.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
772929	2025-03-19	14:16:12.3827782	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3830\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 13,512.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
772930	2025-03-19	14:19:45.0732142	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3830\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: December 06, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 12,284.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
772931	2025-03-19	14:19:45.0781968	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3830\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 04, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 11,068.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 05, 2007\r\n	admin	Experiences	1
772932	2025-03-19	14:19:45.0831809	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3830\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,971.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-4\r\nStatus: Permanent\r\nToDate: June 03, 2007\r\n	admin	Experiences	1
772933	2025-03-19	14:19:45.0881645	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3830\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2004\r\nIsGovernmentService: True\r\nMonthlySalary: 10,704.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-3\r\nStatus: Permanent\r\nToDate: December 31, 2006\r\n	admin	Experiences	1
772934	2025-03-19	14:19:45.0931477	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3830\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 10,442.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-2\r\nStatus: Permanent\r\nToDate: December 31, 2003\r\n	admin	Experiences	1
772935	2025-03-19	14:19:45.0981312	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3830\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 2001\r\n	admin	Experiences	1
772936	2025-03-19	14:19:45.1031143	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3830\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
772937	2025-03-19	14:19:45.1080972	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3830\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
772938	2025-03-19	14:23:22.6624710	<Undetected>	Update	BasicInformationId: 3830\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 13230\r\nFromDate: January 19, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 41,650.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-3\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	BasicInformationId: 3830\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 13230\r\nFromDate: January 04, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 41,650.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-3\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
772945	2025-03-19	14:29:57.9989166	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3833\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 29,085.00\r\nPositionHeld: ELEMENTARY TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
772946	2025-03-19	14:29:58.0049649	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3833\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 05, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,573.00\r\nPositionHeld: ELEMENTARY TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
772947	2025-03-19	14:29:58.0089783	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3833\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,306.00\r\nPositionHeld: ELEMENTARY TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 04, 2023\r\n	admin	Experiences	1
772948	2025-03-19	14:29:58.0142324	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3833\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,723.00\r\nPositionHeld: ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
772949	2025-03-19	14:29:58.0193207	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3833\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 24,161.00\r\nPositionHeld: ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
772950	2025-03-19	14:29:58.0243471	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3833\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 05, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,600.00\r\nPositionHeld: ELEMENTARY TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
772951	2025-03-19	14:29:58.0283592	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3833\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,216.00\r\nPositionHeld: ELEMENTARY TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 04, 2020\r\n	admin	Experiences	1
772952	2025-03-19	14:29:58.0344003	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3833\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
772953	2025-03-19	14:29:58.0384130	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3833\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
772954	2025-03-19	14:29:58.0436440	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3833\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TIBIG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 05, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,620.00\r\nPositionHeld: ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
772979	2025-03-19	14:45:34.8272601	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3833\r\nEmployeeTrainingId: 0\r\nFromDate: February 07, 2025\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: February 07, 2025\r\nTrainingId: 16626\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772955	2025-03-19	14:29:58.0487992	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3833\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: March 16, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,620.00\r\nPositionHeld: ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: April 07, 2017\r\n	admin	Experiences	1
772956	2025-03-19	14:29:58.0538255	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3833\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / KUMINTANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 20, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,620.00\r\nPositionHeld: ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: February 09, 2017\r\n	admin	Experiences	1
772957	2025-03-19	14:29:58.0578382	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3833\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / KUMINTANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: November 19, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: December 21, 2016\r\n	admin	Experiences	1
772958	2025-03-19	14:29:58.0639350	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3833\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. RITA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: September 21, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: October 14, 2016\r\n	admin	Experiences	1
772959	2025-03-19	14:29:58.0679475	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3833\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. RITA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 22, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: September 20, 2016\r\n	admin	Experiences	1
772960	2025-03-19	14:29:58.0731524	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3833\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. RITA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 27, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: July 26, 2016\r\n	admin	Experiences	1
772961	2025-03-19	14:29:58.0781888	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3833\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / MALITAM ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: November 18, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: December 18, 2015\r\n	admin	Experiences	1
772962	2025-03-19	14:29:58.0832156	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3833\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / MALITAM ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: October 15, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: November 30, 2015\r\n	admin	Experiences	1
772963	2025-03-19	14:29:58.0882316	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3833\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / MALITAM ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 17, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: October 14, 2015\r\n	admin	Experiences	1
772964	2025-03-19	14:29:58.0933086	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3833\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 25, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: March 26, 2015\r\n	admin	Experiences	1
772980	2025-03-19	14:45:34.8326352	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3833\r\nEmployeeTrainingId: 0\r\nFromDate: January 31, 2025\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: January 31, 2025\r\nTrainingId: 16627\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772965	2025-03-19	14:29:58.0973218	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3833\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / MALITAM ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 08, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: January 15, 2015\r\n	admin	Experiences	1
772966	2025-03-19	14:29:58.1033424	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3833\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / MALITAM ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: November 17, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: December 19, 2014\r\n	admin	Experiences	1
772967	2025-03-19	14:29:58.1073551	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3833\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 03, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: July 31, 2014\r\n	admin	Experiences	1
772968	2025-03-19	14:29:58.1134177	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3833\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / WAWA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 09, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: March 31, 2014\r\n	admin	Experiences	1
772969	2025-03-19	14:29:58.1174310	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3833\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / WAWA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: November 05, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: December 20, 2013\r\n	admin	Experiences	1
772970	2025-03-19	14:29:58.1225788	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3833\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / WAWA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 22, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: October 17, 2013\r\n	admin	Experiences	1
772971	2025-03-19	14:29:58.1276158	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3833\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / WAWA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 25, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: ELEMENTARY TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: August 16, 2013\r\n	admin	Experiences	1
772972	2025-03-19	14:29:58.1326324	<Undetected>	Update	BasicInformationId: 3833\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4128\r\nExtensionName: \r\nFirstName: MACARIO\r\nFullName: MACARIO MARANAN BUROG\r\nGender: Male\r\nLastName: BUROG\r\nMaidenName: \r\nMiddleName: MARANAN\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3833\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4128\r\nExtensionName: \r\nFirstName: MACARIO\r\nFullName: MACARIO BUROG\r\nGender: Male\r\nLastName: BUROG\r\nMaidenName: \r\nMiddleName: MARANAN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
772973	2025-03-19	14:29:58.1366458	<Undetected>	Update	BasicInformationId: 3833\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4129\r\nExtensionName: \r\nFirstName: CONSOLITA\r\nFullName: CONSOLITA BRIONES BAES\r\nGender: Female\r\nLastName: BAES\r\nMaidenName: \r\nMiddleName: BRIONES\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3833\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4129\r\nExtensionName: \r\nFirstName: CONSOLITA\r\nFullName: CONSOLITA BAES\r\nGender: Female\r\nLastName: BAES\r\nMaidenName: \r\nMiddleName: BRIONES\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
772974	2025-03-19	14:29:58.1427249	<Undetected>	Update	BasicInformationId: 3833\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3630\r\n	BasicInformationId: 3833\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3630\r\n	admin	Questionnaires	1
772975	2025-03-19	14:38:03.3654820	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INCLUSIVE EDUCATION AS A STRATEGY FOR INCREASIG PARTICIPATION RATE OF STA. CLARA ELEMENTARY SCHOOL LEARNERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
772976	2025-03-19	14:39:40.9455552	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ENHANCING TEACHERS EFFECTIVENESS TRU ICT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
772981	2025-03-19	14:45:34.8378134	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3833\r\nEmployeeTrainingId: 0\r\nFromDate: October 31, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: October 31, 2024\r\nTrainingId: 16628\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772982	2025-03-19	14:45:34.8418267	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3833\r\nEmployeeTrainingId: 0\r\nFromDate: September 10, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BATANGAS CITY INTEGRATED HIGH SCHOOL\r\nStatus: \r\nToDate: September 10, 2024\r\nTrainingId: 16629\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772983	2025-03-19	14:45:34.8478708	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3833\r\nEmployeeTrainingId: 0\r\nFromDate: January 26, 2024\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: January 26, 2024\r\nTrainingId: 16404\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
772984	2025-03-19	14:48:40.6091769	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3833\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
772985	2025-03-19	14:48:40.6236796	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3833\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
772986	2025-03-19	14:48:40.6289148	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3833\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
772987	2025-03-19	14:48:40.6373023	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3833\r\nRecognitionId: 0\r\nRecognitionName: BOY SCOUT OF THE PHILIPPINES SILVER AWARDEE\r\n	admin	Recognitions	1
772988	2025-03-19	14:48:40.6413567	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3833\r\nRecognitionId: 0\r\nRecognitionName: BOY SCOUT OF THE PHILIPPINES BRONZE AWARDEE\r\n	admin	Recognitions	1
772989	2025-03-19	14:48:40.6473661	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3833\r\nRecognitionId: 0\r\nRecognitionName: GAWAD TAKLOBO-/COACH/THAT'S MY KAB\r\n	admin	Recognitions	1
772990	2025-03-19	14:48:40.6514055	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3833\r\nOrganizationId: 0\r\nOrganizationName: PHILIPPINE PUBLIC SCHOOL TEACHERS ASSOCIATION (PPSTA)\r\n	admin	Organizations	1
772991	2025-03-19	14:48:40.6564135	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3833\r\nOrganizationId: 0\r\nOrganizationName: PHILIPPINE NATIONAL PUBLIC KEY INFRASTRUCTURE\r\n	admin	Organizations	1
772992	2025-03-19	14:48:40.6614212	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3833\r\nOrganizationId: 0\r\nOrganizationName: PAMBANSANG SAMAHAN NG MGA TAGAMASID AT TAGAPAGTAGUYOD NG FILIPINO (PASATAF)\r\n	admin	Organizations	1
772993	2025-03-19	15:02:57.1366719	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3833\r\nCharacterReferenceId: 0\r\nCompanyAddress: STA. CLARA BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09540342212\r\nExtensionName: \r\nFirstName: DERICK\r\nLastName: ARAGO\r\nMiddleName: B. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772994	2025-03-19	15:02:57.1419436	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3833\r\nCharacterReferenceId: 0\r\nCompanyAddress: STA. CLARA BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 7265193\r\nExtensionName: \r\nFirstName: EPITACIA\r\nLastName: CULLERA\r\nMiddleName: C.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772995	2025-03-19	15:02:57.1503335	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3833\r\nCharacterReferenceId: 0\r\nCompanyAddress: STA. CLARA BATANGS CITY\r\nCompanyName: \r\nContactNumber: 09944091101\r\nExtensionName: \r\nFirstName: THELMA\r\nLastName: MARANAN\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
772996	2025-03-19	15:02:57.1553551	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STA. CLARA\r\nBasicInformationId: 3833\r\nBirthDate: June 11, 1991\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: barry.burog@deped.gov.ph\r\nExtensionName: \r\nFirstName: BARRY\r\nFullName: BARRY B. BUROG\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.59\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BUROG\r\nMaidenName: \r\nMiddleName: BAES\r\nMobileNumber: 09540381018\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STA. CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 56\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STA. CLARA\r\nBasicInformationId: 3833\r\nBirthDate: June 11, 1991\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: barry.burog@deped.gov.ph\r\nExtensionName: \r\nFirstName: BARRY\r\nFullName: BARRY B. BUROG\r\nGender: Male\r\nGovernmentIdIssuedDate: July 06, 2012\r\nGovernmentIdNumber: 1139002\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02004341108\r\nHDMF: 1211-9620-3899\r\nHeight: 1.59\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BUROG\r\nMaidenName: \r\nMiddleName: BAES\r\nMobileNumber: 09540381018\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STA. CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050295399-1\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 409-444-815-0000\r\nWeight: 56\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773013	2025-03-19	15:20:34.2226280	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3839\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
772997	2025-03-19	15:08:16.9919273	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STA. CLARA\r\nBasicInformationId: 0\r\nBirthDate: August 24, 1969\r\nBirthPlace: ISLA VERDE, BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: gemma.macalindong@deped.gov.ph\r\nExtensionName: \r\nFirstName: GEMMA\r\nFullName: GEMMA C. MACALINDONG\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MACALINDONG\r\nMaidenName: \r\nMiddleName: CUETO\r\nMobileNumber: 09655021727\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STA. CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 70\r\nZipCode: 4200\r\n	admin	BasicInformation	1
772998	2025-03-19	15:08:17.0048709	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3834\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JAY\r\nFullName: JAY PEREZ MACALINDONG\r\nGender: Male\r\nLastName: MACALINDONG\r\nMaidenName: \r\nMiddleName: PEREZ\r\nOccupation: TRICYCLE DRIVER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
772999	2025-03-19	15:08:17.0048709	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3834\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PABLO\r\nFullName: PABLO PURIO CUETO\r\nGender: Male\r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: PURIO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773000	2025-03-19	15:08:17.0059084	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3834\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PACIENCIA\r\nFullName: PACIENCIA MANALO CALALUAN\r\nGender: Female\r\nLastName: CALALUAN\r\nMaidenName: \r\nMiddleName: MANALO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773001	2025-03-19	15:08:17.0059084	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3834\r\nBirthDate: September 18, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARIELLE\r\nFullName: MARIELLE CUETO MACALINDONG\r\nGender: Female\r\nLastName: MACALINDONG\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773002	2025-03-19	15:08:17.0059084	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3834\r\nBirthDate: May 27, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JEMUEL\r\nFullName: JEMUEL CUETO MACALINDONG\r\nGender: Male\r\nLastName: MACALINDONG\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773003	2025-03-19	15:08:17.0059084	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3834\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
773004	2025-03-19	15:11:35.2465494	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SAN AGAPITO\r\nBarangay: ISLA VERDE\r\nBasicInformationId: 0\r\nBirthDate: June 01, 1989\r\nBirthPlace: ORIENTAL MINDORO\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: janice.mendoza008@deped.gov.ph\r\nExtensionName: \r\nFirstName: JANICE\r\nFullName: JANICE D. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nMobileNumber: 09684978998\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SAN AGAPITO\r\nPermanentBarangay: ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773005	2025-03-19	15:11:35.3380326	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3835\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
773074	2025-03-19	15:35:33.9800770	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3837\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16470\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773006	2025-03-19	15:13:32.5680201	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SAN AGUSTIN SILANGAN\r\nBarangay: ISLA VERDE\r\nBasicInformationId: 0\r\nBirthDate: December 14, 1985\r\nBirthPlace: SAN AGUSTIN ISLA VERDE\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jenelyn.amul@deped.gov.ph\r\nExtensionName: \r\nFirstName: JENELYN\r\nFullName: JENELYN L. AMUL\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: AMUL\r\nMaidenName: \r\nMiddleName: LUALHATI\r\nMobileNumber: 09605572155\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SAN AGUSTIN SILANGAN\r\nPermanentBarangay: ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 66\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773007	2025-03-19	15:13:32.5775733	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3836\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
773008	2025-03-19	15:16:00.6787452	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK 18 LOT 8\r\nAddress2: BETZAIDA VILLAGE\r\nBarangay: DUMANTAY\r\nBasicInformationId: 0\r\nBirthDate: January 23, 1994\r\nBirthPlace: BATANGAS CITY\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: laniejane.salcedo@deped.gov.ph\r\nExtensionName: \r\nFirstName: LANIE JANE\r\nFullName: LANIE JANE S. SALCEDO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SALCEDO\r\nMaidenName: \r\nMiddleName: SORIANO\r\nMobileNumber: 09185431891\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SAN AGAPITO\r\nPermanentBarangay: ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: EVERLASTING STREET\r\nTIN: \r\nWeight: 55.75\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773009	2025-03-19	15:16:00.6877453	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3837\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
773010	2025-03-19	15:18:08.0450793	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 6C LOT 64\r\nAddress2: ECOVERDE HOMES\r\nBarangay: BARANGAY STO. NINO\r\nBasicInformationId: 0\r\nBirthDate: August 07, 1996\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: SAN PASCUAL\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: maangelica.manalo@deped.gov.ph\r\nExtensionName: \r\nFirstName: MA. ANGELICA\r\nFullName: MA. ANGELICA F. MANALO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MANALO\r\nMaidenName: \r\nMiddleName: FAJILAN\r\nMobileNumber: 09292210744\r\nNationality: Filipino\r\nPermanentAddress1: 141\r\nPermanentAddress2: \r\nPermanentBarangay: BARANGAY 12\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: VERGARA STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 53\r\nZipCode: 4204\r\n	admin	BasicInformation	1
773011	2025-03-19	15:18:08.0569841	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3838\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
773012	2025-03-19	15:20:34.2129711	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK 10 LOT 14\r\nAddress2: MERCEDES HOMES\r\nBarangay: SORO-SORO ILAYA\r\nBasicInformationId: 0\r\nBirthDate: November 03, 1989\r\nBirthPlace: DAGUPAN, PANGASINAN\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: danroy.cortez@deped.gov.ph\r\nExtensionName: \r\nFirstName: DAN ROY\r\nFullName: DAN ROY Y. CORTEZ\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.72\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CORTEZ\r\nMaidenName: \r\nMiddleName: YAMBAO\r\nMobileNumber: 09159451249\r\nNationality: Filipino\r\nPermanentAddress1: 41-B\r\nPermanentAddress2: \r\nPermanentBarangay: POBLACION 7\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: P. CANLAPAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 83\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773014	2025-03-19	15:22:33.3328629	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SAN ANTONIO\r\nBarangay: ISLA VERDE\r\nBasicInformationId: 0\r\nBirthDate: June 13, 1997\r\nBirthPlace: ISLA VERDE, BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rhealyn.dagus@deped.gov.ph\r\nExtensionName: \r\nFirstName: RHEALYN\r\nFullName: RHEALYN C. DAGUS\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.72\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DAGUS\r\nMaidenName: \r\nMiddleName: CALALUAN\r\nMobileNumber: 09656818682\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SAN ANTONIO\r\nPermanentBarangay: ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 68\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773015	2025-03-19	15:22:33.3425036	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3840\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
773016	2025-03-19	15:24:47.2454573	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3837\r\nBirthDate: April 21, 2023\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: BLAINE MATHEW\r\nFullName: BLAINE MATHEW SORIANO SALCEDO\r\nGender: Male\r\nLastName: SALCEDO\r\nMaidenName: \r\nMiddleName: SORIANO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773017	2025-03-19	15:24:47.2504409	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3837\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: BENJAMEN\r\nFullName: BENJAMEN BACOSA SALCEDO\r\nGender: Male\r\nLastName: SALCEDO\r\nMaidenName: \r\nMiddleName: BACOSA\r\nOccupation: SEAMAN\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
773018	2025-03-19	15:24:47.2614042	<Undetected>	Update	BasicInformationId: 3837\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3634\r\n	BasicInformationId: 3837\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3634\r\n	admin	Questionnaires	1
773019	2025-03-19	15:26:10.3718919	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: ASSOCIATE IN HOTEL AND RESTAURANT MANAGEMENT\r\nLevel: College\r\n	admin	Courses	1
773020	2025-03-19	15:27:36.8371790	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3837\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2006\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGAPITO ELEMENTARY SCHOOL\r\nYearGraduated: 2006\r\n	admin	EducationalBackgrounds	1
773021	2025-03-19	15:27:36.8421622	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3837\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2006\r\nDateTo: 2010\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGAPITO NATIONAL HIGH SCHOOL\r\nYearGraduated: 2010\r\n	admin	EducationalBackgrounds	1
773022	2025-03-19	15:27:36.8461487	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3837\r\nCourse: \r\nCourseId: 1392\r\nCourseOrMajor: \r\nDateFrom: 2010\r\nDateTo: 2012\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2012\r\n	admin	EducationalBackgrounds	1
773023	2025-03-19	15:27:36.8571122	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3837\r\nCourse: \r\nCourseId: 1270\r\nCourseOrMajor: \r\nDateFrom: 2014\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: TECHNOLOGY AND LIVELIHOOD EDUCATION\r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
773024	2025-03-19	15:27:36.8750522	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3837\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2024\r\nDateTo: 2025\r\nEducationalAttainment: 12 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: LIPA CITY COLLEGE\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
773025	2025-03-19	15:27:36.8930420	<Undetected>	Update	BasicInformationId: 3837\r\nBirthDate: April 21, 2023\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4135\r\nExtensionName: \r\nFirstName: BLAINE MATHEW\r\nFullName: BLAINE MATHEW SORIANO SALCEDO\r\nGender: Male\r\nLastName: SALCEDO\r\nMaidenName: \r\nMiddleName: SORIANO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3837\r\nBirthDate: April 21, 2023\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4135\r\nExtensionName: \r\nFirstName: BLAINE MATHEW\r\nFullName: BLAINE MATHEW SALCEDO\r\nGender: Male\r\nLastName: SALCEDO\r\nMaidenName: \r\nMiddleName: SORIANO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773129	2025-03-19	15:52:50.6166100	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BSP BASIC TRAINING COURSE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773026	2025-03-19	15:27:36.8980323	<Undetected>	Update	BasicInformationId: 3837\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4136\r\nExtensionName: \r\nFirstName: BENJAMEN\r\nFullName: BENJAMEN BACOSA SALCEDO\r\nGender: Male\r\nLastName: SALCEDO\r\nMaidenName: \r\nMiddleName: BACOSA\r\nOccupation: SEAMAN\r\nRelationship: Husband\r\n	BasicInformationId: 3837\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4136\r\nExtensionName: \r\nFirstName: BENJAMEN\r\nFullName: BENJAMEN SALCEDO\r\nGender: Male\r\nLastName: SALCEDO\r\nMaidenName: \r\nMiddleName: BACOSA\r\nOccupation: SEAMAN\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
773027	2025-03-19	15:28:57.3816817	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLK 18 LOT 8\r\nAddress2: BETZAIDA VILLAGE\r\nBarangay: DUMANTAY\r\nBasicInformationId: 3837\r\nBirthDate: January 23, 1994\r\nBirthPlace: BATANGAS CITY\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: laniejane.salcedo@deped.gov.ph\r\nExtensionName: \r\nFirstName: LANIE JANE\r\nFullName: LANIE JANE S. SALCEDO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SALCEDO\r\nMaidenName: \r\nMiddleName: SORIANO\r\nMobileNumber: 09185431891\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SAN AGAPITO\r\nPermanentBarangay: ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: EVERLASTING STREET\r\nTIN: \r\nWeight: 55.75\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK 18 LOT 8\r\nAddress2: BETZAIDA VILLAGE\r\nBarangay: DUMANTAY\r\nBasicInformationId: 3837\r\nBirthDate: January 23, 1994\r\nBirthPlace: BATANGAS CITY\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: laniejane.salcedo@deped.gov.ph\r\nExtensionName: \r\nFirstName: LANIE JANE\r\nFullName: LANIE JANE S. SALCEDO\r\nGender: Female\r\nGovernmentIdIssuedDate: December 02, 2022\r\nGovernmentIdNumber: 1951314\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02006446990\r\nHDMF: 1210-9302-1778\r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SALCEDO\r\nMaidenName: \r\nMiddleName: SORIANO\r\nMobileNumber: 09185431891\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SAN AGAPITO\r\nPermanentBarangay: ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050369993-0\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-2610662-7\r\nStreetName: EVERLASTING STREET\r\nTIN: 313-838-727-0000\r\nWeight: 55.75\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773028	2025-03-19	15:30:13.7270083	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3837\r\nCharacterReferenceId: 0\r\nCompanyAddress: MABINI, BATANGAS\r\nCompanyName: \r\nContactNumber: 09486721424\r\nExtensionName: \r\nFirstName: GERLIE JOY\r\nLastName: BRUCAL\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773029	2025-03-19	15:30:13.7444257	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3837\r\nCharacterReferenceId: 0\r\nCompanyAddress: DAO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09814419269\r\nExtensionName: \r\nFirstName: JOEBELLE\r\nLastName: SANCHEZ\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773030	2025-03-19	15:30:13.7593748	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3837\r\nCharacterReferenceId: 0\r\nCompanyAddress: KUMINTANG IBABA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09661926550\r\nExtensionName: \r\nFirstName: MARVIN\r\nLastName: MAGARARU\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773066	2025-03-19	15:31:58.9677620	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3837\r\nDateOfExamination: June 26, 2022\r\nDateOfRelease: January 23, 2028\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: June 26, 2022\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1951314\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 79\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
773067	2025-03-19	15:31:58.9767320	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3837\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: March 18, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
773068	2025-03-19	15:31:58.9817157	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3837\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,024.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
773069	2025-03-19	15:33:03.2256970	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING IN CONTACT CENTER SERVICES NCII\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773070	2025-03-19	15:34:21.7300710	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NATIONAL CERTIFICATE II ORGANIC AGRICULTURE PRODUCTION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773071	2025-03-19	15:35:33.9601448	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3837\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
773072	2025-03-19	15:35:33.9691152	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3837\r\nSkillId: 0\r\nSkillName: ACTIVE LISTENING\r\n	admin	Skills	1
773073	2025-03-19	15:35:33.9740985	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3837\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
773130	2025-03-19	15:54:19.7390519	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT SPORTS PROGRAM LAUNCHING, TRAINING, COACHING, AND MENTORING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773031	2025-03-19	15:30:30.6445855	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3834\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1976\r\nDateTo: 1982\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGAPITO ELEMENTARY SCHOOL\r\nYearGraduated: 1982\r\n	admin	EducationalBackgrounds	1
773032	2025-03-19	15:30:30.6505858	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3834\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1982\r\nDateTo: 1986\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: ISLA VERDE CATHOLIC HIGH SCHOOL\r\nYearGraduated: 1986\r\n	admin	EducationalBackgrounds	1
773033	2025-03-19	15:30:30.6545855	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3834\r\nCourse: \r\nCourseId: 1314\r\nCourseOrMajor: \r\nDateFrom: 1987\r\nDateTo: 1991\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES\r\nYearGraduated: 1991\r\n	admin	EducationalBackgrounds	1
773034	2025-03-19	15:30:30.6595854	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3834\r\nCourse: \r\nCourseId: 1368\r\nCourseOrMajor: \r\nDateFrom: 2002\r\nDateTo: 2002\r\nEducationalAttainment: 9 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
773035	2025-03-19	15:30:30.6645856	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3834\r\nDateOfExamination: August 08, 1999\r\nDateOfRelease: August 24, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 08, 1999\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0582314\r\nPlaceOfExamination: ORIENTAL MINDORO\r\nRating: 75\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS (RA 1080)\r\n	admin	Eligibilities	1
773036	2025-03-19	15:30:30.6695857	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3834\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 33,702.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-6\r\nStatus: Permanent\r\nToDate: March 19, 2025\r\n	admin	Experiences	1
773037	2025-03-19	15:30:30.6738117	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3834\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,464.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-6\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
773038	2025-03-19	15:30:30.6789067	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3834\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 11, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 30,622.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-6\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
773039	2025-03-19	15:30:30.6839227	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3834\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 30,323.00\r\nPositionHeld: TEAHCER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: February 10, 2023\r\n	admin	Experiences	1
773040	2025-03-19	15:30:30.6889410	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3834\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 28,766.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
773041	2025-03-19	15:30:30.6930167	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3834\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 27,210.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
773135	2025-03-19	15:55:15.8409332	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: COMPUTER SYSTEM SERVICES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773042	2025-03-19	15:30:30.6980432	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3834\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL \r\nExperienceId: 0\r\nFromDate: February 11, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 25,653.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
773043	2025-03-19	15:30:30.7030590	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3834\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 25,358.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: February 10, 2020\r\n	admin	Experiences	1
773044	2025-03-19	15:30:30.7080767	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3834\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 23,801.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
773045	2025-03-19	15:30:30.7121147	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3834\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 22,942.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
773046	2025-03-19	15:30:30.7171310	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3834\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 12, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 22,113.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
773047	2025-03-19	15:30:30.7221465	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3834\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 21,868.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: February 11, 2017\r\n	admin	Experiences	1
773048	2025-03-19	15:30:30.7271968	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3834\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 21,091.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
773049	2025-03-19	15:30:30.7311964	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3834\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 12, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 20,341.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
773050	2025-03-19	15:30:30.7362478	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3834\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 20,140.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: February 11, 2014\r\n	admin	Experiences	1
773051	2025-03-19	15:30:30.7412600	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3834\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,568.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
773052	2025-03-19	15:30:30.7467558	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3834\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 12, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 16,995.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
773053	2025-03-19	15:30:30.7507686	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3834\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 16,726.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: February 11, 2011\r\n	admin	Experiences	1
773054	2025-03-19	15:30:30.7557950	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3834\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 15,119.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
773055	2025-03-19	15:30:30.7608679	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3834\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,748.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
773056	2025-03-19	15:30:30.7658826	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3834\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 11, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 11,589.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
773057	2025-03-19	15:30:30.7698843	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3834\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 11,207.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-2\r\nStatus: Permanent\r\nToDate: February 10, 2008\r\n	admin	Experiences	1
773058	2025-03-19	15:30:30.7748843	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3834\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,188.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-2\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
773059	2025-03-19	15:30:30.7798847	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3834\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 23, 2003\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 2006\r\n	admin	Experiences	1
773060	2025-03-19	15:30:30.7848848	<Undetected>	Update	BasicInformationId: 3834\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4130\r\nExtensionName: \r\nFirstName: JAY\r\nFullName: JAY PEREZ MACALINDONG\r\nGender: Male\r\nLastName: MACALINDONG\r\nMaidenName: \r\nMiddleName: PEREZ\r\nOccupation: TRICYCLE DRIVER\r\nRelationship: Husband\r\n	BasicInformationId: 3834\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4130\r\nExtensionName: \r\nFirstName: JAY\r\nFullName: JAY MACALINDONG\r\nGender: Male\r\nLastName: MACALINDONG\r\nMaidenName: \r\nMiddleName: PEREZ\r\nOccupation: TRICYCLE DRIVER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
773061	2025-03-19	15:30:30.7898843	<Undetected>	Update	BasicInformationId: 3834\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4131\r\nExtensionName: \r\nFirstName: PABLO\r\nFullName: PABLO PURIO CUETO\r\nGender: Male\r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: PURIO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3834\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4131\r\nExtensionName: \r\nFirstName: PABLO\r\nFullName: PABLO CUETO\r\nGender: Male\r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: PURIO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773062	2025-03-19	15:30:30.7948843	<Undetected>	Update	BasicInformationId: 3834\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4132\r\nExtensionName: \r\nFirstName: PACIENCIA\r\nFullName: PACIENCIA MANALO CALALUAN\r\nGender: Female\r\nLastName: CALALUAN\r\nMaidenName: \r\nMiddleName: MANALO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3834\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4132\r\nExtensionName: \r\nFirstName: PACIENCIA\r\nFullName: PACIENCIA CALALUAN\r\nGender: Female\r\nLastName: CALALUAN\r\nMaidenName: \r\nMiddleName: MANALO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773063	2025-03-19	15:30:30.7988844	<Undetected>	Update	BasicInformationId: 3834\r\nBirthDate: September 18, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4133\r\nExtensionName: \r\nFirstName: MARIELLE\r\nFullName: MARIELLE CUETO MACALINDONG\r\nGender: Female\r\nLastName: MACALINDONG\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3834\r\nBirthDate: September 18, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4133\r\nExtensionName: \r\nFirstName: MARIELLE\r\nFullName: MARIELLE MACALINDONG\r\nGender: Female\r\nLastName: MACALINDONG\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773064	2025-03-19	15:30:30.8038844	<Undetected>	Update	BasicInformationId: 3834\r\nBirthDate: May 27, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4134\r\nExtensionName: \r\nFirstName: JEMUEL\r\nFullName: JEMUEL CUETO MACALINDONG\r\nGender: Male\r\nLastName: MACALINDONG\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3834\r\nBirthDate: May 27, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4134\r\nExtensionName: \r\nFirstName: JEMUEL\r\nFullName: JEMUEL MACALINDONG\r\nGender: Male\r\nLastName: MACALINDONG\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773065	2025-03-19	15:30:30.8088856	<Undetected>	Update	BasicInformationId: 3834\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3631\r\n	BasicInformationId: 3834\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3631\r\n	admin	Questionnaires	1
773077	2025-03-19	15:36:43.6279537	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3834\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY - DISTRICT IV\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16541\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773078	2025-03-19	15:36:43.6331952	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3834\r\nEmployeeTrainingId: 0\r\nFromDate: October 09, 2024\r\nHours: 9\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY\r\nStatus: \r\nToDate: October 09, 2024\r\nTrainingId: 16547\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773079	2025-03-19	15:36:43.6382116	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3834\r\nEmployeeTrainingId: 0\r\nFromDate: June 15, 2024\r\nHours: 4\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY\r\nStatus: \r\nToDate: June 15, 2024\r\nTrainingId: 16566\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773080	2025-03-19	15:36:43.6432118	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3834\r\nEmployeeTrainingId: 0\r\nFromDate: June 08, 2024\r\nHours: 4\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY\r\nStatus: \r\nToDate: June 08, 2024\r\nTrainingId: 16566\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773081	2025-03-19	15:36:43.6487144	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3834\r\nEmployeeTrainingId: 0\r\nFromDate: June 01, 2024\r\nHours: 4\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY\r\nStatus: \r\nToDate: June 01, 2024\r\nTrainingId: 16566\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773086	2025-03-19	15:41:01.7619653	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3834\r\nSkillId: 0\r\nSkillName: N/A\r\n	admin	Skills	1
773087	2025-03-19	15:41:01.7671112	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3834\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
773088	2025-03-19	15:41:01.7721429	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3834\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
773089	2025-03-19	15:41:01.7771608	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3834\r\nCharacterReferenceId: 0\r\nCompanyAddress: STA. CLARA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175172621\r\nExtensionName: \r\nFirstName: JEAN \r\nLastName: ABACAN\r\nMiddleName: M.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773090	2025-03-19	15:41:01.7821687	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3834\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES, SORO-SORO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09171308883\r\nExtensionName: \r\nFirstName: EPITACIA\r\nLastName: CULLERA\r\nMiddleName: C.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773091	2025-03-19	15:41:01.7861768	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3834\r\nCharacterReferenceId: 0\r\nCompanyAddress: KUMINTANG ILAYA, BATANGAS\r\nCompanyName: \r\nContactNumber: 09605313229\r\nExtensionName: \r\nFirstName: MARGELEN\r\nLastName: FAMPULME\r\nMiddleName: F.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773092	2025-03-19	15:41:01.7921864	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STA. CLARA\r\nBasicInformationId: 3834\r\nBirthDate: August 24, 1969\r\nBirthPlace: ISLA VERDE, BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: gemma.macalindong@deped.gov.ph\r\nExtensionName: \r\nFirstName: GEMMA\r\nFullName: GEMMA C. MACALINDONG\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MACALINDONG\r\nMaidenName: \r\nMiddleName: CUETO\r\nMobileNumber: 09655021727\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STA. CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 70\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: STA. CLARA\r\nBasicInformationId: 3834\r\nBirthDate: August 24, 1969\r\nBirthPlace: ISLA VERDE, BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: gemma.macalindong@deped.gov.ph\r\nExtensionName: \r\nFirstName: GEMMA\r\nFullName: GEMMA C. MACALINDONG\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: 0582314\r\nGovernmentIdPlaceIssued: METRO MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 01102896401\r\nHDMF: 1490-0093-5049\r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MACALINDONG\r\nMaidenName: \r\nMiddleName: CUETO\r\nMobileNumber: 09655021727\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: STA. CLARA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025002760-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3061802-0\r\nStreetName: \r\nTIN: 933-465-347-0000\r\nWeight: 70\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773075	2025-03-19	15:35:33.9870538	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3837\r\nEmployeeTrainingId: 0\r\nFromDate: October 13, 2023\r\nHours: 144\r\nNatureOfParticipation: \r\nSponsoringAgency: MC TECH TRAINING AND ASSESSMENT CENTER, INC\r\nStatus: \r\nToDate: November 09, 2023\r\nTrainingId: 16630\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773076	2025-03-19	15:35:33.9940317	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3837\r\nEmployeeTrainingId: 0\r\nFromDate: July 19, 2021\r\nHours: 356\r\nNatureOfParticipation: \r\nSponsoringAgency: TECHNICAL EDUCATION AND SKILLS DEVELOPMENT AUTHORITY BATANGAS CITY\r\nStatus: \r\nToDate: August 31, 2021\r\nTrainingId: 16631\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773082	2025-03-19	15:41:03.3719912	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3839\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: NENITA\r\nFullName: NENITA YAMBAO CORTEZ\r\nGender: Male\r\nLastName: CORTEZ\r\nMaidenName: \r\nMiddleName: YAMBAO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773083	2025-03-19	15:41:03.3759778	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3839\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CESARIO\r\nFullName: CESARIO CHAVEZ CULLA\r\nGender: Male\r\nLastName: CULLA\r\nMaidenName: \r\nMiddleName: CHAVEZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773084	2025-03-19	15:41:03.3809611	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3839\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: NENITA\r\nFullName: NENITA YAMBAO CORTEZ\r\nGender: Male\r\nLastName: CORTEZ\r\nMaidenName: \r\nMiddleName: YAMBAO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773085	2025-03-19	15:41:03.3899312	<Undetected>	Update	BasicInformationId: 3839\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3636\r\n	BasicInformationId: 3839\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3636\r\n	admin	Questionnaires	1
773093	2025-03-19	15:41:11.1938527	<Undetected>	Update	BasicInformationId: 3839\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4137\r\nExtensionName: \r\nFirstName: NENITA\r\nFullName: NENITA YAMBAO CORTEZ\r\nGender: Male\r\nLastName: CORTEZ\r\nMaidenName: \r\nMiddleName: YAMBAO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3839\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4137\r\nExtensionName: \r\nFirstName: NENITA\r\nFullName: NENITA CORTEZ\r\nGender: Male\r\nLastName: CORTEZ\r\nMaidenName: \r\nMiddleName: YAMBAO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773094	2025-03-19	15:41:11.1978395	<Undetected>	Update	BasicInformationId: 3839\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4138\r\nExtensionName: \r\nFirstName: CESARIO\r\nFullName: CESARIO CHAVEZ CULLA\r\nGender: Male\r\nLastName: CULLA\r\nMaidenName: \r\nMiddleName: CHAVEZ\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3839\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4138\r\nExtensionName: \r\nFirstName: CESARIO\r\nFullName: CESARIO CULLA\r\nGender: Male\r\nLastName: CULLA\r\nMaidenName: \r\nMiddleName: CHAVEZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773095	2025-03-19	15:41:11.2078064	<Undetected>	Update	BasicInformationId: 3839\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4139\r\nExtensionName: \r\nFirstName: NENITA\r\nFullName: NENITA YAMBAO CORTEZ\r\nGender: Male\r\nLastName: CORTEZ\r\nMaidenName: \r\nMiddleName: YAMBAO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3839\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4139\r\nExtensionName: \r\nFirstName: NENITA\r\nFullName: NENITA CORTEZ\r\nGender: Male\r\nLastName: CORTEZ\r\nMaidenName: \r\nMiddleName: YAMBAO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773096	2025-03-19	15:42:15.4813118	<Undetected>	Update	BasicInformationId: 3839\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4137\r\nExtensionName: \r\nFirstName: NENITA\r\nFullName: NENITA CORTEZ\r\nGender: Male\r\nLastName: CORTEZ\r\nMaidenName: \r\nMiddleName: YAMBAO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3839\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09053364109\r\nEmployeeRelativeId: 4137\r\nExtensionName: \r\nFirstName: DONNA\r\nFullName: DONNA ROPERO\r\nGender: Female\r\nLastName: CORTEZ\r\nMaidenName: \r\nMiddleName: ROPERO\r\nOccupation: OFFICE STAFF\r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
773097	2025-03-19	15:43:30.2258128	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3839\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 2002\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS CITY SOUTH ELEMENTARY SCHOOL\r\nYearGraduated: 2002\r\n	admin	EducationalBackgrounds	1
773098	2025-03-19	15:43:30.2367761	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3839\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2002\r\nDateTo: 2006\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 2006\r\n	admin	EducationalBackgrounds	1
773099	2025-03-19	15:43:30.2416378	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3839\r\nCourse: \r\nCourseId: 1270\r\nCourseOrMajor: \r\nDateFrom: 2009\r\nDateTo: 2016\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: ENGLISH\r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 2016\r\n	admin	EducationalBackgrounds	1
773100	2025-03-19	15:43:30.2505671	<Undetected>	Update	BasicInformationId: 3839\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09053364109\r\nEmployeeRelativeId: 4137\r\nExtensionName: \r\nFirstName: DONNA\r\nFullName: DONNA ROPERO\r\nGender: Female\r\nLastName: CORTEZ\r\nMaidenName: \r\nMiddleName: ROPERO\r\nOccupation: OFFICE STAFF\r\nRelationship: Wife\r\n	BasicInformationId: 3839\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09053364109\r\nEmployeeRelativeId: 4137\r\nExtensionName: \r\nFirstName: DONNA\r\nFullName: DONNA CORTEZ\r\nGender: Female\r\nLastName: CORTEZ\r\nMaidenName: \r\nMiddleName: ROPERO\r\nOccupation: OFFICE STAFF\r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
773101	2025-03-19	15:45:31.8341514	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLK 10 LOT 14\r\nAddress2: MERCEDES HOMES\r\nBarangay: SORO-SORO ILAYA\r\nBasicInformationId: 3839\r\nBirthDate: November 03, 1989\r\nBirthPlace: DAGUPAN, PANGASINAN\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: danroy.cortez@deped.gov.ph\r\nExtensionName: \r\nFirstName: DAN ROY\r\nFullName: DAN ROY Y. CORTEZ\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.72\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CORTEZ\r\nMaidenName: \r\nMiddleName: YAMBAO\r\nMobileNumber: 09159451249\r\nNationality: Filipino\r\nPermanentAddress1: 41-B\r\nPermanentAddress2: \r\nPermanentBarangay: POBLACION 7\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: P. CANLAPAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 83\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK 10 LOT 14\r\nAddress2: MERCEDES HOMES\r\nBarangay: SORO-SORO ILAYA\r\nBasicInformationId: 3839\r\nBirthDate: November 03, 1989\r\nBirthPlace: DAGUPAN, PANGASINAN\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: danroy.cortez@deped.gov.ph\r\nExtensionName: \r\nFirstName: DAN ROY\r\nFullName: DAN ROY Y. CORTEZ\r\nGender: Male\r\nGovernmentIdIssuedDate: February 07, 2024\r\nGovernmentIdNumber: 2142096\r\nGovernmentIdPlaceIssued: PRC LUCENA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02006514775\r\nHDMF: 1211-7777-6345\r\nHeight: 1.72\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CORTEZ\r\nMaidenName: \r\nMiddleName: YAMBAO\r\nMobileNumber: 09159451249\r\nNationality: Filipino\r\nPermanentAddress1: 41-B\r\nPermanentAddress2: \r\nPermanentBarangay: POBLACION 7\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: P. CANLAPAN\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050492160-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1778266-3\r\nStreetName: \r\nTIN: 351-043-165-0000\r\nWeight: 83\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773107	2025-03-19	15:47:09.3931132	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3839\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09196383526\r\nExtensionName: \r\nFirstName: NILO\r\nLastName: ALO\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773108	2025-03-19	15:47:09.3980967	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3839\r\nCharacterReferenceId: 0\r\nCompanyAddress: CUENCA BATANGAS\r\nCompanyName: \r\nContactNumber: 09500164522\r\nExtensionName: \r\nFirstName: ROSS NOWELL\r\nLastName: CUDIAMAT\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773109	2025-03-19	15:47:09.4040769	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3839\r\nCharacterReferenceId: 0\r\nCompanyAddress: DUMANTAY BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09456558784\r\nExtensionName: \r\nFirstName: NIKO\r\nLastName: MAGNO\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773110	2025-03-19	15:48:22.6787697	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3839\r\nDateOfExamination: September 24, 2023\r\nDateOfRelease: November 03, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 24, 2023\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 2142096\r\nPlaceOfExamination: LUCENA\r\nRating: 81.4\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
773120	2025-03-19	15:51:01.8355493	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3839\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,024.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
773121	2025-03-19	15:51:01.8445195	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3839\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 08, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
773122	2025-03-19	15:51:01.8495028	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3839\r\nCompanyInstitution: LAZADA LOGISTICS\r\nExperienceId: 0\r\nFromDate: August 01, 2024\r\nIsGovernmentService: False\r\nMonthlySalary: 20,000.00\r\nPositionHeld: INDEPENDENT CONTRACTOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: August 24, 2024\r\n	admin	Experiences	1
773123	2025-03-19	15:51:01.8544860	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3839\r\nCompanyInstitution: LIGHT MICROFINANCE\r\nExperienceId: 0\r\nFromDate: September 17, 2018\r\nIsGovernmentService: False\r\nMonthlySalary: 18,000.00\r\nPositionHeld: ACCOUNT OFFICER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: August 24, 2022\r\n	admin	Experiences	1
773124	2025-03-19	15:52:44.4019896	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BSIP BASIC TRAINING COURSE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773102	2025-03-19	15:45:38.1615949	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: CUTA\r\nBasicInformationId: 0\r\nBirthDate: January 10, 1970\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: irene.silva@deped.gov.ph\r\nExtensionName: \r\nFirstName: IRENE\r\nFullName: IRENE A. SILVA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SILVA\r\nMaidenName: \r\nMiddleName: ANDAL\r\nMobileNumber: 09235700721\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: CUTA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO JOURNAL\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO JOURNAL\r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773103	2025-03-19	15:45:38.1747174	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3841\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GREGORIO\r\nFullName: GREGORIO ENRIQUEZ SILVA\r\nGender: Male\r\nLastName: SILVA\r\nMaidenName: \r\nMiddleName: ENRIQUEZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773104	2025-03-19	15:45:38.1747174	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3841\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LEONARDA\r\nFullName: LEONARDA ALDOVINO ANDAL\r\nGender: Female\r\nLastName: ANDAL\r\nMaidenName: \r\nMiddleName: ALDOVINO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773105	2025-03-19	15:45:38.1747174	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3841\r\nBirthDate: June 08, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROBI BENEDICT\r\nFullName: ROBI BENEDICT SILVA\r\nGender: Male\r\nLastName: SILVA\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773106	2025-03-19	15:45:38.1757217	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3841\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
773111	2025-03-19	15:48:30.1133461	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3841\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1977\r\nDateTo: 1983\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: JULIAN ARCEO PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nYearGraduated: 1983\r\n	admin	EducationalBackgrounds	1
773112	2025-03-19	15:48:30.1244423	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3841\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1983\r\nDateTo: 1987\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1987\r\n	admin	EducationalBackgrounds	1
773113	2025-03-19	15:48:30.1294587	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3841\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1987\r\nDateTo: 1991\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: ST BRIDGET'S COLLEGE\r\nYearGraduated: 1991\r\n	admin	EducationalBackgrounds	1
773114	2025-03-19	15:48:30.1365543	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3841\r\nCourse: \r\nCourseId: 1348\r\nCourseOrMajor: \r\nDateFrom: 2006\r\nDateTo: 2007\r\nEducationalAttainment: 18 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
773115	2025-03-19	15:48:30.1405674	<Undetected>	Update	BasicInformationId: 3841\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4140\r\nExtensionName: \r\nFirstName: GREGORIO\r\nFullName: GREGORIO ENRIQUEZ SILVA\r\nGender: Male\r\nLastName: SILVA\r\nMaidenName: \r\nMiddleName: ENRIQUEZ\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3841\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4140\r\nExtensionName: \r\nFirstName: GREGORIO\r\nFullName: GREGORIO SILVA\r\nGender: Male\r\nLastName: SILVA\r\nMaidenName: \r\nMiddleName: ENRIQUEZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773116	2025-03-19	15:48:30.1485932	<Undetected>	Update	BasicInformationId: 3841\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4141\r\nExtensionName: \r\nFirstName: LEONARDA\r\nFullName: LEONARDA ALDOVINO ANDAL\r\nGender: Female\r\nLastName: ANDAL\r\nMaidenName: \r\nMiddleName: ALDOVINO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3841\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4141\r\nExtensionName: \r\nFirstName: LEONARDA\r\nFullName: LEONARDA ANDAL\r\nGender: Female\r\nLastName: ANDAL\r\nMaidenName: \r\nMiddleName: ALDOVINO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773117	2025-03-19	15:48:30.1536754	<Undetected>	Update	BasicInformationId: 3841\r\nBirthDate: June 08, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4142\r\nExtensionName: \r\nFirstName: ROBI BENEDICT\r\nFullName: ROBI BENEDICT SILVA\r\nGender: Male\r\nLastName: SILVA\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3841\r\nBirthDate: June 08, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4142\r\nExtensionName: \r\nFirstName: ROBI BENEDICT\r\nFullName: ROBI BENEDICT SILVA\r\nGender: Male\r\nLastName: SILVA\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773118	2025-03-19	15:48:30.1587031	<Undetected>	Update	BasicInformationId: 3841\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3638\r\n	BasicInformationId: 3841\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3638\r\n	admin	Questionnaires	1
773119	2025-03-19	15:49:51.0109040	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3841\r\nDateOfExamination: November 11, 1991\r\nDateOfRelease: January 10, 2028\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: November 11, 1991\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0644786\r\nPlaceOfExamination: BATANGAS NATIONAL HIGH SCHOOL\r\nRating: 72.46\r\nTitle: PROFESSIONAL BOARD EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
773125	2025-03-19	15:52:44.3227101	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3841\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,421.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: March 19, 2025\r\n	admin	Experiences	1
773126	2025-03-19	15:52:44.3351734	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3841\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
773127	2025-03-19	15:52:44.3652254	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3841\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
773128	2025-03-19	15:52:44.3722338	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3841\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 30,622.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-6\r\nStatus: Permanent\r\nToDate: May 31, 2023\r\n	admin	Experiences	1
773131	2025-03-19	15:55:09.0000168	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3841\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: December 06, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,065.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-6\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
773132	2025-03-19	15:55:09.0070519	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3841\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 28,766.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 05, 2022\r\n	admin	Experiences	1
773133	2025-03-19	15:55:09.0120677	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3841\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 27,210.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
773134	2025-03-19	15:55:09.0193402	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3841\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 25,653.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
773136	2025-03-19	15:55:44.7835243	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3839\r\nEmployeeTrainingId: 0\r\nFromDate: November 27, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: APPLEVILLE-BISTRO, ARCE ROAD, KUMINTANG IBABA, BATANGAS CITY\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16513\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773137	2025-03-19	15:55:44.7885075	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3839\r\nEmployeeTrainingId: 0\r\nFromDate: November 08, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: November 10, 2024\r\nTrainingId: 16633\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773138	2025-03-19	15:55:44.7934913	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3839\r\nEmployeeTrainingId: 0\r\nFromDate: September 14, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 14, 2024\r\nTrainingId: 16481\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773139	2025-03-19	15:55:44.7984746	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3839\r\nEmployeeTrainingId: 0\r\nFromDate: August 09, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: ISLA VERDE BATANGAS CITY\r\nStatus: \r\nToDate: August 09, 2024\r\nTrainingId: 16634\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773140	2025-03-19	15:55:44.8024611	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3839\r\nEmployeeTrainingId: 0\r\nFromDate: October 01, 2017\r\nHours: 56\r\nNatureOfParticipation: \r\nSponsoringAgency: BOLBOK BATANGAS CITY\r\nStatus: \r\nToDate: October 08, 2017\r\nTrainingId: 16635\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773141	2025-03-19	15:56:22.4132612	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3839\r\nSkillId: 0\r\nSkillName: COMPUTER REPAIR\r\n	admin	Skills	1
773142	2025-03-19	15:56:22.4182450	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3839\r\nSkillId: 0\r\nSkillName: DRAFTING/AUTOCAD\r\n	admin	Skills	1
773143	2025-03-19	15:56:22.4292080	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3839\r\nSkillId: 0\r\nSkillName: ADOBE PHOTOSHOP\r\n	admin	Skills	1
773152	2025-03-19	16:00:50.4666159	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3840\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CHARLIE\r\nFullName: CHARLIE HATULAN DAGUS\r\nGender: Male\r\nLastName: DAGUS\r\nMaidenName: \r\nMiddleName: HATULAN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773153	2025-03-19	16:00:50.4785759	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3840\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LERMA\r\nFullName: LERMA CALALUAN DAGUS\r\nGender: Male\r\nLastName: DAGUS\r\nMaidenName: ADALIN\r\nMiddleName: CALALUAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773154	2025-03-19	16:00:50.4835590	<Undetected>	Update	BasicInformationId: 3840\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3637\r\n	BasicInformationId: 3840\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3637\r\n	admin	Questionnaires	1
773144	2025-03-19	16:00:43.4329340	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3841\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: December 06, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 24,152.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-5\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
773145	2025-03-19	16:00:43.4389910	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3841\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 23,801.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: December 05, 2019\r\n	admin	Experiences	1
773146	2025-03-19	16:00:43.4430220	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3841\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 22,942.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
773147	2025-03-19	16:00:43.4480494	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3841\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 22,113.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
773148	2025-03-19	16:00:43.4530657	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3841\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: December 06, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 21,315.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
773149	2025-03-19	16:00:43.4580677	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3841\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 21,091.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 05, 2016\r\n	admin	Experiences	1
773150	2025-03-19	16:00:43.4621080	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3841\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: December 06, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 20,341.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
773151	2025-03-19	16:00:43.4671246	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3841\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 20,140.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: December 05, 2013\r\n	admin	Experiences	1
773155	2025-03-20	08:36:39.5272921	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3840\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: PARANG ELEMENTARY SCHOOL\r\nYearGraduated: 2009\r\n	admin	EducationalBackgrounds	1
773156	2025-03-20	08:36:39.5478095	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3840\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2009\r\nDateTo: 2013\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: ANILAO NATIONAL HIGH SCHOOL\r\nYearGraduated: 2013\r\n	admin	EducationalBackgrounds	1
773157	2025-03-20	08:36:39.5578631	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3840\r\nCourse: \r\nCourseId: 1375\r\nCourseOrMajor: \r\nDateFrom: 2013\r\nDateTo: 2017\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: KOLEHIYO NG LUNGSOD NG LIPA\r\nYearGraduated: 2017\r\n	admin	EducationalBackgrounds	1
773529	2025-03-20	15:07:04.5123109	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: LEARNING EFFECTIVELY THROUGH ENHANCED AND EVIDENCE-BASED PEDAGOGIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773158	2025-03-20	08:36:39.5753971	<Undetected>	Update	BasicInformationId: 3840\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4143\r\nExtensionName: \r\nFirstName: CHARLIE\r\nFullName: CHARLIE HATULAN DAGUS\r\nGender: Male\r\nLastName: DAGUS\r\nMaidenName: \r\nMiddleName: HATULAN\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3840\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4143\r\nExtensionName: \r\nFirstName: CHARLIE\r\nFullName: CHARLIE DAGUS\r\nGender: Male\r\nLastName: DAGUS\r\nMaidenName: \r\nMiddleName: HATULAN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773159	2025-03-20	08:36:39.5846158	<Undetected>	Update	BasicInformationId: 3840\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4144\r\nExtensionName: \r\nFirstName: LERMA\r\nFullName: LERMA CALALUAN DAGUS\r\nGender: Male\r\nLastName: DAGUS\r\nMaidenName: ADALIN\r\nMiddleName: CALALUAN\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3840\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4144\r\nExtensionName: \r\nFirstName: LERMA\r\nFullName: LERMA DAGUS\r\nGender: Male\r\nLastName: DAGUS\r\nMaidenName: \r\nMiddleName: CALALUAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773160	2025-03-20	08:38:24.2461694	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SAN ANTONIO\r\nBarangay: ISLA VERDE\r\nBasicInformationId: 3840\r\nBirthDate: June 13, 1997\r\nBirthPlace: ISLA VERDE, BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rhealyn.dagus@deped.gov.ph\r\nExtensionName: \r\nFirstName: RHEALYN\r\nFullName: RHEALYN C. DAGUS\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.72\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DAGUS\r\nMaidenName: \r\nMiddleName: CALALUAN\r\nMobileNumber: 09656818682\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SAN ANTONIO\r\nPermanentBarangay: ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 68\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SAN ANTONIO\r\nBarangay: ISLA VERDE\r\nBasicInformationId: 3840\r\nBirthDate: June 13, 1997\r\nBirthPlace: ISLA VERDE, BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rhealyn.dagus@deped.gov.ph\r\nExtensionName: \r\nFirstName: RHEALYN\r\nFullName: RHEALYN C. DAGUS\r\nGender: Female\r\nGovernmentIdIssuedDate: December 13, 2017\r\nGovernmentIdNumber: 1578695\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02006359071\r\nHDMF: 1212-8793-6661\r\nHeight: 1.72\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DAGUS\r\nMaidenName: \r\nMiddleName: CALALUAN\r\nMobileNumber: 09656818682\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SAN ANTONIO\r\nPermanentBarangay: ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-250239016-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-4256296-0\r\nStreetName: \r\nTIN: 720-776-926-0000\r\nWeight: 68\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773161	2025-03-20	08:40:53.8997934	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3840\r\nCharacterReferenceId: 0\r\nCompanyAddress: PAHARANG EAST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09453190454\r\nExtensionName: \r\nFirstName: MARICEL\r\nLastName: SULIT\r\nMiddleName: CONTRERAS\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773162	2025-03-20	08:40:53.9078867	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3840\r\nCharacterReferenceId: 0\r\nCompanyAddress: LIBJO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09093202297\r\nExtensionName: \r\nFirstName: VIRGINIA\r\nLastName: FRUELDA\r\nMiddleName: DELGADO\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773163	2025-03-20	08:40:53.9129030	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3840\r\nCharacterReferenceId: 0\r\nCompanyAddress: STA. RITA KARSADA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09397597592\r\nExtensionName: \r\nFirstName: AZENETH\r\nLastName: CUETO\r\nMiddleName: EVANGELISTA\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773164	2025-03-20	08:46:18.7852015	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3840\r\nDateOfExamination: September 24, 2017\r\nDateOfRelease: June 13, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 24, 2017\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1578695\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 76.2\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
773165	2025-03-20	08:46:18.7914110	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3840\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,024.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
773166	2025-03-20	08:46:18.7978737	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3840\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
773167	2025-03-20	08:46:18.8018737	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3840\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 17, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
773168	2025-03-20	08:46:18.8083123	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3840\r\nCompanyInstitution: KID PARADISE LEARNING AND REVIEW CENTER\r\nExperienceId: 0\r\nFromDate: July 22, 2023\r\nIsGovernmentService: False\r\nMonthlySalary: 10,000.00\r\nPositionHeld: TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: August 10, 2023\r\n	admin	Experiences	1
773169	2025-03-20	08:46:18.8123220	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3840\r\nCompanyInstitution: MISSIONARY CATECHISTS OF SACRED HEART SCHOOL\r\nExperienceId: 0\r\nFromDate: August 04, 2021\r\nIsGovernmentService: False\r\nMonthlySalary: 10,000.00\r\nPositionHeld: TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: April 30, 2022\r\n	admin	Experiences	1
773170	2025-03-20	08:46:18.8175040	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3840\r\nCompanyInstitution: KIDZ PARADISE LEARNING AND REVIEW CENTER\r\nExperienceId: 0\r\nFromDate: June 15, 2017\r\nIsGovernmentService: False\r\nMonthlySalary: 10,000.00\r\nPositionHeld: TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: June 30, 2021\r\n	admin	Experiences	1
773171	2025-03-20	08:46:24.8865651	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 130\r\nAddress2: \r\nBarangay: LIBJO\r\nBasicInformationId: 0\r\nBirthDate: September 14, 1984\r\nBirthPlace: 130 LAMAO LIBJO, BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: JONALYN.TOLENTINO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: JONALYN\r\nFullName: JONALYN S. TOLENTINO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: SAMSON\r\nMobileNumber: 09771516830\r\nNationality: Filipino\r\nPermanentAddress1: 130\r\nPermanentAddress2: \r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LAMAO\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LAMAO\r\nTIN: \r\nWeight: 52\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773172	2025-03-20	08:46:25.0002361	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3842\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
773173	2025-03-20	08:47:55.9730563	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ICT TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773174	2025-03-20	08:48:36.9704713	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ENGLISH LANGUAGE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773175	2025-03-20	08:50:00.2531214	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INTERNATIONAL WEBINAR-WORKSHOP ON ENGLISH ENHANCEMENT: TOWARDS PERSONAL, ACADEMIC AND PROFESSIONAL GROWTH\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773176	2025-03-20	08:50:37.0944747	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3840\r\nEmployeeTrainingId: 0\r\nFromDate: September 13, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2024\r\nTrainingId: 16591\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773177	2025-03-20	08:50:37.0984985	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3840\r\nEmployeeTrainingId: 0\r\nFromDate: January 29, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: January 31, 2024\r\nTrainingId: 15604\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773178	2025-03-20	08:50:37.1045532	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3840\r\nEmployeeTrainingId: 0\r\nFromDate: March 02, 2020\r\nHours: 88\r\nNatureOfParticipation: \r\nSponsoringAgency: BACULI COMPUTER AND PRINTING SERVICES\r\nStatus: \r\nToDate: March 11, 2020\r\nTrainingId: 16636\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773179	2025-03-20	08:50:37.1085652	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3840\r\nEmployeeTrainingId: 0\r\nFromDate: June 07, 2021\r\nHours: 100\r\nNatureOfParticipation: \r\nSponsoringAgency: TECHNICAL EDUCATION AND SKILLS DEVELOPMENT AUTHORITY\r\nStatus: \r\nToDate: July 19, 2021\r\nTrainingId: 16637\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773180	2025-03-20	08:50:37.1135808	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3840\r\nEmployeeTrainingId: 0\r\nFromDate: March 12, 2021\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: ACE IT UP CENTER FOR LEARNING AND DEVELOPMENT\r\nStatus: \r\nToDate: March 14, 2021\r\nTrainingId: 16638\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773181	2025-03-20	08:53:33.8139180	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3838\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ANGELITO\r\nFullName: ANGELITO LECAROZ MANALO\r\nGender: Male\r\nLastName: MANALO\r\nMaidenName: \r\nMiddleName: LECAROZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773182	2025-03-20	08:53:33.8239854	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3838\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARIA VICTORIA\r\nFullName: MARIA VICTORIA FAJILAN MANALO\r\nGender: Male\r\nLastName: MANALO\r\nMaidenName: FERRY\r\nMiddleName: FAJILAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773183	2025-03-20	08:53:33.8352006	<Undetected>	Update	BasicInformationId: 3838\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3635\r\n	BasicInformationId: 3838\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3635\r\n	admin	Questionnaires	1
773184	2025-03-20	08:55:39.5533745	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3838\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS CITY SOUTH ELEMENTARY SCHOOL\r\nYearGraduated: 2009\r\n	admin	EducationalBackgrounds	1
773185	2025-03-20	08:55:39.5583905	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3838\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2009\r\nDateTo: 2013\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 2013\r\n	admin	EducationalBackgrounds	1
773186	2025-03-20	08:55:39.5684879	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: ACHIEVER AWARD\r\nBasicInformationId: 3838\r\nCourse: \r\nCourseId: 1270\r\nCourseOrMajor: \r\nDateFrom: 2013\r\nDateTo: 2017\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MATHEMATICS\r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 2017\r\n	admin	EducationalBackgrounds	1
773187	2025-03-20	08:55:39.5725007	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3838\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2022\r\nDateTo: 2024\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MATHEMATICS\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2024\r\n	admin	EducationalBackgrounds	1
773188	2025-03-20	08:55:39.5795527	<Undetected>	Update	BasicInformationId: 3838\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4145\r\nExtensionName: \r\nFirstName: ANGELITO\r\nFullName: ANGELITO LECAROZ MANALO\r\nGender: Male\r\nLastName: MANALO\r\nMaidenName: \r\nMiddleName: LECAROZ\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3838\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4145\r\nExtensionName: \r\nFirstName: ANGELITO\r\nFullName: ANGELITO MANALO\r\nGender: Male\r\nLastName: MANALO\r\nMaidenName: \r\nMiddleName: LECAROZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773189	2025-03-20	08:55:39.5845684	<Undetected>	Update	BasicInformationId: 3838\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4146\r\nExtensionName: \r\nFirstName: MARIA VICTORIA\r\nFullName: MARIA VICTORIA FAJILAN MANALO\r\nGender: Male\r\nLastName: MANALO\r\nMaidenName: FERRY\r\nMiddleName: FAJILAN\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3838\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4146\r\nExtensionName: \r\nFirstName: MARIA VICTORIA\r\nFullName: MARIA VICTORIA MANALO\r\nGender: Male\r\nLastName: MANALO\r\nMaidenName: \r\nMiddleName: FAJILAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773190	2025-03-20	08:56:30.3950812	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3841\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,568.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
773191	2025-03-20	08:56:30.4011575	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3841\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: December 06, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 16,995.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
773192	2025-03-20	08:56:30.4061580	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3841\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 16,726.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 05, 2010\r\n	admin	Experiences	1
773530	2025-03-20	15:07:33.3948021	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: OUTDOOR LEADERSHIP COURSE OF GSP BATANGAS CITY COUNCIL SOUTHERN LUZON REGION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773193	2025-03-20	08:56:30.4101578	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3841\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 15,119.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
773194	2025-03-20	08:56:30.4151582	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3841\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,748.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: August 30, 2009\r\n	admin	Experiences	1
773195	2025-03-20	08:56:30.4201581	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3841\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: December 06, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 11,589.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
773196	2025-03-20	08:56:30.4251581	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3841\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,933.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 05, 2007\r\n	admin	Experiences	1
773197	2025-03-20	08:56:30.4301581	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3841\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: March 07, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
773211	2025-03-20	09:00:24.2338950	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL TRAINERS GETHERING 2022\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773212	2025-03-20	09:01:07.4961718	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REGIONAL TRAINERS GATHERING 2022\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773225	2025-03-20	09:02:45.0715309	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: COUNCIL BOARD ORIENTATION (DIGITAL TRAINING)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773235	2025-03-20	09:08:09.9592364	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: VIRTUAL IN-SERVICE TRAINING FOR PUBLIC SCHOOL TEACHERS CAPACITY IN USING ICT AND EMERGING TECHNOLOGIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773243	2025-03-20	09:10:20.7754612	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: VIRTUAL IN-SERVICE TRAINING FOR PUBLIC SCHOOL TEACHERS-RETOOLING OF TEACHERS CAPACITY IN USING ICT AND EMERGING TECHNOLOGIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773247	2025-03-20	09:11:52.2598352	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3841\r\nEmployeeTrainingId: 0\r\nFromDate: June 09, 2022\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: June 10, 2022\r\nTrainingId: 15882\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773248	2025-03-20	09:11:52.2648351	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3841\r\nEmployeeTrainingId: 0\r\nFromDate: April 29, 2022\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: GIRL SCOUT OF THE PHILIPPINES, SOUTHERN LUZON REGION\r\nStatus: \r\nToDate: May 01, 2022\r\nTrainingId: 16640\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773249	2025-03-20	09:11:52.2698352	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3841\r\nEmployeeTrainingId: 0\r\nFromDate: January 07, 2022\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: GIRL SCOUT OF THE PHILIPPINES, SOUTHERN LUZON REGION\r\nStatus: \r\nToDate: January 09, 2022\r\nTrainingId: 16641\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773250	2025-03-20	09:11:52.2748352	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3841\r\nEmployeeTrainingId: 0\r\nFromDate: August 30, 2021\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: September 03, 2021\r\nTrainingId: 16642\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773198	2025-03-20	08:57:12.6173805	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 6C LOT 64\r\nAddress2: ECOVERDE HOMES\r\nBarangay: BARANGAY STO. NINO\r\nBasicInformationId: 3838\r\nBirthDate: August 07, 1996\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: SAN PASCUAL\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: maangelica.manalo@deped.gov.ph\r\nExtensionName: \r\nFirstName: MA. ANGELICA\r\nFullName: MA. ANGELICA F. MANALO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MANALO\r\nMaidenName: \r\nMiddleName: FAJILAN\r\nMobileNumber: 09292210744\r\nNationality: Filipino\r\nPermanentAddress1: 141\r\nPermanentAddress2: \r\nPermanentBarangay: BARANGAY 12\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: VERGARA STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 53\r\nZipCode: 4204\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 6C LOT 64\r\nAddress2: ECOVERDE HOMES\r\nBarangay: BARANGAY STO. NINO\r\nBasicInformationId: 3838\r\nBirthDate: August 07, 1996\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: SAN PASCUAL\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: maangelica.manalo@deped.gov.ph\r\nExtensionName: \r\nFirstName: MA. ANGELICA\r\nFullName: MA. ANGELICA F. MANALO\r\nGender: Female\r\nGovernmentIdIssuedDate: May 21, 2018\r\nGovernmentIdNumber: 1630570\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02005825758\r\nHDMF: 1211-9957-7462\r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MANALO\r\nMaidenName: \r\nMiddleName: FAJILAN\r\nMobileNumber: 09292210744\r\nNationality: Filipino\r\nPermanentAddress1: 141\r\nPermanentAddress2: \r\nPermanentBarangay: BARANGAY 12\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: VERGARA STREET\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-250203849-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3903401-6\r\nStreetName: \r\nTIN: 700-923-490-0000\r\nWeight: 53\r\nZipCode: 4204\r\n	admin	BasicInformation	1
773208	2025-03-20	08:59:03.3225032	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3838\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09217787383\r\nExtensionName: \r\nFirstName: IVY\r\nLastName: FRONDA\r\nMiddleName: E\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773209	2025-03-20	08:59:03.3277571	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3838\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09084104780\r\nExtensionName: \r\nFirstName: ANGELICA\r\nLastName: ESCALERA\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773210	2025-03-20	08:59:03.3338642	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3838\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09675403488\r\nExtensionName: \r\nFirstName: ARGEL\r\nLastName: FAMPULME\r\nMiddleName: F\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773227	2025-03-20	09:04:25.2392826	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3838\r\nDateOfExamination: September 24, 2017\r\nDateOfRelease: August 07, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 24, 2017\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1630570\r\nPlaceOfExamination: MANILA\r\nRating: 83.4\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
773228	2025-03-20	09:04:25.2442825	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3838\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,308.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
773229	2025-03-20	09:04:25.2494279	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3838\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 19, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,796.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
773230	2025-03-20	09:04:25.2534545	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3838\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 18, 2024\r\n	admin	Experiences	1
773231	2025-03-20	09:04:25.2584707	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3838\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,439.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
773232	2025-03-20	09:04:25.2634869	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3838\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 19, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 23,877.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
773251	2025-03-20	09:11:52.2788349	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3841\r\nEmployeeTrainingId: 0\r\nFromDate: March 15, 2021\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: March 19, 2021\r\nTrainingId: 16642\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773199	2025-03-20	08:57:47.7134430	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3842\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: STEPHEN\r\nFullName: STEPHEN MARANAN TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: MARANAN\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
773200	2025-03-20	08:57:47.7289464	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3842\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DIONISIO\r\nFullName: DIONISIO CANIEDO SAMSON\r\nGender: Male\r\nLastName: SAMSON\r\nMaidenName: \r\nMiddleName: CANIEDO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773201	2025-03-20	08:57:47.7338925	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3842\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOSEPHINE\r\nFullName: JOSEPHINE MALIGAYA SANCHEZ\r\nGender: Male\r\nLastName: SANCHEZ\r\nMaidenName: \r\nMiddleName: MALIGAYA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773202	2025-03-20	08:57:47.7456499	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3842\r\nBirthDate: December 14, 2010\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOHN STEVEN\r\nFullName: JOHN STEVEN S. TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: S.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773203	2025-03-20	08:57:47.7495990	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3842\r\nBirthDate: May 26, 2012\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JAMES SIEMON\r\nFullName: JAMES SIEMON S. TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: S.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773204	2025-03-20	08:57:47.7555987	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3842\r\nBirthDate: April 30, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JONAS SAMUEL\r\nFullName: JONAS SAMUEL S. TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: S.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773205	2025-03-20	08:57:47.7605987	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3842\r\nBirthDate: December 16, 2015\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOANA SHAYNE\r\nFullName: JOANA SHAYNE S. TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: S.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773206	2025-03-20	08:57:47.7655987	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3842\r\nBirthDate: December 02, 2020\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOIRA SHAINA\r\nFullName: JOIRA SHAINA S. TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: S.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773207	2025-03-20	08:57:47.7705993	<Undetected>	Update	BasicInformationId: 3842\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3639\r\n	BasicInformationId: 3842\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3639\r\n	admin	Questionnaires	1
773213	2025-03-20	09:01:54.6577448	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3842\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1991\r\nDateTo: 1996\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: LIBJO ELEMENTARY SCHOOL \r\nYearGraduated: 1996\r\n	admin	EducationalBackgrounds	1
773214	2025-03-20	09:01:54.6627437	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3842\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1997\r\nDateTo: 2001\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL \r\nYearGraduated: 2001\r\n	admin	EducationalBackgrounds	1
773215	2025-03-20	09:01:54.6737452	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3842\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2005\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS \r\nYearGraduated: 2005\r\n	admin	EducationalBackgrounds	1
773216	2025-03-20	09:01:54.6787436	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3842\r\nCourse: \r\nCourseId: 1333\r\nCourseOrMajor: \r\nDateFrom: 2011\r\nDateTo: 2015\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: EDUCATIONAL MANAGEMENT \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY \r\nYearGraduated: 2015\r\n	admin	EducationalBackgrounds	1
773252	2025-03-20	09:16:44.7474596	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3841\r\nSkillId: 0\r\nSkillName: SCOUTING \r\n	admin	Skills	1
773217	2025-03-20	09:01:54.6857439	<Undetected>	Update	BasicInformationId: 3842\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4147\r\nExtensionName: \r\nFirstName: STEPHEN\r\nFullName: STEPHEN MARANAN TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: MARANAN\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3842\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4147\r\nExtensionName: \r\nFirstName: STEPHEN\r\nFullName: STEPHEN TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: MARANAN\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
773218	2025-03-20	09:01:54.6907441	<Undetected>	Update	BasicInformationId: 3842\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4148\r\nExtensionName: \r\nFirstName: DIONISIO\r\nFullName: DIONISIO CANIEDO SAMSON\r\nGender: Male\r\nLastName: SAMSON\r\nMaidenName: \r\nMiddleName: CANIEDO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3842\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4148\r\nExtensionName: \r\nFirstName: DIONISIO\r\nFullName: DIONISIO SAMSON\r\nGender: Male\r\nLastName: SAMSON\r\nMaidenName: \r\nMiddleName: CANIEDO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773219	2025-03-20	09:01:54.6997439	<Undetected>	Update	BasicInformationId: 3842\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4149\r\nExtensionName: \r\nFirstName: JOSEPHINE\r\nFullName: JOSEPHINE MALIGAYA SANCHEZ\r\nGender: Male\r\nLastName: SANCHEZ\r\nMaidenName: \r\nMiddleName: MALIGAYA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3842\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4149\r\nExtensionName: \r\nFirstName: JOSEPHINE\r\nFullName: JOSEPHINE SANCHEZ\r\nGender: Male\r\nLastName: SANCHEZ\r\nMaidenName: \r\nMiddleName: MALIGAYA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773220	2025-03-20	09:01:54.7047468	<Undetected>	Update	BasicInformationId: 3842\r\nBirthDate: December 14, 2010\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4150\r\nExtensionName: \r\nFirstName: JOHN STEVEN\r\nFullName: JOHN STEVEN S. TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: S.\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3842\r\nBirthDate: December 14, 2010\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4150\r\nExtensionName: \r\nFirstName: JOHN STEVEN\r\nFullName: JOHN STEVEN TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: S.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773221	2025-03-20	09:01:54.7117514	<Undetected>	Update	BasicInformationId: 3842\r\nBirthDate: May 26, 2012\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4151\r\nExtensionName: \r\nFirstName: JAMES SIEMON\r\nFullName: JAMES SIEMON S. TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: S.\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3842\r\nBirthDate: May 26, 2012\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4151\r\nExtensionName: \r\nFirstName: JAMES SIEMON\r\nFullName: JAMES SIEMON TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: S.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773222	2025-03-20	09:01:54.7167507	<Undetected>	Update	BasicInformationId: 3842\r\nBirthDate: April 30, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4152\r\nExtensionName: \r\nFirstName: JONAS SAMUEL\r\nFullName: JONAS SAMUEL S. TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: S.\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3842\r\nBirthDate: April 30, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4152\r\nExtensionName: \r\nFirstName: JONAS SAMUEL\r\nFullName: JONAS SAMUEL TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: S.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773223	2025-03-20	09:01:54.7217512	<Undetected>	Update	BasicInformationId: 3842\r\nBirthDate: December 16, 2015\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4153\r\nExtensionName: \r\nFirstName: JOANA SHAYNE\r\nFullName: JOANA SHAYNE S. TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: S.\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3842\r\nBirthDate: December 16, 2015\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4153\r\nExtensionName: \r\nFirstName: JOANA SHAYNE\r\nFullName: JOANA SHAYNE TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: S.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773224	2025-03-20	09:01:54.7272650	<Undetected>	Update	BasicInformationId: 3842\r\nBirthDate: December 02, 2020\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4154\r\nExtensionName: \r\nFirstName: JOIRA SHAINA\r\nFullName: JOIRA SHAINA S. TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: S.\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3842\r\nBirthDate: December 02, 2020\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4154\r\nExtensionName: \r\nFirstName: JOIRA SHAINA\r\nFullName: JOIRA SHAINA TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: S.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773226	2025-03-20	09:04:13.2884688	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3842\r\nDateOfExamination: August 14, 2005\r\nDateOfRelease: September 14, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 14, 2005\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0894012\r\nPlaceOfExamination: LUCENA CITY \r\nRating: 77.6\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
773244	2025-03-20	09:10:52.5496509	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3842\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: September 26, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 19,940.00\r\nPositionHeld: TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
773245	2025-03-20	09:10:52.5536498	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3842\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 21,387.00\r\nPositionHeld: TEACHER II \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
773253	2025-03-20	09:16:44.7514596	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3841\r\nRecognitionId: 0\r\nRecognitionName: SERVICE AWARD / AMETHYST ON GOLD\r\n	admin	Recognitions	1
773233	2025-03-20	09:04:25.2686073	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3838\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 04, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,316.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: January 15, 2021\r\n	admin	Experiences	1
773234	2025-03-20	09:04:25.2726211	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3838\r\nCompanyInstitution: UNIVERSITY OF BATANGAS\r\nExperienceId: 0\r\nFromDate: June 01, 2017\r\nIsGovernmentService: False\r\nMonthlySalary: 19,576.34\r\nPositionHeld: TEACHER I-A, JUNIOR HIGH\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 09-1\r\nStatus: Probationary\r\nToDate: April 15, 2020\r\n	admin	Experiences	1
773236	2025-03-20	09:08:43.4933876	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3838\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16372\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773237	2025-03-20	09:08:43.4993875	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3838\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16470\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773238	2025-03-20	09:08:43.5033871	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3838\r\nEmployeeTrainingId: 0\r\nFromDate: September 20, 2023\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 23, 2023\r\nTrainingId: 16083\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773239	2025-03-20	09:08:43.5083870	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3838\r\nEmployeeTrainingId: 0\r\nFromDate: August 02, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 02, 2023\r\nTrainingId: 15143\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773240	2025-03-20	09:08:43.5133873	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3838\r\nEmployeeTrainingId: 0\r\nFromDate: July 18, 2023\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 20, 2023\r\nTrainingId: 15617\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773241	2025-03-20	09:08:56.6949706	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3838\r\nSkillId: 0\r\nSkillName: CHORAL SINGING\r\n	admin	Skills	1
773242	2025-03-20	09:10:24.2311473	<Undetected>	Update	BasicInformationId: 3839\r\nCompanyInstitution: LAZADA LOGISTICS\r\nExperienceId: 13307\r\nFromDate: August 01, 2024\r\nIsGovernmentService: False\r\nMonthlySalary: 20,000.00\r\nPositionHeld: INDEPENDENT CONTRACTOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: August 24, 2024\r\n	BasicInformationId: 3839\r\nCompanyInstitution: LAZADA LOGISTICS\r\nExperienceId: 13307\r\nFromDate: August 01, 2022\r\nIsGovernmentService: False\r\nMonthlySalary: 20,000.00\r\nPositionHeld: INDEPENDENT CONTRACTOR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: August 24, 2024\r\n	admin	Experiences	1
773268	2025-03-20	09:30:50.6446751	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: THIRD HONORABLE\r\nBasicInformationId: 3836\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1993\r\nDateTo: 1999\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL\r\nYearGraduated: 1999\r\n	admin	EducationalBackgrounds	1
773269	2025-03-20	09:30:50.6492839	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: FIRST HONORABLE\r\nBasicInformationId: 3836\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1999\r\nDateTo: 2003\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGUSTIN NATIONAL HIGH SCHOOL\r\nYearGraduated: 2003\r\n	admin	EducationalBackgrounds	1
773270	2025-03-20	09:30:50.6543035	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3836\r\nCourse: \r\nCourseId: 1270\r\nCourseOrMajor: \r\nDateFrom: 2009\r\nDateTo: 2013\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: BIOLOGICAL SCIENCE\r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2013\r\n	admin	EducationalBackgrounds	1
773271	2025-03-20	09:30:50.6644971	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3836\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2016\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: PHILIPPINE COLLEGE OF HEALTH AND SCIENCES\r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
773314	2025-03-20	09:38:59.2195324	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3836\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO, ISLA VERDE\r\nCompanyName: \r\nContactNumber: 09475854673\r\nExtensionName: \r\nFirstName: RIZA\r\nLastName: EBORA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773246	2025-03-20	09:10:52.5626955	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3842\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: December 31, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 35,049.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: January 01, 2025\r\n	admin	Experiences	1
773266	2025-03-20	09:24:18.5437699	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL LEARNING ACTION CELL ON THE USE OF EFFECTIVE INTERVENTION AND ENHANCEMENT STRATEGIES TO IMPROVE PERFORMANCE\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
773267	2025-03-20	09:29:56.5405823	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FIRE PREVENTION AND SAFTEY CONSCIOUSNESS TRAINING\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
773275	2025-03-20	09:33:12.5073626	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: STRESS MANAGEMENT AND WELLNESS ACTIVITY\r\nTrainingId: 0\r\nType: TECHNICAL \r\n	admin	Trainings	1
773300	2025-03-20	09:37:03.6479550	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3842\r\nEmployeeTrainingId: 0\r\nFromDate: December 12, 2024\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: LIBJO ELEMENTARY SCHOOL \r\nStatus: \r\nToDate: December 12, 2024\r\nTrainingId: 16644\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773301	2025-03-20	09:37:03.6519552	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3842\r\nEmployeeTrainingId: 0\r\nFromDate: October 18, 2024\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: LIBJO ELEMENTARY SCHOOL \r\nStatus: \r\nToDate: October 18, 2024\r\nTrainingId: 16645\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773302	2025-03-20	09:37:03.6579573	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3842\r\nEmployeeTrainingId: 0\r\nFromDate: March 10, 2003\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: LIBJO ELEMENTARY SCHOOL \r\nStatus: \r\nToDate: March 10, 2003\r\nTrainingId: 16646\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773303	2025-03-20	09:37:03.6619574	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3842\r\nEmployeeTrainingId: 0\r\nFromDate: February 06, 2023\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: LIBJO ELEMENTARY SCHOOL \r\nStatus: \r\nToDate: February 06, 2023\r\nTrainingId: 16606\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773304	2025-03-20	09:37:03.6674635	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3842\r\nEmployeeTrainingId: 0\r\nFromDate: August 12, 2022\r\nHours: 56\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: August 22, 2022\r\nTrainingId: 15577\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773306	2025-03-20	09:38:56.5478496	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3842\r\nSkillId: 0\r\nSkillName: READING BOOKS \r\n	admin	Skills	1
773307	2025-03-20	09:38:56.5543609	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3842\r\nSkillId: 0\r\nSkillName: GARDENING \r\n	admin	Skills	1
773308	2025-03-20	09:38:56.5663623	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3842\r\nSkillId: 0\r\nSkillName: WRITING \r\n	admin	Skills	1
773309	2025-03-20	09:38:56.5714025	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3842\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
773310	2025-03-20	09:38:56.5793579	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3842\r\nRecognitionId: 0\r\nRecognitionName: DISTRICT VII GAWAD STAR WRITER \r\n	admin	Recognitions	1
773311	2025-03-20	09:38:56.5843590	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3842\r\nOrganizationId: 0\r\nOrganizationName: GIRL SCOUTS OF THE PHILIPPINES  \r\n	admin	Organizations	1
773345	2025-03-20	09:57:17.8948683	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3842\r\nCharacterReferenceId: 0\r\nCompanyAddress: TABANGAO DAO, BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 0437271358\r\nExtensionName: \r\nFirstName: RICA \r\nLastName: SUAREZ\r\nMiddleName: A. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773346	2025-03-20	09:57:17.9038685	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3842\r\nCharacterReferenceId: 0\r\nCompanyAddress: TABANGAO LIBJO, BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 0437271358\r\nExtensionName: \r\nFirstName: GEMMA \r\nLastName: CLAVERIA \r\nMiddleName: C. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773347	2025-03-20	09:57:17.9088684	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3842\r\nCharacterReferenceId: 0\r\nCompanyAddress: EASTERN LIBJO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 0437271358\r\nExtensionName: \r\nFirstName: CONCEPCION \r\nLastName: SOLIMAN \r\nMiddleName: G. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773387	2025-03-20	10:15:20.9775007	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3835\r\nEmployeeTrainingId: 0\r\nFromDate: September 20, 2023\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: September 23, 2023\r\nTrainingId: 16083\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773257	2025-03-20	09:16:44.7714609	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3841\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAMPAGA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09171600146\r\nExtensionName: \r\nFirstName: ROWENA\r\nLastName: ASI\r\nMiddleName: T. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773258	2025-03-20	09:16:44.7764613	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3841\r\nCharacterReferenceId: 0\r\nCompanyAddress: ARRIETTA ROAD, BARANGAY 20, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09338162523\r\nExtensionName: \r\nFirstName: JAZMIN\r\nLastName: CRELENCIA\r\nMiddleName: M.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773259	2025-03-20	09:16:44.7824598	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: CUTA\r\nBasicInformationId: 3841\r\nBirthDate: January 10, 1970\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: irene.silva@deped.gov.ph\r\nExtensionName: \r\nFirstName: IRENE\r\nFullName: IRENE A. SILVA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SILVA\r\nMaidenName: \r\nMiddleName: ANDAL\r\nMobileNumber: 09235700721\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: CUTA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO JOURNAL\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO JOURNAL\r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: CUTA\r\nBasicInformationId: 3841\r\nBirthDate: January 10, 1970\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: irene.silva@deped.gov.ph\r\nExtensionName: \r\nFirstName: IRENE\r\nFullName: IRENE A. SILVA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: 0644786\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02003003551\r\nHDMF: 1490-0096-7280\r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SILVA\r\nMaidenName: \r\nMiddleName: ANDAL\r\nMobileNumber: 09235700721\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: CUTA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO JOURNAL\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000066125-1\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO JOURNAL\r\nTIN: 146-955-510-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773260	2025-03-20	09:22:10.9463393	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: DE JOYA COMPOUND\r\nBarangay: ALANGILAN\r\nBasicInformationId: 0\r\nBirthDate: April 11, 1979\r\nBirthPlace: BALAYAN, BATANGAS\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: sharlene.rayos001@deped.gov.ph\r\nExtensionName: \r\nFirstName: SHARLENE\r\nFullName: SHARLENE C. RAYOS\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.47\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: CACAO\r\nMobileNumber: 09081434705\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: DE JOYA COMPOUND\r\nPermanentBarangay: ALANGILAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO\r\nTIN: \r\nWeight: 48\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773261	2025-03-20	09:22:10.9596378	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3843\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 0286556404\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EFREN\r\nFullName: EFREN TOLENTINO RAYOS\r\nGender: Male\r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: TOLENTINO\r\nOccupation: SEAMAN\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
773262	2025-03-20	09:22:10.9596378	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3843\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ANTONIO\r\nFullName: ANTONIO DEL MONTE CACAO\r\nGender: Male\r\nLastName: CACAO\r\nMaidenName: \r\nMiddleName: DEL MONTE\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773263	2025-03-20	09:22:10.9596378	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3843\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: TERESITA\r\nFullName: TERESITA PEREZ BUESA\r\nGender: Female\r\nLastName: BUESA\r\nMaidenName: \r\nMiddleName: PEREZ\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773264	2025-03-20	09:22:10.9596378	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3843\r\nBirthDate: July 20, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SHANE FRENSY\r\nFullName: SHANE FRENSY CACAO RAYOS\r\nGender: Male\r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: CACAO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773265	2025-03-20	09:22:10.9596378	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3843\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
773388	2025-03-20	10:15:20.9835197	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3835\r\nEmployeeTrainingId: 0\r\nFromDate: August 18, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: August 18, 2023\r\nTrainingId: 15963\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773272	2025-03-20	09:30:50.6685610	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3836\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ARNOLD\r\nFullName: ARNOLD CUETO AMUL\r\nGender: Male\r\nLastName: AMUL\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
773273	2025-03-20	09:30:50.6767726	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3836\r\nBirthDate: December 12, 2019\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALIJAH JOHAN\r\nFullName: ALIJAH JOHAN LUALHATI AMUL\r\nGender: Male\r\nLastName: AMUL\r\nMaidenName: \r\nMiddleName: LUALHATI\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773274	2025-03-20	09:30:50.6820674	<Undetected>	Update	BasicInformationId: 3836\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3633\r\n	BasicInformationId: 3836\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3633\r\n	admin	Questionnaires	1
773297	2025-03-20	09:37:05.1567691	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SAN AGUSTIN SILANGAN\r\nBarangay: ISLA VERDE\r\nBasicInformationId: 3836\r\nBirthDate: December 14, 1985\r\nBirthPlace: SAN AGUSTIN ISLA VERDE\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jenelyn.amul@deped.gov.ph\r\nExtensionName: \r\nFirstName: JENELYN\r\nFullName: JENELYN L. AMUL\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: AMUL\r\nMaidenName: \r\nMiddleName: LUALHATI\r\nMobileNumber: 09605572155\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SAN AGUSTIN SILANGAN\r\nPermanentBarangay: ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 66\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SAN AGUSTIN SILANGAN\r\nBarangay: ISLA VERDE\r\nBasicInformationId: 3836\r\nBirthDate: December 14, 1985\r\nBirthPlace: SAN AGUSTIN ISLA VERDE\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jenelyn.amul@deped.gov.ph\r\nExtensionName: \r\nFirstName: JENELYN\r\nFullName: JENELYN L. AMUL\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02004532235\r\nHDMF: 1210-9136-8639\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: AMUL\r\nMaidenName: \r\nMiddleName: LUALHATI\r\nMobileNumber: 09605572155\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SAN AGUSTIN SILANGAN\r\nPermanentBarangay: ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050162907-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 252-903-670-0000\r\nWeight: 66\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773298	2025-03-20	09:37:05.1619743	<Undetected>	Update	BasicInformationId: 3836\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4159\r\nExtensionName: \r\nFirstName: ARNOLD\r\nFullName: ARNOLD CUETO AMUL\r\nGender: Male\r\nLastName: AMUL\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3836\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4159\r\nExtensionName: \r\nFirstName: ARNOLD\r\nFullName: ARNOLD AMUL\r\nGender: Male\r\nLastName: AMUL\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
773299	2025-03-20	09:37:05.1730110	<Undetected>	Update	BasicInformationId: 3836\r\nBirthDate: December 12, 2019\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4160\r\nExtensionName: \r\nFirstName: ALIJAH JOHAN\r\nFullName: ALIJAH JOHAN LUALHATI AMUL\r\nGender: Male\r\nLastName: AMUL\r\nMaidenName: \r\nMiddleName: LUALHATI\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3836\r\nBirthDate: December 12, 2019\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4160\r\nExtensionName: \r\nFirstName: ALIJAH JOHAN\r\nFullName: ALIJAH JOHAN AMUL\r\nGender: Male\r\nLastName: AMUL\r\nMaidenName: \r\nMiddleName: LUALHATI\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773305	2025-03-20	09:37:32.9756231	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SAN AGUSTIN SILANGAN\r\nBarangay: ISLA VERDE\r\nBasicInformationId: 3836\r\nBirthDate: December 14, 1985\r\nBirthPlace: SAN AGUSTIN ISLA VERDE\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jenelyn.amul@deped.gov.ph\r\nExtensionName: \r\nFirstName: JENELYN\r\nFullName: JENELYN L. AMUL\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: 02004532235\r\nHDMF: 1210-9136-8639\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: AMUL\r\nMaidenName: \r\nMiddleName: LUALHATI\r\nMobileNumber: 09605572155\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SAN AGUSTIN SILANGAN\r\nPermanentBarangay: ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050162907-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 252-903-670-0000\r\nWeight: 66\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SAN AGUSTIN SILANGAN\r\nBarangay: ISLA VERDE\r\nBasicInformationId: 3836\r\nBirthDate: December 14, 1985\r\nBirthPlace: SAN AGUSTIN ISLA VERDE\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jenelyn.amul@deped.gov.ph\r\nExtensionName: \r\nFirstName: JENELYN\r\nFullName: JENELYN L. AMUL\r\nGender: Female\r\nGovernmentIdIssuedDate: January 10, 2014\r\nGovernmentIdNumber: 1271590\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: 02004532235\r\nHDMF: 1210-9136-8639\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: AMUL\r\nMaidenName: \r\nMiddleName: LUALHATI\r\nMobileNumber: 09605572155\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SAN AGUSTIN SILANGAN\r\nPermanentBarangay: ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050162907-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 252-903-670-0000\r\nWeight: 66\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773312	2025-03-20	09:38:59.2095130	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3836\r\nCharacterReferenceId: 0\r\nCompanyAddress: LIBJO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09217787383\r\nExtensionName: \r\nFirstName: IVY\r\nLastName: FRONDA\r\nMiddleName: E\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773313	2025-03-20	09:38:59.2145324	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3836\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO, ISLA VERDE\r\nCompanyName: \r\nContactNumber: 09197258564\r\nExtensionName: \r\nFirstName: LEA\r\nLastName: CALALUAN\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773276	2025-03-20	09:34:55.9876582	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: 2ND HONOR\r\nBasicInformationId: 3843\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1986\r\nDateTo: 1992\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS CITY EAST ELEMENTARY SCHOOL\r\nYearGraduated: 1992\r\n	admin	EducationalBackgrounds	1
773277	2025-03-20	09:34:55.9916591	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3843\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1992\r\nDateTo: 1996\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1996\r\n	admin	EducationalBackgrounds	1
773278	2025-03-20	09:34:55.9966578	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: PSB SCHOLAR\r\nBasicInformationId: 3843\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 2000\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY\r\nYearGraduated: 2000\r\n	admin	EducationalBackgrounds	1
773279	2025-03-20	09:34:56.0016579	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3843\r\nCourse: \r\nCourseId: 1299\r\nCourseOrMajor: \r\nDateFrom: 2019\r\nDateTo: 2020\r\nEducationalAttainment: 24 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF PERPETUAL HELP SYSTEM DALTA-LAS PINAS\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
773280	2025-03-20	09:34:56.0066580	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3843\r\nDateOfExamination: August 27, 2000\r\nDateOfRelease: April 11, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 27, 2000\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0660401\r\nPlaceOfExamination: STA. MESA, MANILA\r\nRating: 77.60\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS (LET)\r\n	admin	Eligibilities	1
773281	2025-03-20	09:34:56.0116577	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3843\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 35,041.67\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: March 20, 2025\r\n	admin	Experiences	1
773282	2025-03-20	09:34:56.0166579	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3843\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 33,499.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
773283	2025-03-20	09:34:56.0206597	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3843\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,949.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
773284	2025-03-20	09:34:56.0256592	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3843\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,633.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: January 31, 2023\r\n	admin	Experiences	1
773285	2025-03-20	09:34:56.0306580	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3843\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 30,111.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
773286	2025-03-20	09:34:56.0356578	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3843\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 28,589.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
773287	2025-03-20	09:34:56.0406594	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3843\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 27,067.33\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
773288	2025-03-20	09:34:56.0456581	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3843\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 26,754.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: January 31, 2020\r\n	admin	Experiences	1
773289	2025-03-20	09:34:56.0496579	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3843\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 25,232.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
773290	2025-03-20	09:34:56.0546994	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3843\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 24,224.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
773291	2025-03-20	09:34:56.0596993	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3843\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 23,257.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
773292	2025-03-20	09:34:56.0646993	<Undetected>	Update	BasicInformationId: 3843\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 0286556404\r\nEmployeeRelativeId: 4155\r\nExtensionName: \r\nFirstName: EFREN\r\nFullName: EFREN TOLENTINO RAYOS\r\nGender: Male\r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: TOLENTINO\r\nOccupation: SEAMAN\r\nRelationship: Husband\r\n	BasicInformationId: 3843\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 0286556404\r\nEmployeeRelativeId: 4155\r\nExtensionName: \r\nFirstName: EFREN\r\nFullName: EFREN RAYOS\r\nGender: Male\r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: TOLENTINO\r\nOccupation: SEAMAN\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
773293	2025-03-20	09:34:56.0686582	<Undetected>	Update	BasicInformationId: 3843\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4156\r\nExtensionName: \r\nFirstName: ANTONIO\r\nFullName: ANTONIO DEL MONTE CACAO\r\nGender: Male\r\nLastName: CACAO\r\nMaidenName: \r\nMiddleName: DEL MONTE\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3843\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4156\r\nExtensionName: \r\nFirstName: ANTONIO\r\nFullName: ANTONIO CACAO\r\nGender: Male\r\nLastName: CACAO\r\nMaidenName: \r\nMiddleName: DEL MONTE\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773294	2025-03-20	09:34:56.0736579	<Undetected>	Update	BasicInformationId: 3843\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4157\r\nExtensionName: \r\nFirstName: TERESITA\r\nFullName: TERESITA PEREZ BUESA\r\nGender: Female\r\nLastName: BUESA\r\nMaidenName: \r\nMiddleName: PEREZ\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3843\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4157\r\nExtensionName: \r\nFirstName: TERESITA\r\nFullName: TERESITA BUESA\r\nGender: Female\r\nLastName: BUESA\r\nMaidenName: \r\nMiddleName: PEREZ\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773295	2025-03-20	09:34:56.0786580	<Undetected>	Update	BasicInformationId: 3843\r\nBirthDate: July 20, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4158\r\nExtensionName: \r\nFirstName: SHANE FRENSY\r\nFullName: SHANE FRENSY CACAO RAYOS\r\nGender: Male\r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: CACAO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3843\r\nBirthDate: July 20, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4158\r\nExtensionName: \r\nFirstName: SHANE FRENSY\r\nFullName: SHANE FRENSY RAYOS\r\nGender: Male\r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: CACAO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773296	2025-03-20	09:34:56.0836584	<Undetected>	Update	BasicInformationId: 3843\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3640\r\n	BasicInformationId: 3843\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3640\r\n	admin	Questionnaires	1
773315	2025-03-20	09:43:26.6835114	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3843\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 21,626.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: January 31, 2017\r\n	admin	Experiences	1
773536	2025-03-20	15:09:41.7959655	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ENHANCEMENT THE CAPABILITY OF SCHOOL HEADS AND TEACHERS IN THE IMPLEMENTATION OF PROFESSIONAL PROGRAM VIA SLAC\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773316	2025-03-20	09:43:26.6895113	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3843\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 20,870.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
773317	2025-03-20	09:43:26.6935113	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3843\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 02, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 20,140.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
773318	2025-03-20	09:43:26.6995115	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3843\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 02, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 19,940.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: July 01, 2015\r\n	admin	Experiences	1
773319	2025-03-20	09:43:26.7035114	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3843\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 18,735.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: July 01, 2012\r\n	admin	Experiences	1
773320	2025-03-20	09:43:26.7085117	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3843\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 17,317.90\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
773321	2025-03-20	09:43:26.7135119	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3843\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 16, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 15,900.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
773322	2025-03-20	09:43:26.7185113	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3843\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 15,649.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: August 15, 2010\r\n	admin	Experiences	1
773323	2025-03-20	09:43:26.7235114	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3843\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 14,198.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
773324	2025-03-20	09:43:26.7285101	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3843\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,026.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
773325	2025-03-20	09:43:26.7335118	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3843\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 15, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,933.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
773326	2025-03-20	09:43:26.7385115	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3843\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 22, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: August 14, 2007\r\n	admin	Experiences	1
773327	2025-03-20	09:43:26.7425112	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3843\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 26, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: August 23, 2001\r\n	admin	Experiences	1
773357	2025-03-20	10:02:19.6588533	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT IV GAD TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773381	2025-03-20	10:10:12.1860297	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: REINFORCING THE RESEARCH CULTURE FOR TEACHERS' EMPOWERMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773405	2025-03-20	10:20:58.6288293	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3843\r\nSkillId: 0\r\nSkillName: DRIVING\r\n	admin	Skills	1
773406	2025-03-20	10:20:58.6328294	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3843\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
773407	2025-03-20	10:20:58.6378297	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3843\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
773408	2025-03-20	10:20:58.6428292	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3843\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
773409	2025-03-20	10:20:58.6478296	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3843\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16650\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773410	2025-03-20	10:20:58.6528298	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3843\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16457\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773411	2025-03-20	10:20:58.6578284	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3843\r\nEmployeeTrainingId: 0\r\nFromDate: April 01, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: April 01, 2023\r\nTrainingId: 16598\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773412	2025-03-20	10:20:58.6618279	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3843\r\nEmployeeTrainingId: 0\r\nFromDate: February 06, 2023\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: February 08, 2023\r\nTrainingId: 16557\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773413	2025-03-20	10:20:58.6668294	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3843\r\nEmployeeTrainingId: 0\r\nFromDate: November 26, 2021\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION \r\nStatus: \r\nToDate: November 26, 2021\r\nTrainingId: 16651\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773414	2025-03-20	10:20:58.6718292	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3843\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES SORO-SORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09913261235\r\nExtensionName: \r\nFirstName: EPITACIA\r\nLastName: CULLERA\r\nMiddleName: C.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773415	2025-03-20	10:20:58.6768282	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3843\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAMPAGA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09171600146\r\nExtensionName: \r\nFirstName: ROWENA\r\nLastName: ASI\r\nMiddleName: T.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773416	2025-03-20	10:20:58.6808278	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3843\r\nCharacterReferenceId: 0\r\nCompanyAddress: ARRIETA ROAD BRGY 20, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09338162523\r\nExtensionName: \r\nFirstName: JAZMIN\r\nLastName: CRELENCIA\r\nMiddleName: M.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773426	2025-03-20	10:32:40.7132256	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3844\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2016\r\nDateTo: 2018\r\nEducationalAttainment: 24 MA UNITS \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: PHILIPPINE COLLEGES OF HEALTH SCIENCE INC.\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
773427	2025-03-20	10:32:40.7182251	<Undetected>	Update	BasicInformationId: 3844\r\nBirthDate: August 11, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4170\r\nExtensionName: \r\nFirstName: KAYE ANNE\r\nFullName: KAYE ANNE SANCHEZ SORIANO\r\nGender: Male\r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: SANCHEZ\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3844\r\nBirthDate: August 11, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4170\r\nExtensionName: \r\nFirstName: KAYE ANNE\r\nFullName: KAYE ANNE SORIANO\r\nGender: Male\r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: SANCHEZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773328	2025-03-20	09:55:54.5064541	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3836\r\nDateOfExamination: September 29, 2013\r\nDateOfRelease: December 14, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 29, 2013\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1271590\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 81.2\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
773329	2025-03-20	09:55:54.5114538	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3836\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 15, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,733.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
773330	2025-03-20	09:55:54.5167442	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3836\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 15, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 31,633.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
773331	2025-03-20	09:55:54.5218479	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3836\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: January 14, 2024\r\n	admin	Experiences	1
773332	2025-03-20	09:55:54.5258539	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3836\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,798.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
773333	2025-03-20	09:55:54.5308710	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3836\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 15, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 28,276.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
773334	2025-03-20	09:55:54.5358791	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3836\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 24,450.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: January 14, 2021\r\n	admin	Experiences	1
773335	2025-03-20	09:55:54.5408872	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3836\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 17, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,889.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
773336	2025-03-20	09:55:54.5449881	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3836\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,600.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: June 16, 2020\r\n	admin	Experiences	1
773337	2025-03-20	09:55:54.5500043	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3836\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,038.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
773338	2025-03-20	09:55:54.5550121	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3836\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,437.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
773389	2025-03-20	10:15:20.9876629	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3835\r\nEmployeeTrainingId: 0\r\nFromDate: July 18, 2023\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 20, 2023\r\nTrainingId: 15609\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773339	2025-03-20	09:55:54.5600288	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3836\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: December 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,853.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
773340	2025-03-20	09:55:54.5640348	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3836\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 02, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,853.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: November 30, 2017\r\n	admin	Experiences	1
773341	2025-03-20	09:55:54.5690431	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3836\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 17, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,008.53\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: November 01, 2017\r\n	admin	Experiences	1
773342	2025-03-20	09:55:54.5730496	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3836\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,620.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 16, 2017\r\n	admin	Experiences	1
773343	2025-03-20	09:55:54.5780845	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3836\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
773344	2025-03-20	09:55:54.5830922	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3836\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 17, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
773349	2025-03-20	09:58:16.7392912	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT TRARINING ON ACTION RESEARCH\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773350	2025-03-20	09:58:46.4668272	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT TRAINING ON ACTION RESEARCH\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773351	2025-03-20	09:59:30.7890635	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: GRASSROOTS COACHING PROGRAM (VOLLEYBALL)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773352	2025-03-20	10:00:03.5443388	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3836\r\nEmployeeTrainingId: 0\r\nFromDate: April 24, 2024\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: January 27, 2024\r\nTrainingId: 16341\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773353	2025-03-20	10:00:03.5497139	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3836\r\nEmployeeTrainingId: 0\r\nFromDate: July 18, 2023\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 20, 2023\r\nTrainingId: 16501\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773354	2025-03-20	10:00:03.5547748	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3836\r\nEmployeeTrainingId: 0\r\nFromDate: March 15, 2021\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: March 19, 2021\r\nTrainingId: 16516\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773355	2025-03-20	10:00:03.5597905	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3836\r\nEmployeeTrainingId: 0\r\nFromDate: January 18, 2019\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: January 18, 2019\r\nTrainingId: 16648\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773356	2025-03-20	10:00:03.5648078	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3836\r\nEmployeeTrainingId: 0\r\nFromDate: November 30, 2018\r\nHours: 48\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: December 02, 2018\r\nTrainingId: 16649\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773348	2025-03-20	09:57:17.9138691	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 130\r\nAddress2: \r\nBarangay: LIBJO\r\nBasicInformationId: 3842\r\nBirthDate: September 14, 1984\r\nBirthPlace: 130 LAMAO LIBJO, BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: JONALYN.TOLENTINO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: JONALYN\r\nFullName: JONALYN S. TOLENTINO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: SAMSON\r\nMobileNumber: 09771516830\r\nNationality: Filipino\r\nPermanentAddress1: 130\r\nPermanentAddress2: \r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LAMAO\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LAMAO\r\nTIN: \r\nWeight: 52\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 130\r\nAddress2: \r\nBarangay: LIBJO\r\nBasicInformationId: 3842\r\nBirthDate: September 14, 1984\r\nBirthPlace: 130 LAMAO LIBJO, BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: JONALYN.TOLENTINO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: JONALYN\r\nFullName: JONALYN S. TOLENTINO\r\nGender: Female\r\nGovernmentIdIssuedDate: December 05, 2005\r\nGovernmentIdNumber: 0894012\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: 02003609113\r\nHDMF: 1490-0098-4608\r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: SAMSON\r\nMobileNumber: 09771516830\r\nNationality: Filipino\r\nPermanentAddress1: 130\r\nPermanentAddress2: \r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LAMAO\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050117361-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LAMAO\r\nTIN: 255-497-296-0000\r\nWeight: 52\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773367	2025-03-20	10:06:21.2284407	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIBJO\r\nBasicInformationId: 0\r\nBirthDate: February 24, 1974\r\nBirthPlace: LIBJO, BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MARILOU.SORIANO008@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: MARILOU\r\nFullName: MARILOU S. SORIANO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7744804\r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: SANCHEZ\r\nMobileNumber: 09296742766\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LAMAO\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LAMAO\r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773368	2025-03-20	10:06:21.2404846	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3844\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
773377	2025-03-20	10:09:28.6611064	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3844\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MANNY\r\nFullName: MANNY OLIT SORIANO\r\nGender: Male\r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: OLIT\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
773378	2025-03-20	10:09:28.6731067	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3844\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROMEO\r\nFullName: ROMEO CATIBOG SANCHEZ\r\nGender: Male\r\nLastName: SANCHEZ\r\nMaidenName: \r\nMiddleName: CATIBOG\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773379	2025-03-20	10:09:28.6781064	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3844\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: REMEDIOS\r\nFullName: REMEDIOS CUASAY ENRIQUEZ\r\nGender: Male\r\nLastName: ENRIQUEZ\r\nMaidenName: \r\nMiddleName: CUASAY\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773380	2025-03-20	10:09:28.6901063	<Undetected>	Update	BasicInformationId: 3844\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3641\r\n	BasicInformationId: 3844\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3641\r\n	admin	Questionnaires	1
773394	2025-03-20	10:20:03.9280759	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3844\r\nBirthDate: August 11, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: KAYE ANNE\r\nFullName: KAYE ANNE SANCHEZ SORIANO\r\nGender: Male\r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: SANCHEZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773395	2025-03-20	10:20:03.9330765	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3844\r\nBirthDate: April 05, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: KRISTAL ANNE\r\nFullName: KRISTAL ANNE SANCHEZ SORIANO\r\nGender: Male\r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: SANCHEZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773358	2025-03-20	10:05:32.4322522	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3835\r\nBirthDate: November 01, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CINDERELLA KATE\r\nFullName: CINDERELLA KATE DIMAANO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773359	2025-03-20	10:05:32.4445394	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3835\r\nBirthDate: November 01, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CINDERELLA KATE\r\nFullName: CINDERELLA KATE DIMAANO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773360	2025-03-20	10:05:32.4489967	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3835\r\nBirthDate: April 17, 2012\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: XIAN DANIELLE\r\nFullName: XIAN DANIELLE DIMAANO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773361	2025-03-20	10:05:32.4590568	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3835\r\nBirthDate: July 29, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SOPHIA\r\nFullName: SOPHIA DIMAANO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773362	2025-03-20	10:05:32.4640673	<Undetected>	Update	BasicInformationId: 3835\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3632\r\n	BasicInformationId: 3835\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3632\r\n	admin	Questionnaires	1
773363	2025-03-20	10:06:01.3645353	<Undetected>	Update	BasicInformationId: 3835\r\nBirthDate: November 01, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4161\r\nExtensionName: \r\nFirstName: CINDERELLA KATE\r\nFullName: CINDERELLA KATE DIMAANO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3835\r\nBirthDate: November 01, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4161\r\nExtensionName: \r\nFirstName: CINDERELLA KATE\r\nFullName: CINDERELLA KATE MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773364	2025-03-20	10:06:01.3765512	<Undetected>	Update	BasicInformationId: 3835\r\nBirthDate: November 01, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4162\r\nExtensionName: \r\nFirstName: CINDERELLA KATE\r\nFullName: CINDERELLA KATE DIMAANO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3835\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4162\r\nExtensionName: \r\nFirstName: CRECENCIO\r\nFullName: CRECENCIO DELGADO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DELGADO\r\nOccupation: FISHERMAN\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
773365	2025-03-20	10:06:01.3817841	<Undetected>	Update	BasicInformationId: 3835\r\nBirthDate: April 17, 2012\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4163\r\nExtensionName: \r\nFirstName: XIAN DANIELLE\r\nFullName: XIAN DANIELLE DIMAANO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3835\r\nBirthDate: April 17, 2012\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4163\r\nExtensionName: \r\nFirstName: XIAN DANIELLE\r\nFullName: XIAN DANIELLE MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773366	2025-03-20	10:06:01.3908473	<Undetected>	Update	BasicInformationId: 3835\r\nBirthDate: July 29, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4164\r\nExtensionName: \r\nFirstName: SOPHIA\r\nFullName: SOPHIA DIMAANO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3835\r\nBirthDate: July 29, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4164\r\nExtensionName: \r\nFirstName: SOPHIA\r\nFullName: SOPHIA MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773369	2025-03-20	10:07:00.8666722	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3835\r\nBirthDate: November 28, 2015\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: TYRONE\r\nFullName: TYRONE DIMAANO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773370	2025-03-20	10:07:00.8716801	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3835\r\nBirthDate: September 22, 2019\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RAYA\r\nFullName: RAYA DIMAANO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773371	2025-03-20	10:07:00.8817117	<Undetected>	Update	BasicInformationId: 3835\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4162\r\nExtensionName: \r\nFirstName: CRECENCIO\r\nFullName: CRECENCIO DELGADO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DELGADO\r\nOccupation: FISHERMAN\r\nRelationship: Husband\r\n	BasicInformationId: 3835\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4162\r\nExtensionName: \r\nFirstName: CRECENCIO\r\nFullName: CRECENCIO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DELGADO\r\nOccupation: FISHERMAN\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
773438	2025-03-20	10:57:37.9641919	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3848\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
773372	2025-03-20	10:07:13.0941337	<Undetected>	Update	BasicInformationId: 3835\r\nBirthDate: July 29, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4164\r\nExtensionName: \r\nFirstName: SOPHIA\r\nFullName: SOPHIA MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3835\r\nBirthDate: July 29, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4164\r\nExtensionName: \r\nFirstName: SOPHIA\r\nFullName: SOPHIA DIMAANO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773373	2025-03-20	10:07:13.0982066	<Undetected>	Update	BasicInformationId: 3835\r\nBirthDate: November 28, 2015\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4165\r\nExtensionName: \r\nFirstName: TYRONE\r\nFullName: TYRONE DIMAANO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3835\r\nBirthDate: November 28, 2015\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4165\r\nExtensionName: \r\nFirstName: TYRONE\r\nFullName: TYRONE MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773374	2025-03-20	10:07:13.1086113	<Undetected>	Update	BasicInformationId: 3835\r\nBirthDate: September 22, 2019\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4166\r\nExtensionName: \r\nFirstName: RAYA\r\nFullName: RAYA DIMAANO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3835\r\nBirthDate: September 22, 2019\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4166\r\nExtensionName: \r\nFirstName: RAYA\r\nFullName: RAYA MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773375	2025-03-20	10:08:45.2053938	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SAN AGAPITO\r\nBarangay: ISLA VERDE\r\nBasicInformationId: 3835\r\nBirthDate: June 01, 1989\r\nBirthPlace: ORIENTAL MINDORO\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: janice.mendoza008@deped.gov.ph\r\nExtensionName: \r\nFirstName: JANICE\r\nFullName: JANICE D. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nMobileNumber: 09684978998\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SAN AGAPITO\r\nPermanentBarangay: ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SAN AGAPITO\r\nBarangay: ISLA VERDE\r\nBasicInformationId: 3835\r\nBirthDate: June 01, 1989\r\nBirthPlace: ORIENTAL MINDORO\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: janice.mendoza008@deped.gov.ph\r\nExtensionName: \r\nFirstName: JANICE\r\nFullName: JANICE D. MENDOZA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: 1046198\r\nGovernmentIdPlaceIssued: LUCENA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02004104855\r\nHDMF: 1210-5007-8142\r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nMobileNumber: 09684978998\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SAN AGAPITO\r\nPermanentBarangay: ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000078898-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 295-518-740-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773376	2025-03-20	10:08:45.2198845	<Undetected>	Update	BasicInformationId: 3835\r\nBirthDate: July 29, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4164\r\nExtensionName: \r\nFirstName: SOPHIA\r\nFullName: SOPHIA DIMAANO MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3835\r\nBirthDate: July 29, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4164\r\nExtensionName: \r\nFirstName: SOPHIA\r\nFullName: SOPHIA MENDOZA\r\nGender: Male\r\nLastName: MENDOZA\r\nMaidenName: \r\nMiddleName: DIMAANO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773382	2025-03-20	10:11:00.6186168	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: FIRST HONORABLE MENTION\r\nBasicInformationId: 3835\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1998\r\nDateTo: 2001\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGAPITO ELEMENTARY SCHOOL\r\nYearGraduated: 2001\r\n	admin	EducationalBackgrounds	1
773383	2025-03-20	10:11:00.6236171	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: FIRST HONORABLE MENTION\r\nBasicInformationId: 3835\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2005\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGAPITO NATIONAL HIGH SCHOOL\r\nYearGraduated: 2005\r\n	admin	EducationalBackgrounds	1
773384	2025-03-20	10:11:00.6336169	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3835\r\nCourse: \r\nCourseId: 1375\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: BIOLOGICAL SCIENCE\r\nSchoolorUniversity: ST. BRIDGET COLLEGE\r\nYearGraduated: 2009\r\n	admin	EducationalBackgrounds	1
773385	2025-03-20	10:12:07.6674259	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3835\r\nDateOfExamination: October 04, 2009\r\nDateOfRelease: June 10, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: October 04, 2009\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1046198\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 75.8\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
773386	2025-03-20	10:15:20.9730259	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3835\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16470\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773390	2025-03-20	10:15:20.9927157	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3835\r\nEmployeeTrainingId: 0\r\nFromDate: July 21, 2023\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 22, 2023\r\nTrainingId: 15308\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773391	2025-03-20	10:16:55.8580339	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3835\r\nCharacterReferenceId: 0\r\nCompanyAddress: LIBJO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09217787383\r\nExtensionName: \r\nFirstName: IVY\r\nLastName: FRONDA\r\nMiddleName: E\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773392	2025-03-20	10:16:55.8630340	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3835\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGUSTIN, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09605572155\r\nExtensionName: \r\nFirstName: JENELYN\r\nLastName: AMUL\r\nMiddleName: L\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773393	2025-03-20	10:16:55.8712926	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3835\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09605572162\r\nExtensionName: \r\nFirstName: ELENITA\r\nLastName: PEREZ\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773431	2025-03-20	10:50:58.4670576	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SAN AGUSTING KANLURAN\r\nBarangay: ISLA VERDE\r\nBasicInformationId: 0\r\nBirthDate: July 28, 1967\r\nBirthPlace: ISLA VERDE, BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: yolielyn.gabiaso001@deped.gov.ph\r\nExtensionName: \r\nFirstName: YOLIELYN\r\nFullName: YOLIELYN L. GABIASO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GABIASO\r\nMaidenName: \r\nMiddleName: LOCES\r\nMobileNumber: 09124623295\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SAN AGUSTING KANLURAN\r\nPermanentBarangay: ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 58\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773432	2025-03-20	10:50:58.4799090	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3846\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
773433	2025-03-20	10:52:46.9069766	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 1 LOT 3\r\nAddress2: MERCEDES HOMES\r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 0\r\nBirthDate: May 15, 1990\r\nBirthPlace: SAN VICENTE, PALAWAN\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: reshiele.pentinio@deped.gov.ph\r\nExtensionName: \r\nFirstName: RESHIELE\r\nFullName: RESHIELE F. PENTINIO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PENTINIO\r\nMaidenName: \r\nMiddleName: FALCON\r\nMobileNumber: 09486730702\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 1 LOT 3\r\nPermanentAddress2: MERCEDES HOMES\r\nPermanentBarangay: SOROSORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 56\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773434	2025-03-20	10:52:46.9166942	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3847\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
773437	2025-03-20	10:57:37.9538728	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN AGUSTIN KANLURAN\r\nBasicInformationId: 0\r\nBirthDate: November 13, 1972\r\nBirthPlace: ISLA VERDE, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: ISLA VERDE, BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: gigibeth.perez@deped.gov.ph\r\nExtensionName: \r\nFirstName: GIGIVETH\r\nFullName: GIGIVETH F. PEREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: FAJORA\r\nMobileNumber: 09386719176\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN AGUSTIN KANLURAN\r\nPermanentCity: ISLA VERDE, BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773396	2025-03-20	10:20:03.9430763	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3844\r\nBirthDate: September 18, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: KARL ANGELOU\r\nFullName: KARL ANGELOU SANCHEZ SORIANO\r\nGender: Male\r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: SANCHEZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773397	2025-03-20	10:20:03.9480787	<Undetected>	Update	BasicInformationId: 3844\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4167\r\nExtensionName: \r\nFirstName: MANNY\r\nFullName: MANNY OLIT SORIANO\r\nGender: Male\r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: OLIT\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3844\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4167\r\nExtensionName: \r\nFirstName: MANNY\r\nFullName: MANNY SORIANO\r\nGender: Male\r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: OLIT\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
773398	2025-03-20	10:20:03.9579085	<Undetected>	Update	BasicInformationId: 3844\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4168\r\nExtensionName: \r\nFirstName: ROMEO\r\nFullName: ROMEO CATIBOG SANCHEZ\r\nGender: Male\r\nLastName: SANCHEZ\r\nMaidenName: \r\nMiddleName: CATIBOG\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3844\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4168\r\nExtensionName: \r\nFirstName: ROMEO\r\nFullName: ROMEO SANCHEZ\r\nGender: Male\r\nLastName: SANCHEZ\r\nMaidenName: \r\nMiddleName: CATIBOG\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773399	2025-03-20	10:20:03.9709526	<Undetected>	Update	BasicInformationId: 3844\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4169\r\nExtensionName: \r\nFirstName: REMEDIOS\r\nFullName: REMEDIOS CUASAY ENRIQUEZ\r\nGender: Male\r\nLastName: ENRIQUEZ\r\nMaidenName: \r\nMiddleName: CUASAY\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3844\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4169\r\nExtensionName: \r\nFirstName: REMEDIOS\r\nFullName: REMEDIOS ENRIQUEZ\r\nGender: Male\r\nLastName: ENRIQUEZ\r\nMaidenName: \r\nMiddleName: CUASAY\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773400	2025-03-20	10:20:15.1996429	<Undetected>	Update	BasicInformationId: 3653\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3449\r\nExtensionName: \r\nFirstName: RODRIGO\r\nFullName: RODRIGO SOLAMO LUSTERIO\r\nGender: Male\r\nLastName: LUSTERIO\r\nMaidenName: \r\nMiddleName: SOLAMO\r\nOccupation: FARMER\r\nRelationship: Husband\r\n	BasicInformationId: 3653\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 3449\r\nExtensionName: \r\nFirstName: RODRIGO\r\nFullName: RODRIGO LUSTERIO\r\nGender: Male\r\nLastName: LUSTERIO\r\nMaidenName: \r\nMiddleName: SOLAMO\r\nOccupation: FARMER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
773401	2025-03-20	10:20:15.2046421	<Undetected>	Update	BasicInformationId: 3653\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3450\r\nExtensionName: \r\nFirstName: FAUSTINO\r\nFullName: FAUSTINO PANALIGAN CORTAZ\r\nGender: Male\r\nLastName: CORTAZ\r\nMaidenName: \r\nMiddleName: PANALIGAN\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3653\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3450\r\nExtensionName: \r\nFirstName: FAUSTINO\r\nFullName: FAUSTINO CORTAZ\r\nGender: Male\r\nLastName: CORTAZ\r\nMaidenName: \r\nMiddleName: PANALIGAN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773402	2025-03-20	10:20:15.2146428	<Undetected>	Update	BasicInformationId: 3653\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3451\r\nExtensionName: \r\nFirstName: LOLINE\r\nFullName: LOLINE MAGCAMIT NAPOLITANO\r\nGender: Female\r\nLastName: NAPOLITANO\r\nMaidenName: \r\nMiddleName: MAGCAMIT\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3653\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3451\r\nExtensionName: \r\nFirstName: LOLINE\r\nFullName: LOLINE NAPOLITANO\r\nGender: Female\r\nLastName: NAPOLITANO\r\nMaidenName: \r\nMiddleName: MAGCAMIT\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773403	2025-03-20	10:20:15.2196445	<Undetected>	Update	BasicInformationId: 3653\r\nBirthDate: September 02, 1986\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3452\r\nExtensionName: \r\nFirstName: MA. BERNADETTE\r\nFullName: MA. BERNADETTE L SOLIVERES\r\nGender: Female\r\nLastName: SOLIVERES\r\nMaidenName: \r\nMiddleName: L\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3653\r\nBirthDate: September 02, 1986\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3452\r\nExtensionName: \r\nFirstName: MA. BERNADETTE\r\nFullName: MA. BERNADETTE SOLIVERES\r\nGender: Female\r\nLastName: SOLIVERES\r\nMaidenName: \r\nMiddleName: L\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773404	2025-03-20	10:20:15.2276444	<Undetected>	Update	BasicInformationId: 3653\r\nBirthDate: February 06, 1969\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3453\r\nExtensionName: \r\nFirstName: ERIC\r\nFullName: ERIC C LUSTERIO\r\nGender: Male\r\nLastName: LUSTERIO\r\nMaidenName: \r\nMiddleName: C\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3653\r\nBirthDate: February 06, 1969\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 3453\r\nExtensionName: \r\nFirstName: ERIC\r\nFullName: ERIC LUSTERIO\r\nGender: Male\r\nLastName: LUSTERIO\r\nMaidenName: \r\nMiddleName: C\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773423	2025-03-20	10:32:40.6932258	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3844\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1981\r\nDateTo: 1987\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: LIBJO ELEMENTARY SCHOOL \r\nYearGraduated: 1987\r\n	admin	EducationalBackgrounds	1
773424	2025-03-20	10:32:40.6982273	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3844\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1987\r\nDateTo: 1991\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES\r\nYearGraduated: 1991\r\n	admin	EducationalBackgrounds	1
773425	2025-03-20	10:32:40.7032252	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3844\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1991\r\nDateTo: 1995\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES \r\nYearGraduated: 1995\r\n	admin	EducationalBackgrounds	1
773417	2025-03-20	10:20:58.6868293	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: DE JOYA COMPOUND\r\nBarangay: ALANGILAN\r\nBasicInformationId: 3843\r\nBirthDate: April 11, 1979\r\nBirthPlace: BALAYAN, BATANGAS\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: sharlene.rayos001@deped.gov.ph\r\nExtensionName: \r\nFirstName: SHARLENE\r\nFullName: SHARLENE C. RAYOS\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.47\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: CACAO\r\nMobileNumber: 09081434705\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: DE JOYA COMPOUND\r\nPermanentBarangay: ALANGILAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO\r\nTIN: \r\nWeight: 48\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: DE JOYA COMPOUND\r\nBarangay: ALANGILAN\r\nBasicInformationId: 3843\r\nBirthDate: April 11, 1979\r\nBirthPlace: BALAYAN, BATANGAS\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: sharlene.rayos001@deped.gov.ph\r\nExtensionName: \r\nFirstName: SHARLENE\r\nFullName: SHARLENE C. RAYOS\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: 00600496169\r\nGovernmentIdPlaceIssued: BATANGAS CITY\r\nGovernmentIssuedId: UMID\r\nGSIS: 02002123901\r\nHDMF: 1490-0098-4643\r\nHeight: 1.47\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: CACAO\r\nMobileNumber: 09081434705\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: DE JOYA COMPOUND\r\nPermanentBarangay: ALANGILAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000051649-9\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO\r\nTIN: 924-968-865-0000\r\nWeight: 48\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773418	2025-03-20	10:25:42.6664971	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK 12 LOT 10\r\nAddress2: LE CLERMONT VILLAS\r\nBarangay: BALIMBING\r\nBasicInformationId: 0\r\nBirthDate: April 20, 1972\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: SAN PASCUAL\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ayrene.esconde@deped.gov.ph\r\nExtensionName: \r\nFirstName: AYRENE\r\nFullName: AYRENE B. ESCONDE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.71\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0433320786\r\nLastName: ESCONDE\r\nMaidenName: \r\nMiddleName: BALMES\r\nMobileNumber: 09272916389\r\nNationality: Filipino\r\nPermanentAddress1: BLK 12 LOT 10\r\nPermanentAddress2: LE CLERMONT VILLAS\r\nPermanentBarangay: BALIMBING\r\nPermanentCity: SAN PASCUAL\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: HYACINTH\r\nPermanentZipCode: 4204\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: HYACINTH\r\nTIN: \r\nWeight: 79\r\nZipCode: 4204\r\n	admin	BasicInformation	1
773419	2025-03-20	10:25:42.6763063	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3845\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09555230263\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GUADENCIO\r\nFullName: GUADENCIO GLACIANO ESCONDE\r\nGender: Male\r\nLastName: ESCONDE\r\nMaidenName: \r\nMiddleName: GLACIANO\r\nOccupation: PROJECT ENGINEER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
773420	2025-03-20	10:25:42.6763063	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3845\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ANTONIO\r\nFullName: ANTONIO BALMES BALMES\r\nGender: Male\r\nLastName: BALMES\r\nMaidenName: \r\nMiddleName: BALMES\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773421	2025-03-20	10:25:42.6763063	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3845\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PACITA\r\nFullName: PACITA HERNANDEZ BAUTISTA\r\nGender: Female\r\nLastName: BAUTISTA\r\nMaidenName: \r\nMiddleName: HERNANDEZ\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773422	2025-03-20	10:25:42.6763063	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3845\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
773451	2025-03-20	11:05:07.0767224	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: SECOND HONORABLE MENTION\r\nBasicInformationId: 3845\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1979\r\nDateTo: 1985\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: STA. CLARA ELEMENTARY SCHOOL\r\nYearGraduated: 1985\r\n	admin	EducationalBackgrounds	1
773452	2025-03-20	11:05:07.0827781	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: PARENT TEACHER ASSOCIATION SCHOLAR\r\nBasicInformationId: 3845\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1985\r\nDateTo: 1989\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1989\r\n	admin	EducationalBackgrounds	1
773453	2025-03-20	11:05:07.0867780	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: CUM LAUDE\r\nBasicInformationId: 3845\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1989\r\nDateTo: 1993\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 1993\r\n	admin	EducationalBackgrounds	1
773454	2025-03-20	11:05:07.0917780	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3845\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2004\r\nDateTo: 2006\r\nEducationalAttainment: 45 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
773428	2025-03-20	10:32:40.7272251	<Undetected>	Update	BasicInformationId: 3844\r\nBirthDate: April 05, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4171\r\nExtensionName: \r\nFirstName: KRISTAL ANNE\r\nFullName: KRISTAL ANNE SANCHEZ SORIANO\r\nGender: Male\r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: SANCHEZ\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3844\r\nBirthDate: April 05, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4171\r\nExtensionName: \r\nFirstName: KRISTAL ANNE\r\nFullName: KRISTAL ANNE SORIANO\r\nGender: Male\r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: SANCHEZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773429	2025-03-20	10:32:40.7312266	<Undetected>	Update	BasicInformationId: 3844\r\nBirthDate: September 18, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4172\r\nExtensionName: \r\nFirstName: KARL ANGELOU\r\nFullName: KARL ANGELOU SANCHEZ SORIANO\r\nGender: Male\r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: SANCHEZ\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3844\r\nBirthDate: September 18, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4172\r\nExtensionName: \r\nFirstName: KARL ANGELOU\r\nFullName: KARL ANGELOU SORIANO\r\nGender: Male\r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: SANCHEZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773430	2025-03-20	10:36:41.3753703	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3844\r\nDateOfExamination: May 28, 1995\r\nDateOfRelease: February 24, 2024\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: May 28, 1995\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 312656\r\nPlaceOfExamination: BATANGAS NATIONA HIGH SCHOOL \r\nRating: 74\r\nTitle: PROFESSIONAL BOARD EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
773435	2025-03-20	10:56:15.3226093	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3844\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: August 22, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 20,811.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-7\r\nStatus: Permanent\r\nToDate: June 19, 2017\r\n	admin	Experiences	1
773436	2025-03-20	10:56:15.3346122	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3844\r\nCompanyInstitution: DEPARTMENT OF EDUCATION \r\nExperienceId: 0\r\nFromDate: June 20, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 32,817.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: January 01, 2025\r\n	admin	Experiences	1
773441	2025-03-20	10:59:53.3637947	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MASTER CLASSFOR GRADE 1 TEACHERS ACROSS ALL LEARNING AREAS\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
773439	2025-03-20	10:59:41.6380656	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: TABANGAO DAO\r\nBasicInformationId: 0\r\nBirthDate: November 17, 1998\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: magpantaylicyzl17@gmail.com\r\nExtensionName: \r\nFirstName: LICYZL\r\nFullName: LICYZL S. MAGPANTAY\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MAGPANTAY\r\nMaidenName: \r\nMiddleName: SABADO\r\nMobileNumber: 09550557701\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: TABANGAO DAO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 45\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773440	2025-03-20	10:59:41.6490823	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3849\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
773442	2025-03-20	11:02:17.7320059	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3846\r\nBirthDate: August 19, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SAVERLYN GRACE\r\nFullName: SAVERLYN GRACE LOCES GABIASO\r\nGender: Male\r\nLastName: GABIASO\r\nMaidenName: \r\nMiddleName: LOCES\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773443	2025-03-20	11:02:17.7360129	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3846\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SALVADOR\r\nFullName: SALVADOR NOPRADA GABIASO\r\nGender: Male\r\nLastName: GABIASO\r\nMaidenName: \r\nMiddleName: NOPRADA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
773444	2025-03-20	11:02:17.7410238	<Undetected>	Update	BasicInformationId: 3846\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3643\r\n	BasicInformationId: 3846\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3643\r\n	admin	Questionnaires	1
773445	2025-03-20	11:04:28.4396949	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3846\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1975\r\nDateTo: 1981\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL\r\nYearGraduated: 1981\r\n	admin	EducationalBackgrounds	1
773446	2025-03-20	11:04:28.4517526	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3846\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1981\r\nDateTo: 1985\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGUSTIN SILANGAN NATIONAL HIGH SCHOOL\r\nYearGraduated: 1985\r\n	admin	EducationalBackgrounds	1
773447	2025-03-20	11:04:28.4557589	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3846\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1989\r\nDateTo: 1993\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES\r\nYearGraduated: 1993\r\n	admin	EducationalBackgrounds	1
773448	2025-03-20	11:04:28.4669330	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3846\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 2001\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2001\r\n	admin	EducationalBackgrounds	1
773449	2025-03-20	11:04:28.4709458	<Undetected>	Update	BasicInformationId: 3846\r\nBirthDate: August 19, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4176\r\nExtensionName: \r\nFirstName: SAVERLYN GRACE\r\nFullName: SAVERLYN GRACE LOCES GABIASO\r\nGender: Male\r\nLastName: GABIASO\r\nMaidenName: \r\nMiddleName: LOCES\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3846\r\nBirthDate: August 19, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4176\r\nExtensionName: \r\nFirstName: SAVERLYN GRACE\r\nFullName: SAVERLYN GRACE GABIASO\r\nGender: Male\r\nLastName: GABIASO\r\nMaidenName: \r\nMiddleName: LOCES\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773450	2025-03-20	11:04:28.4769732	<Undetected>	Update	BasicInformationId: 3846\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4177\r\nExtensionName: \r\nFirstName: SALVADOR\r\nFullName: SALVADOR NOPRADA GABIASO\r\nGender: Male\r\nLastName: GABIASO\r\nMaidenName: \r\nMiddleName: NOPRADA\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3846\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4177\r\nExtensionName: \r\nFirstName: SALVADOR\r\nFullName: SALVADOR GABIASO\r\nGender: Male\r\nLastName: GABIASO\r\nMaidenName: \r\nMiddleName: NOPRADA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
773455	2025-03-20	11:05:07.0967779	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3845\r\nBirthDate: February 08, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: KIM AYRA\r\nFullName: KIM AYRA BALMES ESCONDE\r\nGender: Female\r\nLastName: ESCONDE\r\nMaidenName: \r\nMiddleName: BALMES\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773456	2025-03-20	11:05:07.1017778	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3845\r\nBirthDate: February 08, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LEE RANIEL\r\nFullName: LEE RANIEL BALMES ESCONDE\r\nGender: Male\r\nLastName: ESCONDE\r\nMaidenName: \r\nMiddleName: BALMES\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773457	2025-03-20	11:05:07.1057778	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3845\r\nDateOfExamination: May 31, 1993\r\nDateOfRelease: April 20, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: May 31, 1993\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0304406\r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 76.67\r\nTitle: PROFESSIONAL EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
773458	2025-03-20	11:05:07.1107779	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3845\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 19, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 54,572.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-7\r\nStatus: Permanent\r\nToDate: March 20, 2025\r\n	admin	Experiences	1
773459	2025-03-20	11:05:07.1157779	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3845\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 54,010.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-6\r\nStatus: Permanent\r\nToDate: February 18, 2025\r\n	admin	Experiences	1
773460	2025-03-20	11:05:07.1207779	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3845\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 51,721.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks:  \r\nSalaryGradeAndStepIncrement: 18-6\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
773461	2025-03-20	11:05:07.1247778	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3845\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: September 04, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 49,305.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-6\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
773462	2025-03-20	11:05:07.1297779	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3845\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 30, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 49,305.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-6\r\nStatus: Permanent\r\nToDate: September 03, 2023\r\n	admin	Experiences	1
773463	2025-03-20	11:05:07.1347778	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3845\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 49,305.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-6\r\nStatus: Permanent\r\nToDate: August 29, 2023\r\n	admin	Experiences	1
773464	2025-03-20	11:05:07.1397778	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3845\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 19, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 47,783.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-6\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
773465	2025-03-20	11:05:07.1437779	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3845\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 47,254.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-5\r\nStatus: Permanent\r\nToDate: February 18, 2022\r\n	admin	Experiences	1
773466	2025-03-20	11:05:07.1487778	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3845\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 45,732.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-5\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
773467	2025-03-20	11:05:07.1537778	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3845\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 44,210.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-5\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
773468	2025-03-20	11:05:07.1587779	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3845\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 19, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 42,688.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-5\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
773469	2025-03-20	11:05:07.1627778	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3845\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 42,165.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-4\r\nStatus: Permanent\r\nToDate: February 18, 2019\r\n	admin	Experiences	1
773470	2025-03-20	11:05:07.1677778	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3845\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 39,477.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-4\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
773471	2025-03-20	11:05:07.1727777	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3845\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 38,960.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-4\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
773472	2025-03-20	11:05:07.1777778	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3845\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 19, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 34,603.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-4\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
773473	2025-03-20	11:05:07.1817778	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3845\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 34,215.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-3\r\nStatus: Permanent\r\nToDate: February 18, 2016\r\n	admin	Experiences	1
773474	2025-03-20	11:05:07.1867777	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3845\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 19, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 32,044.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-3\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
773475	2025-03-20	11:05:07.1917778	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3845\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 31,696.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-2\r\nStatus: Permanent\r\nToDate: February 18, 2013\r\n	admin	Experiences	1
773476	2025-03-20	11:05:07.1967777	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3845\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 28,684.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-2\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
773477	2025-03-20	11:05:07.2007779	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3845\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 25,671.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-2\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
773478	2025-03-20	11:05:07.2057778	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3845\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 19, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 22,659.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-2\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
773479	2025-03-20	11:05:07.2107778	<Undetected>	Update	BasicInformationId: 3845\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09555230263\r\nEmployeeRelativeId: 4173\r\nExtensionName: \r\nFirstName: GUADENCIO\r\nFullName: GUADENCIO GLACIANO ESCONDE\r\nGender: Male\r\nLastName: ESCONDE\r\nMaidenName: \r\nMiddleName: GLACIANO\r\nOccupation: PROJECT ENGINEER\r\nRelationship: Husband\r\n	BasicInformationId: 3845\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09555230263\r\nEmployeeRelativeId: 4173\r\nExtensionName: \r\nFirstName: GUADENCIO\r\nFullName: GUADENCIO ESCONDE\r\nGender: Male\r\nLastName: ESCONDE\r\nMaidenName: \r\nMiddleName: GLACIANO\r\nOccupation: PROJECT ENGINEER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
773480	2025-03-20	11:05:07.2157778	<Undetected>	Update	BasicInformationId: 3845\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4174\r\nExtensionName: \r\nFirstName: ANTONIO\r\nFullName: ANTONIO BALMES BALMES\r\nGender: Male\r\nLastName: BALMES\r\nMaidenName: \r\nMiddleName: BALMES\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3845\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4174\r\nExtensionName: \r\nFirstName: ANTONIO\r\nFullName: ANTONIO BALMES\r\nGender: Male\r\nLastName: BALMES\r\nMaidenName: \r\nMiddleName: BALMES\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773481	2025-03-20	11:05:07.2197778	<Undetected>	Update	BasicInformationId: 3845\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4175\r\nExtensionName: \r\nFirstName: PACITA\r\nFullName: PACITA HERNANDEZ BAUTISTA\r\nGender: Female\r\nLastName: BAUTISTA\r\nMaidenName: \r\nMiddleName: HERNANDEZ\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3845\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4175\r\nExtensionName: \r\nFirstName: PACITA\r\nFullName: PACITA BAUTISTA\r\nGender: Female\r\nLastName: BAUTISTA\r\nMaidenName: \r\nMiddleName: HERNANDEZ\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773482	2025-03-20	11:05:07.2247777	<Undetected>	Update	BasicInformationId: 3845\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3642\r\n	BasicInformationId: 3845\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3642\r\n	admin	Questionnaires	1
773488	2025-03-20	11:12:40.6086734	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3845\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 22,214.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-1\r\nStatus: Permanent\r\nToDate: February 18, 2010\r\n	admin	Experiences	1
773489	2025-03-20	11:12:40.6136736	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3845\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 17,059.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
773490	2025-03-20	11:12:40.6186736	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3845\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 15,508.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
773491	2025-03-20	11:12:40.6236735	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3845\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 19, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 14,098.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
773492	2025-03-20	11:12:40.6276735	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3845\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 22, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 11,167.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: February 18, 2007\r\n	admin	Experiences	1
774377	2025-03-21	15:11:09.0525006	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: LEARNING DELIVERY MODALITIES (LDM2) COURSE FOR TEACHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773483	2025-03-20	11:05:38.6948177	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SAN AGUSTING KANLURAN\r\nBarangay: ISLA VERDE\r\nBasicInformationId: 3846\r\nBirthDate: July 28, 1967\r\nBirthPlace: ISLA VERDE, BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: yolielyn.gabiaso001@deped.gov.ph\r\nExtensionName: \r\nFirstName: YOLIELYN\r\nFullName: YOLIELYN L. GABIASO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GABIASO\r\nMaidenName: \r\nMiddleName: LOCES\r\nMobileNumber: 09124623295\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SAN AGUSTING KANLURAN\r\nPermanentBarangay: ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 58\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SAN AGUSTING KANLURAN\r\nBarangay: ISLA VERDE\r\nBasicInformationId: 3846\r\nBirthDate: July 28, 1967\r\nBirthPlace: ISLA VERDE, BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: yolielyn.gabiaso001@deped.gov.ph\r\nExtensionName: \r\nFirstName: YOLIELYN\r\nFullName: YOLIELYN L. GABIASO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 28, 1998\r\nGovernmentIdNumber: 0289228\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: 02002929541\r\nHDMF: 1490-0086-5446\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GABIASO\r\nMaidenName: \r\nMiddleName: LOCES\r\nMobileNumber: 09124623295\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SAN AGUSTING KANLURAN\r\nPermanentBarangay: ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000021612-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 912-304-993-0000\r\nWeight: 58\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773484	2025-03-20	11:07:12.7134274	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3846\r\nCharacterReferenceId: 0\r\nCompanyAddress: ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09086231854\r\nExtensionName: \r\nFirstName: MELODY\r\nLastName: FABILA\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773485	2025-03-20	11:07:12.7174269	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3846\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES, SOROSORO ILAYA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09055132951\r\nExtensionName: \r\nFirstName: NIEVES\r\nLastName: MONTALBO\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773486	2025-03-20	11:07:12.7225715	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3846\r\nCharacterReferenceId: 0\r\nCompanyAddress: ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09277975449\r\nExtensionName: \r\nFirstName: LEOBERT\r\nLastName: CLARO\r\nMiddleName: E\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773487	2025-03-20	11:09:24.8000334	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3846\r\nDateOfExamination: May 28, 1995\r\nDateOfRelease: July 28, 2019\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: May 28, 1995\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 289228\r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 70.61\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
773493	2025-03-20	11:12:40.6326736	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3845\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: September 26, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 10,798.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: August 21, 2006\r\n	admin	Experiences	1
773494	2025-03-20	11:12:40.6376738	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3845\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: March 01, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 10,704.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-4\r\nStatus: Permanent\r\nToDate: September 25, 2005\r\n	admin	Experiences	1
773495	2025-03-20	11:12:40.6426737	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3845\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: October 01, 2003\r\nIsGovernmentService: True\r\nMonthlySalary: 10,442.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-3\r\nStatus: Permanent\r\nToDate: February 28, 2005\r\n	admin	Experiences	1
773496	2025-03-20	11:12:40.6466736	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3845\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-2\r\nStatus: Permanent\r\nToDate: September 30, 2003\r\n	admin	Experiences	1
773497	2025-03-20	11:12:40.6516735	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3845\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
773498	2025-03-20	11:12:40.6566738	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3845\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 7,309.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1997\r\n	admin	Experiences	1
773499	2025-03-20	11:12:40.6616740	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3845\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 06, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 3,902.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1996\r\n	admin	Experiences	1
773500	2025-03-20	11:12:40.6666736	<Undetected>	Update	BasicInformationId: 3845\r\nBirthDate: February 08, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4178\r\nExtensionName: \r\nFirstName: KIM AYRA\r\nFullName: KIM AYRA BALMES ESCONDE\r\nGender: Female\r\nLastName: ESCONDE\r\nMaidenName: \r\nMiddleName: BALMES\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3845\r\nBirthDate: February 08, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4178\r\nExtensionName: \r\nFirstName: KIM AYRA\r\nFullName: KIM AYRA ESCONDE\r\nGender: Female\r\nLastName: ESCONDE\r\nMaidenName: \r\nMiddleName: BALMES\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773501	2025-03-20	11:12:40.6716738	<Undetected>	Update	BasicInformationId: 3845\r\nBirthDate: February 08, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4179\r\nExtensionName: \r\nFirstName: LEE RANIEL\r\nFullName: LEE RANIEL BALMES ESCONDE\r\nGender: Male\r\nLastName: ESCONDE\r\nMaidenName: \r\nMiddleName: BALMES\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3845\r\nBirthDate: February 08, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4179\r\nExtensionName: \r\nFirstName: LEE RANIEL\r\nFullName: LEE RANIEL ESCONDE\r\nGender: Male\r\nLastName: ESCONDE\r\nMaidenName: \r\nMiddleName: BALMES\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773502	2025-03-20	12:47:29.5750178	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPACITY BUILDING FOR GRADES 4 TO 6 TEACHERS ON THE IMPLEMENTATION OF END-OF-SCHOOL YEAR (EOSY) BREAK REMEDIATION ACTIVITIES (NATIONAL LEARNING CAMP)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773503	2025-03-20	12:51:17.3495763	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON COMPREHENSIVE SEXUALITY EDUCATION (CSE) ADOLESCENT REPRODUCTIVE HEALTH (ARH) PROGRAM CONERGENCE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773513	2025-03-20	14:57:21.9173087	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3850\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1998\r\nDateTo: 2003\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2003\r\n	admin	EducationalBackgrounds	1
773504	2025-03-20	14:51:57.1639359	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: DUMUCLAY SOUTH\r\nBasicInformationId: 0\r\nBirthDate: October 06, 1980\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: EVELYN.TOLENTINO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: EVELYN\r\nFullName: EVELYN B. TOLENTINO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 3324604\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: BUENAFE\r\nMobileNumber: 09166066738\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: DUMUCLAY SOUTH\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 57\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773505	2025-03-20	14:51:57.5632074	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3850\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
773506	2025-03-20	14:54:31.2791636	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3850\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MHELL\r\nFullName: MHELL CUETO TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773507	2025-03-20	14:54:31.2831501	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3850\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ESTER\r\nFullName: ESTER COLIAT BUENAFE\r\nGender: Male\r\nLastName: BUENAFE\r\nMaidenName: \r\nMiddleName: COLIAT\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773508	2025-03-20	14:54:31.2881336	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3850\r\nBirthDate: May 28, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MHELLVEEN IVAN\r\nFullName: MHELLVEEN IVAN B TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773509	2025-03-20	14:54:31.2990970	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: DUMUCLAY SOUTH\r\nBasicInformationId: 3850\r\nBirthDate: October 06, 1980\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: EVELYN.TOLENTINO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: EVELYN\r\nFullName: EVELYN B. TOLENTINO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 3324604\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: BUENAFE\r\nMobileNumber: 09166066738\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: DUMUCLAY SOUTH\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 57\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: DUMUCLAY SOUTH\r\nBasicInformationId: 3850\r\nBirthDate: October 06, 1980\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: EVELYN.TOLENTINO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: EVELYN\r\nFullName: EVELYN B. TOLENTINO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 3324604\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: BUENAFE\r\nMobileNumber: 09166066738\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: DUMUCLAY SOUTH\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 57\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773510	2025-03-20	14:54:31.3030835	<Undetected>	Update	BasicInformationId: 3850\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3647\r\n	BasicInformationId: 3850\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3647\r\n	admin	Questionnaires	1
773511	2025-03-20	14:57:21.9013621	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3850\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1988\r\nDateTo: 1994\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BALETE ELEMENTARY SCHOOL\r\nYearGraduated: 1994\r\n	admin	EducationalBackgrounds	1
773512	2025-03-20	14:57:21.9123253	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3850\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 1998\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BALETE NATIONAL HIGH SCHOOL\r\nYearGraduated: 1998\r\n	admin	EducationalBackgrounds	1
773514	2025-03-20	14:57:21.9212953	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3850\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2020\r\nDateTo: 2023\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN EDUCATIONAL ADMINISTRATION\r\nSchoolorUniversity: RIZAL COLLEGE OF TAAL\r\nYearGraduated: 2023\r\n	admin	EducationalBackgrounds	1
773515	2025-03-20	14:57:21.9292687	<Undetected>	Update	BasicInformationId: 3850\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4180\r\nExtensionName: \r\nFirstName: MHELL\r\nFullName: MHELL CUETO TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3850\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4180\r\nExtensionName: \r\nFirstName: MHELL\r\nFullName: MHELL TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773516	2025-03-20	14:57:21.9342519	<Undetected>	Update	BasicInformationId: 3850\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4181\r\nExtensionName: \r\nFirstName: ESTER\r\nFullName: ESTER COLIAT BUENAFE\r\nGender: Male\r\nLastName: BUENAFE\r\nMaidenName: \r\nMiddleName: COLIAT\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3850\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4181\r\nExtensionName: \r\nFirstName: ESTER\r\nFullName: ESTER BUENAFE\r\nGender: Male\r\nLastName: BUENAFE\r\nMaidenName: \r\nMiddleName: COLIAT\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773517	2025-03-20	14:57:21.9392353	<Undetected>	Update	BasicInformationId: 3850\r\nBirthDate: May 28, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4182\r\nExtensionName: \r\nFirstName: MHELLVEEN IVAN\r\nFullName: MHELLVEEN IVAN B TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3850\r\nBirthDate: May 28, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4182\r\nExtensionName: \r\nFirstName: MHELLVEEN IVAN\r\nFullName: MHELLVEEN IVAN TOLENTINO\r\nGender: Male\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773518	2025-03-20	14:58:11.9290584	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3846\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPED CENTRAL\r\nStatus: \r\nToDate: November 28, 2024\r\nTrainingId: 16482\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773519	2025-03-20	14:58:11.9350523	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3846\r\nEmployeeTrainingId: 0\r\nFromDate: April 26, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DISTRICT\r\nStatus: \r\nToDate: April 26, 2024\r\nTrainingId: 16506\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773520	2025-03-20	14:58:11.9400913	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3846\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16422\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773521	2025-03-20	14:58:11.9451082	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3846\r\nEmployeeTrainingId: 0\r\nFromDate: November 13, 2021\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: PAMBANSANG SAMAHAN NG MGA TAGAMASID AT TAGAPAGTAGUYOD SA FILIPINO\r\nStatus: \r\nToDate: November 27, 2021\r\nTrainingId: 16553\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773522	2025-03-20	14:58:11.9501245	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3846\r\nEmployeeTrainingId: 0\r\nFromDate: March 09, 2021\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: March 14, 2024\r\nTrainingId: 16409\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773523	2025-03-20	14:58:50.2722563	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3850\r\nDateOfExamination: September 25, 2016\r\nDateOfRelease: October 06, 2028\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 25, 2016\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1509872\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 76.4\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
773524	2025-03-20	15:01:09.1794825	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3850\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: January 01, 2025\r\n	admin	Experiences	1
773525	2025-03-20	15:01:09.1884522	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3850\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 03, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 25,680.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
773526	2025-03-20	15:01:45.8987750	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING ON ENHANCING INSTRUCTIONAL SUPERVISION A POSITIVE APPROACH THROUGH APRECIATIVE INQUIRY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773531	2025-03-20	15:08:24.0601505	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3845\r\nEmployeeTrainingId: 0\r\nFromDate: November 18, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SDO BATANGAS CITY \r\nStatus: \r\nToDate: November 20, 2024\r\nTrainingId: 15540\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773532	2025-03-20	15:08:24.0651485	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3845\r\nEmployeeTrainingId: 0\r\nFromDate: November 11, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SDO BATANGAS CITY\r\nStatus: \r\nToDate: November 11, 2024\r\nTrainingId: 16654\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773533	2025-03-20	15:08:24.0701508	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3845\r\nEmployeeTrainingId: 0\r\nFromDate: September 30, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SDO BATANGAS CITY\r\nStatus: \r\nToDate: September 30, 2024\r\nTrainingId: 16655\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773534	2025-03-20	15:08:24.0741499	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3845\r\nEmployeeTrainingId: 0\r\nFromDate: May 03, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SDO BATANGAS CITY\r\nStatus: \r\nToDate: May 03, 2024\r\nTrainingId: 16656\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773535	2025-03-20	15:08:24.0791501	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3845\r\nEmployeeTrainingId: 0\r\nFromDate: July 20, 2023\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: KNOWLEDGE CHANNEL FOUNDATION WITH FIRST GEN CORPORATION\r\nStatus: \r\nToDate: July 22, 2023\r\nTrainingId: 16658\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773571	2025-03-20	15:13:31.7673824	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3845\r\nSkillId: 0\r\nSkillName: CROSS - STITCHING\r\n	admin	Skills	1
773572	2025-03-20	15:13:31.7723823	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3845\r\nSkillId: 0\r\nSkillName: GARDENING\r\n	admin	Skills	1
773573	2025-03-20	15:13:31.7803819	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3845\r\nRecognitionId: 0\r\nRecognitionName: BOY SCOUT OF THE PHILIPPINES BRONZE SERVICE AWARD\r\n	admin	Recognitions	1
773574	2025-03-20	15:13:31.7853809	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3845\r\nOrganizationId: 0\r\nOrganizationName: LE CLERMONT HOMEOWNERS ASSOCIATION\r\n	admin	Organizations	1
773575	2025-03-20	15:13:31.7903832	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3845\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES, SOROSORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09089915567\r\nExtensionName: \r\nFirstName: EPITACIA\r\nLastName: CULLERA\r\nMiddleName: C. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773576	2025-03-20	15:13:31.7943822	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3845\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAMPAGA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09171600146\r\nExtensionName: \r\nFirstName: ROWENA \r\nLastName: ASI\r\nMiddleName: T.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773577	2025-03-20	15:13:31.8003806	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3845\r\nCharacterReferenceId: 0\r\nCompanyAddress: ARRIETA ROAD, BARANGAY 20, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09338162523\r\nExtensionName: \r\nFirstName: JAZMIN\r\nLastName: CRELENCIA\r\nMiddleName: M.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773578	2025-03-20	15:13:31.8043807	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLK 12 LOT 10\r\nAddress2: LE CLERMONT VILLAS\r\nBarangay: BALIMBING\r\nBasicInformationId: 3845\r\nBirthDate: April 20, 1972\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: SAN PASCUAL\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ayrene.esconde@deped.gov.ph\r\nExtensionName: \r\nFirstName: AYRENE\r\nFullName: AYRENE B. ESCONDE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.71\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0433320786\r\nLastName: ESCONDE\r\nMaidenName: \r\nMiddleName: BALMES\r\nMobileNumber: 09272916389\r\nNationality: Filipino\r\nPermanentAddress1: BLK 12 LOT 10\r\nPermanentAddress2: LE CLERMONT VILLAS\r\nPermanentBarangay: BALIMBING\r\nPermanentCity: SAN PASCUAL\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: HYACINTH\r\nPermanentZipCode: 4204\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: HYACINTH\r\nTIN: \r\nWeight: 79\r\nZipCode: 4204\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK 12 LOT 10\r\nAddress2: LE CLERMONT VILLAS\r\nBarangay: BALIMBING\r\nBasicInformationId: 3845\r\nBirthDate: April 20, 1972\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: SAN PASCUAL\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ayrene.esconde@deped.gov.ph\r\nExtensionName: \r\nFirstName: AYRENE\r\nFullName: AYRENE B. ESCONDE\r\nGender: Female\r\nGovernmentIdIssuedDate: February 11, 1998\r\nGovernmentIdNumber: 0304406\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02002997755\r\nHDMF: 1490-0085-2325\r\nHeight: 1.71\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0433320786\r\nLastName: ESCONDE\r\nMaidenName: \r\nMiddleName: BALMES\r\nMobileNumber: 09272916389\r\nNationality: Filipino\r\nPermanentAddress1: BLK 12 LOT 10\r\nPermanentAddress2: LE CLERMONT VILLAS\r\nPermanentBarangay: BALIMBING\r\nPermanentCity: SAN PASCUAL\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: HYACINTH\r\nPermanentZipCode: 4204\r\nPhilhealth: 09-000007320-1\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: HYACINTH\r\nTIN: 174-047-158-0000\r\nWeight: 79\r\nZipCode: 4204\r\n	admin	BasicInformation	1
773630	2025-03-20	15:28:19.1962093	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3852\r\nBirthDate: June 18, 1995\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOSHUA\r\nFullName: JOSHUA FONTE CANTUBA\r\nGender: Male\r\nLastName: CANTUBA\r\nMaidenName: \r\nMiddleName: FONTE\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774449	2025-03-21	15:31:45.1603521	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3871\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
773537	2025-03-20	15:10:41.8374884	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3850\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 20\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16400\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773538	2025-03-20	15:10:41.8434683	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3850\r\nEmployeeTrainingId: 0\r\nFromDate: August 02, 2023\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: August 02, 2023\r\nTrainingId: 15143\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773539	2025-03-20	15:10:41.8474551	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3850\r\nEmployeeTrainingId: 0\r\nFromDate: April 21, 2023\r\nHours: 3\r\nNatureOfParticipation: ALOYSIAN\r\nSponsoringAgency: ALOYSIAN PUBLICATION \r\nStatus: \r\nToDate: April 21, 2023\r\nTrainingId: 16657\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773540	2025-03-20	15:10:41.8534348	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3850\r\nEmployeeTrainingId: 0\r\nFromDate: February 09, 2023\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: February 11, 2023\r\nTrainingId: 16659\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773541	2025-03-20	15:10:41.8574221	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3850\r\nEmployeeTrainingId: 0\r\nFromDate: August 12, 2022\r\nHours: 56\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: August 22, 2022\r\nTrainingId: 16660\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773542	2025-03-20	15:11:03.7901878	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3850\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
773579	2025-03-20	15:13:58.6089304	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3850\r\nCharacterReferenceId: 0\r\nCompanyAddress: BALETE BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 7023571\r\nExtensionName: \r\nFirstName: EMELYN\r\nLastName: DELOS REYES\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773580	2025-03-20	15:13:58.6129168	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3850\r\nCharacterReferenceId: 0\r\nCompanyAddress: BALETE BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 7024272\r\nExtensionName: \r\nFirstName: KATHERINE\r\nLastName: CASTILLO\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773581	2025-03-20	15:13:58.6179002	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3850\r\nCharacterReferenceId: 0\r\nCompanyAddress: BALETE BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 7024272\r\nExtensionName: \r\nFirstName: JAYSON\r\nLastName: CASTILLO\r\nMiddleName: V\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773594	2025-03-20	15:20:15.4523899	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: DUMUCLAY SOUTH\r\nBasicInformationId: 3850\r\nBirthDate: October 06, 1980\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: EVELYN.TOLENTINO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: EVELYN\r\nFullName: EVELYN B. TOLENTINO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 3324604\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: BUENAFE\r\nMobileNumber: 09166066738\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: DUMUCLAY SOUTH\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 57\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: DUMUCLAY SOUTH\r\nBasicInformationId: 3850\r\nBirthDate: October 06, 1980\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: EVELYN.TOLENTINO@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: EVELYN\r\nFullName: EVELYN B. TOLENTINO\r\nGender: Female\r\nGovernmentIdIssuedDate: December 12, 2016\r\nGovernmentIdNumber: 1509872\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02005504109\r\nHDMF: 1212-2585-6361\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 3324604\r\nLastName: TOLENTINO\r\nMaidenName: \r\nMiddleName: BUENAFE\r\nMobileNumber: 09166066738\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: DUMUCLAY SOUTH\r\nPermanentCity: BATANGAS\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050122813-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1370816-4\r\nStreetName: \r\nTIN: 722-067-916-0000\r\nWeight: 57\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773599	2025-03-20	15:23:36.6910036	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK 6 LOT 4\r\nAddress2: MERCEDES HOMES\r\nBarangay: SORO-SORO ILAYA\r\nBasicInformationId: 0\r\nBirthDate: May 24, 1996\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: SAMANTHAGLAIZE.DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: SAMANTHA GLAIZE\r\nFullName: SAMANTHA GLAIZE G. RIVERA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RIVERA\r\nMaidenName: \r\nMiddleName: GATDULA\r\nMobileNumber: 09565115484\r\nNationality: Filipino\r\nPermanentAddress1: BLK 6 LOT 4\r\nPermanentAddress2: MERCEDES HOMES\r\nPermanentBarangay: SORO-SORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: JOAQUIN ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: JOAQUIN ST.\r\nTIN: \r\nWeight: 54\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773543	2025-03-20	15:12:41.1854407	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3846\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 36,022.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-6\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
773544	2025-03-20	15:12:41.1904410	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3846\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,922.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-6\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
773545	2025-03-20	15:12:41.1954410	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3846\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 32,922.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-6\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
773546	2025-03-20	15:12:41.1994408	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3846\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 31,400.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
773547	2025-03-20	15:12:41.2054408	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3846\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 02, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 29,878.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
773548	2025-03-20	15:12:41.2094826	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3846\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 29,550.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: January 01, 2021\r\n	admin	Experiences	1
773549	2025-03-20	15:12:41.2145101	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3846\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 28,028.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
773550	2025-03-20	15:12:41.2195254	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3846\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 26,506.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
773551	2025-03-20	15:12:41.2238587	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3846\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 25,387.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
773552	2025-03-20	15:12:41.2288748	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3846\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: March 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 24,315.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
773553	2025-03-20	15:12:41.2338918	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3846\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 24,047.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: February 28, 2017\r\n	admin	Experiences	1
773554	2025-03-20	15:12:41.2379639	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3846\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 23,045.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
773555	2025-03-20	15:12:41.2430561	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3846\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: March 02, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 22,086.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
773556	2025-03-20	15:12:41.2480720	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3846\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 06, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 21,867.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: March 01, 2014\r\n	admin	Experiences	1
773557	2025-03-20	15:12:41.2531792	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3846\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 20,162.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
773558	2025-03-20	15:12:41.2572590	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3846\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: March 02, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,457.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
773559	2025-03-20	15:12:41.2672682	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3846\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 18,166.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: March 01, 2011\r\n	admin	Experiences	1
773560	2025-03-20	15:12:41.2792683	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3846\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 16,424.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
773561	2025-03-20	15:12:41.3144579	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3846\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 13,850.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
773562	2025-03-20	15:12:41.3245329	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3846\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: March 02, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,591.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
773563	2025-03-20	15:12:41.3295331	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3846\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 12,284.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: March 01, 2008\r\n	admin	Experiences	1
773564	2025-03-20	15:12:41.3335327	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3846\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: March 01, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 11,167.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
773565	2025-03-20	15:12:41.3395329	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3846\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 17, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 10,535.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: February 28, 2005\r\n	admin	Experiences	1
773566	2025-03-20	15:12:41.3435328	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3846\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: July 16, 2002\r\n	admin	Experiences	1
773567	2025-03-20	15:12:41.3485329	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3846\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
773568	2025-03-20	15:12:41.3525326	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3846\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 11, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1997\r\n	admin	Experiences	1
773569	2025-03-20	15:12:41.3575326	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3846\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 7,309.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: October 31, 1997\r\n	admin	Experiences	1
773570	2025-03-20	15:12:41.3625330	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3846\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 30, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 6,013.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1996\r\n	admin	Experiences	1
773582	2025-03-20	15:18:03.3574993	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: FIRST HONORABLE MENTION\r\nBasicInformationId: 3848\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1980\r\nDateTo: 1986\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL\r\nYearGraduated: 1986\r\n	admin	EducationalBackgrounds	1
773583	2025-03-20	15:18:03.3624990	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: FIRST HONORABLE MENTION\r\nBasicInformationId: 3848\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1986\r\nDateTo: 1990\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGUSTIN BARANGAY HIGH SCHOOL\r\nYearGraduated: 1990\r\n	admin	EducationalBackgrounds	1
773584	2025-03-20	15:18:03.3728538	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3848\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1990\r\nDateTo: 1994\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES\r\nYearGraduated: 1994\r\n	admin	EducationalBackgrounds	1
773585	2025-03-20	15:18:03.3770841	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3848\r\nCourse: \r\nCourseId: 1284\r\nCourseOrMajor: \r\nDateFrom: 2011\r\nDateTo: 2013\r\nEducationalAttainment: 27 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
773586	2025-03-20	15:18:03.3852933	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3848\r\nBirthDate: December 07, 1998\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LEAH JAHLEEL\r\nFullName: LEAH JAHLEEL FAJORA PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: FAJORA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773587	2025-03-20	15:18:03.3965542	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3848\r\nBirthDate: May 01, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SHELAH MAE\r\nFullName: SHELAH MAE FAJORA PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: FAJORA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773588	2025-03-20	15:18:03.4172332	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3848\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09486442323\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROMMEL\r\nFullName: ROMMEL YLAGAN PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: YLAGAN\r\nOccupation: FOREMAN CARPENTER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
773589	2025-03-20	15:18:03.4318774	<Undetected>	Update	BasicInformationId: 3848\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3645\r\n	BasicInformationId: 3848\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3645\r\n	admin	Questionnaires	1
773600	2025-03-20	15:23:36.7041115	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3851\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CARLOS\r\nFullName: CARLOS DAPULA RIVERA\r\nGender: Male\r\nLastName: RIVERA\r\nMaidenName: \r\nMiddleName: DAPULA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773590	2025-03-20	15:20:01.6357601	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN AGUSTIN KANLURAN\r\nBasicInformationId: 3848\r\nBirthDate: November 13, 1972\r\nBirthPlace: ISLA VERDE, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: ISLA VERDE, BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: gigibeth.perez@deped.gov.ph\r\nExtensionName: \r\nFirstName: GIGIVETH\r\nFullName: GIGIVETH F. PEREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: FAJORA\r\nMobileNumber: 09386719176\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN AGUSTIN KANLURAN\r\nPermanentCity: ISLA VERDE, BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN AGUSTIN KANLURAN\r\nBasicInformationId: 3848\r\nBirthDate: November 13, 1972\r\nBirthPlace: ISLA VERDE, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: ISLA VERDE, BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: gigibeth.perez@deped.gov.ph\r\nExtensionName: \r\nFirstName: GIGIVETH\r\nFullName: GIGIVETH F. PEREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: April 28, 1999\r\nGovernmentIdNumber: 0547766\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC LICENSE\r\nGSIS: 02002928335\r\nHDMF: 1490-0085-4200\r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: FAJORA\r\nMobileNumber: 09386719176\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN AGUSTIN KANLURAN\r\nPermanentCity: ISLA VERDE, BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000021950-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 916-032-681-0000\r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773591	2025-03-20	15:20:01.6407683	<Undetected>	Update	BasicInformationId: 3848\r\nBirthDate: December 07, 1998\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4183\r\nExtensionName: \r\nFirstName: LEAH JAHLEEL\r\nFullName: LEAH JAHLEEL FAJORA PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: FAJORA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3848\r\nBirthDate: December 07, 1998\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4183\r\nExtensionName: \r\nFirstName: LEAH JAHLEEL\r\nFullName: LEAH JAHLEEL PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: FAJORA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773592	2025-03-20	15:20:01.6508474	<Undetected>	Update	BasicInformationId: 3848\r\nBirthDate: May 01, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4184\r\nExtensionName: \r\nFirstName: SHELAH MAE\r\nFullName: SHELAH MAE FAJORA PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: FAJORA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3848\r\nBirthDate: May 01, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4184\r\nExtensionName: \r\nFirstName: SHELAH MAE\r\nFullName: SHELAH MAE PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: FAJORA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773593	2025-03-20	15:20:01.6560457	<Undetected>	Update	BasicInformationId: 3848\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09486442323\r\nEmployeeRelativeId: 4185\r\nExtensionName: \r\nFirstName: ROMMEL\r\nFullName: ROMMEL YLAGAN PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: YLAGAN\r\nOccupation: FOREMAN CARPENTER\r\nRelationship: Husband\r\n	BasicInformationId: 3848\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09486442323\r\nEmployeeRelativeId: 4185\r\nExtensionName: \r\nFirstName: ROMMEL\r\nFullName: ROMMEL PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: YLAGAN\r\nOccupation: FOREMAN CARPENTER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
773595	2025-03-20	15:21:27.4418351	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3848\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES, SOROSORO ILAYA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09055132951\r\nExtensionName: \r\nFirstName: NIEVES\r\nLastName: MONTALBO\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773596	2025-03-20	15:21:27.4468517	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3848\r\nCharacterReferenceId: 0\r\nCompanyAddress: ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09086231854\r\nExtensionName: \r\nFirstName: MELODY\r\nLastName: FABILA\r\nMiddleName: F\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773597	2025-03-20	15:21:27.4519339	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3848\r\nCharacterReferenceId: 0\r\nCompanyAddress: ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09984390676\r\nExtensionName: \r\nFirstName: ANTHONY\r\nLastName: LOPEZ\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773598	2025-03-20	15:22:29.3197820	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3848\r\nDateOfExamination: May 24, 1994\r\nDateOfRelease: November 13, 2024\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: May 24, 1994\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0547766\r\nPlaceOfExamination: BATANGAS NATIONAL HIGH SCHOOL, BATANGAS CITY\r\nRating: 74.44\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
773603	2025-03-20	15:23:50.0611299	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RECONCEPTUALIZING TEACHER IDEOLOGY IN MULTILINGUAL LANGUAGE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773604	2025-03-20	15:24:46.5145133	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MASTER CLASS FOR KINDERGARTEN, GRADE 1, GRADE 4, AND GRADE 7 IN SCIENCE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773605	2025-03-20	15:26:21.5686602	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DRRM TRAINING WORKSHOP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773606	2025-03-20	15:27:27.1415298	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3848\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: NEAP PROFESSIONAL DEVELOPMENT PROGRAM\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16661\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773601	2025-03-20	15:23:36.7041115	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3851\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MYRENE\r\nFullName: MYRENE BAUTISTA GATDULA\r\nGender: Male\r\nLastName: GATDULA\r\nMaidenName: \r\nMiddleName: BAUTISTA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773602	2025-03-20	15:23:36.7041115	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3851\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
773611	2025-03-20	15:27:58.2455647	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3851\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2008\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: JULIAN A. PASTOR MEMORIAL ELEMETARY SCHOOL\r\nYearGraduated: 2008\r\n	admin	EducationalBackgrounds	1
773612	2025-03-20	15:27:58.2495512	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3851\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2008\r\nDateTo: 2012\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2012\r\n	admin	EducationalBackgrounds	1
773613	2025-03-20	15:27:58.2615113	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3851\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2012\r\nDateTo: 2016\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2016\r\n	admin	EducationalBackgrounds	1
773614	2025-03-20	15:27:58.2654980	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3851\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2023\r\nDateTo: 2025\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: PACIFIC INTERCONTINENTAL COLLEGE\r\nYearGraduated: 2025\r\n	admin	EducationalBackgrounds	1
773615	2025-03-20	15:27:58.2724746	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLK 6 LOT 4\r\nAddress2: MERCEDES HOMES\r\nBarangay: SORO-SORO ILAYA\r\nBasicInformationId: 3851\r\nBirthDate: May 24, 1996\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: SAMANTHAGLAIZE.DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: SAMANTHA GLAIZE\r\nFullName: SAMANTHA GLAIZE G. RIVERA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RIVERA\r\nMaidenName: \r\nMiddleName: GATDULA\r\nMobileNumber: 09565115484\r\nNationality: Filipino\r\nPermanentAddress1: BLK 6 LOT 4\r\nPermanentAddress2: MERCEDES HOMES\r\nPermanentBarangay: SORO-SORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: JOAQUIN ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: JOAQUIN ST.\r\nTIN: \r\nWeight: 54\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK 6 LOT 4\r\nAddress2: MERCEDES HOMES\r\nBarangay: SORO-SORO ILAYA\r\nBasicInformationId: 3851\r\nBirthDate: May 24, 1996\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: SAMANTHAGLAIZE.DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: SAMANTHA GLAIZE\r\nFullName: SAMANTHA GLAIZE G. RIVERA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RIVERA\r\nMaidenName: \r\nMiddleName: GATDULA\r\nMobileNumber: 09565115484\r\nNationality: Filipino\r\nPermanentAddress1: BLK 6 LOT 4\r\nPermanentAddress2: MERCEDES HOMES\r\nPermanentBarangay: SORO-SORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: JOAQUIN ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: JOAQUIN ST.\r\nTIN: \r\nWeight: 54\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773616	2025-03-20	15:27:58.2774580	<Undetected>	Update	BasicInformationId: 3851\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4186\r\nExtensionName: \r\nFirstName: CARLOS\r\nFullName: CARLOS DAPULA RIVERA\r\nGender: Male\r\nLastName: RIVERA\r\nMaidenName: \r\nMiddleName: DAPULA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3851\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4186\r\nExtensionName: \r\nFirstName: CARLOS\r\nFullName: CARLOS RIVERA\r\nGender: Male\r\nLastName: RIVERA\r\nMaidenName: \r\nMiddleName: DAPULA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773617	2025-03-20	15:27:58.2854313	<Undetected>	Update	BasicInformationId: 3851\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4187\r\nExtensionName: \r\nFirstName: MYRENE\r\nFullName: MYRENE BAUTISTA GATDULA\r\nGender: Male\r\nLastName: GATDULA\r\nMaidenName: \r\nMiddleName: BAUTISTA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3851\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4187\r\nExtensionName: \r\nFirstName: MYRENE\r\nFullName: MYRENE GATDULA\r\nGender: Male\r\nLastName: GATDULA\r\nMaidenName: \r\nMiddleName: BAUTISTA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773618	2025-03-20	15:27:58.2904147	<Undetected>	Update	BasicInformationId: 3851\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3648\r\n	BasicInformationId: 3851\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3648\r\n	admin	Questionnaires	1
773637	2025-03-20	15:29:23.8867835	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3851\r\nDateOfExamination: September 25, 2016\r\nDateOfRelease: December 23, 2016\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 25, 2016\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1515115\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 79.60\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
773607	2025-03-20	15:27:27.1475300	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3848\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: NEAP PROFESSIONAL DEVELOPMENT PROGRAM\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16662\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773608	2025-03-20	15:27:27.1515298	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3848\r\nEmployeeTrainingId: 0\r\nFromDate: November 18, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 20, 2024\r\nTrainingId: 16479\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773609	2025-03-20	15:27:27.1565297	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3848\r\nEmployeeTrainingId: 0\r\nFromDate: November 30, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: November 30, 2024\r\nTrainingId: 16663\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773610	2025-03-20	15:27:27.1615300	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3848\r\nEmployeeTrainingId: 0\r\nFromDate: August 21, 2024\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 24, 2024\r\nTrainingId: 16617\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773633	2025-03-20	15:29:03.8261433	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3848\r\nSkillId: 0\r\nSkillName: WRITING\r\n	admin	Skills	1
773634	2025-03-20	15:29:03.8391433	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3848\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
773635	2025-03-20	15:29:03.8561430	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3848\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
773666	2025-03-20	15:42:17.9066492	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3848\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 36,002.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
773667	2025-03-20	15:42:17.9106620	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3848\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,594.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
773668	2025-03-20	15:42:17.9161467	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3848\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 32,594.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
773669	2025-03-20	15:42:17.9212019	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3848\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 31,072.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
773670	2025-03-20	15:42:17.9262216	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3848\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 02, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 29,550.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
773671	2025-03-20	15:42:17.9312331	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3848\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 29,225.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: January 01, 2021\r\n	admin	Experiences	1
773672	2025-03-20	15:42:17.9363025	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3848\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 26,181.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
773673	2025-03-20	15:42:17.9405062	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3848\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 25,091.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
773619	2025-03-20	15:28:19.1726591	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: KUMINTANG ILAYA\r\nBasicInformationId: 0\r\nBirthDate: July 17, 1966\r\nBirthPlace: CORCUERA, ROMBLON\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: olivia.cantuba001@deped.gov.ph\r\nExtensionName: \r\nFirstName: OLIVIA\r\nFullName: OLIVIA F. CANTUBA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437818768\r\nLastName: CANTUBA\r\nMaidenName: \r\nMiddleName: FONTE\r\nMobileNumber: 09560537876\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: MERALCO SITE\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: MERALCO SITE\r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773620	2025-03-20	15:28:19.1932107	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: 1ST HONORABLE MENTION\r\nBasicInformationId: 3852\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1974\r\nDateTo: 1980\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: MANGANSAG ELEMENTARY SCHOOL\r\nYearGraduated: 1980\r\n	admin	EducationalBackgrounds	1
773621	2025-03-20	15:28:19.1942103	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: 3RD HONORABLE MENTION\r\nBasicInformationId: 3852\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1980\r\nDateTo: 1984\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: MABINI BARANGAY HIGH SCHOOL\r\nYearGraduated: 1984\r\n	admin	EducationalBackgrounds	1
773622	2025-03-20	15:28:19.1942103	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3852\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1984\r\nDateTo: 1988\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES\r\nYearGraduated: 1988\r\n	admin	EducationalBackgrounds	1
773623	2025-03-20	15:28:19.1942103	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3852\r\nCourse: \r\nCourseId: 1367\r\nCourseOrMajor: \r\nDateFrom: 1998\r\nDateTo: 2001\r\nEducationalAttainment: 33 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
773624	2025-03-20	15:28:19.1952099	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3852\r\nBirthDate: October 30, 1990\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOSEPHINE\r\nFullName: JOSEPHINE FONTE CANTUBA\r\nGender: Female\r\nLastName: CANTUBA\r\nMaidenName: \r\nMiddleName: FONTE\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773625	2025-03-20	15:28:19.1952099	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3852\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ARTEMIO\r\nFullName: ARTEMIO FRUELDA FONTE\r\nGender: Male\r\nLastName: FONTE\r\nMaidenName: \r\nMiddleName: FRUELDA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773626	2025-03-20	15:28:19.1952099	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3852\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LAURIANA\r\nFullName: LAURIANA MANZALAY FAJILAN\r\nGender: Female\r\nLastName: FAJILAN\r\nMaidenName: \r\nMiddleName: MANZALAY\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773627	2025-03-20	15:28:19.1952099	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3852\r\nBirthDate: October 30, 1990\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOSEPHINE\r\nFullName: JOSEPHINE FONTE CANTUBA\r\nGender: Female\r\nLastName: CANTUBA\r\nMaidenName: \r\nMiddleName: FONTE\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773628	2025-03-20	15:28:19.1962093	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3852\r\nBirthDate: January 31, 1992\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOEL\r\nFullName: JOEL FONTE CANTUBA\r\nGender: Male\r\nLastName: CANTUBA\r\nMaidenName: \r\nMiddleName: FONTE\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773629	2025-03-20	15:28:19.1962093	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3852\r\nBirthDate: May 21, 1993\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: JR.\r\nFirstName: JOSEPH\r\nFullName: JOSEPH FONTE CANTUBA JR.\r\nGender: Male\r\nLastName: CANTUBA\r\nMaidenName: \r\nMiddleName: FONTE\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773631	2025-03-20	15:28:19.1972096	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3852\r\nDateOfExamination: November 27, 1988\r\nDateOfRelease: July 17, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: November 27, 1988\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0126531\r\nPlaceOfExamination: QUEZON CITY\r\nRating: 72.40\r\nTitle: PROFESSIONAL BOARD EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
773632	2025-03-20	15:28:19.1972096	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3852\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
773636	2025-03-20	15:29:20.2609932	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING WORKSHOP ON EARLY LANGUAGE AND LITERACY\r\nTrainingId: 0\r\nType: TECHNICAL\r\n	admin	Trainings	1
773638	2025-03-20	15:30:41.9371220	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3844\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16347\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773639	2025-03-20	15:30:41.9461235	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3844\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 32\r\nNatureOfParticipation: DEPARTMENT OF EDUCATION \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES \r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16319\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773640	2025-03-20	15:30:41.9511237	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3844\r\nEmployeeTrainingId: 0\r\nFromDate: May 24, 2024\r\nHours: 24\r\nNatureOfParticipation: DEPARTMENT OF EDUCATION \r\nSponsoringAgency: SAMAHAN NG MGA GURO SA INTELEKTUWALISASYON NG FILIPINO (SAGIF)\r\nStatus: \r\nToDate: May 26, 2024\r\nTrainingId: 16612\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773641	2025-03-20	15:30:41.9561234	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3844\r\nEmployeeTrainingId: 0\r\nFromDate: September 12, 2022\r\nHours: 56\r\nNatureOfParticipation: DEPARTMENT OF EDUCATION \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OFFICE OF BATANGAS CITY \r\nStatus: \r\nToDate: September 15, 2022\r\nTrainingId: 15235\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773642	2025-03-20	15:30:41.9611230	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3844\r\nEmployeeTrainingId: 0\r\nFromDate: January 29, 2024\r\nHours: 8\r\nNatureOfParticipation: DEPARTMENT OF EDUCATION \r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OFFICE OF BATANGAS CITY \r\nStatus: \r\nToDate: January 29, 2024\r\nTrainingId: 16664\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773645	2025-03-20	15:32:58.4143795	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3844\r\nSkillId: 0\r\nSkillName: DANCING \r\n	admin	Skills	1
773646	2025-03-20	15:32:58.4263815	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3844\r\nSkillId: 0\r\nSkillName: COOKING \r\n	admin	Skills	1
773649	2025-03-20	15:36:30.8568483	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3844\r\nCharacterReferenceId: 0\r\nCompanyAddress: TABANGAO DAO, BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 9155369142\r\nExtensionName: \r\nFirstName: RICA \r\nLastName: SUAREZ\r\nMiddleName: A.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773650	2025-03-20	15:36:30.8638492	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3844\r\nCharacterReferenceId: 0\r\nCompanyAddress: LAMAO, LIBJO BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 09497449222\r\nExtensionName: \r\nFirstName: LUISA \r\nLastName: ABEJO \r\nMiddleName: S. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773651	2025-03-20	15:36:30.8688486	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3844\r\nCharacterReferenceId: 0\r\nCompanyAddress: TANGISAN, LIBJO BATANGAS CITY \r\nCompanyName: \r\nContactNumber: 9274083148\r\nExtensionName: \r\nFirstName: GEMMA \r\nLastName: CLAVERIA \r\nMiddleName: C. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773674	2025-03-20	15:42:17.9456913	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3848\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 24,047.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
773675	2025-03-20	15:42:17.9498787	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3848\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 10, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 23,780.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
773643	2025-03-20	15:31:52.5809635	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3851\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: April 09, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,245.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: January 01, 2025\r\n	admin	Experiences	1
773644	2025-03-20	15:31:52.5899335	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3851\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 18, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 28,796.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: March 09, 2024\r\n	admin	Experiences	1
773647	2025-03-20	15:33:15.1986325	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: USE OF EFFECTIVE INTERVENTION AND ENHANCEMENT STRATEGIES TO IMPROVE PERFORMANCE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773648	2025-03-20	15:34:52.3099464	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BALANCE LITERACY APPROACH AND INTEGRATIVE LEARNING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773653	2025-03-20	15:38:56.9680262	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3851\r\nEmployeeTrainingId: 0\r\nFromDate: December 12, 2024\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: LIBKO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: December 12, 2024\r\nTrainingId: 16665\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773654	2025-03-20	15:38:56.9730095	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3851\r\nEmployeeTrainingId: 0\r\nFromDate: August 29, 2024\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: LIBJO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: August 29, 2024\r\nTrainingId: 16666\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773655	2025-03-20	15:38:56.9769962	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3851\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16347\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773656	2025-03-20	15:38:56.9819795	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3851\r\nEmployeeTrainingId: 0\r\nFromDate: July 04, 2024\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 06, 2024\r\nTrainingId: 16483\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773657	2025-03-20	15:38:56.9869629	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3851\r\nEmployeeTrainingId: 0\r\nFromDate: May 24, 2024\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: May 25, 2024\r\nTrainingId: 16612\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773658	2025-03-20	15:42:04.1553023	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3851\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
773659	2025-03-20	15:42:04.1602855	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3851\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
773660	2025-03-20	15:42:04.1642722	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3851\r\nSkillId: 0\r\nSkillName: WRITER\r\n	admin	Skills	1
773661	2025-03-20	15:42:04.1742388	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3851\r\nRecognitionId: 0\r\nRecognitionName: DISTRICT VII TEACHER'S GOT TALENT 1st PLACE\r\n	admin	Recognitions	1
773662	2025-03-20	15:42:04.1792222	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3851\r\nRecognitionId: 0\r\nRecognitionName: DISTRICT VII PAGPUPUGAY SA NATATAGONG TALENTO NG MGA GURONG PANG ELEMENTARYA 1st PLACE\r\n	admin	Recognitions	1
773663	2025-03-20	15:42:04.1861988	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3851\r\nRecognitionId: 0\r\nRecognitionName: ADULT SCOUTS SINGING CONTEST 2021 1st PLACE\r\n	admin	Recognitions	1
773664	2025-03-20	15:42:04.1901855	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3851\r\nRecognitionId: 0\r\nRecognitionName: DISTRICT VII GAWAD STAR WRITER\r\n	admin	Recognitions	1
773665	2025-03-20	15:42:04.1971622	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3851\r\nOrganizationId: 0\r\nOrganizationName: GIRL SCOUT OF THE PHILIPPINES\r\n	admin	Organizations	1
773696	2025-03-20	15:44:13.9080805	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3851\r\nCharacterReferenceId: 0\r\nCompanyAddress: LIBJO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09451535899\r\nExtensionName: \r\nFirstName: ANACORETA\r\nLastName: BALITAAN\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773697	2025-03-20	15:44:13.9150574	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3851\r\nCharacterReferenceId: 0\r\nCompanyAddress: CUTA BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09186025725\r\nExtensionName: \r\nFirstName: EDNA\r\nLastName: MALIBIRAN\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773652	2025-03-20	15:38:57.5275841	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIBJO\r\nBasicInformationId: 3844\r\nBirthDate: February 24, 1974\r\nBirthPlace: LIBJO, BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MARILOU.SORIANO008@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: MARILOU\r\nFullName: MARILOU S. SORIANO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7744804\r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: SANCHEZ\r\nMobileNumber: 09296742766\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LAMAO\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LAMAO\r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIBJO\r\nBasicInformationId: 3844\r\nBirthDate: February 24, 1974\r\nBirthPlace: LIBJO, BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: MARILOU.SORIANO008@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: MARILOU\r\nFullName: MARILOU S. SORIANO\r\nGender: Female\r\nGovernmentIdIssuedDate: June 27, 2024\r\nGovernmentIdNumber: 0312652\r\nGovernmentIdPlaceIssued: ALABANG CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: 02002992759\r\nHDMF: 1490-0091-2862\r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 7744804\r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: SANCHEZ\r\nMobileNumber: 09296742766\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: LAMAO\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000046210-0\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: LAMAO\r\nTIN: 921-098-431-0000\r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773694	2025-03-20	15:42:18.1182083	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: TABANGAO DAO\r\nBasicInformationId: 0\r\nBirthDate: August 16, 1977\r\nBirthPlace: TABANGAO DAO BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: RICA.SUAREZ@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: RICA\r\nFullName: RICA A. SUAREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.56\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SUAREZ\r\nMaidenName: \r\nMiddleName: AGUADO\r\nMobileNumber: 09279802637\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: TABANGAO DAO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO AGUADO\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO AGUADO\r\nTIN: \r\nWeight: 48\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773695	2025-03-20	15:42:18.1327304	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3853\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
773711	2025-03-20	15:49:58.5350004	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3853\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALLAN\r\nFullName: ALLAN MONTALBO SUAREZ\r\nGender: Male\r\nLastName: SUAREZ\r\nMaidenName: \r\nMiddleName: MONTALBO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
773712	2025-03-20	15:49:58.5400003	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3853\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CESARIO\r\nFullName: CESARIO CANTOS AGUADO\r\nGender: Male\r\nLastName: AGUADO\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773713	2025-03-20	15:49:58.5510005	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3853\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CHARITY\r\nFullName: CHARITY GUNDAY GUILLES\r\nGender: Male\r\nLastName: GUILLES\r\nMaidenName: \r\nMiddleName: GUNDAY\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773714	2025-03-20	15:49:58.5550005	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3853\r\nBirthDate: February 08, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: AEDRIAN\r\nFullName: AEDRIAN A. SUAREZ\r\nGender: Male\r\nLastName: SUAREZ\r\nMaidenName: \r\nMiddleName: A.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773715	2025-03-20	15:49:58.5640005	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3853\r\nBirthDate: July 25, 2021\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: AIRA EUNICE\r\nFullName: AIRA EUNICE A. SUAREZ\r\nGender: Male\r\nLastName: SUAREZ\r\nMaidenName: \r\nMiddleName: A.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773716	2025-03-20	15:49:58.5690004	<Undetected>	Update	BasicInformationId: 3853\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3650\r\n	BasicInformationId: 3853\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3650\r\n	admin	Questionnaires	1
773676	2025-03-20	15:42:17.9549715	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3848\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 22,804.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: June 09, 2017\r\n	admin	Experiences	1
773677	2025-03-20	15:42:17.9599792	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3848\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 21,867.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
773678	2025-03-20	15:42:17.9649871	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3848\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 10, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 21,650.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
773679	2025-03-20	15:42:17.9690029	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3848\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 19,908.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: June 09, 2014\r\n	admin	Experiences	1
773680	2025-03-20	15:42:17.9751373	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3848\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 11, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 19,658.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
773681	2025-03-20	15:42:17.9801452	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3848\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 17,880.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: June 10, 2011\r\n	admin	Experiences	1
773682	2025-03-20	15:42:17.9841539	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3848\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 16,101.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
773683	2025-03-20	15:42:17.9891618	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3848\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 13,512.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
773684	2025-03-20	15:42:17.9941698	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3848\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,284.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
773685	2025-03-20	15:42:17.9991859	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3848\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 10, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 11,589.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
773686	2025-03-20	15:42:18.0033451	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3848\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,535.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: June 09, 2008\r\n	admin	Experiences	1
773687	2025-03-20	15:42:18.0083524	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3848\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: December 15, 2004\r\nIsGovernmentService: True\r\nMonthlySalary: 10,188.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
773688	2025-03-20	15:42:18.0123592	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3848\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: December 14, 2004\r\n	admin	Experiences	1
773689	2025-03-20	15:42:18.0184339	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3848\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2001\r\n	admin	Experiences	1
773690	2025-03-20	15:42:18.0234422	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3848\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
773691	2025-03-20	15:42:18.0284603	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3848\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
773692	2025-03-20	15:42:18.0325209	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3848\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 7,309.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1998\r\n	admin	Experiences	1
773693	2025-03-20	15:42:18.0386419	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3848\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 03, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 6,013.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1996\r\n	admin	Experiences	1
773700	2025-03-20	15:46:38.2141022	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3847\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 0437022094\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: REYNOLD\r\nFullName: REYNOLD CUETO PENTINIO\r\nGender: Male\r\nLastName: PENTINIO\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: TEACHER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
773701	2025-03-20	15:46:38.2267021	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3847\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RECTO\r\nFullName: RECTO ZAMBRANO FALCON\r\nGender: Male\r\nLastName: FALCON\r\nMaidenName: \r\nMiddleName: ZAMBRANO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773702	2025-03-20	15:46:38.2307149	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3847\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MERLIE\r\nFullName: MERLIE BATISTIL FALCON\r\nGender: Male\r\nLastName: FALCON\r\nMaidenName: CASUGA\r\nMiddleName: BATISTIL\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773703	2025-03-20	15:46:38.2399431	<Undetected>	Update	BasicInformationId: 3847\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3644\r\n	BasicInformationId: 3847\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3644\r\n	admin	Questionnaires	1
773704	2025-03-20	15:47:46.7645815	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3847\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1997\r\nDateTo: 2003\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: STA. CLARA ELEMENTARY SCHOOL\r\nYearGraduated: 2003\r\n	admin	EducationalBackgrounds	1
773705	2025-03-20	15:47:46.7696090	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3847\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2007\r\n	admin	EducationalBackgrounds	1
773706	2025-03-20	15:47:46.7817918	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3847\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 2008\r\nDateTo: 2012\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: COLEGIO NG LUNGSOD NG BATANGAS\r\nYearGraduated: 2012\r\n	admin	EducationalBackgrounds	1
773698	2025-03-20	15:44:13.9200407	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3851\r\nCharacterReferenceId: 0\r\nCompanyAddress: STA. RITA BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09154452236\r\nExtensionName: \r\nFirstName: RONALYN\r\nLastName:  DE GUZMAN\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773699	2025-03-20	15:46:30.5405828	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLK 6 LOT 4\r\nAddress2: MERCEDES HOMES\r\nBarangay: SORO-SORO ILAYA\r\nBasicInformationId: 3851\r\nBirthDate: May 24, 1996\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: SAMANTHAGLAIZE.DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: SAMANTHA GLAIZE\r\nFullName: SAMANTHA GLAIZE G. RIVERA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RIVERA\r\nMaidenName: \r\nMiddleName: GATDULA\r\nMobileNumber: 09565115484\r\nNationality: Filipino\r\nPermanentAddress1: BLK 6 LOT 4\r\nPermanentAddress2: MERCEDES HOMES\r\nPermanentBarangay: SORO-SORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: JOAQUIN ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: JOAQUIN ST.\r\nTIN: \r\nWeight: 54\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLK 6 LOT 4\r\nAddress2: MERCEDES HOMES\r\nBarangay: SORO-SORO ILAYA\r\nBasicInformationId: 3851\r\nBirthDate: May 24, 1996\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: SAMANTHAGLAIZE.DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: SAMANTHA GLAIZE\r\nFullName: SAMANTHA GLAIZE G. RIVERA\r\nGender: Female\r\nGovernmentIdIssuedDate: December 12, 2016\r\nGovernmentIdNumber: 1515115\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02005656926\r\nHDMF: 1212-2859-0973\r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RIVERA\r\nMaidenName: \r\nMiddleName: GATDULA\r\nMobileNumber: 09565115484\r\nNationality: Filipino\r\nPermanentAddress1: BLK 6 LOT 4\r\nPermanentAddress2: MERCEDES HOMES\r\nPermanentBarangay: SORO-SORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: JOAQUIN ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050542135-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-4094209-0\r\nStreetName: JOAQUIN ST.\r\nTIN: 347-482-500-0000\r\nWeight: 54\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773707	2025-03-20	15:47:46.7868085	<Undetected>	Update	BasicInformationId: 3847\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 0437022094\r\nEmployeeRelativeId: 4195\r\nExtensionName: \r\nFirstName: REYNOLD\r\nFullName: REYNOLD CUETO PENTINIO\r\nGender: Male\r\nLastName: PENTINIO\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: TEACHER\r\nRelationship: Husband\r\n	BasicInformationId: 3847\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 0437022094\r\nEmployeeRelativeId: 4195\r\nExtensionName: \r\nFirstName: REYNOLD\r\nFullName: REYNOLD PENTINIO\r\nGender: Male\r\nLastName: PENTINIO\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: TEACHER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
773708	2025-03-20	15:47:46.7939082	<Undetected>	Update	BasicInformationId: 3847\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4196\r\nExtensionName: \r\nFirstName: RECTO\r\nFullName: RECTO ZAMBRANO FALCON\r\nGender: Male\r\nLastName: FALCON\r\nMaidenName: \r\nMiddleName: ZAMBRANO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3847\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4196\r\nExtensionName: \r\nFirstName: RECTO\r\nFullName: RECTO FALCON\r\nGender: Male\r\nLastName: FALCON\r\nMaidenName: \r\nMiddleName: ZAMBRANO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773709	2025-03-20	15:47:46.7989370	<Undetected>	Update	BasicInformationId: 3847\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4197\r\nExtensionName: \r\nFirstName: MERLIE\r\nFullName: MERLIE BATISTIL FALCON\r\nGender: Male\r\nLastName: FALCON\r\nMaidenName: CASUGA\r\nMiddleName: BATISTIL\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3847\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4197\r\nExtensionName: \r\nFirstName: MERLIE\r\nFullName: MERLIE FALCON\r\nGender: Male\r\nLastName: FALCON\r\nMaidenName: \r\nMiddleName: BATISTIL\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773710	2025-03-20	15:49:13.2484116	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 1 LOT 3\r\nAddress2: MERCEDES HOMES\r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 3847\r\nBirthDate: May 15, 1990\r\nBirthPlace: SAN VICENTE, PALAWAN\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: reshiele.pentinio@deped.gov.ph\r\nExtensionName: \r\nFirstName: RESHIELE\r\nFullName: RESHIELE F. PENTINIO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PENTINIO\r\nMaidenName: \r\nMiddleName: FALCON\r\nMobileNumber: 09486730702\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 1 LOT 3\r\nPermanentAddress2: MERCEDES HOMES\r\nPermanentBarangay: SOROSORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 56\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: BLOCK 1 LOT 3\r\nAddress2: MERCEDES HOMES\r\nBarangay: SOROSORO ILAYA\r\nBasicInformationId: 3847\r\nBirthDate: May 15, 1990\r\nBirthPlace: SAN VICENTE, PALAWAN\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: reshiele.pentinio@deped.gov.ph\r\nExtensionName: \r\nFirstName: RESHIELE\r\nFullName: RESHIELE F. PENTINIO\r\nGender: Female\r\nGovernmentIdIssuedDate: December 21, 2012\r\nGovernmentIdNumber: 1165651\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02004532157\r\nHDMF: 1210-1134-9466\r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PENTINIO\r\nMaidenName: \r\nMiddleName: FALCON\r\nMobileNumber: 09486730702\r\nNationality: Filipino\r\nPermanentAddress1: BLOCK 1 LOT 3\r\nPermanentAddress2: MERCEDES HOMES\r\nPermanentBarangay: SOROSORO ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 03-050898859-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-2455601-7\r\nStreetName: \r\nTIN: 413-370-226-0000\r\nWeight: 56\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773717	2025-03-20	15:56:21.6926294	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3847\r\nCharacterReferenceId: 0\r\nCompanyAddress: BOLBOK, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09217469444\r\nExtensionName: \r\nFirstName: LUISA\r\nLastName: MACATANGAY\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773718	2025-03-20	15:56:21.7028932	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3847\r\nCharacterReferenceId: 0\r\nCompanyAddress: SOROSORO ILAYA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09155918456\r\nExtensionName: \r\nFirstName: MYRA\r\nLastName: CANICON\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773719	2025-03-20	15:56:21.7078928	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3847\r\nCharacterReferenceId: 0\r\nCompanyAddress: SOROSORO ILAYA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09296001467\r\nExtensionName: \r\nFirstName: BOBET\r\nLastName: CULTURA\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773720	2025-03-20	15:57:12.7337070	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3852\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 04, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 53,456.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-5\r\nStatus: Permanent\r\nToDate: March 20, 2025\r\n	admin	Experiences	1
773721	2025-03-20	15:57:12.7387073	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3852\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 50,617.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-4\r\nStatus: Permanent\r\nToDate: January 03, 2025\r\n	admin	Experiences	1
773722	2025-03-20	15:57:12.7437070	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3852\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 48,253.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-4\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
774460	2025-03-21	15:32:06.1209054	<Undetected>	Update	BasicInformationId: 3870\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3667\r\n	BasicInformationId: 3870\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3667\r\n	admin	Questionnaires	1
773723	2025-03-20	15:57:12.7487056	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3852\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 04, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 46,731.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-4\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
773724	2025-03-20	15:57:12.7537058	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3852\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 46,216.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-3\r\nStatus: Permanent\r\nToDate: January 03, 2022\r\n	admin	Experiences	1
773725	2025-03-20	15:57:12.7587074	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3852\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 44,649.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-3\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
773726	2025-03-20	15:57:12.7627069	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3852\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 43,172.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-3\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
773727	2025-03-20	15:57:12.7687069	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3852\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 04, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 41,650.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-3\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
773728	2025-03-20	15:57:12.7727069	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3852\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 41,143.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-2\r\nStatus: Permanent\r\nToDate: January 03, 2019\r\n	admin	Experiences	1
773729	2025-03-20	15:57:12.7777057	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3852\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 38,543.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-2\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
773730	2025-03-20	15:57:12.7827071	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3852\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 36,111.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-2\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
773731	2025-03-20	15:57:12.7877073	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3852\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 04, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 33,831.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-2\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
773732	2025-03-20	15:57:12.7917072	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3852\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 33,452.08\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-1\r\nStatus: Permanent\r\nToDate: January 03, 2016\r\n	admin	Experiences	1
773733	2025-03-20	15:57:12.7977060	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3852\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 04, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 31,351.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
773734	2025-03-20	15:57:12.8017069	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3852\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / KUMINTANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 09, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 21,650.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: January 03, 2013\r\n	admin	Experiences	1
773735	2025-03-20	15:57:12.8067057	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3852\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / KUMINTANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 21,436.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: June 08, 2012\r\n	admin	Experiences	1
773736	2025-03-20	15:57:12.8117071	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3852\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / KUMINTANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 19,658.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
773737	2025-03-20	15:57:12.8167072	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3852\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / KUMINTANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 17,880.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
773738	2025-03-20	15:57:12.8207070	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3852\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / KUMINTANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 16,101.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
773739	2025-03-20	15:57:12.8257058	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3852\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / KUMINTANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 08, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 13,512.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
773740	2025-03-20	15:57:12.8307071	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3852\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / KUMINTANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 13,392.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: June 07, 2009\r\n	admin	Experiences	1
773741	2025-03-20	15:57:12.8357073	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3852\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / KUMINTANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 13,066.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
773742	2025-03-20	15:57:12.8397068	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3852\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / KUMINTANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 11,878.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2007\r\n	admin	Experiences	1
773743	2025-03-20	15:57:12.8487061	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3852\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / KUMINTANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 09, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 10,798.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
773744	2025-03-20	15:57:12.8527060	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3852\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / KUMINTANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 10,188.00\r\nPositionHeld: TEACHER I \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-2\r\nStatus: Permanent\r\nToDate: July 08, 2001\r\n	admin	Experiences	1
773745	2025-03-20	15:57:12.8577059	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3852\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / KUMINTANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 9,703.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-2\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
773746	2025-03-20	15:57:12.8627060	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3852\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / KUMINTANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: November 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 8,821.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-2\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
773747	2025-03-20	15:57:12.8677060	<Undetected>	Update	BasicInformationId: 3852\r\nBirthDate: October 30, 1990\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4188\r\nExtensionName: \r\nFirstName: JOSEPHINE\r\nFullName: JOSEPHINE FONTE CANTUBA\r\nGender: Female\r\nLastName: CANTUBA\r\nMaidenName: \r\nMiddleName: FONTE\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3852\r\nBirthDate: October 30, 1990\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4188\r\nExtensionName: \r\nFirstName: JOSEPHINE\r\nFullName: JOSEPHINE CANTUBA\r\nGender: Female\r\nLastName: CANTUBA\r\nMaidenName: \r\nMiddleName: FONTE\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773748	2025-03-20	15:57:12.8717059	<Undetected>	Update	BasicInformationId: 3852\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4189\r\nExtensionName: \r\nFirstName: ARTEMIO\r\nFullName: ARTEMIO FRUELDA FONTE\r\nGender: Male\r\nLastName: FONTE\r\nMaidenName: \r\nMiddleName: FRUELDA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3852\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4189\r\nExtensionName: \r\nFirstName: ARTEMIO\r\nFullName: ARTEMIO FONTE\r\nGender: Male\r\nLastName: FONTE\r\nMaidenName: \r\nMiddleName: FRUELDA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773749	2025-03-20	15:57:12.8767059	<Undetected>	Update	BasicInformationId: 3852\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4190\r\nExtensionName: \r\nFirstName: LAURIANA\r\nFullName: LAURIANA MANZALAY FAJILAN\r\nGender: Female\r\nLastName: FAJILAN\r\nMaidenName: \r\nMiddleName: MANZALAY\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3852\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4190\r\nExtensionName: \r\nFirstName: LAURIANA\r\nFullName: LAURIANA FAJILAN\r\nGender: Female\r\nLastName: FAJILAN\r\nMaidenName: \r\nMiddleName: MANZALAY\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773750	2025-03-20	15:57:12.8817059	<Undetected>	Update	BasicInformationId: 3852\r\nBirthDate: October 30, 1990\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4191\r\nExtensionName: \r\nFirstName: JOSEPHINE\r\nFullName: JOSEPHINE FONTE CANTUBA\r\nGender: Female\r\nLastName: CANTUBA\r\nMaidenName: \r\nMiddleName: FONTE\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3852\r\nBirthDate: October 30, 1990\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4191\r\nExtensionName: \r\nFirstName: JOSEPHINE\r\nFullName: JOSEPHINE CANTUBA\r\nGender: Female\r\nLastName: CANTUBA\r\nMaidenName: \r\nMiddleName: FONTE\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773751	2025-03-20	15:57:12.8867059	<Undetected>	Update	BasicInformationId: 3852\r\nBirthDate: January 31, 1992\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4192\r\nExtensionName: \r\nFirstName: JOEL\r\nFullName: JOEL FONTE CANTUBA\r\nGender: Male\r\nLastName: CANTUBA\r\nMaidenName: \r\nMiddleName: FONTE\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3852\r\nBirthDate: January 31, 1992\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4192\r\nExtensionName: \r\nFirstName: JOEL\r\nFullName: JOEL CANTUBA\r\nGender: Male\r\nLastName: CANTUBA\r\nMaidenName: \r\nMiddleName: FONTE\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773752	2025-03-20	15:57:12.8907058	<Undetected>	Update	BasicInformationId: 3852\r\nBirthDate: May 21, 1993\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4193\r\nExtensionName: JR.\r\nFirstName: JOSEPH\r\nFullName: JOSEPH FONTE CANTUBA JR.\r\nGender: Male\r\nLastName: CANTUBA\r\nMaidenName: \r\nMiddleName: FONTE\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3852\r\nBirthDate: May 21, 1993\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4193\r\nExtensionName: JR.\r\nFirstName: JOSEPH\r\nFullName: JOSEPH CANTUBA JR.\r\nGender: Male\r\nLastName: CANTUBA\r\nMaidenName: \r\nMiddleName: FONTE\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773753	2025-03-20	15:57:12.8957059	<Undetected>	Update	BasicInformationId: 3852\r\nBirthDate: June 18, 1995\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4194\r\nExtensionName: \r\nFirstName: JOSHUA\r\nFullName: JOSHUA FONTE CANTUBA\r\nGender: Male\r\nLastName: CANTUBA\r\nMaidenName: \r\nMiddleName: FONTE\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3852\r\nBirthDate: June 18, 1995\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4194\r\nExtensionName: \r\nFirstName: JOSHUA\r\nFullName: JOSHUA CANTUBA\r\nGender: Male\r\nLastName: CANTUBA\r\nMaidenName: \r\nMiddleName: FONTE\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773754	2025-03-20	15:57:12.9007058	<Undetected>	Update	BasicInformationId: 3852\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3649\r\n	BasicInformationId: 3852\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3649\r\n	admin	Questionnaires	1
773755	2025-03-20	15:58:35.9625489	<Undetected>	Update	BasicInformationId: 3853\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4198\r\nExtensionName: \r\nFirstName: ALLAN\r\nFullName: ALLAN MONTALBO SUAREZ\r\nGender: Male\r\nLastName: SUAREZ\r\nMaidenName: \r\nMiddleName: MONTALBO\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3853\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4198\r\nExtensionName: \r\nFirstName: ALLAN\r\nFullName: ALLAN SUAREZ\r\nGender: Male\r\nLastName: SUAREZ\r\nMaidenName: \r\nMiddleName: MONTALBO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
773756	2025-03-20	15:58:35.9675490	<Undetected>	Update	BasicInformationId: 3853\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4199\r\nExtensionName: \r\nFirstName: CESARIO\r\nFullName: CESARIO CANTOS AGUADO\r\nGender: Male\r\nLastName: AGUADO\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3853\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4199\r\nExtensionName: \r\nFirstName: CESARIO\r\nFullName: CESARIO AGUADO\r\nGender: Male\r\nLastName: AGUADO\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773757	2025-03-20	15:58:35.9785492	<Undetected>	Update	BasicInformationId: 3853\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4200\r\nExtensionName: \r\nFirstName: CHARITY\r\nFullName: CHARITY GUNDAY GUILLES\r\nGender: Male\r\nLastName: GUILLES\r\nMaidenName: \r\nMiddleName: GUNDAY\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3853\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4200\r\nExtensionName: \r\nFirstName: CHARITY\r\nFullName: CHARITY GUILLES\r\nGender: Male\r\nLastName: GUILLES\r\nMaidenName: \r\nMiddleName: GUNDAY\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773758	2025-03-20	15:58:35.9825490	<Undetected>	Update	BasicInformationId: 3853\r\nBirthDate: February 08, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4201\r\nExtensionName: \r\nFirstName: AEDRIAN\r\nFullName: AEDRIAN A. SUAREZ\r\nGender: Male\r\nLastName: SUAREZ\r\nMaidenName: \r\nMiddleName: A.\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3853\r\nBirthDate: February 08, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4201\r\nExtensionName: \r\nFirstName: AEDRIAN\r\nFullName: AEDRIAN SUAREZ\r\nGender: Male\r\nLastName: SUAREZ\r\nMaidenName: \r\nMiddleName: A.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773759	2025-03-20	15:58:35.9905905	<Undetected>	Update	BasicInformationId: 3853\r\nBirthDate: July 25, 2021\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4202\r\nExtensionName: \r\nFirstName: AIRA EUNICE\r\nFullName: AIRA EUNICE A. SUAREZ\r\nGender: Male\r\nLastName: SUAREZ\r\nMaidenName: \r\nMiddleName: A.\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3853\r\nBirthDate: July 25, 2021\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4202\r\nExtensionName: \r\nFirstName: AIRA EUNICE\r\nFullName: AIRA EUNICE SUAREZ\r\nGender: Male\r\nLastName: SUAREZ\r\nMaidenName: \r\nMiddleName: A.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773760	2025-03-20	16:03:18.2352692	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3847\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 15\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16482\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773761	2025-03-20	16:03:18.2402696	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3847\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16470\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773762	2025-03-20	16:03:18.2452694	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3847\r\nEmployeeTrainingId: 0\r\nFromDate: July 04, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 06, 2024\r\nTrainingId: 16483\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773763	2025-03-20	16:03:18.2502696	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3847\r\nEmployeeTrainingId: 0\r\nFromDate: April 18, 2023\r\nHours: 108\r\nNatureOfParticipation: \r\nSponsoringAgency: MC TECH TRAINING CENTER\r\nStatus: \r\nToDate: May 05, 2023\r\nTrainingId: 11451\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773764	2025-03-20	16:03:18.2552697	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3847\r\nEmployeeTrainingId: 0\r\nFromDate: August 30, 2021\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: September 03, 2021\r\nTrainingId: 16409\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773765	2025-03-20	16:03:45.7050934	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3847\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
773766	2025-03-20	16:03:45.7163264	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3847\r\nSkillId: 0\r\nSkillName: GOOD COMMUNICATION SKILLS\r\n	admin	Skills	1
773767	2025-03-20	16:03:45.7203824	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3847\r\nSkillId: 0\r\nSkillName: ARTS AND MUSIC\r\n	admin	Skills	1
773768	2025-03-20	16:04:32.3272624	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3847\r\nDateOfExamination: September 30, 2012\r\nDateOfRelease: May 14, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 30, 2012\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1165651\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 78\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
773769	2025-03-20	16:04:34.3448595	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: EASTERN\r\nBarangay: EASTERN LIBJO\r\nBasicInformationId: 0\r\nBirthDate: August 12, 1965\r\nBirthPlace: CUTA BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: CONCEPCION.SOLIMAN001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: CONCEPCION\r\nFullName: CONCEPCION G. SOLIMAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0439845041\r\nLastName: SOLIMAN\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nMobileNumber: 09286748499\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: EASTERN\r\nPermanentBarangay: EASTERN LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 75\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773770	2025-03-20	16:04:34.7890345	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3854\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RODELIO\r\nFullName: RODELIO DALUZ SOLIMAN\r\nGender: Male\r\nLastName: SOLIMAN\r\nMaidenName: \r\nMiddleName: DALUZ\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
773771	2025-03-20	16:04:34.7890345	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3854\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FELIX\r\nFullName: FELIX CATAPANG GUTIERREZ\r\nGender: Male\r\nLastName: GUTIERREZ\r\nMaidenName: \r\nMiddleName: CATAPANG\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773772	2025-03-20	16:04:34.7890345	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3854\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ILUMINADA\r\nFullName: ILUMINADA APARATO VALENCIA\r\nGender: Male\r\nLastName: VALENCIA\r\nMaidenName: \r\nMiddleName: APARATO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773773	2025-03-20	16:04:34.7890345	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3854\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
773774	2025-03-20	16:05:13.0847428	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3852\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / KUMINTANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 7,433.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-2\r\nStatus: Permanent\r\nToDate: October 31, 1997\r\n	admin	Experiences	1
773775	2025-03-20	16:05:13.0937832	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3852\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TABANGAO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 6,044.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-2\r\nStatus: Permanent\r\nToDate: December 31, 1996\r\n	admin	Experiences	1
773776	2025-03-20	16:05:13.0987418	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3852\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TABANGAO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 4,933.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-2\r\nStatus: Permanent\r\nToDate: December 31, 1995\r\n	admin	Experiences	1
773777	2025-03-20	16:05:13.1037418	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3852\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TABANGAO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 3,933.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1994\r\n	admin	Experiences	1
773778	2025-03-20	16:05:13.1087417	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3852\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TABANGAO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 1993\r\nIsGovernmentService: True\r\nMonthlySalary: 3,133.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1993\r\n	admin	Experiences	1
773779	2025-03-20	16:05:13.1127417	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3852\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TABANGAO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: December 18, 1989\r\nIsGovernmentService: True\r\nMonthlySalary: 3,102.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1992\r\n	admin	Experiences	1
773780	2025-03-20	16:09:24.0536418	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3854\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1974\r\nDateTo: 1979\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: JULIAN A. PASTOR MEMORIAL ELEMENTARY SCHOOL\r\nYearGraduated: 1979\r\n	admin	EducationalBackgrounds	1
773781	2025-03-20	16:09:24.0636084	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3854\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1979\r\nDateTo: 1982\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1982\r\n	admin	EducationalBackgrounds	1
773782	2025-03-20	16:09:24.0685917	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3854\r\nCourse: \r\nCourseId: 1329\r\nCourseOrMajor: \r\nDateFrom: 1982\r\nDateTo: 1986\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY\r\nYearGraduated: 1986\r\n	admin	EducationalBackgrounds	1
773783	2025-03-20	16:09:24.0725782	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3854\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 1995\r\nDateTo: 2006\r\nEducationalAttainment: 45\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MASTER IN EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
773794	2025-03-20	16:09:43.9173180	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3847\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 04, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: July 02, 2014\r\n	admin	Experiences	1
773795	2025-03-20	16:10:24.2728280	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: SECOND HONORABLE MENTION \r\nBasicInformationId: 3853\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1984\r\nDateTo: 1990\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: DAO ELEMENTARY SCHOOL \r\nYearGraduated: 1990\r\n	admin	EducationalBackgrounds	1
773784	2025-03-20	16:09:24.0815484	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: EASTERN\r\nBarangay: EASTERN LIBJO\r\nBasicInformationId: 3854\r\nBirthDate: August 12, 1965\r\nBirthPlace: CUTA BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: CONCEPCION.SOLIMAN001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: CONCEPCION\r\nFullName: CONCEPCION G. SOLIMAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0439845041\r\nLastName: SOLIMAN\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nMobileNumber: 09286748499\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: EASTERN\r\nPermanentBarangay: EASTERN LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 75\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: EASTERN\r\nBarangay: EASTERN LIBJO\r\nBasicInformationId: 3854\r\nBirthDate: August 12, 1965\r\nBirthPlace: CUTA BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: CONCEPCION.SOLIMAN001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: CONCEPCION\r\nFullName: CONCEPCION G. SOLIMAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0439845041\r\nLastName: SOLIMAN\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nMobileNumber: 09286748499\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: EASTERN\r\nPermanentBarangay: EASTERN LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 75\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773785	2025-03-20	16:09:24.0855348	<Undetected>	Update	BasicInformationId: 3854\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4203\r\nExtensionName: \r\nFirstName: RODELIO\r\nFullName: RODELIO DALUZ SOLIMAN\r\nGender: Male\r\nLastName: SOLIMAN\r\nMaidenName: \r\nMiddleName: DALUZ\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3854\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4203\r\nExtensionName: \r\nFirstName: RODELIO\r\nFullName: RODELIO SOLIMAN\r\nGender: Male\r\nLastName: SOLIMAN\r\nMaidenName: \r\nMiddleName: DALUZ\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
773786	2025-03-20	16:09:24.0915151	<Undetected>	Update	BasicInformationId: 3854\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4204\r\nExtensionName: \r\nFirstName: FELIX\r\nFullName: FELIX CATAPANG GUTIERREZ\r\nGender: Male\r\nLastName: GUTIERREZ\r\nMaidenName: \r\nMiddleName: CATAPANG\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3854\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4204\r\nExtensionName: \r\nFirstName: FELIX\r\nFullName: FELIX GUTIERREZ\r\nGender: Male\r\nLastName: GUTIERREZ\r\nMaidenName: \r\nMiddleName: CATAPANG\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773787	2025-03-20	16:09:24.0955015	<Undetected>	Update	BasicInformationId: 3854\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4205\r\nExtensionName: \r\nFirstName: ILUMINADA\r\nFullName: ILUMINADA APARATO VALENCIA\r\nGender: Male\r\nLastName: VALENCIA\r\nMaidenName: \r\nMiddleName: APARATO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3854\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4205\r\nExtensionName: \r\nFirstName: ILUMINADA\r\nFullName: ILUMINADA VALENCIA\r\nGender: Male\r\nLastName: VALENCIA\r\nMaidenName: \r\nMiddleName: APARATO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773788	2025-03-20	16:09:24.1004848	<Undetected>	Update	BasicInformationId: 3854\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3651\r\n	BasicInformationId: 3854\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3651\r\n	admin	Questionnaires	1
773789	2025-03-20	16:09:43.8933182	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3847\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,024.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
773790	2025-03-20	16:09:43.8983179	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3847\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: April 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
773791	2025-03-20	16:09:43.9023176	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3847\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 04, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: March 11, 2024\r\n	admin	Experiences	1
773792	2025-03-20	16:09:43.9073176	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3847\r\nCompanyInstitution: ELITE KIDS ONE-ON-ONE TUTORIAL CENTER\r\nExperienceId: 0\r\nFromDate: June 01, 2015\r\nIsGovernmentService: False\r\nMonthlySalary: 11,000.00\r\nPositionHeld: TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: March 31, 2020\r\n	admin	Experiences	1
773793	2025-03-20	16:09:43.9123180	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3847\r\nCompanyInstitution: KIDEX TUTORIAL CENTER\r\nExperienceId: 0\r\nFromDate: September 01, 2014\r\nIsGovernmentService: False\r\nMonthlySalary: 5,000.00\r\nPositionHeld: TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Temporary\r\nToDate: December 19, 2014\r\n	admin	Experiences	1
773796	2025-03-20	16:10:24.2778286	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: VALEDICTORIAN \r\nBasicInformationId: 3853\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1990\r\nDateTo: 1994\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: TABANGAO NATINAL HIGH SCHOOL \r\nYearGraduated: 1994\r\n	admin	EducationalBackgrounds	1
773797	2025-03-20	16:10:24.2878331	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: DEAN'S LISTER PESPA SCHOLAR \r\nBasicInformationId: 3853\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 1998\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS \r\nYearGraduated: 1998\r\n	admin	EducationalBackgrounds	1
773798	2025-03-20	16:10:24.2928327	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3853\r\nCourse: \r\nCourseId: 1304\r\nCourseOrMajor: \r\nDateFrom: 1999\r\nDateTo: 2005\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY \r\nYearGraduated: 2005\r\n	admin	EducationalBackgrounds	1
773799	2025-03-20	16:10:24.2993421	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3853\r\nCourse: \r\nCourseId: 1302\r\nCourseOrMajor: \r\nDateFrom: 2013\r\nDateTo: 2016\r\nEducationalAttainment: 36\r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY \r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
773800	2025-03-20	16:11:50.5371283	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: DOCTOR OF PHILOSOPHY IN EDUCATIONAL MANAGEMENT \r\nLevel: Doctorate\r\n	admin	Courses	1
773803	2025-03-20	16:12:26.1619031	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3853\r\nCourse: \r\nCourseId: 1325\r\nCourseOrMajor: \r\nDateFrom: 2016\r\nDateTo: 2017\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Doctorate Degree\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY \r\nYearGraduated: 2017\r\n	admin	EducationalBackgrounds	1
773820	2025-03-20	16:29:35.0269951	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3853\r\nDateOfExamination: May 24, 1998\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 7\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: May 24, 1998\r\nLevelOfEligibility: First Level (Subprofessional)\r\nLicenseNumber: \r\nPlaceOfExamination: BATANGAS CITY \r\nRating: 83.94\r\nTitle: CIVIL SERVICE SUB PROF. EXAMINATION \r\n	admin	Eligibilities	1
773821	2025-03-20	16:29:35.0319948	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3853\r\nDateOfExamination: January 08, 1998\r\nDateOfRelease: August 16, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: January 08, 1998\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0493346\r\nPlaceOfExamination: DAPITAN, MANILA\r\nRating: 83.20\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS \r\n	admin	Eligibilities	1
773822	2025-03-20	16:29:35.0369954	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3853\r\nDateOfExamination: January 20, 2013\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: January 20, 2013\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: \r\nPlaceOfExamination: CAINTA, RIZAL\r\nRating: 99.32\r\nTitle: NATIONAL QUALIFYING EXAMINATION FOR SCHOOL HEADS \r\n	admin	Eligibilities	1
773801	2025-03-20	16:12:09.8252427	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3847\r\nCompanyInstitution: HOLY CROSS MONTESSORI SCHOOL\r\nExperienceId: 0\r\nFromDate: June 03, 2013\r\nIsGovernmentService: False\r\nMonthlySalary: 6,500.00\r\nPositionHeld: TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: March 28, 2014\r\n	admin	Experiences	1
773802	2025-03-20	16:12:09.8352427	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3847\r\nCompanyInstitution: REGIS BENEDICTINE ACADEMY\r\nExperienceId: 0\r\nFromDate: August 06, 2012\r\nIsGovernmentService: False\r\nMonthlySalary: 8,000.00\r\nPositionHeld: TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Substitute\r\nToDate: November 23, 2012\r\n	admin	Experiences	1
773804	2025-03-20	16:15:33.9804135	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3852\r\nEmployeeTrainingId: 0\r\nFromDate: January 25, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / DISTRICT IV \r\nStatus: \r\nToDate: January 25, 2024\r\nTrainingId: 16346\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773805	2025-03-20	16:15:33.9854140	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3852\r\nEmployeeTrainingId: 0\r\nFromDate: April 01, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / DISTRICT IV\r\nStatus: \r\nToDate: April 01, 2023\r\nTrainingId: 16571\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773806	2025-03-20	16:18:08.2634362	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3852\r\nEmployeeTrainingId: 0\r\nFromDate: February 06, 2023\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: February 08, 2023\r\nTrainingId: 16557\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773807	2025-03-20	16:18:08.2684364	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3852\r\nEmployeeTrainingId: 0\r\nFromDate: November 26, 2021\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: November 26, 2021\r\nTrainingId: 16651\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773808	2025-03-20	16:18:08.2734364	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3852\r\nEmployeeTrainingId: 0\r\nFromDate: November 04, 2021\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY \r\nStatus: \r\nToDate: November 04, 2021\r\nTrainingId: 15598\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773809	2025-03-20	16:20:40.1386898	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3852\r\nSkillId: 0\r\nSkillName: PLANTING\r\n	admin	Skills	1
773810	2025-03-20	16:20:40.1546877	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3852\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
773811	2025-03-20	16:20:40.1656890	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3852\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
773812	2025-03-20	16:20:40.1726874	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3852\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES SORO SORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09913261235\r\nExtensionName: \r\nFirstName: EPITACIA\r\nLastName: CULLERA\r\nMiddleName: C. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773813	2025-03-20	16:20:40.1776877	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3852\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN WEST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175057894\r\nExtensionName: \r\nFirstName: AUREA\r\nLastName: OCON\r\nMiddleName: P.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773814	2025-03-20	16:20:40.1856889	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3852\r\nCharacterReferenceId: 0\r\nCompanyAddress: P. HERRERA ST. BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09618306429\r\nExtensionName: \r\nFirstName: ELIZA\r\nLastName: NEBRIDA\r\nMiddleName: B. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773816	2025-03-20	16:25:41.9834187	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3854\r\nDateOfExamination: October 23, 1994\r\nDateOfRelease: August 12, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: October 23, 1994\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0060787\r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 75.4\r\nTitle: PROFESSIONAL BOARD EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
773817	2025-03-20	16:29:13.5482171	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3854\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 17, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 33,591.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-8\r\nStatus: Permanent\r\nToDate: January 01, 2025\r\n	admin	Experiences	1
773815	2025-03-20	16:22:08.4799343	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: KUMINTANG ILAYA\r\nBasicInformationId: 3852\r\nBirthDate: July 17, 1966\r\nBirthPlace: CORCUERA, ROMBLON\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: olivia.cantuba001@deped.gov.ph\r\nExtensionName: \r\nFirstName: OLIVIA\r\nFullName: OLIVIA F. CANTUBA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437818768\r\nLastName: CANTUBA\r\nMaidenName: \r\nMiddleName: FONTE\r\nMobileNumber: 09560537876\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: MERALCO SITE\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: MERALCO SITE\r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: KUMINTANG ILAYA\r\nBasicInformationId: 3852\r\nBirthDate: July 17, 1966\r\nBirthPlace: CORCUERA, ROMBLON\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Widow\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: olivia.cantuba001@deped.gov.ph\r\nExtensionName: \r\nFirstName: OLIVIA\r\nFullName: OLIVIA F. CANTUBA\r\nGender: Female\r\nGovernmentIdIssuedDate: September 10, 1997\r\nGovernmentIdNumber: 0126531\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PROFESSIONAL IDENTIFICATION CARD\r\nGSIS: 02003005850\r\nHDMF: 1490-0084-0993\r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437818768\r\nLastName: CANTUBA\r\nMaidenName: \r\nMiddleName: FONTE\r\nMobileNumber: 09560537876\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: MERALCO SITE\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000012246-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: MERALCO SITE\r\nTIN: 124-520-276-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773818	2025-03-20	16:29:13.5571872	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3854\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 08, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 10,385.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: July 16, 2002\r\n	admin	Experiences	1
773819	2025-03-20	16:29:13.5611738	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3854\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 15, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 6,013.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: July 07, 1996\r\n	admin	Experiences	1
773823	2025-03-20	16:30:35.7045605	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL LEARNING ACTION CELL ON BALANCE LITERACY APPROACH AND INTEGRATIVE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773824	2025-03-20	16:32:10.3128294	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL LEARNING ACTION CELL ON EVALUATING TEST AND ASSESSMENT RESULTS\r\nTrainingId: 0\r\nType: \r\n	admin	Trainings	1
773825	2025-03-20	16:34:48.6249676	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SESSION ON INTEGRATING APPRECIATIVE INQUIRY APPROACH CUM GAWAD KINANGAN YEAR 2\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773826	2025-03-20	16:36:36.7054122	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INCLUSIVE EDUCATION (IE) AND ALTERNATION DELIVERY MODE (ADM) PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773827	2025-03-20	16:37:28.1864637	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3854\r\nEmployeeTrainingId: 0\r\nFromDate: August 29, 2024\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: LIBJO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: August 29, 2024\r\nTrainingId: 16667\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773828	2025-03-20	16:37:28.1914474	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3854\r\nEmployeeTrainingId: 0\r\nFromDate: April 25, 2024\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: LIBJO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: April 25, 2024\r\nTrainingId: 16668\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773829	2025-03-20	16:37:28.1964303	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3854\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: LIBJO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16606\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773830	2025-03-20	16:37:28.2004170	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3854\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2023\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS\r\nStatus: \r\nToDate: November 29, 2023\r\nTrainingId: 16669\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773831	2025-03-20	16:37:28.2054003	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3854\r\nEmployeeTrainingId: 0\r\nFromDate: September 20, 2023\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS\r\nStatus: \r\nToDate: October 20, 2023\r\nTrainingId: 16670\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773832	2025-03-20	16:39:04.2325978	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3854\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
773833	2025-03-20	16:39:04.2375810	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3854\r\nSkillId: 0\r\nSkillName: READING BOOKS/MAGAZINES\r\n	admin	Skills	1
773834	2025-03-20	16:39:04.2505376	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3854\r\nSkillId: 0\r\nSkillName: WRITER\r\n	admin	Skills	1
773835	2025-03-20	16:39:04.2615010	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3854\r\nRecognitionId: 0\r\nRecognitionName: BRONZE SERVICE AWARD\r\n	admin	Recognitions	1
773836	2025-03-20	16:39:04.2953877	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3854\r\nRecognitionId: 0\r\nRecognitionName: GOLD SERVICE AWARD\r\n	admin	Recognitions	1
773837	2025-03-20	16:39:04.3064092	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3854\r\nRecognitionId: 0\r\nRecognitionName: BRONZE MERIT AWARD\r\n	admin	Recognitions	1
773838	2025-03-20	16:39:04.3133847	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3854\r\nRecognitionId: 0\r\nRecognitionName: DISTRICT VII GAWAD STAR WRITER\r\n	admin	Recognitions	1
773839	2025-03-20	16:39:04.3173712	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3854\r\nOrganizationId: 0\r\nOrganizationName: BOYSCOUT OF THE PHILIPPINES\r\n	admin	Organizations	1
774111	2025-03-21	11:28:13.7514842	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3860\r\nCharacterReferenceId: 0\r\nCompanyAddress: BILOGO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09196383526\r\nExtensionName: \r\nFirstName: NILO\r\nLastName: ALO\r\nMiddleName: D.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773840	2025-03-20	16:40:45.7716353	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3854\r\nCharacterReferenceId: 0\r\nCompanyAddress: TABANGAO DAO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 7271358\r\nExtensionName: \r\nFirstName: RICA\r\nLastName: SUAREZ\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773841	2025-03-20	16:40:45.7756219	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3854\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ISIDRO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 7271358\r\nExtensionName: \r\nFirstName: ROSALINA\r\nLastName: PANGANIBAN\r\nMiddleName: H\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773842	2025-03-20	16:40:45.7835953	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3854\r\nCharacterReferenceId: 0\r\nCompanyAddress: LIBJO TANGISAN, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 7271358\r\nExtensionName: \r\nFirstName: GEMMA\r\nLastName: CLAVERIA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773843	2025-03-20	16:42:47.4409731	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: EASTERN\r\nBarangay: EASTERN LIBJO\r\nBasicInformationId: 3854\r\nBirthDate: August 12, 1965\r\nBirthPlace: CUTA BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: CONCEPCION.SOLIMAN001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: CONCEPCION\r\nFullName: CONCEPCION G. SOLIMAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0439845041\r\nLastName: SOLIMAN\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nMobileNumber: 09286748499\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: EASTERN\r\nPermanentBarangay: EASTERN LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 75\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: EASTERN\r\nBarangay: EASTERN LIBJO\r\nBasicInformationId: 3854\r\nBirthDate: August 12, 1965\r\nBirthPlace: CUTA BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: CONCEPCION.SOLIMAN001@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: CONCEPCION\r\nFullName: CONCEPCION G. SOLIMAN\r\nGender: Female\r\nGovernmentIdIssuedDate: December 11, 2017\r\nGovernmentIdNumber: 0060787\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02002998012\r\nHDMF: 1490-0086-0452\r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0439845041\r\nLastName: SOLIMAN\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nMobileNumber: 09286748499\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: EASTERN\r\nPermanentBarangay: EASTERN LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000008881-0\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 124-523-868-0000\r\nWeight: 75\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773844	2025-03-20	16:47:04.4032038	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: DOMOCLAY SOUTH\r\nBarangay: DOMOCLAY\r\nBasicInformationId: 0\r\nBirthDate: January 28, 1992\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ABIGAIL.BALMES@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ABIGAIL\r\nFullName: ABIGAIL B. PAMPLONA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.47\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437735037\r\nLastName: PAMPLONA\r\nMaidenName: \r\nMiddleName: BALMES\r\nMobileNumber: 09363948289\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: DOMOCLAY SOUTH\r\nPermanentBarangay: DOMOCLAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 49.5\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773845	2025-03-20	16:47:04.4964579	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3855\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALVIN\r\nFullName: ALVIN ARQUERO PAMPLONA\r\nGender: Male\r\nLastName: PAMPLONA\r\nMaidenName: \r\nMiddleName: ARQUERO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
773846	2025-03-20	16:47:04.4964579	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3855\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: BENJAMIN\r\nFullName: BENJAMIN MAGTIBAY BALMES\r\nGender: Male\r\nLastName: BALMES\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773847	2025-03-20	16:47:04.4974484	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3855\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MINA\r\nFullName: MINA VELASQUEZ MARASIGAN\r\nGender: Male\r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: VELASQUEZ\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773848	2025-03-20	16:47:04.4974484	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3855\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
773849	2025-03-20	16:49:45.3053765	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3855\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1998\r\nDateTo: 2004\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: HALIGUE SILANGAN ELEMENTARY SCHOOL\r\nYearGraduated: 2004\r\n	admin	EducationalBackgrounds	1
774494	2025-03-21	15:42:04.3064899	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DALUMAT SA WIKA, PANITIKAN AT ARALING PANGKULTURA SA BAGONG NORMAL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773850	2025-03-20	16:49:45.3153434	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3855\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2004\r\nDateTo: 2008\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: STO. NINO NATIONAL HIGH SCHOOL\r\nYearGraduated: 2008\r\n	admin	EducationalBackgrounds	1
773851	2025-03-20	16:49:45.3203269	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3855\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2008\r\nDateTo: 2012\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2012\r\n	admin	EducationalBackgrounds	1
773852	2025-03-20	16:49:45.3283002	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3855\r\nCourse: \r\nCourseId: 1333\r\nCourseOrMajor: \r\nDateFrom: 2018\r\nDateTo: 2018\r\nEducationalAttainment: 36\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN SPECIAL EDUCATION\r\nSchoolorUniversity: ST. JUDE COLLEGE\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
773853	2025-03-20	16:49:45.3332836	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: DOMOCLAY SOUTH\r\nBarangay: DOMOCLAY\r\nBasicInformationId: 3855\r\nBirthDate: January 28, 1992\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ABIGAIL.BALMES@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ABIGAIL\r\nFullName: ABIGAIL B. PAMPLONA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.47\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437735037\r\nLastName: PAMPLONA\r\nMaidenName: \r\nMiddleName: BALMES\r\nMobileNumber: 09363948289\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: DOMOCLAY SOUTH\r\nPermanentBarangay: DOMOCLAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 49.5\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: DOMOCLAY SOUTH\r\nBarangay: DOMOCLAY\r\nBasicInformationId: 3855\r\nBirthDate: January 28, 1992\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ABIGAIL.BALMES@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ABIGAIL\r\nFullName: ABIGAIL B. PAMPLONA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.47\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437735037\r\nLastName: PAMPLONA\r\nMaidenName: \r\nMiddleName: BALMES\r\nMobileNumber: 09363948289\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: DOMOCLAY SOUTH\r\nPermanentBarangay: DOMOCLAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 49.5\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773854	2025-03-20	16:49:45.3382671	<Undetected>	Update	BasicInformationId: 3855\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4206\r\nExtensionName: \r\nFirstName: ALVIN\r\nFullName: ALVIN ARQUERO PAMPLONA\r\nGender: Male\r\nLastName: PAMPLONA\r\nMaidenName: \r\nMiddleName: ARQUERO\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3855\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4206\r\nExtensionName: \r\nFirstName: ALVIN\r\nFullName: ALVIN PAMPLONA\r\nGender: Male\r\nLastName: PAMPLONA\r\nMaidenName: \r\nMiddleName: ARQUERO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
773855	2025-03-20	16:49:45.3432503	<Undetected>	Update	BasicInformationId: 3855\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4207\r\nExtensionName: \r\nFirstName: BENJAMIN\r\nFullName: BENJAMIN MAGTIBAY BALMES\r\nGender: Male\r\nLastName: BALMES\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3855\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4207\r\nExtensionName: \r\nFirstName: BENJAMIN\r\nFullName: BENJAMIN BALMES\r\nGender: Male\r\nLastName: BALMES\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773856	2025-03-20	16:49:45.3472368	<Undetected>	Update	BasicInformationId: 3855\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4208\r\nExtensionName: \r\nFirstName: MINA\r\nFullName: MINA VELASQUEZ MARASIGAN\r\nGender: Male\r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: VELASQUEZ\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3855\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4208\r\nExtensionName: \r\nFirstName: MINA\r\nFullName: MINA MARASIGAN\r\nGender: Male\r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: VELASQUEZ\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773857	2025-03-20	16:49:45.3522202	<Undetected>	Update	BasicInformationId: 3855\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3652\r\n	BasicInformationId: 3855\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3652\r\n	admin	Questionnaires	1
773858	2025-03-21	07:53:50.5963513	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER IN ARTS IN EDUCATIONAL MANAGEMENT\r\nLevel: Master's\r\n	admin	Courses	1
773859	2025-03-21	07:54:28.6005940	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: SALUTATORIAN\r\nBasicInformationId: 3849\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: DAO ELEMENTARY SCHOOL\r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
773860	2025-03-21	07:54:28.6056108	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3849\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2011\r\nDateTo: 2015\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: TABANGAO NATIONAL HIGH SCHOOL\r\nYearGraduated: 2015\r\n	admin	EducationalBackgrounds	1
774497	2025-03-21	15:43:35.6685577	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TEACH TALK (THE CONTEMPORARY WORLD EDITION) UNDER THE LINANGIN\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773861	2025-03-21	07:54:28.6156960	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3849\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 2015\r\nDateTo: 2019\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: COLEGIO NG LUNGSOD NG BATANGAS\r\nYearGraduated: 2019\r\n	admin	EducationalBackgrounds	1
773862	2025-03-21	07:54:28.6207124	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3849\r\nCourse: \r\nCourseId: 1367\r\nCourseOrMajor: \r\nDateFrom: 2022\r\nDateTo: 2025\r\nEducationalAttainment: 33 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
773863	2025-03-21	07:54:28.6281008	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3849\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CEPRIANO\r\nFullName: CEPRIANO CABATAY MAGPANTAY\r\nGender: Male\r\nLastName: MAGPANTAY\r\nMaidenName: \r\nMiddleName: CABATAY\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773864	2025-03-21	07:54:28.6322891	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3849\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LILIWA\r\nFullName: LILIWA ANDAYA SABADO\r\nGender: Male\r\nLastName: SABADO\r\nMaidenName: \r\nMiddleName: ANDAYA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773865	2025-03-21	07:54:28.6418808	<Undetected>	Update	BasicInformationId: 3849\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3646\r\n	BasicInformationId: 3849\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3646\r\n	admin	Questionnaires	1
773866	2025-03-21	07:55:04.4689830	<Undetected>	Update	BasicInformationId: 3849\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4209\r\nExtensionName: \r\nFirstName: CEPRIANO\r\nFullName: CEPRIANO CABATAY MAGPANTAY\r\nGender: Male\r\nLastName: MAGPANTAY\r\nMaidenName: \r\nMiddleName: CABATAY\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3849\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4209\r\nExtensionName: \r\nFirstName: CEPRIANO\r\nFullName: CEPRIANO MAGPANTAY\r\nGender: Male\r\nLastName: MAGPANTAY\r\nMaidenName: \r\nMiddleName: CABATAY\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773867	2025-03-21	07:55:04.4739828	<Undetected>	Update	BasicInformationId: 3849\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4210\r\nExtensionName: \r\nFirstName: LILIWA\r\nFullName: LILIWA ANDAYA SABADO\r\nGender: Male\r\nLastName: SABADO\r\nMaidenName: \r\nMiddleName: ANDAYA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3849\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4210\r\nExtensionName: \r\nFirstName: LILIWA\r\nFullName: LILIWA SABADO MAGPANTAY\r\nGender: Male\r\nLastName: MAGPANTAY\r\nMaidenName: ANDAYA\r\nMiddleName: SABADO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773868	2025-03-21	07:56:30.0628070	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: TABANGAO DAO\r\nBasicInformationId: 3849\r\nBirthDate: November 17, 1998\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: magpantaylicyzl17@gmail.com\r\nExtensionName: \r\nFirstName: LICYZL\r\nFullName: LICYZL S. MAGPANTAY\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MAGPANTAY\r\nMaidenName: \r\nMiddleName: SABADO\r\nMobileNumber: 09550557701\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: TABANGAO DAO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 45\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: TABANGAO DAO\r\nBasicInformationId: 3849\r\nBirthDate: November 17, 1998\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: magpantaylicyzl17@gmail.com\r\nExtensionName: \r\nFirstName: LICYZL\r\nFullName: LICYZL S. MAGPANTAY\r\nGender: Female\r\nGovernmentIdIssuedDate: December 20, 2019\r\nGovernmentIdNumber: 1815553\r\nGovernmentIdPlaceIssued: PRC LUCENA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02006122590\r\nHDMF: 1212-5254-6495\r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MAGPANTAY\r\nMaidenName: \r\nMiddleName: SABADO\r\nMobileNumber: 09550557701\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: TABANGAO DAO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-250169793-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-4202707-8\r\nStreetName: \r\nTIN: 749-293-482-0000\r\nWeight: 45\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773869	2025-03-21	07:56:30.0669921	<Undetected>	Update	BasicInformationId: 3849\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4210\r\nExtensionName: \r\nFirstName: LILIWA\r\nFullName: LILIWA SABADO MAGPANTAY\r\nGender: Male\r\nLastName: MAGPANTAY\r\nMaidenName: ANDAYA\r\nMiddleName: SABADO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3849\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4210\r\nExtensionName: \r\nFirstName: LILIWA\r\nFullName: LILIWA MAGPANTAY\r\nGender: Male\r\nLastName: MAGPANTAY\r\nMaidenName: \r\nMiddleName: SABADO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773870	2025-03-21	07:58:10.7873494	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3849\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES, SORO-SORO ILAYA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09055132951\r\nExtensionName: \r\nFirstName: NIEVES\r\nLastName: MONTALBO\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773871	2025-03-21	07:58:10.7913492	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3849\r\nCharacterReferenceId: 0\r\nCompanyAddress: ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09086231854\r\nExtensionName: \r\nFirstName: MELODY\r\nLastName: FABILA\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773872	2025-03-21	07:58:10.7987064	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3849\r\nCharacterReferenceId: 0\r\nCompanyAddress: ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09984390676\r\nExtensionName: \r\nFirstName: ANTHONY\r\nLastName: LOPEZ\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773873	2025-03-21	08:02:06.0750520	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NEAP-MASTERCLASS RECONCEPTUALIZING TEACHER IDEOLOGY IN MULTILINGUAL ENGLISH LANGUAGE CLASSROOM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773874	2025-03-21	08:05:06.8715270	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPACITY BUILDING FOR GRADES 4-6 TEACHERS ON THE END OF SCHOOL YEAR BREAK ACTIVITIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773875	2025-03-21	08:07:00.7420473	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3849\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPED CENTRAL\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16671\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773876	2025-03-21	08:07:00.7481003	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3849\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPED CENTRAL\r\nStatus: \r\nToDate: November 28, 2024\r\nTrainingId: 16482\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773877	2025-03-21	08:07:00.7522934	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3849\r\nEmployeeTrainingId: 0\r\nFromDate: November 18, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 20, 2024\r\nTrainingId: 16672\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773878	2025-03-21	08:07:00.7573118	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3849\r\nEmployeeTrainingId: 0\r\nFromDate: August 21, 2024\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 24, 2024\r\nTrainingId: 16559\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773879	2025-03-21	08:07:00.7613180	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3849\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16422\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773880	2025-03-21	08:07:00.7663983	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3849\r\nDateOfExamination: September 29, 2019\r\nDateOfRelease: November 17, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 29, 2019\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1815553\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 83.6\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
773881	2025-03-21	08:48:45.6611445	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3849\r\nSkillId: 0\r\nSkillName: COMMUNICATION SKILLS\r\n	admin	Skills	1
773882	2025-03-21	08:48:45.6653237	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3849\r\nSkillId: 0\r\nSkillName: ACTIVE LISTENING\r\n	admin	Skills	1
773883	2025-03-21	08:48:45.6705645	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3849\r\nSkillId: 0\r\nSkillName: CREATIVITY\r\n	admin	Skills	1
773884	2025-03-21	08:48:45.6800136	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3849\r\nSkillId: 0\r\nSkillName: ACCURACY AND ATTENTION TO DETAILS\r\n	admin	Skills	1
773885	2025-03-21	08:48:45.6841986	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3849\r\nSkillId: 0\r\nSkillName: POSITIVE ATTRIBUTE\r\n	admin	Skills	1
773886	2025-03-21	08:51:51.4332543	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3849\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,024.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
773887	2025-03-21	08:51:51.4405927	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3849\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
773888	2025-03-21	08:51:51.4448409	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3849\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 17, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
773889	2025-03-21	08:51:51.4532176	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3849\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 12, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,439.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: October 11, 2022\r\n	admin	Experiences	1
773890	2025-03-21	08:51:51.4573619	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3849\r\nCompanyInstitution: ST. THERESE OF THE CHILD JESUS MULTIPLE INTELLIGENCE SCHOOL\r\nExperienceId: 0\r\nFromDate: June 10, 2019\r\nIsGovernmentService: False\r\nMonthlySalary: 10,000.00\r\nPositionHeld: TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: May 31, 2022\r\n	admin	Experiences	1
773891	2025-03-21	09:01:45.6391809	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN AGAPITO, ISLA VERDE\r\nBasicInformationId: 0\r\nBirthDate: October 21, 1971\r\nBirthPlace: SAN AGAPITO, ISLA VERDE, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: corazon.almazan001@deped.gov.ph\r\nExtensionName: \r\nFirstName: CORAZON\r\nFullName: CORAZON E. ALMAZAN\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.41\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALMAZAN\r\nMaidenName: \r\nMiddleName: EBORA\r\nMobileNumber: 09605572148\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773892	2025-03-21	09:01:45.7609442	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3856\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
773893	2025-03-21	09:07:59.1613201	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN AGAPITO, ISLA VERDE\r\nBasicInformationId: 0\r\nBirthDate: December 02, 1999\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: joanna.rayos@deped.gov.ph\r\nExtensionName: \r\nFirstName: JOANNA\r\nFullName: JOANNA T. RAYOS\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: TIPOSO\r\nMobileNumber: 09155037593\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN AGAPITO, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: CACAWAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: CACAWAN\r\nTIN: \r\nWeight: 43\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773894	2025-03-21	09:07:59.1756111	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3857\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
773895	2025-03-21	09:09:09.0059462	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: VILLA GUAPO\r\nBarangay: BANABA CENTER\r\nBasicInformationId: 0\r\nBirthDate: July 16, 1969\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lorna.lacsamana@deped.gov.ph\r\nExtensionName: \r\nFirstName: LORNA\r\nFullName: LORNA C. LACSAMANA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0434025293\r\nLastName: LACSAMANA\r\nMaidenName: \r\nMiddleName: CULLA\r\nMobileNumber: 09668541714\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: VILLA GUAPO\r\nPermanentBarangay: BANABA CENTER\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 150\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773896	2025-03-21	09:09:09.1150981	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3858\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1976\r\nDateTo: 1982\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BANABA WEST ELEMENTARY SCHOOL\r\nYearGraduated: 1982\r\n	admin	EducationalBackgrounds	1
773897	2025-03-21	09:09:09.1150981	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3858\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1982\r\nDateTo: 1986\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1986\r\n	admin	EducationalBackgrounds	1
773898	2025-03-21	09:09:09.1150981	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3858\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1986\r\nDateTo: 1990\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 1990\r\n	admin	EducationalBackgrounds	1
773899	2025-03-21	09:09:09.1150981	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3858\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 1998\r\nEducationalAttainment: 45 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
773900	2025-03-21	09:09:09.1150981	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3858\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROBERTO\r\nFullName: ROBERTO AGUBA LACSAMANA\r\nGender: Male\r\nLastName: LACSAMANA\r\nMaidenName: \r\nMiddleName: AGUBA\r\nOccupation: TRICYCLE DRIVER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
773901	2025-03-21	09:09:09.1150981	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3858\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DAMASO\r\nFullName: DAMASO AGUDA CULLA\r\nGender: Male\r\nLastName: CULLA\r\nMaidenName: \r\nMiddleName: AGUDA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773902	2025-03-21	09:09:09.1150981	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3858\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOSEFINA\r\nFullName: JOSEFINA DELA ROCA MAGADIA\r\nGender: Female\r\nLastName: MAGADIA\r\nMaidenName: \r\nMiddleName: DELA ROCA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773903	2025-03-21	09:09:09.1160978	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3858\r\nDateOfExamination: October 25, 1992\r\nDateOfRelease: July 16, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: October 25, 1992\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0015603\r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 72.92\r\nTitle: PROFESSIONAL BOARD EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
773904	2025-03-21	09:09:09.1160978	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3858\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
773905	2025-03-21	09:10:32.8384858	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 0028\r\nAddress2: PUROK 1\r\nBarangay: KUMINTANG ILAYA\r\nBasicInformationId: 0\r\nBirthDate: October 22, 1995\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: crisilda.fondevilla@deped.gov.ph\r\nExtensionName: \r\nFirstName: CRISILDA\r\nFullName: CRISILDA B. FONDEVILLA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.46\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: FONDEVILLA\r\nMaidenName: \r\nMiddleName: BULAWIN\r\nMobileNumber: 09686229841\r\nNationality: Filipino\r\nPermanentAddress1: 0028\r\nPermanentAddress2: PUROK 1\r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: MERALCO SITE\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: MERALCO SITE\r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773906	2025-03-21	09:10:32.8495910	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3859\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
773907	2025-03-21	09:15:26.4284150	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3856\r\nBirthDate: November 22, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PAULA KATRINA\r\nFullName: PAULA KATRINA EBORA ALMAZAN\r\nGender: Male\r\nLastName: ALMAZAN\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773908	2025-03-21	09:15:26.4394961	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3856\r\nBirthDate: November 28, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALYSSA EULLINE\r\nFullName: ALYSSA EULLINE EBORA ALMAZAN\r\nGender: Male\r\nLastName: ALMAZAN\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773909	2025-03-21	09:15:26.4445125	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3856\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09995446919\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EDILBERTO\r\nFullName: EDILBERTO MANONGSONG ALMAZAN\r\nGender: Male\r\nLastName: ALMAZAN\r\nMaidenName: \r\nMiddleName: MANONGSONG\r\nOccupation: LIFEGUARD\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
773910	2025-03-21	09:15:26.4485247	<Undetected>	Update	BasicInformationId: 3856\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3653\r\n	BasicInformationId: 3856\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3653\r\n	admin	Questionnaires	1
773911	2025-03-21	09:18:01.3381039	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: FIRST HONORS\r\nBasicInformationId: 3856\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1978\r\nDateTo: 1984\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGAPITO ELEMENTARY SCHOOL\r\nYearGraduated: 1984\r\n	admin	EducationalBackgrounds	1
773912	2025-03-21	09:18:01.3634930	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3856\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1984\r\nDateTo: 1988\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1988\r\n	admin	EducationalBackgrounds	1
773913	2025-03-21	09:18:01.3687197	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3856\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1988\r\nDateTo: 1992\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGE\r\nYearGraduated: 1992\r\n	admin	EducationalBackgrounds	1
773914	2025-03-21	09:18:01.3730672	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3856\r\nCourse: \r\nCourseId: 1284\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 1999\r\nEducationalAttainment: 45 UNITS WITH CAR\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
773915	2025-03-21	09:18:01.3814680	<Undetected>	Update	BasicInformationId: 3856\r\nBirthDate: November 22, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4214\r\nExtensionName: \r\nFirstName: PAULA KATRINA\r\nFullName: PAULA KATRINA EBORA ALMAZAN\r\nGender: Male\r\nLastName: ALMAZAN\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3856\r\nBirthDate: November 22, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4214\r\nExtensionName: \r\nFirstName: PAULA KATRINA\r\nFullName: PAULA KATRINA ALMAZAN\r\nGender: Male\r\nLastName: ALMAZAN\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774030	2025-03-21	10:23:41.9679765	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: THIRD HONOR\r\nBasicInformationId: 3857\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2006\r\nDateTo: 2012\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: PARANG ELEMENTARY SCHOOL\r\nYearGraduated: 2012\r\n	admin	EducationalBackgrounds	1
773916	2025-03-21	09:18:01.3865050	<Undetected>	Update	BasicInformationId: 3856\r\nBirthDate: November 28, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4215\r\nExtensionName: \r\nFirstName: ALYSSA EULLINE\r\nFullName: ALYSSA EULLINE EBORA ALMAZAN\r\nGender: Male\r\nLastName: ALMAZAN\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3856\r\nBirthDate: November 28, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4215\r\nExtensionName: \r\nFirstName: ALYSSA EULLINE\r\nFullName: ALYSSA EULLINE ALMAZAN\r\nGender: Male\r\nLastName: ALMAZAN\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
773917	2025-03-21	09:18:01.3915128	<Undetected>	Update	BasicInformationId: 3856\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09995446919\r\nEmployeeRelativeId: 4216\r\nExtensionName: \r\nFirstName: EDILBERTO\r\nFullName: EDILBERTO MANONGSONG ALMAZAN\r\nGender: Male\r\nLastName: ALMAZAN\r\nMaidenName: \r\nMiddleName: MANONGSONG\r\nOccupation: LIFEGUARD\r\nRelationship: Husband\r\n	BasicInformationId: 3856\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09995446919\r\nEmployeeRelativeId: 4216\r\nExtensionName: \r\nFirstName: EDILBERTO\r\nFullName: EDILBERTO ALMAZAN\r\nGender: Male\r\nLastName: ALMAZAN\r\nMaidenName: \r\nMiddleName: MANONGSONG\r\nOccupation: LIFEGUARD\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
773918	2025-03-21	09:32:55.6641845	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN AGAPITO, ISLA VERDE\r\nBasicInformationId: 3856\r\nBirthDate: October 21, 1971\r\nBirthPlace: SAN AGAPITO, ISLA VERDE, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: corazon.almazan001@deped.gov.ph\r\nExtensionName: \r\nFirstName: CORAZON\r\nFullName: CORAZON E. ALMAZAN\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.41\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALMAZAN\r\nMaidenName: \r\nMiddleName: EBORA\r\nMobileNumber: 09605572148\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN AGAPITO, ISLA VERDE\r\nBasicInformationId: 3856\r\nBirthDate: October 21, 1971\r\nBirthPlace: SAN AGAPITO, ISLA VERDE, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: corazon.almazan001@deped.gov.ph\r\nExtensionName: \r\nFirstName: CORAZON\r\nFullName: CORAZON E. ALMAZAN\r\nGender: Male\r\nGovernmentIdIssuedDate: January 16, 1997\r\nGovernmentIdNumber: 0026774\r\nGovernmentIdPlaceIssued: BATANGAS CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: 02002927948\r\nHDMF: 1490-0085-1348\r\nHeight: 1.41\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALMAZAN\r\nMaidenName: \r\nMiddleName: EBORA\r\nMobileNumber: 09605572148\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: 09-000021634-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 177-623-721-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
773919	2025-03-21	09:34:06.1642906	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3856\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09308228548\r\nExtensionName: \r\nFirstName: ROMMEL\r\nLastName: EBORA\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773920	2025-03-21	09:34:06.1762906	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3856\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09745854670\r\nExtensionName: \r\nFirstName: RIZA\r\nLastName: EBORA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773921	2025-03-21	09:34:06.1963976	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3856\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09369173831\r\nExtensionName: \r\nFirstName: LORNA\r\nLastName: FACTOR\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
773922	2025-03-21	09:35:12.8906767	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3856\r\nDateOfExamination: October 25, 1992\r\nDateOfRelease: October 21, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: October 25, 1992\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0026774\r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 72.92\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
773923	2025-03-21	09:51:27.6656580	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3858\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 19, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 54,572.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-7\r\nStatus: Permanent\r\nToDate: March 21, 2025\r\n	admin	Experiences	1
773924	2025-03-21	09:51:27.6696736	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3858\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 54,010.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-6\r\nStatus: Permanent\r\nToDate: February 18, 2025\r\n	admin	Experiences	1
773947	2025-03-21	09:52:48.9933521	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 26,354.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-7\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
773925	2025-03-21	09:51:27.6757656	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3858\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 51,721.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-6\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
773926	2025-03-21	09:51:27.6797896	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3858\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 49,305.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-6\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
773927	2025-03-21	09:51:27.6848050	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3858\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 19, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 47,783.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-6\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
773928	2025-03-21	09:51:27.6898216	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3858\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 47,254.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-6\r\nStatus: Permanent\r\nToDate: February 18, 2022\r\n	admin	Experiences	1
773929	2025-03-21	09:51:27.6948550	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3858\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 45,732.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-5\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
773930	2025-03-21	09:51:27.6988683	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3858\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 44,210.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-5\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
773931	2025-03-21	09:51:27.7038850	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3858\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 19, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 42,688.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-5\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
773932	2025-03-21	09:51:27.7079082	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3858\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 42,165.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-4\r\nStatus: Permanent\r\nToDate: February 18, 2019\r\n	admin	Experiences	1
773933	2025-03-21	09:51:27.7129235	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3858\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 39,477.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-4\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
773934	2025-03-21	09:51:27.7179483	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3858\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 36,960.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-4\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
773935	2025-03-21	09:51:27.7229653	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3858\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 19, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 34,603.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-4\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
773936	2025-03-21	09:51:27.7269968	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3858\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 34,215.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-3\r\nStatus: Permanent\r\nToDate: February 18, 2016\r\n	admin	Experiences	1
773937	2025-03-21	09:51:27.7320128	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3858\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 19, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 32,044.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-3\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
773938	2025-03-21	09:51:27.7370297	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3858\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 31,696.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-2\r\nStatus: Permanent\r\nToDate: February 18, 2013\r\n	admin	Experiences	1
773939	2025-03-21	09:51:27.7420560	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3858\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 28,684.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-2\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
773940	2025-03-21	09:51:27.7460689	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3858\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 25,671.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-2\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
773941	2025-03-21	09:51:27.7514225	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3858\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 19, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 22,696.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-2\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
773942	2025-03-21	09:51:27.7554346	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3858\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 22,214.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 18-1\r\nStatus: Permanent\r\nToDate: February 18, 2010\r\n	admin	Experiences	1
773943	2025-03-21	09:51:27.7614799	<Undetected>	Update	BasicInformationId: 3858\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4211\r\nExtensionName: \r\nFirstName: ROBERTO\r\nFullName: ROBERTO AGUBA LACSAMANA\r\nGender: Male\r\nLastName: LACSAMANA\r\nMaidenName: \r\nMiddleName: AGUBA\r\nOccupation: TRICYCLE DRIVER\r\nRelationship: Husband\r\n	BasicInformationId: 3858\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4211\r\nExtensionName: \r\nFirstName: ROBERTO\r\nFullName: ROBERTO LACSAMANA\r\nGender: Male\r\nLastName: LACSAMANA\r\nMaidenName: \r\nMiddleName: AGUBA\r\nOccupation: TRICYCLE DRIVER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
773944	2025-03-21	09:51:27.7654943	<Undetected>	Update	BasicInformationId: 3858\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4212\r\nExtensionName: \r\nFirstName: DAMASO\r\nFullName: DAMASO AGUDA CULLA\r\nGender: Male\r\nLastName: CULLA\r\nMaidenName: \r\nMiddleName: AGUDA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3858\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4212\r\nExtensionName: \r\nFirstName: DAMASO\r\nFullName: DAMASO CULLA\r\nGender: Male\r\nLastName: CULLA\r\nMaidenName: \r\nMiddleName: AGUDA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
773945	2025-03-21	09:51:27.7705217	<Undetected>	Update	BasicInformationId: 3858\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4213\r\nExtensionName: \r\nFirstName: JOSEFINA\r\nFullName: JOSEFINA DELA ROCA MAGADIA\r\nGender: Female\r\nLastName: MAGADIA\r\nMaidenName: \r\nMiddleName: DELA ROCA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3858\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4213\r\nExtensionName: \r\nFirstName: JOSEFINA\r\nFullName: JOSEFINA MAGADIA\r\nGender: Female\r\nLastName: MAGADIA\r\nMaidenName: \r\nMiddleName: DELA ROCA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
773946	2025-03-21	09:51:27.7755629	<Undetected>	Update	BasicInformationId: 3858\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3655\r\n	BasicInformationId: 3858\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3655\r\n	admin	Questionnaires	1
774499	2025-03-21	15:45:05.9925411	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TERTIARY EDUCATORS SKILL-BUILDING ON TEST CONSTRUCTION (TEST) KAPWA SERVICES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773948	2025-03-21	10:00:01.1767602	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3858\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 17,059.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
773949	2025-03-21	10:00:01.1817948	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3858\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 15,508.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
773950	2025-03-21	10:00:01.1868105	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3858\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 19, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 14,098.00\r\nPositionHeld: MASTER TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
773951	2025-03-21	10:00:01.1920229	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3858\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 11,733.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: February 18, 2007\r\n	admin	Experiences	1
773952	2025-03-21	10:00:01.1960547	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3858\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 11,446.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: December 31, 2005\r\n	admin	Experiences	1
773953	2025-03-21	10:00:01.2010711	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3858\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 11,167.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2004\r\n	admin	Experiences	1
773954	2025-03-21	10:00:01.2061007	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3858\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 10,635.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
773955	2025-03-21	10:00:01.2112699	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3858\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: March 08, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 9,668.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
773956	2025-03-21	10:00:01.2154034	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3858\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: November 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: March 07, 1999\r\n	admin	Experiences	1
773957	2025-03-21	10:00:01.2204193	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3858\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 7,309.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1997\r\n	admin	Experiences	1
773958	2025-03-21	10:00:01.2254357	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3858\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 4,902.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1995\r\n	admin	Experiences	1
773959	2025-03-21	10:00:01.2329972	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3858\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 06, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 3,902.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-1\r\nStatus: Permanent\r\nToDate: December 31, 1994\r\n	admin	Experiences	1
773960	2025-03-21	10:02:19.6553043	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: LEARNING DELIVERY MODALITIES (LDM1) COURSE FOR LAC LEADERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773961	2025-03-21	10:05:51.5132058	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING FOR MASTER TEACHERS AND KEY TEACHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
773998	2025-03-21	10:11:59.9142702	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3858\r\nEmployeeTrainingId: 0\r\nFromDate: September 30, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 30, 2024\r\nTrainingId: 16655\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773999	2025-03-21	10:11:59.9196244	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3858\r\nEmployeeTrainingId: 0\r\nFromDate: April 01, 2022\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - REGION IV-A\r\nStatus: \r\nToDate: April 05, 2022\r\nTrainingId: 16673\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774000	2025-03-21	10:11:59.9246415	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3858\r\nEmployeeTrainingId: 0\r\nFromDate: November 04, 2021\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 04, 2021\r\nTrainingId: 15598\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774001	2025-03-21	10:11:59.9296469	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3858\r\nEmployeeTrainingId: 0\r\nFromDate: October 05, 2021\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - REGION IV-A\r\nStatus: \r\nToDate: October 08, 2021\r\nTrainingId: 15883\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774002	2025-03-21	10:11:59.9336466	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3858\r\nEmployeeTrainingId: 0\r\nFromDate: July 21, 2021\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 27, 2021\r\nTrainingId: 16674\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774005	2025-03-21	10:12:58.8146914	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3858\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
774006	2025-03-21	10:12:58.8221070	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3858\r\nSkillId: 0\r\nSkillName: GARDENING\r\n	admin	Skills	1
774007	2025-03-21	10:12:58.8370098	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3858\r\nRecognitionId: 0\r\nRecognitionName: BOY SCOUT OF THE PHILIPPINES BRONZE SERVICE AWARD\r\n	admin	Recognitions	1
774008	2025-03-21	10:12:58.8411923	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3858\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY PUBLIC SCHOOL TEACHERS ASSOCIATION\r\n	admin	Organizations	1
774017	2025-03-21	10:16:18.4484089	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3858\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES, SOROSORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09089915567\r\nExtensionName: \r\nFirstName: EPITACIA\r\nLastName: CULLERA\r\nMiddleName: C.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774018	2025-03-21	10:16:18.4534088	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3858\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAMPAGA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09171600146\r\nExtensionName: \r\nFirstName: ROWENA \r\nLastName: ASI\r\nMiddleName: T.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774019	2025-03-21	10:16:18.4614088	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3858\r\nCharacterReferenceId: 0\r\nCompanyAddress: ARRIETA ROAD, BARANGAY 20, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09338162523\r\nExtensionName: \r\nFirstName: JAZMIN\r\nLastName: CRELENCIA\r\nMiddleName: M.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774028	2025-03-21	10:21:52.7180807	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3857\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FELICIDAD\r\nFullName: FELICIDAD TIPOSO RAYOS\r\nGender: Male\r\nLastName: RAYOS\r\nMaidenName: LUPO\r\nMiddleName: TIPOSO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774029	2025-03-21	10:21:52.7291466	<Undetected>	Update	BasicInformationId: 3857\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3654\r\n	BasicInformationId: 3857\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3654\r\n	admin	Questionnaires	1
773962	2025-03-21	10:06:04.9160562	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 16, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 33,254.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-7\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
773963	2025-03-21	10:06:04.9210735	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 31,732.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-6\r\nStatus: Permanent\r\nToDate: July 14, 2024\r\n	admin	Experiences	1
773964	2025-03-21	10:06:04.9262238	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 30,210.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-6\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
773965	2025-03-21	10:06:04.9312413	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,878.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-6\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
773966	2025-03-21	10:06:04.9362489	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 15, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 31,732.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-6\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
773967	2025-03-21	10:06:04.9412806	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 30,210.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: July 14, 2021\r\n	admin	Experiences	1
773968	2025-03-21	10:06:04.9452867	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 19,878.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
773969	2025-03-21	10:06:04.9502943	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 28,356.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
773970	2025-03-21	10:06:04.9543363	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 15, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 26,834.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
773971	2025-03-21	10:06:04.9596022	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 25,686.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: January 14, 2018\r\n	admin	Experiences	1
773972	2025-03-21	10:06:04.9646096	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 25,387.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
773973	2025-03-21	10:06:04.9696632	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 24,315.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
773974	2025-03-21	10:06:04.9736693	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 15, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 23,289.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
773975	2025-03-21	10:06:04.9786767	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 16, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 223,006.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: July 14, 2015\r\n	admin	Experiences	1
773976	2025-03-21	10:06:04.9826831	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 22,086.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: July 15, 2012\r\n	admin	Experiences	1
773977	2025-03-21	10:06:04.9877139	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 21,867.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
773978	2025-03-21	10:06:04.9927294	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 20,162.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
773979	2025-03-21	10:06:04.9977367	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 16, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 18,457.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
773980	2025-03-21	10:06:05.0018321	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 16,753.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: July 15, 2009\r\n	admin	Experiences	1
773981	2025-03-21	10:06:05.0068396	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 16,424.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
773982	2025-03-21	10:06:05.0118473	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 13,852.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
773983	2025-03-21	10:06:05.0169263	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 16, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 12,591.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
773984	2025-03-21	10:06:05.0209505	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 15, 2003\r\nIsGovernmentService: True\r\nMonthlySalary: 11,446.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: July 15, 2006\r\n	admin	Experiences	1
773985	2025-03-21	10:06:05.0269698	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 11,167.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: July 14, 2003\r\n	admin	Experiences	1
773986	2025-03-21	10:06:05.0309689	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 29, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 10,535.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
773987	2025-03-21	10:06:05.0361722	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 10,033.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: November 28, 2000\r\n	admin	Experiences	1
773988	2025-03-21	10:06:05.0411887	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
773989	2025-03-21	10:06:05.0462061	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1998\r\n	admin	Experiences	1
773990	2025-03-21	10:06:05.0513461	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: December 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1997\r\n	admin	Experiences	1
773991	2025-03-21	10:06:05.0553589	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: October 31, 1997\r\n	admin	Experiences	1
773992	2025-03-21	10:06:05.0603748	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 6,013.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1996\r\n	admin	Experiences	1
773993	2025-03-21	10:06:05.0654994	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 4,902.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1995\r\n	admin	Experiences	1
773994	2025-03-21	10:06:05.0705157	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 06, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 3,902.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1994\r\n	admin	Experiences	1
773995	2025-03-21	10:10:01.0755329	<Undetected>	Update	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 13553\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 26,354.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-7\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 13553\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 36,354.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-7\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
773996	2025-03-21	10:10:01.0796714	<Undetected>	Update	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 13572\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 19,878.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 13572\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 29,878.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
774107	2025-03-21	11:25:04.7529559	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3859\r\nEmployeeTrainingId: 0\r\nFromDate: August 21, 2024\r\nHours: 36\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 24, 2024\r\nTrainingId: 16617\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
773997	2025-03-21	10:10:01.0899892	<Undetected>	Update	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 13579\r\nFromDate: July 16, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 223,006.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: July 14, 2015\r\n	BasicInformationId: 3856\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 13579\r\nFromDate: July 16, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 22,306.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: July 14, 2015\r\n	admin	Experiences	1
774003	2025-03-21	10:12:20.8468436	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPACITY BUILDING OF SCIENCE, MATHEMATICS, ADN ENGLISH (SME) GRADES 4-6 TEACHERS ON THE IMPLEMENTATION OF END OF SCHOOL BREAK ACTIVITIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774004	2025-03-21	10:13:02.9104971	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPACITY BUILDING OF SCIENCE, MATHEMATICS, ANS ENGLISH (SME) GRADES 4-6 TEACHERS ON THE IMPLEMENTATION OF END OF SCHOOL BREAK ACTIVITIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774009	2025-03-21	10:13:21.7259788	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPACITY BUILDING OF SCIENCE, MATHEMATICS, AND ENGLISH (SME) GRADES 4-6 TEACHERS ON THE IMPLEMENTATION OF END OF SCHOOL BREAK ACTIVITIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774010	2025-03-21	10:14:36.7347450	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT FIELD ADVISER AND TROOP LEADERS' GATHERING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774011	2025-03-21	10:15:39.2919890	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3856\r\nEmployeeTrainingId: 0\r\nFromDate: February 13, 2025\r\nHours: 4\r\nNatureOfParticipation: \r\nSponsoringAgency: SAN AGAPITO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: February 13, 2025\r\nTrainingId: 16508\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774012	2025-03-21	10:15:39.2971346	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3856\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16457\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774013	2025-03-21	10:15:39.3011493	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3856\r\nEmployeeTrainingId: 0\r\nFromDate: November 18, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 20, 2024\r\nTrainingId: 16677\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774014	2025-03-21	10:15:39.3072672	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3856\r\nEmployeeTrainingId: 0\r\nFromDate: September 14, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 14, 2024\r\nTrainingId: 16678\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774015	2025-03-21	10:15:39.3114496	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3856\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16470\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774016	2025-03-21	10:15:55.8663581	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN AGAPITO, ISLA VERDE\r\nBasicInformationId: 3856\r\nBirthDate: October 21, 1971\r\nBirthPlace: SAN AGAPITO, ISLA VERDE, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: corazon.almazan001@deped.gov.ph\r\nExtensionName: \r\nFirstName: CORAZON\r\nFullName: CORAZON E. ALMAZAN\r\nGender: Male\r\nGovernmentIdIssuedDate: January 16, 1997\r\nGovernmentIdNumber: 0026774\r\nGovernmentIdPlaceIssued: BATANGAS CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: 02002927948\r\nHDMF: 1490-0085-1348\r\nHeight: 1.41\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALMAZAN\r\nMaidenName: \r\nMiddleName: EBORA\r\nMobileNumber: 09605572148\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: 09-000021634-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 177-623-721-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN AGAPITO, ISLA VERDE\r\nBasicInformationId: 3856\r\nBirthDate: October 21, 1971\r\nBirthPlace: SAN AGAPITO, ISLA VERDE, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: corazon.almazan001@deped.gov.ph\r\nExtensionName: \r\nFirstName: CORAZON\r\nFullName: CORAZON E. ALMAZAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 16, 1997\r\nGovernmentIdNumber: 0026774\r\nGovernmentIdPlaceIssued: BATANGAS CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: 02002927948\r\nHDMF: 1490-0085-1348\r\nHeight: 1.41\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALMAZAN\r\nMaidenName: \r\nMiddleName: EBORA\r\nMobileNumber: 09605572148\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: 09-000021634-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 177-623-721-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774027	2025-03-21	10:21:52.7130730	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3857\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DIOSDADO\r\nFullName: DIOSDADO GAREJO RAYOS\r\nGender: Male\r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: GAREJO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774917	2025-03-24	13:11:38.9875383	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: iLEARN, iCREATE, iSHARE DIGITAL CAPABILITIES: EMPOWERING EDUCATORS FOR 21st CENTURY LEARNING\r\nTrainingId: 0\r\nType: \r\n	admin	Trainings	1
774020	2025-03-21	10:16:18.4664092	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: VILLA GUAPO\r\nBarangay: BANABA CENTER\r\nBasicInformationId: 3858\r\nBirthDate: July 16, 1969\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lorna.lacsamana@deped.gov.ph\r\nExtensionName: \r\nFirstName: LORNA\r\nFullName: LORNA C. LACSAMANA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0434025293\r\nLastName: LACSAMANA\r\nMaidenName: \r\nMiddleName: CULLA\r\nMobileNumber: 09668541714\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: VILLA GUAPO\r\nPermanentBarangay: BANABA CENTER\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 150\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: VILLA GUAPO\r\nBarangay: BANABA CENTER\r\nBasicInformationId: 3858\r\nBirthDate: July 16, 1969\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lorna.lacsamana@deped.gov.ph\r\nExtensionName: \r\nFirstName: LORNA\r\nFullName: LORNA C. LACSAMANA\r\nGender: Female\r\nGovernmentIdIssuedDate: December 27, 1996\r\nGovernmentIdNumber: 0015603\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02003004259\r\nHDMF: 1490-0084-5631\r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0434025293\r\nLastName: LACSAMANA\r\nMaidenName: \r\nMiddleName: CULLA\r\nMobileNumber: 09668541714\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: VILLA GUAPO\r\nPermanentBarangay: BANABA CENTER\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000007323-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 177-622-502-0000\r\nWeight: 150\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774021	2025-03-21	10:21:39.9023166	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANDRES, ISLA VERDE\r\nBasicInformationId: 0\r\nBirthDate: December 30, 1981\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: aileen.breton@deped.gov.ph\r\nExtensionName: \r\nFirstName: AILEEN\r\nFullName: AILEEN DC. BRETON\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BRETON\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nMobileNumber: 09815405570\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANDRES, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 52\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774022	2025-03-21	10:21:39.9486198	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3860\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RYAN\r\nFullName: RYAN ESCAREZ BRETON\r\nGender: Male\r\nLastName: BRETON\r\nMaidenName: \r\nMiddleName: ESCAREZ\r\nOccupation: STRUCTURAL FITTER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
774023	2025-03-21	10:21:39.9486198	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3860\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: BUENAVENTURA\r\nFullName: BUENAVENTURA CLAVERIA DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: CLAVERIA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774024	2025-03-21	10:21:39.9496269	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3860\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: TEODORA\r\nFullName: TEODORA AREVALO HERNANDEZ\r\nGender: Female\r\nLastName: HERNANDEZ\r\nMaidenName: \r\nMiddleName: AREVALO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774025	2025-03-21	10:21:39.9496269	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3860\r\nBirthDate: January 15, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SHEIM AIRA\r\nFullName: SHEIM AIRA BRETON\r\nGender: Female\r\nLastName: BRETON\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774026	2025-03-21	10:21:39.9496269	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3860\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
774036	2025-03-21	10:25:45.7913103	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3860\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1988\r\nDateTo: 1995\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS CITY SOUTH ELEMENTARY SCHOOL\r\nYearGraduated: 1995\r\n	admin	EducationalBackgrounds	1
774037	2025-03-21	10:25:45.7963101	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3860\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1995\r\nDateTo: 1999\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1999\r\n	admin	EducationalBackgrounds	1
775005	2025-03-24	14:23:09.0514562	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3883\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
774031	2025-03-21	10:23:41.9790814	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: WITH HONORS\r\nBasicInformationId: 3857\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2016\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SOVEREIGN SHEPHERD SCHOOL OF VALUES AND LEARNING\r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
774032	2025-03-21	10:23:41.9831011	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: WITH DISTINCTIONS\r\nBasicInformationId: 3857\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 2018\r\nDateTo: 2022\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: COLEGIO NG LUNGSOD NG BATANGAS\r\nYearGraduated: 2022\r\n	admin	EducationalBackgrounds	1
774033	2025-03-21	10:23:41.9945439	<Undetected>	Update	BasicInformationId: 3857\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4221\r\nExtensionName: \r\nFirstName: DIOSDADO\r\nFullName: DIOSDADO GAREJO RAYOS\r\nGender: Male\r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: GAREJO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3857\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4221\r\nExtensionName: \r\nFirstName: DIOSDADO\r\nFullName: DIOSDADO RAYOS\r\nGender: Male\r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: GAREJO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774034	2025-03-21	10:23:42.0064067	<Undetected>	Update	BasicInformationId: 3857\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4222\r\nExtensionName: \r\nFirstName: FELICIDAD\r\nFullName: FELICIDAD TIPOSO RAYOS\r\nGender: Male\r\nLastName: RAYOS\r\nMaidenName: LUPO\r\nMiddleName: TIPOSO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3857\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4222\r\nExtensionName: \r\nFirstName: FELICIDAD\r\nFullName: FELICIDAD RAYOS\r\nGender: Male\r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: TIPOSO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774035	2025-03-21	10:25:51.8156571	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN AGAPITO, ISLA VERDE\r\nBasicInformationId: 3857\r\nBirthDate: December 02, 1999\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: joanna.rayos@deped.gov.ph\r\nExtensionName: \r\nFirstName: JOANNA\r\nFullName: JOANNA T. RAYOS\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: TIPOSO\r\nMobileNumber: 09155037593\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN AGAPITO, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: CACAWAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: CACAWAN\r\nTIN: \r\nWeight: 43\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN AGAPITO, ISLA VERDE\r\nBasicInformationId: 3857\r\nBirthDate: December 02, 1999\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: joanna.rayos@deped.gov.ph\r\nExtensionName: \r\nFirstName: JOANNA\r\nFullName: JOANNA T. RAYOS\r\nGender: Female\r\nGovernmentIdIssuedDate: August 24, 2023\r\nGovernmentIdNumber: 2085870\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC LICENSE\r\nGSIS: 02006515231\r\nHDMF: 1212-2581-9080\r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: TIPOSO\r\nMobileNumber: 09155037593\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN AGAPITO, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: CACAWAN\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-253305528-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: CACAWAN\r\nTIN: 352-677-688-0000\r\nWeight: 43\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774046	2025-03-21	10:27:53.7586495	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3857\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN MIGUEL, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09171887152\r\nExtensionName: \r\nFirstName: VICTORIA \r\nLastName: FABABIER\r\nMiddleName: G\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774047	2025-03-21	10:27:53.7706382	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3857\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09778038773\r\nExtensionName: \r\nFirstName: RIZA\r\nLastName: EBORA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774048	2025-03-21	10:27:53.7833832	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3857\r\nCharacterReferenceId: 0\r\nCompanyAddress: STO. NINO, GALAMAY AMO, SAN JOSE, BATANGAS\r\nCompanyName: \r\nContactNumber: 09399077686\r\nExtensionName: \r\nFirstName: REGINE\r\nLastName: MACARAIG\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774049	2025-03-21	10:28:37.2566749	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3857\r\nDateOfExamination: March 19, 2023\r\nDateOfRelease: December 02, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: March 19, 2023\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 2085870\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 82.8\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
774050	2025-03-21	10:31:05.6219967	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3857\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
774038	2025-03-21	10:25:45.8043098	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3860\r\nCourse: \r\nCourseId: 1270\r\nCourseOrMajor: \r\nDateFrom: 1999\r\nDateTo: 2003\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MAJOR IN SOCIAL STUDIES\r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2003\r\n	admin	EducationalBackgrounds	1
774039	2025-03-21	10:25:45.8093102	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3860\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2019\r\nDateTo: 2023\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: PHILIPPINE COLLEGE OF HEALTH SCIENCES\r\nYearGraduated: 2023\r\n	admin	EducationalBackgrounds	1
774040	2025-03-21	10:25:45.8143098	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3860\r\nDateOfExamination: September 27, 2015\r\nDateOfRelease: December 30, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 27, 2015\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1425587\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 76\r\nTitle: BOARD LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
774041	2025-03-21	10:25:45.8193101	<Undetected>	Update	BasicInformationId: 3860\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4217\r\nExtensionName: \r\nFirstName: RYAN\r\nFullName: RYAN ESCAREZ BRETON\r\nGender: Male\r\nLastName: BRETON\r\nMaidenName: \r\nMiddleName: ESCAREZ\r\nOccupation: STRUCTURAL FITTER\r\nRelationship: Husband\r\n	BasicInformationId: 3860\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4217\r\nExtensionName: \r\nFirstName: RYAN\r\nFullName: RYAN BRETON\r\nGender: Male\r\nLastName: BRETON\r\nMaidenName: \r\nMiddleName: ESCAREZ\r\nOccupation: STRUCTURAL FITTER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
774042	2025-03-21	10:25:45.8243101	<Undetected>	Update	BasicInformationId: 3860\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4218\r\nExtensionName: \r\nFirstName: BUENAVENTURA\r\nFullName: BUENAVENTURA CLAVERIA DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: CLAVERIA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3860\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4218\r\nExtensionName: \r\nFirstName: BUENAVENTURA\r\nFullName: BUENAVENTURA DE CASTRO\r\nGender: Male\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: CLAVERIA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774043	2025-03-21	10:25:45.8283098	<Undetected>	Update	BasicInformationId: 3860\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4219\r\nExtensionName: \r\nFirstName: TEODORA\r\nFullName: TEODORA AREVALO HERNANDEZ\r\nGender: Female\r\nLastName: HERNANDEZ\r\nMaidenName: \r\nMiddleName: AREVALO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3860\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4219\r\nExtensionName: \r\nFirstName: TEODORA\r\nFullName: TEODORA HERNANDEZ\r\nGender: Female\r\nLastName: HERNANDEZ\r\nMaidenName: \r\nMiddleName: AREVALO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774044	2025-03-21	10:25:45.8333798	<Undetected>	Update	BasicInformationId: 3860\r\nBirthDate: January 15, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4220\r\nExtensionName: \r\nFirstName: SHEIM AIRA\r\nFullName: SHEIM AIRA BRETON\r\nGender: Female\r\nLastName: BRETON\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3860\r\nBirthDate: January 15, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4220\r\nExtensionName: \r\nFirstName: SHEIM AIRA\r\nFullName: SHEIM AIRA BRETON\r\nGender: Female\r\nLastName: BRETON\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774045	2025-03-21	10:25:45.8383957	<Undetected>	Update	BasicInformationId: 3860\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3657\r\n	BasicInformationId: 3860\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3657\r\n	admin	Questionnaires	1
774057	2025-03-21	10:35:15.4099685	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3860\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,421.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: March 21, 2025\r\n	admin	Experiences	1
774058	2025-03-21	10:35:15.4140038	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3860\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: March 10, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
774059	2025-03-21	10:35:15.4190111	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3860\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,796.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: March 01, 2024\r\n	admin	Experiences	1
774110	2025-03-21	11:28:13.7418421	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3860\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ANDRES ISLA VERDE BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09971827343\r\nExtensionName: \r\nFirstName: MIRIAM\r\nLastName: FUENTES\r\nMiddleName: R.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774051	2025-03-21	10:31:05.6270045	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3857\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 30,024.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
774052	2025-03-21	10:31:05.6351608	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3857\r\nCompanyInstitution: BEACON OF CHRIST LEARNING INSTITUTE INC.\r\nExperienceId: 0\r\nFromDate: August 22, 2022\r\nIsGovernmentService: False\r\nMonthlySalary: 9,330.00\r\nPositionHeld: TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: May 31, 2024\r\n	admin	Experiences	1
774053	2025-03-21	10:33:33.6551781	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3859\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CRISANTO\r\nFullName: CRISANTO FALLARIA FONDEVILLA\r\nGender: Male\r\nLastName: FONDEVILLA\r\nMaidenName: \r\nMiddleName: FALLARIA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774054	2025-03-21	10:33:33.6663178	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3859\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROSALINDA\r\nFullName: ROSALINDA BULAWIN FONDEVILLA\r\nGender: Male\r\nLastName: FONDEVILLA\r\nMaidenName: SALIZE\r\nMiddleName: BULAWIN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774055	2025-03-21	10:33:33.6705174	<Undetected>	Update	BasicInformationId: 3859\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3656\r\n	BasicInformationId: 3859\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3656\r\n	admin	Questionnaires	1
774056	2025-03-21	10:34:55.4619103	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: ENGLISH LANGUAGE\r\nLevel: Vocational\r\n	admin	Courses	1
774071	2025-03-21	10:36:15.9019428	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3859\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2002\r\nDateTo: 2008\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: KUMINTANG ELEMENTARY SCHOOL\r\nYearGraduated: 2008\r\n	admin	EducationalBackgrounds	1
774072	2025-03-21	10:36:15.9069433	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3859\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2008\r\nDateTo: 2012\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2012\r\n	admin	EducationalBackgrounds	1
774073	2025-03-21	10:36:15.9211023	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3859\r\nCourse: \r\nCourseId: 1395\r\nCourseOrMajor: \r\nDateFrom: 2021\r\nDateTo: 2021\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Vocational Graduate\r\nMajor: \r\nSchoolorUniversity: TESDA REGIONAL IV-A CALABARZON\r\nYearGraduated: 2021\r\n	admin	EducationalBackgrounds	1
774074	2025-03-21	10:36:15.9326514	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3859\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 2012\r\nDateTo: 2016\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: COLEGIO NG LUNGSOD NG BATANGAS\r\nYearGraduated: 2016\r\n	admin	EducationalBackgrounds	1
774075	2025-03-21	10:36:15.9551884	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3859\r\nCourse: \r\nCourseId: 1284\r\nCourseOrMajor: \r\nDateFrom: 2018\r\nDateTo: 2020\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2020\r\n	admin	EducationalBackgrounds	1
774076	2025-03-21	10:36:15.9623905	<Undetected>	Update	BasicInformationId: 3859\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4223\r\nExtensionName: \r\nFirstName: CRISANTO\r\nFullName: CRISANTO FALLARIA FONDEVILLA\r\nGender: Male\r\nLastName: FONDEVILLA\r\nMaidenName: \r\nMiddleName: FALLARIA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3859\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4223\r\nExtensionName: \r\nFirstName: CRISANTO\r\nFullName: CRISANTO FONDEVILLA\r\nGender: Male\r\nLastName: FONDEVILLA\r\nMaidenName: \r\nMiddleName: FALLARIA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774077	2025-03-21	10:36:15.9673990	<Undetected>	Update	BasicInformationId: 3859\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4224\r\nExtensionName: \r\nFirstName: ROSALINDA\r\nFullName: ROSALINDA BULAWIN FONDEVILLA\r\nGender: Male\r\nLastName: FONDEVILLA\r\nMaidenName: SALIZE\r\nMiddleName: BULAWIN\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3859\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4224\r\nExtensionName: \r\nFirstName: ROSALINDA\r\nFullName: ROSALINDA FONDEVILLA\r\nGender: Male\r\nLastName: FONDEVILLA\r\nMaidenName: \r\nMiddleName: BULAWIN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774060	2025-03-21	10:35:15.4240801	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3860\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,573.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
774061	2025-03-21	10:35:15.4290882	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3860\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 26,012.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
774062	2025-03-21	10:35:15.4330940	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3860\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,723.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: June 30, 2022\r\n	admin	Experiences	1
774063	2025-03-21	10:35:15.4381079	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3860\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 24,161.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
774064	2025-03-21	10:35:15.4421138	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3860\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,600.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
774065	2025-03-21	10:35:15.4471216	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3860\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,038.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
774066	2025-03-21	10:35:15.4521293	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3860\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 30, 2019\r\n	admin	Experiences	1
774067	2025-03-21	10:35:15.4573216	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3860\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
774068	2025-03-21	10:35:15.4613273	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3860\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: November 18, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,620.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
774069	2025-03-21	10:35:15.4663350	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3860\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,620.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: November 16, 2017\r\n	admin	Experiences	1
774070	2025-03-21	10:35:15.4703570	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3860\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO NATIONAL HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
775172	2025-03-24	16:42:41.8819939	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3920\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
774078	2025-03-21	10:40:45.7740817	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 0028\r\nAddress2: PUROK 1\r\nBarangay: KUMINTANG ILAYA\r\nBasicInformationId: 3859\r\nBirthDate: October 22, 1995\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: crisilda.fondevilla@deped.gov.ph\r\nExtensionName: \r\nFirstName: CRISILDA\r\nFullName: CRISILDA B. FONDEVILLA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.46\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: FONDEVILLA\r\nMaidenName: \r\nMiddleName: BULAWIN\r\nMobileNumber: 09686229841\r\nNationality: Filipino\r\nPermanentAddress1: 0028\r\nPermanentAddress2: PUROK 1\r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: MERALCO SITE\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: MERALCO SITE\r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 0028\r\nAddress2: PUROK 1\r\nBarangay: KUMINTANG ILAYA\r\nBasicInformationId: 3859\r\nBirthDate: October 22, 1995\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: crisilda.fondevilla@deped.gov.ph\r\nExtensionName: \r\nFirstName: CRISILDA\r\nFullName: CRISILDA B. FONDEVILLA\r\nGender: Female\r\nGovernmentIdIssuedDate: December 27, 2016\r\nGovernmentIdNumber: 1516704\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: 02006215374\r\nHDMF: 1211-7098-7758\r\nHeight: 1.46\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: FONDEVILLA\r\nMaidenName: \r\nMiddleName: BULAWIN\r\nMobileNumber: 09686229841\r\nNationality: Filipino\r\nPermanentAddress1: 0028\r\nPermanentAddress2: PUROK 1\r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: MERALCO SITE\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050490057-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3754685-2\r\nStreetName: MERALCO SITE\r\nTIN: 619-590-582-0000\r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774079	2025-03-21	10:45:44.8179493	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3860\r\nCompanyInstitution: GRATIA DE REGINA SCHOOL INC.\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: False\r\nMonthlySalary: 13,000.00\r\nPositionHeld: CLASSROOM TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: June 30, 2016\r\n	admin	Experiences	1
774080	2025-03-21	10:47:02.5355314	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3859\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09641907678\r\nExtensionName: \r\nFirstName: JOLLY\r\nLastName: LUCES\r\nMiddleName: T\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774081	2025-03-21	10:47:02.5436756	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3859\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09475854673\r\nExtensionName: \r\nFirstName: RIZA\r\nLastName: EBORA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774082	2025-03-21	10:47:02.5553617	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3859\r\nCharacterReferenceId: 0\r\nCompanyAddress: KUMINTANG ILAYA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 7236318\r\nExtensionName: \r\nFirstName: NERMA\r\nLastName: BUSTOS\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774083	2025-03-21	10:47:52.9135712	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3859\r\nDateOfExamination: September 25, 2016\r\nDateOfRelease: October 22, 2028\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 25, 2016\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1516704\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 78.80\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
774084	2025-03-21	10:48:20.9865635	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION LEARNING CAMP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774085	2025-03-21	11:20:52.6856097	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3859\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,024.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
774086	2025-03-21	11:20:52.6937145	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3859\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
774087	2025-03-21	11:20:52.6977277	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3859\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 17, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
774088	2025-03-21	11:20:52.7029559	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3859\r\nCompanyInstitution: KING'S KIDS CHRISTIAN ACADEMY\r\nExperienceId: 0\r\nFromDate: January 06, 2018\r\nIsGovernmentService: False\r\nMonthlySalary: 8,000.00\r\nPositionHeld: GRADE 1 AND GRADE 3 TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: March 31, 2021\r\n	admin	Experiences	1
774089	2025-03-21	11:20:52.7071267	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3859\r\nCompanyInstitution: ROYAL ORCHID ACADEMY OF THE PHILIPPINES\r\nExperienceId: 0\r\nFromDate: January 06, 2016\r\nIsGovernmentService: False\r\nMonthlySalary: 7,500.00\r\nPositionHeld: GRADE 2 TEACHER`\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: March 31, 2021\r\n	admin	Experiences	1
774090	2025-03-21	11:21:08.9828328	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3860\r\nEmployeeTrainingId: 0\r\nFromDate: May 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16470\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774091	2025-03-21	11:21:08.9878407	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3860\r\nEmployeeTrainingId: 0\r\nFromDate: November 15, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: November 15, 2024\r\nTrainingId: 16679\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774092	2025-03-21	11:21:08.9959568	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3860\r\nEmployeeTrainingId: 0\r\nFromDate: August 18, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: August 18, 2023\r\nTrainingId: 15963\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774093	2025-03-21	11:21:08.9999631	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3860\r\nEmployeeTrainingId: 0\r\nFromDate: August 30, 2021\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: September 03, 2021\r\nTrainingId: 16516\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774094	2025-03-21	11:22:02.7881694	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INTRODUCTION OF ONLINE TEACHING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774095	2025-03-21	11:22:45.8019860	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: RE-ORIENTATION AND WRITESHOP OF CONTINGENCY PLAN\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774096	2025-03-21	11:24:10.6683655	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3860\r\nSkillId: 0\r\nSkillName: ADAPTABILITY\r\n	admin	Skills	1
774097	2025-03-21	11:24:10.6794221	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3860\r\nSkillId: 0\r\nSkillName: READING\r\n	admin	Skills	1
774098	2025-03-21	11:24:10.6844643	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3860\r\nSkillId: 0\r\nSkillName: BAKING\r\n	admin	Skills	1
774099	2025-03-21	11:24:10.6894803	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3860\r\nSkillId: 0\r\nSkillName: WRITING\r\n	admin	Skills	1
774100	2025-03-21	11:24:10.6944965	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3860\r\nRecognitionId: 0\r\nRecognitionName: MOST PUNCTUAL DEPED PERSONNEL OF SAN AGAPITO INTEGRATED HIGH SCHOOL 2022 DISTRICT X SEARCH FOR GAWAD VERDENIANS\r\n	admin	Recognitions	1
774101	2025-03-21	11:24:10.6995513	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3860\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
774102	2025-03-21	11:24:10.7035790	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3860\r\nEmployeeTrainingId: 0\r\nFromDate: May 06, 2021\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: May 06, 2021\r\nTrainingId: 16680\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774103	2025-03-21	11:25:04.7309558	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3859\r\nEmployeeTrainingId: 0\r\nFromDate: February 13, 2025\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SAN AGAPITO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: February 13, 2025\r\nTrainingId: 16508\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774104	2025-03-21	11:25:04.7389555	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3859\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16400\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774105	2025-03-21	11:25:04.7429555	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3859\r\nEmployeeTrainingId: 0\r\nFromDate: September 30, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SAN AGAPITO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: September 30, 2024\r\nTrainingId: 16681\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774106	2025-03-21	11:25:04.7489558	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3859\r\nEmployeeTrainingId: 0\r\nFromDate: September 13, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 13, 2024\r\nTrainingId: 16591\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775426	2025-03-26	08:32:10.9102983	<Undetected>	Update	BasicInformationId: 3880\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3677\r\n	BasicInformationId: 3880\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3677\r\n	admin	Questionnaires	1
774108	2025-03-21	11:27:36.4180990	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANTONIO\r\nBasicInformationId: 0\r\nBirthDate: January 29, 1967\r\nBirthPlace: SAN ANTONIO, ISLA VERDE, BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: preciosa.medina@deped.gov.ph\r\nExtensionName: \r\nFirstName: PRECIOSA\r\nFullName: PRECIOSA E. MEDINA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: EBORA\r\nMobileNumber: 09564781003\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANTONIO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 49\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774109	2025-03-21	11:27:36.5002812	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3861\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
774114	2025-03-21	11:29:10.7870278	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANTONIO, ISLA VERDE\r\nBasicInformationId: 0\r\nBirthDate: December 06, 1991\r\nBirthPlace: SAN ANTONIO, ISLA VERDE, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: romelinard.rayos@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROMELINARD\r\nFullName: ROMELINARD E. RAYOS\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.72\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: EBORA\r\nMobileNumber: 09452154049\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANTONIO, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 69\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774115	2025-03-21	11:29:10.7968054	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3862\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
774116	2025-03-21	11:30:57.2188711	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: 0\r\nBirthDate: April 08, 1998\r\nBirthPlace: LIPONPON, ISLA VERDE, BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: vanessa.soriano001@deped.gov.ph\r\nExtensionName: \r\nFirstName: VANESSA\r\nFullName: VANESSA B. SORIANO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: BAJA\r\nMobileNumber: 09066177828\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO MABATO\r\nTIN: \r\nWeight: 53\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774117	2025-03-21	11:30:57.2291224	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3863\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
774131	2025-03-21	11:35:28.0846431	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3866\r\nBirthDate: January 31, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARK GERARD\r\nFullName: MARK GERARD R. PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: R.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774132	2025-03-21	11:35:28.0846431	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3866\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
774135	2025-03-21	11:39:01.3882868	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3861\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 0437022094\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: REYNALDO\r\nFullName: REYNALDO AMUL MEDINA\r\nGender: Male\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: AMUL\r\nOccupation: ADMINISTRATIVE AIDE 1\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
774112	2025-03-21	11:28:13.7554840	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3860\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO, ISLA VERDE BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09065572162\r\nExtensionName: \r\nFirstName: ELENITA\r\nLastName: PEREZ\r\nMiddleName: R.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774113	2025-03-21	11:28:13.7614844	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANDRES, ISLA VERDE\r\nBasicInformationId: 3860\r\nBirthDate: December 30, 1981\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: aileen.breton@deped.gov.ph\r\nExtensionName: \r\nFirstName: AILEEN\r\nFullName: AILEEN DC. BRETON\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BRETON\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nMobileNumber: 09815405570\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANDRES, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 52\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANDRES, ISLA VERDE\r\nBasicInformationId: 3860\r\nBirthDate: December 30, 1981\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: aileen.breton@deped.gov.ph\r\nExtensionName: \r\nFirstName: AILEEN\r\nFullName: AILEEN DC. BRETON\r\nGender: Female\r\nGovernmentIdIssuedDate: December 29, 2015\r\nGovernmentIdNumber: 1425587\r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: PRC\r\nGSIS: 02004994107\r\nHDMF: 1211-5610-4645\r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BRETON\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nMobileNumber: 09815405570\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANDRES, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025188820-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 435-368-872-0000\r\nWeight: 52\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774124	2025-03-21	11:35:28.0595414	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: KANSAS\r\nBarangay: EL SITIO SUBDIVISION\r\nBasicInformationId: 0\r\nBirthDate: June 11, 2000\r\nBirthPlace: SAN AGAPITO ISLA VERDE BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: elenita.perez@deped.gov.ph\r\nExtensionName: \r\nFirstName: ELENITA\r\nFullName: ELENITA R. PEREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: RESURRECCION\r\nMobileNumber: 09705957710\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: KANSAS\r\nPermanentBarangay: EL SITIO SUBDIVISION\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: BLK 51 LOT 38\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: BLK 51 LOT 38\r\nTIN: \r\nWeight: 68\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774125	2025-03-21	11:35:28.0761987	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3866\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GERARDO\r\nFullName: GERARDO PENTINIO PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: PENTINIO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
774126	2025-03-21	11:35:28.0761987	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3866\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALBERTO\r\nFullName: ALBERTO EBORA RESURRECCION\r\nGender: Male\r\nLastName: RESURRECCION\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774127	2025-03-21	11:35:28.0761987	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3866\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LEONICIA\r\nFullName: LEONICIA MENDOZA ANDAL\r\nGender: Female\r\nLastName: ANDAL\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774128	2025-03-21	11:35:28.0761987	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3866\r\nBirthDate: November 30, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RHELYN ELOISA\r\nFullName: RHELYN ELOISA R. PEREZ\r\nGender: Female\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: R.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774129	2025-03-21	11:35:28.0761987	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3866\r\nBirthDate: June 11, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GHEIANNE ALLYSA\r\nFullName: GHEIANNE ALLYSA R. PEREZ\r\nGender: Female\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: R.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774130	2025-03-21	11:35:28.0836431	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3866\r\nBirthDate: July 16, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GLENN JOSEPH\r\nFullName: GLENN JOSEPH R. PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: R.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774118	2025-03-21	11:31:13.4510892	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: 3863\r\nBirthDate: April 08, 1998\r\nBirthPlace: LIPONPON, ISLA VERDE, BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: vanessa.soriano001@deped.gov.ph\r\nExtensionName: \r\nFirstName: VANESSA\r\nFullName: VANESSA B. SORIANO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: BAJA\r\nMobileNumber: 09066177828\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO MABATO\r\nTIN: \r\nWeight: 53\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: 3863\r\nBirthDate: April 08, 1998\r\nBirthPlace: LIPONPON, ISLA VERDE, BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: vanessa.soriano001@deped.gov.ph\r\nExtensionName: \r\nFirstName: VANESSA\r\nFullName: VANESSA B. SORIANO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: BAJA\r\nMobileNumber: 09066177828\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO MABATO\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO MABATO\r\nTIN: \r\nWeight: 53\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774119	2025-03-21	11:31:13.4550955	<Undetected>	Update	BasicInformationId: 3863\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3660\r\n	BasicInformationId: 3863\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3660\r\n	admin	Questionnaires	1
774120	2025-03-21	11:32:36.7688753	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANTONIO, ISLA VERDE\r\nBasicInformationId: 0\r\nBirthDate: November 15, 1966\r\nBirthPlace: BULI, TAAL, BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: maelena.driz@deped.gov.ph\r\nExtensionName: \r\nFirstName: MA. ELENA\r\nFullName: MA. ELENA S. DRIZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DRIZ\r\nMaidenName: \r\nMiddleName: SEGUNIAL\r\nMobileNumber: 09920102694\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANTONIO, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 75\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774121	2025-03-21	11:32:36.7787522	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3864\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
774122	2025-03-21	11:34:19.6722262	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: KUMINTANG IBABA\r\nBasicInformationId: 0\r\nBirthDate: October 23, 1999\r\nBirthPlace: ISLA VERDE, BATANGAS CIT\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mariane.ebora@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIANE\r\nFullName: MARIANE C. EBORA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: CALALUAN\r\nMobileNumber: 09066259334\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: KUMINTANG IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PROPER\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PROPER\r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774123	2025-03-21	11:34:19.6817340	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3865\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
774133	2025-03-21	11:39:01.3790632	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3861\r\nBirthDate: May 18, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DOROTHY BEATRICE\r\nFullName: DOROTHY BEATRICE EBORA MEDINA\r\nGender: Male\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774134	2025-03-21	11:39:01.3830762	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3861\r\nBirthDate: April 23, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EDWARD THEODORE\r\nFullName: EDWARD THEODORE EBORA MEDINA\r\nGender: Male\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774136	2025-03-21	11:39:01.3974753	<Undetected>	Update	BasicInformationId: 3861\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3658\r\n	BasicInformationId: 3861\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3658\r\n	admin	Questionnaires	1
774137	2025-03-21	11:39:42.4989090	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: FIRST HONORABLE MENTION\r\nBasicInformationId: 3866\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1979\r\nDateTo: 1985\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGAPITO ELEMENTARY SCHOOL\r\nYearGraduated: 1985\r\n	admin	EducationalBackgrounds	1
774138	2025-03-21	11:39:42.5099335	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: FIRST HONORABLE MENTION\r\nBasicInformationId: 3866\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1986\r\nDateTo: 1990\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: ISLA VERDE CATHOLIC HIGH SCHOOL\r\nYearGraduated: 1990\r\n	admin	EducationalBackgrounds	1
774139	2025-03-21	11:39:42.5140729	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3866\r\nCourse: \r\nCourseId: 1270\r\nCourseOrMajor: \r\nDateFrom: 1990\r\nDateTo: 1994\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MAJOR IN ENGLISH\r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES (UB)\r\nYearGraduated: 1994\r\n	admin	EducationalBackgrounds	1
774140	2025-03-21	11:39:42.5210883	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3866\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 1998\r\nDateTo: 2010\r\nEducationalAttainment: 45 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
774141	2025-03-21	11:39:42.5260884	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3866\r\nDateOfExamination: May 29, 1994\r\nDateOfRelease: May 16, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: May 29, 1994\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0506885\r\nPlaceOfExamination: BATANGAS CITY\r\nRating: \r\nTitle: PROFESSIONAL BOARD EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
774142	2025-03-21	11:39:42.5335697	<Undetected>	Update	BasicInformationId: 3866\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4225\r\nExtensionName: \r\nFirstName: GERARDO\r\nFullName: GERARDO PENTINIO PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: PENTINIO\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3866\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4225\r\nExtensionName: \r\nFirstName: GERARDO\r\nFullName: GERARDO PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: PENTINIO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
774143	2025-03-21	11:39:42.5420933	<Undetected>	Update	BasicInformationId: 3866\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4226\r\nExtensionName: \r\nFirstName: ALBERTO\r\nFullName: ALBERTO EBORA RESURRECCION\r\nGender: Male\r\nLastName: RESURRECCION\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3866\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4226\r\nExtensionName: \r\nFirstName: ALBERTO\r\nFullName: ALBERTO RESURRECCION\r\nGender: Male\r\nLastName: RESURRECCION\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774144	2025-03-21	11:39:42.5473311	<Undetected>	Update	BasicInformationId: 3866\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4227\r\nExtensionName: \r\nFirstName: LEONICIA\r\nFullName: LEONICIA MENDOZA ANDAL\r\nGender: Female\r\nLastName: ANDAL\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3866\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4227\r\nExtensionName: \r\nFirstName: LEONICIA\r\nFullName: LEONICIA ANDAL\r\nGender: Female\r\nLastName: ANDAL\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774145	2025-03-21	11:39:42.5516049	<Undetected>	Update	BasicInformationId: 3866\r\nBirthDate: November 30, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4228\r\nExtensionName: \r\nFirstName: RHELYN ELOISA\r\nFullName: RHELYN ELOISA R. PEREZ\r\nGender: Female\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: R.\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3866\r\nBirthDate: November 30, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4228\r\nExtensionName: \r\nFirstName: RHELYN ELOISA\r\nFullName: RHELYN ELOISA PEREZ\r\nGender: Female\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: R.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774146	2025-03-21	11:39:42.5568017	<Undetected>	Update	BasicInformationId: 3866\r\nBirthDate: June 11, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4229\r\nExtensionName: \r\nFirstName: GHEIANNE ALLYSA\r\nFullName: GHEIANNE ALLYSA R. PEREZ\r\nGender: Female\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: R.\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3866\r\nBirthDate: June 11, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4229\r\nExtensionName: \r\nFirstName: GHEIANNE ALLYSA\r\nFullName: GHEIANNE ALLYSA PEREZ\r\nGender: Female\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: R.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774147	2025-03-21	11:39:42.5608203	<Undetected>	Update	BasicInformationId: 3866\r\nBirthDate: July 16, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4230\r\nExtensionName: \r\nFirstName: GLENN JOSEPH\r\nFullName: GLENN JOSEPH R. PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: R.\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3866\r\nBirthDate: July 16, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4230\r\nExtensionName: \r\nFirstName: GLENN JOSEPH\r\nFullName: GLENN JOSEPH PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: R.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774150	2025-03-21	11:41:34.6646751	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3861\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1975\r\nDateTo: 1980\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGAPITO ELEMENTARY SCHOOL\r\nYearGraduated: 1980\r\n	admin	EducationalBackgrounds	1
774148	2025-03-21	11:39:42.5658286	<Undetected>	Update	BasicInformationId: 3866\r\nBirthDate: January 31, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4231\r\nExtensionName: \r\nFirstName: MARK GERARD\r\nFullName: MARK GERARD R. PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: R.\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3866\r\nBirthDate: January 31, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4231\r\nExtensionName: \r\nFirstName: MARK GERARD\r\nFullName: MARK GERARD PEREZ\r\nGender: Male\r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: R.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774149	2025-03-21	11:39:42.5709231	<Undetected>	Update	BasicInformationId: 3866\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3663\r\n	BasicInformationId: 3866\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3663\r\n	admin	Questionnaires	1
774173	2025-03-21	11:56:13.3090176	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: February 18, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 36,022.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-5\r\nStatus: Permanent\r\nToDate: March 21, 2025\r\n	admin	Experiences	1
774174	2025-03-21	11:56:13.3141427	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 33,819.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: February 17, 2025\r\n	admin	Experiences	1
774175	2025-03-21	11:56:13.3191767	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 34,144.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
774176	2025-03-21	11:56:13.3231898	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 32,269.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
774177	2025-03-21	11:56:13.3292098	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: February 18, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 30,747.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
774178	2025-03-21	11:56:13.3332224	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 30,427.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: February 17, 2022\r\n	admin	Experiences	1
774179	2025-03-21	11:56:13.3382581	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 28,905.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
774180	2025-03-21	11:56:13.3432862	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 27,383.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: February 17, 2022\r\n	admin	Experiences	1
774181	2025-03-21	11:56:13.3483032	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: February 18, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 25,861.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
774182	2025-03-21	11:56:13.3524474	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 24,517.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
774151	2025-03-21	11:41:34.6753559	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3861\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1980\r\nDateTo: 1984\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: ISLA VERDE CATHOLIC HIGH SCHOOL\r\nYearGraduated: 1984\r\n	admin	EducationalBackgrounds	1
774152	2025-03-21	11:41:34.6795326	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3861\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1980\r\nDateTo: 1989\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES\r\nYearGraduated: 1989\r\n	admin	EducationalBackgrounds	1
774153	2025-03-21	11:41:34.6876951	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3861\r\nCourse: \r\nCourseId: 1367\r\nCourseOrMajor: \r\nDateFrom: 1992\r\nDateTo: 2000\r\nEducationalAttainment: 39 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
774154	2025-03-21	11:41:34.7004307	<Undetected>	Update	BasicInformationId: 3861\r\nBirthDate: May 18, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4232\r\nExtensionName: \r\nFirstName: DOROTHY BEATRICE\r\nFullName: DOROTHY BEATRICE EBORA MEDINA\r\nGender: Male\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3861\r\nBirthDate: May 18, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4232\r\nExtensionName: \r\nFirstName: DOROTHY BEATRICE\r\nFullName: DOROTHY BEATRICE MEDINA\r\nGender: Male\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774155	2025-03-21	11:41:34.7182055	<Undetected>	Update	BasicInformationId: 3861\r\nBirthDate: April 23, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4233\r\nExtensionName: \r\nFirstName: EDWARD THEODORE\r\nFullName: EDWARD THEODORE EBORA MEDINA\r\nGender: Male\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3861\r\nBirthDate: April 23, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4233\r\nExtensionName: \r\nFirstName: EDWARD THEODORE\r\nFullName: EDWARD THEODORE MEDINA\r\nGender: Male\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774156	2025-03-21	11:41:34.7262919	<Undetected>	Update	BasicInformationId: 3861\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 0437022094\r\nEmployeeRelativeId: 4234\r\nExtensionName: \r\nFirstName: REYNALDO\r\nFullName: REYNALDO AMUL MEDINA\r\nGender: Male\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: AMUL\r\nOccupation: ADMINISTRATIVE AIDE 1\r\nRelationship: Husband\r\n	BasicInformationId: 3861\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 0437022094\r\nEmployeeRelativeId: 4234\r\nExtensionName: \r\nFirstName: REYNALDO\r\nFullName: REYNALDO MEDINA\r\nGender: Male\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: AMUL\r\nOccupation: ADMINISTRATIVE AIDE 1\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
774157	2025-03-21	11:42:57.7308467	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANTONIO\r\nBasicInformationId: 3861\r\nBirthDate: January 29, 1967\r\nBirthPlace: SAN ANTONIO, ISLA VERDE, BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: preciosa.medina@deped.gov.ph\r\nExtensionName: \r\nFirstName: PRECIOSA\r\nFullName: PRECIOSA E. MEDINA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: EBORA\r\nMobileNumber: 09564781003\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANTONIO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 49\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANTONIO\r\nBasicInformationId: 3861\r\nBirthDate: January 29, 1967\r\nBirthPlace: SAN ANTONIO, ISLA VERDE, BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: preciosa.medina@deped.gov.ph\r\nExtensionName: \r\nFirstName: PRECIOSA\r\nFullName: PRECIOSA E. MEDINA\r\nGender: Female\r\nGovernmentIdIssuedDate: October 28, 1997\r\nGovernmentIdNumber: 0192828\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02002929244\r\nHDMF: 1490-0085-1394\r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: EBORA\r\nMobileNumber: 09564781003\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANTONIO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000021670-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 177-628-147-0000\r\nWeight: 49\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774158	2025-03-21	11:44:24.3963030	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3861\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ANTONIO, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09285429753\r\nExtensionName: \r\nFirstName: FRANCISCO\r\nLastName: DE CASTRO\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774159	2025-03-21	11:44:24.4007959	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3861\r\nCharacterReferenceId: 0\r\nCompanyAddress: GULOD ITAAAS, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09667522908\r\nExtensionName: \r\nFirstName: CHARITY\r\nLastName: MAGADIA\r\nMiddleName: S\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774160	2025-03-21	11:44:24.4078552	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3861\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09602114973\r\nExtensionName: \r\nFirstName: BUHAY JOSE \r\nLastName: FATALIA\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774161	2025-03-21	11:48:01.1995952	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3861\r\nEmployeeTrainingId: 0\r\nFromDate: February 02, 2022\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: PARANG ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: February 05, 2022\r\nTrainingId: 16348\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774162	2025-03-21	11:48:01.2036012	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3861\r\nEmployeeTrainingId: 0\r\nFromDate: February 22, 2022\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: COUNCIL FOR THE RESTORATION OF FILIPINO VALUE\r\nStatus: \r\nToDate: February 25, 2022\r\nTrainingId: 15877\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774163	2025-03-21	11:48:01.2086095	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3861\r\nEmployeeTrainingId: 0\r\nFromDate: January 02, 2022\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: January 14, 2022\r\nTrainingId: 15298\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774164	2025-03-21	11:48:01.2137087	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3861\r\nEmployeeTrainingId: 0\r\nFromDate: October 05, 2021\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: REGION IV-A CALABARZON - HRDD-NEAP\r\nStatus: \r\nToDate: October 08, 2021\r\nTrainingId: 15579\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774165	2025-03-21	11:48:01.2187173	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3861\r\nEmployeeTrainingId: 0\r\nFromDate: August 30, 2021\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPED CENTRAL OFFICE\r\nStatus: \r\nToDate: August 31, 2021\r\nTrainingId: 16409\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774166	2025-03-21	11:48:42.5090312	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3861\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
774167	2025-03-21	11:48:42.5140481	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3861\r\nSkillId: 0\r\nSkillName: FUND OF MUSIC & FOREIGN MOVIES\r\n	admin	Skills	1
774168	2025-03-21	11:48:42.5240924	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3861\r\nSkillId: 0\r\nSkillName: DRAWING AND CROSS STITCHING\r\n	admin	Skills	1
774169	2025-03-21	11:49:38.7763264	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3861\r\nRecognitionId: 0\r\nRecognitionName: SILVER MERIT AWARDEE OF BOY SCOUTS OF THE PHILIPPINES\r\n	admin	Recognitions	1
774170	2025-03-21	11:49:38.7939939	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3861\r\nOrganizationId: 0\r\nOrganizationName: BOY SCHOUT OF THE PHILIPPINES\r\n	admin	Organizations	1
774171	2025-03-21	11:49:38.8057477	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3861\r\nOrganizationId: 0\r\nOrganizationName: PUBLIC SCHOOL HEADS ASSOCIATION\r\n	admin	Organizations	1
774172	2025-03-21	11:50:24.0441424	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3861\r\nDateOfExamination: October 25, 1992\r\nDateOfRelease: January 29, 2024\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: October 25, 1992\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0192828\r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 72.2\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
774197	2025-03-21	11:56:58.6725448	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 44,438.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-3\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
774198	2025-03-21	11:56:58.6768122	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 42,494.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-3\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
774199	2025-03-21	11:56:58.6818124	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 40,509.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-3\r\nStatus: Permanent\r\nToDate: December 21, 2023\r\n	admin	Experiences	1
774200	2025-03-21	11:56:58.6868993	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: March 23, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 38,987.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-3\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
774201	2025-03-21	11:56:58.6922157	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 38,566.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-2\r\nStatus: Permanent\r\nToDate: March 22, 2022\r\n	admin	Experiences	1
774183	2025-03-21	11:56:13.3574645	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 25,545.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
774184	2025-03-21	11:56:13.3614782	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 24,510.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
774185	2025-03-21	11:56:13.3665166	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: February 18, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 23,517.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
774186	2025-03-21	11:56:13.3715443	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 22,564.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: February 17, 2016\r\n	admin	Experiences	1
774187	2025-03-21	11:56:13.3765609	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: February 18, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 22,328.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
774188	2025-03-21	11:56:13.3805738	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: February 17, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 21,436.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: February 18, 2013\r\n	admin	Experiences	1
774189	2025-03-21	11:56:13.3856205	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,735.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
774190	2025-03-21	11:56:13.3906372	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 17,318.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
774191	2025-03-21	11:56:13.3956542	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: March 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 15,900.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
774192	2025-03-21	11:56:13.3996897	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: March 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 15,649.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
774193	2025-03-21	11:56:13.4047166	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 14,198.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
774312	2025-03-21	14:56:29.7753770	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3866\r\nEmployeeTrainingId: 0\r\nFromDate: August 01, 2024\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: August 01, 2024\r\nTrainingId: 16690\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774194	2025-03-21	11:56:13.4097337	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,026.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
774195	2025-03-21	11:56:13.4147706	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,933.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
774196	2025-03-21	11:56:13.4187840	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: July 17, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
774202	2025-03-21	11:56:58.6963949	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 37,044.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-2\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
774203	2025-03-21	11:56:58.7016051	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 35,522.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-2\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
774204	2025-03-21	11:56:58.7057769	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: March 23, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 34,000.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-2\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
774205	2025-03-21	11:56:58.7108037	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 33,584.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: March 22, 2019\r\n	admin	Experiences	1
774206	2025-03-21	11:56:58.7158109	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 31,765.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
774207	2025-03-21	13:04:56.7852388	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3855\r\nDateOfExamination: March 10, 2013\r\nDateOfRelease: January 28, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: March 10, 2013\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1207644\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 75.6\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
774208	2025-03-21	13:07:13.8413065	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3855\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: March 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 37,384.00\r\nPositionHeld: SPECIAL EDUCATION TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 14-2\r\nStatus: Permanent\r\nToDate: January 25, 2025\r\n	admin	Experiences	1
774209	2025-03-21	13:07:13.8502765	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3855\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 26, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: February 28, 2019\r\n	admin	Experiences	1
774210	2025-03-21	13:09:16.1353123	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL LEARNING ACTION CELL SESSION ON FOSTERING AND INTEGTRATING GROWTH MINDSET TO ENHANCE PERFORMANCE IN CLASSROOMS\r\nTrainingId: 0\r\nType: \r\n	admin	Trainings	1
774211	2025-03-21	13:14:27.5388963	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL LEARNING ACTION CELL SESSION ON EMPLOYING INNOVATIVE TEACHING TECHNIQUES APPLIED IN CLASSROOM SETTING\r\nTrainingId: 0\r\nType: \r\n	admin	Trainings	1
774212	2025-03-21	13:17:58.0914591	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL LEARNING ACTION CELL SESSION ON DEVELOPING CONTEXTUALIZED AND LOCALIZED TEACHING MATERIALS USING ICT AND OTHER APPLICATIONS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774213	2025-03-21	13:20:42.7314152	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL LEARNING ACTION CELL SESSION ON THE USE OF EXCEL APP IN MAKING INSTRUCTIONAL MATERIALS AND DATA ANALYSIS\r\nTrainingId: 0\r\nType: \r\n	admin	Trainings	1
774214	2025-03-21	13:22:39.3564226	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3855\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2025\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION-LIBJO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: January 24, 2025\r\nTrainingId: 16682\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774215	2025-03-21	13:22:39.3604090	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3855\r\nEmployeeTrainingId: 0\r\nFromDate: December 05, 2024\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY DISTRICT VII\r\nStatus: \r\nToDate: December 07, 2024\r\nTrainingId: 16512\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774216	2025-03-21	13:22:39.3653926	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3855\r\nEmployeeTrainingId: 0\r\nFromDate: October 31, 2024\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION LIBJO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: October 31, 2024\r\nTrainingId: 16683\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774217	2025-03-21	13:22:39.3703760	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3855\r\nEmployeeTrainingId: 0\r\nFromDate: March 21, 2024\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION LIBJO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: March 21, 2024\r\nTrainingId: 16684\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774218	2025-03-21	13:22:39.3753593	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3855\r\nEmployeeTrainingId: 0\r\nFromDate: February 22, 2024\r\nHours: 4\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION LIBJO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: February 22, 2024\r\nTrainingId: 16685\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774219	2025-03-21	13:23:26.6367836	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3855\r\nSkillId: 0\r\nSkillName: READING BOOKS/MAGAZINES\r\n	admin	Skills	1
774220	2025-03-21	13:23:26.6477468	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3855\r\nSkillId: 0\r\nSkillName: PLAYING BANDURIA\r\n	admin	Skills	1
774221	2025-03-21	13:28:26.8048959	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 30,044.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
774222	2025-03-21	13:28:26.8089095	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 23, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 28,417.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
774223	2025-03-21	13:28:28.1911693	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3855\r\nCharacterReferenceId: 0\r\nCompanyAddress: PAGKILATAN BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09778416380\r\nExtensionName: \r\nFirstName: CARINA\r\nLastName: BAGON\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774224	2025-03-21	13:28:28.2041276	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3855\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ISIDRO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175028103\r\nExtensionName: \r\nFirstName: ROSALINA\r\nLastName: PANGANIBAN\r\nMiddleName: H\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774225	2025-03-21	13:28:28.2221062	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3855\r\nCharacterReferenceId: 0\r\nCompanyAddress: TABANGAO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 0437271358\r\nExtensionName: \r\nFirstName: RICA\r\nLastName: SUAREZ\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774226	2025-03-21	13:52:34.7633477	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 24,141.00\r\nPositionHeld: HEAD TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 14-1\r\nStatus: Permanent\r\nToDate: March 22, 2016\r\n	admin	Experiences	1
774227	2025-03-21	13:52:34.7695394	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 01, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 23,044.00\r\nPositionHeld: HEAD TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 14-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
774228	2025-03-21	13:52:34.7820054	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: March 16, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 22,086.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-4\r\nStatus: Permanent\r\nToDate: September 09, 2014\r\n	admin	Experiences	1
775549	2025-03-26	10:22:27.2636512	<Undetected>	Update	BasicInformationId: 3925\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3722\r\n	BasicInformationId: 3925\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3722\r\n	admin	Questionnaires	1
774229	2025-03-21	13:52:34.7872845	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 21,867.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: March 15, 2014\r\n	admin	Experiences	1
774230	2025-03-21	14:02:35.5659259	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: DOMOCLAY SOUTH\r\nBarangay: DOMOCLAY\r\nBasicInformationId: 3855\r\nBirthDate: January 28, 1992\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ABIGAIL.BALMES@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ABIGAIL\r\nFullName: ABIGAIL B. PAMPLONA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.47\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437735037\r\nLastName: PAMPLONA\r\nMaidenName: \r\nMiddleName: BALMES\r\nMobileNumber: 09363948289\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: DOMOCLAY SOUTH\r\nPermanentBarangay: DOMOCLAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 49.5\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: DOMOCLAY SOUTH\r\nBarangay: DOMOCLAY\r\nBasicInformationId: 3855\r\nBirthDate: January 28, 1992\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: ABIGAIL.BALMES@DEPED.GOV.PH\r\nExtensionName: \r\nFirstName: ABIGAIL\r\nFullName: ABIGAIL B. PAMPLONA\r\nGender: Female\r\nGovernmentIdIssuedDate: May 20, 2013\r\nGovernmentIdNumber: 1207644\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: 02004813499\r\nHDMF: 1211-3791-9555\r\nHeight: 1.47\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437735037\r\nLastName: PAMPLONA\r\nMaidenName: \r\nMiddleName: BALMES\r\nMobileNumber: 09363948289\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: DOMOCLAY SOUTH\r\nPermanentBarangay: DOMOCLAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050428248-0\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-2937256-8\r\nStreetName: \r\nTIN: 447-946-885-0000\r\nWeight: 49.5\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774231	2025-03-21	14:07:06.8466427	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 20,162.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
774232	2025-03-21	14:07:06.8521401	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: March 16, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 18,457.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
774233	2025-03-21	14:07:06.8571397	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 18,166.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: March 15, 2011\r\n	admin	Experiences	1
774234	2025-03-21	14:07:06.8625760	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 09, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 16,424.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
774235	2025-03-21	14:07:06.8668993	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 13,850.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
774236	2025-03-21	14:07:06.8721360	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,591.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: June 30, 2025\r\n	admin	Experiences	1
774237	2025-03-21	14:07:06.8763227	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 12,284.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2007\r\n	admin	Experiences	1
774238	2025-03-21	14:07:06.8816793	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: March 15, 2004\r\nIsGovernmentService: True\r\nMonthlySalary: 11,167.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
774239	2025-03-21	14:07:06.8858210	<Undetected>	Update	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 13663\r\nFromDate: January 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 21,867.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: March 15, 2014\r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 13663\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 21,867.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: March 15, 2014\r\n	admin	Experiences	1
774240	2025-03-21	14:09:35.2452580	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 20, 2004\r\nIsGovernmentService: True\r\nMonthlySalary: 11,167.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: January 17, 2005\r\n	admin	Experiences	1
774241	2025-03-21	14:09:35.2573413	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: March 15, 2004\r\nIsGovernmentService: True\r\nMonthlySalary: 11,167.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: September 19, 2004\r\n	admin	Experiences	1
774242	2025-03-21	14:10:12.9423067	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 04, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 10,535.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: March 14, 2004\r\n	admin	Experiences	1
774251	2025-03-21	14:13:45.4581496	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
774243	2025-03-21	14:12:03.9559693	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: LOT 35 BLOCK 7\r\nAddress2: BETZAIDA VILLAGE\r\nBarangay: DUMANTAY\r\nBasicInformationId: 0\r\nBirthDate: January 24, 1982\r\nBirthPlace: ISLA VERDE, BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mirnalyn.panganiban@deped.gov.ph\r\nExtensionName: \r\nFirstName: MIRNALYN\r\nFullName: MIRNALYN D. PANGANIBAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: DUTADO\r\nMobileNumber: 09983574363\r\nNationality: Filipino\r\nPermanentAddress1: LOT 35 BLOCK 7\r\nPermanentAddress2: BETZAIDA VILLAGE\r\nPermanentBarangay: DUMANTAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: STARGAZER\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: STARGAZER\r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774244	2025-03-21	14:12:04.0784104	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3867\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ANTHONY\r\nFullName: ANTHONY ROXAS PANGANIBAN\r\nGender: Male\r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: ROXAS\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
774245	2025-03-21	14:12:04.0794070	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3867\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ERIBERTO\r\nFullName: ERIBERTO DELA ROCA DUTADO\r\nGender: Male\r\nLastName: DUTADO\r\nMaidenName: \r\nMiddleName: DELA ROCA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774246	2025-03-21	14:12:04.0794070	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3867\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALELI\r\nFullName: ALELI MAGAHIS MANALO\r\nGender: Male\r\nLastName: MANALO\r\nMaidenName: \r\nMiddleName: MAGAHIS\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774247	2025-03-21	14:12:04.0794070	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3867\r\nBirthDate: October 16, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GEOFFREY\r\nFullName: GEOFFREY DUTADO PANGANIBAN\r\nGender: Male\r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: DUTADO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774248	2025-03-21	14:12:04.0794070	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3867\r\nBirthDate: April 21, 2010\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RAZIELLA\r\nFullName: RAZIELLA DUTADO PANGANIBAN\r\nGender: Male\r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: DUTADO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774249	2025-03-21	14:12:04.0804013	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3867\r\nBirthDate: June 26, 2019\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: YSABELLA\r\nFullName: YSABELLA DUTADO PANGANIBAN\r\nGender: Male\r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: DUTADO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774250	2025-03-21	14:12:04.0804013	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3867\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
774252	2025-03-21	14:16:35.4432540	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: 3rd HONOR\r\nBasicInformationId: 3867\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1988\r\nDateTo: 1994\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: LIPONPON ELEMENTARY SCHOOL\r\nYearGraduated: 1994\r\n	admin	EducationalBackgrounds	1
774253	2025-03-21	14:16:35.4482374	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3867\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 1998\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGUSTIN NATIONAL HIGH  SCHOOL\r\nYearGraduated: 1998\r\n	admin	EducationalBackgrounds	1
774254	2025-03-21	14:16:35.4582042	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: MAGDALENE SCHOLAR\r\nBasicInformationId: 3867\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1998\r\nDateTo: 2002\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: CANOSSA COLLEGE\r\nYearGraduated: 2002\r\n	admin	EducationalBackgrounds	1
774313	2025-03-21	14:56:29.7793836	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3866\r\nEmployeeTrainingId: 0\r\nFromDate: August 21, 2024\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: August 24, 2024\r\nTrainingId: 16617\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774255	2025-03-21	14:16:35.4631874	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3867\r\nCourse: \r\nCourseId: 1284\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2006\r\nEducationalAttainment: 21\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN SPECIAL EDUCATION\r\nSchoolorUniversity: UNIVERSITY OF THE PHILIPPINES DILIMAN\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
774256	2025-03-21	14:16:35.4711609	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: LOT 35 BLOCK 7\r\nAddress2: BETZAIDA VILLAGE\r\nBarangay: DUMANTAY\r\nBasicInformationId: 3867\r\nBirthDate: January 24, 1982\r\nBirthPlace: ISLA VERDE, BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mirnalyn.panganiban@deped.gov.ph\r\nExtensionName: \r\nFirstName: MIRNALYN\r\nFullName: MIRNALYN D. PANGANIBAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: DUTADO\r\nMobileNumber: 09983574363\r\nNationality: Filipino\r\nPermanentAddress1: LOT 35 BLOCK 7\r\nPermanentAddress2: BETZAIDA VILLAGE\r\nPermanentBarangay: DUMANTAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: STARGAZER\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: STARGAZER\r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: LOT 35 BLOCK 7\r\nAddress2: BETZAIDA VILLAGE\r\nBarangay: DUMANTAY\r\nBasicInformationId: 3867\r\nBirthDate: January 24, 1982\r\nBirthPlace: ISLA VERDE, BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mirnalyn.panganiban@deped.gov.ph\r\nExtensionName: \r\nFirstName: MIRNALYN\r\nFullName: MIRNALYN D. PANGANIBAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: DUTADO\r\nMobileNumber: 09983574363\r\nNationality: Filipino\r\nPermanentAddress1: LOT 35 BLOCK 7\r\nPermanentAddress2: BETZAIDA VILLAGE\r\nPermanentBarangay: DUMANTAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: STARGAZER\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: STARGAZER\r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774257	2025-03-21	14:16:35.4761443	<Undetected>	Update	BasicInformationId: 3867\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4235\r\nExtensionName: \r\nFirstName: ANTHONY\r\nFullName: ANTHONY ROXAS PANGANIBAN\r\nGender: Male\r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: ROXAS\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3867\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4235\r\nExtensionName: \r\nFirstName: ANTHONY\r\nFullName: ANTHONY PANGANIBAN\r\nGender: Male\r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: ROXAS\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
774258	2025-03-21	14:16:35.4811275	<Undetected>	Update	BasicInformationId: 3867\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4236\r\nExtensionName: \r\nFirstName: ERIBERTO\r\nFullName: ERIBERTO DELA ROCA DUTADO\r\nGender: Male\r\nLastName: DUTADO\r\nMaidenName: \r\nMiddleName: DELA ROCA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3867\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4236\r\nExtensionName: \r\nFirstName: ERIBERTO\r\nFullName: ERIBERTO DUTADO\r\nGender: Male\r\nLastName: DUTADO\r\nMaidenName: \r\nMiddleName: DELA ROCA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774259	2025-03-21	14:16:35.4861108	<Undetected>	Update	BasicInformationId: 3867\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4237\r\nExtensionName: \r\nFirstName: ALELI\r\nFullName: ALELI MAGAHIS MANALO\r\nGender: Male\r\nLastName: MANALO\r\nMaidenName: \r\nMiddleName: MAGAHIS\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3867\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4237\r\nExtensionName: \r\nFirstName: ALELI\r\nFullName: ALELI MANALO\r\nGender: Male\r\nLastName: MANALO\r\nMaidenName: \r\nMiddleName: MAGAHIS\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774260	2025-03-21	14:16:35.4910941	<Undetected>	Update	BasicInformationId: 3867\r\nBirthDate: October 16, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4238\r\nExtensionName: \r\nFirstName: GEOFFREY\r\nFullName: GEOFFREY DUTADO PANGANIBAN\r\nGender: Male\r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: DUTADO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3867\r\nBirthDate: October 16, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4238\r\nExtensionName: \r\nFirstName: GEOFFREY\r\nFullName: GEOFFREY PANGANIBAN\r\nGender: Male\r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: DUTADO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774261	2025-03-21	14:16:35.4960783	<Undetected>	Update	BasicInformationId: 3867\r\nBirthDate: April 21, 2010\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4239\r\nExtensionName: \r\nFirstName: RAZIELLA\r\nFullName: RAZIELLA DUTADO PANGANIBAN\r\nGender: Male\r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: DUTADO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3867\r\nBirthDate: April 21, 2010\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4239\r\nExtensionName: \r\nFirstName: RAZIELLA\r\nFullName: RAZIELLA PANGANIBAN\r\nGender: Male\r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: DUTADO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774262	2025-03-21	14:16:35.5010619	<Undetected>	Update	BasicInformationId: 3867\r\nBirthDate: June 26, 2019\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4240\r\nExtensionName: \r\nFirstName: YSABELLA\r\nFullName: YSABELLA DUTADO PANGANIBAN\r\nGender: Male\r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: DUTADO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3867\r\nBirthDate: June 26, 2019\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4240\r\nExtensionName: \r\nFirstName: YSABELLA\r\nFullName: YSABELLA PANGANIBAN\r\nGender: Male\r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: DUTADO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774263	2025-03-21	14:16:35.5050484	<Undetected>	Update	BasicInformationId: 3867\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3664\r\n	BasicInformationId: 3867\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3664\r\n	admin	Questionnaires	1
774264	2025-03-21	14:18:24.7512389	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3867\r\nDateOfExamination: August 25, 2002\r\nDateOfRelease: January 24, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 25, 2002\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0756444\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 78.8\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
774364	2025-03-21	15:09:05.5326389	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRITC WIDE ROLL-OUT ON EARLY LANGUAGE LITERACY AND NUMERACY (ELLN)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774265	2025-03-21	14:20:40.5387985	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3867\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 37,749.00\r\nPositionHeld: SPECIAL EDUCATION TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 14-3\r\nStatus: Permanent\r\nToDate: January 01, 2025\r\n	admin	Experiences	1
774266	2025-03-21	14:22:15.1236917	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SLAC ON FOSTERING AND INTEGRATING GROWTH MINDSET TO ENHANCE PERFORMANCE IN THE CLASSROOM\r\nTrainingId: 0\r\nType: \r\n	admin	Trainings	1
774267	2025-03-21	14:26:06.9269560	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: GENDER AND DEVELOPMENT ACTIVITY FOR SCHOOL PERSONNEL WITH THE THEME "STRENGHTENING AND DEVELOPMENT IN THE WORKPLACE"\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774268	2025-03-21	14:29:21.8774312	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING FOR SPECIAL EDUCATION TEACHERS ON THE ADPATATION OF PROGRAMS AND SERVICES FOR LEARNERS WITH DISABILITIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774269	2025-03-21	14:35:26.9741480	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SLAC SESSION ON EMPLOYING INNOVATIVE TEACHING TECHNIQUES APPLIED IN CLASSROOM SETTING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774270	2025-03-21	14:36:28.2377199	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3867\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2025\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION LIBJO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: January 24, 2025\r\nTrainingId: 16686\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774271	2025-03-21	14:36:28.2466901	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3867\r\nEmployeeTrainingId: 0\r\nFromDate: December 05, 2024\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION LIBJO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: December 07, 2024\r\nTrainingId: 16331\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774272	2025-03-21	14:36:28.2506765	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3867\r\nEmployeeTrainingId: 0\r\nFromDate: November 16, 2024\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION LIBJO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: November 16, 2024\r\nTrainingId: 16687\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774273	2025-03-21	14:36:28.2566568	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3867\r\nEmployeeTrainingId: 0\r\nFromDate: September 30, 2024\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION LIBJO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: October 02, 2024\r\nTrainingId: 16688\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774274	2025-03-21	14:36:28.2606432	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3867\r\nEmployeeTrainingId: 0\r\nFromDate: October 31, 2024\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION LIBJO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: October 31, 2024\r\nTrainingId: 16689\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774275	2025-03-21	14:36:58.4751282	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3867\r\nSkillId: 0\r\nSkillName: BAKING\r\n	admin	Skills	1
774276	2025-03-21	14:36:58.4850951	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3867\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
774277	2025-03-21	14:36:58.4900781	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3867\r\nSkillId: 0\r\nSkillName: DRIVING\r\n	admin	Skills	1
774278	2025-03-21	14:39:01.7892848	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3867\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ISIDRO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175028703\r\nExtensionName: \r\nFirstName: ROSALINA \r\nLastName: PANGANIBAN\r\nMiddleName: H\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774279	2025-03-21	14:39:01.7982545	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3867\r\nCharacterReferenceId: 0\r\nCompanyAddress: TABANGAO DAO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 0437271358\r\nExtensionName: \r\nFirstName: RICA\r\nLastName: SUAREZ\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774280	2025-03-21	14:39:01.8032797	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3867\r\nCharacterReferenceId: 0\r\nCompanyAddress: TANGISAN BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09178162851\r\nExtensionName: \r\nFirstName: GEMMA \r\nLastName: CLAVERIA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774300	2025-03-21	14:51:47.5229348	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3868\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1992\r\nDateTo: 1998\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: PINAMUKAN ELEMENTARY SCHOOL\r\nYearGraduated: 1998\r\n	admin	EducationalBackgrounds	1
774281	2025-03-21	14:42:42.3249996	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: LOT 35 BLOCK 7\r\nAddress2: BETZAIDA VILLAGE\r\nBarangay: DUMANTAY\r\nBasicInformationId: 3867\r\nBirthDate: January 24, 1982\r\nBirthPlace: ISLA VERDE, BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mirnalyn.panganiban@deped.gov.ph\r\nExtensionName: \r\nFirstName: MIRNALYN\r\nFullName: MIRNALYN D. PANGANIBAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: DUTADO\r\nMobileNumber: 09983574363\r\nNationality: Filipino\r\nPermanentAddress1: LOT 35 BLOCK 7\r\nPermanentAddress2: BETZAIDA VILLAGE\r\nPermanentBarangay: DUMANTAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: STARGAZER\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: STARGAZER\r\nTIN: \r\nWeight: 55\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: LOT 35 BLOCK 7\r\nAddress2: BETZAIDA VILLAGE\r\nBarangay: DUMANTAY\r\nBasicInformationId: 3867\r\nBirthDate: January 24, 1982\r\nBirthPlace: ISLA VERDE, BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mirnalyn.panganiban@deped.gov.ph\r\nExtensionName: \r\nFirstName: MIRNALYN\r\nFullName: MIRNALYN D. PANGANIBAN\r\nGender: Female\r\nGovernmentIdIssuedDate: October 29, 2022\r\nGovernmentIdNumber: 0756444\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02005215007\r\nHDMF: 1490-0030-9231\r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: DUTADO\r\nMobileNumber: 09983574363\r\nNationality: Filipino\r\nPermanentAddress1: LOT 35 BLOCK 7\r\nPermanentAddress2: BETZAIDA VILLAGE\r\nPermanentBarangay: DUMANTAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: STARGAZER\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050078908-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1274914-0\r\nStreetName: STARGAZER\r\nTIN: 929-374-517-0000\r\nWeight: 55\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774282	2025-03-21	14:43:29.4692377	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: July 02, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Substitute\r\nToDate: July 16, 2006\r\n	admin	Experiences	1
774283	2025-03-21	14:43:29.4782539	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: October 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Substitute\r\nToDate: November 30, 2000\r\n	admin	Experiences	1
774284	2025-03-21	14:43:29.4832649	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: February 01, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Substitute\r\nToDate: March 31, 1999\r\n	admin	Experiences	1
774285	2025-03-21	14:47:54.8002362	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
774286	2025-03-21	14:47:54.8052520	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 31, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 7,309.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: November 01, 1997\r\n	admin	Experiences	1
774287	2025-03-21	14:47:54.8103051	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 7,309.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: October 31, 1997\r\n	admin	Experiences	1
774288	2025-03-21	14:47:54.8153214	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 6,013.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1996\r\n	admin	Experiences	1
774289	2025-03-21	14:47:54.8193448	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 4,902.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1995\r\n	admin	Experiences	1
774301	2025-03-21	14:51:47.5279183	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3868\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1998\r\nDateTo: 2002\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: PINAMUKAN NATIONAL HIGH SCHOOL\r\nYearGraduated: 2002\r\n	admin	EducationalBackgrounds	1
774290	2025-03-21	14:48:39.2847110	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: PINAMUCAN PROPER\r\nBasicInformationId: 0\r\nBirthDate: June 29, 1985\r\nBirthPlace: KUMINTANG IBABA BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: neriza.marasigan@deped.gov.ph\r\nExtensionName: \r\nFirstName: NERIZA\r\nFullName: NERIZA S. MARASIGAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: SAYSON\r\nMobileNumber: 09663666555\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: PINAMUCAN PROPER\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774291	2025-03-21	14:48:39.3629797	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3868\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MICHAEL\r\nFullName: MICHAEL ANDER MARASIGAN\r\nGender: Male\r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: ANDER\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
774292	2025-03-21	14:48:39.3629797	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3868\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROLANDO\r\nFullName: ROLANDO BERSAMIN SAYSON\r\nGender: Male\r\nLastName: SAYSON\r\nMaidenName: \r\nMiddleName: BERSAMIN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774293	2025-03-21	14:48:39.3639740	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3868\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MAGDALENA\r\nFullName: MAGDALENA ARCEGA CALINGASAN\r\nGender: Male\r\nLastName: CALINGASAN\r\nMaidenName: \r\nMiddleName: ARCEGA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774294	2025-03-21	14:48:39.3639740	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3868\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
774295	2025-03-21	14:49:04.8994673	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: August 20, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 8,505.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Substitute\r\nToDate: October 18, 1998\r\n	admin	Experiences	1
774296	2025-03-21	14:49:04.9065046	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: October 01, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 6,013.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Substitute\r\nToDate: November 29, 1996\r\n	admin	Experiences	1
774297	2025-03-21	14:49:04.9109386	<Undetected>	Update	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 13679\r\nFromDate: February 01, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Substitute\r\nToDate: March 31, 1999\r\n	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGUSTIN NATIONAL HIGH SCHOOL\r\nExperienceId: 13679\r\nFromDate: February 01, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Substitute\r\nToDate: March 31, 1999\r\n	admin	Experiences	1
774298	2025-03-21	14:51:06.4742711	<Undetected>	Update	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 13645\r\nFromDate: July 17, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN ANTONIO HIGH SCHOOL\r\nExperienceId: 13645\r\nFromDate: July 17, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
774299	2025-03-21	14:51:06.4792884	<Undetected>	Update	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL\r\nExperienceId: 13678\r\nFromDate: October 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Substitute\r\nToDate: November 30, 2000\r\n	BasicInformationId: 3866\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / TABANGAO NATIONAL HIGH SCHOOL\r\nExperienceId: 13678\r\nFromDate: October 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Substitute\r\nToDate: November 30, 2000\r\n	admin	Experiences	1
774308	2025-03-21	14:51:53.2771541	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING ON ACTION RESEARCH\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774302	2025-03-21	14:51:47.5319046	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3868\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2002\r\nDateTo: 2006\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MAJOR IN PRE-SCHOOL\r\nSchoolorUniversity: SAINT BRIDGET COLLEGE\r\nYearGraduated: 2006\r\n	admin	EducationalBackgrounds	1
774303	2025-03-21	14:51:47.5418716	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: PINAMUCAN PROPER\r\nBasicInformationId: 3868\r\nBirthDate: June 29, 1985\r\nBirthPlace: KUMINTANG IBABA BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: neriza.marasigan@deped.gov.ph\r\nExtensionName: \r\nFirstName: NERIZA\r\nFullName: NERIZA S. MARASIGAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: SAYSON\r\nMobileNumber: 09663666555\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: PINAMUCAN PROPER\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: PINAMUCAN PROPER\r\nBasicInformationId: 3868\r\nBirthDate: June 29, 1985\r\nBirthPlace: KUMINTANG IBABA BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: neriza.marasigan@deped.gov.ph\r\nExtensionName: \r\nFirstName: NERIZA\r\nFullName: NERIZA S. MARASIGAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: SAYSON\r\nMobileNumber: 09663666555\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: PINAMUCAN PROPER\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774304	2025-03-21	14:51:47.5468551	<Undetected>	Update	BasicInformationId: 3868\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4241\r\nExtensionName: \r\nFirstName: MICHAEL\r\nFullName: MICHAEL ANDER MARASIGAN\r\nGender: Male\r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: ANDER\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3868\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4241\r\nExtensionName: \r\nFirstName: MICHAEL\r\nFullName: MICHAEL MARASIGAN\r\nGender: Male\r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: ANDER\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
774305	2025-03-21	14:51:47.5528349	<Undetected>	Update	BasicInformationId: 3868\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4242\r\nExtensionName: \r\nFirstName: ROLANDO\r\nFullName: ROLANDO BERSAMIN SAYSON\r\nGender: Male\r\nLastName: SAYSON\r\nMaidenName: \r\nMiddleName: BERSAMIN\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3868\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4242\r\nExtensionName: \r\nFirstName: ROLANDO\r\nFullName: ROLANDO SAYSON\r\nGender: Male\r\nLastName: SAYSON\r\nMaidenName: \r\nMiddleName: BERSAMIN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774306	2025-03-21	14:51:47.5568213	<Undetected>	Update	BasicInformationId: 3868\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4243\r\nExtensionName: \r\nFirstName: MAGDALENA\r\nFullName: MAGDALENA ARCEGA CALINGASAN\r\nGender: Male\r\nLastName: CALINGASAN\r\nMaidenName: \r\nMiddleName: ARCEGA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3868\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4243\r\nExtensionName: \r\nFirstName: MAGDALENA\r\nFullName: MAGDALENA CALINGASAN\r\nGender: Male\r\nLastName: CALINGASAN\r\nMaidenName: \r\nMiddleName: ARCEGA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774307	2025-03-21	14:51:47.5628016	<Undetected>	Update	BasicInformationId: 3868\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3665\r\n	BasicInformationId: 3868\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3665\r\n	admin	Questionnaires	1
774309	2025-03-21	14:53:29.9063965	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3868\r\nDateOfExamination: September 28, 2008\r\nDateOfRelease: February 02, 2009\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 28, 2008\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1013360\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 76\r\nTitle: LICENSURE EXAMINATION FOR TEACHER\r\n	admin	Eligibilities	1
774310	2025-03-21	14:55:27.7981548	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3868\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 02, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 31,277.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: January 01, 2025\r\n	admin	Experiences	1
774311	2025-03-21	14:55:27.8021416	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3868\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 17, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 19,286.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: November 01, 2016\r\n	admin	Experiences	1
774329	2025-03-21	14:59:40.5660194	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: STRENGTHENING GENDER AND DEVELOPMENT IN THE WORKPLACE\r\nTrainingId: 0\r\nType: \r\n	admin	Trainings	1
774338	2025-03-21	15:02:00.2177584	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FINAL DIVISION WORKSHOP ON QUALITY ASSURANCE OF CONTEXTUALIZED LEARNING RESOURCES/MATERIALS IN ALL LEARNING AREAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774314	2025-03-21	14:56:29.7844011	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3866\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16470\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774315	2025-03-21	14:56:29.7894097	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3866\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: January 27, 2024\r\nTrainingId: 16341\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774316	2025-03-21	14:56:29.7944174	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3866\r\nEmployeeTrainingId: 0\r\nFromDate: July 18, 2023\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 20, 2023\r\nTrainingId: 16155\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774324	2025-03-21	14:58:17.1256662	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3866\r\nSkillId: 0\r\nSkillName: N/A\r\n	admin	Skills	1
774325	2025-03-21	14:58:17.1296728	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3866\r\nRecognitionId: 0\r\nRecognitionName: TECHNICAL WORKING GROUP IN CLUSTERED DISTRICT SCHOOL PRESS CONFERENCE\r\n	admin	Recognitions	1
774326	2025-03-21	14:58:17.1397034	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3866\r\nRecognitionId: 0\r\nRecognitionName: TWG IN 2024 DISTRICT SPORTS MEET\r\n	admin	Recognitions	1
774327	2025-03-21	14:58:17.1437215	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3866\r\nRecognitionId: 0\r\nRecognitionName: ADVISER OF THE MOST CHILD-FRIENDLY CLASSHOMES\r\n	admin	Recognitions	1
774328	2025-03-21	14:58:17.1517343	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3866\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS CITY PUBLIC SCHOOL TEACHERS ASSOCIATION\r\n	admin	Organizations	1
774334	2025-03-21	15:01:31.8248334	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3866\r\nCharacterReferenceId: 0\r\nCompanyAddress: TULO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09196383526\r\nExtensionName: \r\nFirstName: NILO\r\nLastName: ALO\r\nMiddleName: D.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774335	2025-03-21	15:01:31.8438345	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3866\r\nCharacterReferenceId: 0\r\nCompanyAddress: GUINTO, TALUMPOK BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09172753556\r\nExtensionName: \r\nFirstName: SACORO\r\nLastName: COMIA\r\nMiddleName: R.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774336	2025-03-21	15:01:31.8482861	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3866\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO, ISLA VERDE\r\nCompanyName: \r\nContactNumber: 09302924754\r\nExtensionName: \r\nFirstName: ROMMEL\r\nLastName: EBORA\r\nMiddleName: R.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774337	2025-03-21	15:01:31.8543543	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: KANSAS\r\nBarangay: EL SITIO SUBDIVISION\r\nBasicInformationId: 3866\r\nBirthDate: June 11, 2000\r\nBirthPlace: SAN AGAPITO ISLA VERDE BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: elenita.perez@deped.gov.ph\r\nExtensionName: \r\nFirstName: ELENITA\r\nFullName: ELENITA R. PEREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: RESURRECCION\r\nMobileNumber: 09705957710\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: KANSAS\r\nPermanentBarangay: EL SITIO SUBDIVISION\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: BLK 51 LOT 38\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: BLK 51 LOT 38\r\nTIN: \r\nWeight: 68\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: KANSAS\r\nBarangay: EL SITIO SUBDIVISION\r\nBasicInformationId: 3866\r\nBirthDate: June 11, 2000\r\nBirthPlace: SAN AGAPITO ISLA VERDE BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: elenita.perez@deped.gov.ph\r\nExtensionName: \r\nFirstName: ELENITA\r\nFullName: ELENITA R. PEREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: 0506885\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: 02002087622\r\nHDMF: 1490-0101-2116\r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PEREZ\r\nMaidenName: \r\nMiddleName: RESURRECCION\r\nMobileNumber: 09705957710\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: KANSAS\r\nPermanentBarangay: EL SITIO SUBDIVISION\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: BLK 51 LOT 38\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000048147-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3063647-1\r\nStreetName: BLK 51 LOT 38\r\nTIN: 915-189-617-0000\r\nWeight: 68\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774354	2025-03-21	15:05:29.2470314	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANDRES, ISLA VERDE\r\nBasicInformationId: 0\r\nBirthDate: August 31, 1998\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: sheckamae.panganiban@deped.gov.ph\r\nExtensionName: \r\nFirstName: SHECKA MAE\r\nFullName: SHECKA MAE C. PANGANIBAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: CASCALLA\r\nMobileNumber: 09126299427\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANDRES, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: CUEVA\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: CUEVA\r\nTIN: \r\nWeight: 70\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774317	2025-03-21	14:56:39.6171643	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 07, 1993\r\nIsGovernmentService: True\r\nMonthlySalary: 3,103.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1993\r\n	admin	Experiences	1
774318	2025-03-21	14:56:39.6221723	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 17, 1990\r\nIsGovernmentService: True\r\nMonthlySalary: 3,102.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: January 30, 1992\r\n	admin	Experiences	1
774319	2025-03-21	14:56:39.6282112	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 23, 1989\r\nIsGovernmentService: True\r\nMonthlySalary: 3,102.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: August 31, 1990\r\n	admin	Experiences	1
774320	2025-03-21	14:56:39.6322182	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 3,902.00\r\nPositionHeld: ELEMENTARY GRADE TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1994\r\n	admin	Experiences	1
774321	2025-03-21	14:56:39.6372257	<Undetected>	Update	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 13659\r\nFromDate: February 23, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 28,417.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 13659\r\nFromDate: March 23, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 28,417.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
774322	2025-03-21	14:56:39.6423434	<Undetected>	Update	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 13661\r\nFromDate: September 01, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 23,044.00\r\nPositionHeld: HEAD TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 14-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 13661\r\nFromDate: September 10, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 23,044.00\r\nPositionHeld: HEAD TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 14-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
774323	2025-03-21	14:56:39.6473508	<Undetected>	Update	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 13671\r\nFromDate: March 15, 2004\r\nIsGovernmentService: True\r\nMonthlySalary: 11,167.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	BasicInformationId: 3861\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 13671\r\nFromDate: March 15, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 11,167.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
774330	2025-03-21	15:00:29.0897465	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3864\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROBERTO\r\nFullName: ROBERTO DE CASTRO DRIZ\r\nGender: Male\r\nLastName: DRIZ\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
774331	2025-03-21	15:00:29.0947462	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3864\r\nBirthDate: January 03, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: KYESK CARL ANGELO\r\nFullName: KYESK CARL ANGELO SEGUNIAL DRIZ\r\nGender: Male\r\nLastName: DRIZ\r\nMaidenName: \r\nMiddleName: SEGUNIAL\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774332	2025-03-21	15:00:29.0987462	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3864\r\nBirthDate: May 01, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: KYRO JOSEPH\r\nFullName: KYRO JOSEPH SEGUNIAL DRIZ\r\nGender: Male\r\nLastName: DRIZ\r\nMaidenName: \r\nMiddleName: SEGUNIAL\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774333	2025-03-21	15:00:29.1087462	<Undetected>	Update	BasicInformationId: 3864\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3661\r\n	BasicInformationId: 3864\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3661\r\n	admin	Questionnaires	1
774339	2025-03-21	15:03:16.0155131	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3864\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1975\r\nDateTo: 1980\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BULI ELEMENTARY SCHOOL\r\nYearGraduated: 1980\r\n	admin	EducationalBackgrounds	1
774340	2025-03-21	15:03:16.0265429	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3864\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1981\r\nDateTo: 1984\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS WEST HIGH SCHOOL\r\nYearGraduated: 1984\r\n	admin	EducationalBackgrounds	1
774341	2025-03-21	15:03:16.0319010	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3864\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1987\r\nDateTo: 1990\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: RIZAL COLLEGE OF TAAL\r\nYearGraduated: 1990\r\n	admin	EducationalBackgrounds	1
774342	2025-03-21	15:03:16.0369160	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANTONIO, ISLA VERDE\r\nBasicInformationId: 3864\r\nBirthDate: November 15, 1966\r\nBirthPlace: BULI, TAAL, BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: maelena.driz@deped.gov.ph\r\nExtensionName: \r\nFirstName: MA. ELENA\r\nFullName: MA. ELENA S. DRIZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DRIZ\r\nMaidenName: \r\nMiddleName: SEGUNIAL\r\nMobileNumber: 09920102694\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANTONIO, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 75\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANTONIO, ISLA VERDE\r\nBasicInformationId: 3864\r\nBirthDate: November 15, 1966\r\nBirthPlace: BULI, TAAL, BATANGAS\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: maelena.driz@deped.gov.ph\r\nExtensionName: \r\nFirstName: MA. ELENA\r\nFullName: MA. ELENA S. DRIZ\r\nGender: Female\r\nGovernmentIdIssuedDate: August 08, 1999\r\nGovernmentIdNumber: 0636192\r\nGovernmentIdPlaceIssued: NATIONAL CAPITAL REGION\r\nGovernmentIssuedId: PRC\r\nGSIS: 02002087674\r\nHDMF: 1211-4467-2441\r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DRIZ\r\nMaidenName: \r\nMiddleName: SEGUNIAL\r\nMobileNumber: 09920102694\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANTONIO, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000063477-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 302-012-087-0000\r\nWeight: 75\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774343	2025-03-21	15:03:16.0479310	<Undetected>	Update	BasicInformationId: 3864\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4244\r\nExtensionName: \r\nFirstName: ROBERTO\r\nFullName: ROBERTO DE CASTRO DRIZ\r\nGender: Male\r\nLastName: DRIZ\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3864\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4244\r\nExtensionName: \r\nFirstName: ROBERTO\r\nFullName: ROBERTO DRIZ\r\nGender: Male\r\nLastName: DRIZ\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
774344	2025-03-21	15:03:16.0599658	<Undetected>	Update	BasicInformationId: 3864\r\nBirthDate: January 03, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4245\r\nExtensionName: \r\nFirstName: KYESK CARL ANGELO\r\nFullName: KYESK CARL ANGELO SEGUNIAL DRIZ\r\nGender: Male\r\nLastName: DRIZ\r\nMaidenName: \r\nMiddleName: SEGUNIAL\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3864\r\nBirthDate: January 03, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4245\r\nExtensionName: \r\nFirstName: KYESK CARL ANGELO\r\nFullName: KYESK CARL ANGELO DRIZ\r\nGender: Male\r\nLastName: DRIZ\r\nMaidenName: \r\nMiddleName: SEGUNIAL\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774345	2025-03-21	15:03:16.0813816	<Undetected>	Update	BasicInformationId: 3864\r\nBirthDate: May 01, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4246\r\nExtensionName: \r\nFirstName: KYRO JOSEPH\r\nFullName: KYRO JOSEPH SEGUNIAL DRIZ\r\nGender: Male\r\nLastName: DRIZ\r\nMaidenName: \r\nMiddleName: SEGUNIAL\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3864\r\nBirthDate: May 01, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4246\r\nExtensionName: \r\nFirstName: KYRO JOSEPH\r\nFullName: KYRO JOSEPH DRIZ\r\nGender: Male\r\nLastName: DRIZ\r\nMaidenName: \r\nMiddleName: SEGUNIAL\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774351	2025-03-21	15:04:37.1481749	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3864\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ANTONIO, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09564781003\r\nExtensionName: \r\nFirstName: PRECIOSA\r\nLastName: MEDINA\r\nMiddleName: E\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774352	2025-03-21	15:04:37.1575602	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3864\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ANTONIO, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09602114973\r\nExtensionName: \r\nFirstName: JOSE BUHAY\r\nLastName: FATALLA\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774353	2025-03-21	15:04:37.1615840	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3864\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ANTONIO, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09108452404\r\nExtensionName: \r\nFirstName: FRANCISCO\r\nLastName: DE CASTRO\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774358	2025-03-21	15:05:59.5209377	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3864\r\nDateOfExamination: August 08, 1999\r\nDateOfRelease: November 15, 2023\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 08, 1999\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0636192\r\nPlaceOfExamination: NATIONAL CAPITAL REGION\r\nRating: 76.8\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
774359	2025-03-21	15:06:33.8205577	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPACITY BUILDING SCIENCE, MATHEMATICS AND ENGLISH TEACHERS ON THE IMPLEMENTATION OF THE NATIONAL LEARNING CAMP\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774346	2025-03-21	15:04:01.3176892	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3868\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2025\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: LIBJO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: January 24, 2025\r\nTrainingId: 16682\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774347	2025-03-21	15:04:01.3266602	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3868\r\nEmployeeTrainingId: 0\r\nFromDate: December 12, 2024\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: LIBJO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: December 12, 2024\r\nTrainingId: 16644\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774348	2025-03-21	15:04:01.3316437	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3868\r\nEmployeeTrainingId: 0\r\nFromDate: November 16, 2024\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: LIBJO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: November 16, 2024\r\nTrainingId: 16691\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774349	2025-03-21	15:04:01.3366270	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3868\r\nEmployeeTrainingId: 0\r\nFromDate: November 11, 2024\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: LIBJO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: November 13, 2024\r\nTrainingId: 16692\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774350	2025-03-21	15:04:01.3406136	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3868\r\nEmployeeTrainingId: 0\r\nFromDate: October 31, 2024\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: LIBJO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: October 31, 2024\r\nTrainingId: 16683\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774360	2025-03-21	15:08:35.4983707	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3868\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
774361	2025-03-21	15:08:35.5033534	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3868\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
774362	2025-03-21	15:08:35.5083372	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3868\r\nRecognitionId: 0\r\nRecognitionName: WRITER/DEVELOPER DURING THE REVISION OF REGIONAL OFFICE (RO) QUALITY-ASSURED SDO CONTEXTUALIZED AND DEVELOP LEARNING RESOURCES FOR ELLN,SHS\r\n	admin	Recognitions	1
774363	2025-03-21	15:08:35.5183036	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3868\r\nRecognitionId: 0\r\nRecognitionName: RESOURCE SPEAKER DIVISION TRAINING ON THE ENHANCEMENT OF THE PEDAGOGICAL SKILLS IN TEACHING READING IN THE MOTHER TONGUE AND BRIDGING PROCESS OF GRADE ONE AND KINDERGARTEN TEACHERS OF DISTRICT VII AND IX\r\n	admin	Recognitions	1
774374	2025-03-21	15:10:57.8790413	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3868\r\nCharacterReferenceId: 0\r\nCompanyAddress: TABANGAO DAO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 0437271358\r\nExtensionName: \r\nFirstName: RICA\r\nLastName: SUAREZ\r\nMiddleName: A \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774375	2025-03-21	15:10:57.8880113	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3868\r\nCharacterReferenceId: 0\r\nCompanyAddress: CONDE ITAAS BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09276968746\r\nExtensionName: \r\nFirstName: TOMMY\r\nLastName: ALMAREZ\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774376	2025-03-21	15:10:57.8930400	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3868\r\nCharacterReferenceId: 0\r\nCompanyAddress: TANGISAN LIBJO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09972248393\r\nExtensionName: \r\nFirstName: MILAGROS\r\nLastName: MAYATE\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774383	2025-03-21	15:13:26.0015151	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: PINAMUCAN PROPER\r\nBasicInformationId: 3868\r\nBirthDate: June 29, 1985\r\nBirthPlace: KUMINTANG IBABA BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: neriza.marasigan@deped.gov.ph\r\nExtensionName: \r\nFirstName: NERIZA\r\nFullName: NERIZA S. MARASIGAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: SAYSON\r\nMobileNumber: 09663666555\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: PINAMUCAN PROPER\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: PINAMUCAN PROPER\r\nBasicInformationId: 3868\r\nBirthDate: June 29, 1985\r\nBirthPlace: KUMINTANG IBABA BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: neriza.marasigan@deped.gov.ph\r\nExtensionName: \r\nFirstName: NERIZA\r\nFullName: NERIZA S. MARASIGAN\r\nGender: Female\r\nGovernmentIdIssuedDate: February 02, 2009\r\nGovernmentIdNumber: 1013360\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02004112730\r\nHDMF: 1211-4449-8381\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: SAYSON\r\nMobileNumber: 09663666555\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: PINAMUCAN PROPER\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050241832-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 42-2030995-4\r\nStreetName: \r\nTIN: 283-255-438-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774436	2025-03-21	15:31:27.8975973	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: THIRD HONORABLE MENTION\r\nBasicInformationId: 3862\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2004\r\nDateTo: 2008\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAN ANTONIO NATIONAL HIGH SCHOOL\r\nYearGraduated: 2008\r\n	admin	EducationalBackgrounds	1
774355	2025-03-21	15:05:29.2620450	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3869\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RODEL\r\nFullName: RODEL ESCAREZ PANGANIBAN\r\nGender: Male\r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: ESCAREZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774356	2025-03-21	15:05:29.2620450	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3869\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: HEIDE\r\nFullName: HEIDE ESCAREZ CASCALLA\r\nGender: Female\r\nLastName: CASCALLA\r\nMaidenName: \r\nMiddleName: ESCAREZ\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774357	2025-03-21	15:05:29.2630523	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3869\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
774365	2025-03-21	15:09:44.1170909	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3869\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: PARANG CUEVA ELEMENTARY SCHOOL\r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
774366	2025-03-21	15:09:44.1286674	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3869\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2011\r\nDateTo: 2015\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGUSTIN NATIONAL HIGH SCHOOL\r\nYearGraduated: 2015\r\n	admin	EducationalBackgrounds	1
774367	2025-03-21	15:09:44.1445016	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3869\r\nCourse: \r\nCourseId: 1270\r\nCourseOrMajor: \r\nDateFrom: 2015\r\nDateTo: 2020\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MAJOR IN MATHEMATICS\r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY MAIN I\r\nYearGraduated: 2020\r\n	admin	EducationalBackgrounds	1
774368	2025-03-21	15:09:44.1627316	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3869\r\nCourse: \r\nCourseId: 1348\r\nCourseOrMajor: \r\nDateFrom: 2022\r\nDateTo: 2023\r\nEducationalAttainment: 18 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN MATHEMATICS\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
774369	2025-03-21	15:09:44.1667892	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3869\r\nDateOfExamination: March 29, 2020\r\nDateOfRelease: August 31, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: March 29, 2020\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1904248\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 81\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS (RA 1080)\r\n	admin	Eligibilities	1
774370	2025-03-21	15:09:44.1727893	<Undetected>	Update	BasicInformationId: 3869\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4247\r\nExtensionName: \r\nFirstName: RODEL\r\nFullName: RODEL ESCAREZ PANGANIBAN\r\nGender: Male\r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: ESCAREZ\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3869\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4247\r\nExtensionName: \r\nFirstName: RODEL\r\nFullName: RODEL PANGANIBAN\r\nGender: Male\r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: ESCAREZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774371	2025-03-21	15:09:44.1770527	<Undetected>	Update	BasicInformationId: 3869\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4248\r\nExtensionName: \r\nFirstName: HEIDE\r\nFullName: HEIDE ESCAREZ CASCALLA\r\nGender: Female\r\nLastName: CASCALLA\r\nMaidenName: \r\nMiddleName: ESCAREZ\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3869\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4248\r\nExtensionName: \r\nFirstName: HEIDE\r\nFullName: HEIDE CASCALLA\r\nGender: Female\r\nLastName: CASCALLA\r\nMaidenName: \r\nMiddleName: ESCAREZ\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774372	2025-03-21	15:09:44.1821024	<Undetected>	Update	BasicInformationId: 3869\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3666\r\n	BasicInformationId: 3869\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3666\r\n	admin	Questionnaires	1
774384	2025-03-21	15:13:33.2677381	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3869\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO INTEGRATED SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,024.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: March 21, 2025\r\n	admin	Experiences	1
774405	2025-03-21	15:23:07.8031152	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3864\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,619.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
774378	2025-03-21	15:11:41.8131106	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3864\r\nEmployeeTrainingId: 0\r\nFromDate: September 23, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 27, 2024\r\nTrainingId: 16693\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774379	2025-03-21	15:11:41.8241653	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3864\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: PARANG ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16348\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774380	2025-03-21	15:11:41.8281716	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3864\r\nEmployeeTrainingId: 0\r\nFromDate: August 02, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 02, 2023\r\nTrainingId: 15172\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774381	2025-03-21	15:11:41.8365724	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3864\r\nEmployeeTrainingId: 0\r\nFromDate: August 02, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 02, 2023\r\nTrainingId: 16695\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774382	2025-03-21	15:11:41.8405787	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3864\r\nEmployeeTrainingId: 0\r\nFromDate: April 12, 2022\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: THE PHILIPPINES AND DEPED REGION IV-A CALABARZON\r\nStatus: \r\nToDate: April 12, 2022\r\nTrainingId: 16673\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774397	2025-03-21	15:23:07.7571372	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3864\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 32,245.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
774398	2025-03-21	15:23:07.7621462	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3864\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 30,705.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
774399	2025-03-21	15:23:07.7671459	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3864\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 17, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 29,165.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
774400	2025-03-21	15:23:07.7716240	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3864\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 28,161.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: January 16, 2023\r\n	admin	Experiences	1
774401	2025-03-21	15:23:07.7767526	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3864\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 26,600.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: December 21, 2022\r\n	admin	Experiences	1
774402	2025-03-21	15:23:07.7817526	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3864\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 25,038.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
774403	2025-03-21	15:23:07.7861269	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3864\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 21, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 23,477.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
774404	2025-03-21	15:23:07.7968046	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3864\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 23,181.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: July 20, 2020\r\n	admin	Experiences	1
774385	2025-03-21	15:13:33.2737436	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3869\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO INTEGRATED SCHOOL\r\nExperienceId: 0\r\nFromDate: August 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
774386	2025-03-21	15:13:33.2782327	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3869\r\nCompanyInstitution: STONYHURST KUMON LEARNING CENTER\r\nExperienceId: 0\r\nFromDate: January 03, 2023\r\nIsGovernmentService: False\r\nMonthlySalary: 12,000.00\r\nPositionHeld: KUMON TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: July 15, 2023\r\n	admin	Experiences	1
774387	2025-03-21	15:13:33.2832647	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3869\r\nCompanyInstitution: STONYHURST KUMON LEARNING CENTER\r\nExperienceId: 0\r\nFromDate: October 01, 2021\r\nIsGovernmentService: False\r\nMonthlySalary: 12,000.00\r\nPositionHeld: KUMON TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: September 30, 2022\r\n	admin	Experiences	1
774388	2025-03-21	15:15:13.5289409	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SEMINAR ON EDUCATIONAL INNOVATION AND PEDAGOGIES FOR TEACHERS OF ENGLISH, SCIENCE, MATHEMATICS, FILIPINO, SOCIAL STUDIES, MAPEH, ESP, AND TLE MAJORS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774389	2025-03-21	15:17:26.4574456	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: UPSKILLING AND RESKILLING TEACHING AND SUPERVISION SKILLS TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774390	2025-03-21	15:19:50.5682533	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3869\r\nSkillId: 0\r\nSkillName: COMPUTER SKILLS\r\n	admin	Skills	1
774391	2025-03-21	15:19:50.5742540	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3869\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
774392	2025-03-21	15:19:50.5782537	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3869\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
774393	2025-03-21	15:19:50.5837331	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3869\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16339\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774394	2025-03-21	15:19:50.5877474	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3869\r\nEmployeeTrainingId: 0\r\nFromDate: February 01, 2024\r\nHours: 80\r\nNatureOfParticipation: \r\nSponsoringAgency: CONTINUING PROFESSIONAL DEVELOPMENT CENTER FOR TEACHERS TRAINING CENTER\r\nStatus: \r\nToDate: February 10, 2024\r\nTrainingId: 16697\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774395	2025-03-21	15:19:50.5927777	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3869\r\nEmployeeTrainingId: 0\r\nFromDate: January 15, 2024\r\nHours: 80\r\nNatureOfParticipation: \r\nSponsoringAgency: CONTINUING PROFESSIONAL DEVELOPMENT CENTER FOR TEACHERS TRAINING CENTER\r\nStatus: \r\nToDate: January 24, 2024\r\nTrainingId: 16698\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774396	2025-03-21	15:19:50.6012238	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3869\r\nEmployeeTrainingId: 0\r\nFromDate: January 01, 2024\r\nHours: 80\r\nNatureOfParticipation: \r\nSponsoringAgency: CONTINUING PROFESSIONAL DEVELOPMENT CENTER FOR TEACHERS TRAINING CENTER\r\nStatus: \r\nToDate: January 01, 2024\r\nTrainingId: 16495\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774420	2025-03-21	15:23:58.2789058	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3869\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09196383526\r\nExtensionName: \r\nFirstName: NILO\r\nLastName: ALO\r\nMiddleName: D.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774421	2025-03-21	15:23:58.2839225	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3869\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ANDRES ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09171320641\r\nExtensionName: \r\nFirstName: REV JUANITO\r\nLastName: MAGPANTAY\r\nMiddleName: M.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774422	2025-03-21	15:23:58.2889834	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3869\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ANDRES ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09971827343\r\nExtensionName: \r\nFirstName: MIRIAM\r\nLastName: FUENTES\r\nMiddleName: R.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774500	2025-03-21	15:45:22.2252771	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3862\r\nEmployeeTrainingId: 0\r\nFromDate: April 26, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: April 26, 2024\r\nTrainingId: 16506\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774406	2025-03-21	15:23:07.8094489	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3864\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,963.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
774407	2025-03-21	15:23:07.8145964	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3864\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 21, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 20,326.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
774408	2025-03-21	15:23:07.8186037	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3864\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 20,088.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: July 20, 2017\r\n	admin	Experiences	1
774409	2025-03-21	15:23:07.8236424	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3864\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,496.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
774410	2025-03-21	15:23:07.8286505	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3864\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 22, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 18,922.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
774411	2025-03-21	15:23:07.8336587	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3864\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 18,735.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: July 21, 2014\r\n	admin	Experiences	1
774412	2025-03-21	15:23:07.8387940	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3864\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 22, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 17,318.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
774413	2025-03-21	15:23:07.8438138	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3864\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 17,099.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: July 21, 2011\r\n	admin	Experiences	1
774414	2025-03-21	15:23:07.8478200	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3864\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 15,649.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
774415	2025-03-21	15:23:07.8529257	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3864\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 14,198.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
774416	2025-03-21	15:23:07.8579343	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3864\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 21, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,026.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
774417	2025-03-21	15:23:07.8629421	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3864\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: July 20, 2008\r\n	admin	Experiences	1
774418	2025-03-21	15:23:07.8670111	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3864\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 14, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
774419	2025-03-21	15:23:07.8720283	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3864\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: December 01, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 13, 2007\r\n	admin	Experiences	1
774423	2025-03-21	15:23:58.2929963	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANDRES, ISLA VERDE\r\nBasicInformationId: 3869\r\nBirthDate: August 31, 1998\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: sheckamae.panganiban@deped.gov.ph\r\nExtensionName: \r\nFirstName: SHECKA MAE\r\nFullName: SHECKA MAE C. PANGANIBAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: CASCALLA\r\nMobileNumber: 09126299427\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANDRES, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: CUEVA\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: CUEVA\r\nTIN: \r\nWeight: 70\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANDRES, ISLA VERDE\r\nBasicInformationId: 3869\r\nBirthDate: August 31, 1998\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: sheckamae.panganiban@deped.gov.ph\r\nExtensionName: \r\nFirstName: SHECKA MAE\r\nFullName: SHECKA MAE C. PANGANIBAN\r\nGender: Female\r\nGovernmentIdIssuedDate: April 26, 2022\r\nGovernmentIdNumber: 1904248\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02006514799\r\nHDMF: 1212-8088-0944\r\nHeight: 1.53\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PANGANIBAN\r\nMaidenName: \r\nMiddleName: CASCALLA\r\nMobileNumber: 09126299427\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANDRES, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: CUEVA\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025748868-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 35-0297449-5\r\nStreetName: CUEVA\r\nTIN: 768-604-644-0000\r\nWeight: 70\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774441	2025-03-21	15:31:45.1342604	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: MARINERS RESIDENCES\r\nBarangay: KUMINTANG ILAYA\r\nBasicInformationId: 0\r\nBirthDate: January 09, 1999\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: judyannbagro@gmail.com\r\nExtensionName: \r\nFirstName: JUDY ANN\r\nFullName: JUDY ANN DC. BAGRO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BAGRO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nMobileNumber: 09096248697\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: MARINERS RESIDENCES\r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: GOOD SAILING\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: GOOD SAILING\r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774442	2025-03-21	15:31:45.1573346	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3871\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGUSTIN ELEMENTARY SCHOOL\r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
774443	2025-03-21	15:31:45.1573346	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3871\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2011\r\nDateTo: 2015\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGUSTIN NATIONAL HIGH SCHOOL\r\nYearGraduated: 2015\r\n	admin	EducationalBackgrounds	1
774444	2025-03-21	15:31:45.1583411	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3871\r\nCourse: \r\nCourseId: 1270\r\nCourseOrMajor: \r\nDateFrom: 2015\r\nDateTo: 2019\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MAJOR IN FILIPINO\r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2019\r\n	admin	EducationalBackgrounds	1
774445	2025-03-21	15:31:45.1583411	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3871\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2022\r\nDateTo: 2022\r\nEducationalAttainment: 9 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN FILIPINO TEACHING\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
774446	2025-03-21	15:31:45.1583411	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3871\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JUSITA\r\nFullName: JUSITA CASTRO DE CASTRO\r\nGender: Female\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: CASTRO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774447	2025-03-21	15:31:45.1593467	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3871\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JUSITA\r\nFullName: JUSITA CASTRO DE CASTRO\r\nGender: Female\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: CASTRO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774448	2025-03-21	15:31:45.1593467	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3871\r\nDateOfExamination: October 02, 2022\r\nDateOfRelease: January 09, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: October 02, 2022\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 2055147\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 76.40\r\nTitle: LICENSURE EXAM FOR TEACHERS (RA 1080)\r\n	admin	Eligibilities	1
774535	2025-03-21	16:06:08.8279375	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3870\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
774424	2025-03-21	15:27:26.9649123	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: TALUMPOK EAST\r\nBasicInformationId: 0\r\nBirthDate: August 15, 1991\r\nBirthPlace: TALUMPOK EAST BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: Jennylyn.Matira@deped.gov.ph\r\nExtensionName: \r\nFirstName: JENNYLYN\r\nFullName: JENNYLYN B. MATIRA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.73\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437408838\r\nLastName: MATIRA\r\nMaidenName: \r\nMiddleName: BRIONES\r\nMobileNumber: 09264407587\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: TALUMPOK EAST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 70\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774425	2025-03-21	15:27:26.9859140	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3870\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JAYCEE\r\nFullName: JAYCEE DOMIGO MATIRA\r\nGender: Male\r\nLastName: MATIRA\r\nMaidenName: \r\nMiddleName: DOMIGO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
774426	2025-03-21	15:27:26.9859140	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3870\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LAMBERTO\r\nFullName: LAMBERTO MAGTIBAY BRIONES\r\nGender: Male\r\nLastName: BRIONES\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774427	2025-03-21	15:27:26.9868956	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3870\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LOLITA\r\nFullName: LOLITA PEREZ DELICA\r\nGender: Male\r\nLastName: DELICA\r\nMaidenName: \r\nMiddleName: PEREZ\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774428	2025-03-21	15:27:26.9868956	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3870\r\nBirthDate: July 01, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PRINCE YUAN\r\nFullName: PRINCE YUAN B MATIRA\r\nGender: Male\r\nLastName: MATIRA\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774429	2025-03-21	15:27:26.9868956	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3870\r\nBirthDate: December 29, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PRINCESS YSABELLE\r\nFullName: PRINCESS YSABELLE B MATIRA\r\nGender: Male\r\nLastName: MATIRA\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774430	2025-03-21	15:27:26.9868956	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3870\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
774431	2025-03-21	15:29:27.7448696	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3862\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: NESTOR\r\nFullName: NESTOR GARBIN RAYOS\r\nGender: Male\r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: GARBIN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774432	2025-03-21	15:29:27.7522339	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3862\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DELIA\r\nFullName: DELIA EBORA RAYOS\r\nGender: Male\r\nLastName: RAYOS\r\nMaidenName: PANGILINAN\r\nMiddleName: EBORA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774433	2025-03-21	15:29:27.7614729	<Undetected>	Update	BasicInformationId: 3862\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3659\r\n	BasicInformationId: 3862\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3659\r\n	admin	Questionnaires	1
774434	2025-03-21	15:30:07.8760207	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BS DEVELOPMENT COMMUNICATION\r\nLevel: College\r\n	admin	Courses	1
774435	2025-03-21	15:31:27.8855425	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3862\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1998\r\nDateTo: 2004\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: PARANG ELEMENTARY SCHOOL\r\nYearGraduated: 2004\r\n	admin	EducationalBackgrounds	1
774437	2025-03-21	15:31:27.9017050	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3862\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 2008\r\nDateTo: 2012\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: COLEGIO NG LUNGSOD NG BATANGAS\r\nYearGraduated: 2012\r\n	admin	EducationalBackgrounds	1
774438	2025-03-21	15:31:27.9107198	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3862\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2016\r\nDateTo: 2019\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: ELEMENTARY EDUCATION\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2019\r\n	admin	EducationalBackgrounds	1
774439	2025-03-21	15:31:27.9162293	<Undetected>	Update	BasicInformationId: 3862\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4254\r\nExtensionName: \r\nFirstName: NESTOR\r\nFullName: NESTOR GARBIN RAYOS\r\nGender: Male\r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: GARBIN\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3862\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4254\r\nExtensionName: \r\nFirstName: NESTOR\r\nFullName: NESTOR RAYOS\r\nGender: Male\r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: GARBIN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774440	2025-03-21	15:31:27.9212374	<Undetected>	Update	BasicInformationId: 3862\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4255\r\nExtensionName: \r\nFirstName: DELIA\r\nFullName: DELIA EBORA RAYOS\r\nGender: Male\r\nLastName: RAYOS\r\nMaidenName: PANGILINAN\r\nMiddleName: EBORA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3862\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4255\r\nExtensionName: \r\nFirstName: DELIA\r\nFullName: DELIA RAYOS\r\nGender: Male\r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774461	2025-03-21	15:33:17.2260745	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANTONIO, ISLA VERDE\r\nBasicInformationId: 3862\r\nBirthDate: December 06, 1991\r\nBirthPlace: SAN ANTONIO, ISLA VERDE, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: romelinard.rayos@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROMELINARD\r\nFullName: ROMELINARD E. RAYOS\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.72\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: EBORA\r\nMobileNumber: 09452154049\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANTONIO, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 69\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANTONIO, ISLA VERDE\r\nBasicInformationId: 3862\r\nBirthDate: December 06, 1991\r\nBirthPlace: SAN ANTONIO, ISLA VERDE, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: romelinard.rayos@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROMELINARD\r\nFullName: ROMELINARD E. RAYOS\r\nGender: Male\r\nGovernmentIdIssuedDate: May 15, 2023\r\nGovernmentIdNumber: 1202865\r\nGovernmentIdPlaceIssued: LUCENA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02005213541\r\nHDMF: 1210-2670-0746\r\nHeight: 1.72\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: EBORA\r\nMobileNumber: 09452154049\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANTONIO, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050323855-0\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 421-233-825-0000\r\nWeight: 69\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774462	2025-03-21	15:34:33.0069914	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3862\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ANTONIO, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09461270526\r\nExtensionName: \r\nFirstName: PRECIOSA\r\nLastName: MEDINA\r\nMiddleName: E\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774463	2025-03-21	15:34:33.0118895	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3862\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ANTONIO, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09635263097\r\nExtensionName: \r\nFirstName: BUHAY JOSE\r\nLastName: FATALLA\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774464	2025-03-21	15:34:33.0179118	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3862\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ANTONIO, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09615493370\r\nExtensionName: \r\nFirstName: MIRIAM\r\nLastName: LAUDE\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774466	2025-03-21	15:35:35.3545396	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3862\r\nDateOfExamination: March 10, 2013\r\nDateOfRelease: December 06, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: March 10, 2013\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1202865\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 79.2\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
774481	2025-03-21	15:40:31.7748647	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3862\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,421.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
774482	2025-03-21	15:40:31.7800371	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3862\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
774536	2025-03-21	16:06:08.8389003	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3870\r\nSkillId: 0\r\nSkillName: READING\r\n	admin	Skills	1
774450	2025-03-21	15:32:06.0640957	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3870\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1998\r\nDateTo: 2004\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: TALUMPOK EAST ELEMENTARY SCHOOL\r\nYearGraduated: 2004\r\n	admin	EducationalBackgrounds	1
774451	2025-03-21	15:32:06.0680822	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: 5th HONORABLE MENTION\r\nBasicInformationId: 3870\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2004\r\nDateTo: 2008\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: TALUMPOK NATIONAL HIGH SCHOOL\r\nYearGraduated: 2008\r\n	admin	EducationalBackgrounds	1
774452	2025-03-21	15:32:06.0790456	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3870\r\nCourse: \r\nCourseId: 1396\r\nCourseOrMajor: \r\nDateFrom: 2008\r\nDateTo: 2012\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2012\r\n	admin	EducationalBackgrounds	1
774453	2025-03-21	15:32:06.0830320	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3870\r\nCourse: \r\nCourseId: 1374\r\nCourseOrMajor: \r\nDateFrom: 2016\r\nDateTo: 2016\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 2016\r\n	admin	EducationalBackgrounds	1
774454	2025-03-21	15:32:06.0920021	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: TALUMPOK EAST\r\nBasicInformationId: 3870\r\nBirthDate: August 15, 1991\r\nBirthPlace: TALUMPOK EAST BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: Jennylyn.Matira@deped.gov.ph\r\nExtensionName: \r\nFirstName: JENNYLYN\r\nFullName: JENNYLYN B. MATIRA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.73\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437408838\r\nLastName: MATIRA\r\nMaidenName: \r\nMiddleName: BRIONES\r\nMobileNumber: 09264407587\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: TALUMPOK EAST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 70\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: TALUMPOK EAST\r\nBasicInformationId: 3870\r\nBirthDate: August 15, 1991\r\nBirthPlace: TALUMPOK EAST BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: Jennylyn.Matira@deped.gov.ph\r\nExtensionName: \r\nFirstName: JENNYLYN\r\nFullName: JENNYLYN B. MATIRA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.73\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437408838\r\nLastName: MATIRA\r\nMaidenName: \r\nMiddleName: BRIONES\r\nMobileNumber: 09264407587\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: TALUMPOK EAST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 70\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774455	2025-03-21	15:32:06.0959886	<Undetected>	Update	BasicInformationId: 3870\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4249\r\nExtensionName: \r\nFirstName: JAYCEE\r\nFullName: JAYCEE DOMIGO MATIRA\r\nGender: Male\r\nLastName: MATIRA\r\nMaidenName: \r\nMiddleName: DOMIGO\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3870\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4249\r\nExtensionName: \r\nFirstName: JAYCEE\r\nFullName: JAYCEE MATIRA\r\nGender: Male\r\nLastName: MATIRA\r\nMaidenName: \r\nMiddleName: DOMIGO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
774456	2025-03-21	15:32:06.1019692	<Undetected>	Update	BasicInformationId: 3870\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4250\r\nExtensionName: \r\nFirstName: LAMBERTO\r\nFullName: LAMBERTO MAGTIBAY BRIONES\r\nGender: Male\r\nLastName: BRIONES\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3870\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4250\r\nExtensionName: \r\nFirstName: LAMBERTO\r\nFullName: LAMBERTO BRIONES\r\nGender: Male\r\nLastName: BRIONES\r\nMaidenName: \r\nMiddleName: MAGTIBAY\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774457	2025-03-21	15:32:06.1059554	<Undetected>	Update	BasicInformationId: 3870\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4251\r\nExtensionName: \r\nFirstName: LOLITA\r\nFullName: LOLITA PEREZ DELICA\r\nGender: Male\r\nLastName: DELICA\r\nMaidenName: \r\nMiddleName: PEREZ\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3870\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4251\r\nExtensionName: \r\nFirstName: LOLITA\r\nFullName: LOLITA DELICA\r\nGender: Male\r\nLastName: DELICA\r\nMaidenName: \r\nMiddleName: PEREZ\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774458	2025-03-21	15:32:06.1109385	<Undetected>	Update	BasicInformationId: 3870\r\nBirthDate: July 01, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4252\r\nExtensionName: \r\nFirstName: PRINCE YUAN\r\nFullName: PRINCE YUAN B MATIRA\r\nGender: Male\r\nLastName: MATIRA\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3870\r\nBirthDate: July 01, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4252\r\nExtensionName: \r\nFirstName: PRINCE YUAN\r\nFullName: PRINCE YUAN MATIRA\r\nGender: Male\r\nLastName: MATIRA\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774459	2025-03-21	15:32:06.1159220	<Undetected>	Update	BasicInformationId: 3870\r\nBirthDate: December 29, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4253\r\nExtensionName: \r\nFirstName: PRINCESS YSABELLE\r\nFullName: PRINCESS YSABELLE B MATIRA\r\nGender: Male\r\nLastName: MATIRA\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3870\r\nBirthDate: December 29, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4253\r\nExtensionName: \r\nFirstName: PRINCESS YSABELLE\r\nFullName: PRINCESS YSABELLE MATIRA\r\nGender: Male\r\nLastName: MATIRA\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774537	2025-03-21	16:06:08.8428871	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3870\r\nRecognitionId: 0\r\nRecognitionName: OUTSTANDING ADMINISTRATIVE ASSISTANT (FIRST PLACE) GAWAD STAR SYM 2023-2024\r\n	admin	Recognitions	1
774465	2025-03-21	15:34:36.2055411	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3870\r\nDateOfExamination: March 26, 2017\r\nDateOfRelease: August 15, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: March 26, 2017\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1545202\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 79\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
774467	2025-03-21	15:36:45.7874576	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3870\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 02, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 22,908.00\r\nPositionHeld: ADMINISTRATIVE ASSISTANT II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 08-3\r\nStatus: Permanent\r\nToDate: January 01, 2024\r\n	admin	Experiences	1
774479	2025-03-21	15:39:47.2028182	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON THE GUIDELINES ON THE IMPLEMENTATION OF SBFP FOR SY 2024-2025\r\nTrainingId: 0\r\nType: \r\n	admin	Trainings	1
774496	2025-03-21	15:43:08.8431139	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL LEARNING ACTION CELL SESSION ON ASSESSMENT AS A FORM OF FEEDBACK GIVING ACTIVITIES CUM SCHOOL MONITORING , EVALUATION AND ADJUSTMENTS (SMEA)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774468	2025-03-21	15:38:03.9943252	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3871\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO INTEGRATED HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: August 12, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 30,024.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: March 21, 2025\r\n	admin	Experiences	1
774469	2025-03-21	15:38:03.9983407	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3871\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO INTEGRATED HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: August 12, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
774470	2025-03-21	15:38:04.0077721	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3871\r\nCompanyInstitution: BATANGAS STATE UNIVERSITY - THE NATIONAL ENGINEERING UNIVERSITY\r\nExperienceId: 0\r\nFromDate: June 13, 2024\r\nIsGovernmentService: False\r\nMonthlySalary: 24,000.00\r\nPositionHeld: LECTURER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: July 28, 2024\r\n	admin	Experiences	1
774471	2025-03-21	15:38:04.0117784	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3871\r\nCompanyInstitution: BATANGAS STATE UNIVERSITY - THE NATIONAL ENGINEERING UNIVERSITY\r\nExperienceId: 0\r\nFromDate: January 22, 2024\r\nIsGovernmentService: False\r\nMonthlySalary: 24,000.00\r\nPositionHeld: LECTURER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: May 26, 2024\r\n	admin	Experiences	1
774472	2025-03-21	15:38:04.0168131	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3871\r\nCompanyInstitution: BATANGAS STATE UNIVERSITY - THE NATIONAL ENGINEERING UNIVERSITY\r\nExperienceId: 0\r\nFromDate: January 14, 2023\r\nIsGovernmentService: False\r\nMonthlySalary: 24,000.00\r\nPositionHeld: LECTURER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: May 28, 2023\r\n	admin	Experiences	1
774473	2025-03-21	15:38:04.0208307	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3871\r\nCompanyInstitution: BATANGAS STATE UNIVERSITY - THE NATIONAL ENGINEERING UNIVERSITY\r\nExperienceId: 0\r\nFromDate: August 15, 2022\r\nIsGovernmentService: False\r\nMonthlySalary: 18,000.00\r\nPositionHeld: LECTURER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: December 18, 2022\r\n	admin	Experiences	1
774474	2025-03-21	15:38:04.0258409	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3871\r\nCompanyInstitution: BATANGAS STATE UNIVERSITY - THE NATIONAL ENGINEERING UNIVERSITY\r\nExperienceId: 0\r\nFromDate: January 31, 2022\r\nIsGovernmentService: False\r\nMonthlySalary: 18,000.00\r\nPositionHeld: LECTURER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: June 11, 2022\r\n	admin	Experiences	1
774475	2025-03-21	15:38:04.0308490	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3871\r\nCompanyInstitution: BATANGAS STATE UNIVERSITY - THE NATIONAL ENGINEERING UNIVERSITY\r\nExperienceId: 0\r\nFromDate: September 24, 2021\r\nIsGovernmentService: False\r\nMonthlySalary: 10,000.00\r\nPositionHeld: LECTURER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: December 27, 2021\r\n	admin	Experiences	1
774476	2025-03-21	15:38:04.0358715	<Undetected>	Update	BasicInformationId: 3871\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4256\r\nExtensionName: \r\nFirstName: JUSITA\r\nFullName: JUSITA CASTRO DE CASTRO\r\nGender: Female\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: CASTRO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3871\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4256\r\nExtensionName: \r\nFirstName: JUSITA\r\nFullName: JUSITA DE CASTRO\r\nGender: Female\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: CASTRO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774477	2025-03-21	15:38:04.0398775	<Undetected>	Update	BasicInformationId: 3871\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4257\r\nExtensionName: \r\nFirstName: JUSITA\r\nFullName: JUSITA CASTRO DE CASTRO\r\nGender: Female\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: CASTRO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3871\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4257\r\nExtensionName: \r\nFirstName: JUSITA\r\nFullName: JUSITA DE CASTRO\r\nGender: Female\r\nLastName: DE CASTRO\r\nMaidenName: \r\nMiddleName: CASTRO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774478	2025-03-21	15:38:04.0449152	<Undetected>	Update	BasicInformationId: 3871\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3668\r\n	BasicInformationId: 3871\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3668\r\n	admin	Questionnaires	1
774480	2025-03-21	15:40:09.6814082	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INSET (MASTER CLASSES FOR KINDERGARTEN G7 TEACHERS ACROSS ALL LEARNING AREAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774483	2025-03-21	15:40:31.7850535	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3862\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
774484	2025-03-21	15:40:31.7902094	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3862\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 03, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,798.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
774485	2025-03-21	15:40:31.7942218	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3862\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,723.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: October 02, 2022\r\n	admin	Experiences	1
774486	2025-03-21	15:40:31.7994201	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3862\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 24,161.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
774487	2025-03-21	15:40:31.8044474	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3862\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 05, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,600.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
774488	2025-03-21	15:40:31.8095431	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3862\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,316.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 04, 2020\r\n	admin	Experiences	1
774489	2025-03-21	15:40:31.8145629	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3862\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
774490	2025-03-21	15:40:31.8185760	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3862\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
774491	2025-03-21	15:40:31.8236268	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3862\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 05, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,620.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
774492	2025-03-21	15:40:31.8286430	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3862\r\nCompanyInstitution: CASA DEL BAMBINO EMMANUEL MONTESSORI\r\nExperienceId: 0\r\nFromDate: June 04, 2012\r\nIsGovernmentService: False\r\nMonthlySalary: 12,000.00\r\nPositionHeld: TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: May 31, 2017\r\n	admin	Experiences	1
774493	2025-03-21	15:42:09.8897186	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 DISTRICT ASSEMBLY FOR STRATEGIC DIRECTIONS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774495	2025-03-21	15:42:59.2849718	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TELEVISED VIRTUAL IN SERVICE TRAINING FOR TEACHERS 3.0\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774498	2025-03-21	15:44:46.2323339	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ONLINE ORIENTATION ON THE NATIONAL SCHOOL BUILDING INVENTORY\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774501	2025-03-21	15:45:22.2374190	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3862\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: PARANG ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16348\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774502	2025-03-21	15:45:22.2435021	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3862\r\nEmployeeTrainingId: 0\r\nFromDate: October 13, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: October 13, 2023\r\nTrainingId: 16701\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774503	2025-03-21	15:45:22.2485103	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3862\r\nEmployeeTrainingId: 0\r\nFromDate: August 08, 2022\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: OFFICE OF THE UNDERSECRETARY FOR ADMINISTRATION (OUA) INFORMATION AND COMMUNICATIONS TECHNOLOGY SERVICE-EDUCATION TECHNOLOGY UNIT (ICTS-EDTECH)\r\nStatus: \r\nToDate: August 11, 2022\r\nTrainingId: 16703\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774504	2025-03-21	15:45:22.2525165	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3862\r\nEmployeeTrainingId: 0\r\nFromDate: April 07, 2022\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: April 07, 2022\r\nTrainingId: 16706\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774513	2025-03-21	15:46:21.8967045	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3862\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
774514	2025-03-21	15:46:21.9027044	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3862\r\nRecognitionId: 0\r\nRecognitionName: MOST OUTSTANDING ELEMENTARY TEACHER 2014\r\n	admin	Recognitions	1
774515	2025-03-21	15:46:21.9149389	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3862\r\nRecognitionId: 0\r\nRecognitionName: BRONZE MEDAL AWARDEE\r\n	admin	Recognitions	1
774516	2025-03-21	15:46:21.9199554	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3862\r\nOrganizationId: 0\r\nOrganizationName: CASA DEL BAMBINOO EMMANUEL MONTESSORI\r\n	admin	Organizations	1
774517	2025-03-21	15:46:21.9292240	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3862\r\nOrganizationId: 0\r\nOrganizationName: BOY SCOUT OF THE PHILIPPINES BATANGAS CITY\r\n	admin	Organizations	1
774505	2025-03-21	15:45:47.9386873	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3871\r\nEmployeeTrainingId: 0\r\nFromDate: December 05, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: December 07, 2024\r\nTrainingId: 16331\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774506	2025-03-21	15:45:47.9466872	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3871\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16700\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774507	2025-03-21	15:45:47.9511549	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3871\r\nEmployeeTrainingId: 0\r\nFromDate: August 31, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: BATANGAS STATE UNIVERSITY\r\nStatus: \r\nToDate: August 31, 2023\r\nTrainingId: 16702\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774508	2025-03-21	15:45:47.9561720	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3871\r\nEmployeeTrainingId: 0\r\nFromDate: June 06, 2022\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: UNIVERSTIY OF THE PHILIPPINES DILIMAN\r\nStatus: \r\nToDate: June 06, 2022\r\nTrainingId: 16705\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774509	2025-03-21	15:45:47.9611891	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3871\r\nEmployeeTrainingId: 0\r\nFromDate: August 19, 2022\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: BATANGAS STATE UNIVERSITY\r\nStatus: \r\nToDate: August 19, 2022\r\nTrainingId: 16707\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774510	2025-03-21	15:46:08.1255543	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3871\r\nSkillId: 0\r\nSkillName: N/A\r\n	admin	Skills	1
774511	2025-03-21	15:46:08.1349758	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3871\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
774512	2025-03-21	15:46:08.1475682	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3871\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
774518	2025-03-21	15:51:23.5243633	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3871\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09196383526\r\nExtensionName: \r\nFirstName: NILO\r\nLastName: ALO\r\nMiddleName: D.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774519	2025-03-21	15:51:23.5336151	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3871\r\nCharacterReferenceId: 0\r\nCompanyAddress: TINGGA ITAAS, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09677055517\r\nExtensionName: \r\nFirstName: CHRISTINE JOY\r\nLastName: DIMAYUGA\r\nMiddleName: D.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774520	2025-03-21	15:51:23.5376213	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3871\r\nCharacterReferenceId: 0\r\nCompanyAddress: PUROK 1, CULIAT STREET SOROSORO IBABA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09481115912\r\nExtensionName: \r\nFirstName: MARIE SANDRE\r\nLastName: CULIAT\r\nMiddleName: D.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774521	2025-03-21	15:53:21.1455575	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: MARINERS RESIDENCES\r\nBarangay: KUMINTANG ILAYA\r\nBasicInformationId: 3871\r\nBirthDate: January 09, 1999\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: judyannbagro@gmail.com\r\nExtensionName: \r\nFirstName: JUDY ANN\r\nFullName: JUDY ANN DC. BAGRO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BAGRO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nMobileNumber: 09096248697\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: MARINERS RESIDENCES\r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: GOOD SAILING\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: GOOD SAILING\r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: MARINERS RESIDENCES\r\nBarangay: KUMINTANG ILAYA\r\nBasicInformationId: 3871\r\nBirthDate: January 09, 1999\r\nBirthPlace: BATANGAS CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: judyannbagro@gmail.com\r\nExtensionName: \r\nFirstName: JUDY ANN\r\nFullName: JUDY ANN DC. BAGRO\r\nGender: Female\r\nGovernmentIdIssuedDate: June 12, 2023\r\nGovernmentIdNumber: 2055147\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID / LICENSE\r\nGSIS: 02006520454\r\nHDMF: 1212-6102-2518\r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BAGRO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nMobileNumber: 09096248697\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: MARINERS RESIDENCES\r\nPermanentBarangay: KUMINTANG ILAYA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: GOOD SAILING\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025705858-0\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 14-4294088-3\r\nStreetName: GOOD SAILING\r\nTIN: 361-458-927-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774522	2025-03-21	16:01:37.7150793	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3870\r\nEmployeeTrainingId: 0\r\nFromDate: August 16, 2024\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: August 16, 2024\r\nTrainingId: 16699\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774523	2025-03-21	16:01:37.7210595	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3870\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2023\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: November 29, 2023\r\nTrainingId: 16613\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774538	2025-03-21	16:06:08.8479180	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3870\r\nRecognitionId: 0\r\nRecognitionName: OUTSATNDING NON-TEACHING PERSONNEL LEVEL I 2nd GAWAD KINANGAN 2022\r\n	admin	Recognitions	1
774524	2025-03-21	16:01:37.7260891	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3870\r\nEmployeeTrainingId: 0\r\nFromDate: May 31, 2023\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: May 31, 2023\r\nTrainingId: 16704\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774525	2025-03-21	16:01:37.7310666	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3870\r\nEmployeeTrainingId: 0\r\nFromDate: March 10, 2023\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: March 10, 2023\r\nTrainingId: 16646\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774526	2025-03-21	16:01:37.7360087	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3870\r\nEmployeeTrainingId: 0\r\nFromDate: January 17, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: January 17, 2023\r\nTrainingId: 15560\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774527	2025-03-21	16:02:42.8848814	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3863\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LEONARDO\r\nFullName: LEONARDO DELA ROCA SORIANO\r\nGender: Male\r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: DELA ROCA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774528	2025-03-21	16:02:42.9000259	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3863\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MACARIA\r\nFullName: MACARIA BAJA SORIANO\r\nGender: Female\r\nLastName: SORIANO\r\nMaidenName: MANALO\r\nMiddleName: BAJA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774529	2025-03-21	16:05:17.1163908	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3863\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2004\r\nDateTo: 2010\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: LIPONPON ELEMENTARY SCHOOL\r\nYearGraduated: 2010\r\n	admin	EducationalBackgrounds	1
774530	2025-03-21	16:05:17.1213904	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: ACHIEVER\r\nBasicInformationId: 3863\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2010\r\nDateTo: 2014\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAN ANTONIO NATIONAL HIGH SCHOOL\r\nYearGraduated: 2014\r\n	admin	EducationalBackgrounds	1
774531	2025-03-21	16:05:17.1303904	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3863\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 2014\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
774532	2025-03-21	16:05:17.1353906	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: 3863\r\nBirthDate: April 08, 1998\r\nBirthPlace: LIPONPON, ISLA VERDE, BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: vanessa.soriano001@deped.gov.ph\r\nExtensionName: \r\nFirstName: VANESSA\r\nFullName: VANESSA B. SORIANO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: BAJA\r\nMobileNumber: 09066177828\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO MABATO\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SITIO MABATO\r\nTIN: \r\nWeight: 53\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: 3863\r\nBirthDate: April 08, 1998\r\nBirthPlace: LIPONPON, ISLA VERDE, BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: vanessa.soriano001@deped.gov.ph\r\nExtensionName: \r\nFirstName: VANESSA\r\nFullName: VANESSA B. SORIANO\r\nGender: Female\r\nGovernmentIdIssuedDate: May 25, 2019\r\nGovernmentIdNumber: 1762791\r\nGovernmentIdPlaceIssued: LUCENA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02006463143\r\nHDMF: 1212-9591-1259\r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: BAJA\r\nMobileNumber: 09066177828\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SITIO MABATO\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-250237813-0\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-4222087-5\r\nStreetName: SITIO MABATO\r\nTIN: 648-158-177-0000\r\nWeight: 53\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774533	2025-03-21	16:05:17.1433907	<Undetected>	Update	BasicInformationId: 3863\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4258\r\nExtensionName: \r\nFirstName: LEONARDO\r\nFullName: LEONARDO DELA ROCA SORIANO\r\nGender: Male\r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: DELA ROCA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3863\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4258\r\nExtensionName: \r\nFirstName: LEONARDO\r\nFullName: LEONARDO SORIANO\r\nGender: Male\r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: DELA ROCA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774534	2025-03-21	16:05:17.1483906	<Undetected>	Update	BasicInformationId: 3863\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4259\r\nExtensionName: \r\nFirstName: MACARIA\r\nFullName: MACARIA BAJA SORIANO\r\nGender: Female\r\nLastName: SORIANO\r\nMaidenName: MANALO\r\nMiddleName: BAJA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3863\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4259\r\nExtensionName: \r\nFirstName: MACARIA\r\nFullName: MACARIA SORIANO\r\nGender: Female\r\nLastName: SORIANO\r\nMaidenName: \r\nMiddleName: BAJA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774541	2025-03-21	16:07:06.5997610	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3863\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAMPAGUITA HOMES, GULOD ITAAS, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09338522620\r\nExtensionName: \r\nFirstName: RANDY\r\nLastName: BAJA\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774542	2025-03-21	16:07:06.6037742	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3863\r\nCharacterReferenceId: 0\r\nCompanyAddress: BANSUD, ORIENTAL MINDORO\r\nCompanyName: \r\nContactNumber: 09776507291\r\nExtensionName: \r\nFirstName: PCMS REXY\r\nLastName: YLAGAN\r\nMiddleName: S\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774543	2025-03-21	16:07:06.6121795	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3863\r\nCharacterReferenceId: 0\r\nCompanyAddress: SOROSORO ILAYA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09567665093\r\nExtensionName: \r\nFirstName: JENELYN\r\nLastName: DELEN\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774544	2025-03-21	16:08:00.2859162	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3863\r\nDateOfExamination: March 24, 2019\r\nDateOfRelease: April 08, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: March 24, 2019\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1762791\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 76.6\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
774545	2025-03-21	16:08:54.4785829	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3870\r\nCharacterReferenceId: 0\r\nCompanyAddress: TALUMPOK SILANGAN BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09678691671\r\nExtensionName: \r\nFirstName: MELECIO\r\nLastName: DELICA\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774546	2025-03-21	16:08:54.4875529	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3870\r\nCharacterReferenceId: 0\r\nCompanyAddress: TABANGAO DAO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09279802637\r\nExtensionName: \r\nFirstName: RICA\r\nLastName: SUAREZ\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774547	2025-03-21	16:08:54.4925363	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3870\r\nCharacterReferenceId: 0\r\nCompanyAddress: BARANGAY 15 BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09776189366\r\nExtensionName: \r\nFirstName: KRISTINE JOY \r\nLastName: FADERAGAO\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774548	2025-03-21	16:09:33.4410515	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3863\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,024.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
774549	2025-03-21	16:09:33.4460516	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3863\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 09, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
774550	2025-03-21	16:09:33.4570753	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3863\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: April 18, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: May 31, 2024\r\n	admin	Experiences	1
774551	2025-03-21	16:09:54.5474994	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3863\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
774552	2025-03-21	16:09:54.5596335	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3863\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
774553	2025-03-21	16:11:08.6628665	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3865\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DOMINGO\r\nFullName: DOMINGO ALMAREZ EBORA\r\nGender: Male\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: ALMAREZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774554	2025-03-21	16:11:08.6771012	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3865\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ESTER\r\nFullName: ESTER CALALUAN EBORA\r\nGender: Male\r\nLastName: EBORA\r\nMaidenName: ADALIN\r\nMiddleName: CALALUAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774555	2025-03-21	16:11:08.6821090	<Undetected>	Update	BasicInformationId: 3865\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3662\r\n	BasicInformationId: 3865\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3662\r\n	admin	Questionnaires	1
774556	2025-03-21	16:12:10.8292705	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: TALUMPOK EAST\r\nBasicInformationId: 3870\r\nBirthDate: August 15, 1991\r\nBirthPlace: TALUMPOK EAST BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: Jennylyn.Matira@deped.gov.ph\r\nExtensionName: \r\nFirstName: JENNYLYN\r\nFullName: JENNYLYN B. MATIRA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.73\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437408838\r\nLastName: MATIRA\r\nMaidenName: \r\nMiddleName: BRIONES\r\nMobileNumber: 09264407587\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: TALUMPOK EAST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 70\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: TALUMPOK EAST\r\nBasicInformationId: 3870\r\nBirthDate: August 15, 1991\r\nBirthPlace: TALUMPOK EAST BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: Jennylyn.Matira@deped.gov.ph\r\nExtensionName: \r\nFirstName: JENNYLYN\r\nFullName: JENNYLYN B. MATIRA\r\nGender: Female\r\nGovernmentIdIssuedDate: June 21, 2017\r\nGovernmentIdNumber: 1545202\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: 02005322472\r\nHDMF: 1210-5783-5781\r\nHeight: 1.73\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437408838\r\nLastName: MATIRA\r\nMaidenName: \r\nMiddleName: BRIONES\r\nMobileNumber: 09264407587\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: TALUMPOK EAST\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 01-051461954-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-2580303-1\r\nStreetName: \r\nTIN: 316-731-395-0000\r\nWeight: 70\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774575	2025-03-21	16:17:30.6627638	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIBJO CENTRAL\r\nBasicInformationId: 0\r\nBirthDate: January 09, 1972\r\nBirthPlace: LIBJO BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: elsa.marasigan@deped.gov.ph\r\nExtensionName: \r\nFirstName: ELSA\r\nFullName: ELSA B. MARASIGAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.64\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 4029153\r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: BEDONIA\r\nMobileNumber: 09195941509\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIBJO CENTRAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774576	2025-03-21	16:17:30.6787105	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3873\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JACINTO\r\nFullName: JACINTO CLEOFE MARASIGAN\r\nGender: Male\r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: CLEOFE\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
774577	2025-03-21	16:17:30.6787105	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3873\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EDUARDO\r\nFullName: EDUARDO DIO BEDONIA\r\nGender: Male\r\nLastName: BEDONIA\r\nMaidenName: \r\nMiddleName: DIO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774578	2025-03-21	16:17:30.6787105	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3873\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LUISA\r\nFullName: LUISA ABEL GONZALES\r\nGender: Male\r\nLastName: GONZALES\r\nMaidenName: \r\nMiddleName: ABEL\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774579	2025-03-21	16:17:30.6787105	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3873\r\nBirthDate: February 18, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JAC GABRIEL\r\nFullName: JAC GABRIEL B MARASIGAN\r\nGender: Male\r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774580	2025-03-21	16:17:30.6787105	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3873\r\nBirthDate: February 17, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JAC DANIEL\r\nFullName: JAC DANIEL B MARASIGAN\r\nGender: Male\r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774581	2025-03-21	16:17:30.6787105	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3873\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
774601	2025-03-21	16:20:56.9873502	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3873\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1979\r\nDateTo: 1985\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: LIBJO ELEMENTARY SCHOOL\r\nYearGraduated: 1985\r\n	admin	EducationalBackgrounds	1
774602	2025-03-21	16:20:56.9923335	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3873\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1985\r\nDateTo: 1989\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1989\r\n	admin	EducationalBackgrounds	1
774557	2025-03-21	16:12:16.1389840	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA CENTER\r\nBasicInformationId: 0\r\nBirthDate: April 01, 1998\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: zarahaguda0@gmail.com\r\nExtensionName: \r\nFirstName: ZARAH\r\nFullName: ZARAH A. AGUDA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.51\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: AGUDA\r\nMaidenName: \r\nMiddleName: ACLAN\r\nMobileNumber: 09108385711\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA CENTER\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PARANG II\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PARANG II\r\nTIN: \r\nWeight: 70\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774558	2025-03-21	16:12:16.1886953	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3872\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2004\r\nDateTo: 2010\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BANABA CENTER ELEMENTARY SCHOOL\r\nYearGraduated: 2010\r\n	admin	EducationalBackgrounds	1
774559	2025-03-21	16:12:16.1897036	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3872\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2010\r\nDateTo: 2014\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BANABA WEST NATIONAL HIGH SCHOOL\r\nYearGraduated: 2014\r\n	admin	EducationalBackgrounds	1
774560	2025-03-21	16:12:16.1897036	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3872\r\nCourse: \r\nCourseId: 1270\r\nCourseOrMajor: \r\nDateFrom: 2014\r\nDateTo: 2019\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MAJOR IN SOCIAL STUDIES\r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY MAIN I\r\nYearGraduated: 2019\r\n	admin	EducationalBackgrounds	1
774561	2025-03-21	16:12:16.1907121	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3872\r\nCourse: \r\nCourseId: 1333\r\nCourseOrMajor: \r\nDateFrom: 2022\r\nDateTo: 2024\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN SOCIAL STUDIES TEACHING\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2024\r\n	admin	EducationalBackgrounds	1
774562	2025-03-21	16:12:16.1907121	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3872\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DIOVANNI\r\nFullName: DIOVANNI EJES AGUDA\r\nGender: Male\r\nLastName: AGUDA\r\nMaidenName: \r\nMiddleName: EJES\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774563	2025-03-21	16:12:16.1917208	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3872\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GREGORIA\r\nFullName: GREGORIA HERNANDEZ ACLAN\r\nGender: Female\r\nLastName: ACLAN\r\nMaidenName: \r\nMiddleName: HERNANDEZ\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774564	2025-03-21	16:12:16.1917208	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3872\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
774582	2025-03-21	16:17:50.1311120	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3872\r\nDateOfExamination: September 29, 2020\r\nDateOfRelease: April 01, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 29, 2020\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1809592\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 79.80\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS (RA 1080)\r\n	admin	Eligibilities	1
774583	2025-03-21	16:17:50.1361286	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3872\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO INTEGRATED HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: August 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 30,024.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: March 21, 2025\r\n	admin	Experiences	1
775566	2025-03-26	10:29:06.2294260	<Undetected>	Update	BasicInformationId: 3960\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3757\r\n	BasicInformationId: 3960\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3757\r\n	admin	Questionnaires	1
774565	2025-03-21	16:13:06.8194624	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3865\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2007\r\nDateTo: 2013\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGAPITO ELEMENTARY SCHOOL\r\nYearGraduated: 2013\r\n	admin	EducationalBackgrounds	1
774566	2025-03-21	16:13:06.8366563	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3865\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2013\r\nDateTo: 2017\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGAPITO INTERGRATED SCHOOL\r\nYearGraduated: 2017\r\n	admin	EducationalBackgrounds	1
774567	2025-03-21	16:13:06.8416646	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3865\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 2019\r\nDateTo: 2023\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: COLEGIO NG LUNGSOD NG BATANGAS\r\nYearGraduated: 2023\r\n	admin	EducationalBackgrounds	1
774568	2025-03-21	16:13:06.8506876	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3865\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2017\r\nDateTo: 2019\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Senior High Graduate\r\nMajor: \r\nSchoolorUniversity: TABANGAO INTERGRATED SCHOOL\r\nYearGraduated: 2019\r\n	admin	EducationalBackgrounds	1
774569	2025-03-21	16:13:06.8618168	<Undetected>	Update	BasicInformationId: 3865\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4260\r\nExtensionName: \r\nFirstName: DOMINGO\r\nFullName: DOMINGO ALMAREZ EBORA\r\nGender: Male\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: ALMAREZ\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3865\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4260\r\nExtensionName: \r\nFirstName: DOMINGO\r\nFullName: DOMINGO EBORA\r\nGender: Male\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: ALMAREZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774570	2025-03-21	16:13:06.8874492	<Undetected>	Update	BasicInformationId: 3865\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4261\r\nExtensionName: \r\nFirstName: ESTER\r\nFullName: ESTER CALALUAN EBORA\r\nGender: Male\r\nLastName: EBORA\r\nMaidenName: ADALIN\r\nMiddleName: CALALUAN\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3865\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4261\r\nExtensionName: \r\nFirstName: ESTER\r\nFullName: ESTER EBORA\r\nGender: Male\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: CALALUAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774571	2025-03-21	16:14:35.2724718	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: KUMINTANG IBABA\r\nBasicInformationId: 3865\r\nBirthDate: October 23, 1999\r\nBirthPlace: ISLA VERDE, BATANGAS CIT\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mariane.ebora@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIANE\r\nFullName: MARIANE C. EBORA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: CALALUAN\r\nMobileNumber: 09066259334\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: KUMINTANG IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PROPER\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PROPER\r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: KUMINTANG IBABA\r\nBasicInformationId: 3865\r\nBirthDate: October 23, 1999\r\nBirthPlace: ISLA VERDE, BATANGAS CIT\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mariane.ebora@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIANE\r\nFullName: MARIANE C. EBORA\r\nGender: Female\r\nGovernmentIdIssuedDate: February 23, 2024\r\nGovernmentIdNumber: 2153800\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02006524958\r\nHDMF: 1212-4819-7213\r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: CALALUAN\r\nMobileNumber: 09066259334\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: KUMINTANG IBABA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PROPER\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-250231014-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-4216350-5\r\nStreetName: PROPER\r\nTIN: 742-101-790-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774572	2025-03-21	16:16:08.4230082	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3865\r\nCharacterReferenceId: 0\r\nCompanyAddress: LIBJO CENTRAL, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09177242205\r\nExtensionName: \r\nFirstName: ANACORETA\r\nLastName: BALITAAN\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774573	2025-03-21	16:16:08.4354226	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3865\r\nCharacterReferenceId: 0\r\nCompanyAddress: TAAL, BATANGAS\r\nCompanyName: \r\nContactNumber: 09171623814\r\nExtensionName: \r\nFirstName: DELIA\r\nLastName: ISLA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774574	2025-03-21	16:16:08.4458373	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3865\r\nCharacterReferenceId: 0\r\nCompanyAddress: BATANGAS CITY SOUTH ELEMENTARY SCHOOL\r\nCompanyName: \r\nContactNumber: 09167438836\r\nExtensionName: \r\nFirstName: TARCELA\r\nLastName: CALIBOSO\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774591	2025-03-21	16:17:58.9024358	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3865\r\nDateOfExamination: September 24, 2023\r\nDateOfRelease: October 23, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 24, 2023\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 2153800\r\nPlaceOfExamination: LUCENA CITY, QUEZON\r\nRating: 82.6\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
775571	2025-03-26	10:32:49.5427722	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: SPEECH - VOCATIONAL\r\nLevel: Vocational\r\n	admin	Courses	1
774584	2025-03-21	16:17:50.1401425	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3872\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO INTEGRATED HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: August 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
774585	2025-03-21	16:17:50.1452461	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3872\r\nCompanyInstitution: BATANGAS STATE UNIVERSITY TNEU-ALANGILAN\r\nExperienceId: 0\r\nFromDate: September 27, 2022\r\nIsGovernmentService: False\r\nMonthlySalary: 24,000.00\r\nPositionHeld: LECTURER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: July 26, 2024\r\n	admin	Experiences	1
774586	2025-03-21	16:17:50.1492595	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3872\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO INTEGRATED HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: May 20, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,439.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: July 01, 2022\r\n	admin	Experiences	1
774587	2025-03-21	16:17:50.1542896	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3872\r\nCompanyInstitution: GOOD SHEPHERD CHRISTIAN ACADEMY OF BATANGAS INC.\r\nExperienceId: 0\r\nFromDate: August 12, 2019\r\nIsGovernmentService: False\r\nMonthlySalary: 9,500.00\r\nPositionHeld: HIGH SCHOOL TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: November 22, 2019\r\n	admin	Experiences	1
774588	2025-03-21	16:17:50.1593291	<Undetected>	Update	BasicInformationId: 3872\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4262\r\nExtensionName: \r\nFirstName: DIOVANNI\r\nFullName: DIOVANNI EJES AGUDA\r\nGender: Male\r\nLastName: AGUDA\r\nMaidenName: \r\nMiddleName: EJES\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3872\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4262\r\nExtensionName: \r\nFirstName: DIOVANNI\r\nFullName: DIOVANNI AGUDA\r\nGender: Male\r\nLastName: AGUDA\r\nMaidenName: \r\nMiddleName: EJES\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774589	2025-03-21	16:17:50.1643586	<Undetected>	Update	BasicInformationId: 3872\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4263\r\nExtensionName: \r\nFirstName: GREGORIA\r\nFullName: GREGORIA HERNANDEZ ACLAN\r\nGender: Female\r\nLastName: ACLAN\r\nMaidenName: \r\nMiddleName: HERNANDEZ\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3872\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4263\r\nExtensionName: \r\nFirstName: GREGORIA\r\nFullName: GREGORIA ACLAN\r\nGender: Female\r\nLastName: ACLAN\r\nMaidenName: \r\nMiddleName: HERNANDEZ\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774590	2025-03-21	16:17:50.1683720	<Undetected>	Update	BasicInformationId: 3872\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3669\r\n	BasicInformationId: 3872\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3669\r\n	admin	Questionnaires	1
774595	2025-03-21	16:19:49.0407093	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SOCIAL EDUCATION: CRITICAL INQUIRY IN SOCIAL STUDIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774612	2025-03-21	16:21:05.5275784	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MOVING FORWARD: TEACHING SOCIAL STUDIES IN THE NEW NORMAL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774613	2025-03-21	16:22:27.4404839	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: UPSKILLING THE 21ST CENTURY EDUCATORS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774615	2025-03-21	16:23:55.9166359	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TEACHING AND ASSESSING THE K-12 STANDARD ACROSS THE DIFFERENT LEARNING MODALITIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774616	2025-03-21	16:24:44.5106755	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3872\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16339\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774617	2025-03-21	16:24:44.5146879	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3872\r\nEmployeeTrainingId: 0\r\nFromDate: July 19, 2023\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: GOLDEN GATE COLLEGES GRADUATE SCHOOL\r\nStatus: \r\nToDate: January 21, 2023\r\nTrainingId: 16709\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774618	2025-03-21	16:24:44.5197462	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3872\r\nEmployeeTrainingId: 0\r\nFromDate: July 21, 2022\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: GOLDEN GATE COLLEGES GRADUATE SCHOOL\r\nStatus: \r\nToDate: July 23, 2022\r\nTrainingId: 16710\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774592	2025-03-21	16:17:58.9173025	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3865\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,024.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
774593	2025-03-21	16:17:58.9344499	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3865\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 04, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
774594	2025-03-21	16:19:38.8511146	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: FIVE-DAY IN-SERVICE TRAINING (INSET) 2023 FOR TEACHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774596	2025-03-21	16:20:26.5235959	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3865\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
774597	2025-03-21	16:20:26.5367197	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3865\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
774598	2025-03-21	16:20:26.5407259	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3865\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
774599	2025-03-21	16:20:26.5467891	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3865\r\nEmployeeTrainingId: 0\r\nFromDate: December 05, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: OFFICE OF UNDERSECRETARY OF ADMINISTRATION\r\nStatus: \r\nToDate: December 07, 2024\r\nTrainingId: 16512\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774600	2025-03-21	16:20:26.5507952	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3865\r\nEmployeeTrainingId: 0\r\nFromDate: February 06, 2023\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: OFFICE OF UNDERSECRETARY OF ADMINISTRATION\r\nStatus: \r\nToDate: February 10, 2023\r\nTrainingId: 16708\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774603	2025-03-21	16:20:57.0062870	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3873\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1989\r\nDateTo: 1993\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: SAINT BRIDGET COLLEGE\r\nYearGraduated: 1993\r\n	admin	EducationalBackgrounds	1
774604	2025-03-21	16:20:57.0182470	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3873\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 2001\r\nEducationalAttainment: 45\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
774605	2025-03-21	16:20:57.0422201	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIBJO CENTRAL\r\nBasicInformationId: 3873\r\nBirthDate: January 09, 1972\r\nBirthPlace: LIBJO BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: elsa.marasigan@deped.gov.ph\r\nExtensionName: \r\nFirstName: ELSA\r\nFullName: ELSA B. MARASIGAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.64\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 4029153\r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: BEDONIA\r\nMobileNumber: 09195941509\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIBJO CENTRAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIBJO CENTRAL\r\nBasicInformationId: 3873\r\nBirthDate: January 09, 1972\r\nBirthPlace: LIBJO BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: elsa.marasigan@deped.gov.ph\r\nExtensionName: \r\nFirstName: ELSA\r\nFullName: ELSA B. MARASIGAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.64\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 4029153\r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: BEDONIA\r\nMobileNumber: 09195941509\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIBJO CENTRAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774606	2025-03-21	16:20:57.0471514	<Undetected>	Update	BasicInformationId: 3873\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4264\r\nExtensionName: \r\nFirstName: JACINTO\r\nFullName: JACINTO CLEOFE MARASIGAN\r\nGender: Male\r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: CLEOFE\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3873\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4264\r\nExtensionName: \r\nFirstName: JACINTO\r\nFullName: JACINTO MARASIGAN\r\nGender: Male\r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: CLEOFE\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
774607	2025-03-21	16:20:57.0541279	<Undetected>	Update	BasicInformationId: 3873\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4265\r\nExtensionName: \r\nFirstName: EDUARDO\r\nFullName: EDUARDO DIO BEDONIA\r\nGender: Male\r\nLastName: BEDONIA\r\nMaidenName: \r\nMiddleName: DIO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3873\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4265\r\nExtensionName: \r\nFirstName: EDUARDO\r\nFullName: EDUARDO BEDONIA\r\nGender: Male\r\nLastName: BEDONIA\r\nMaidenName: \r\nMiddleName: DIO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774608	2025-03-21	16:20:57.0591113	<Undetected>	Update	BasicInformationId: 3873\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4266\r\nExtensionName: \r\nFirstName: LUISA\r\nFullName: LUISA ABEL GONZALES\r\nGender: Male\r\nLastName: GONZALES\r\nMaidenName: \r\nMiddleName: ABEL\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3873\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4266\r\nExtensionName: \r\nFirstName: LUISA\r\nFullName: LUISA GONZALES\r\nGender: Male\r\nLastName: GONZALES\r\nMaidenName: \r\nMiddleName: ABEL\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774609	2025-03-21	16:20:57.0660878	<Undetected>	Update	BasicInformationId: 3873\r\nBirthDate: February 18, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4267\r\nExtensionName: \r\nFirstName: JAC GABRIEL\r\nFullName: JAC GABRIEL B MARASIGAN\r\nGender: Male\r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3873\r\nBirthDate: February 18, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4267\r\nExtensionName: \r\nFirstName: JAC GABRIEL\r\nFullName: JAC GABRIEL MARASIGAN\r\nGender: Male\r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774610	2025-03-21	16:20:57.0710718	<Undetected>	Update	BasicInformationId: 3873\r\nBirthDate: February 17, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4268\r\nExtensionName: \r\nFirstName: JAC DANIEL\r\nFullName: JAC DANIEL B MARASIGAN\r\nGender: Male\r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3873\r\nBirthDate: February 17, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4268\r\nExtensionName: \r\nFirstName: JAC DANIEL\r\nFullName: JAC DANIEL MARASIGAN\r\nGender: Male\r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: B\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774611	2025-03-21	16:20:57.0760819	<Undetected>	Update	BasicInformationId: 3873\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3670\r\n	BasicInformationId: 3873\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3670\r\n	admin	Questionnaires	1
774614	2025-03-21	16:22:45.0562354	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3873\r\nDateOfExamination: May 30, 1993\r\nDateOfRelease: January 09, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: May 30, 1993\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0054157\r\nPlaceOfExamination: BATANGAS CITY\r\nRating: 74.5\r\nTitle: PROFESSIONAL BOARD EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
775613	2025-03-26	10:44:55.2465412	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3925\r\nOrganizationId: 0\r\nOrganizationName: PHILIPPINE PUBLIC SCHOOL TEACHERS ASSOCIATION\r\n	admin	Organizations	1
774619	2025-03-21	16:24:44.5247638	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3872\r\nEmployeeTrainingId: 0\r\nFromDate: April 25, 2022\r\nHours: 6\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF INFORMATION AND COMMUNICATION TECHNOLOGY (DICT)\r\nStatus: \r\nToDate: April 26, 2022\r\nTrainingId: 16711\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774620	2025-03-21	16:24:44.5297800	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3872\r\nEmployeeTrainingId: 0\r\nFromDate: July 05, 2021\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: PROVATE EDUCATION ASSISTANCE COMMITEE (PAEC)\r\nStatus: \r\nToDate: July 07, 2021\r\nTrainingId: 16712\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774621	2025-03-21	16:25:20.6616751	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3872\r\nSkillId: 0\r\nSkillName: COMPUTER SKILLS\r\n	admin	Skills	1
774622	2025-03-21	16:25:20.6741429	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3872\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
774623	2025-03-21	16:25:20.6792031	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3872\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
774628	2025-03-21	16:29:47.8047934	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3872\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO, ISLA VERDE, BATANGS CITY\r\nCompanyName: \r\nContactNumber: 09196383516\r\nExtensionName: \r\nFirstName: NILO \r\nLastName: ALO\r\nMiddleName: D.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774629	2025-03-21	16:29:47.8088018	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3872\r\nCharacterReferenceId: 0\r\nCompanyAddress: NAMUNGA, ROSARIO BATANGAS\r\nCompanyName: \r\nContactNumber: 09171627429\r\nExtensionName: \r\nFirstName: KIMBERLY MAE\r\nLastName: LEYNES\r\nMiddleName: M.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774630	2025-03-21	16:29:47.8148020	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3872\r\nCharacterReferenceId: 0\r\nCompanyAddress: LUCBAN VALLEY, BALETE, TANAUAN CITY\r\nCompanyName: \r\nContactNumber: 09927063336\r\nExtensionName: \r\nFirstName: MARILYN\r\nLastName: PEREZ\r\nMiddleName: P.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774631	2025-03-21	16:29:47.8192343	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA CENTER\r\nBasicInformationId: 3872\r\nBirthDate: April 01, 1998\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: zarahaguda0@gmail.com\r\nExtensionName: \r\nFirstName: ZARAH\r\nFullName: ZARAH A. AGUDA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.51\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: AGUDA\r\nMaidenName: \r\nMiddleName: ACLAN\r\nMobileNumber: 09108385711\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA CENTER\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PARANG II\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PARANG II\r\nTIN: \r\nWeight: 70\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: BANABA CENTER\r\nBasicInformationId: 3872\r\nBirthDate: April 01, 1998\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: zarahaguda0@gmail.com\r\nExtensionName: \r\nFirstName: ZARAH\r\nFullName: ZARAH A. AGUDA\r\nGender: Female\r\nGovernmentIdIssuedDate: December 18, 2019\r\nGovernmentIdNumber: 1809592\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID / LICENSE\r\nGSIS: 02006068736\r\nHDMF: 1212-6480-5232\r\nHeight: 1.51\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: AGUDA\r\nMaidenName: \r\nMiddleName: ACLAN\r\nMobileNumber: 09108385711\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: BANABA CENTER\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PARANG II\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025704222-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PARANG II\r\nTIN: 383-579-875-0000\r\nWeight: 70\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774634	2025-03-21	16:33:43.0555602	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 058\r\nAddress2: \r\nBarangay: DOMOCLAY\r\nBasicInformationId: 0\r\nBirthDate: May 19, 1999\r\nBirthPlace: TAYSAN, BATANGAS\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mayann.abdon@deped.gov.ph\r\nExtensionName: \r\nFirstName: MAY ANN\r\nFullName: MAY ANN C. ABDON\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437221589\r\nLastName: ABDON\r\nMaidenName: \r\nMiddleName: CALATON\r\nMobileNumber: 09565296572\r\nNationality: Filipino\r\nPermanentAddress1: 058\r\nPermanentAddress2: \r\nPermanentBarangay: DOMOCLAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: WEST\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: WEST\r\nTIN: \r\nWeight: 53\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774635	2025-03-21	16:33:43.0703936	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3874\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PERFETO\r\nFullName: PERFETO ALEA ABDON\r\nGender: Male\r\nLastName: ABDON\r\nMaidenName: \r\nMiddleName: ALEA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774624	2025-03-21	16:26:46.3753607	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3873\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 01, 2004\r\nIsGovernmentService: True\r\nMonthlySalary: 36,354.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-7\r\nStatus: Permanent\r\nToDate: January 01, 2025\r\n	admin	Experiences	1
774625	2025-03-21	16:26:46.3913071	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3873\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 17, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 10,535.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: August 31, 2004\r\n	admin	Experiences	1
774626	2025-03-21	16:26:46.3952934	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3873\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 06, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: September 19, 2000\r\n	admin	Experiences	1
774627	2025-03-21	16:28:34.9329981	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SESSION ON INTEGRATING APPRECIATIVE INQUIRY APPROACH\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774632	2025-03-21	16:30:50.0391779	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SESSION ON INCLUSIVE EDUCATION (IE) AND ALTERNATIVE DELIVERY MODE (ADM) PROGRAM\r\nTrainingId: 0\r\nType: \r\n	admin	Trainings	1
774633	2025-03-21	16:33:23.2862401	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: VIRTUAL IN-SERVICE TRAINING FOR TEACHERS 2.0\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774638	2025-03-21	16:35:24.3252991	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT TRAINING WRITESHOP FOR MELCS AND EXEMPLARS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774636	2025-03-21	16:33:43.0703936	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3874\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LILIA\r\nFullName: LILIA MAGSINO CALATON\r\nGender: Female\r\nLastName: CALATON\r\nMaidenName: \r\nMiddleName: MAGSINO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774637	2025-03-21	16:33:43.0703936	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3874\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
774639	2025-03-21	16:36:24.5410090	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: ACHIEVER\r\nBasicInformationId: 3874\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: DUMUCLAY ELEMENTARY SCHOOL\r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
774640	2025-03-21	16:36:24.5520090	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3874\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2011\r\nDateTo: 2015\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2015\r\n	admin	EducationalBackgrounds	1
774641	2025-03-21	16:36:24.5570092	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3874\r\nCourse: \r\nCourseId: 1270\r\nCourseOrMajor: \r\nDateFrom: 2015\r\nDateTo: 2019\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MATHEMATICS MAJOR\r\nSchoolorUniversity: ST. BRIDGET COLLEGE\r\nYearGraduated: 2019\r\n	admin	EducationalBackgrounds	1
774642	2025-03-21	16:36:24.5660090	<Undetected>	Update	BasicInformationId: 3874\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4269\r\nExtensionName: \r\nFirstName: PERFETO\r\nFullName: PERFETO ALEA ABDON\r\nGender: Male\r\nLastName: ABDON\r\nMaidenName: \r\nMiddleName: ALEA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3874\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4269\r\nExtensionName: \r\nFirstName: PERFETO\r\nFullName: PERFETO ABDON\r\nGender: Male\r\nLastName: ABDON\r\nMaidenName: \r\nMiddleName: ALEA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774643	2025-03-21	16:36:24.5700087	<Undetected>	Update	BasicInformationId: 3874\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4270\r\nExtensionName: \r\nFirstName: LILIA\r\nFullName: LILIA MAGSINO CALATON\r\nGender: Female\r\nLastName: CALATON\r\nMaidenName: \r\nMiddleName: MAGSINO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3874\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4270\r\nExtensionName: \r\nFirstName: LILIA\r\nFullName: LILIA CALATON\r\nGender: Female\r\nLastName: CALATON\r\nMaidenName: \r\nMiddleName: MAGSINO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774644	2025-03-21	16:36:24.5760091	<Undetected>	Update	BasicInformationId: 3874\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3671\r\n	BasicInformationId: 3874\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3671\r\n	admin	Questionnaires	1
774645	2025-03-21	16:38:33.2198740	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3873\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2023\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION LIBJO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: November 29, 2023\r\nTrainingId: 16713\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774646	2025-03-21	16:38:33.2248582	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3873\r\nEmployeeTrainingId: 0\r\nFromDate: December 04, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION LIBJO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: December 04, 2022\r\nTrainingId: 16714\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774647	2025-03-21	16:38:33.2298423	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3873\r\nEmployeeTrainingId: 0\r\nFromDate: March 15, 2021\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION EDUCATIONAL TECHNOLOGY UNIT\r\nStatus: \r\nToDate: March 19, 2021\r\nTrainingId: 16715\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774648	2025-03-21	16:38:33.2348254	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3873\r\nEmployeeTrainingId: 0\r\nFromDate: January 12, 2020\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: January 12, 2020\r\nTrainingId: 16716\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774649	2025-03-21	16:38:33.2398482	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3873\r\nEmployeeTrainingId: 0\r\nFromDate: August 12, 2022\r\nHours: 56\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 22, 2022\r\nTrainingId: 16397\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774650	2025-03-21	16:40:07.6427146	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3873\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
774651	2025-03-21	16:40:07.6536793	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3873\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
774652	2025-03-21	16:40:07.6586624	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3873\r\nSkillId: 0\r\nSkillName: WRITER\r\n	admin	Skills	1
774656	2025-03-21	16:42:24.6509784	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3873\r\nCharacterReferenceId: 0\r\nCompanyAddress: TABANGAO DAO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 7221358\r\nExtensionName: \r\nFirstName: PICA\r\nLastName: SUAREZ\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774657	2025-03-21	16:42:24.6549648	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3873\r\nCharacterReferenceId: 0\r\nCompanyAddress: TANGISAN LIBJO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 7221358\r\nExtensionName: \r\nFirstName: GEMMA\r\nLastName: CLAVERIA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774658	2025-03-21	16:42:24.6609909	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3873\r\nCharacterReferenceId: 0\r\nCompanyAddress: ALANGILAN BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 4029351\r\nExtensionName: \r\nFirstName: PABLITO\r\nLastName: DIMAANO\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774666	2025-03-21	16:45:32.0996747	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIBJO CENTRAL\r\nBasicInformationId: 3873\r\nBirthDate: January 09, 1972\r\nBirthPlace: LIBJO BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: elsa.marasigan@deped.gov.ph\r\nExtensionName: \r\nFirstName: ELSA\r\nFullName: ELSA B. MARASIGAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.64\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 4029153\r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: BEDONIA\r\nMobileNumber: 09195941509\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIBJO CENTRAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 80\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIBJO CENTRAL\r\nBasicInformationId: 3873\r\nBirthDate: January 09, 1972\r\nBirthPlace: LIBJO BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: elsa.marasigan@deped.gov.ph\r\nExtensionName: \r\nFirstName: ELSA\r\nFullName: ELSA B. MARASIGAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 19, 2024\r\nGovernmentIdNumber: 0054157\r\nGovernmentIdPlaceIssued: STA. ROSA LAGUNA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02002928078\r\nHDMF: 1490-0083-7360\r\nHeight: 1.64\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 4029153\r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: BEDONIA\r\nMobileNumber: 09195941509\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIBJO CENTRAL\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000011135-9\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 174-047-087-0000\r\nWeight: 80\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774659	2025-03-21	16:42:35.7686154	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3874\r\nDateOfExamination: September 29, 2019\r\nDateOfRelease: May 19, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 29, 2019\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1850632\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 80\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
774660	2025-03-21	16:42:35.7736156	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3874\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,024.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: March 21, 2025\r\n	admin	Experiences	1
774661	2025-03-21	16:42:35.7776152	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3874\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 05, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,513.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
774662	2025-03-21	16:42:35.7850749	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3874\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 31, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 14, 2024\r\n	admin	Experiences	1
774663	2025-03-21	16:42:35.7892499	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3874\r\nCompanyInstitution: CANOSSA ACADEMY LIPA CITY\r\nExperienceId: 0\r\nFromDate: October 17, 2022\r\nIsGovernmentService: False\r\nMonthlySalary: 16,700.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Substitute\r\nToDate: May 31, 2023\r\n	admin	Experiences	1
774664	2025-03-21	16:42:35.7945007	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3874\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 03, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,349.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: March 01, 2022\r\n	admin	Experiences	1
774665	2025-03-21	16:42:35.7987074	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3874\r\nCompanyInstitution: PRINCETON SCIENCE SCHOOL - HOME OF YOUNG ACHIEVERS\r\nExperienceId: 0\r\nFromDate: June 24, 2019\r\nIsGovernmentService: False\r\nMonthlySalary: 15,000.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: April 20, 2021\r\n	admin	Experiences	1
774667	2025-03-21	16:45:29.0428221	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION ORIENTATION ON NATIONAL LEARNING CAMP FOR DISTRICT FACILITATORS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774668	2025-03-21	16:47:22.4035256	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INTEGRATING GAD CONCEPTS AND ACTIVITIES IN TEACHING WHILE ENSURING GENDER RESPONSIVENESS AND SAFETY OF LEARNERS AND PERSONNEL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774669	2025-03-21	16:47:59.0811505	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3874\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16372\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774670	2025-03-21	16:47:59.0861840	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3874\r\nEmployeeTrainingId: 0\r\nFromDate: November 08, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: November 10, 2024\r\nTrainingId: 16355\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774671	2025-03-21	16:47:59.0912002	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3874\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16347\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774672	2025-03-21	16:47:59.0962096	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3874\r\nEmployeeTrainingId: 0\r\nFromDate: May 27, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: May 27, 2024\r\nTrainingId: 16717\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774673	2025-03-21	16:47:59.1035318	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3874\r\nEmployeeTrainingId: 0\r\nFromDate: April 26, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: April 26, 2024\r\nTrainingId: 16718\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774674	2025-03-24	07:51:35.8659303	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANDRES, ISLA VERDE\r\nBasicInformationId: 0\r\nBirthDate: September 15, 1981\r\nBirthPlace: DINGALAN, AURORA\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: raquel.dabalos@deped.gov.ph\r\nExtensionName: \r\nFirstName: RAQUEL\r\nFullName: RAQUEL R. DABALOS\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.4\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DABALOS\r\nMaidenName: \r\nMiddleName: REPIA\r\nMobileNumber: 09684978959\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANDRES, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 49\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774675	2025-03-24	07:51:36.1504257	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3875\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
774676	2025-03-24	07:53:06.0272781	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3875\r\nBirthDate: August 30, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PRINCESS NICOLE\r\nFullName: PRINCESS NICOLE REPIA DABALOS\r\nGender: Male\r\nLastName: DABALOS\r\nMaidenName: \r\nMiddleName: REPIA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774677	2025-03-24	07:53:06.0344260	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3875\r\nBirthDate: November 24, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MEAGAN ANICA\r\nFullName: MEAGAN ANICA REPIA DABALOS\r\nGender: Male\r\nLastName: DABALOS\r\nMaidenName: \r\nMiddleName: REPIA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774678	2025-03-24	07:53:06.0448685	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3875\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JEFFERSON\r\nFullName: JEFFERSON PASTOFIDE DABALOS\r\nGender: Male\r\nLastName: DABALOS\r\nMaidenName: \r\nMiddleName: PASTOFIDE\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
774679	2025-03-24	07:53:06.0499561	<Undetected>	Update	BasicInformationId: 3875\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3672\r\n	BasicInformationId: 3875\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3672\r\n	admin	Questionnaires	1
774680	2025-03-24	09:38:04.5282890	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: WITH HONORS\r\nBasicInformationId: 3875\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1988\r\nDateTo: 1995\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SALVACION ELEMENTARY SCHOOL\r\nYearGraduated: 1995\r\n	admin	EducationalBackgrounds	1
774681	2025-03-24	09:38:04.5448235	<Undetected>	Update	BasicInformationId: 3875\r\nBirthDate: August 30, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4271\r\nExtensionName: \r\nFirstName: PRINCESS NICOLE\r\nFullName: PRINCESS NICOLE REPIA DABALOS\r\nGender: Male\r\nLastName: DABALOS\r\nMaidenName: \r\nMiddleName: REPIA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3875\r\nBirthDate: August 30, 2008\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4271\r\nExtensionName: \r\nFirstName: PRINCESS NICOLE\r\nFullName: PRINCESS NICOLE DABALOS\r\nGender: Male\r\nLastName: DABALOS\r\nMaidenName: \r\nMiddleName: REPIA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774682	2025-03-24	09:38:04.5498402	<Undetected>	Update	BasicInformationId: 3875\r\nBirthDate: November 24, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4272\r\nExtensionName: \r\nFirstName: MEAGAN ANICA\r\nFullName: MEAGAN ANICA REPIA DABALOS\r\nGender: Male\r\nLastName: DABALOS\r\nMaidenName: \r\nMiddleName: REPIA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3875\r\nBirthDate: November 24, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4272\r\nExtensionName: \r\nFirstName: MEAGAN ANICA\r\nFullName: MEAGAN ANICA DABALOS\r\nGender: Male\r\nLastName: DABALOS\r\nMaidenName: \r\nMiddleName: REPIA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774683	2025-03-24	09:38:04.5600090	<Undetected>	Update	BasicInformationId: 3875\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4273\r\nExtensionName: \r\nFirstName: JEFFERSON\r\nFullName: JEFFERSON PASTOFIDE DABALOS\r\nGender: Male\r\nLastName: DABALOS\r\nMaidenName: \r\nMiddleName: PASTOFIDE\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3875\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4273\r\nExtensionName: \r\nFirstName: JEFFERSON\r\nFullName: JEFFERSON DABALOS\r\nGender: Male\r\nLastName: DABALOS\r\nMaidenName: \r\nMiddleName: PASTOFIDE\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
775006	2025-03-24	14:25:23.0895013	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3883\r\nCharacterReferenceId: 0\r\nCompanyAddress: TABANGAO DAO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09279802637\r\nExtensionName: \r\nFirstName: RICA\r\nLastName: SUAREZ\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774684	2025-03-24	10:20:27.7078901	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: WITH HONORS\r\nBasicInformationId: 3875\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1995\r\nDateTo: 1999\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: ANUB HIGH SCHOOL\r\nYearGraduated: 1999\r\n	admin	EducationalBackgrounds	1
774685	2025-03-24	10:20:27.7200988	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3875\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1999\r\nDateTo: 2005\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: EARLY CHILDHOOD EDUCATION\r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 2005\r\n	admin	EducationalBackgrounds	1
774686	2025-03-24	10:20:27.7273501	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3875\r\nCourse: \r\nCourseId: 1348\r\nCourseOrMajor: \r\nDateFrom: 2017\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: ELEMENTARY EDUCATION\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
774687	2025-03-24	10:22:08.1827251	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANDRES, ISLA VERDE\r\nBasicInformationId: 3875\r\nBirthDate: September 15, 1981\r\nBirthPlace: DINGALAN, AURORA\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: raquel.dabalos@deped.gov.ph\r\nExtensionName: \r\nFirstName: RAQUEL\r\nFullName: RAQUEL R. DABALOS\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.4\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DABALOS\r\nMaidenName: \r\nMiddleName: REPIA\r\nMobileNumber: 09684978959\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANDRES, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 49\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANDRES, ISLA VERDE\r\nBasicInformationId: 3875\r\nBirthDate: September 15, 1981\r\nBirthPlace: DINGALAN, AURORA\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: raquel.dabalos@deped.gov.ph\r\nExtensionName: \r\nFirstName: RAQUEL\r\nFullName: RAQUEL R. DABALOS\r\nGender: Female\r\nGovernmentIdIssuedDate: May 08, 2013\r\nGovernmentIdNumber: 1198036\r\nGovernmentIdPlaceIssued: LUCENA\r\nGovernmentIssuedId: PROFESSIONAL REGULATION\r\nGSIS: 02004570089\r\nHDMF: 1211-7037-5785\r\nHeight: 1.4\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: DABALOS\r\nMaidenName: \r\nMiddleName: REPIA\r\nMobileNumber: 09684978959\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANDRES, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025031447-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 447-878-721-0000\r\nWeight: 49\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774688	2025-03-24	10:22:20.1150700	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3874\r\nSkillId: 0\r\nSkillName: N/A\r\n	admin	Skills	1
774689	2025-03-24	10:22:20.1257181	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3874\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
774690	2025-03-24	10:22:20.1348039	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3874\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
774691	2025-03-24	10:22:20.1388180	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3874\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN PASCUAL, BATANGAS\r\nCompanyName: \r\nContactNumber: 09054788623\r\nExtensionName: \r\nFirstName: AILEEN\r\nLastName: MANALO\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774692	2025-03-24	10:22:20.1468777	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3874\r\nCharacterReferenceId: 0\r\nCompanyAddress: SORO-SORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09175977268\r\nExtensionName: \r\nFirstName: MA. SUNSHINE \r\nLastName: DIMAANO\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774693	2025-03-24	10:22:20.1518928	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3874\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN PABLO, LAGUNA\r\nCompanyName: \r\nContactNumber: 09173213925\r\nExtensionName: \r\nFirstName: ROWENA\r\nLastName: DELA CUEVA\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774694	2025-03-24	10:23:59.1849579	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3875\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ANDRES, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09473680961\r\nExtensionName: \r\nFirstName: DIOMEDES\r\nLastName: BRITON\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774695	2025-03-24	10:23:59.1899577	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3875\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ANDRES, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09309657720\r\nExtensionName: \r\nFirstName: JUANITO\r\nLastName: MAGPANTAY\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774696	2025-03-24	10:23:59.1982360	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3875\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09178627327\r\nExtensionName: \r\nFirstName: RIZA\r\nLastName: EBORA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774718	2025-03-24	10:36:32.5775647	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3877\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2000\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: HALIGUE SILANGAN ELEMENTARY SCHOOL\r\nYearGraduated: 2007\r\n	admin	EducationalBackgrounds	1
774697	2025-03-24	10:24:20.1652221	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 058\r\nAddress2: \r\nBarangay: DOMOCLAY\r\nBasicInformationId: 3874\r\nBirthDate: May 19, 1999\r\nBirthPlace: TAYSAN, BATANGAS\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mayann.abdon@deped.gov.ph\r\nExtensionName: \r\nFirstName: MAY ANN\r\nFullName: MAY ANN C. ABDON\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437221589\r\nLastName: ABDON\r\nMaidenName: \r\nMiddleName: CALATON\r\nMobileNumber: 09565296572\r\nNationality: Filipino\r\nPermanentAddress1: 058\r\nPermanentAddress2: \r\nPermanentBarangay: DOMOCLAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: WEST\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: WEST\r\nTIN: \r\nWeight: 53\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 058\r\nAddress2: \r\nBarangay: DOMOCLAY\r\nBasicInformationId: 3874\r\nBirthDate: May 19, 1999\r\nBirthPlace: TAYSAN, BATANGAS\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mayann.abdon@deped.gov.ph\r\nExtensionName: \r\nFirstName: MAY ANN\r\nFullName: MAY ANN C. ABDON\r\nGender: Female\r\nGovernmentIdIssuedDate: January 16, 2020\r\nGovernmentIdNumber: 1850632\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02005993168\r\nHDMF: 1212-4478-9450\r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: 0437221589\r\nLastName: ABDON\r\nMaidenName: \r\nMiddleName: CALATON\r\nMobileNumber: 09565296572\r\nNationality: Filipino\r\nPermanentAddress1: 058\r\nPermanentAddress2: \r\nPermanentBarangay: DOMOCLAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: WEST\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050562641-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 34-8366138-0\r\nStreetName: WEST\r\nTIN: 750-672-332-0000\r\nWeight: 53\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774708	2025-03-24	10:32:59.5077109	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN AGUSTIN KANLURAN, ISLA VERDE\r\nBasicInformationId: 0\r\nBirthDate: March 03, 1982\r\nBirthPlace: RIZAL, OCCIDENTAL MINDORO\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: feliza.medina@deped.gov.ph\r\nExtensionName: \r\nFirstName: FELIZA\r\nFullName: FELIZA P. MEDINA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.27\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: PICCIO\r\nMobileNumber: 09959550839\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN AGUSTIN KANLURAN, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 46\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774709	2025-03-24	10:32:59.5425606	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3876\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: AVELINO\r\nFullName: AVELINO ATIENZA MEDINA\r\nGender: Male\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: ATIENZA\r\nOccupation: FARMER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
774710	2025-03-24	10:32:59.5425606	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3876\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOSE\r\nFullName: JOSE CATAGUE PICCIO\r\nGender: Male\r\nLastName: PICCIO\r\nMaidenName: \r\nMiddleName: CATAGUE\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774711	2025-03-24	10:32:59.5425606	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3876\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MAGDALEA\r\nFullName: MAGDALEA MUNGCAL FRESNILLO\r\nGender: Female\r\nLastName: FRESNILLO\r\nMaidenName: \r\nMiddleName: MUNGCAL\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774712	2025-03-24	10:32:59.5425606	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3876\r\nBirthDate: May 08, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOHN FELIX\r\nFullName: JOHN FELIX PICCIO MEDINA\r\nGender: Male\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: PICCIO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774713	2025-03-24	10:32:59.5425606	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3876\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
774744	2025-03-24	10:43:30.3843071	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: FOURTH HONORS\r\nBasicInformationId: 3876\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1989\r\nDateTo: 1995\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: MANOOT ELEMENTARY SCHOOL\r\nYearGraduated: 1995\r\n	admin	EducationalBackgrounds	1
774745	2025-03-24	10:43:30.3888171	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3876\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1995\r\nDateTo: 1999\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BAYAMBANG NATIONAL HIGH SCHOOL\r\nYearGraduated: 1999\r\n	admin	EducationalBackgrounds	1
775614	2025-03-26	10:44:55.2517648	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3925\r\nOrganizationId: 0\r\nOrganizationName: BATANGAS ADVENT MULTIPURPOSE COOPERATIVE\r\n	admin	Organizations	1
774698	2025-03-24	10:25:20.5916803	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3875\r\nDateOfExamination: March 10, 2013\r\nDateOfRelease: September 15, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: March 10, 2013\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1198036\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 75.6\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
774699	2025-03-24	10:27:51.5187923	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPABILITY FOR SPECIAL EDUCATION AND RECEIVING TEACHERS ON FILIPINO SIGN LANGUAGE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774700	2025-03-24	10:30:02.9022633	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3875\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATOR ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16482\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774701	2025-03-24	10:30:02.9092853	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3875\r\nEmployeeTrainingId: 0\r\nFromDate: December 05, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: December 07, 2024\r\nTrainingId: 16414\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774702	2025-03-24	10:30:02.9135548	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3875\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16470\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774703	2025-03-24	10:30:02.9196598	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3875\r\nEmployeeTrainingId: 0\r\nFromDate: July 10, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 12, 2024\r\nTrainingId: 16426\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774704	2025-03-24	10:30:02.9236657	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3875\r\nEmployeeTrainingId: 0\r\nFromDate: July 04, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 06, 2024\r\nTrainingId: 16483\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774705	2025-03-24	10:30:25.3599075	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3875\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
774706	2025-03-24	10:30:25.3649076	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3875\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
774707	2025-03-24	10:30:25.3749072	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3875\r\nSkillId: 0\r\nSkillName: DRAWING\r\n	admin	Skills	1
774714	2025-03-24	10:33:10.7661922	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO BINOTBOT\r\nBarangay: HALIGUE SILANGAN\r\nBasicInformationId: 0\r\nBirthDate: December 01, 1994\r\nBirthPlace: HALIGUE SILANGAN, BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: grace.marasigan003@deped.gov.ph\r\nExtensionName: \r\nFirstName: GRACE\r\nFullName: GRACE B. MARASIGAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: BALAHIBO\r\nMobileNumber: 09558413455\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO BINOTBOT\r\nPermanentBarangay: HALIGUE SILANGAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774715	2025-03-24	10:33:10.8796922	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3877\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: POLICARPIO\r\nFullName: POLICARPIO VELASQUEZ MARASIGAN\r\nGender: Male\r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: VELASQUEZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774716	2025-03-24	10:33:10.8796922	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3877\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALICIA\r\nFullName: ALICIA MARASIGAN BALAHIBO\r\nGender: Male\r\nLastName: BALAHIBO\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774717	2025-03-24	10:33:10.8796922	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3877\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
774719	2025-03-24	10:36:32.5826058	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3877\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2007\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: STO. NINO NATIONAL HIGH SCHOOL\r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
774720	2025-03-24	10:36:32.5925660	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3877\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2011\r\nDateTo: 2015\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2015\r\n	admin	EducationalBackgrounds	1
774721	2025-03-24	10:36:32.5966094	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3877\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2017\r\nDateTo: 2019\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN PRESCHOOL EDUCATION\r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2019\r\n	admin	EducationalBackgrounds	1
774722	2025-03-24	10:36:32.6035648	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO BINOTBOT\r\nBarangay: HALIGUE SILANGAN\r\nBasicInformationId: 3877\r\nBirthDate: December 01, 1994\r\nBirthPlace: HALIGUE SILANGAN, BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: grace.marasigan003@deped.gov.ph\r\nExtensionName: \r\nFirstName: GRACE\r\nFullName: GRACE B. MARASIGAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: BALAHIBO\r\nMobileNumber: 09558413455\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO BINOTBOT\r\nPermanentBarangay: HALIGUE SILANGAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Ms.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO BINOTBOT\r\nBarangay: HALIGUE SILANGAN\r\nBasicInformationId: 3877\r\nBirthDate: December 01, 1994\r\nBirthPlace: HALIGUE SILANGAN, BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: grace.marasigan003@deped.gov.ph\r\nExtensionName: \r\nFirstName: GRACE\r\nFullName: GRACE B. MARASIGAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: BALAHIBO\r\nMobileNumber: 09558413455\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO BINOTBOT\r\nPermanentBarangay: HALIGUE SILANGAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774723	2025-03-24	10:36:32.6085644	<Undetected>	Update	BasicInformationId: 3877\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4278\r\nExtensionName: \r\nFirstName: POLICARPIO\r\nFullName: POLICARPIO VELASQUEZ MARASIGAN\r\nGender: Male\r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: VELASQUEZ\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3877\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4278\r\nExtensionName: \r\nFirstName: POLICARPIO\r\nFullName: POLICARPIO MARASIGAN\r\nGender: Male\r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: VELASQUEZ\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774724	2025-03-24	10:36:32.6135655	<Undetected>	Update	BasicInformationId: 3877\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4279\r\nExtensionName: \r\nFirstName: ALICIA\r\nFullName: ALICIA MARASIGAN BALAHIBO\r\nGender: Male\r\nLastName: BALAHIBO\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3877\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4279\r\nExtensionName: \r\nFirstName: ALICIA\r\nFullName: ALICIA BALAHIBO\r\nGender: Male\r\nLastName: BALAHIBO\r\nMaidenName: \r\nMiddleName: MARASIGAN\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774725	2025-03-24	10:36:32.6175643	<Undetected>	Update	BasicInformationId: 3877\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3674\r\n	BasicInformationId: 3877\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3674\r\n	admin	Questionnaires	1
774741	2025-03-24	10:39:35.8440713	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3877\r\nDateOfExamination: September 15, 2015\r\nDateOfRelease: December 01, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 15, 2015\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1398341\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 78\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
774769	2025-03-24	10:43:58.4638833	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3877\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 12, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: January 01, 2025\r\n	admin	Experiences	1
774770	2025-03-24	10:43:58.4738836	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3877\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 08, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 29,165.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
775615	2025-03-26	10:44:55.2559440	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3925\r\nOrganizationId: 0\r\nOrganizationName: PHILIPPINE ELEMENTARY SCHOOL PRINCIPALS ASSOCIATION\r\n	admin	Organizations	1
774726	2025-03-24	10:38:13.1150455	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3875\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,733.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
774727	2025-03-24	10:38:13.1220621	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3875\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 02, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 31,633.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
774728	2025-03-24	10:38:13.1260680	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3875\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: January 01, 2024\r\n	admin	Experiences	1
774729	2025-03-24	10:38:13.1321249	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3875\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: November 02, 2023\r\n	admin	Experiences	1
774730	2025-03-24	10:38:13.1361311	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3875\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,798.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
774731	2025-03-24	10:38:13.1411386	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3875\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 28,276.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
774732	2025-03-24	10:38:13.1461552	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3875\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 03, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 26,754.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
774733	2025-03-24	10:38:13.1512015	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3875\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,600.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: November 02, 2020\r\n	admin	Experiences	1
774734	2025-03-24	10:38:13.1552074	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3875\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,038.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
774735	2025-03-24	10:38:13.1602148	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3875\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,437.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
774736	2025-03-24	10:38:13.1654385	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3875\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2018\r\n	admin	Experiences	1
774737	2025-03-24	10:38:13.1705345	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3875\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,620.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
774738	2025-03-24	10:38:13.1745494	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3875\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
774739	2025-03-24	10:38:13.1796075	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3875\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
774740	2025-03-24	10:38:13.1846159	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3875\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 05, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: October 02, 2014\r\n	admin	Experiences	1
774742	2025-03-24	10:41:36.4878346	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANDRES, ISLA VERDE\r\nBasicInformationId: 0\r\nBirthDate: October 31, 1988\r\nBirthPlace: SAN ANDRES, ISLA VERDE, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jinky.balita@deped.gov.ph\r\nExtensionName: \r\nFirstName: JINKY\r\nFullName: JINKY P. BALITA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BALITA\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nMobileNumber: 09914290840\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 75\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774743	2025-03-24	10:41:36.5020212	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3878\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
774767	2025-03-24	10:43:55.5267530	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANDRES, ISLA VERDE\r\nBasicInformationId: 0\r\nBirthDate: December 13, 1982\r\nBirthPlace: SAN ANDRES, ISLA VERDE, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: janice.pagcaliwagan001@deped.gov.ph\r\nExtensionName: \r\nFirstName: JANICE\r\nFullName: JANICE A. PAGCALIWAGAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PAGCALIWAGAN\r\nMaidenName: \r\nMiddleName: APARRI\r\nMobileNumber: 09914290841\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANDRES, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: KURUKAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: KURUKAN\r\nTIN: \r\nWeight: 88\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774768	2025-03-24	10:43:55.5396781	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3879\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
774773	2025-03-24	10:45:44.9138907	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANDRES, ISLA VERDE\r\nBasicInformationId: 0\r\nBirthDate: December 25, 1973\r\nBirthPlace: SAN ANDRES, ISLA VERDE, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: evelyn.escarez001@deped.gov.ph\r\nExtensionName: \r\nFirstName: EVELYN\r\nFullName: EVELYN M. ESCAREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.3\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: MAPILI\r\nMobileNumber: 09922120805\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANDRES, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 52\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774746	2025-03-24	10:43:30.3938340	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3876\r\nCourse: \r\nCourseId: 1307\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2005\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: LIPA CITY PUBLIC SCHOOL\r\nYearGraduated: 2005\r\n	admin	EducationalBackgrounds	1
774747	2025-03-24	10:43:30.3988510	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3876\r\nCourse: \r\nCourseId: 1284\r\nCourseOrMajor: \r\nDateFrom: 2017\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
774748	2025-03-24	10:43:30.4039547	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3876\r\nDateOfExamination: August 17, 2014\r\nDateOfRelease: March 03, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 17, 2014\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 13335897\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 75.0\r\nTitle: PRC LICENSE\r\n	admin	Eligibilities	1
774749	2025-03-24	10:43:30.4089714	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3876\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,733.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: March 24, 2025\r\n	admin	Experiences	1
774750	2025-03-24	10:43:30.4139895	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3876\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
774751	2025-03-24	10:43:30.4179982	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3876\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 29,798.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
774752	2025-03-24	10:43:30.4239985	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3876\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 28,276.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
774753	2025-03-24	10:43:30.4282455	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3876\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 26,754.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
774754	2025-03-24	10:43:30.4332822	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3876\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: November 03, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,316.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
774755	2025-03-24	10:43:30.4382992	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3876\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: November 02, 2020\r\n	admin	Experiences	1
774756	2025-03-24	10:43:30.4427141	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3876\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
774774	2025-03-24	10:45:44.9261050	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3880\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
774757	2025-03-24	10:43:30.4477311	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3876\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 19,620.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
774758	2025-03-24	10:43:30.4527794	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3876\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
774759	2025-03-24	10:43:30.4577963	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3876\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 13, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 18,546.00\r\nPositionHeld:  \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
774760	2025-03-24	10:43:30.4629317	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3876\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: October 05, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 18,546.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: December 03, 2015\r\n	admin	Experiences	1
774761	2025-03-24	10:43:30.4672683	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3876\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY \r\nExperienceId: 0\r\nFromDate: August 26, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 18,546.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: September 24, 2015\r\n	admin	Experiences	1
774762	2025-03-24	10:43:30.4722849	<Undetected>	Update	BasicInformationId: 3876\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4274\r\nExtensionName: \r\nFirstName: AVELINO\r\nFullName: AVELINO ATIENZA MEDINA\r\nGender: Male\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: ATIENZA\r\nOccupation: FARMER\r\nRelationship: Husband\r\n	BasicInformationId: 3876\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4274\r\nExtensionName: \r\nFirstName: AVELINO\r\nFullName: AVELINO MEDINA\r\nGender: Male\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: ATIENZA\r\nOccupation: FARMER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
774763	2025-03-24	10:43:30.4773014	<Undetected>	Update	BasicInformationId: 3876\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4275\r\nExtensionName: \r\nFirstName: JOSE\r\nFullName: JOSE CATAGUE PICCIO\r\nGender: Male\r\nLastName: PICCIO\r\nMaidenName: \r\nMiddleName: CATAGUE\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3876\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4275\r\nExtensionName: \r\nFirstName: JOSE\r\nFullName: JOSE PICCIO\r\nGender: Male\r\nLastName: PICCIO\r\nMaidenName: \r\nMiddleName: CATAGUE\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774764	2025-03-24	10:43:30.4824422	<Undetected>	Update	BasicInformationId: 3876\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4276\r\nExtensionName: \r\nFirstName: MAGDALEA\r\nFullName: MAGDALEA MUNGCAL FRESNILLO\r\nGender: Female\r\nLastName: FRESNILLO\r\nMaidenName: \r\nMiddleName: MUNGCAL\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3876\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4276\r\nExtensionName: \r\nFirstName: MAGDALEA\r\nFullName: MAGDALEA FRESNILLO\r\nGender: Female\r\nLastName: FRESNILLO\r\nMaidenName: \r\nMiddleName: MUNGCAL\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774765	2025-03-24	10:43:30.4874584	<Undetected>	Update	BasicInformationId: 3876\r\nBirthDate: May 08, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4277\r\nExtensionName: \r\nFirstName: JOHN FELIX\r\nFullName: JOHN FELIX PICCIO MEDINA\r\nGender: Male\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: PICCIO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3876\r\nBirthDate: May 08, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4277\r\nExtensionName: \r\nFirstName: JOHN FELIX\r\nFullName: JOHN FELIX MEDINA\r\nGender: Male\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: PICCIO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774766	2025-03-24	10:43:30.4924761	<Undetected>	Update	BasicInformationId: 3876\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3673\r\n	BasicInformationId: 3876\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3673\r\n	admin	Questionnaires	1
774772	2025-03-24	10:45:32.6474540	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INSET MASTER CLASS FOR KINDERGARTEN G1, G4, AND G7 TEACHERS ACROSS ALL LEARNING AREAS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774779	2025-03-24	10:47:59.2757939	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 5 DAY IN SERVICE TRAINING FOR TEACHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774780	2025-03-24	10:48:26.8160636	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3876\r\nEmployeeTrainingId: 0\r\nFromDate: December 05, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: December 07, 2024\r\nTrainingId: 16331\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774771	2025-03-24	10:43:58.4778826	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3877\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 23,877.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: November 07, 2021\r\n	admin	Experiences	1
774785	2025-03-24	10:49:17.9999916	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2022 DISTRICT RESEARCHERS WORKSHOP ON ACTION RESEARCH\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774806	2025-03-24	10:52:25.9031221	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: LEARNING DELIVERY MODALITIES COURSE FOR TEACHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774807	2025-03-24	10:53:12.7090095	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3877\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: NATIONAL EDUCATORS' ACADEMY OF THE PHILIPPINES (SCHOOLS DIVISION OF BATANGAS CITY)\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16400\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774808	2025-03-24	10:53:12.7130085	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3877\r\nEmployeeTrainingId: 0\r\nFromDate: August 02, 2023\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 02, 2023\r\nTrainingId: 15172\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774809	2025-03-24	10:53:12.7190096	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3877\r\nEmployeeTrainingId: 0\r\nFromDate: August 12, 2022\r\nHours: 56\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: NATIONAL EDUCATORS' ACADEMY OF THE PHILIPPINES (SCHOOLS DIVISION OF BATANGAS CITY)\r\nStatus: \r\nToDate: August 22, 2022\r\nTrainingId: 16660\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774810	2025-03-24	10:53:12.7230093	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3877\r\nEmployeeTrainingId: 0\r\nFromDate: August 19, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY DISTRICT VII\r\nStatus: \r\nToDate: August 19, 2022\r\nTrainingId: 16722\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774811	2025-03-24	10:53:12.7280092	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3877\r\nEmployeeTrainingId: 0\r\nFromDate: April 12, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: April 12, 2022\r\nTrainingId: 16723\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774813	2025-03-24	10:53:53.3724197	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3877\r\nSkillId: 0\r\nSkillName: PLAYING INSTRUMENT (GUITAR & UKELELE)\r\n	admin	Skills	1
774815	2025-03-24	10:55:54.6614165	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3877\r\nCharacterReferenceId: 0\r\nCompanyAddress: PAGKILATAN BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09778416380\r\nExtensionName: \r\nFirstName: CARINA\r\nLastName: BAGON\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774816	2025-03-24	10:55:54.6664165	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3877\r\nCharacterReferenceId: 0\r\nCompanyAddress: HALIGUE SILANGAN BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09178770027\r\nExtensionName: \r\nFirstName: MARYDEL\r\nLastName: MARASIGAN\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774817	2025-03-24	10:55:54.6714167	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3877\r\nCharacterReferenceId: 0\r\nCompanyAddress: TABANGAO DAO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09279802637\r\nExtensionName: \r\nFirstName: RICA\r\nLastName: SUAREZ\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774825	2025-03-24	11:00:12.4500784	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO BINOTBOT\r\nBarangay: HALIGUE SILANGAN\r\nBasicInformationId: 3877\r\nBirthDate: December 01, 1994\r\nBirthPlace: HALIGUE SILANGAN, BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: grace.marasigan003@deped.gov.ph\r\nExtensionName: \r\nFirstName: GRACE\r\nFullName: GRACE B. MARASIGAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: BALAHIBO\r\nMobileNumber: 09558413455\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO BINOTBOT\r\nPermanentBarangay: HALIGUE SILANGAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO BINOTBOT\r\nBarangay: HALIGUE SILANGAN\r\nBasicInformationId: 3877\r\nBirthDate: December 01, 1994\r\nBirthPlace: HALIGUE SILANGAN, BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: grace.marasigan003@deped.gov.ph\r\nExtensionName: \r\nFirstName: GRACE\r\nFullName: GRACE B. MARASIGAN\r\nGender: Female\r\nGovernmentIdIssuedDate: December 11, 2015\r\nGovernmentIdNumber: 1398341\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02005438515\r\nHDMF: 1211-7807-3061\r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MARASIGAN\r\nMaidenName: \r\nMiddleName: BALAHIBO\r\nMobileNumber: 09558413455\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO BINOTBOT\r\nPermanentBarangay: HALIGUE SILANGAN\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-250115951-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3796242-3\r\nStreetName: \r\nTIN: 726-694-169-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774775	2025-03-24	10:47:56.7947776	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3878\r\nBirthDate: October 14, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EDRIELLE DENISE\r\nFullName: EDRIELLE DENISE PAGCALIWAGAN BALITA\r\nGender: Male\r\nLastName: BALITA\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774776	2025-03-24	10:47:56.7997854	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3878\r\nBirthDate: October 13, 2020\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DIANDRA KYLIE\r\nFullName: DIANDRA KYLIE PAGCALIWAGAN BALITA\r\nGender: Male\r\nLastName: BALITA\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774777	2025-03-24	10:47:56.8099832	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3878\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DARWIN\r\nFullName: DARWIN CASA BALITA\r\nGender: Male\r\nLastName: BALITA\r\nMaidenName: \r\nMiddleName: CASA\r\nOccupation: SCAFOLDER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
774778	2025-03-24	10:47:56.8149912	<Undetected>	Update	BasicInformationId: 3878\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3675\r\n	BasicInformationId: 3878\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3675\r\n	admin	Questionnaires	1
774786	2025-03-24	10:49:33.4421304	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3878\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 2002\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: PARANG CUEVA ELEMENTARY SCHOOL\r\nYearGraduated: 2002\r\n	admin	EducationalBackgrounds	1
774787	2025-03-24	10:49:33.4535046	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3878\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2006\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGUSTIN NATIONAL HIGH SCHOOL\r\nYearGraduated: 2006\r\n	admin	EducationalBackgrounds	1
774788	2025-03-24	10:49:33.4585344	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: EBD SCHOLAR\r\nBasicInformationId: 3878\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 2007\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: SAINT BRIDGET COLLEGE\r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
774789	2025-03-24	10:49:33.4635505	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3878\r\nCourse: \r\nCourseId: 1284\r\nCourseOrMajor: \r\nDateFrom: 2018\r\nDateTo: 2019\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2019\r\n	admin	EducationalBackgrounds	1
774790	2025-03-24	10:49:33.4758429	<Undetected>	Update	BasicInformationId: 3878\r\nBirthDate: October 14, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4280\r\nExtensionName: \r\nFirstName: EDRIELLE DENISE\r\nFullName: EDRIELLE DENISE PAGCALIWAGAN BALITA\r\nGender: Male\r\nLastName: BALITA\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3878\r\nBirthDate: October 14, 2014\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4280\r\nExtensionName: \r\nFirstName: EDRIELLE DENISE\r\nFullName: EDRIELLE DENISE BALITA\r\nGender: Male\r\nLastName: BALITA\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774791	2025-03-24	10:49:33.4905657	<Undetected>	Update	BasicInformationId: 3878\r\nBirthDate: October 13, 2020\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4281\r\nExtensionName: \r\nFirstName: DIANDRA KYLIE\r\nFullName: DIANDRA KYLIE PAGCALIWAGAN BALITA\r\nGender: Male\r\nLastName: BALITA\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3878\r\nBirthDate: October 13, 2020\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4281\r\nExtensionName: \r\nFirstName: DIANDRA KYLIE\r\nFullName: DIANDRA KYLIE BALITA\r\nGender: Male\r\nLastName: BALITA\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774792	2025-03-24	10:49:33.5116036	<Undetected>	Update	BasicInformationId: 3878\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4282\r\nExtensionName: \r\nFirstName: DARWIN\r\nFullName: DARWIN CASA BALITA\r\nGender: Male\r\nLastName: BALITA\r\nMaidenName: \r\nMiddleName: CASA\r\nOccupation: SCAFOLDER\r\nRelationship: Husband\r\n	BasicInformationId: 3878\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4282\r\nExtensionName: \r\nFirstName: DARWIN\r\nFullName: DARWIN BALITA\r\nGender: Male\r\nLastName: BALITA\r\nMaidenName: \r\nMiddleName: CASA\r\nOccupation: SCAFOLDER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
774824	2025-03-24	10:57:28.3220738	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3878\r\nSkillId: 0\r\nSkillName: COMPUTER LITERACY\r\n	admin	Skills	1
774839	2025-03-24	11:02:11.8896098	<Undetected>	Update	BasicInformationId: 3881\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4283\r\nExtensionName: \r\nFirstName: RONEL\r\nFullName: RONEL AZUCENA SILANG\r\nGender: Male\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: AZUCENA\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3881\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4283\r\nExtensionName: \r\nFirstName: RONEL\r\nFullName: RONEL SILANG\r\nGender: Male\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: AZUCENA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
774781	2025-03-24	10:48:26.8216912	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3876\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 28, 2024\r\nTrainingId: 16720\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774782	2025-03-24	10:48:26.8267006	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3876\r\nEmployeeTrainingId: 0\r\nFromDate: October 10, 2024\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: October 11, 2024\r\nTrainingId: 16321\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774783	2025-03-24	10:48:26.8317319	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3876\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16357\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774784	2025-03-24	10:48:26.8367483	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3876\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16721\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774797	2025-03-24	10:52:21.6275990	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3876\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
774798	2025-03-24	10:52:21.6346549	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3876\r\nSkillId: 0\r\nSkillName: PLAYING VOLLEYBALL\r\n	admin	Skills	1
774799	2025-03-24	10:52:21.6396704	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3876\r\nSkillId: 0\r\nSkillName: PLAYING BADMINTON\r\n	admin	Skills	1
774800	2025-03-24	10:52:21.6477186	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3876\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
774801	2025-03-24	10:52:21.6517319	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3876\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
774802	2025-03-24	10:52:21.6567480	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3876\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES SORO SORO ILAYA\r\nCompanyName: \r\nContactNumber: 09055132951\r\nExtensionName: \r\nFirstName: NIEVES \r\nLastName: MONTALBO\r\nMiddleName: A.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774803	2025-03-24	10:52:21.6619645	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3876\r\nCharacterReferenceId: 0\r\nCompanyAddress: ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09086231854\r\nExtensionName: \r\nFirstName: MELODY\r\nLastName: FABILA\r\nMiddleName: M.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774804	2025-03-24	10:52:21.6662061	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3876\r\nCharacterReferenceId: 0\r\nCompanyAddress: ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09277975449\r\nExtensionName: \r\nFirstName: LEOBERT\r\nLastName: CLARO\r\nMiddleName: E.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774805	2025-03-24	10:52:21.6714461	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN AGUSTIN KANLURAN, ISLA VERDE\r\nBasicInformationId: 3876\r\nBirthDate: March 03, 1982\r\nBirthPlace: RIZAL, OCCIDENTAL MINDORO\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: feliza.medina@deped.gov.ph\r\nExtensionName: \r\nFirstName: FELIZA\r\nFullName: FELIZA P. MEDINA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.27\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: PICCIO\r\nMobileNumber: 09959550839\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN AGUSTIN KANLURAN, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 46\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN AGUSTIN KANLURAN, ISLA VERDE\r\nBasicInformationId: 3876\r\nBirthDate: March 03, 1982\r\nBirthPlace: RIZAL, OCCIDENTAL MINDORO\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: feliza.medina@deped.gov.ph\r\nExtensionName: \r\nFirstName: FELIZA\r\nFullName: FELIZA P. MEDINA\r\nGender: Female\r\nGovernmentIdIssuedDate: November 25, 2014\r\nGovernmentIdNumber: 1335897\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC LICENSE\r\nGSIS: 02004779937\r\nHDMF: 1211-7284-3798\r\nHeight: 1.27\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: PICCIO\r\nMobileNumber: 09959550839\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN AGUSTIN KANLURAN, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-201474798-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1258936-8\r\nStreetName: \r\nTIN: 943-221-514-0000\r\nWeight: 46\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774837	2025-03-24	11:02:05.6190511	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3881\r\nBirthDate: January 06, 2021\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: NEL AUSTIN\r\nFullName: NEL AUSTIN GUTIERREZ SILANG\r\nGender: Male\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774838	2025-03-24	11:02:05.6190511	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3881\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
774916	2025-03-24	13:06:39.0336113	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 126th INDEPENDENCE DAY COMMEMORATION MASTER CLASS PROFESSIONAL DEVELOPMENT PROGRAM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774793	2025-03-24	10:51:09.0889349	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANDRES, ISLA VERDE\r\nBasicInformationId: 3878\r\nBirthDate: October 31, 1988\r\nBirthPlace: SAN ANDRES, ISLA VERDE, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jinky.balita@deped.gov.ph\r\nExtensionName: \r\nFirstName: JINKY\r\nFullName: JINKY P. BALITA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BALITA\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nMobileNumber: 09914290840\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 75\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANDRES, ISLA VERDE\r\nBasicInformationId: 3878\r\nBirthDate: October 31, 1988\r\nBirthPlace: SAN ANDRES, ISLA VERDE, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jinky.balita@deped.gov.ph\r\nExtensionName: \r\nFirstName: JINKY\r\nFullName: JINKY P. BALITA\r\nGender: Female\r\nGovernmentIdIssuedDate: April 08, 2022\r\nGovernmentIdNumber: 1123737\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02004653184\r\nHDMF: 1210-8099-1518\r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BALITA\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nMobileNumber: 09914290840\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: 09-050302910-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 441-135-551-0000\r\nWeight: 75\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774794	2025-03-24	10:52:21.4194902	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3878\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ANDRES, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: MIRIAM\r\nLastName: FUENTES\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774795	2025-03-24	10:52:21.4244905	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3878\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ANDRES, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: ARNOLD\r\nLastName: BRITON\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774796	2025-03-24	10:52:21.4315354	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3878\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ANDRES, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09507534977\r\nExtensionName: \r\nFirstName: JESSIE\r\nLastName: ROXAS\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774812	2025-03-24	10:53:39.2049719	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MASTER CLASS FOR KINDERGARTEN, GRADE 1, GRADE 4, AND GRADE 7 TEACHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774814	2025-03-24	10:55:00.3720971	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: TRAINING WORKSHOP ANALYSIS OF NAT RESULT CUM ACTION BASIC RESEARCH WRITING ON ASSESSMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774818	2025-03-24	10:57:14.4936155	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3878\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16724\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774819	2025-03-24	10:57:14.4986506	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3878\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16725\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774820	2025-03-24	10:57:14.5036583	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3878\r\nEmployeeTrainingId: 0\r\nFromDate: August 21, 2024\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 24, 2024\r\nTrainingId: 16617\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774821	2025-03-24	10:57:14.5088390	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3878\r\nEmployeeTrainingId: 0\r\nFromDate: November 18, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 20, 2024\r\nTrainingId: 16428\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774822	2025-03-24	10:57:14.5138543	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3878\r\nEmployeeTrainingId: 0\r\nFromDate: July 02, 2024\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 03, 2024\r\nTrainingId: 16483\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774823	2025-03-24	10:57:14.5188539	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3878\r\nDateOfExamination: September 23, 2011\r\nDateOfRelease: October 31, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 23, 2011\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1123737\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 75\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
774826	2025-03-24	11:02:05.6000017	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN AGUSTIN KANLURAN, ISLA VERDE\r\nBasicInformationId: 0\r\nBirthDate: November 30, 1983\r\nBirthPlace: NAUJAN ORIENTAL MINDORO\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: orpha.silang@deped.gov.ph\r\nExtensionName: \r\nFirstName: ORPHA\r\nFullName: ORPHA G. SILANG\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.45\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nMobileNumber: 09309614605\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN AGUSTIN KANLURAN, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 58\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774827	2025-03-24	11:02:05.6178794	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: ACHIEVER\r\nBasicInformationId: 3881\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1991\r\nDateTo: 1996\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL\r\nYearGraduated: 1996\r\n	admin	EducationalBackgrounds	1
774828	2025-03-24	11:02:05.6178794	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: ACHIEVER\r\nBasicInformationId: 3881\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 2008\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGUSTIN NATIONAL HIGH SCHOOL\r\nYearGraduated: 2008\r\n	admin	EducationalBackgrounds	1
774829	2025-03-24	11:02:05.6178794	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3881\r\nCourse: \r\nCourseId: 1372\r\nCourseOrMajor: \r\nDateFrom: 2014\r\nDateTo: 2014\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Vocational Graduate\r\nMajor: \r\nSchoolorUniversity: TECHNICAL EDUCATION AND SKILLS DEVELOPMENT AUTHORITY\r\nYearGraduated: 2014\r\n	admin	EducationalBackgrounds	1
774830	2025-03-24	11:02:05.6178794	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3881\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2010\r\nDateTo: 2014\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: COLEGIO NG LUNGSOD NG BATANGAS\r\nYearGraduated: 2014\r\n	admin	EducationalBackgrounds	1
774831	2025-03-24	11:02:05.6178794	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3881\r\nCourse: \r\nCourseId: 1284\r\nCourseOrMajor: \r\nDateFrom: 2015\r\nDateTo: 2017\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2017\r\n	admin	EducationalBackgrounds	1
774832	2025-03-24	11:02:05.6178794	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3881\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RONEL\r\nFullName: RONEL AZUCENA SILANG\r\nGender: Male\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: AZUCENA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
774833	2025-03-24	11:02:05.6178794	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3881\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MIGUEL\r\nFullName: MIGUEL GUTIERREZ\r\nGender: Male\r\nLastName: GUTIERREZ\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774834	2025-03-24	11:02:05.6190511	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3881\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: BEBIANA\r\nFullName: BEBIANA RAMOS\r\nGender: Female\r\nLastName: RAMOS\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774835	2025-03-24	11:02:05.6190511	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3881\r\nBirthDate: November 02, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOHN ROVIC\r\nFullName: JOHN ROVIC GUTIERREZ SILANG\r\nGender: Male\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774836	2025-03-24	11:02:05.6190511	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3881\r\nBirthDate: December 20, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: KENNETH\r\nFullName: KENNETH GUTIERREZ SILANG\r\nGender: Male\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774840	2025-03-24	11:02:11.9019283	<Undetected>	Update	BasicInformationId: 3881\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4284\r\nExtensionName: \r\nFirstName: MIGUEL\r\nFullName: MIGUEL GUTIERREZ\r\nGender: Male\r\nLastName: GUTIERREZ\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3881\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4284\r\nExtensionName: \r\nFirstName: MIGUEL\r\nFullName: MIGUEL GUTIERREZ\r\nGender: Male\r\nLastName: GUTIERREZ\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774841	2025-03-24	11:02:11.9069591	<Undetected>	Update	BasicInformationId: 3881\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4285\r\nExtensionName: \r\nFirstName: BEBIANA\r\nFullName: BEBIANA RAMOS\r\nGender: Female\r\nLastName: RAMOS\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3881\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4285\r\nExtensionName: \r\nFirstName: BEBIANA\r\nFullName: BEBIANA RAMOS\r\nGender: Female\r\nLastName: RAMOS\r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774842	2025-03-24	11:02:11.9159847	<Undetected>	Update	BasicInformationId: 3881\r\nBirthDate: November 02, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4286\r\nExtensionName: \r\nFirstName: JOHN ROVIC\r\nFullName: JOHN ROVIC GUTIERREZ SILANG\r\nGender: Male\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3881\r\nBirthDate: November 02, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4286\r\nExtensionName: \r\nFirstName: JOHN ROVIC\r\nFullName: JOHN ROVIC SILANG\r\nGender: Male\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774843	2025-03-24	11:02:11.9199911	<Undetected>	Update	BasicInformationId: 3881\r\nBirthDate: December 20, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4287\r\nExtensionName: \r\nFirstName: KENNETH\r\nFullName: KENNETH GUTIERREZ SILANG\r\nGender: Male\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3881\r\nBirthDate: December 20, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4287\r\nExtensionName: \r\nFirstName: KENNETH\r\nFullName: KENNETH SILANG\r\nGender: Male\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774844	2025-03-24	11:02:11.9260243	<Undetected>	Update	BasicInformationId: 3881\r\nBirthDate: January 06, 2021\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4288\r\nExtensionName: \r\nFirstName: NEL AUSTIN\r\nFullName: NEL AUSTIN GUTIERREZ SILANG\r\nGender: Male\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3881\r\nBirthDate: January 06, 2021\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4288\r\nExtensionName: \r\nFirstName: NEL AUSTIN\r\nFullName: NEL AUSTIN SILANG\r\nGender: Male\r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774845	2025-03-24	11:02:11.9300303	<Undetected>	Update	BasicInformationId: 3881\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3678\r\n	BasicInformationId: 3881\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3678\r\n	admin	Questionnaires	1
774874	2025-03-24	11:08:29.1934244	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3881\r\nDateOfExamination: July 17, 2014\r\nDateOfRelease: November 30, 2024\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: July 17, 2014\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1344022\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 75.0\r\nTitle: PRC LICENSE\r\n	admin	Eligibilities	1
774875	2025-03-24	11:08:29.1994534	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3881\r\nCompanyInstitution: SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: March 24, 2025\r\n	admin	Experiences	1
774876	2025-03-24	11:08:29.2034680	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3881\r\nCompanyInstitution: SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 20,932.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
774877	2025-03-24	11:08:29.2084845	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3881\r\nCompanyInstitution: SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,723.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
774878	2025-03-24	11:08:29.2135225	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3881\r\nCompanyInstitution: SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 04, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 24,161.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
774879	2025-03-24	11:08:29.2185500	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3881\r\nCompanyInstitution: SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 27,284.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 03, 2021\r\n	admin	Experiences	1
774846	2025-03-24	11:03:10.6761277	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3878\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 32,245.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
774847	2025-03-24	11:03:10.6831568	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3878\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 30,736.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: January 01, 2024\r\n	admin	Experiences	1
774848	2025-03-24	11:03:10.6873046	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3878\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 29,165.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
774849	2025-03-24	11:03:10.6933197	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3878\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: March 07, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,165.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
774850	2025-03-24	11:03:10.6975837	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3878\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 27,608.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: March 06, 2022\r\n	admin	Experiences	1
774851	2025-03-24	11:03:10.7070626	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3878\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 10, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 24,161.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
774852	2025-03-24	11:03:10.7133707	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3878\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 24,161.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
774853	2025-03-24	11:03:10.7186875	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3878\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,600.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
774854	2025-03-24	11:03:10.7236962	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3878\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,038.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
774855	2025-03-24	11:03:10.7287046	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3878\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
774856	2025-03-24	11:03:10.7327905	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3878\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,620.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
774857	2025-03-24	11:03:10.7377985	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3878\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
774858	2025-03-24	11:03:10.7428069	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3878\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 10, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
774859	2025-03-24	11:03:10.7478700	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3878\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 11, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: September 08, 2015\r\n	admin	Experiences	1
774860	2025-03-24	11:03:10.7518762	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3878\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 27, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: March 26, 2015\r\n	admin	Experiences	1
774861	2025-03-24	11:04:38.8494360	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANDRES, ISLA VERDE\r\nBasicInformationId: 3878\r\nBirthDate: October 31, 1988\r\nBirthPlace: SAN ANDRES, ISLA VERDE, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jinky.balita@deped.gov.ph\r\nExtensionName: \r\nFirstName: JINKY\r\nFullName: JINKY P. BALITA\r\nGender: Female\r\nGovernmentIdIssuedDate: April 08, 2022\r\nGovernmentIdNumber: 1123737\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02004653184\r\nHDMF: 1210-8099-1518\r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BALITA\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nMobileNumber: 09914290840\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: 09-050302910-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 441-135-551-0000\r\nWeight: 75\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANDRES, ISLA VERDE\r\nBasicInformationId: 3878\r\nBirthDate: October 31, 1988\r\nBirthPlace: SAN ANDRES, ISLA VERDE, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jinky.balita@deped.gov.ph\r\nExtensionName: \r\nFirstName: JINKY\r\nFullName: JINKY P. BALITA\r\nGender: Female\r\nGovernmentIdIssuedDate: April 08, 2022\r\nGovernmentIdNumber: 1123737\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02004653184\r\nHDMF: 1210-8099-1518\r\nHeight: 1.63\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BALITA\r\nMaidenName: \r\nMiddleName: PAGCALIWAGAN\r\nMobileNumber: 09914290840\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANDRES, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050302910-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 441-135-551-0000\r\nWeight: 75\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774868	2025-03-24	11:06:42.3296648	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3879\r\nBirthDate: August 10, 2021\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ZENDRA FAITH\r\nFullName: ZENDRA FAITH APARRI PAGCALIWAGAN\r\nGender: Male\r\nLastName: PAGCALIWAGAN\r\nMaidenName: \r\nMiddleName: APARRI\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774869	2025-03-24	11:06:42.3498986	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3879\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SANDRO\r\nFullName: SANDRO AMPARO PAGCALIWAGAN\r\nGender: Male\r\nLastName: PAGCALIWAGAN\r\nMaidenName: \r\nMiddleName: AMPARO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
774870	2025-03-24	11:06:42.3620856	<Undetected>	Update	BasicInformationId: 3879\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3676\r\n	BasicInformationId: 3879\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3676\r\n	admin	Questionnaires	1
774871	2025-03-24	11:08:14.3279938	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANDRES, ISLA VERDE\r\nBasicInformationId: 3879\r\nBirthDate: December 13, 1982\r\nBirthPlace: SAN ANDRES, ISLA VERDE, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: janice.pagcaliwagan001@deped.gov.ph\r\nExtensionName: \r\nFirstName: JANICE\r\nFullName: JANICE A. PAGCALIWAGAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PAGCALIWAGAN\r\nMaidenName: \r\nMiddleName: APARRI\r\nMobileNumber: 09914290841\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANDRES, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: KURUKAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: KURUKAN\r\nTIN: \r\nWeight: 88\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANDRES, ISLA VERDE\r\nBasicInformationId: 3879\r\nBirthDate: December 13, 1982\r\nBirthPlace: SAN ANDRES, ISLA VERDE, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: janice.pagcaliwagan001@deped.gov.ph\r\nExtensionName: \r\nFirstName: JANICE\r\nFullName: JANICE A. PAGCALIWAGAN\r\nGender: Female\r\nGovernmentIdIssuedDate: December 05, 2005\r\nGovernmentIdNumber: 0894127\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: 02003511778\r\nHDMF: 1490-0104-7630\r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PAGCALIWAGAN\r\nMaidenName: \r\nMiddleName: APARRI\r\nMobileNumber: 09914290841\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANDRES, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: KURUKAN\r\nPermanentZipCode: 4200\r\nPhilhealth: 11-077400000-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: KURUKAN\r\nTIN: 263-960-504-0000\r\nWeight: 88\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774872	2025-03-24	11:08:14.3380332	<Undetected>	Update	BasicInformationId: 3879\r\nBirthDate: August 10, 2021\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4293\r\nExtensionName: \r\nFirstName: ZENDRA FAITH\r\nFullName: ZENDRA FAITH APARRI PAGCALIWAGAN\r\nGender: Male\r\nLastName: PAGCALIWAGAN\r\nMaidenName: \r\nMiddleName: APARRI\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3879\r\nBirthDate: August 10, 2021\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4293\r\nExtensionName: \r\nFirstName: ZENDRA FAITH\r\nFullName: ZENDRA FAITH PAGCALIWAGAN\r\nGender: Male\r\nLastName: PAGCALIWAGAN\r\nMaidenName: \r\nMiddleName: APARRI\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774862	2025-03-24	11:05:56.9537589	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: DUMUCLAY\r\nBasicInformationId: 0\r\nBirthDate: October 02, 1986\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jennielyn.intac@deped.gov.ph\r\nExtensionName: \r\nFirstName: JENNIELYN\r\nFullName: JENNIELYN D. INTAC\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: INTAC\r\nMaidenName: \r\nMiddleName: DAGLI\r\nMobileNumber: 09361243276\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: DUMUCLAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 95\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774863	2025-03-24	11:05:56.9650574	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3882\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: BONG\r\nFullName: BONG DE CASTRO INTAC\r\nGender: Male\r\nLastName: INTAC\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
774864	2025-03-24	11:05:56.9650574	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3882\r\nBirthDate: July 12, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JAELLA BRIANNA\r\nFullName: JAELLA BRIANNA D INTAC\r\nGender: Male\r\nLastName: INTAC\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774865	2025-03-24	11:05:56.9650574	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3882\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CENON\r\nFullName: CENON LANDICHO DAGLI\r\nGender: Male\r\nLastName: DAGLI\r\nMaidenName: \r\nMiddleName: LANDICHO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774866	2025-03-24	11:05:56.9650574	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3882\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PAULINA\r\nFullName: PAULINA GAYATAO CUETO\r\nGender: Male\r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: GAYATAO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774867	2025-03-24	11:05:56.9650574	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3882\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
774887	2025-03-24	11:10:34.6543750	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER OF ARTS IN SOCIAL SRUDIES\r\nLevel: College\r\n	admin	Courses	1
774888	2025-03-24	11:11:08.8282732	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER OF ARTS IN SOCIAL SCIENCE STUDIES\r\nLevel: Master's\r\n	admin	Courses	1
774894	2025-03-24	11:12:50.3462189	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: SECOND HONORS\r\nBasicInformationId: 3882\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1993\r\nDateTo: 1999\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: GUINTO ELEMENTARY SCHOOL\r\nYearGraduated: 1999\r\n	admin	EducationalBackgrounds	1
774895	2025-03-24	11:12:50.3562181	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: THIRD HONORS\r\nBasicInformationId: 3882\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1999\r\nDateTo: 2003\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: TALUMPOK NATIONAL HIGH SCHOOL\r\nYearGraduated: 2003\r\n	admin	EducationalBackgrounds	1
774896	2025-03-24	11:12:50.3762196	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: PESFA SCHOLAR\r\nBasicInformationId: 3882\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MAJOR IN COMMUNICATION ARTS IN ENGLISH\r\nSchoolorUniversity: SAINT BRIDGET COLLEGE\r\nYearGraduated: 2007\r\n	admin	EducationalBackgrounds	1
774897	2025-03-24	11:12:50.3837310	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3882\r\nCourse: \r\nCourseId: 1398\r\nCourseOrMajor: \r\nDateFrom: 2016\r\nDateTo: 2025\r\nEducationalAttainment: 42\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: PHILIPPINE NORMAL UNIVERSITY\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
775655	2025-03-26	11:01:27.0103680	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING OF SCHOOL TRAINERS ON THE MATATAG CURRICULUM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774873	2025-03-24	11:08:14.3537014	<Undetected>	Update	BasicInformationId: 3879\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4294\r\nExtensionName: \r\nFirstName: SANDRO\r\nFullName: SANDRO AMPARO PAGCALIWAGAN\r\nGender: Male\r\nLastName: PAGCALIWAGAN\r\nMaidenName: \r\nMiddleName: AMPARO\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3879\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4294\r\nExtensionName: \r\nFirstName: SANDRO\r\nFullName: SANDRO PAGCALIWAGAN\r\nGender: Male\r\nLastName: PAGCALIWAGAN\r\nMaidenName: \r\nMiddleName: AMPARO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
774884	2025-03-24	11:09:47.5229918	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3879\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ANDRES, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: MIRIAM\r\nLastName: FUENTES\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774885	2025-03-24	11:09:47.5351760	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3879\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ANDRES, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09473680961\r\nExtensionName: \r\nFirstName: DIOMEDES\r\nLastName: BRITON\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774886	2025-03-24	11:09:47.5421966	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3879\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ANDRES, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09956183271\r\nExtensionName: \r\nFirstName: AIZA\r\nLastName: DELA ROCA\r\nMiddleName: E\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774890	2025-03-24	11:11:38.9156509	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: THIRD HONORABLE MENTION\r\nBasicInformationId: 3879\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1991\r\nDateTo: 1996\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: PARANG CUEVA ELEMENTARY SCHOOL\r\nYearGraduated: 1996\r\n	admin	EducationalBackgrounds	1
774891	2025-03-24	11:11:38.9268525	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: ACHIEVER\r\nBasicInformationId: 3879\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 2000\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGUSTIN NATIONAL HIGH SCHOOL\r\nYearGraduated: 2000\r\n	admin	EducationalBackgrounds	1
774892	2025-03-24	11:11:38.9318623	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3879\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 2001\r\nDateTo: 2005\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2005\r\n	admin	EducationalBackgrounds	1
774893	2025-03-24	11:11:38.9388731	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3879\r\nCourse: \r\nCourseId: 1348\r\nCourseOrMajor: \r\nDateFrom: 2011\r\nDateTo: 2018\r\nEducationalAttainment: 45 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
774907	2025-03-24	11:15:04.8044986	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3879\r\nDateOfExamination: \r\nDateOfRelease: December 31, 2023\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0894127\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 75.8\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
774880	2025-03-24	11:08:29.2235661	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3881\r\nCompanyInstitution: SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 20,784.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
774881	2025-03-24	11:08:29.2286637	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3881\r\nCompanyInstitution: SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
774882	2025-03-24	11:08:29.2328004	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3881\r\nCompanyInstitution: SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 04, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
774883	2025-03-24	11:08:29.2380420	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3881\r\nCompanyInstitution: SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 06, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 20,179.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: August 08, 2017\r\n	admin	Experiences	1
774889	2025-03-24	11:11:29.0337031	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT TRAINING ON THE ENHANCEMENT OF DAP-ELLN AND INCLUSIVE CHILD-CENTERED TECHNIQUES FOR K-3 TEACHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774904	2025-03-24	11:13:20.1218425	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION WIDE TRAINING ON THE ENHANCEMENT OF DAP-ELLN AND INCLUSIVE CHILD-CENTERED TECHNIQUES FOR K-3 TEACHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774906	2025-03-24	11:15:00.8502616	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: PAMBANSANG SAMAHAN NG MGA TAGAMASID AT TAGAPAGTAGUYOD SA FILIPINO\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774908	2025-03-24	11:16:05.8987904	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3881\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: NEAP PROFESSIONAL DEVELOPMENT PROGRAMS\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16671\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774909	2025-03-24	11:16:05.9038198	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3881\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: NEAP PROFESSIONAL DEVELOPMENT PROGRAMS\r\nStatus: \r\nToDate: November 28, 2024\r\nTrainingId: 16720\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774910	2025-03-24	11:16:05.9098202	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3881\r\nEmployeeTrainingId: 0\r\nFromDate: October 03, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: October 03, 2023\r\nTrainingId: 16726\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774911	2025-03-24	11:16:05.9139173	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3881\r\nEmployeeTrainingId: 0\r\nFromDate: December 07, 2021\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: December 10, 2021\r\nTrainingId: 16727\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774912	2025-03-24	11:16:05.9193106	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3881\r\nEmployeeTrainingId: 0\r\nFromDate: November 20, 2021\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: September 03, 2021\r\nTrainingId: 16728\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774898	2025-03-24	11:12:50.3917322	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: DUMUCLAY\r\nBasicInformationId: 3882\r\nBirthDate: October 02, 1986\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jennielyn.intac@deped.gov.ph\r\nExtensionName: \r\nFirstName: JENNIELYN\r\nFullName: JENNIELYN D. INTAC\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: INTAC\r\nMaidenName: \r\nMiddleName: DAGLI\r\nMobileNumber: 09361243276\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: DUMUCLAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 95\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: DUMUCLAY\r\nBasicInformationId: 3882\r\nBirthDate: October 02, 1986\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jennielyn.intac@deped.gov.ph\r\nExtensionName: \r\nFirstName: JENNIELYN\r\nFullName: JENNIELYN D. INTAC\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: INTAC\r\nMaidenName: \r\nMiddleName: DAGLI\r\nMobileNumber: 09361243276\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: DUMUCLAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 95\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774899	2025-03-24	11:12:50.3967318	<Undetected>	Update	BasicInformationId: 3882\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4289\r\nExtensionName: \r\nFirstName: BONG\r\nFullName: BONG DE CASTRO INTAC\r\nGender: Male\r\nLastName: INTAC\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3882\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4289\r\nExtensionName: \r\nFirstName: BONG\r\nFullName: BONG INTAC\r\nGender: Male\r\nLastName: INTAC\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
774900	2025-03-24	11:12:50.4047317	<Undetected>	Update	BasicInformationId: 3882\r\nBirthDate: July 12, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4290\r\nExtensionName: \r\nFirstName: JAELLA BRIANNA\r\nFullName: JAELLA BRIANNA D INTAC\r\nGender: Male\r\nLastName: INTAC\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3882\r\nBirthDate: July 12, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4290\r\nExtensionName: \r\nFirstName: JAELLA BRIANNA\r\nFullName: JAELLA BRIANNA INTAC\r\nGender: Male\r\nLastName: INTAC\r\nMaidenName: \r\nMiddleName: D\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774901	2025-03-24	11:12:50.4097321	<Undetected>	Update	BasicInformationId: 3882\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4291\r\nExtensionName: \r\nFirstName: CENON\r\nFullName: CENON LANDICHO DAGLI\r\nGender: Male\r\nLastName: DAGLI\r\nMaidenName: \r\nMiddleName: LANDICHO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3882\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4291\r\nExtensionName: \r\nFirstName: CENON\r\nFullName: CENON DAGLI\r\nGender: Male\r\nLastName: DAGLI\r\nMaidenName: \r\nMiddleName: LANDICHO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774902	2025-03-24	11:12:50.4147322	<Undetected>	Update	BasicInformationId: 3882\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4292\r\nExtensionName: \r\nFirstName: PAULINA\r\nFullName: PAULINA GAYATAO CUETO\r\nGender: Male\r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: GAYATAO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3882\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4292\r\nExtensionName: \r\nFirstName: PAULINA\r\nFullName: PAULINA CUETO\r\nGender: Male\r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: GAYATAO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774903	2025-03-24	11:12:50.4197783	<Undetected>	Update	BasicInformationId: 3882\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3679\r\n	BasicInformationId: 3882\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3679\r\n	admin	Questionnaires	1
774905	2025-03-24	11:14:15.9448745	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3882\r\nDateOfExamination: August 26, 2007\r\nDateOfRelease: October 02, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 26, 2007\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1038015\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 80\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
774913	2025-03-24	13:00:29.3381009	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3882\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 12, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 34,421.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: January 01, 2025\r\n	admin	Experiences	1
774914	2025-03-24	13:00:29.3431004	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3882\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 03, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,165.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: August 11, 2024\r\n	admin	Experiences	1
774915	2025-03-24	13:00:29.3511756	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3882\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 04, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 25,723.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: October 02, 2022\r\n	admin	Experiences	1
774918	2025-03-24	13:13:03.4751068	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3882\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 20\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16338\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774919	2025-03-24	13:13:03.4801071	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3882\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 20\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2025\r\nTrainingId: 16339\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774920	2025-03-24	13:13:03.4851068	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3882\r\nEmployeeTrainingId: 0\r\nFromDate: June 10, 2024\r\nHours: 12\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: June 11, 2024\r\nTrainingId: 16729\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774921	2025-03-24	13:13:03.4901067	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3882\r\nEmployeeTrainingId: 0\r\nFromDate: May 24, 2024\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SAMAHAN NG MGA GURO SA INTELEKTUWALISASYON SA FILIPINO KATUWANG\r\nStatus: \r\nToDate: May 26, 2024\r\nTrainingId: 16605\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774922	2025-03-24	13:13:03.4951066	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3882\r\nEmployeeTrainingId: 0\r\nFromDate: May 18, 2024\r\nHours: 12\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY-LUZON\r\nStatus: \r\nToDate: June 15, 2024\r\nTrainingId: 16730\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774923	2025-03-24	13:15:26.8951700	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3882\r\nSkillId: 0\r\nSkillName: READING\r\n	admin	Skills	1
774924	2025-03-24	13:15:26.9117230	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3882\r\nSkillId: 0\r\nSkillName: WRITING\r\n	admin	Skills	1
774925	2025-03-24	13:15:26.9226828	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3882\r\nRecognitionId: 0\r\nRecognitionName: MOST RESPONSIVE TEACHER (2nd GAWAD KINANGAN 2023)\r\n	admin	Recognitions	1
774926	2025-03-24	13:15:26.9416805	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3882\r\nRecognitionId: 0\r\nRecognitionName: BEST ARH PROGRAM IMPLEMENTER (2nd GAWAD STAR)\r\n	admin	Recognitions	1
774927	2025-03-24	13:15:26.9496822	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3882\r\nOrganizationId: 0\r\nOrganizationName: INSTITUTE OF GLOBAL PROFESSIONALS\r\n	admin	Organizations	1
774928	2025-03-24	13:15:26.9577264	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3882\r\nOrganizationId: 0\r\nOrganizationName: ASCENDENS ASIA INTERNATIONAL RESEARCH INSTITUTE PTE. LTD\r\n	admin	Organizations	1
774929	2025-03-24	13:17:34.8965122	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3882\r\nCharacterReferenceId: 0\r\nCompanyAddress: TABANGAO DAO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09279802637\r\nExtensionName: \r\nFirstName: RICA\r\nLastName: SUAREZ\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774930	2025-03-24	13:17:34.9065093	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3882\r\nCharacterReferenceId: 0\r\nCompanyAddress: DUMANTAY BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09258690079\r\nExtensionName: \r\nFirstName: ROSSANA\r\nLastName: BAGON\r\nMiddleName: P\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774931	2025-03-24	13:17:34.9105100	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3882\r\nCharacterReferenceId: 0\r\nCompanyAddress: BALIMBING, SAN PASCUAL BATANGAS\r\nCompanyName: \r\nContactNumber: 09338568100\r\nExtensionName: \r\nFirstName: BERNADETTE\r\nLastName: MANALO\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774932	2025-03-24	13:21:03.2211447	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: DUMUCLAY\r\nBasicInformationId: 3882\r\nBirthDate: October 02, 1986\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jennielyn.intac@deped.gov.ph\r\nExtensionName: \r\nFirstName: JENNIELYN\r\nFullName: JENNIELYN D. INTAC\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: INTAC\r\nMaidenName: \r\nMiddleName: DAGLI\r\nMobileNumber: 09361243276\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: DUMUCLAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 95\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: DUMUCLAY\r\nBasicInformationId: 3882\r\nBirthDate: October 02, 1986\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jennielyn.intac@deped.gov.ph\r\nExtensionName: \r\nFirstName: JENNIELYN\r\nFullName: JENNIELYN D. INTAC\r\nGender: Female\r\nGovernmentIdIssuedDate: November 25, 2009\r\nGovernmentIdNumber: 1038015\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02005403664\r\nHDMF: 1470-0025-9986\r\nHeight: 1.6\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: INTAC\r\nMaidenName: \r\nMiddleName: DAGLI\r\nMobileNumber: 09361243276\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: DUMUCLAY\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050233912-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-2005587-1\r\nStreetName: \r\nTIN: 269-264-563-0000\r\nWeight: 95\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774933	2025-03-24	13:26:27.6167243	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: CATANDALA\r\nBasicInformationId: 0\r\nBirthDate: October 20, 1994\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: analiza.evangelio@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANALIZA\r\nFullName: ANALIZA E. MACARAIG\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MACARAIG\r\nMaidenName: \r\nMiddleName: EVANGELIO\r\nMobileNumber: 09293447813\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: CATANDALA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SILANGAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: SILANGAN\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774934	2025-03-24	13:26:27.6516603	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3883\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JERALD\r\nFullName: JERALD CANTOS MACARAIG\r\nGender: Male\r\nLastName: MACARAIG\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
774935	2025-03-24	13:26:27.6516603	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3883\r\nBirthDate: March 07, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JERAN ADEN\r\nFullName: JERAN ADEN E MACARAIG\r\nGender: Male\r\nLastName: MACARAIG\r\nMaidenName: \r\nMiddleName: E\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774936	2025-03-24	13:26:27.6516603	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3883\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SOTERO\r\nFullName: SOTERO PANALIGAN EVANGELIO\r\nGender: Male\r\nLastName: EVANGELIO\r\nMaidenName: \r\nMiddleName: PANALIGAN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774937	2025-03-24	13:26:27.6526598	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3883\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SIMONA\r\nFullName: SIMONA ALO ASI\r\nGender: Male\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: ALO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774938	2025-03-24	13:26:27.6526598	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3883\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
774966	2025-03-24	14:03:59.5404594	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3883\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2006\r\nDateTo: 2008\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: KATANDALA ELEMENTARY SCHOOL\r\nYearGraduated: 2008\r\n	admin	EducationalBackgrounds	1
774967	2025-03-24	14:03:59.5524569	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3883\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2008\r\nDateTo: 2012\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 2012\r\n	admin	EducationalBackgrounds	1
774968	2025-03-24	14:03:59.5574563	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: CATANDALA\r\nBasicInformationId: 3883\r\nBirthDate: October 20, 1994\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: analiza.evangelio@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANALIZA\r\nFullName: ANALIZA E. MACARAIG\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MACARAIG\r\nMaidenName: \r\nMiddleName: EVANGELIO\r\nMobileNumber: 09293447813\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: CATANDALA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SILANGAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: SILANGAN\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: CATANDALA\r\nBasicInformationId: 3883\r\nBirthDate: October 20, 1994\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: analiza.evangelio@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANALIZA\r\nFullName: ANALIZA E. MACARAIG\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MACARAIG\r\nMaidenName: \r\nMiddleName: EVANGELIO\r\nMobileNumber: 09293447813\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: CATANDALA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SILANGAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SILANGAN\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774969	2025-03-24	14:03:59.5664564	<Undetected>	Update	BasicInformationId: 3883\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4295\r\nExtensionName: \r\nFirstName: JERALD\r\nFullName: JERALD CANTOS MACARAIG\r\nGender: Male\r\nLastName: MACARAIG\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3883\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4295\r\nExtensionName: \r\nFirstName: JERALD\r\nFullName: JERALD MACARAIG\r\nGender: Male\r\nLastName: MACARAIG\r\nMaidenName: \r\nMiddleName: CANTOS\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
774970	2025-03-24	14:03:59.5714563	<Undetected>	Update	BasicInformationId: 3883\r\nBirthDate: March 07, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4296\r\nExtensionName: \r\nFirstName: JERAN ADEN\r\nFullName: JERAN ADEN E MACARAIG\r\nGender: Male\r\nLastName: MACARAIG\r\nMaidenName: \r\nMiddleName: E\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3883\r\nBirthDate: March 07, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4296\r\nExtensionName: \r\nFirstName: JERAN ADEN\r\nFullName: JERAN ADEN MACARAIG\r\nGender: Male\r\nLastName: MACARAIG\r\nMaidenName: \r\nMiddleName: E\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774971	2025-03-24	14:03:59.5764558	<Undetected>	Update	BasicInformationId: 3883\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4297\r\nExtensionName: \r\nFirstName: SOTERO\r\nFullName: SOTERO PANALIGAN EVANGELIO\r\nGender: Male\r\nLastName: EVANGELIO\r\nMaidenName: \r\nMiddleName: PANALIGAN\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3883\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4297\r\nExtensionName: \r\nFirstName: SOTERO\r\nFullName: SOTERO EVANGELIO\r\nGender: Male\r\nLastName: EVANGELIO\r\nMaidenName: \r\nMiddleName: PANALIGAN\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774972	2025-03-24	14:03:59.5814563	<Undetected>	Update	BasicInformationId: 3883\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4298\r\nExtensionName: \r\nFirstName: SIMONA\r\nFullName: SIMONA ALO ASI\r\nGender: Male\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: ALO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3883\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4298\r\nExtensionName: \r\nFirstName: SIMONA\r\nFullName: SIMONA ASI\r\nGender: Male\r\nLastName: ASI\r\nMaidenName: \r\nMiddleName: ALO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774973	2025-03-24	14:03:59.5864563	<Undetected>	Update	BasicInformationId: 3883\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3680\r\n	BasicInformationId: 3883\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3680\r\n	admin	Questionnaires	1
774974	2025-03-24	14:04:55.1709746	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3881\r\nSkillId: 0\r\nSkillName: I SPEND MY FREE TIME IN DANCING AND PLANTING\r\n	admin	Skills	1
774975	2025-03-24	14:04:55.1760057	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3881\r\nSkillId: 0\r\nSkillName: CREATIVITY\r\n	admin	Skills	1
774976	2025-03-24	14:04:55.1820272	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3881\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
774977	2025-03-24	14:04:55.1861866	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3881\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
774978	2025-03-24	14:04:55.1922083	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3881\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES SORO SORO ILAYA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09055132951\r\nExtensionName: \r\nFirstName: NIEVES\r\nLastName: MONTALBO\r\nMiddleName: A.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774979	2025-03-24	14:04:55.1962214	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3881\r\nCharacterReferenceId: 0\r\nCompanyAddress: ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09086231854\r\nExtensionName: \r\nFirstName: MELODY\r\nLastName: FABILA\r\nMiddleName: M.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774980	2025-03-24	14:04:55.2012688	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3881\r\nCharacterReferenceId: 0\r\nCompanyAddress: ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09277975449\r\nExtensionName: \r\nFirstName: LEOBERT \r\nLastName: CLARO\r\nMiddleName: E.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
774981	2025-03-24	14:04:55.2072988	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN AGUSTIN KANLURAN, ISLA VERDE\r\nBasicInformationId: 3881\r\nBirthDate: November 30, 1983\r\nBirthPlace: NAUJAN ORIENTAL MINDORO\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: orpha.silang@deped.gov.ph\r\nExtensionName: \r\nFirstName: ORPHA\r\nFullName: ORPHA G. SILANG\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.45\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nMobileNumber: 09309614605\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN AGUSTIN KANLURAN, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 58\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN AGUSTIN KANLURAN, ISLA VERDE\r\nBasicInformationId: 3881\r\nBirthDate: November 30, 1983\r\nBirthPlace: NAUJAN ORIENTAL MINDORO\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: orpha.silang@deped.gov.ph\r\nExtensionName: \r\nFirstName: ORPHA\r\nFullName: ORPHA G. SILANG\r\nGender: Female\r\nGovernmentIdIssuedDate: December 02, 2014\r\nGovernmentIdNumber: 1344022\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC LICENSE\r\nGSIS: 02005231548\r\nHDMF: 1212-0597-8054\r\nHeight: 1.45\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SILANG\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nMobileNumber: 09309614605\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN AGUSTIN KANLURAN, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-201155905-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1231073-1\r\nStreetName: \r\nTIN: 937-959-994-0000\r\nWeight: 58\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774982	2025-03-24	14:06:02.1129398	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: ENGLISH & KOREAN\r\nLevel: Vocational\r\n	admin	Courses	1
774983	2025-03-24	14:08:39.3323608	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER OF ARTS MAJOR IN EDUCATIONAL MANAGEMENT\r\nLevel: Master's\r\n	admin	Courses	1
774984	2025-03-24	14:09:00.7860143	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3883\r\nCourse: \r\nCourseId: 1399\r\nCourseOrMajor: \r\nDateFrom: 2018\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Vocational Graduate\r\nMajor: \r\nSchoolorUniversity: TESDA REGIONAL TRAINING CENTER\r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
774985	2025-03-24	14:09:00.7970174	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3883\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2012\r\nDateTo: 2016\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2016\r\n	admin	EducationalBackgrounds	1
774986	2025-03-24	14:09:00.8080166	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3883\r\nCourse: \r\nCourseId: 1337\r\nCourseOrMajor: \r\nDateFrom: 2017\r\nDateTo: 2019\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY\r\nYearGraduated: 2019\r\n	admin	EducationalBackgrounds	1
774987	2025-03-24	14:10:38.8489019	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3883\r\nDateOfExamination: September 25, 2016\r\nDateOfRelease: October 20, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 25, 2016\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1491007\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 80.5\r\nTitle: BOARD LICENSURE EXAMMINATION FOR PROFESSIONAL TEACHERS\r\n	admin	Eligibilities	1
774995	2025-03-24	14:13:06.2436977	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3883\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 34,733.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: January 01, 2025\r\n	admin	Experiences	1
774996	2025-03-24	14:13:06.2487044	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3883\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 22,316.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
774997	2025-03-24	14:17:11.0317136	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: MID-YEAR PERFORMANCE REVIEW AND CAPACITY BUILDING FOR SCHOOL PERSONNEL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774998	2025-03-24	14:19:10.3019575	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INDUCTION PROGRAM FOR BEGINNING TEACHERS (IPBT) YEAR 1\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
774999	2025-03-24	14:21:35.5479230	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ENHANCING CAPABILITY OF SCHOOL HEADS AND TEACHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
775000	2025-03-24	14:22:33.5490927	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3883\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16400\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775001	2025-03-24	14:22:33.5580920	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3883\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16340\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775002	2025-03-24	14:22:33.5630914	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3883\r\nEmployeeTrainingId: 0\r\nFromDate: August 14, 2023\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 18, 2023\r\nTrainingId: 16731\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775003	2025-03-24	14:22:33.5690947	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3883\r\nEmployeeTrainingId: 0\r\nFromDate: February 06, 2023\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: February 10, 2023\r\nTrainingId: 16732\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775004	2025-03-24	14:22:33.5730967	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3883\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2022\r\nHours: 8\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: LIBJO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: November 25, 2022\r\nTrainingId: 16733\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
774988	2025-03-24	14:10:51.8449336	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN AGUSTIN KANLURAN, ISLA VERDE\r\nBasicInformationId: 0\r\nBirthDate: June 05, 1971\r\nBirthPlace: SAN AGUSTIN, ISLA VERDE, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: melody.fabila001@deped.gov.ph\r\nExtensionName: \r\nFirstName: MELODY\r\nFullName: MELODY M. FABILA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.4\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: FABILA\r\nMaidenName: \r\nMiddleName: MEDINA\r\nMobileNumber: 09086231854\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN AGUSTIN KANLURAN, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 40\r\nZipCode: 4200\r\n	admin	BasicInformation	1
774989	2025-03-24	14:10:51.9114978	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3916\r\nBirthDate: April 05, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ERICKA MELDANE\r\nFullName: ERICKA MELDANE MEDINA FABILA\r\nGender: Female\r\nLastName: FABILA\r\nMaidenName: \r\nMiddleName: MEDINA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774990	2025-03-24	14:10:51.9114978	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3916\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FELIMON\r\nFullName: FELIMON ROXAS MEDINA\r\nGender: Male\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: ROXAS\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
774991	2025-03-24	14:10:51.9114978	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3916\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RIC EMMANUEL\r\nFullName: RIC EMMANUEL ENRIQUEZ FABILA\r\nGender: Male\r\nLastName: FABILA\r\nMaidenName: \r\nMiddleName: ENRIQUEZ\r\nOccupation: BOATMAN\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
774992	2025-03-24	14:10:51.9124980	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3916\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PRIMA\r\nFullName: PRIMA MACARAIG LOPEZ\r\nGender: Female\r\nLastName: LOPEZ\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
774993	2025-03-24	14:10:51.9124980	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3916\r\nBirthDate: April 05, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ERICKA MELDANE\r\nFullName: ERICKA MELDANE MEDINA FABILA\r\nGender: Female\r\nLastName: FABILA\r\nMaidenName: \r\nMiddleName: MEDINA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
774994	2025-03-24	14:10:51.9124980	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3916\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
775007	2025-03-24	14:25:23.0985016	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3883\r\nCharacterReferenceId: 0\r\nCompanyAddress: OLD SAN VICENTE LIBJO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09162398134\r\nExtensionName: \r\nFirstName: CYNTHIA\r\nLastName: PAREDES\r\nMiddleName: D\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775008	2025-03-24	14:25:23.1035018	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3883\r\nCharacterReferenceId: 0\r\nCompanyAddress: PINAMUCAN, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09219910085\r\nExtensionName: \r\nFirstName: MA. CRISTINA\r\nLastName: CAPIO\r\nMiddleName: G\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775009	2025-03-24	15:03:41.5768035	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: CATANDALA\r\nBasicInformationId: 3883\r\nBirthDate: October 20, 1994\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: analiza.evangelio@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANALIZA\r\nFullName: ANALIZA E. MACARAIG\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MACARAIG\r\nMaidenName: \r\nMiddleName: EVANGELIO\r\nMobileNumber: 09293447813\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: CATANDALA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SILANGAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SILANGAN\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: CATANDALA\r\nBasicInformationId: 3883\r\nBirthDate: October 20, 1994\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: analiza.evangelio@deped.gov.ph\r\nExtensionName: \r\nFirstName: ANALIZA\r\nFullName: ANALIZA E. MACARAIG\r\nGender: Female\r\nGovernmentIdIssuedDate: December 12, 2016\r\nGovernmentIdNumber: 1491007\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02005476218\r\nHDMF: 1211-6928-7085\r\nHeight: 1.57\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MACARAIG\r\nMaidenName: \r\nMiddleName: EVANGELIO\r\nMobileNumber: 09293447813\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: CATANDALA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SILANGAN\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025478794-8\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-3742420-4\r\nStreetName: SILANGAN\r\nTIN: 708-506-283-0000\r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775010	2025-03-24	15:06:58.2013425	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: FIRST HONORABLE MENTION\r\nBasicInformationId: 3916\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1978\r\nDateTo: 1984\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL\r\nYearGraduated: 1984\r\n	admin	EducationalBackgrounds	1
775011	2025-03-24	15:06:58.2073670	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: FIRST HONORABLE MENTION\r\nBasicInformationId: 3916\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1984\r\nDateTo: 1988\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGUSTIN NATIONAL HIGH SCHOOL\r\nYearGraduated: 1988\r\n	admin	EducationalBackgrounds	1
775012	2025-03-24	15:06:58.2123745	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3916\r\nCourse: \r\nCourseId: 1307\r\nCourseOrMajor: \r\nDateFrom: 1988\r\nDateTo: 1992\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
775013	2025-03-24	15:06:58.2174782	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards:  \r\nBasicInformationId: 3916\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 1996\r\nDateTo: 2001\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
775014	2025-03-24	15:06:58.2224867	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3916\r\nDateOfExamination: October 25, 1992\r\nDateOfRelease: April 29, 1998\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: October 25, 1992\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0360495\r\nPlaceOfExamination: BATANGAS NATIONAL HIGH SCHOOL\r\nRating: 70.00\r\nTitle: PROFESSIONAL BOARD EXAMINATION FOR TEACHERS (PBET)\r\n	admin	Eligibilities	1
775015	2025-03-24	15:06:58.2274945	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution:  DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: False\r\nMonthlySalary: 43,996.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-2\r\nStatus: Permanent\r\nToDate: March 24, 2025\r\n	admin	Experiences	1
775016	2025-03-24	15:06:58.2325110	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 42,052.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks:  \r\nSalaryGradeAndStepIncrement: 16-2\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
775017	2025-03-24	15:06:58.2375377	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 39,672.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
775018	2025-03-24	15:06:58.2415435	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 38,150.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
775019	2025-03-24	15:06:58.2465513	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 36,628.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
775020	2025-03-24	15:06:58.2505594	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: November 03, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 35,106.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
775021	2025-03-24	15:06:58.2555674	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 29,277.00\r\nPositionHeld: HEAD TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 14-1\r\nStatus: Permanent\r\nToDate: November 02, 2020\r\n	admin	Experiences	1
775022	2025-03-24	15:06:58.2605827	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 27,755.00\r\nPositionHeld: HEAD TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 14-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
775023	2025-03-24	15:06:58.2656896	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: September 04, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 26,494.00\r\nPositionHeld: HEAD TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 14-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
775024	2025-03-24	15:06:58.2696957	<Undetected>	Update	BasicInformationId: 3916\r\nBirthDate: April 05, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4328\r\nExtensionName: \r\nFirstName: ERICKA MELDANE\r\nFullName: ERICKA MELDANE MEDINA FABILA\r\nGender: Female\r\nLastName: FABILA\r\nMaidenName: \r\nMiddleName: MEDINA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3916\r\nBirthDate: April 05, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4328\r\nExtensionName: \r\nFirstName: ERICKA MELDANE\r\nFullName: ERICKA MELDANE FABILA\r\nGender: Female\r\nLastName: FABILA\r\nMaidenName: \r\nMiddleName: MEDINA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775025	2025-03-24	15:06:58.2747033	<Undetected>	Update	BasicInformationId: 3916\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4329\r\nExtensionName: \r\nFirstName: FELIMON\r\nFullName: FELIMON ROXAS MEDINA\r\nGender: Male\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: ROXAS\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3916\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4329\r\nExtensionName: \r\nFirstName: FELIMON\r\nFullName: FELIMON MEDINA\r\nGender: Male\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: ROXAS\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
775026	2025-03-24	15:06:58.2797108	<Undetected>	Update	BasicInformationId: 3916\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4330\r\nExtensionName: \r\nFirstName: RIC EMMANUEL\r\nFullName: RIC EMMANUEL ENRIQUEZ FABILA\r\nGender: Male\r\nLastName: FABILA\r\nMaidenName: \r\nMiddleName: ENRIQUEZ\r\nOccupation: BOATMAN\r\nRelationship: Husband\r\n	BasicInformationId: 3916\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4330\r\nExtensionName: \r\nFirstName: RIC EMMANUEL\r\nFullName: RIC EMMANUEL FABILA\r\nGender: Male\r\nLastName: FABILA\r\nMaidenName: \r\nMiddleName: ENRIQUEZ\r\nOccupation: BOATMAN\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
775027	2025-03-24	15:06:58.2839547	<Undetected>	Update	BasicInformationId: 3916\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4331\r\nExtensionName: \r\nFirstName: PRIMA\r\nFullName: PRIMA MACARAIG LOPEZ\r\nGender: Female\r\nLastName: LOPEZ\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3916\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4331\r\nExtensionName: \r\nFirstName: PRIMA\r\nFullName: PRIMA LOPEZ\r\nGender: Female\r\nLastName: LOPEZ\r\nMaidenName: \r\nMiddleName: MACARAIG\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
775028	2025-03-24	15:06:58.2889624	<Undetected>	Update	BasicInformationId: 3916\r\nBirthDate: April 05, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4332\r\nExtensionName: \r\nFirstName: ERICKA MELDANE\r\nFullName: ERICKA MELDANE MEDINA FABILA\r\nGender: Female\r\nLastName: FABILA\r\nMaidenName: \r\nMiddleName: MEDINA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3916\r\nBirthDate: April 05, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4332\r\nExtensionName: \r\nFirstName: ERICKA MELDANE\r\nFullName: ERICKA MELDANE FABILA\r\nGender: Female\r\nLastName: FABILA\r\nMaidenName: \r\nMiddleName: MEDINA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775029	2025-03-24	15:06:58.2939776	<Undetected>	Update	BasicInformationId: 3916\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3713\r\n	BasicInformationId: 3916\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3713\r\n	admin	Questionnaires	1
775047	2025-03-24	15:20:28.6235604	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 25,387.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: September 03, 2018\r\n	admin	Experiences	1
775048	2025-03-24	15:20:28.6285804	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 24,315.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
775049	2025-03-24	15:20:28.6336250	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: December 13, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 23,289.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
775050	2025-03-24	15:20:28.6386409	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 23,045.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 12, 2016\r\n	admin	Experiences	1
775051	2025-03-24	15:20:28.6436573	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: December 14, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 22,086.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
775052	2025-03-24	15:20:28.6476901	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: December 14, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 21,867.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 12, 2013\r\n	admin	Experiences	1
775053	2025-03-24	15:20:28.6528070	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 06, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 21,650.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 12, 2012\r\n	admin	Experiences	1
775054	2025-03-24	15:20:28.6578230	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 06, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 19,908.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
775055	2025-03-24	15:20:28.6628592	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 18,166.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
775056	2025-03-24	15:20:28.6668717	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: September 09, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 16,424.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
775030	2025-03-24	15:10:49.8003203	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIBJO\r\nBasicInformationId: 0\r\nBirthDate: July 03, 1973\r\nBirthPlace: LIBJO, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jocelyn.garcia008@deped.gov.ph\r\nExtensionName: \r\nFirstName: JOCELYN\r\nFullName: JOCELYN C. GARCIA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: CATRAL\r\nMobileNumber: 09178423406\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: TANGISAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: TANGISAN\r\nTIN: \r\nWeight: 49\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775031	2025-03-24	15:10:49.9612140	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3917\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GILBERT\r\nFullName: GILBERT GARCIA GARCIA\r\nGender: Male\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: GARCIA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
775032	2025-03-24	15:10:49.9612140	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3917\r\nBirthDate: May 09, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DEXTER YOSEF\r\nFullName: DEXTER YOSEF C GARCIA\r\nGender: Male\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: C\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775033	2025-03-24	15:10:49.9612140	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3917\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: TEODORICO\r\nFullName: TEODORICO CATRAL CATRAL\r\nGender: Male\r\nLastName: CATRAL\r\nMaidenName: \r\nMiddleName: CATRAL\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
775034	2025-03-24	15:10:49.9622082	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3917\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: NORBERTA\r\nFullName: NORBERTA DUNO DE VILLA\r\nGender: Male\r\nLastName: DE VILLA\r\nMaidenName: \r\nMiddleName: DUNO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
775035	2025-03-24	15:10:49.9622082	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3917\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
775036	2025-03-24	15:13:31.3352271	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3917\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1980\r\nDateTo: 1986\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: LIBJO ELEMENTARY SCHOOL\r\nYearGraduated: 1986\r\n	admin	EducationalBackgrounds	1
775037	2025-03-24	15:13:31.3462260	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3917\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1986\r\nDateTo: 1990\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1990\r\n	admin	EducationalBackgrounds	1
775038	2025-03-24	15:13:31.3612283	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3917\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1991\r\nDateTo: 1995\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: SAINT BRIDGET COLLEGE\r\nYearGraduated: 1995\r\n	admin	EducationalBackgrounds	1
775039	2025-03-24	15:13:31.3837389	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3917\r\nCourse: \r\nCourseId: 1333\r\nCourseOrMajor: \r\nDateFrom: 1999\r\nDateTo: 2000\r\nEducationalAttainment: 24\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: GOLDEN GATE COLLEGE\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
775057	2025-03-24	15:20:28.6718874	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: August 09, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 16,424.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: October 08, 2009\r\n	admin	Experiences	1
775040	2025-03-24	15:13:31.3997375	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIBJO\r\nBasicInformationId: 3917\r\nBirthDate: July 03, 1973\r\nBirthPlace: LIBJO, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jocelyn.garcia008@deped.gov.ph\r\nExtensionName: \r\nFirstName: JOCELYN\r\nFullName: JOCELYN C. GARCIA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: CATRAL\r\nMobileNumber: 09178423406\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: TANGISAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: TANGISAN\r\nTIN: \r\nWeight: 49\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIBJO\r\nBasicInformationId: 3917\r\nBirthDate: July 03, 1973\r\nBirthPlace: LIBJO, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jocelyn.garcia008@deped.gov.ph\r\nExtensionName: \r\nFirstName: JOCELYN\r\nFullName: JOCELYN C. GARCIA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: CATRAL\r\nMobileNumber: 09178423406\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: TANGISAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: TANGISAN\r\nTIN: \r\nWeight: 49\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775041	2025-03-24	15:13:31.4047375	<Undetected>	Update	BasicInformationId: 3917\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4333\r\nExtensionName: \r\nFirstName: GILBERT\r\nFullName: GILBERT GARCIA GARCIA\r\nGender: Male\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: GARCIA\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3917\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4333\r\nExtensionName: \r\nFirstName: GILBERT\r\nFullName: GILBERT GARCIA\r\nGender: Male\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: GARCIA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
775042	2025-03-24	15:13:31.4108124	<Undetected>	Update	BasicInformationId: 3917\r\nBirthDate: May 09, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4334\r\nExtensionName: \r\nFirstName: DEXTER YOSEF\r\nFullName: DEXTER YOSEF C GARCIA\r\nGender: Male\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: C\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3917\r\nBirthDate: May 09, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4334\r\nExtensionName: \r\nFirstName: DEXTER YOSEF\r\nFullName: DEXTER YOSEF GARCIA\r\nGender: Male\r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: C\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775043	2025-03-24	15:13:31.4189299	<Undetected>	Update	BasicInformationId: 3917\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4335\r\nExtensionName: \r\nFirstName: TEODORICO\r\nFullName: TEODORICO CATRAL CATRAL\r\nGender: Male\r\nLastName: CATRAL\r\nMaidenName: \r\nMiddleName: CATRAL\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3917\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4335\r\nExtensionName: \r\nFirstName: TEODORICO\r\nFullName: TEODORICO CATRAL\r\nGender: Male\r\nLastName: CATRAL\r\nMaidenName: \r\nMiddleName: CATRAL\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
775044	2025-03-24	15:13:31.4239225	<Undetected>	Update	BasicInformationId: 3917\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4336\r\nExtensionName: \r\nFirstName: NORBERTA\r\nFullName: NORBERTA DUNO DE VILLA\r\nGender: Male\r\nLastName: DE VILLA\r\nMaidenName: \r\nMiddleName: DUNO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3917\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4336\r\nExtensionName: \r\nFirstName: NORBERTA\r\nFullName: NORBERTA DE VILLA\r\nGender: Male\r\nLastName: DE VILLA\r\nMaidenName: \r\nMiddleName: DUNO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
775045	2025-03-24	15:13:31.4279224	<Undetected>	Update	BasicInformationId: 3917\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3714\r\n	BasicInformationId: 3917\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3714\r\n	admin	Questionnaires	1
775046	2025-03-24	15:15:24.3785111	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3917\r\nDateOfExamination: May 28, 1995\r\nDateOfRelease: July 03, 2024\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: May 28, 1995\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0156680\r\nPlaceOfExamination: BATANGAS NATIONAL HIGH SCHOOL\r\nRating: 73.9\r\nTitle: PROFESSIONAL BOARD EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
775058	2025-03-24	15:20:28.6769033	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 07, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 16,424.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: September 08, 2009\r\n	admin	Experiences	1
775059	2025-03-24	15:20:28.6819020	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 07, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 13,850.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
775060	2025-03-24	15:20:28.6859017	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,591.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
775061	2025-03-24	15:20:28.6909017	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 07, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 12,284.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2007\r\n	admin	Experiences	1
775062	2025-03-24	15:20:28.6959019	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: December 13, 2004\r\nIsGovernmentService: True\r\nMonthlySalary: 11,167.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
775063	2025-03-24	15:20:28.7010000	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 07, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 10,535.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 12, 2004\r\n	admin	Experiences	1
775064	2025-03-24	15:20:28.7060120	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 10,033.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
775065	2025-03-24	15:20:28.7100117	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2000\r\n	admin	Experiences	1
775066	2025-03-24	15:20:28.7154898	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
775067	2025-03-24	15:23:42.4275543	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 1998\r\n	admin	Experiences	1
775068	2025-03-24	15:23:42.4325540	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: November 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 1997\r\n	admin	Experiences	1
775086	2025-03-24	15:34:56.4554696	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3916\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES, SORO SORO ITAAS, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 0955132951\r\nExtensionName: \r\nFirstName: NIEVES\r\nLastName: MONTALBO\r\nMiddleName: A.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775069	2025-03-24	15:23:42.4375543	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 7,309.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1997\r\n	admin	Experiences	1
775070	2025-03-24	15:23:42.4425540	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 6,013.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1996\r\n	admin	Experiences	1
775071	2025-03-24	15:23:42.4477007	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: January 01, 1995\r\nIsGovernmentService: True\r\nMonthlySalary: 4,902.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1995\r\n	admin	Experiences	1
775072	2025-03-24	15:23:42.4527300	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3916\r\nCompanyInstitution: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nExperienceId: 0\r\nFromDate: June 06, 1994\r\nIsGovernmentService: True\r\nMonthlySalary: 3,902.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 1994\r\n	admin	Experiences	1
775073	2025-03-24	15:25:07.2276796	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION CAPACITY BUILDING FOR EDUCATORS ON INCLUSIVE EDUCATION\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
775074	2025-03-24	15:26:27.9093191	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: UPSKILLING OF EDUCATION LEADERS ON ELLN\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
775075	2025-03-24	15:28:33.5449337	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: STRENGTHENING GAD POLICIES AND MANDATES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
775076	2025-03-24	15:30:11.4035293	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3916\r\nEmployeeTrainingId: 0\r\nFromDate: December 02, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: December 04, 2024\r\nTrainingId: 16734\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775077	2025-03-24	15:30:11.4085449	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3916\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: November 27, 2024\r\nTrainingId: 16735\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775078	2025-03-24	15:30:11.4135449	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3916\r\nEmployeeTrainingId: 0\r\nFromDate: November 04, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: November 08, 2024\r\nTrainingId: 16314\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775079	2025-03-24	15:30:11.4187596	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3916\r\nEmployeeTrainingId: 0\r\nFromDate: October 29, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: October 29, 2024\r\nTrainingId: 16736\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775080	2025-03-24	15:30:11.4237777	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3916\r\nEmployeeTrainingId: 0\r\nFromDate: February 29, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: February 29, 2024\r\nTrainingId: 16589\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775081	2025-03-24	15:31:03.2601035	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3916\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
775082	2025-03-24	15:31:03.2729058	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3916\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
775083	2025-03-24	15:31:03.2958010	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3916\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
775084	2025-03-24	15:31:03.3054888	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3916\r\nOrganizationId: 0\r\nOrganizationName: GIRL SCOUT OF THE PHILIPPINES\r\n	admin	Organizations	1
775085	2025-03-24	15:31:03.3158885	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3916\r\nOrganizationId: 0\r\nOrganizationName: BOY SCOUT OF THE PHILIPPINES\r\n	admin	Organizations	1
775141	2025-03-24	16:23:43.6379842	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3919\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
775087	2025-03-24	15:34:56.4658471	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3916\r\nCharacterReferenceId: 0\r\nCompanyAddress: GULOD LABAC, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09667522908\r\nExtensionName: \r\nFirstName: CHARITY\r\nLastName: MAGADIA\r\nMiddleName: S.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775088	2025-03-24	15:34:56.4739447	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3916\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09475854673\r\nExtensionName: \r\nFirstName: RIZA\r\nLastName: EBORA\r\nMiddleName: C.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775089	2025-03-24	15:34:56.4789611	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN AGUSTIN KANLURAN, ISLA VERDE\r\nBasicInformationId: 3916\r\nBirthDate: June 05, 1971\r\nBirthPlace: SAN AGUSTIN, ISLA VERDE, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: melody.fabila001@deped.gov.ph\r\nExtensionName: \r\nFirstName: MELODY\r\nFullName: MELODY M. FABILA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.4\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: FABILA\r\nMaidenName: \r\nMiddleName: MEDINA\r\nMobileNumber: 09086231854\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN AGUSTIN KANLURAN, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 40\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN AGUSTIN KANLURAN, ISLA VERDE\r\nBasicInformationId: 3916\r\nBirthDate: June 05, 1971\r\nBirthPlace: SAN AGUSTIN, ISLA VERDE, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: melody.fabila001@deped.gov.ph\r\nExtensionName: \r\nFirstName: MELODY\r\nFullName: MELODY M. FABILA\r\nGender: Female\r\nGovernmentIdIssuedDate: April 29, 1998\r\nGovernmentIdNumber: 0360495\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: 02002929030\r\nHDMF: 1490-0087-3706\r\nHeight: 1.4\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: FABILA\r\nMaidenName: \r\nMiddleName: MEDINA\r\nMobileNumber: 09086231854\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN AGUSTIN KANLURAN, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000021605-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 187-898-000-0000\r\nWeight: 40\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775090	2025-03-24	15:42:54.1920538	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANTONIO, ISLA VERDE\r\nBasicInformationId: 0\r\nBirthDate: May 08, 1998\r\nBirthPlace: SAN ANTONIO, ISLA VERDE BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jessa13andal@gmail.com\r\nExtensionName: \r\nFirstName: JESSA\r\nFullName: JESSA R. ANDAL\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ANDAL\r\nMaidenName: \r\nMiddleName: RAYOS\r\nMobileNumber: 09125302464\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANTONIO, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 57.7\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775091	2025-03-24	15:42:54.2051367	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: SALUTATORIAN\r\nBasicInformationId: 3918\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2009\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: PARANG ELEMENTARY SCHOOL\r\nYearGraduated: 2009\r\n	admin	EducationalBackgrounds	1
775092	2025-03-24	15:42:54.2051367	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: 1ST HONORABLE MENTION\r\nBasicInformationId: 3918\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2009\r\nDateTo: 2013\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAN ANTONIO NATIONAL HIGH SCHOOL\r\nYearGraduated: 2013\r\n	admin	EducationalBackgrounds	1
775093	2025-03-24	15:42:54.2051367	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: DEAN'S LISTER\r\nBasicInformationId: 3918\r\nCourse: \r\nCourseId: 1307\r\nCourseOrMajor: \r\nDateFrom: 2013\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: COLEGIO NG LUNGSOD NG BATANGAS\r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
775094	2025-03-24	15:42:54.2051367	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3918\r\nCourse: \r\nCourseId: 1333\r\nCourseOrMajor: \r\nDateFrom: 2023\r\nDateTo: 2025\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: PACIFIC INTERCONTINENTAL COLLEGE\r\nYearGraduated: 2025\r\n	admin	EducationalBackgrounds	1
775095	2025-03-24	15:42:54.2061403	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3918\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DIOSDADO\r\nFullName: DIOSDADO OLIT ANDAL\r\nGender: Male\r\nLastName: ANDAL\r\nMaidenName: \r\nMiddleName: OLIT\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
775096	2025-03-24	15:42:54.2061403	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3918\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: GLORIA\r\nFullName: GLORIA GAREJO RAYOS\r\nGender: Female\r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: GAREJO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
775097	2025-03-24	15:42:54.2061403	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3918\r\nDateOfExamination: March 24, 2019\r\nDateOfRelease: May 08, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: March 24, 2019\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1762576\r\nPlaceOfExamination: LUCENA, QUEZON\r\nRating: 80.20\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
775098	2025-03-24	15:42:54.2061403	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3918\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
775099	2025-03-24	15:47:29.6936844	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3918\r\nCompanyInstitution: SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,024.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: March 24, 2025\r\n	admin	Experiences	1
775100	2025-03-24	15:47:29.6986996	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3918\r\nCompanyInstitution: SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
775101	2025-03-24	15:47:29.7037249	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3918\r\nCompanyInstitution: SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
775102	2025-03-24	15:47:29.7077573	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3918\r\nCompanyInstitution: SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: November 14, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,439.00\r\nPositionHeld: TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
775103	2025-03-24	15:47:29.7128398	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3918\r\nCompanyInstitution: SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 09, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,439.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: November 13, 2022\r\n	admin	Experiences	1
775104	2025-03-24	15:47:29.7178561	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3918\r\nCompanyInstitution: SUNHILL MONTESSORI CASA - BAUAN, INCORPORATED\r\nExperienceId: 0\r\nFromDate: June 25, 2018\r\nIsGovernmentService: False\r\nMonthlySalary: 8,000.00\r\nPositionHeld: TEACHER \r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: March 30, 2020\r\n	admin	Experiences	1
775105	2025-03-24	15:47:29.7229108	<Undetected>	Update	BasicInformationId: 3918\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4337\r\nExtensionName: \r\nFirstName: DIOSDADO\r\nFullName: DIOSDADO OLIT ANDAL\r\nGender: Male\r\nLastName: ANDAL\r\nMaidenName: \r\nMiddleName: OLIT\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3918\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4337\r\nExtensionName: \r\nFirstName: DIOSDADO\r\nFullName: DIOSDADO ANDAL\r\nGender: Male\r\nLastName: ANDAL\r\nMaidenName: \r\nMiddleName: OLIT\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
775106	2025-03-24	15:47:29.7269222	<Undetected>	Update	BasicInformationId: 3918\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4338\r\nExtensionName: \r\nFirstName: GLORIA\r\nFullName: GLORIA GAREJO RAYOS\r\nGender: Female\r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: GAREJO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3918\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4338\r\nExtensionName: \r\nFirstName: GLORIA\r\nFullName: GLORIA RAYOS\r\nGender: Female\r\nLastName: RAYOS\r\nMaidenName: \r\nMiddleName: GAREJO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
775107	2025-03-24	15:47:29.7319221	<Undetected>	Update	BasicInformationId: 3918\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3715\r\n	BasicInformationId: 3918\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3715\r\n	admin	Questionnaires	1
775108	2025-03-24	15:49:01.2811596	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: NEAP MASTER CLASS - RECONCEPTUALIZING TEACHER IDEOLOGY IN MULTILINGUAL ENGLISH LANGUAGE CLASSROOM: AN ACELT SPEED PROJECT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
775111	2025-03-24	15:51:03.3361030	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: INSET (MASTER CLASSES FOR KINDERGARTEN, G1, G4, AND G7 TEACHERS ACROSS ALL LEARNING AREAS (NATIONAL LEVEL)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
775109	2025-03-24	15:50:11.3966448	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3917\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 34,004.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-7\r\nStatus: Permanent\r\nToDate: January 01, 2025\r\n	admin	Experiences	1
775110	2025-03-24	15:50:11.4016403	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3917\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 16, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 24, 1998\r\n	admin	Experiences	1
775123	2025-03-24	16:00:23.7290995	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SLAC SESSION ON THE USE OF EFFECTIVE INTERVENTION AND ENHANCEMENT STRATEGIES\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
775112	2025-03-24	15:55:47.9534456	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3918\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: NEAP PROFESSIONAL DEVELOPMENT PROGRAMS\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16737\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775113	2025-03-24	15:55:47.9594652	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3918\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: NEAP PROFESSIONAL DEVELOPMENT PROGRAMS\r\nStatus: \r\nToDate: November 28, 2024\r\nTrainingId: 16738\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775114	2025-03-24	15:55:47.9634795	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3918\r\nEmployeeTrainingId: 0\r\nFromDate: November 18, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 20, 2024\r\nTrainingId: 16672\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775115	2025-03-24	15:55:47.9685171	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3918\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16470\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775116	2025-03-24	15:55:47.9735455	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3918\r\nEmployeeTrainingId: 0\r\nFromDate: July 10, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 12, 2024\r\nTrainingId: 16426\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775117	2025-03-24	15:56:56.7329056	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3918\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
775118	2025-03-24	15:56:56.7460048	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3918\r\nSkillId: 0\r\nSkillName: COMMUNICATION SKILLS\r\n	admin	Skills	1
775119	2025-03-24	15:56:56.7652752	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3918\r\nSkillId: 0\r\nSkillName: ACTIVE LISTENING\r\n	admin	Skills	1
775120	2025-03-24	15:56:56.7748508	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3918\r\nSkillId: 0\r\nSkillName: ACCURACY AND ATTENTION TO DETAILS\r\n	admin	Skills	1
775121	2025-03-24	15:56:56.7842504	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3918\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
775122	2025-03-24	15:56:56.7882630	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3918\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
775124	2025-03-24	16:00:47.0663826	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3918\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES SORO-SORO ILAYA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09055132951\r\nExtensionName: \r\nFirstName: NIEVES\r\nLastName: MONTALBO\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775125	2025-03-24	16:00:47.0837639	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3918\r\nCharacterReferenceId: 0\r\nCompanyAddress: ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09086231854\r\nExtensionName: \r\nFirstName: MELODY\r\nLastName: FABILA\r\nMiddleName: M.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775126	2025-03-24	16:00:47.0909889	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3918\r\nCharacterReferenceId: 0\r\nCompanyAddress: ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09984390676\r\nExtensionName: \r\nFirstName: ANTHONY\r\nLastName: LOPEZ\r\nMiddleName: M. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775127	2025-03-24	16:00:47.0960309	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANTONIO, ISLA VERDE\r\nBasicInformationId: 3918\r\nBirthDate: May 08, 1998\r\nBirthPlace: SAN ANTONIO, ISLA VERDE BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jessa13andal@gmail.com\r\nExtensionName: \r\nFirstName: JESSA\r\nFullName: JESSA R. ANDAL\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ANDAL\r\nMaidenName: \r\nMiddleName: RAYOS\r\nMobileNumber: 09125302464\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANTONIO, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 57.7\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANTONIO, ISLA VERDE\r\nBasicInformationId: 3918\r\nBirthDate: May 08, 1998\r\nBirthPlace: SAN ANTONIO, ISLA VERDE BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jessa13andal@gmail.com\r\nExtensionName: \r\nFirstName: JESSA\r\nFullName: JESSA R. ANDAL\r\nGender: Female\r\nGovernmentIdIssuedDate: December 20, 2019\r\nGovernmentIdNumber: 1762576\r\nGovernmentIdPlaceIssued: PRC LUCENA\r\nGovernmentIssuedId: PRC IDENTIFICATION CARD\r\nGSIS: 02006076766\r\nHDMF: 1212-2541-6555\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ANDAL\r\nMaidenName: \r\nMiddleName: RAYOS\r\nMobileNumber: 09125302464\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANTONIO, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-250241754-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 34-7556242-6\r\nStreetName: \r\nTIN: 737-038-625-0000\r\nWeight: 57.7\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775128	2025-03-24	16:19:44.8653513	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SLAC SESSION ON BALANCE LITERACY APPROACH AND INTEGRATIVE LEARNING\r\nTrainingId: 0\r\nType: \r\n	admin	Trainings	1
775129	2025-03-24	16:22:31.1415338	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: WEBINAR TRAINING IN ENGLISH-STRNGTHENING THE EDUCATIONAL LANDSCAPE THROUGH LANGUAGE\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
775130	2025-03-24	16:23:36.6960777	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3917\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2025\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: LIBJO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: January 24, 2025\r\nTrainingId: 16686\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775131	2025-03-24	16:23:36.7020776	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3917\r\nEmployeeTrainingId: 0\r\nFromDate: December 12, 2024\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: LIBJO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: December 12, 2024\r\nTrainingId: 16739\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775132	2025-03-24	16:23:36.7070804	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3917\r\nEmployeeTrainingId: 0\r\nFromDate: October 31, 2024\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: LIBJO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: October 31, 2024\r\nTrainingId: 16689\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775133	2025-03-24	16:23:36.7130775	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3917\r\nEmployeeTrainingId: 0\r\nFromDate: August 29, 2024\r\nHours: 3\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: LIBJO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: August 29, 2024\r\nTrainingId: 16740\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775134	2025-03-24	16:23:36.7190781	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3917\r\nEmployeeTrainingId: 0\r\nFromDate: May 24, 2024\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: SAMAHAN NG MGA GURO SA INTELEKTUWALISASYONG FILIPINO\r\nStatus: \r\nToDate: May 26, 2024\r\nTrainingId: 16741\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775135	2025-03-24	16:23:43.5583724	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANTONIO\r\nBasicInformationId: 0\r\nBirthDate: April 27, 1966\r\nBirthPlace: SAN ANTONIO, ISLA VERDE\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: reylando.medina@deped.gov.ph\r\nExtensionName: \r\nFirstName: REYLANDO\r\nFullName: REYLANDO A. MEDINA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: AMUL\r\nMobileNumber: 09507998227\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANTONIO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775136	2025-03-24	16:23:43.6359862	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3919\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 0437022094\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PRECIOSA\r\nFullName: PRECIOSA GUTIERREZ\r\nGender: Female\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: TEACHER\r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
775137	2025-03-24	16:23:43.6359862	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3919\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARCELINO\r\nFullName: MARCELINO GARCIA MEDINA\r\nGender: Male\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: GARCIA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
775138	2025-03-24	16:23:43.6369833	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3919\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: TRINIDAD\r\nFullName: TRINIDAD ANONUEVO AMUL\r\nGender: Female\r\nLastName: AMUL\r\nMaidenName: \r\nMiddleName: ANONUEVO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
775139	2025-03-24	16:23:43.6369833	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3919\r\nBirthDate: May 18, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DOROTHY BEATRICE\r\nFullName: DOROTHY BEATRICE E. MEDINA\r\nGender: Female\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: E.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775140	2025-03-24	16:23:43.6379842	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3919\r\nBirthDate: April 23, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EDWARD THEODORE\r\nFullName: EDWARD THEODORE E. MEDINA\r\nGender: Male\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: E.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775148	2025-03-24	16:24:47.0987210	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3917\r\nSkillId: 0\r\nSkillName: DRIVING\r\n	admin	Skills	1
775142	2025-03-24	16:24:11.7435761	<Undetected>	Update	BasicInformationId: 3919\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 0437022094\r\nEmployeeRelativeId: 4339\r\nExtensionName: \r\nFirstName: PRECIOSA\r\nFullName: PRECIOSA GUTIERREZ\r\nGender: Female\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: TEACHER\r\nRelationship: Wife\r\n	BasicInformationId: 3919\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 0437022094\r\nEmployeeRelativeId: 4339\r\nExtensionName: \r\nFirstName: PRECIOSA\r\nFullName: PRECIOSA EBORA\r\nGender: Female\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: TEACHER\r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
775143	2025-03-24	16:24:11.7569790	<Undetected>	Update	BasicInformationId: 3919\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4340\r\nExtensionName: \r\nFirstName: MARCELINO\r\nFullName: MARCELINO GARCIA MEDINA\r\nGender: Male\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: GARCIA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3919\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4340\r\nExtensionName: \r\nFirstName: MARCELINO\r\nFullName: MARCELINO MEDINA\r\nGender: Male\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: GARCIA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
775144	2025-03-24	16:24:11.7782295	<Undetected>	Update	BasicInformationId: 3919\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4341\r\nExtensionName: \r\nFirstName: TRINIDAD\r\nFullName: TRINIDAD ANONUEVO AMUL\r\nGender: Female\r\nLastName: AMUL\r\nMaidenName: \r\nMiddleName: ANONUEVO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3919\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4341\r\nExtensionName: \r\nFirstName: TRINIDAD\r\nFullName: TRINIDAD AMUL\r\nGender: Female\r\nLastName: AMUL\r\nMaidenName: \r\nMiddleName: ANONUEVO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
775145	2025-03-24	16:24:11.7941603	<Undetected>	Update	BasicInformationId: 3919\r\nBirthDate: May 18, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4342\r\nExtensionName: \r\nFirstName: DOROTHY BEATRICE\r\nFullName: DOROTHY BEATRICE E. MEDINA\r\nGender: Female\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: E.\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3919\r\nBirthDate: May 18, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4342\r\nExtensionName: \r\nFirstName: DOROTHY BEATRICE\r\nFullName: DOROTHY BEATRICE MEDINA\r\nGender: Female\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: E.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775146	2025-03-24	16:24:11.7991769	<Undetected>	Update	BasicInformationId: 3919\r\nBirthDate: April 23, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4343\r\nExtensionName: \r\nFirstName: EDWARD THEODORE\r\nFullName: EDWARD THEODORE E. MEDINA\r\nGender: Male\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: E.\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3919\r\nBirthDate: April 23, 2007\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4343\r\nExtensionName: \r\nFirstName: EDWARD THEODORE\r\nFullName: EDWARD THEODORE MEDINA\r\nGender: Male\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: E.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775147	2025-03-24	16:24:11.8061965	<Undetected>	Update	BasicInformationId: 3919\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3716\r\n	BasicInformationId: 3919\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3716\r\n	admin	Questionnaires	1
775152	2025-03-24	16:34:28.5556803	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: SECOND HONOR\r\nBasicInformationId: 3919\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1973\r\nDateTo: 1979\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: PARANG ELEMENTARY SCHOOL\r\nYearGraduated: 1979\r\n	admin	EducationalBackgrounds	1
775153	2025-03-24	16:34:28.5667792	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: HONORABLE MENTION\r\nBasicInformationId: 3919\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1980\r\nDateTo: 1984\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: ISLA VERDE CATHOLIC HIGH SCHOOL\r\nYearGraduated: 1984\r\n	admin	EducationalBackgrounds	1
775157	2025-03-24	16:38:39.5116809	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3919\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 14,862.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-8\r\nStatus: Permanent\r\nToDate: March 24, 2025\r\n	admin	Experiences	1
775158	2025-03-24	16:38:39.5167229	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3919\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 13,780.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-8\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
775159	2025-03-24	16:38:39.5217506	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3919\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 13,780.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-8\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
775160	2025-03-24	16:38:39.5267664	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3919\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 13,268.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-8\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
775154	2025-03-24	16:36:33.4553435	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3917\r\nCharacterReferenceId: 0\r\nCompanyAddress: TABANGAO DAO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 0437231358\r\nExtensionName: \r\nFirstName: RICA\r\nLastName: SUAREZ\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775155	2025-03-24	16:36:33.4633436	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3917\r\nCharacterReferenceId: 0\r\nCompanyAddress: TANGISAN, LIBJO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 0437231358\r\nExtensionName: \r\nFirstName: GEMMA \r\nLastName: CLAVERIA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775156	2025-03-24	16:36:33.4683457	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3917\r\nCharacterReferenceId: 0\r\nCompanyAddress: EASTERN LIBJO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09165824082\r\nExtensionName: \r\nFirstName: MARINA\r\nLastName: MARASIGAN\r\nMiddleName: F\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775162	2025-03-24	16:38:50.0550694	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIBJO\r\nBasicInformationId: 3917\r\nBirthDate: July 03, 1973\r\nBirthPlace: LIBJO, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jocelyn.garcia008@deped.gov.ph\r\nExtensionName: \r\nFirstName: JOCELYN\r\nFullName: JOCELYN C. GARCIA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: CATRAL\r\nMobileNumber: 09178423406\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: TANGISAN\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: TANGISAN\r\nTIN: \r\nWeight: 49\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIBJO\r\nBasicInformationId: 3917\r\nBirthDate: July 03, 1973\r\nBirthPlace: LIBJO, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jocelyn.garcia008@deped.gov.ph\r\nExtensionName: \r\nFirstName: JOCELYN\r\nFullName: JOCELYN C. GARCIA\r\nGender: Female\r\nGovernmentIdIssuedDate: September 29, 1997\r\nGovernmentIdNumber: 0156680\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02003003669\r\nHDMF: 1490-0090-2913\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GARCIA\r\nMaidenName: \r\nMiddleName: CATRAL\r\nMobileNumber: 09178423406\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: TANGISAN\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000021955-9\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-0916399-1\r\nStreetName: TANGISAN\r\nTIN: 182-682-764-0000\r\nWeight: 49\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775161	2025-03-24	16:38:39.5309819	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3919\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 12,756.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-8\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
775163	2025-03-24	16:41:42.0794840	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3919\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 12,244.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-8\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
775164	2025-03-24	16:41:42.0844994	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3919\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 11,732.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-8\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
775165	2025-03-24	16:41:42.0895167	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3919\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 11,076.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-8\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
775166	2025-03-24	16:41:42.0945632	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3919\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 10,543.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-7\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
775167	2025-03-24	16:41:42.0995792	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3919\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 10,036.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-7\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
775168	2025-03-24	16:42:41.8724500	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: CENTRAL LIBJO\r\nBasicInformationId: 0\r\nBirthDate: January 12, 1970\r\nBirthPlace: LUCENA CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lolita.geronimo002@deped.gov.ph\r\nExtensionName: \r\nFirstName: LOLITA\r\nFullName: LOLITA G. GERONIMO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GERONIMO\r\nMaidenName: \r\nMiddleName: GONZALES\r\nMobileNumber: 09455692754\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: CENTRAL LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PINAGPALA ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: PINAGPALA ROAD\r\nTIN: \r\nWeight: 51\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775169	2025-03-24	16:42:41.8819939	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3920\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOSE\r\nFullName: JOSE RAMIREZ GERONIMO\r\nGender: Male\r\nLastName: GERONIMO\r\nMaidenName: \r\nMiddleName: RAMIREZ\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
775170	2025-03-24	16:42:41.8819939	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3920\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LUISITO\r\nFullName: LUISITO DE CASTRO GONZALES\r\nGender: Male\r\nLastName: GONZALES\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
775171	2025-03-24	16:42:41.8819939	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3920\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CARMEN\r\nFullName: CARMEN GONZALES PALTADO\r\nGender: Male\r\nLastName: PALTADO\r\nMaidenName: \r\nMiddleName: GONZALES\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
775173	2025-03-24	16:45:09.3365541	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3919\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 07, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 9,554.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-7\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
775174	2025-03-24	16:45:09.3406155	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3919\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 9,459.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-6\r\nStatus: Permanent\r\nToDate: January 06, 2015\r\n	admin	Experiences	1
775175	2025-03-24	16:45:09.3466454	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3919\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 07, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 8,834.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-6\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
775176	2025-03-24	16:45:09.3506594	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3919\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 8,721.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-6\r\nStatus: Permanent\r\nToDate: January 06, 2012\r\n	admin	Experiences	1
775177	2025-03-24	16:45:09.3567043	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3919\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 8,077.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-5\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
775178	2025-03-24	16:45:09.3607180	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3919\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 7,432.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-5\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
775190	2025-03-24	16:50:40.6176022	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3919\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 07, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 6,780.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-5\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
775191	2025-03-24	16:50:40.6226020	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3919\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 6,622.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-4\r\nStatus: Permanent\r\nToDate: January 06, 2009\r\n	admin	Experiences	1
775192	2025-03-24	16:50:40.6276018	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3919\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 6,020.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-4\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
775193	2025-03-24	16:50:40.6316018	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3919\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 5,473.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-4\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
775194	2025-03-24	16:50:40.6378683	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3919\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: March 01, 2004\r\nIsGovernmentService: True\r\nMonthlySalary: 5,339.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-3\r\nStatus: Permanent\r\nToDate: December 31, 2006\r\n	admin	Experiences	1
775179	2025-03-24	16:46:12.1209031	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3920\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1977\r\nDateTo: 1983\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: LIBJO ELEMENTARY SCHOOL\r\nYearGraduated: 1983\r\n	admin	EducationalBackgrounds	1
775180	2025-03-24	16:46:12.1258974	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3920\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1983\r\nDateTo: 1987\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1987\r\n	admin	EducationalBackgrounds	1
775181	2025-03-24	16:46:12.1388967	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3920\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1994\r\nDateTo: 1998\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: UNIVERSITY OF BATANGAS\r\nYearGraduated: 1998\r\n	admin	EducationalBackgrounds	1
775182	2025-03-24	16:46:12.1438976	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3920\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 1999\r\nDateTo: 2002\r\nEducationalAttainment: 27\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
775183	2025-03-24	16:46:12.1598982	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: CENTRAL LIBJO\r\nBasicInformationId: 3920\r\nBirthDate: January 12, 1970\r\nBirthPlace: LUCENA CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lolita.geronimo002@deped.gov.ph\r\nExtensionName: \r\nFirstName: LOLITA\r\nFullName: LOLITA G. GERONIMO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GERONIMO\r\nMaidenName: \r\nMiddleName: GONZALES\r\nMobileNumber: 09455692754\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: CENTRAL LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PINAGPALA ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: Mrs.\r\nSSS: \r\nStreetName: PINAGPALA ROAD\r\nTIN: \r\nWeight: 51\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: CENTRAL LIBJO\r\nBasicInformationId: 3920\r\nBirthDate: January 12, 1970\r\nBirthPlace: LUCENA CITY\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: lolita.geronimo002@deped.gov.ph\r\nExtensionName: \r\nFirstName: LOLITA\r\nFullName: LOLITA G. GERONIMO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.49\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: GERONIMO\r\nMaidenName: \r\nMiddleName: GONZALES\r\nMobileNumber: 09455692754\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: CENTRAL LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PINAGPALA ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PINAGPALA ROAD\r\nTIN: \r\nWeight: 51\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775184	2025-03-24	16:46:12.1719036	<Undetected>	Update	BasicInformationId: 3920\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4344\r\nExtensionName: \r\nFirstName: JOSE\r\nFullName: JOSE RAMIREZ GERONIMO\r\nGender: Male\r\nLastName: GERONIMO\r\nMaidenName: \r\nMiddleName: RAMIREZ\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3920\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4344\r\nExtensionName: \r\nFirstName: JOSE\r\nFullName: JOSE GERONIMO\r\nGender: Male\r\nLastName: GERONIMO\r\nMaidenName: \r\nMiddleName: RAMIREZ\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
775185	2025-03-24	16:46:12.1964086	<Undetected>	Update	BasicInformationId: 3920\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4345\r\nExtensionName: \r\nFirstName: LUISITO\r\nFullName: LUISITO DE CASTRO GONZALES\r\nGender: Male\r\nLastName: GONZALES\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3920\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4345\r\nExtensionName: \r\nFirstName: LUISITO\r\nFullName: LUISITO GONZALES\r\nGender: Male\r\nLastName: GONZALES\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
775186	2025-03-24	16:46:12.2024095	<Undetected>	Update	BasicInformationId: 3920\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4346\r\nExtensionName: \r\nFirstName: CARMEN\r\nFullName: CARMEN GONZALES PALTADO\r\nGender: Male\r\nLastName: PALTADO\r\nMaidenName: \r\nMiddleName: GONZALES\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3920\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4346\r\nExtensionName: \r\nFirstName: CARMEN\r\nFullName: CARMEN PALTADO\r\nGender: Male\r\nLastName: PALTADO\r\nMaidenName: \r\nMiddleName: GONZALES\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
775187	2025-03-24	16:46:12.2084091	<Undetected>	Update	BasicInformationId: 3920\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3717\r\n	BasicInformationId: 3920\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3717\r\n	admin	Questionnaires	1
775188	2025-03-24	16:47:34.1998769	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3920\r\nDateOfExamination: August 01, 1998\r\nDateOfRelease: January 13, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 01, 1998\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0510808\r\nPlaceOfExamination: MANILA\r\nRating: 75\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
775189	2025-03-24	16:50:36.1302048	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3920\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 02, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 33,702.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-6\r\nStatus: Permanent\r\nToDate: January 04, 2025\r\n	admin	Experiences	1
775197	2025-03-24	16:52:20.3302558	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3920\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 04, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: July 01, 2007\r\n	admin	Experiences	1
775203	2025-03-24	16:55:22.9305886	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2024 REGIONAL TRAINING OF RECEIVING TEACHERS ON SNED\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
775213	2025-03-24	16:57:56.1502162	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TRAINING ON TEACHING THE CRITICAL COMPETENCIES IN ALL LEARNING AREAS OF KEY STAGE 1-2\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
775214	2025-03-24	16:58:55.3613609	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3920\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 32\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16400\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775215	2025-03-24	16:58:55.3693619	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3920\r\nEmployeeTrainingId: 0\r\nFromDate: November 18, 2024\r\nHours: 24\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - REGION IV-A CALABARZON\r\nStatus: \r\nToDate: November 20, 2024\r\nTrainingId: 16743\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775216	2025-03-24	16:58:55.3763617	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3920\r\nEmployeeTrainingId: 0\r\nFromDate: August 14, 2023\r\nHours: 40\r\nNatureOfParticipation: TECHNICAL\r\nSponsoringAgency: DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 18, 2023\r\nTrainingId: 16744\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775195	2025-03-24	16:50:40.6453243	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3919\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2004\r\nIsGovernmentService: True\r\nMonthlySalary: 5,339.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-3\r\nStatus: Permanent\r\nToDate: February 29, 2004\r\n	admin	Experiences	1
775196	2025-03-24	16:50:40.6505710	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3919\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2004\r\nIsGovernmentService: True\r\nMonthlySalary: 5,339.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-3\r\nStatus: Permanent\r\nToDate: February 29, 2004\r\n	admin	Experiences	1
775198	2025-03-24	16:53:18.8509473	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3919\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 5,209.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-2\r\nStatus: Permanent\r\nToDate: December 31, 2003\r\n	admin	Experiences	1
775199	2025-03-24	16:53:18.8559749	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3919\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 5,082.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-2\r\nStatus: Permanent\r\nToDate: December 31, 2001\r\n	admin	Experiences	1
775200	2025-03-24	16:53:18.8611363	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3919\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 4,840.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-2\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
775201	2025-03-24	16:53:18.8661525	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3919\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 06, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 4,400.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 1-1\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
775202	2025-03-24	16:54:05.0548894	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2024 DISTRICT GENDER AND DEVELOPMENT TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
775204	2025-03-24	16:56:14.0434983	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3919\r\nEmployeeTrainingId: 0\r\nFromDate: April 26, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY - DISTRICT X\r\nStatus: \r\nToDate: April 26, 2024\r\nTrainingId: 16742\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775205	2025-03-24	16:56:14.0494982	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3919\r\nEmployeeTrainingId: 0\r\nFromDate: October 13, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY - DISTRICT X\r\nStatus: \r\nToDate: October 13, 2023\r\nTrainingId: 16701\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775206	2025-03-24	16:56:14.0535669	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3919\r\nEmployeeTrainingId: 0\r\nFromDate: December 14, 2022\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: December 14, 2022\r\nTrainingId: 15230\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775207	2025-03-24	16:57:32.2092051	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3919\r\nSkillId: 0\r\nSkillName: MASONRY\r\n	admin	Skills	1
775208	2025-03-24	16:57:32.2134526	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3919\r\nSkillId: 0\r\nSkillName: PLAYING GUITAR / UKULELE\r\n	admin	Skills	1
775209	2025-03-24	16:57:32.2275180	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3919\r\nSkillId: 0\r\nSkillName: GARDENING\r\n	admin	Skills	1
775210	2025-03-24	16:57:32.2423425	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3919\r\nSkillId: 0\r\nSkillName: CARPENTRY\r\n	admin	Skills	1
775211	2025-03-24	16:57:32.2593745	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3919\r\nRecognitionId: 0\r\nRecognitionName: 2022 DISTIRCT OUTSTANDING ADMINISTRATIVE AIDE I\r\n	admin	Recognitions	1
775212	2025-03-24	16:57:32.2668268	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3919\r\nOrganizationId: 0\r\nOrganizationName: BOY SCOUT OF THE PHILIPPINES MEMBER\r\n	admin	Organizations	1
775217	2025-03-24	17:01:23.4196744	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3919\r\nCharacterReferenceId: 0\r\nCompanyAddress: STO. DOMINGO BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09171570651\r\nExtensionName: \r\nFirstName: LORNA\r\nLastName: ASI\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775218	2025-03-24	17:01:23.4247701	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3919\r\nCharacterReferenceId: 0\r\nCompanyAddress: GULOD ITAAS BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09667522908\r\nExtensionName: \r\nFirstName: CHARITY\r\nLastName: MAGADIA\r\nMiddleName: S. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775219	2025-03-24	17:01:23.4378887	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3919\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ANTONIO, ISLA VERDE\r\nCompanyName: \r\nContactNumber: 09602114973\r\nExtensionName: \r\nFirstName: BUHAY JOSE \r\nLastName: FATALLA\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775220	2025-03-24	17:02:36.4553079	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANTONIO\r\nBasicInformationId: 3919\r\nBirthDate: April 27, 1966\r\nBirthPlace: SAN ANTONIO, ISLA VERDE\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: reylando.medina@deped.gov.ph\r\nExtensionName: \r\nFirstName: REYLANDO\r\nFullName: REYLANDO A. MEDINA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: AMUL\r\nMobileNumber: 09507998227\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANTONIO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANTONIO\r\nBasicInformationId: 3919\r\nBirthDate: April 27, 1966\r\nBirthPlace: SAN ANTONIO, ISLA VERDE\r\nBloodType: AB\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: reylando.medina@deped.gov.ph\r\nExtensionName: \r\nFirstName: REYLANDO\r\nFullName: REYLANDO A. MEDINA\r\nGender: Male\r\nGovernmentIdIssuedDate: January 29, 1998\r\nGovernmentIdNumber: 906888777\r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: TIN\r\nGSIS: 66042701093\r\nHDMF: 1490-0087-7372\r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: AMUL\r\nMobileNumber: 09507998227\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANTONIO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000022017-4\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 906-888-777-0000\r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775221	2025-03-25	09:00:10.1240179	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3879\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,421.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
775222	2025-03-25	09:00:10.1300353	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3879\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
775223	2025-03-25	09:00:10.1350437	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3879\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 17, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
775224	2025-03-25	09:00:10.1391042	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3879\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 30,028.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: January 16, 2023\r\n	admin	Experiences	1
775225	2025-03-25	09:00:10.1451137	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3879\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 06, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 28,471.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
775226	2025-03-25	09:00:10.1491200	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3879\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 28,180.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: November 05, 2022\r\n	admin	Experiences	1
775336	2025-03-25	16:35:04.5046022	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3921\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO, ISLA VERDE BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09564781003\r\nExtensionName: \r\nFirstName: PRECIOSA\r\nLastName: MEDINA\r\nMiddleName: E.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775227	2025-03-25	09:00:10.1542318	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3879\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 26,624.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
775228	2025-03-25	09:00:10.1592486	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3879\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 25,067.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
775254	2025-03-25	14:44:08.5946877	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN AGAPITO, ISLA VERDE\r\nBasicInformationId: 0\r\nBirthDate: June 02, 1970\r\nBirthPlace: SAN AGAPITO, VERDE BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: bernaditte.purio@deped.gov.ph\r\nExtensionName: \r\nFirstName: BERNADITE\r\nFullName: BERNADITE C. PURIO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.56\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PURIO\r\nMaidenName: \r\nMiddleName: CALAHATI\r\nMobileNumber: 09684978951\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN AGAPITO, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 75\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775255	2025-03-25	14:44:08.9494801	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3921\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JUN\r\nFullName: JUN CUETO PURIO\r\nGender: Male\r\nLastName: PURIO\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: FARMER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
775256	2025-03-25	14:44:08.9494801	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3921\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALBERTO\r\nFullName: ALBERTO DELGADO CALAHATI\r\nGender: Male\r\nLastName: CALAHATI\r\nMaidenName: \r\nMiddleName: DELGADO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
775257	2025-03-25	14:44:08.9494801	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3921\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JULITA\r\nFullName: JULITA CUETO ADALIN\r\nGender: Female\r\nLastName: ADALIN\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
775258	2025-03-25	14:44:08.9504820	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3921\r\nBirthDate: May 11, 1998\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOHN JERALD\r\nFullName: JOHN JERALD C. PURIO\r\nGender: Male\r\nLastName: PURIO\r\nMaidenName: \r\nMiddleName: C.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775259	2025-03-25	14:44:08.9504820	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3921\r\nBirthDate: July 19, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JAMES RAE\r\nFullName: JAMES RAE C. PURIO\r\nGender: Male\r\nLastName: PURIO\r\nMaidenName: \r\nMiddleName: C.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775260	2025-03-25	14:44:08.9504820	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3921\r\nBirthDate: February 04, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JUDITH JANE\r\nFullName: JUDITH JANE C. PURIO\r\nGender: Female\r\nLastName: PURIO\r\nMaidenName: \r\nMiddleName: C.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775261	2025-03-25	14:44:08.9534796	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3921\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
775262	2025-03-25	14:49:23.1736990	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3921\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1997\r\nDateTo: 1983\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGAPITO ELEMENTARY SCHOOL\r\nYearGraduated: 1983\r\n	admin	EducationalBackgrounds	1
775382	2025-03-25	16:59:44.2475031	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION TEACHERS CONGRESS BASIC AND ACTION RESEARCH PROJECTS FOR CONTINUOUS IMPROVEMENT\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
775263	2025-03-25	14:49:23.1786990	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3921\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1983\r\nDateTo: 1987\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: ISLA VERDE CATHOLIC HIGH SCHOOL\r\nYearGraduated: 1987\r\n	admin	EducationalBackgrounds	1
775264	2025-03-25	14:49:23.1836978	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3921\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1988\r\nDateTo: 1992\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MAJOR IN MATH\r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES\r\nYearGraduated: 1992\r\n	admin	EducationalBackgrounds	1
775265	2025-03-25	14:49:23.1997481	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3921\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2017\r\nDateTo: 2019\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: MAJOR IN EDUCATIONAL MANAGEMENT\r\nSchoolorUniversity: PHILIPPINE COLLEGE OF HEALTH SCIENCES INC.\r\nYearGraduated: 2019\r\n	admin	EducationalBackgrounds	1
775266	2025-03-25	14:49:23.2047414	<Undetected>	Update	BasicInformationId: 3921\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4347\r\nExtensionName: \r\nFirstName: JUN\r\nFullName: JUN CUETO PURIO\r\nGender: Male\r\nLastName: PURIO\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: FARMER\r\nRelationship: Husband\r\n	BasicInformationId: 3921\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4347\r\nExtensionName: \r\nFirstName: JUN\r\nFullName: JUN PURIO\r\nGender: Male\r\nLastName: PURIO\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: FARMER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
775267	2025-03-25	14:49:23.2116977	<Undetected>	Update	BasicInformationId: 3921\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4348\r\nExtensionName: \r\nFirstName: ALBERTO\r\nFullName: ALBERTO DELGADO CALAHATI\r\nGender: Male\r\nLastName: CALAHATI\r\nMaidenName: \r\nMiddleName: DELGADO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3921\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4348\r\nExtensionName: \r\nFirstName: ALBERTO\r\nFullName: ALBERTO CALAHATI\r\nGender: Male\r\nLastName: CALAHATI\r\nMaidenName: \r\nMiddleName: DELGADO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
775268	2025-03-25	14:49:23.2156977	<Undetected>	Update	BasicInformationId: 3921\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4349\r\nExtensionName: \r\nFirstName: JULITA\r\nFullName: JULITA CUETO ADALIN\r\nGender: Female\r\nLastName: ADALIN\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3921\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4349\r\nExtensionName: \r\nFirstName: JULITA\r\nFullName: JULITA ADALIN\r\nGender: Female\r\nLastName: ADALIN\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
775269	2025-03-25	14:49:23.2206978	<Undetected>	Update	BasicInformationId: 3921\r\nBirthDate: May 11, 1998\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4350\r\nExtensionName: \r\nFirstName: JOHN JERALD\r\nFullName: JOHN JERALD C. PURIO\r\nGender: Male\r\nLastName: PURIO\r\nMaidenName: \r\nMiddleName: C.\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3921\r\nBirthDate: May 11, 1998\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4350\r\nExtensionName: \r\nFirstName: JOHN JERALD\r\nFullName: JOHN JERALD PURIO\r\nGender: Male\r\nLastName: PURIO\r\nMaidenName: \r\nMiddleName: C.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775270	2025-03-25	14:49:23.2256978	<Undetected>	Update	BasicInformationId: 3921\r\nBirthDate: July 19, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4351\r\nExtensionName: \r\nFirstName: JAMES RAE\r\nFullName: JAMES RAE C. PURIO\r\nGender: Male\r\nLastName: PURIO\r\nMaidenName: \r\nMiddleName: C.\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3921\r\nBirthDate: July 19, 2000\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4351\r\nExtensionName: \r\nFirstName: JAMES RAE\r\nFullName: JAMES RAE PURIO\r\nGender: Male\r\nLastName: PURIO\r\nMaidenName: \r\nMiddleName: C.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775271	2025-03-25	14:49:23.2296978	<Undetected>	Update	BasicInformationId: 3921\r\nBirthDate: February 04, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4352\r\nExtensionName: \r\nFirstName: JUDITH JANE\r\nFullName: JUDITH JANE C. PURIO\r\nGender: Female\r\nLastName: PURIO\r\nMaidenName: \r\nMiddleName: C.\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3921\r\nBirthDate: February 04, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4352\r\nExtensionName: \r\nFirstName: JUDITH JANE\r\nFullName: JUDITH JANE PURIO\r\nGender: Female\r\nLastName: PURIO\r\nMaidenName: \r\nMiddleName: C.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775272	2025-03-25	14:49:23.2346977	<Undetected>	Update	BasicInformationId: 3921\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3718\r\n	BasicInformationId: 3921\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3718\r\n	admin	Questionnaires	1
775273	2025-03-25	15:19:26.8486508	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3921\r\nDateOfExamination: August 01, 1999\r\nDateOfRelease: June 02, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 01, 1999\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0582315\r\nPlaceOfExamination: ORIENTAL MINDORO\r\nRating: 75.4\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS \r\n	admin	Eligibilities	1
775274	2025-03-25	15:19:26.8536505	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3921\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,733.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: March 25, 2025\r\n	admin	Experiences	1
775275	2025-03-25	15:19:26.8586508	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3921\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 31,633.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
775276	2025-03-25	15:19:26.8636507	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3921\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 03, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,633.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
775277	2025-03-25	15:19:26.8686510	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3921\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: November 02, 2023\r\n	admin	Experiences	1
775278	2025-03-25	15:19:26.8736508	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3921\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 29,798.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
775279	2025-03-25	15:19:26.8776505	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3921\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 28,276.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
775280	2025-03-25	15:26:42.8468060	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3921\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: November 03, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 26,754.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
775281	2025-03-25	15:26:42.8518059	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3921\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 23,778.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-6\r\nStatus: Permanent\r\nToDate: November 02, 2020\r\n	admin	Experiences	1
775282	2025-03-25	15:26:42.8599710	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3921\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 19, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 22,216.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-6\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
775283	2025-03-25	15:26:42.8649084	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3921\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,535.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: August 18, 2019\r\n	admin	Experiences	1
775284	2025-03-25	15:26:42.8699085	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3921\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 21,231.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
775285	2025-03-25	15:26:42.8749080	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3921\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 20,567.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
775286	2025-03-25	15:26:42.8789085	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3921\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 19, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,935.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
775287	2025-03-25	15:26:42.8839084	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3921\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,709.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: August 18, 2016\r\n	admin	Experiences	1
775288	2025-03-25	15:26:42.8889084	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3921\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 20, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 19,111.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: December 13, 2015\r\n	admin	Experiences	1
775289	2025-03-25	15:26:42.8939085	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3921\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 18,922.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: August 19, 2013\r\n	admin	Experiences	1
775290	2025-03-25	15:26:42.8979083	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3921\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 20, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 17,540.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
775291	2025-03-25	15:30:54.2994098	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3921\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 17,318.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: August 09, 2011\r\n	admin	Experiences	1
775292	2025-03-25	15:30:54.3054129	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3921\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 15,900.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
775293	2025-03-25	15:30:54.3134088	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3921\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 14,483.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
775294	2025-03-25	15:30:54.3174089	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3921\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,328.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
775295	2025-03-25	15:30:54.3224088	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3921\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 11,207.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
775296	2025-03-25	15:30:54.3274088	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3921\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,933.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2007\r\n	admin	Experiences	1
775403	2025-03-26	08:27:15.3017793	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3922\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
775297	2025-03-25	15:30:54.3324088	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3921\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 19, 2004\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
775298	2025-03-25	15:30:54.3364088	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3921\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: August 16, 2004\r\n	admin	Experiences	1
775299	2025-03-25	15:30:54.3414090	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3921\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 18, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
775300	2025-03-25	15:32:02.9075618	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT SPOTS PROGRAM LAUNCHING, TRAINING, COACHING, AND MENTORING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
775324	2025-03-25	16:25:16.6142495	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL BASED IN SERVICE TRAINING FOR TEACHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
775325	2025-03-25	16:26:57.2483558	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: ORIENTATION ON THE GUIDELINES ON THE IMPLEMENTATION OF SCHOOL BASED FEEDING PROGRAM (SBFP)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
775326	2025-03-25	16:29:54.9605152	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTRICT WIDE ROLL-OUT ON EARLY LANGUAGE LITERACY AND NUMERACY (ELLN)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
775327	2025-03-25	16:30:51.2021233	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3921\r\nEmployeeTrainingId: 0\r\nFromDate: August 09, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY DISTRICT X VERDE ISLAND\r\nStatus: \r\nToDate: August 09, 2024\r\nTrainingId: 16745\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775328	2025-03-25	16:30:51.2061230	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3921\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: PARANG ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16778\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775329	2025-03-25	16:30:51.2121230	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3921\r\nEmployeeTrainingId: 0\r\nFromDate: August 01, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 01, 2023\r\nTrainingId: 16779\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775330	2025-03-25	16:30:51.2161242	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3921\r\nEmployeeTrainingId: 0\r\nFromDate: August 02, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 02, 2023\r\nTrainingId: 15172\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775331	2025-03-25	16:30:51.2211247	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3921\r\nEmployeeTrainingId: 0\r\nFromDate: March 10, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY DISTRICT X VERDE ISLAND\r\nStatus: \r\nToDate: March 10, 2023\r\nTrainingId: 16780\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775332	2025-03-25	16:31:11.6265305	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3921\r\nSkillId: 0\r\nSkillName: N/A\r\n	admin	Skills	1
775333	2025-03-25	16:31:11.6375306	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3921\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
775334	2025-03-25	16:31:11.6425306	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3921\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
775335	2025-03-25	16:35:04.4966022	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3921\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09302924754\r\nExtensionName: \r\nFirstName: ROMMEL\r\nLastName: EBORA\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775404	2025-03-26	08:27:15.3108266	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3922\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
775337	2025-03-25	16:35:04.5096025	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3921\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09178627327\r\nExtensionName: \r\nFirstName: RIZA\r\nLastName: EBORA\r\nMiddleName: C.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775338	2025-03-25	16:35:04.5186428	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN AGAPITO, ISLA VERDE\r\nBasicInformationId: 3921\r\nBirthDate: June 02, 1970\r\nBirthPlace: SAN AGAPITO, VERDE BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: bernaditte.purio@deped.gov.ph\r\nExtensionName: \r\nFirstName: BERNADITE\r\nFullName: BERNADITE C. PURIO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.56\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PURIO\r\nMaidenName: \r\nMiddleName: CALAHATI\r\nMobileNumber: 09684978951\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN AGAPITO, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 75\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN AGAPITO, ISLA VERDE\r\nBasicInformationId: 3921\r\nBirthDate: June 02, 1970\r\nBirthPlace: SAN AGAPITO, VERDE BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: bernaditte.purio@deped.gov.ph\r\nExtensionName: \r\nFirstName: BERNADITE\r\nFullName: BERNADITE C. PURIO\r\nGender: Female\r\nGovernmentIdIssuedDate: October 05, 1999\r\nGovernmentIdNumber: 0582315\r\nGovernmentIdPlaceIssued: ORIENTAL MINDORO\r\nGovernmentIssuedId: PRC\r\nGSIS: 00002261208\r\nHDMF: 1490-0094-2892\r\nHeight: 1.56\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PURIO\r\nMaidenName: \r\nMiddleName: CALAHATI\r\nMobileNumber: 09684978951\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN AGAPITO, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000048119-9\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 924-721-400-0000\r\nWeight: 75\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775339	2025-03-25	16:40:25.0413967	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANTONIO, ISLA VERDE\r\nBasicInformationId: 0\r\nBirthDate: September 05, 1980\r\nBirthPlace: SAN ANTONIO, ISLA VERDE\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: miriam.laude@deped.gov.ph\r\nExtensionName: \r\nFirstName: MIRIAM\r\nFullName: MIRIAM A. LAUDE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: LAUDE\r\nMaidenName: \r\nMiddleName: AMUL\r\nMobileNumber: 09615493370\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANTONIO, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 48\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775340	2025-03-25	16:40:25.0727069	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3922\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOMAR\r\nFullName: JOMAR OTAYDE LAUDE\r\nGender: Male\r\nLastName: LAUDE\r\nMaidenName: \r\nMiddleName: OTAYDE\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
775341	2025-03-25	16:40:25.0727069	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3922\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RAMON\r\nFullName: RAMON DE CASTRO AMUL\r\nGender: Male\r\nLastName: AMUL\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
775342	2025-03-25	16:40:25.0727069	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3922\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MIGUELA\r\nFullName: MIGUELA AMUL CUETO\r\nGender: Female\r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: AMUL\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
775343	2025-03-25	16:40:25.0727069	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3922\r\nBirthDate: August 01, 2010\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JIAN MOREH\r\nFullName: JIAN MOREH A. LAUDE\r\nGender: Male\r\nLastName: LAUDE\r\nMaidenName: \r\nMiddleName: A.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775344	2025-03-25	16:40:25.0727069	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3922\r\nBirthDate: June 23, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JEWEL MIZRAH\r\nFullName: JEWEL MIZRAH A. LAUDE\r\nGender: Female\r\nLastName: LAUDE\r\nMaidenName: \r\nMiddleName: A.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775345	2025-03-25	16:40:25.0727069	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3922\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
775346	2025-03-25	16:42:13.7847555	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: COMPUTER TECHNICIAN\r\nLevel: Vocational\r\n	admin	Courses	1
775347	2025-03-25	16:43:49.6420564	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3922\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1987\r\nDateTo: 1993\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: PARANG ELEMENTARY SCHOOL\r\nYearGraduated: 1993\r\n	admin	EducationalBackgrounds	1
775348	2025-03-25	16:43:49.6530567	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3922\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1993\r\nDateTo: 1997\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: ISLA VERDE CATHOLIC HIGH SCHOOL\r\nYearGraduated: 1997\r\n	admin	EducationalBackgrounds	1
775349	2025-03-25	16:43:49.6570551	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3922\r\nCourse: \r\nCourseId: 1401\r\nCourseOrMajor: \r\nDateFrom: 2003\r\nDateTo: 2003\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Vocational Graduate\r\nMajor: \r\nSchoolorUniversity: ST. PETER TECHNICAL TRAINING CENTER\r\nYearGraduated: 2003\r\n	admin	EducationalBackgrounds	1
775350	2025-03-25	16:43:49.6620553	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3922\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1997\r\nDateTo: 2005\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: ST. BRIDGET COLLEGE\r\nYearGraduated: 2005\r\n	admin	EducationalBackgrounds	1
775351	2025-03-25	16:43:49.6700565	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3922\r\nCourse: \r\nCourseId: 1291\r\nCourseOrMajor: \r\nDateFrom: 2019\r\nDateTo: 2022\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: PHILIPPINE COLLEGE OF HEALTH SCIENCES, INC.\r\nYearGraduated: 2022\r\n	admin	EducationalBackgrounds	1
775352	2025-03-25	16:43:49.6750569	<Undetected>	Update	BasicInformationId: 3922\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4353\r\nExtensionName: \r\nFirstName: JOMAR\r\nFullName: JOMAR OTAYDE LAUDE\r\nGender: Male\r\nLastName: LAUDE\r\nMaidenName: \r\nMiddleName: OTAYDE\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3922\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4353\r\nExtensionName: \r\nFirstName: JOMAR\r\nFullName: JOMAR LAUDE\r\nGender: Male\r\nLastName: LAUDE\r\nMaidenName: \r\nMiddleName: OTAYDE\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
775353	2025-03-25	16:43:49.6800567	<Undetected>	Update	BasicInformationId: 3922\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4354\r\nExtensionName: \r\nFirstName: RAMON\r\nFullName: RAMON DE CASTRO AMUL\r\nGender: Male\r\nLastName: AMUL\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3922\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4354\r\nExtensionName: \r\nFirstName: RAMON\r\nFullName: RAMON AMUL\r\nGender: Male\r\nLastName: AMUL\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
775354	2025-03-25	16:43:49.6850565	<Undetected>	Update	BasicInformationId: 3922\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4355\r\nExtensionName: \r\nFirstName: MIGUELA\r\nFullName: MIGUELA AMUL CUETO\r\nGender: Female\r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: AMUL\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3922\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4355\r\nExtensionName: \r\nFirstName: MIGUELA\r\nFullName: MIGUELA CUETO\r\nGender: Female\r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: AMUL\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
775355	2025-03-25	16:43:49.6900567	<Undetected>	Update	BasicInformationId: 3922\r\nBirthDate: August 01, 2010\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4356\r\nExtensionName: \r\nFirstName: JIAN MOREH\r\nFullName: JIAN MOREH A. LAUDE\r\nGender: Male\r\nLastName: LAUDE\r\nMaidenName: \r\nMiddleName: A.\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3922\r\nBirthDate: August 01, 2010\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4356\r\nExtensionName: \r\nFirstName: JIAN MOREH\r\nFullName: JIAN MOREH LAUDE\r\nGender: Male\r\nLastName: LAUDE\r\nMaidenName: \r\nMiddleName: A.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775356	2025-03-25	16:43:49.6940565	<Undetected>	Update	BasicInformationId: 3922\r\nBirthDate: June 23, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4357\r\nExtensionName: \r\nFirstName: JEWEL MIZRAH\r\nFullName: JEWEL MIZRAH A. LAUDE\r\nGender: Female\r\nLastName: LAUDE\r\nMaidenName: \r\nMiddleName: A.\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3922\r\nBirthDate: June 23, 2013\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4357\r\nExtensionName: \r\nFirstName: JEWEL MIZRAH\r\nFullName: JEWEL MIZRAH LAUDE\r\nGender: Female\r\nLastName: LAUDE\r\nMaidenName: \r\nMiddleName: A.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775357	2025-03-25	16:43:49.6990564	<Undetected>	Update	BasicInformationId: 3922\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3719\r\n	BasicInformationId: 3922\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3719\r\n	admin	Questionnaires	1
775358	2025-03-25	16:44:57.1965168	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3922\r\nDateOfExamination: August 14, 2005\r\nDateOfRelease: September 05, 2024\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 14, 2005\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0899027\r\nPlaceOfExamination: LUCENA CITY\r\nRating: 76.80\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
775359	2025-03-25	16:47:54.7061919	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3922\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,421.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: March 25, 2025\r\n	admin	Experiences	1
775360	2025-03-25	16:47:54.7141935	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3922\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: September 09, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
775361	2025-03-25	16:47:54.7191969	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3922\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 30,028.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: September 08, 2024\r\n	admin	Experiences	1
775362	2025-03-25	16:47:54.7241944	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3922\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 30,028.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
775363	2025-03-25	16:47:54.7291968	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3922\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 14, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 28,471.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-4\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
775364	2025-03-25	16:49:59.5343829	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3922\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 28,180.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: August 13, 2022\r\n	admin	Experiences	1
775365	2025-03-25	16:49:59.5393817	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3922\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 26,624.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
775366	2025-03-25	16:49:59.5473831	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3922\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 25,067.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
775367	2025-03-25	16:49:59.5523831	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3922\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 14, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 23,510.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
775368	2025-03-25	16:53:10.1585502	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3922\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 23,222.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: August 13, 2019\r\n	admin	Experiences	1
775369	2025-03-25	16:53:10.1665499	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3922\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 22,410.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
775370	2025-03-25	16:53:10.1715898	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3922\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 21,626.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
775371	2025-03-25	16:53:10.1765957	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3922\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 14, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 20,870.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
775372	2025-03-25	16:53:10.1815964	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3922\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 20,651.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: August 13, 2016\r\n	admin	Experiences	1
775373	2025-03-25	16:57:19.3453480	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3922\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 14, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 19,940.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
775374	2025-03-25	16:57:19.3513484	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3922\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: August 13, 2013\r\n	admin	Experiences	1
775375	2025-03-25	16:57:19.3553487	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3922\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 17,069.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
775376	2025-03-25	16:57:19.3603483	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3922\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 15,649.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
775377	2025-03-25	16:57:19.3653484	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3922\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 14,198.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
775378	2025-03-25	16:57:19.3703488	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3922\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,026.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
775379	2025-03-25	16:57:19.3743482	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3922\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,933.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
775380	2025-03-25	16:57:19.3793483	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3922\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 04, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
775381	2025-03-25	16:57:19.3843485	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3922\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 06, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 03, 2007\r\n	admin	Experiences	1
775383	2025-03-25	17:00:31.7863025	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3922\r\nEmployeeTrainingId: 0\r\nFromDate: October 10, 2024\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: October 11, 2024\r\nTrainingId: 16321\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775384	2025-03-25	17:00:31.7963036	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3922\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: PARANG ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16778\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775385	2025-03-25	17:00:31.8003447	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3922\r\nEmployeeTrainingId: 0\r\nFromDate: August 02, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: August 02, 2023\r\nTrainingId: 16781\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775386	2025-03-26	08:18:55.3927358	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL BASED IN SERVICE TRAINING\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
775387	2025-03-26	08:19:33.3775467	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3922\r\nEmployeeTrainingId: 0\r\nFromDate: March 10, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY DISTRICT X-VERDE ISLAND\r\nStatus: \r\nToDate: March 10, 2023\r\nTrainingId: 16780\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775388	2025-03-26	08:19:33.3825642	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3922\r\nEmployeeTrainingId: 0\r\nFromDate: February 02, 2022\r\nHours: 32\r\nNatureOfParticipation: \r\nSponsoringAgency: PARANG ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: February 05, 2022\r\nTrainingId: 16552\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775389	2025-03-26	08:22:59.7111658	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3879\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 06, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 23,510.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
775390	2025-03-26	08:22:59.7206229	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3879\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 23,222.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-3\r\nStatus: Permanent\r\nToDate: November 05, 2019\r\n	admin	Experiences	1
775391	2025-03-26	08:22:59.7248204	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3879\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 22,410.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
775392	2025-03-26	08:22:59.7300487	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3879\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 21,626.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
775393	2025-03-26	08:22:59.7353345	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3879\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 06, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 20,870.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
775394	2025-03-26	08:22:59.7403923	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3879\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 20,651.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: November 05, 2016\r\n	admin	Experiences	1
775395	2025-03-26	08:22:59.7443985	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3879\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 06, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 19,940.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
775402	2025-03-26	08:27:15.2967347	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3922\r\nSkillId: 0\r\nSkillName: N/A\r\n	admin	Skills	1
775396	2025-03-26	08:22:59.7494572	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3879\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: December 03, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 18,735.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: November 05, 2013\r\n	admin	Experiences	1
775397	2025-03-26	08:22:59.7544747	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3879\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 02, 2012\r\n	admin	Experiences	1
775398	2025-03-26	08:22:59.7594821	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3879\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 17,099.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
775399	2025-03-26	08:22:59.7635025	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3879\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: December 02, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 14,198.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
775400	2025-03-26	08:22:59.7685102	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3879\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 28, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: November 30, 2009\r\n	admin	Experiences	1
775401	2025-03-26	08:24:10.3265626	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3879\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 15,649.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
775409	2025-03-26	08:28:15.9334442	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL MIDYEAR INSERVICE TRAINING FOR TEACHERS SY 2023-2024\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
775410	2025-03-26	08:28:59.1931874	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3879\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16319\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775411	2025-03-26	08:28:59.1983062	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3879\r\nEmployeeTrainingId: 0\r\nFromDate: September 25, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: September 27, 2024\r\nTrainingId: 15617\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775412	2025-03-26	08:28:59.2106768	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3879\r\nEmployeeTrainingId: 0\r\nFromDate: September 14, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION BATANGAS CITY\r\nStatus: \r\nToDate: September 14, 2024\r\nTrainingId: 16481\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775413	2025-03-26	08:28:59.2168414	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3879\r\nEmployeeTrainingId: 0\r\nFromDate: August 09, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: PARANG CUEVA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: August 09, 2024\r\nTrainingId: 16634\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775414	2025-03-26	08:28:59.2219871	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3879\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: PARANG CUEVA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16783\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775415	2025-03-26	08:29:29.7632091	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3879\r\nSkillId: 0\r\nSkillName: SURFING INTERNET\r\n	admin	Skills	1
775416	2025-03-26	08:29:29.7672088	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3879\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
775417	2025-03-26	08:29:29.7782088	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3879\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
775418	2025-03-26	08:29:29.7832090	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3879\r\nSkillId: 0\r\nSkillName: READING\r\n	admin	Skills	1
775419	2025-03-26	08:29:29.7941017	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3879\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
775405	2025-03-26	08:27:15.3148410	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3922\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ANTONIO, ISLA VERDE BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09564781003\r\nExtensionName: \r\nFirstName: PRECIOSA\r\nLastName: MEDINA\r\nMiddleName: E.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775406	2025-03-26	08:27:15.3208847	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3922\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ANTONIO, ISLA VERDE BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09108452404\r\nExtensionName: \r\nFirstName: FRANCISCO\r\nLastName: DE CASTRO\r\nMiddleName: A.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775407	2025-03-26	08:27:15.3248990	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3922\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO, ISLA VERDE BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09178627327\r\nExtensionName: \r\nFirstName: RIZA\r\nLastName: EBORA\r\nMiddleName: C.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775408	2025-03-26	08:27:15.3309201	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANTONIO, ISLA VERDE\r\nBasicInformationId: 3922\r\nBirthDate: September 05, 1980\r\nBirthPlace: SAN ANTONIO, ISLA VERDE\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: miriam.laude@deped.gov.ph\r\nExtensionName: \r\nFirstName: MIRIAM\r\nFullName: MIRIAM A. LAUDE\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: LAUDE\r\nMaidenName: \r\nMiddleName: AMUL\r\nMobileNumber: 09615493370\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANTONIO, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 48\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANTONIO, ISLA VERDE\r\nBasicInformationId: 3922\r\nBirthDate: September 05, 1980\r\nBirthPlace: SAN ANTONIO, ISLA VERDE\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: miriam.laude@deped.gov.ph\r\nExtensionName: \r\nFirstName: MIRIAM\r\nFullName: MIRIAM A. LAUDE\r\nGender: Female\r\nGovernmentIdIssuedDate: August 14, 2005\r\nGovernmentIdNumber: 0899027\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: 80090500965\r\nHDMF: 1490-0098-0860\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: LAUDE\r\nMaidenName: \r\nMiddleName: AMUL\r\nMobileNumber: 09615493370\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANTONIO, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-050074626-1\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-1111845-5\r\nStreetName: \r\nTIN: 301-997-066-0000\r\nWeight: 48\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775420	2025-03-26	08:32:03.4603756	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN AGAPITO\r\nBasicInformationId: 0\r\nBirthDate: August 11, 1997\r\nBirthPlace: SAN AGAPITO, ISLA VERDE, BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: norilyn.calaluan@deped.gov.ph\r\nExtensionName: \r\nFirstName: NORILYN\r\nFullName: NORILYN D. CALALUAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CALALUAN\r\nMaidenName: \r\nMiddleName: DELGADO\r\nMobileNumber: 09482319232\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN AGAPITO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SIRIIN II\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SIRIIN II\r\nTIN: \r\nWeight: 53\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775421	2025-03-26	08:32:03.4903644	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3923\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: KEYVIN\r\nFullName: KEYVIN EBORA CALALUAN\r\nGender: Male\r\nLastName: CALALUAN\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: VENDOR\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
775422	2025-03-26	08:32:03.4903644	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3923\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: NOEL\r\nFullName: NOEL RAYOS DELGADO\r\nGender: Male\r\nLastName: DELGADO\r\nMaidenName: \r\nMiddleName: RAYOS\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
775423	2025-03-26	08:32:03.4903644	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3923\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: VILMA\r\nFullName: VILMA RAYOS EBORA\r\nGender: Female\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: RAYOS\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
775424	2025-03-26	08:32:03.4903644	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3923\r\nBirthDate: February 06, 2018\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JON SKYLER\r\nFullName: JON SKYLER D. CALALUAN\r\nGender: Male\r\nLastName: CALALUAN\r\nMaidenName: \r\nMiddleName: D.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775425	2025-03-26	08:32:03.4903644	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3923\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
775427	2025-03-26	08:34:57.3939471	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: SALUTATORIAN\r\nBasicInformationId: 3923\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2005\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGAPITO ELEMENTARY SCHOOL\r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
775428	2025-03-26	08:34:57.4049791	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: 5TH PLACE\r\nBasicInformationId: 3923\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2011\r\nDateTo: 2015\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGAPITO NATIONAL HIGH SCHOOL\r\nYearGraduated: 2015\r\n	admin	EducationalBackgrounds	1
775429	2025-03-26	08:34:57.4090086	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3923\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2015\r\nDateTo: 2019\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: COLEGIO NG LUNGSOD NG BATANGAS\r\nYearGraduated: 2019\r\n	admin	EducationalBackgrounds	1
775430	2025-03-26	08:34:57.4160207	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3923\r\nDateOfExamination: September 29, 2019\r\nDateOfRelease: August 11, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 29, 2019\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1836162\r\nPlaceOfExamination: LUCENA\r\nRating: 75.6\r\nTitle: LIENSURE EXAMINATION FOR TEACHERS (LET)\r\n	admin	Eligibilities	1
775431	2025-03-26	08:34:57.4210296	<Undetected>	Update	BasicInformationId: 3923\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4358\r\nExtensionName: \r\nFirstName: KEYVIN\r\nFullName: KEYVIN EBORA CALALUAN\r\nGender: Male\r\nLastName: CALALUAN\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: VENDOR\r\nRelationship: Husband\r\n	BasicInformationId: 3923\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4358\r\nExtensionName: \r\nFirstName: KEYVIN\r\nFullName: KEYVIN CALALUAN\r\nGender: Male\r\nLastName: CALALUAN\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: VENDOR\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
775432	2025-03-26	08:34:57.4290634	<Undetected>	Update	BasicInformationId: 3923\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4359\r\nExtensionName: \r\nFirstName: NOEL\r\nFullName: NOEL RAYOS DELGADO\r\nGender: Male\r\nLastName: DELGADO\r\nMaidenName: \r\nMiddleName: RAYOS\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3923\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4359\r\nExtensionName: \r\nFirstName: NOEL\r\nFullName: NOEL DELGADO\r\nGender: Male\r\nLastName: DELGADO\r\nMaidenName: \r\nMiddleName: RAYOS\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
775433	2025-03-26	08:34:57.4406262	<Undetected>	Update	BasicInformationId: 3923\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4360\r\nExtensionName: \r\nFirstName: VILMA\r\nFullName: VILMA RAYOS EBORA\r\nGender: Female\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: RAYOS\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3923\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4360\r\nExtensionName: \r\nFirstName: VILMA\r\nFullName: VILMA EBORA\r\nGender: Female\r\nLastName: EBORA\r\nMaidenName: \r\nMiddleName: RAYOS\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
775434	2025-03-26	08:34:57.4668750	<Undetected>	Update	BasicInformationId: 3923\r\nBirthDate: February 06, 2018\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4361\r\nExtensionName: \r\nFirstName: JON SKYLER\r\nFullName: JON SKYLER D. CALALUAN\r\nGender: Male\r\nLastName: CALALUAN\r\nMaidenName: \r\nMiddleName: D.\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3923\r\nBirthDate: February 06, 2018\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4361\r\nExtensionName: \r\nFirstName: JON SKYLER\r\nFullName: JON SKYLER CALALUAN\r\nGender: Male\r\nLastName: CALALUAN\r\nMaidenName: \r\nMiddleName: D.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775435	2025-03-26	08:34:57.4798322	<Undetected>	Update	BasicInformationId: 3923\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3720\r\n	BasicInformationId: 3923\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3720\r\n	admin	Questionnaires	1
775449	2025-03-26	08:39:22.1940499	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3923\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / PARANG ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: October 18, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 30,024.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: March 26, 2025\r\n	admin	Experiences	1
775450	2025-03-26	08:39:22.1990510	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3923\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 05, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 27,000.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: September 06, 2024\r\n	admin	Experiences	1
775451	2025-03-26	08:39:22.2040521	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3923\r\nCompanyInstitution: DEPARTMENT OF EDUCATION / SAN AGAPITO INTEGRATED HIGH SCHOOL\r\nExperienceId: 0\r\nFromDate: April 17, 2024\r\nIsGovernmentService: False\r\nMonthlySalary: 11,440.00\r\nPositionHeld: ADMINISTRATIVE SUPPORT STAFF\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: July 26, 2024\r\n	admin	Experiences	1
775436	2025-03-26	08:35:19.0291954	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3880\r\nBirthDate: March 07, 1998\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EDSEL ALLEN\r\nFullName: EDSEL ALLEN MAPILI ESCAREZ\r\nGender: Male\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: MAPILI\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775437	2025-03-26	08:35:19.0342038	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3880\r\nBirthDate: July 14, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SAMUEL\r\nFullName: SAMUEL MAPILI ESCAREZ\r\nGender: Male\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: MAPILI\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775438	2025-03-26	08:35:19.0442864	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3880\r\nBirthDate: August 24, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ERUEL ANDREY\r\nFullName: ERUEL ANDREY MAPILI ESCAREZ\r\nGender: Male\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: MAPILI\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775439	2025-03-26	08:35:19.0492945	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3880\r\nBirthDate: December 31, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SAM BOY\r\nFullName: SAM BOY MAPILI ESCAREZ\r\nGender: Male\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: MAPILI\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775440	2025-03-26	08:35:19.0563364	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3880\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALDRIN\r\nFullName: ALDRIN RUSTIA ESCAREZ\r\nGender: Male\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: RUSTIA\r\nOccupation: ADMINISTRATIVE AIDE\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
775441	2025-03-26	08:36:16.3080295	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3880\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1981\r\nDateTo: 1986\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BALETE ELEMENTARY SCHOOL\r\nYearGraduated: 1987\r\n	admin	EducationalBackgrounds	1
775442	2025-03-26	08:36:16.3151573	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3880\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1987\r\nDateTo: 1990\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BALETE BARANGAY HIGH SCHOOL\r\nYearGraduated: 1990\r\n	admin	EducationalBackgrounds	1
775443	2025-03-26	08:36:16.3201649	<Undetected>	Update	BasicInformationId: 3880\r\nBirthDate: March 07, 1998\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4362\r\nExtensionName: \r\nFirstName: EDSEL ALLEN\r\nFullName: EDSEL ALLEN MAPILI ESCAREZ\r\nGender: Male\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: MAPILI\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3880\r\nBirthDate: March 07, 1998\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4362\r\nExtensionName: \r\nFirstName: EDSEL ALLEN\r\nFullName: EDSEL ALLEN ESCAREZ\r\nGender: Male\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: MAPILI\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775444	2025-03-26	08:36:16.3301848	<Undetected>	Update	BasicInformationId: 3880\r\nBirthDate: July 14, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4363\r\nExtensionName: \r\nFirstName: SAMUEL\r\nFullName: SAMUEL MAPILI ESCAREZ\r\nGender: Male\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: MAPILI\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3880\r\nBirthDate: July 14, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4363\r\nExtensionName: \r\nFirstName: SAMUEL\r\nFullName: SAMUEL ESCAREZ\r\nGender: Male\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: MAPILI\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775445	2025-03-26	08:36:16.3351922	<Undetected>	Update	BasicInformationId: 3880\r\nBirthDate: August 24, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4364\r\nExtensionName: \r\nFirstName: ERUEL ANDREY\r\nFullName: ERUEL ANDREY MAPILI ESCAREZ\r\nGender: Male\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: MAPILI\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3880\r\nBirthDate: August 24, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4364\r\nExtensionName: \r\nFirstName: ERUEL ANDREY\r\nFullName: ERUEL ANDREY ESCAREZ\r\nGender: Male\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: MAPILI\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775446	2025-03-26	08:36:16.3422617	<Undetected>	Update	BasicInformationId: 3880\r\nBirthDate: December 31, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4365\r\nExtensionName: \r\nFirstName: SAM BOY\r\nFullName: SAM BOY MAPILI ESCAREZ\r\nGender: Male\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: MAPILI\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3880\r\nBirthDate: December 31, 2006\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4365\r\nExtensionName: \r\nFirstName: SAM BOY\r\nFullName: SAM BOY ESCAREZ\r\nGender: Male\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: MAPILI\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775447	2025-03-26	08:36:16.3462679	<Undetected>	Update	BasicInformationId: 3880\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4366\r\nExtensionName: \r\nFirstName: ALDRIN\r\nFullName: ALDRIN RUSTIA ESCAREZ\r\nGender: Male\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: RUSTIA\r\nOccupation: ADMINISTRATIVE AIDE\r\nRelationship: Husband\r\n	BasicInformationId: 3880\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: \r\nEmployeeRelativeId: 4366\r\nExtensionName: \r\nFirstName: ALDRIN\r\nFullName: ALDRIN ESCAREZ\r\nGender: Male\r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: RUSTIA\r\nOccupation: ADMINISTRATIVE AIDE\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
775448	2025-03-26	08:37:43.3744961	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANDRES, ISLA VERDE\r\nBasicInformationId: 3880\r\nBirthDate: December 25, 1973\r\nBirthPlace: SAN ANDRES, ISLA VERDE, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: evelyn.escarez001@deped.gov.ph\r\nExtensionName: \r\nFirstName: EVELYN\r\nFullName: EVELYN M. ESCAREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.3\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: MAPILI\r\nMobileNumber: 09922120805\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANDRES, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 52\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN ANDRES, ISLA VERDE\r\nBasicInformationId: 3880\r\nBirthDate: December 25, 1973\r\nBirthPlace: SAN ANDRES, ISLA VERDE, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: evelyn.escarez001@deped.gov.ph\r\nExtensionName: \r\nFirstName: EVELYN\r\nFullName: EVELYN M. ESCAREZ\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: 4418570\r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: DEPED ID\r\nGSIS: 02002928158\r\nHDMF: 1490-0087-1566\r\nHeight: 1.3\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ESCAREZ\r\nMaidenName: \r\nMiddleName: MAPILI\r\nMobileNumber: 09922120805\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN ANDRES, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000021979-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 913-669-573-0000\r\nWeight: 52\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775454	2025-03-26	08:39:31.6293111	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3880\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ANDRES, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09971827343\r\nExtensionName: \r\nFirstName: MIRIAM\r\nLastName: FUENTES\r\nMiddleName: R\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775455	2025-03-26	08:39:31.6383437	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3880\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ANDRES, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09473680961\r\nExtensionName: \r\nFirstName: DIOMEDES\r\nLastName: BRITON\r\nMiddleName: B\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775456	2025-03-26	08:39:31.6435654	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3880\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN ANDRES, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09309657720\r\nExtensionName: \r\nFirstName: JUANITO\r\nLastName: MAGPANTAY\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775457	2025-03-26	08:40:52.2555764	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3880\r\nDateOfExamination: May 28, 1995\r\nDateOfRelease: \r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: May 28, 1995\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0206858\r\nPlaceOfExamination: BATANGAS NATIONAL HIGH SCHOOL\r\nRating: 73.8\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
775464	2025-03-26	08:43:16.8172172	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION LAUNCHING OF THE DEVELOPED CONTEXTUALIZED SCIENCE LABORATORY SAFETY MANAGEMENT MANUAK FOR TECHNICAL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
775465	2025-03-26	08:45:18.6589506	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3880\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16338\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775466	2025-03-26	08:45:18.6649595	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3880\r\nEmployeeTrainingId: 0\r\nFromDate: May 20, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: May 24, 2024\r\nTrainingId: 16325\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775467	2025-03-26	08:45:18.6689968	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3880\r\nEmployeeTrainingId: 0\r\nFromDate: May 08, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: May 08, 2024\r\nTrainingId: 16784\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775468	2025-03-26	08:45:18.6740050	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3880\r\nEmployeeTrainingId: 0\r\nFromDate: April 26, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DISTRICT\r\nStatus: \r\nToDate: April 26, 2024\r\nTrainingId: 16506\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775469	2025-03-26	08:45:18.6790125	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3880\r\nEmployeeTrainingId: 0\r\nFromDate: March 18, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: March 22, 2024\r\nTrainingId: 16326\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775474	2025-03-26	08:45:44.2742663	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3880\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
775475	2025-03-26	08:45:44.2853141	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3880\r\nSkillId: 0\r\nSkillName: GARDENING\r\n	admin	Skills	1
775452	2025-03-26	08:39:22.2080523	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3923\r\nCompanyInstitution: SMART INTERNATIONAL SCHOOL\r\nExperienceId: 0\r\nFromDate: October 16, 2022\r\nIsGovernmentService: False\r\nMonthlySalary: 20,000.00\r\nPositionHeld: TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: October 16, 2023\r\n	admin	Experiences	1
775453	2025-03-26	08:39:22.2130873	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3923\r\nCompanyInstitution: HOME OF KNOWLEDGE LEARNING AND TUTORIAL CENTER\r\nExperienceId: 0\r\nFromDate: June 17, 2019\r\nIsGovernmentService: False\r\nMonthlySalary: 6,000.00\r\nPositionHeld: TEACHER-TUROR\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Contractual\r\nToDate: March 13, 2020\r\n	admin	Experiences	1
775458	2025-03-26	08:40:58.3718466	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3923\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
775459	2025-03-26	08:40:58.3758605	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3923\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
775460	2025-03-26	08:40:58.3869202	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3923\r\nSkillId: 0\r\nSkillName: READING\r\n	admin	Skills	1
775461	2025-03-26	08:40:58.3909342	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3923\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
775462	2025-03-26	08:40:58.3979925	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3923\r\nOrganizationId: 0\r\nOrganizationName: PHILIPPINE ASSOCIATION FOR TEACHERS EDUCATORS (PAFTE)\r\n	admin	Organizations	1
775463	2025-03-26	08:40:58.4030094	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3923\r\nOrganizationId: 0\r\nOrganizationName: AKO OFW ORGANIZATION (KUWAIT)\r\n	admin	Organizations	1
775470	2025-03-26	08:45:36.1284139	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3923\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO, ISLA VERDE\r\nCompanyName: \r\nContactNumber: 09217787383\r\nExtensionName: \r\nFirstName: IVY\r\nLastName: FRONDA\r\nMiddleName: E.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775471	2025-03-26	08:45:36.1404072	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3923\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO, ISLA VERDE\r\nCompanyName: \r\nContactNumber: 0936917381\r\nExtensionName: \r\nFirstName: LORNA\r\nLastName: FACTOR\r\nMiddleName: D.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775472	2025-03-26	08:45:36.1639909	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3923\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO, ISLA VERDE\r\nCompanyName: \r\nContactNumber: 09605572161\r\nExtensionName: \r\nFirstName: JANICE\r\nLastName: MENDOZA\r\nMiddleName: D.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775473	2025-03-26	08:45:36.1715365	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN AGAPITO\r\nBasicInformationId: 3923\r\nBirthDate: August 11, 1997\r\nBirthPlace: SAN AGAPITO, ISLA VERDE, BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: norilyn.calaluan@deped.gov.ph\r\nExtensionName: \r\nFirstName: NORILYN\r\nFullName: NORILYN D. CALALUAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CALALUAN\r\nMaidenName: \r\nMiddleName: DELGADO\r\nMobileNumber: 09482319232\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN AGAPITO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SIRIIN II\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: SIRIIN II\r\nTIN: \r\nWeight: 53\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN AGAPITO\r\nBasicInformationId: 3923\r\nBirthDate: August 11, 1997\r\nBirthPlace: SAN AGAPITO, ISLA VERDE, BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: norilyn.calaluan@deped.gov.ph\r\nExtensionName: \r\nFirstName: NORILYN\r\nFullName: NORILYN D. CALALUAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 08, 2020\r\nGovernmentIdNumber: 1836162\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: \r\nHDMF: 1212-7659-2919\r\nHeight: 1.55\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CALALUAN\r\nMaidenName: \r\nMiddleName: DELGADO\r\nMobileNumber: 09482319232\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN AGAPITO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: SIRIIN II\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-250231119-2\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 34-9544345-7\r\nStreetName: SIRIIN II\r\nTIN: 768-503-664-0000\r\nWeight: 53\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775476	2025-03-26	08:51:27.3264243	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN AGUSTIN KANLURAN, ISLA VERDE\r\nBasicInformationId: 0\r\nBirthDate: January 18, 1975\r\nBirthPlace: NAUJAN ORIENTAL MINDORO\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jolly.luces001@deped.gov.ph\r\nExtensionName: \r\nFirstName: JOLLY\r\nFullName: JOLLY T. LUCES\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: LUCES\r\nMaidenName: \r\nMiddleName: TAMARES\r\nMobileNumber: 09641907678\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN AGUSTIN KANLURAN, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775477	2025-03-26	08:51:27.3341035	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3924\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 9071420054\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: RODERICK\r\nFullName: RODERICK GUTIERREZ LUCES\r\nGender: Male\r\nLastName: LUCES\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: BARANGAY COUNCILOR\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
775478	2025-03-26	08:51:27.3341035	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3924\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JUANITO\r\nFullName: JUANITO JIONSON TAMARES\r\nGender: Male\r\nLastName: TAMARES\r\nMaidenName: \r\nMiddleName: JIONSON\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
775479	2025-03-26	08:51:27.3341035	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3924\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MERLY\r\nFullName: MERLY GONZALES MACALALAD\r\nGender: Female\r\nLastName: MACALALAD\r\nMaidenName: \r\nMiddleName: GONZALES\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
775480	2025-03-26	08:51:27.3341035	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3924\r\nBirthDate: December 11, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JEANNE ERICHA\r\nFullName: JEANNE ERICHA T. LUCES\r\nGender: Female\r\nLastName: LUCES\r\nMaidenName: \r\nMiddleName: T.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775481	2025-03-26	08:51:27.3341035	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3924\r\nBirthDate: August 11, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: SHANNA JANE\r\nFullName: SHANNA JANE T. LUCES\r\nGender: Female\r\nLastName: LUCES\r\nMaidenName: \r\nMiddleName: T.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775482	2025-03-26	08:51:27.3341035	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3924\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
775483	2025-03-26	08:54:24.6417287	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: MASTER OF ARTS IN EDUCATION - NON THESIS\r\nLevel: Master's\r\n	admin	Courses	1
775484	2025-03-26	08:55:00.2645830	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: THIRD HONORABLE MENTION\r\nBasicInformationId: 3924\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1981\r\nDateTo: 1987\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAN ISIDRO ELEMENTARY SCHOOL\r\nYearGraduated: 1987\r\n	admin	EducationalBackgrounds	1
775485	2025-03-26	08:55:00.2695913	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3924\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1987\r\nDateTo: 1991\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGUSTIN NATIONAL HIGH SCHOOL\r\nYearGraduated: 1991\r\n	admin	EducationalBackgrounds	1
775486	2025-03-26	08:55:00.2788631	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3924\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1991\r\nDateTo: 1995\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: DIVINE WORLD COLLEGE OF SAN JOSE OCCIDENTAL\r\nYearGraduated: 1995\r\n	admin	EducationalBackgrounds	1
775487	2025-03-26	08:55:00.2899225	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3924\r\nCourse: \r\nCourseId: 1402\r\nCourseOrMajor: \r\nDateFrom: 1997\r\nDateTo: 2000\r\nEducationalAttainment: 45 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
775488	2025-03-26	08:55:00.3114366	<Undetected>	Update	BasicInformationId: 3924\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 9071420054\r\nEmployeeRelativeId: 4367\r\nExtensionName: \r\nFirstName: RODERICK\r\nFullName: RODERICK GUTIERREZ LUCES\r\nGender: Male\r\nLastName: LUCES\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: BARANGAY COUNCILOR\r\nRelationship: Husband\r\n	BasicInformationId: 3924\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 9071420054\r\nEmployeeRelativeId: 4367\r\nExtensionName: \r\nFirstName: RODERICK\r\nFullName: RODERICK LUCES\r\nGender: Male\r\nLastName: LUCES\r\nMaidenName: \r\nMiddleName: GUTIERREZ\r\nOccupation: BARANGAY COUNCILOR\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
775489	2025-03-26	08:55:00.3221498	<Undetected>	Update	BasicInformationId: 3924\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4368\r\nExtensionName: \r\nFirstName: JUANITO\r\nFullName: JUANITO JIONSON TAMARES\r\nGender: Male\r\nLastName: TAMARES\r\nMaidenName: \r\nMiddleName: JIONSON\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3924\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4368\r\nExtensionName: \r\nFirstName: JUANITO\r\nFullName: JUANITO TAMARES\r\nGender: Male\r\nLastName: TAMARES\r\nMaidenName: \r\nMiddleName: JIONSON\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
775809	2025-03-26	14:32:19.0578627	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3961\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGUSTIN KANLURAN, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09641907678\r\nExtensionName: \r\nFirstName: JOLLY\r\nLastName: LUCES\r\nMiddleName: T.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775490	2025-03-26	08:55:00.3301507	<Undetected>	Update	BasicInformationId: 3924\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4369\r\nExtensionName: \r\nFirstName: MERLY\r\nFullName: MERLY GONZALES MACALALAD\r\nGender: Female\r\nLastName: MACALALAD\r\nMaidenName: \r\nMiddleName: GONZALES\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3924\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4369\r\nExtensionName: \r\nFirstName: MERLY\r\nFullName: MERLY MACALALAD\r\nGender: Female\r\nLastName: MACALALAD\r\nMaidenName: \r\nMiddleName: GONZALES\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
775491	2025-03-26	08:55:00.3351518	<Undetected>	Update	BasicInformationId: 3924\r\nBirthDate: December 11, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4370\r\nExtensionName: \r\nFirstName: JEANNE ERICHA\r\nFullName: JEANNE ERICHA T. LUCES\r\nGender: Female\r\nLastName: LUCES\r\nMaidenName: \r\nMiddleName: T.\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3924\r\nBirthDate: December 11, 1997\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4370\r\nExtensionName: \r\nFirstName: JEANNE ERICHA\r\nFullName: JEANNE ERICHA LUCES\r\nGender: Female\r\nLastName: LUCES\r\nMaidenName: \r\nMiddleName: T.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775492	2025-03-26	08:55:00.3401525	<Undetected>	Update	BasicInformationId: 3924\r\nBirthDate: August 11, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4371\r\nExtensionName: \r\nFirstName: SHANNA JANE\r\nFullName: SHANNA JANE T. LUCES\r\nGender: Female\r\nLastName: LUCES\r\nMaidenName: \r\nMiddleName: T.\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3924\r\nBirthDate: August 11, 2003\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4371\r\nExtensionName: \r\nFirstName: SHANNA JANE\r\nFullName: SHANNA JANE LUCES\r\nGender: Female\r\nLastName: LUCES\r\nMaidenName: \r\nMiddleName: T.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775493	2025-03-26	08:55:00.3441526	<Undetected>	Update	BasicInformationId: 3924\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3721\r\n	BasicInformationId: 3924\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3721\r\n	admin	Questionnaires	1
775494	2025-03-26	08:56:24.5683529	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3924\r\nDateOfExamination: May 26, 1995\r\nDateOfRelease: January 18, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: May 26, 1995\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0289180\r\nPlaceOfExamination: MAMBURAO OCCIDENTAL MINDORO\r\nRating: 75.09\r\nTitle: PROFESSIONAL BOARD EXAMS FOR TEACHERS (PBET)\r\n	admin	Eligibilities	1
775495	2025-03-26	09:02:40.2702900	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3880\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,004.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-7\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
775496	2025-03-26	09:02:40.2743564	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3880\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 20, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 30,924.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-7\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
775497	2025-03-26	09:02:40.2803657	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3880\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 30,622.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-6\r\nStatus: Permanent\r\nToDate: February 19, 2024\r\n	admin	Experiences	1
775498	2025-03-26	09:02:40.2863848	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3880\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 30,622.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-6\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
775499	2025-03-26	09:02:40.2925327	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3880\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 27,509.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-6\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
775500	2025-03-26	09:02:40.2977212	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3880\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 20, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 26,915.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
775501	2025-03-26	09:02:40.3027285	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3880\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 25,358.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: February 19, 2021\r\n	admin	Experiences	1
775502	2025-03-26	09:02:40.3067368	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3880\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 23,801.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-5\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
775503	2025-03-26	09:02:40.3117444	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3880\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 23,801.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
775504	2025-03-26	09:02:40.3167609	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3880\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 22,113.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
775505	2025-03-26	09:02:40.3208668	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3880\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 21,315.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
775506	2025-03-26	09:02:40.3258748	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3880\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 20, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 20,545.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
775507	2025-03-26	09:02:40.3308842	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3880\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 20,341.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: February 19, 2015\r\n	admin	Experiences	1
775508	2025-03-26	09:02:40.3348902	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3880\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 20, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 18,568.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
775509	2025-03-26	09:02:40.3398997	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3880\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 16,995.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: February 19, 2012\r\n	admin	Experiences	1
775510	2025-03-26	09:02:40.3449159	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3880\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 15,422.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
775511	2025-03-26	09:02:40.3499235	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3880\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 21, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 13,066.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
775512	2025-03-26	09:02:40.3539377	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3880\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,748.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
775513	2025-03-26	09:02:40.3589461	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3880\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2003\r\nIsGovernmentService: True\r\nMonthlySalary: 10,978.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 10-3\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
775514	2025-03-26	09:13:17.7351781	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: #5\r\nAddress2: \r\nBarangay: BARANGAY 2\r\nBasicInformationId: 0\r\nBirthDate: February 12, 1974\r\nBirthPlace: STO. DOMINGO, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rosalie.baja@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROSALIE\r\nFullName: ROSALIE G. BAJA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BAJA\r\nMaidenName: \r\nMiddleName: GABIA\r\nMobileNumber: 09950829219\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: P. PRIETO ST.\r\nTIN: \r\nWeight: 68\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775515	2025-03-26	09:13:18.0360079	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3925\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
775516	2025-03-26	09:14:12.8409851	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: SAN AGAPITO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 03, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 56,390.00\r\nPositionHeld: PRINCIPAL I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 17-2\r\nStatus: Permanent\r\nToDate: March 26, 2025\r\n	admin	Experiences	1
775517	2025-03-26	09:14:12.8449979	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 47,727.00\r\nPositionHeld: HEAD TEACHER IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 17-2\r\nStatus: Permanent\r\nToDate: January 02, 2025\r\n	admin	Experiences	1
775518	2025-03-26	09:14:12.8502104	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 45,619.00\r\nPositionHeld: HEAD TEACHER IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 17-2\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
775519	2025-03-26	09:14:12.8543959	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 43,488.00\r\nPositionHeld: HEAD TEACHER IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 17-2\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
775520	2025-03-26	09:14:12.8596322	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: October 28, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 41,966.00\r\nPositionHeld: HEAD TEACHER IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 17-2\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
775521	2025-03-26	09:14:12.8648194	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 41,508.00\r\nPositionHeld: HEAD TEACHER IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 17-2\r\nStatus: Permanent\r\nToDate: October 27, 2022\r\n	admin	Experiences	1
775522	2025-03-26	09:14:12.8691014	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 39,986.00\r\nPositionHeld: HEAD TEACHER IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 17-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
775523	2025-03-26	09:14:12.8742427	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 38,464.00\r\nPositionHeld: HEAD TEACHER IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 17-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
775524	2025-03-26	09:14:12.8793138	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: October 28, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 36,942.00\r\nPositionHeld: HEAD TEACHER IV\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 17-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
775547	2025-03-26	10:22:14.6754962	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SANTA RITA\r\nBasicInformationId: 0\r\nBirthDate: September 30, 1999\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: alaizamacatangay24@gmail.com\r\nExtensionName: \r\nFirstName: ALAIZA\r\nFullName: ALAIZA E. MACATANGAY\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.71\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: EBORA\r\nMobileNumber: 09358055148\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: MALIGAYA ROAD\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775548	2025-03-26	10:22:14.9442156	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3958\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
775550	2025-03-26	10:23:17.1921724	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: #5\r\nAddress2: \r\nBarangay: BARANGAY 2\r\nBasicInformationId: 3925\r\nBirthDate: February 12, 1974\r\nBirthPlace: STO. DOMINGO, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rosalie.baja@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROSALIE\r\nFullName: ROSALIE G. BAJA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BAJA\r\nMaidenName: \r\nMiddleName: GABIA\r\nMobileNumber: 09950829219\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: P. PRIETO ST.\r\nTIN: \r\nWeight: 68\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: #5\r\nAddress2: \r\nBarangay: BARANGAY 2\r\nBasicInformationId: 3925\r\nBirthDate: February 12, 1974\r\nBirthPlace: STO. DOMINGO, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rosalie.baja@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROSALIE\r\nFullName: ROSALIE G. BAJA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BAJA\r\nMaidenName: \r\nMiddleName: GABIA\r\nMobileNumber: 09950829219\r\nNationality: Filipino\r\nPermanentAddress1: #5\r\nPermanentAddress2: \r\nPermanentBarangay: BARANGAY 2\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: P. PRIETO ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: P. PRIETO ST.\r\nTIN: \r\nWeight: 68\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775551	2025-03-26	10:23:36.9032699	<Undetected>	Update	BasicInformationId: 3958\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3755\r\n	BasicInformationId: 3958\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3755\r\n	admin	Questionnaires	1
775552	2025-03-26	10:23:47.2473559	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SANTA RITA\r\nBasicInformationId: 3958\r\nBirthDate: September 30, 1999\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: alaizamacatangay24@gmail.com\r\nExtensionName: \r\nFirstName: ALAIZA\r\nFullName: ALAIZA E. MACATANGAY\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.71\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: EBORA\r\nMobileNumber: 09358055148\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: Philippines\r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: MALIGAYA ROAD\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SANTA RITA\r\nBasicInformationId: 3958\r\nBirthDate: September 30, 1999\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: alaizamacatangay24@gmail.com\r\nExtensionName: \r\nFirstName: ALAIZA\r\nFullName: ALAIZA E. MACATANGAY\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.71\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: EBORA\r\nMobileNumber: 09358055148\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SANTA RITA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: MALIGAYA ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: MALIGAYA ROAD\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775553	2025-03-26	10:25:48.1426089	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIPONPON ISL A VERDE\r\nBasicInformationId: 0\r\nBirthDate: February 18, 1975\r\nBirthPlace: LIPONPON, ISLA VERDE, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: arlyn.cueto001@deped.gov.ph\r\nExtensionName: \r\nFirstName: ARLYN\r\nFullName: ARLYN E. CUETO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.59\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: EDUBA\r\nMobileNumber: 09194459918\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIPONPON ISL A VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775554	2025-03-26	10:25:48.1542034	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3959\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
775565	2025-03-26	10:29:06.2183211	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIPONPON ISLA VERDE\r\nBasicInformationId: 3960\r\nBirthDate: January 20, 1965\r\nBirthPlace: LIPPONPON ISLA VERDE, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: \r\nExtensionName: \r\nFirstName: SEBASTIAN\r\nFullName: SEBASTIAN C. ANONUEVO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: CASTILLO\r\nMobileNumber: 093929794\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIPONPON ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 70\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIPONPON ISLA VERDE\r\nBasicInformationId: 3960\r\nBirthDate: January 20, 1965\r\nBirthPlace: LIPPONPON ISLA VERDE, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: N/A\r\nExtensionName: \r\nFirstName: SEBASTIAN\r\nFullName: SEBASTIAN C. ANONUEVO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: CASTILLO\r\nMobileNumber: 0\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIPONPON ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 70\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775555	2025-03-26	10:27:41.1278874	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIPONPON ISLA VERDE\r\nBasicInformationId: 0\r\nBirthDate: January 20, 1965\r\nBirthPlace: LIPPONPON ISLA VERDE, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: \r\nExtensionName: \r\nFirstName: SEBASTIAN\r\nFullName: SEBASTIAN C. ANONUEVO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: CASTILLO\r\nMobileNumber: 093929794\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIPONPON ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 70\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775556	2025-03-26	10:27:41.1392410	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3960\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
775557	2025-03-26	10:28:34.3191131	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 34,847.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-3\r\nStatus: Permanent\r\nToDate: December 27, 2019\r\n	admin	Experiences	1
775558	2025-03-26	10:28:34.3301821	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 03, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 32,926.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-3\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
775559	2025-03-26	10:28:34.3351905	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 32,535.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-3\r\nStatus: Permanent\r\nToDate: July 02, 2018\r\n	admin	Experiences	1
775560	2025-03-26	10:28:34.3401980	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 30,751.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-3\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
775561	2025-03-26	10:28:34.3452538	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 29,066.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-3\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
775562	2025-03-26	10:28:34.3492600	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 03, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 27,473.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-3\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
775563	2025-03-26	10:28:34.3542674	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 02, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 27,174.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-2\r\nStatus: Permanent\r\nToDate: July 07, 2015\r\n	admin	Experiences	1
775564	2025-03-26	10:28:34.3592833	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 26,878.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-1\r\nStatus: Permanent\r\nToDate: July 06, 2012\r\n	admin	Experiences	1
775567	2025-03-26	10:31:29.9398854	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: VERDE ISLAND\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 24,423.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-0\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
775568	2025-03-26	10:31:29.9489775	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: VERDE ISLAND\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 21,969.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-0\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
775569	2025-03-26	10:31:29.9529840	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: VERDE ISLAND\r\nExperienceId: 0\r\nFromDate: June 06, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 19,514.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 16-0\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
775570	2025-03-26	10:31:29.9579918	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: VERDE ISLAND\r\nExperienceId: 0\r\nFromDate: July 05, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 16,424.00\r\nPositionHeld: HEAD TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: July 07, 2009\r\n	admin	Experiences	1
775588	2025-03-26	10:41:35.1414705	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: NEW DISTRICT\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 13,850.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
775589	2025-03-26	10:41:35.1454956	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: NEW DISTRICT\r\nExperienceId: 0\r\nFromDate: February 08, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,591.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
775590	2025-03-26	10:41:35.1504956	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: NEW DISTRICT\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 12,284.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-0\r\nStatus: Permanent\r\nToDate: February 07, 2008\r\n	admin	Experiences	1
775591	2025-03-26	10:41:35.1549887	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: NEW DISTRICT\r\nExperienceId: 0\r\nFromDate: February 07, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 11,167.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-0\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
775592	2025-03-26	10:41:35.1634664	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: NEW DISTRICT\r\nExperienceId: 0\r\nFromDate: January 09, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 10,535.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-0\r\nStatus: Permanent\r\nToDate: February 06, 2005\r\n	admin	Experiences	1
775593	2025-03-26	10:41:35.1676548	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: NEW DISTRICT\r\nExperienceId: 0\r\nFromDate: July 25, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-0\r\nStatus: Permanent\r\nToDate: January 08, 2002\r\n	admin	Experiences	1
775594	2025-03-26	10:41:35.1728896	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: NEW DISTRICT\r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-0\r\nStatus: Permanent\r\nToDate: July 24, 2001\r\n	admin	Experiences	1
775600	2025-03-26	10:44:21.6027518	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: NEW DISTRICT\r\nExperienceId: 0\r\nFromDate: June 25, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-0\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
775572	2025-03-26	10:34:11.0571103	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: 2ND HONORS\r\nBasicInformationId: 3925\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1981\r\nDateTo: 1987\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: STO. DOMINGO ELEMENTARY SCHOOL\r\nYearGraduated: 1987\r\n	admin	EducationalBackgrounds	1
775573	2025-03-26	10:34:11.0621100	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: ACHIEVER\r\nBasicInformationId: 3925\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1987\r\nDateTo: 1991\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 1991\r\n	admin	EducationalBackgrounds	1
775574	2025-03-26	10:34:11.0661094	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3925\r\nCourse: \r\nCourseId: 1403\r\nCourseOrMajor: \r\nDateFrom: 2007\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Vocational Graduate\r\nMajor: \r\nSchoolorUniversity: TESDA BATANGAS\r\nYearGraduated: 2007\r\n	admin	EducationalBackgrounds	1
775575	2025-03-26	10:34:11.0761093	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: DEAN'S LISTER\r\nBasicInformationId: 3925\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1991\r\nDateTo: 1995\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: ADVENTIST UNIVERSITY OF THE PHILIPPINES\r\nYearGraduated: 1995\r\n	admin	EducationalBackgrounds	1
775576	2025-03-26	10:34:11.0851097	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3925\r\nCourse: \r\nCourseId: 1284\r\nCourseOrMajor: \r\nDateFrom: 2004\r\nDateTo: 2015\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: 2015\r\n	admin	EducationalBackgrounds	1
775577	2025-03-26	10:34:11.0901100	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3925\r\nBirthDate: October 19, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALJO\r\nFullName: ALJO GABIA BAJA\r\nGender: Male\r\nLastName: BAJA\r\nMaidenName: \r\nMiddleName: GABIA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775578	2025-03-26	10:34:11.0963970	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3925\r\nBirthDate: September 16, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALREI\r\nFullName: ALREI GABIA BAJA\r\nGender: Male\r\nLastName: BAJA\r\nMaidenName: \r\nMiddleName: GABIA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775579	2025-03-26	10:34:11.1040462	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3925\r\nBirthDate: December 06, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALFRED\r\nFullName: ALFRED GABIA BAJA\r\nGender: Male\r\nLastName: BAJA\r\nMaidenName: \r\nMiddleName: GABIA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775580	2025-03-26	10:35:36.9582686	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: #5\r\nAddress2: \r\nBarangay: BARANGAY 2\r\nBasicInformationId: 3925\r\nBirthDate: February 12, 1974\r\nBirthPlace: STO. DOMINGO, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rosalie.baja@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROSALIE\r\nFullName: ROSALIE G. BAJA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BAJA\r\nMaidenName: \r\nMiddleName: GABIA\r\nMobileNumber: 09950829219\r\nNationality: Filipino\r\nPermanentAddress1: #5\r\nPermanentAddress2: \r\nPermanentBarangay: BARANGAY 2\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: P. PRIETO ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: P. PRIETO ST.\r\nTIN: \r\nWeight: 68\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: #5\r\nAddress2: \r\nBarangay: BARANGAY 2\r\nBasicInformationId: 3925\r\nBirthDate: February 12, 1974\r\nBirthPlace: STO. DOMINGO, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: rosalie.baja@deped.gov.ph\r\nExtensionName: \r\nFirstName: ROSALIE\r\nFullName: ROSALIE G. BAJA\r\nGender: Female\r\nGovernmentIdIssuedDate: December 28, 2023\r\nGovernmentIdNumber: 00621110\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC LICENSE\r\nGSIS: 02002929343\r\nHDMF: 1490-0091-5957\r\nHeight: 1.58\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BAJA\r\nMaidenName: \r\nMiddleName: GABIA\r\nMobileNumber: 09950829219\r\nNationality: Filipino\r\nPermanentAddress1: #5\r\nPermanentAddress2: \r\nPermanentBarangay: BARANGAY 2\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: P. PRIETO ST.\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000045364-0\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: P. PRIETO ST.\r\nTIN: 912-277-339-0000\r\nWeight: 68\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775581	2025-03-26	10:35:36.9644123	<Undetected>	Update	BasicInformationId: 3925\r\nBirthDate: October 19, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4372\r\nExtensionName: \r\nFirstName: ALJO\r\nFullName: ALJO GABIA BAJA\r\nGender: Male\r\nLastName: BAJA\r\nMaidenName: \r\nMiddleName: GABIA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3925\r\nBirthDate: October 19, 2001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4372\r\nExtensionName: \r\nFirstName: ALJO\r\nFullName: ALJO BAJA\r\nGender: Male\r\nLastName: BAJA\r\nMaidenName: \r\nMiddleName: GABIA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775582	2025-03-26	10:35:36.9781003	<Undetected>	Update	BasicInformationId: 3925\r\nBirthDate: September 16, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4373\r\nExtensionName: \r\nFirstName: ALREI\r\nFullName: ALREI GABIA BAJA\r\nGender: Male\r\nLastName: BAJA\r\nMaidenName: \r\nMiddleName: GABIA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3925\r\nBirthDate: September 16, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4373\r\nExtensionName: \r\nFirstName: ALREI\r\nFullName: ALREI BAJA\r\nGender: Male\r\nLastName: BAJA\r\nMaidenName: \r\nMiddleName: GABIA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775583	2025-03-26	10:35:36.9823336	<Undetected>	Update	BasicInformationId: 3925\r\nBirthDate: December 06, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4374\r\nExtensionName: \r\nFirstName: ALFRED\r\nFullName: ALFRED GABIA BAJA\r\nGender: Male\r\nLastName: BAJA\r\nMaidenName: \r\nMiddleName: GABIA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3925\r\nBirthDate: December 06, 2004\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4374\r\nExtensionName: \r\nFirstName: ALFRED\r\nFullName: ALFRED BAJA\r\nGender: Male\r\nLastName: BAJA\r\nMaidenName: \r\nMiddleName: GABIA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775584	2025-03-26	10:37:07.3644655	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3925\r\nCharacterReferenceId: 0\r\nCompanyAddress: STO. DOMINGOO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09171570651\r\nExtensionName: \r\nFirstName: LORNA\r\nLastName: ASI\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775585	2025-03-26	10:37:07.3684849	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3925\r\nCharacterReferenceId: 0\r\nCompanyAddress: GULOD ITAAS, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09178634734\r\nExtensionName: \r\nFirstName: CHARITY\r\nLastName: MAGADIA\r\nMiddleName: S\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775586	2025-03-26	10:37:07.3749205	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3925\r\nCharacterReferenceId: 0\r\nCompanyAddress: SORO-SORO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09055132951\r\nExtensionName: \r\nFirstName: NIEVES\r\nLastName: MONTALBO\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775587	2025-03-26	10:38:29.2401702	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3925\r\nDateOfExamination: August 08, 1999\r\nDateOfRelease: February 12, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 08, 1999\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0621110\r\nPlaceOfExamination: TONDO MANILA\r\nRating: 79.6\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
775595	2025-03-26	10:42:10.3297297	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3925\r\nEmployeeTrainingId: 0\r\nFromDate: December 02, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OFFICE, BATANGAS CITY\r\nStatus: \r\nToDate: December 04, 2024\r\nTrainingId: 16734\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775596	2025-03-26	10:42:10.3347380	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3925\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 27, 2024\r\nTrainingId: 16623\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775597	2025-03-26	10:42:10.3428579	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3925\r\nEmployeeTrainingId: 0\r\nFromDate: November 04, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OFFICE, BATANGAS CITY\r\nStatus: \r\nToDate: November 08, 2024\r\nTrainingId: 16314\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775598	2025-03-26	10:42:10.3478753	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3925\r\nEmployeeTrainingId: 0\r\nFromDate: October 10, 2024\r\nHours: 16\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OFFICE, BATANGAS CITY\r\nStatus: \r\nToDate: October 11, 2024\r\nTrainingId: 16321\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775599	2025-03-26	10:42:10.3528917	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3925\r\nEmployeeTrainingId: 0\r\nFromDate: March 18, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OFFICE, BATANGAS CITY\r\nStatus: \r\nToDate: March 22, 2024\r\nTrainingId: 16326\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775604	2025-03-26	10:44:55.1638596	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3925\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
775605	2025-03-26	10:44:55.1678593	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3925\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
775606	2025-03-26	10:44:55.1788596	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3925\r\nSkillId: 0\r\nSkillName: PUBLIC SPEAKING\r\n	admin	Skills	1
775607	2025-03-26	10:44:55.1828593	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3925\r\nSkillId: 0\r\nSkillName: NEWS WRITING\r\n	admin	Skills	1
775608	2025-03-26	10:44:55.1944392	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3925\r\nRecognitionId: 0\r\nRecognitionName: 3RD PLACE SCHOOL LEADER SINGING CONTEST\r\n	admin	Recognitions	1
775609	2025-03-26	10:44:55.1986241	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3925\r\nRecognitionId: 0\r\nRecognitionName: BSP GOLD SERVICE AWARDEE\r\n	admin	Recognitions	1
775610	2025-03-26	10:44:55.2100083	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3925\r\nRecognitionId: 0\r\nRecognitionName: COACH OF NATIONAL CHAMPION IN NEWS WRITING\r\n	admin	Recognitions	1
775611	2025-03-26	10:44:55.2246029	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3925\r\nRecognitionId: 0\r\nRecognitionName: TOP SCORER - PROFICIENCY TEST\r\n	admin	Recognitions	1
775612	2025-03-26	10:44:55.2382626	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3925\r\nOrganizationId: 0\r\nOrganizationName: MANILA TEACHERS MUTUAL AID SYSTEM\r\n	admin	Organizations	1
775601	2025-03-26	10:44:21.6077732	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: NEW DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-0\r\nStatus: Permanent\r\nToDate: June 24, 2001\r\n	admin	Experiences	1
775602	2025-03-26	10:44:21.6149932	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: NEW DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-0\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
775603	2025-03-26	10:44:21.6200082	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: NEW DISTRICT\r\nExperienceId: 0\r\nFromDate: February 01, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-0\r\nStatus: Permanent\r\nToDate: December 31, 1998\r\n	admin	Experiences	1
775616	2025-03-26	10:54:54.1648261	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: NEW DISTRICT\r\nExperienceId: 0\r\nFromDate: January 05, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-0\r\nStatus: Permanent\r\nToDate: January 31, 1998\r\n	admin	Experiences	1
775617	2025-03-26	10:54:54.1709942	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: NEW DISTRICT\r\nExperienceId: 0\r\nFromDate: January 02, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-0\r\nStatus: Permanent\r\nToDate: January 04, 1998\r\n	admin	Experiences	1
775618	2025-03-26	10:54:54.1750073	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: NEW DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-0\r\nStatus: Permanent\r\nToDate: January 01, 1997\r\n	admin	Experiences	1
775619	2025-03-26	10:54:54.1800246	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: NEW DISTRICT\r\nExperienceId: 0\r\nFromDate: December 05, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-0\r\nStatus: Permanent\r\nToDate: December 31, 1997\r\n	admin	Experiences	1
775620	2025-03-26	10:54:54.1843827	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: NEW DISTRICT\r\nExperienceId: 0\r\nFromDate: January 11, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-0\r\nStatus: Permanent\r\nToDate: April 12, 1997\r\n	admin	Experiences	1
775621	2025-03-26	10:54:54.1894002	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: NEW DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 7,309.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-0\r\nStatus: Permanent\r\nToDate: December 31, 1997\r\n	admin	Experiences	1
775622	2025-03-26	10:54:54.1944118	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3924\r\nCompanyInstitution: NEW DISTRICT\r\nExperienceId: 0\r\nFromDate: October 09, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 6,013.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-0\r\nStatus: Permanent\r\nToDate: December 31, 1996\r\n	admin	Experiences	1
775651	2025-03-26	10:57:12.1826091	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DESIGNING LEADERS PROFESSIONAL DEVELOPMENT PROGRAMS FOR TEACHERS AND SCHOOL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
775652	2025-03-26	10:58:26.2916506	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL BASED WITH THE TRAINING OF TEACHERS (SBTT) ON MATATAG CURRICULUM\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
775654	2025-03-26	10:59:47.3335182	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 41ST PRINCIPAL TRAINING AND DEVELOPMENT PROGRAM CUM NATIONAL BOARD CONFERENCE (PTDP-NBC)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
775623	2025-03-26	10:57:10.2199752	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3925\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 03, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 40,203.00\r\nPositionHeld: HEAD TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 15-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
775624	2025-03-26	10:57:10.2260088	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3925\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 02, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 37,384.00\r\nPositionHeld: HEAD TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 14-2\r\nStatus: Permanent\r\nToDate: January 02, 2025\r\n	admin	Experiences	1
775625	2025-03-26	10:57:10.2300153	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3925\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 33,843.00\r\nPositionHeld: HEAD TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 14-1\r\nStatus: Permanent\r\nToDate: January 01, 2024\r\n	admin	Experiences	1
775626	2025-03-26	10:57:10.2360745	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3925\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 32,321.00\r\nPositionHeld: HEAD TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 14-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
775627	2025-03-26	10:57:10.2400805	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3925\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 30,799.00\r\nPositionHeld: HEAD TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 14-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
775628	2025-03-26	10:57:10.2450880	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3925\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: November 03, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 29,277.00\r\nPositionHeld: HEAD TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 14-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
775629	2025-03-26	10:57:10.2501380	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3925\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 27,383.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: November 01, 2020\r\n	admin	Experiences	1
775630	2025-03-26	10:57:10.2551456	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3925\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 25,861.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
775631	2025-03-26	10:57:10.2591513	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3925\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 24,799.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
775632	2025-03-26	10:57:10.2641686	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3925\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 23,780.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-3\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
775633	2025-03-26	10:57:10.2691784	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3925\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: December 15, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 22,804.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
775634	2025-03-26	10:57:10.2741861	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3925\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 22,564.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 14, 2016\r\n	admin	Experiences	1
775635	2025-03-26	10:57:10.2781918	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3925\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: December 16, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 21,650.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
775636	2025-03-26	10:57:10.2832700	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3925\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 21,436.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-2\r\nStatus: Permanent\r\nToDate: December 15, 2013\r\n	admin	Experiences	1
775637	2025-03-26	10:57:10.2882777	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3925\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 19,658.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
775638	2025-03-26	10:57:10.2932961	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3925\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: December 15, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 17,880.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: May 31, 2011\r\n	admin	Experiences	1
775639	2025-03-26	10:57:10.2983330	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3925\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: October 05, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 17,880.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: December 14, 2010\r\n	admin	Experiences	1
775640	2025-03-26	10:57:10.3033860	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3925\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: September 05, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 17,880.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-1\r\nStatus: Permanent\r\nToDate: October 04, 2010\r\n	admin	Experiences	1
775641	2025-03-26	10:57:10.3073919	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3925\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 16,995.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: September 04, 2010\r\n	admin	Experiences	1
775642	2025-03-26	10:57:10.3123998	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3925\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 115,422.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
775643	2025-03-26	10:57:10.3174169	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3925\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 02, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 13,006.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
775644	2025-03-26	10:57:10.3224322	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3925\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,753.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: February 01, 2009\r\n	admin	Experiences	1
775645	2025-03-26	10:57:10.3264382	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3925\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 11,589.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
775646	2025-03-26	10:57:10.3314476	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3925\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: February 01, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 10,535.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
775647	2025-03-26	10:57:10.3364554	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3925\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: March 01, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 10,188.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 31, 2006\r\n	admin	Experiences	1
775648	2025-03-26	10:57:10.3414630	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3925\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: February 28, 2005\r\n	admin	Experiences	1
775649	2025-03-26	10:57:10.3454690	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3925\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: August 09, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
775650	2025-03-26	10:57:10.3514926	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3925\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 05, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Substitute\r\nToDate: July 17, 2000\r\n	admin	Experiences	1
775653	2025-03-26	10:58:59.1984916	<Undetected>	Update	BasicInformationId: 3925\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 14117\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 115,422.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	BasicInformationId: 3925\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 14117\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 15,422.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
775661	2025-03-26	11:02:30.3212720	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3960\r\nBirthDate: August 08, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JOHN CYRILE\r\nFullName: JOHN CYRILE DE CASTRO ANONUEVO\r\nGender: Male\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775662	2025-03-26	11:02:30.3252801	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3960\r\nBirthDate: February 16, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: KENNETH\r\nFullName: KENNETH DE CASTRO ANONUEVO\r\nGender: Male\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775663	2025-03-26	11:02:30.3365998	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3960\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09162622738\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FRANCISCA\r\nFullName: FRANCISCA DE CASTRO\r\nGender: Female\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: TEACHER\r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
775668	2025-03-26	11:03:24.8157928	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3960\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1977\r\nDateTo: 1980\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: LIPONPON ELEMENTARY SCHOOL\r\nYearGraduated: 1980\r\n	admin	EducationalBackgrounds	1
775669	2025-03-26	11:03:24.8288816	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3960\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1980\r\nDateTo: 1983\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGUSTINE NATIONAL HIGH SCHOOL\r\nYearGraduated: 1983\r\n	admin	EducationalBackgrounds	1
775670	2025-03-26	11:03:24.8328877	<Undetected>	Update	BasicInformationId: 3960\r\nBirthDate: August 08, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4375\r\nExtensionName: \r\nFirstName: JOHN CYRILE\r\nFullName: JOHN CYRILE DE CASTRO ANONUEVO\r\nGender: Male\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3960\r\nBirthDate: August 08, 2009\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4375\r\nExtensionName: \r\nFirstName: JOHN CYRILE\r\nFullName: JOHN CYRILE ANONUEVO\r\nGender: Male\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775671	2025-03-26	11:03:24.8379558	<Undetected>	Update	BasicInformationId: 3960\r\nBirthDate: February 16, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4376\r\nExtensionName: \r\nFirstName: KENNETH\r\nFullName: KENNETH DE CASTRO ANONUEVO\r\nGender: Male\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3960\r\nBirthDate: February 16, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4376\r\nExtensionName: \r\nFirstName: KENNETH\r\nFullName: KENNETH ANONUEVO\r\nGender: Male\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775656	2025-03-26	11:02:14.4797783	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3924\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 12, 2024\r\nTrainingId: 16623\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775657	2025-03-26	11:02:14.4878122	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3924\r\nEmployeeTrainingId: 0\r\nFromDate: November 04, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: November 08, 2024\r\nTrainingId: 16785\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775658	2025-03-26	11:02:14.4941772	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3924\r\nEmployeeTrainingId: 0\r\nFromDate: July 15, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16786\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775659	2025-03-26	11:02:14.4981835	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3924\r\nEmployeeTrainingId: 0\r\nFromDate: June 26, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION -NATIONAL LEVEL\r\nStatus: \r\nToDate: June 28, 2024\r\nTrainingId: 16787\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775660	2025-03-26	11:02:14.5041929	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3924\r\nEmployeeTrainingId: 0\r\nFromDate: May 20, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY\r\nStatus: \r\nToDate: May 24, 2024\r\nTrainingId: 16788\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775664	2025-03-26	11:03:14.3143056	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3924\r\nSkillId: 0\r\nSkillName: DANCING\r\n	admin	Skills	1
775665	2025-03-26	11:03:14.3183183	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3924\r\nRecognitionId: 0\r\nRecognitionName: N/A \r\n	admin	Recognitions	1
775666	2025-03-26	11:03:14.3233244	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3924\r\nOrganizationId: 0\r\nOrganizationName: GIRL SCOUT OF THE PHILIPPINES\r\n	admin	Organizations	1
775667	2025-03-26	11:03:14.3343244	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3924\r\nOrganizationId: 0\r\nOrganizationName: BOY SCOUT OF THE PHILIPPINES\r\n	admin	Organizations	1
775677	2025-03-26	11:06:53.8531351	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3924\r\nCharacterReferenceId: 0\r\nCompanyAddress: MERCEDES HOMES, SORO SORO ITAAS, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 0955132951\r\nExtensionName: \r\nFirstName: NIEVES\r\nLastName: MONTALBO\r\nMiddleName: A.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775678	2025-03-26	11:06:53.8581507	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3924\r\nCharacterReferenceId: 0\r\nCompanyAddress: GULOD LABAC, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09667522908\r\nExtensionName: \r\nFirstName: CHARITY\r\nLastName: MAGADIA\r\nMiddleName: S.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775679	2025-03-26	11:06:53.8699153	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3924\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGUSTIN KANLURAN ISLA VERDE\r\nCompanyName: \r\nContactNumber: 09086231854\r\nExtensionName: \r\nFirstName: MELODY\r\nLastName: FABILA\r\nMiddleName: S.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775680	2025-03-26	11:06:53.8813342	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN AGUSTIN KANLURAN, ISLA VERDE\r\nBasicInformationId: 3924\r\nBirthDate: January 18, 1975\r\nBirthPlace: NAUJAN ORIENTAL MINDORO\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jolly.luces001@deped.gov.ph\r\nExtensionName: \r\nFirstName: JOLLY\r\nFullName: JOLLY T. LUCES\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: LUCES\r\nMaidenName: \r\nMiddleName: TAMARES\r\nMobileNumber: 09641907678\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN AGUSTIN KANLURAN, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN AGUSTIN KANLURAN, ISLA VERDE\r\nBasicInformationId: 3924\r\nBirthDate: January 18, 1975\r\nBirthPlace: NAUJAN ORIENTAL MINDORO\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jolly.luces001@deped.gov.ph\r\nExtensionName: \r\nFirstName: JOLLY\r\nFullName: JOLLY T. LUCES\r\nGender: Female\r\nGovernmentIdIssuedDate: January 28, 1998\r\nGovernmentIdNumber: 0289180\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: 02002928523\r\nHDMF: 1490-0089-0025\r\nHeight: 1.52\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: LUCES\r\nMaidenName: \r\nMiddleName: TAMARES\r\nMobileNumber: 09641907678\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN AGUSTIN KANLURAN, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000021603-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-0944868-7\r\nStreetName: \r\nTIN: 912-175-923-0000\r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775697	2025-03-26	11:16:10.1337282	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3961\r\nDateOfExamination: September 30, 2018\r\nDateOfRelease: June 11, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 30, 2018\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1695868\r\nPlaceOfExamination: MANILA\r\nRating: 75.40\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
775672	2025-03-26	11:03:24.8469814	<Undetected>	Update	BasicInformationId: 3960\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09162622738\r\nEmployeeRelativeId: 4377\r\nExtensionName: \r\nFirstName: FRANCISCA\r\nFullName: FRANCISCA DE CASTRO\r\nGender: Female\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: TEACHER\r\nRelationship: Wife\r\n	BasicInformationId: 3960\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09162622738\r\nEmployeeRelativeId: 4377\r\nExtensionName: \r\nFirstName: FRANCISCA\r\nFullName: FRANCISCA ANONUEVO\r\nGender: Female\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: DE CASTRO\r\nOccupation: TEACHER\r\nRelationship: Wife\r\n	admin	EmployeeRelatives	1
775673	2025-03-26	11:04:47.6921440	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIPONPON ISLA VERDE\r\nBasicInformationId: 3960\r\nBirthDate: January 20, 1965\r\nBirthPlace: LIPPONPON ISLA VERDE, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: N/A\r\nExtensionName: \r\nFirstName: SEBASTIAN\r\nFullName: SEBASTIAN C. ANONUEVO\r\nGender: Male\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: CASTILLO\r\nMobileNumber: 0\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIPONPON ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 70\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIPONPON ISLA VERDE\r\nBasicInformationId: 3960\r\nBirthDate: January 20, 1965\r\nBirthPlace: LIPPONPON ISLA VERDE, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: N/A\r\nExtensionName: \r\nFirstName: SEBASTIAN\r\nFullName: SEBASTIAN C. ANONUEVO\r\nGender: Male\r\nGovernmentIdIssuedDate: December 20, 2021\r\nGovernmentIdNumber: 5392150846103825\r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: NATIONAL ID\r\nGSIS: 02002927727\r\nHDMF: 1490-0083-2531\r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: CASTILLO\r\nMobileNumber: 0\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIPONPON ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000021519-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 900-431-653-0000\r\nWeight: 70\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775674	2025-03-26	11:06:22.6939003	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3960\r\nCharacterReferenceId: 0\r\nCompanyAddress: LIPONPON ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09950829219\r\nExtensionName: \r\nFirstName: ROSALIE\r\nLastName: BAJA\r\nMiddleName: G\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775675	2025-03-26	11:06:22.7155727	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3960\r\nCharacterReferenceId: 0\r\nCompanyAddress: LIPONPON ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09483416234\r\nExtensionName: \r\nFirstName: RONALD\r\nLastName: EBORA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775676	2025-03-26	11:06:22.7272029	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3960\r\nCharacterReferenceId: 0\r\nCompanyAddress: TANGISAN, LIBO, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09274083148\r\nExtensionName: \r\nFirstName: GEMMA \r\nLastName: CLAVERIA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775681	2025-03-26	11:07:17.2749308	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3960\r\nSkillId: 0\r\nSkillName: CARPENTRY\r\n	admin	Skills	1
775682	2025-03-26	11:07:17.2879310	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3960\r\nSkillId: 0\r\nSkillName: PLAYING VOLLEYBALL\r\n	admin	Skills	1
775683	2025-03-26	11:07:17.2919302	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3960\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
775684	2025-03-26	11:07:17.3019304	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3960\r\nOrganizationId: 0\r\nOrganizationName: PHILIPPINE PUBLIC SCHOOL TEACHERS ASSOCIATION\r\n	admin	Organizations	1
775685	2025-03-26	11:10:34.1108824	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN AGAPITO, ISLA VERDE\r\nBasicInformationId: 0\r\nBirthDate: June 11, 1998\r\nBirthPlace: LEMERY, BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jessaline.pagkaliwagan11@gmail.com\r\nExtensionName: \r\nFirstName: JESSALINE\r\nFullName: JESSALINE C. PAGKALIWAGAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PAGKALIWAGAN\r\nMaidenName: \r\nMiddleName: CALALUAN\r\nMobileNumber: 09367201702\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN AGAPITO, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: BAYANI I\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: BAYANI I\r\nTIN: \r\nWeight: 82\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775686	2025-03-26	11:10:34.1189938	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3961\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: FERNAN\r\nFullName: FERNAN MENDOZA PAGKALIWAGAN\r\nGender: Male\r\nLastName: PAGKALIWAGAN\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
775687	2025-03-26	11:10:34.1189938	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3961\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: LEYNIE\r\nFullName: LEYNIE RAYOS CALALUAN\r\nGender: Female\r\nLastName: CALALUAN\r\nMaidenName: \r\nMiddleName: RAYOS\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
775688	2025-03-26	11:10:34.1189938	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3961\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
775689	2025-03-26	11:12:30.2496679	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: NC II BEAUTY CARE\r\nLevel: Vocational\r\n	admin	Courses	1
775690	2025-03-26	11:14:04.0596508	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3961\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2004\r\nDateTo: 2010\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: LEMERY PILOT ELEMENTARY SCHOOL\r\nYearGraduated: 2010\r\n	admin	EducationalBackgrounds	1
775691	2025-03-26	11:14:04.0794837	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3961\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2010\r\nDateTo: 2014\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: TAAL NATIONAL HIGH SCHOOL\r\nYearGraduated: 2014\r\n	admin	EducationalBackgrounds	1
775692	2025-03-26	11:14:04.0956061	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3961\r\nCourse: \r\nCourseId: 1404\r\nCourseOrMajor: \r\nDateFrom: 2017\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Vocational Graduate\r\nMajor: \r\nSchoolorUniversity: ISABELO BALEROS MEMORIAL ELEMENTARY SCHOOL\r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
775693	2025-03-26	11:14:04.1030048	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3961\r\nCourse: \r\nCourseId: 1329\r\nCourseOrMajor: \r\nDateFrom: 2014\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MAJOR IN INDUSTRIAL ARTS\r\nSchoolorUniversity: BATANGAS STATE UNIVERSITY - LEMERY CAMPUS\r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
775694	2025-03-26	11:14:04.1113040	<Undetected>	Update	BasicInformationId: 3961\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4378\r\nExtensionName: \r\nFirstName: FERNAN\r\nFullName: FERNAN MENDOZA PAGKALIWAGAN\r\nGender: Male\r\nLastName: PAGKALIWAGAN\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3961\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4378\r\nExtensionName: \r\nFirstName: FERNAN\r\nFullName: FERNAN PAGKALIWAGAN\r\nGender: Male\r\nLastName: PAGKALIWAGAN\r\nMaidenName: \r\nMiddleName: MENDOZA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
775695	2025-03-26	11:14:04.1163144	<Undetected>	Update	BasicInformationId: 3961\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4379\r\nExtensionName: \r\nFirstName: LEYNIE\r\nFullName: LEYNIE RAYOS CALALUAN\r\nGender: Female\r\nLastName: CALALUAN\r\nMaidenName: \r\nMiddleName: RAYOS\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3961\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4379\r\nExtensionName: \r\nFirstName: LEYNIE\r\nFullName: LEYNIE CALALUAN\r\nGender: Female\r\nLastName: CALALUAN\r\nMaidenName: \r\nMiddleName: RAYOS\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
775696	2025-03-26	11:14:04.1223240	<Undetected>	Update	BasicInformationId: 3961\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3758\r\n	BasicInformationId: 3961\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3758\r\n	admin	Questionnaires	1
775698	2025-03-26	13:19:51.3021615	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3961\r\nCompanyInstitution: SAN AGAPITO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,024.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: March 26, 2025\r\n	admin	Experiences	1
775699	2025-03-26	13:19:51.3071614	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3961\r\nCompanyInstitution: SAN AGAPITO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: August 12, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 28,512.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
775700	2025-03-26	13:19:51.3121616	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3961\r\nCompanyInstitution: LEMERY PILOT ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 28, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 25,439.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Substitute\r\nToDate: June 10, 2022\r\n	admin	Experiences	1
775701	2025-03-26	13:19:51.3161609	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3961\r\nCompanyInstitution: LEMERY PILOT ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: September 16, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 23,877.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Substitute\r\nToDate: December 17, 2021\r\n	admin	Experiences	1
775702	2025-03-26	13:19:51.3211610	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3961\r\nCompanyInstitution: LEMERY PILOT ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 23, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 23,877.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Substitute\r\nToDate: July 31, 2021\r\n	admin	Experiences	1
775703	2025-03-26	13:19:51.3261617	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3961\r\nCompanyInstitution: LEMERY PILOT ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: May 25, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 23,877.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Substitute\r\nToDate: June 19, 2021\r\n	admin	Experiences	1
775704	2025-03-26	13:19:51.3311610	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3961\r\nCompanyInstitution: LEMERY PILOT ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: April 27, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 23,877.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Substitute\r\nToDate: May 20, 2021\r\n	admin	Experiences	1
775705	2025-03-26	13:19:51.3351610	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3961\r\nCompanyInstitution: LEMERY PILOT ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 04, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 22,316.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Substitute\r\nToDate: February 22, 2021\r\n	admin	Experiences	1
775706	2025-03-26	13:19:51.3401612	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3961\r\nCompanyInstitution: LEMERY PILOT ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: November 20, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,316.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Substitute\r\nToDate: December 18, 2020\r\n	admin	Experiences	1
775707	2025-03-26	13:19:51.3451613	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3961\r\nCompanyInstitution: LEMERY PILOT ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: September 18, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,316.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Substitute\r\nToDate: October 17, 2020\r\n	admin	Experiences	1
775731	2025-03-26	14:00:27.7074371	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3960\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 14,862.00\r\nPositionHeld: ADMINISTRATIVE AIDE 1\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 01-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
775732	2025-03-26	14:00:27.7148089	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3960\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 14,331.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 01-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
775733	2025-03-26	14:00:27.7200555	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3960\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 24,697.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 01-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
775734	2025-03-26	14:00:27.7242423	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3960\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 23,763.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 01-1\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
775735	2025-03-26	14:00:27.7294715	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3960\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 23,486.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 01-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
775736	2025-03-26	14:00:27.7334966	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3960\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,611.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 01-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
775737	2025-03-26	14:00:27.7385705	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3960\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,769.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 01-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
775738	2025-03-26	14:00:27.7435782	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3960\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,958.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 01-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
775739	2025-03-26	14:00:27.7485858	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3960\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 20,750.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 01-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
775740	2025-03-26	14:00:27.7525917	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3960\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 20,545.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 01-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
775741	2025-03-26	14:00:27.7579437	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3960\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2015\r\nIsGovernmentService: False\r\nMonthlySalary: 19,047.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 01-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
775742	2025-03-26	14:00:27.7619600	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3960\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2014\r\nIsGovernmentService: True\r\nMonthlySalary: 17,548.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 01-1\r\nStatus: Permanent\r\nToDate: December 31, 2014\r\n	admin	Experiences	1
775743	2025-03-26	14:00:27.7669679	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3960\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 16,050.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 01-1\r\nStatus: Permanent\r\nToDate: December 31, 2013\r\n	admin	Experiences	1
775767	2025-03-26	14:16:49.2176848	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3958\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ERNALIE\r\nFullName: ERNALIE EBORA MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: HERERA\r\nMiddleName: EBORA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
775744	2025-03-26	14:00:27.7720200	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3960\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 13,726.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 01-1\r\nStatus: Permanent\r\nToDate: December 31, 2012\r\n	admin	Experiences	1
775745	2025-03-26	14:00:27.7770279	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3960\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 13,392.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 01-1\r\nStatus: Permanent\r\nToDate: December 31, 2011\r\n	admin	Experiences	1
775746	2025-03-26	14:00:27.7810341	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3960\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 12,175.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 01-1\r\nStatus: Permanent\r\nToDate: December 31, 2010\r\n	admin	Experiences	1
775747	2025-03-26	14:00:27.7862278	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3960\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 11,068.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 01-1\r\nStatus: Permanent\r\nToDate: December 31, 2009\r\n	admin	Experiences	1
775748	2025-03-26	14:00:27.7902339	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3960\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 10,971.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 01-1\r\nStatus: Permanent\r\nToDate: December 31, 2008\r\n	admin	Experiences	1
775749	2025-03-26	14:00:27.7952505	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3960\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 10,704.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 01-1\r\nStatus: Permanent\r\nToDate: December 31, 2007\r\n	admin	Experiences	1
775750	2025-03-26	14:00:27.8002572	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3960\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2006\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 01-1\r\nStatus: Permanent\r\nToDate: December 31, 2006\r\n	admin	Experiences	1
775751	2025-03-26	14:00:27.8054724	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3960\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 01-1\r\nStatus: Permanent\r\nToDate: December 31, 2005\r\n	admin	Experiences	1
775752	2025-03-26	14:00:27.8104799	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3960\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2004\r\nIsGovernmentService: True\r\nMonthlySalary: 8,583.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 01-1\r\nStatus: Permanent\r\nToDate: December 31, 2004\r\n	admin	Experiences	1
775753	2025-03-26	14:00:27.8154934	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3960\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2003\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 01-1\r\nStatus: Permanent\r\nToDate: December 31, 2003\r\n	admin	Experiences	1
775754	2025-03-26	14:00:27.8205154	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3960\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 01-1\r\nStatus: Permanent\r\nToDate: December 31, 2002\r\n	admin	Experiences	1
775785	2025-03-26	14:23:41.0623313	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3958\r\nSkillId: 0\r\nSkillName: VOICE OVER\r\n	admin	Skills	1
775786	2025-03-26	14:23:41.0713996	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3958\r\nOrganizationId: 0\r\nOrganizationName: PHILIPPINE ASSOCIATION FOR TEACHER AND EDUCATORS, INC.\r\n	admin	Organizations	1
775755	2025-03-26	14:00:27.8245217	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3960\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 01-1\r\nStatus: Permanent\r\nToDate: December 31, 2001\r\n	admin	Experiences	1
775756	2025-03-26	14:00:27.8295290	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3960\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 7,309.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 01-1\r\nStatus: Permanent\r\nToDate: December 31, 2000\r\n	admin	Experiences	1
775757	2025-03-26	14:00:27.8346078	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3960\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 6,013.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 01-1\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
775758	2025-03-26	14:00:27.8396180	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3960\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 4,902.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 01-1\r\nStatus: Permanent\r\nToDate: December 31, 1998\r\n	admin	Experiences	1
775759	2025-03-26	14:00:27.8436242	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3960\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1997\r\nIsGovernmentService: True\r\nMonthlySalary: 4,902.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 01-1\r\nStatus: Permanent\r\nToDate: December 31, 1997\r\n	admin	Experiences	1
775760	2025-03-26	14:00:27.8487277	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3960\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 1996\r\nIsGovernmentService: True\r\nMonthlySalary: 4,902.00\r\nPositionHeld: ADMINISTRATIVE AIDE I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 01-1\r\nStatus: Permanent\r\nToDate: December 31, 1996\r\n	admin	Experiences	1
775761	2025-03-26	14:08:40.8507569	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3961\r\nCompanyInstitution: DONA MATILDE MEMORIAL ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: February 17, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,316.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Substitute\r\nToDate: April 03, 2020\r\n	admin	Experiences	1
775762	2025-03-26	14:16:49.1863035	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3958\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2006\r\nDateTo: 2012\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGAPITO ELEMENTARY SCHOOL\r\nYearGraduated: 2012\r\n	admin	EducationalBackgrounds	1
775763	2025-03-26	14:16:49.1913135	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3958\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2012\r\nDateTo: 2016\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGAPITO NATIONAL HIGH SCHOOL\r\nYearGraduated: 2016\r\n	admin	EducationalBackgrounds	1
775764	2025-03-26	14:16:49.2023897	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3958\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2016\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Senior High Graduate\r\nMajor: \r\nSchoolorUniversity: SAN AGUSTIN SENIOR HIGH SCHOOL\r\nYearGraduated: 2018\r\n	admin	EducationalBackgrounds	1
775765	2025-03-26	14:16:49.2063958	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3958\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2019\r\nDateTo: 2023\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: COLEGIO NG LUNGSOD NG BATANGAS\r\nYearGraduated: 2023\r\n	admin	EducationalBackgrounds	1
775766	2025-03-26	14:16:49.2134215	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3958\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: NORBELITO\r\nFullName: NORBELITO EUSEBIO MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: EUSEBIO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
775768	2025-03-26	14:18:37.7958534	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SANTA RITA\r\nBasicInformationId: 3958\r\nBirthDate: September 30, 1999\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: alaizamacatangay24@gmail.com\r\nExtensionName: \r\nFirstName: ALAIZA\r\nFullName: ALAIZA E. MACATANGAY\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.71\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: EBORA\r\nMobileNumber: 09358055148\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SANTA RITA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: MALIGAYA ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: MALIGAYA ROAD\r\nTIN: \r\nWeight: 60\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SANTA RITA\r\nBasicInformationId: 3958\r\nBirthDate: September 30, 1999\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: alaizamacatangay24@gmail.com\r\nExtensionName: \r\nFirstName: ALAIZA\r\nFullName: ALAIZA E. MACATANGAY\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: 2150341\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02006602044\r\nHDMF: 1212-2344-0514\r\nHeight: 1.71\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: EBORA\r\nMobileNumber: 09358055148\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SANTA RITA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: MALIGAYA ROAD\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-500538065-6\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 04-4053188-3\r\nStreetName: MALIGAYA ROAD\r\nTIN: 721-056-618-0000\r\nWeight: 60\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775769	2025-03-26	14:18:37.8080682	<Undetected>	Update	BasicInformationId: 3958\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4380\r\nExtensionName: \r\nFirstName: NORBELITO\r\nFullName: NORBELITO EUSEBIO MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: EUSEBIO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3958\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4380\r\nExtensionName: \r\nFirstName: NORBELITO\r\nFullName: NORBELITO MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: EUSEBIO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
775770	2025-03-26	14:18:37.8120681	<Undetected>	Update	BasicInformationId: 3958\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4381\r\nExtensionName: \r\nFirstName: ERNALIE\r\nFullName: ERNALIE EBORA MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: HERERA\r\nMiddleName: EBORA\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3958\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4381\r\nExtensionName: \r\nFirstName: ERNALIE\r\nFullName: ERNALIE MACATANGAY\r\nGender: Male\r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: EBORA\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
775771	2025-03-26	14:21:03.6543633	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3958\r\nDateOfExamination: September 24, 2023\r\nDateOfRelease: September 30, 2027\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: September 24, 2023\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 2150341\r\nPlaceOfExamination: LUCENA\r\nRating: 80.8\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
775772	2025-03-26	14:21:03.6659808	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3958\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09475854673\r\nExtensionName: \r\nFirstName: RIZA\r\nLastName: EBORA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775773	2025-03-26	14:21:03.6842132	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3958\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 095117103249\r\nExtensionName: \r\nFirstName: CLEOFE\r\nLastName: PANOPIO\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775774	2025-03-26	14:21:03.6949014	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3958\r\nCharacterReferenceId: 0\r\nCompanyAddress: PALLOCAN WEST, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09171089746\r\nExtensionName: \r\nFirstName: RHEA\r\nLastName: VILLAGANAS\r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775779	2025-03-26	14:21:46.0304628	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3958\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 15, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,204.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
775780	2025-03-26	14:22:15.8491943	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: THE TEACHER AS PROFESSIONAL\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
775781	2025-03-26	14:22:47.7392590	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3958\r\nEmployeeTrainingId: 0\r\nFromDate: August 24, 2024\r\nHours: 4\r\nNatureOfParticipation: \r\nSponsoringAgency: PHILIPPINE ASSOCIATION FOR TEACHERS AND EDUCATORS\r\nStatus: \r\nToDate: August 24, 2024\r\nTrainingId: 16789\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775782	2025-03-26	14:23:41.0412142	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3958\r\nSkillId: 0\r\nSkillName: WRITING SPOKEN WORDS\r\n	admin	Skills	1
775783	2025-03-26	14:23:41.0462251	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3958\r\nSkillId: 0\r\nSkillName: DRIVING\r\n	admin	Skills	1
775784	2025-03-26	14:23:41.0583245	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3958\r\nSkillId: 0\r\nSkillName: ACTING\r\n	admin	Skills	1
775775	2025-03-26	14:21:33.7109973	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3961\r\nCompanyInstitution: LEMERY PILOT ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 06, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Substitute\r\nToDate: February 02, 2020\r\n	admin	Experiences	1
775776	2025-03-26	14:21:33.7199971	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3961\r\nCompanyInstitution: LEMERY PILOT ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: October 28, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Substitute\r\nToDate: December 13, 2019\r\n	admin	Experiences	1
775777	2025-03-26	14:21:33.7249975	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3961\r\nCompanyInstitution: LEMERY PILOT ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: September 03, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Substitute\r\nToDate: October 03, 2019\r\n	admin	Experiences	1
775778	2025-03-26	14:21:33.7299974	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3961\r\nCompanyInstitution: CULTIHAN BOLBOK ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: July 04, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Substitute\r\nToDate: August 22, 2019\r\n	admin	Experiences	1
775787	2025-03-26	14:24:34.1778937	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: IN-SERVICE TRAINING (MASTER CLASSES FOR KINDERGARTEN, G1, G4, AND G7 TEACHERS ACROSS ALL LEARNING AREAS)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
775791	2025-03-26	14:26:50.3540723	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BASIC TRAINING COURSE (BSP)\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
775795	2025-03-26	14:28:18.7731602	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3961\r\nEmployeeTrainingId: 0\r\nFromDate: February 03, 2025\r\nHours: 4\r\nNatureOfParticipation: \r\nSponsoringAgency: SAN AGAPITO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: February 03, 2025\r\nTrainingId: 16508\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775796	2025-03-26	14:28:18.7791836	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3961\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: NEAP\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16790\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775797	2025-03-26	14:28:18.7852480	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3961\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 1\r\nNatureOfParticipation: \r\nSponsoringAgency: NEAP\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16737\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775798	2025-03-26	14:28:18.7892841	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3961\r\nEmployeeTrainingId: 0\r\nFromDate: November 08, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: BSP BATANGAS CITY\r\nStatus: \r\nToDate: November 10, 2024\r\nTrainingId: 16791\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775799	2025-03-26	14:28:18.7943112	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3961\r\nEmployeeTrainingId: 0\r\nFromDate: September 30, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SAN AGAPITO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: September 30, 2024\r\nTrainingId: 16681\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775804	2025-03-26	14:32:19.0274212	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3961\r\nSkillId: 0\r\nSkillName: N/A\r\n	admin	Skills	1
775805	2025-03-26	14:32:19.0355092	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3961\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
775806	2025-03-26	14:32:19.0405245	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3961\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
775807	2025-03-26	14:32:19.0488412	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3961\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09178627327\r\nExtensionName: \r\nFirstName: RIZA\r\nLastName: EBORA\r\nMiddleName: C. \r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775808	2025-03-26	14:32:19.0528548	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3961\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN NICOLAS, BATANGAS \r\nCompanyName: \r\nContactNumber: 09151122506\r\nExtensionName: \r\nFirstName: MA. TERESA\r\nLastName: CARINGAL\r\nMiddleName: E.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775788	2025-03-26	14:26:00.0240357	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3959\r\nBirthDate: February 04, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: JAMIE ELIANA\r\nFullName: JAMIE ELIANA EDUBA CUETO\r\nGender: Male\r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: EDUBA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775789	2025-03-26	14:26:00.0363196	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3959\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09481123955\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: EFRENIO\r\nFullName: EFRENIO CUSI CUETO\r\nGender: Male\r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: CUSI\r\nOccupation: FARMER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
775790	2025-03-26	14:26:00.0403262	<Undetected>	Update	BasicInformationId: 3959\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3756\r\n	BasicInformationId: 3959\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3756\r\n	admin	Questionnaires	1
775792	2025-03-26	14:27:31.2243570	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIPONPON ISL A VERDE\r\nBasicInformationId: 3959\r\nBirthDate: February 18, 1975\r\nBirthPlace: LIPONPON, ISLA VERDE, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: arlyn.cueto001@deped.gov.ph\r\nExtensionName: \r\nFirstName: ARLYN\r\nFullName: ARLYN E. CUETO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.59\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: EDUBA\r\nMobileNumber: 09194459918\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIPONPON ISL A VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 50\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIPONPON ISL A VERDE\r\nBasicInformationId: 3959\r\nBirthDate: February 18, 1975\r\nBirthPlace: LIPONPON, ISLA VERDE, BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: arlyn.cueto001@deped.gov.ph\r\nExtensionName: \r\nFirstName: ARLYN\r\nFullName: ARLYN E. CUETO\r\nGender: Female\r\nGovernmentIdIssuedDate: December 01, 2014\r\nGovernmentIdNumber: 1342737\r\nGovernmentIdPlaceIssued: LUCENA CITY\r\nGovernmentIssuedId: PRC\r\nGSIS: 02004709268\r\nHDMF: 1010-0274-0982\r\nHeight: 1.59\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: EDUBA\r\nMobileNumber: 09194459918\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIPONPON ISL A VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 01-051008924-9\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 33-4833986-7\r\nStreetName: \r\nTIN: 913-623-911-0000\r\nWeight: 50\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775793	2025-03-26	14:27:31.2375166	<Undetected>	Update	BasicInformationId: 3959\r\nBirthDate: February 04, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4382\r\nExtensionName: \r\nFirstName: JAMIE ELIANA\r\nFullName: JAMIE ELIANA EDUBA CUETO\r\nGender: Male\r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: EDUBA\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3959\r\nBirthDate: February 04, 2011\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4382\r\nExtensionName: \r\nFirstName: JAMIE ELIANA\r\nFullName: JAMIE ELIANA CUETO\r\nGender: Male\r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: EDUBA\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775794	2025-03-26	14:27:31.2532895	<Undetected>	Update	BasicInformationId: 3959\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09481123955\r\nEmployeeRelativeId: 4383\r\nExtensionName: \r\nFirstName: EFRENIO\r\nFullName: EFRENIO CUSI CUETO\r\nGender: Male\r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: CUSI\r\nOccupation: FARMER\r\nRelationship: Husband\r\n	BasicInformationId: 3959\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09481123955\r\nEmployeeRelativeId: 4383\r\nExtensionName: \r\nFirstName: EFRENIO\r\nFullName: EFRENIO CUETO\r\nGender: Male\r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: CUSI\r\nOccupation: FARMER\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
775800	2025-03-26	14:28:58.9766595	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3959\r\nCharacterReferenceId: 0\r\nCompanyAddress: LIPONPPON ISLA VERDE BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09161419231\r\nExtensionName: \r\nFirstName: NORMA\r\nLastName: QUIDADO\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775801	2025-03-26	14:28:58.9857477	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3959\r\nCharacterReferenceId: 0\r\nCompanyAddress: LIPONPON ISLA VERDE BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09297245268\r\nExtensionName: \r\nFirstName: RONALD\r\nLastName: EBORA\r\nMiddleName: C\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775802	2025-03-26	14:28:58.9907644	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3959\r\nCharacterReferenceId: 0\r\nCompanyAddress: LIPONPON ISLA VERDE BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09950829219\r\nExtensionName: \r\nFirstName: ROSALIE\r\nLastName: BAJA\r\nMiddleName: G\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775803	2025-03-26	14:30:00.3049465	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3959\r\nDateOfExamination: August 17, 2014\r\nDateOfRelease: February 18, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 17, 2014\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1342737\r\nPlaceOfExamination: CUBAO, MANILA\r\nRating: 75\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
775811	2025-03-26	14:35:56.0767924	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3959\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,705.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: January 01, 0001\r\n	admin	Experiences	1
775810	2025-03-26	14:32:19.0628629	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN AGAPITO, ISLA VERDE\r\nBasicInformationId: 3961\r\nBirthDate: June 11, 1998\r\nBirthPlace: LEMERY, BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jessaline.pagkaliwagan11@gmail.com\r\nExtensionName: \r\nFirstName: JESSALINE\r\nFullName: JESSALINE C. PAGKALIWAGAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PAGKALIWAGAN\r\nMaidenName: \r\nMiddleName: CALALUAN\r\nMobileNumber: 09367201702\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN AGAPITO, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: BAYANI I\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: BAYANI I\r\nTIN: \r\nWeight: 82\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SAN AGAPITO, ISLA VERDE\r\nBasicInformationId: 3961\r\nBirthDate: June 11, 1998\r\nBirthPlace: LEMERY, BATANGAS\r\nBloodType: A+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jessaline.pagkaliwagan11@gmail.com\r\nExtensionName: \r\nFirstName: JESSALINE\r\nFullName: JESSALINE C. PAGKALIWAGAN\r\nGender: Female\r\nGovernmentIdIssuedDate: January 03, 2019\r\nGovernmentIdNumber: 1695868\r\nGovernmentIdPlaceIssued: MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 02005633193\r\nHDMF: 1212-4268-6830\r\nHeight: 1.65\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: PAGKALIWAGAN\r\nMaidenName: \r\nMiddleName: CALALUAN\r\nMobileNumber: 09367201702\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SAN AGAPITO, ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: BAYANI I\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-025658899-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: 34-8195306-1\r\nStreetName: BAYANI I\r\nTIN: 723-431-156-0000\r\nWeight: 82\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775826	2025-03-26	14:38:05.3128011	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 6\r\nAddress2: \r\nBarangay: BARANGAY 4\r\nBasicInformationId: 0\r\nBirthDate: November 20, 1969\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: anonuevomarites018@gmail.com\r\nExtensionName: \r\nFirstName: MARITES\r\nFullName: MARITES P. ANONUEVO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: PATULAY\r\nMobileNumber: 09605572149\r\nNationality: Filipino\r\nPermanentAddress1: 6\r\nPermanentAddress2: \r\nPermanentBarangay: BARANGAY 4\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: P. HERRERA\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: P. HERRERA\r\nTIN: \r\nWeight: 70\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775827	2025-03-26	14:38:05.3656785	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3962\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09627104187\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: MARGARITO\r\nFullName: MARGARITO CALALUAN ANONUEVO\r\nGender: Male\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: CALALUAN\r\nOccupation: FISHERNAME\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
775828	2025-03-26	14:38:05.3656785	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3962\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: DOMINADOR\r\nFullName: DOMINADOR DELA ROCA PATULAY\r\nGender: Male\r\nLastName: PATULAY\r\nMaidenName: \r\nMiddleName: DELA ROCA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
775829	2025-03-26	14:38:05.3666873	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3962\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PATROCINIA\r\nFullName: PATROCINIA CARIG HONRALES\r\nGender: Female\r\nLastName: HONRALES\r\nMaidenName: \r\nMiddleName: CARIG\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
775830	2025-03-26	14:38:05.3666873	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3962\r\nBirthDate: April 03, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: APRIL MARGARETE\r\nFullName: APRIL MARGARETE P. ANONUEVO\r\nGender: Female\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: P.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775831	2025-03-26	14:38:05.3666873	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3962\r\nBirthDate: April 27, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: PAMELA MAE\r\nFullName: PAMELA MAE P. ANONUEVO\r\nGender: Female\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: P.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775832	2025-03-26	14:38:05.3676931	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3962\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
775835	2025-03-26	14:40:42.3428579	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3962\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1976\r\nDateTo: 1982\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS CITY EAST ELEMENTARY SCHOOL\r\nYearGraduated: 1982\r\n	admin	EducationalBackgrounds	1
775836	2025-03-26	14:40:42.3472846	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3962\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1983\r\nDateTo: 1987\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1987\r\n	admin	EducationalBackgrounds	1
775812	2025-03-26	14:35:56.0808480	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3959\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 27,573.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
775813	2025-03-26	14:35:56.0858774	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3959\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 27,573.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
775814	2025-03-26	14:35:56.0910918	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3959\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 02, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 26,012.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
775815	2025-03-26	14:35:56.0960967	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3959\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 19, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 26,012.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
775816	2025-03-26	14:35:56.1010970	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3959\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 22,600.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
775817	2025-03-26	14:35:56.1060972	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3959\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 13, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,035.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 01, 2019\r\n	admin	Experiences	1
775818	2025-03-26	14:35:56.1105837	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3959\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 20,754.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 12, 2019\r\n	admin	Experiences	1
775819	2025-03-26	14:35:56.1156111	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3959\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 20,177.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
775820	2025-03-26	14:35:56.1206113	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3959\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 19,620.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
775821	2025-03-26	14:35:56.1260012	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3959\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 13, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
775822	2025-03-26	14:35:56.1300144	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3959\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 19,077.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 12, 2016\r\n	admin	Experiences	1
775823	2025-03-26	14:35:56.1350313	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3959\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: July 01, 2015\r\nIsGovernmentService: True\r\nMonthlySalary: 18,549.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
775824	2025-03-26	14:35:56.1400751	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3959\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 0\r\nFromDate: June 01, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 3,000.00\r\nPositionHeld: VOLUNTEER TEACHER\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: Volunteer\r\nToDate: June 20, 2015\r\n	admin	Experiences	1
775825	2025-03-26	14:37:13.0107791	<Undetected>	Update	BasicInformationId: 3959\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 14201\r\nFromDate: June 13, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,035.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 01, 2019\r\n	BasicInformationId: 3959\r\nCompanyInstitution: DEPARTMENT OF EDUCATION\r\nExperienceId: 14201\r\nFromDate: June 13, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 21,035.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
775833	2025-03-26	14:38:50.9847283	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DIVISION-BASED TRAINING FOR MULTIGRADE TEACHERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
775834	2025-03-26	14:40:11.0082854	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: SCHOOL IN-SERVICE TRAINING FOR TEACHERS SY 2023-2024\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
775845	2025-03-26	14:41:16.9156249	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3959\r\nSkillId: 0\r\nSkillName: COMPUTER LITERATE\r\n	admin	Skills	1
775846	2025-03-26	14:41:16.9226371	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3959\r\nSkillId: 0\r\nSkillName: SINGING\r\n	admin	Skills	1
775847	2025-03-26	14:41:16.9276772	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3959\r\nSkillId: 0\r\nSkillName: COOKING\r\n	admin	Skills	1
775848	2025-03-26	14:41:16.9356977	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3959\r\nSkillId: 0\r\nSkillName: READING\r\n	admin	Skills	1
775849	2025-03-26	14:41:16.9397136	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3959\r\nSkillId: 0\r\nSkillName: CROSS-STITCHING\r\n	admin	Skills	1
775850	2025-03-26	14:41:16.9447214	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3959\r\nOrganizationId: 0\r\nOrganizationName: PHILIPPINE PUBLIC SCHOOL AND TEACHERS ASSOCIATION\r\n	admin	Organizations	1
775851	2025-03-26	14:41:16.9497289	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3959\r\nEmployeeTrainingId: 0\r\nFromDate: November 29, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OFFICE, BATANGAS CITY\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16340\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775852	2025-03-26	14:41:16.9547528	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3959\r\nEmployeeTrainingId: 0\r\nFromDate: September 25, 2024\r\nHours: 24\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OFFICE, BATANGAS CITY\r\nStatus: \r\nToDate: September 27, 2024\r\nTrainingId: 16693\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775853	2025-03-26	14:41:16.9587588	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3959\r\nEmployeeTrainingId: 0\r\nFromDate: July 22, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OFFICE, BATANGAS CITY\r\nStatus: \r\nToDate: July 26, 2024\r\nTrainingId: 16792\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775854	2025-03-26	14:41:16.9657786	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3959\r\nEmployeeTrainingId: 0\r\nFromDate: April 26, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OFFICE, BATANGAS CITY\r\nStatus: \r\nToDate: April 26, 2024\r\nTrainingId: 16718\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775855	2025-03-26	14:41:16.9727758	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3959\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SCHOOLS DIVISION OFFICE, BATANGAS CITY\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16793\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775856	2025-03-26	14:43:18.8288355	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: SECRETARIAL/AUTO MECHANICS\r\nLevel: Vocational\r\n	admin	Courses	1
775857	2025-03-26	14:47:50.0780058	<Undetected>	Insert	CourseId: \r\nCourseName: \r\nLevel: \r\n	CourseId: 0\r\nCourseName: BACHELOR OF ARTS IN PSYCHOLOGY\r\nLevel: College\r\n	admin	Courses	1
775868	2025-03-26	14:54:14.0779364	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: VALEDICTORIAN\r\nBasicInformationId: 3959\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1981\r\nDateTo: 1987\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: MALALATAN ELEMENTARY SCHOOL\r\nYearGraduated: 1987\r\n	admin	EducationalBackgrounds	1
775869	2025-03-26	14:54:14.0819427	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: SALUTATORIAN\r\nBasicInformationId: 3959\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1987\r\nDateTo: 1992\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: AFUSING NATIONAL HIGH SCHOOL\r\nYearGraduated: 1992\r\n	admin	EducationalBackgrounds	1
775837	2025-03-26	14:40:42.3583223	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3962\r\nCourse: \r\nCourseId: 1290\r\nCourseOrMajor: \r\nDateFrom: 1990\r\nDateTo: 1994\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES BATANGAS CITY\r\nYearGraduated: 1994\r\n	admin	EducationalBackgrounds	1
775838	2025-03-26	14:40:42.3623782	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3962\r\nCourse: \r\nCourseId: 1348\r\nCourseOrMajor: \r\nDateFrom: 2018\r\nDateTo: 2018\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES BATANGAS CITY\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
775839	2025-03-26	14:40:42.3694024	<Undetected>	Update	BasicInformationId: 3962\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09627104187\r\nEmployeeRelativeId: 4384\r\nExtensionName: \r\nFirstName: MARGARITO\r\nFullName: MARGARITO CALALUAN ANONUEVO\r\nGender: Male\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: CALALUAN\r\nOccupation: FISHERNAME\r\nRelationship: Husband\r\n	BasicInformationId: 3962\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09627104187\r\nEmployeeRelativeId: 4384\r\nExtensionName: \r\nFirstName: MARGARITO\r\nFullName: MARGARITO ANONUEVO\r\nGender: Male\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: CALALUAN\r\nOccupation: FISHERNAME\r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
775840	2025-03-26	14:40:42.3738880	<Undetected>	Update	BasicInformationId: 3962\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4385\r\nExtensionName: \r\nFirstName: DOMINADOR\r\nFullName: DOMINADOR DELA ROCA PATULAY\r\nGender: Male\r\nLastName: PATULAY\r\nMaidenName: \r\nMiddleName: DELA ROCA\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3962\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4385\r\nExtensionName: \r\nFirstName: DOMINADOR\r\nFullName: DOMINADOR PATULAY\r\nGender: Male\r\nLastName: PATULAY\r\nMaidenName: \r\nMiddleName: DELA ROCA\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
775841	2025-03-26	14:40:42.3872984	<Undetected>	Update	BasicInformationId: 3962\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4386\r\nExtensionName: \r\nFirstName: PATROCINIA\r\nFullName: PATROCINIA CARIG HONRALES\r\nGender: Female\r\nLastName: HONRALES\r\nMaidenName: \r\nMiddleName: CARIG\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3962\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4386\r\nExtensionName: \r\nFirstName: PATROCINIA\r\nFullName: PATROCINIA HONRALES\r\nGender: Female\r\nLastName: HONRALES\r\nMaidenName: \r\nMiddleName: CARIG\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
775842	2025-03-26	14:40:42.4065088	<Undetected>	Update	BasicInformationId: 3962\r\nBirthDate: April 03, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4387\r\nExtensionName: \r\nFirstName: APRIL MARGARETE\r\nFullName: APRIL MARGARETE P. ANONUEVO\r\nGender: Female\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: P.\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3962\r\nBirthDate: April 03, 1999\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4387\r\nExtensionName: \r\nFirstName: APRIL MARGARETE\r\nFullName: APRIL MARGARETE ANONUEVO\r\nGender: Female\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: P.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775843	2025-03-26	14:40:42.4209193	<Undetected>	Update	BasicInformationId: 3962\r\nBirthDate: April 27, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4388\r\nExtensionName: \r\nFirstName: PAMELA MAE\r\nFullName: PAMELA MAE P. ANONUEVO\r\nGender: Female\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: P.\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3962\r\nBirthDate: April 27, 2005\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4388\r\nExtensionName: \r\nFirstName: PAMELA MAE\r\nFullName: PAMELA MAE ANONUEVO\r\nGender: Female\r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: P.\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775844	2025-03-26	14:40:42.4249277	<Undetected>	Update	BasicInformationId: 3962\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3759\r\n	BasicInformationId: 3962\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3759\r\n	admin	Questionnaires	1
775858	2025-03-26	14:50:07.3244026	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3962\r\nDateOfExamination: August 24, 1996\r\nDateOfRelease: November 20, 2026\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: August 24, 1996\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 0027252\r\nPlaceOfExamination: NCR MANILA\r\nRating: 77.0\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
775859	2025-03-26	14:50:07.3294887	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3962\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 34,421.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: March 26, 2025\r\n	admin	Experiences	1
775860	2025-03-26	14:50:07.3345157	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3962\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2024\r\nIsGovernmentService: True\r\nMonthlySalary: 32,870.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: December 31, 2024\r\n	admin	Experiences	1
775870	2025-03-26	14:54:14.0869626	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3959\r\nCourse: \r\nCourseId: 1405\r\nCourseOrMajor: \r\nDateFrom: 2007\r\nDateTo: 2007\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Vocational Graduate\r\nMajor: \r\nSchoolorUniversity: ARAULLO EVENING VOCATIONAL SCHOOL\r\nYearGraduated: 2007\r\n	admin	EducationalBackgrounds	1
775861	2025-03-26	14:50:07.3395317	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3962\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 17, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 31,320.00\r\nPositionHeld: TEACHER III\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: December 31, 2023\r\n	admin	Experiences	1
775862	2025-03-26	14:50:07.3435644	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3962\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2023\r\nIsGovernmentService: True\r\nMonthlySalary: 29,712.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 13-\r\nStatus: Permanent\r\nToDate: January 16, 2023\r\n	admin	Experiences	1
775863	2025-03-26	14:50:07.3485813	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3962\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: June 13, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 28,180.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: December 31, 2022\r\n	admin	Experiences	1
775864	2025-03-26	14:50:07.3535972	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3962\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2022\r\nIsGovernmentService: True\r\nMonthlySalary: 27,892.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-2\r\nStatus: Permanent\r\nToDate: June 12, 2022\r\n	admin	Experiences	1
775865	2025-03-26	14:50:07.3587125	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3962\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: October 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 26,336.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2021\r\n	admin	Experiences	1
775866	2025-03-26	14:50:07.3661942	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3962\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2021\r\nIsGovernmentService: True\r\nMonthlySalary: 26,052.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: September 30, 2021\r\n	admin	Experiences	1
775867	2025-03-26	14:50:47.8190568	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3962\r\nCompanyInstitution: SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2020\r\nIsGovernmentService: True\r\nMonthlySalary: 24,328.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2020\r\n	admin	Experiences	1
775871	2025-03-26	14:54:14.0999239	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3959\r\nCourse: \r\nCourseId: 1406\r\nCourseOrMajor: \r\nDateFrom: 1992\r\nDateTo: 1996\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: CAGAYAN STATE UNIVERSITY\r\nYearGraduated: 1997\r\n	admin	EducationalBackgrounds	1
775872	2025-03-26	14:54:14.1129239	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3959\r\nCourse: \r\nCourseId: 1318\r\nCourseOrMajor: \r\nDateFrom: 2002\r\nDateTo: 2003\r\nEducationalAttainment: 18 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: PHILIPPINE WOMEN'S UNIVERSTIY\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
775873	2025-03-26	14:55:21.9954652	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIPONPON ISLA VERDE\r\nBasicInformationId: 3960\r\nBirthDate: January 20, 1965\r\nBirthPlace: LIPPONPON ISLA VERDE, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: N/A\r\nExtensionName: \r\nFirstName: SEBASTIAN\r\nFullName: SEBASTIAN C. ANONUEVO\r\nGender: Male\r\nGovernmentIdIssuedDate: December 20, 2021\r\nGovernmentIdNumber: 5392150846103825\r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: NATIONAL ID\r\nGSIS: 02002927727\r\nHDMF: 1490-0083-2531\r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: CASTILLO\r\nMobileNumber: 0\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIPONPON ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000021519-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 900-431-653-0000\r\nWeight: 70\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIPONPON ISLA VERDE\r\nBasicInformationId: 3960\r\nBirthDate: January 20, 1965\r\nBirthPlace: LIPONPON ISLA VERDE, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: N/A\r\nExtensionName: \r\nFirstName: SEBASTIAN\r\nFullName: SEBASTIAN C. ANONUEVO\r\nGender: Male\r\nGovernmentIdIssuedDate: December 20, 2021\r\nGovernmentIdNumber: 5392150846103825\r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: NATIONAL ID\r\nGSIS: 02002927727\r\nHDMF: 1490-0083-2531\r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: CASTILLO\r\nMobileNumber: 0\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIPONPON ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000021519-7\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: 900-431-653-0000\r\nWeight: 70\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775874	2025-03-26	15:16:27.9755807	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3962\r\nCompanyInstitution: VERDE ISLAND DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 2019\r\nIsGovernmentService: True\r\nMonthlySalary: 22,938.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2019\r\n	admin	Experiences	1
775875	2025-03-26	15:16:27.9808127	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3962\r\nCompanyInstitution: VERDE ISLAND DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 2018\r\nIsGovernmentService: True\r\nMonthlySalary: 22,149.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2018\r\n	admin	Experiences	1
775876	2025-03-26	15:16:27.9858474	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3962\r\nCompanyInstitution: VERDE ISLAND DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 2017\r\nIsGovernmentService: True\r\nMonthlySalary: 21,387.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2017\r\n	admin	Experiences	1
775877	2025-03-26	15:16:27.9908637	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3962\r\nCompanyInstitution: VERDE ISLAND DISTRICT\r\nExperienceId: 0\r\nFromDate: June 13, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 20,651.00\r\nPositionHeld: TEACHER II\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: December 31, 2016\r\n	admin	Experiences	1
775878	2025-03-26	15:16:27.9958897	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3962\r\nCompanyInstitution: VERDE ISLAND DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 2016\r\nIsGovernmentService: True\r\nMonthlySalary: 20,142.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 12-1\r\nStatus: Permanent\r\nToDate: June 12, 2016\r\n	admin	Experiences	1
775879	2025-03-26	15:16:27.9999297	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3962\r\nCompanyInstitution: VERDE ISLAND DISTRICT\r\nExperienceId: 0\r\nFromDate: October 06, 2013\r\nIsGovernmentService: True\r\nMonthlySalary: 19,495.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-4\r\nStatus: Permanent\r\nToDate: December 31, 2015\r\n	admin	Experiences	1
775880	2025-03-26	15:16:28.0049441	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3962\r\nCompanyInstitution: VERDE ISLAND DISTRICT\r\nExperienceId: 0\r\nFromDate: June 01, 2012\r\nIsGovernmentService: True\r\nMonthlySalary: 19,302.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: October 05, 2013\r\n	admin	Experiences	1
775899	2025-03-26	15:29:59.9805499	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3962\r\nEmployeeTrainingId: 0\r\nFromDate: January 24, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: SAN AGAPITO ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: January 30, 2024\r\nTrainingId: 16561\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775881	2025-03-26	15:16:28.0090193	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3962\r\nCompanyInstitution: VERDE ISLAND DISTRICT\r\nExperienceId: 0\r\nFromDate: October 06, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 17,994.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-3\r\nStatus: Permanent\r\nToDate: May 31, 2012\r\n	admin	Experiences	1
775882	2025-03-26	15:16:28.0140374	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3962\r\nCompanyInstitution: VERDE ISLAND DISTRICT\r\nExperienceId: 0\r\nFromDate: June 01, 2011\r\nIsGovernmentService: True\r\nMonthlySalary: 17,765.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: October 05, 2011\r\n	admin	Experiences	1
775883	2025-03-26	15:16:28.0190850	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3962\r\nCompanyInstitution: VERDE ISLAND DISTRICT\r\nExperienceId: 0\r\nFromDate: June 24, 2010\r\nIsGovernmentService: True\r\nMonthlySalary: 16,419.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: January 05, 2011\r\n	admin	Experiences	1
775884	2025-03-26	15:16:28.0241103	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3962\r\nCompanyInstitution: VERDE ISLAND DISTRICT\r\nExperienceId: 0\r\nFromDate: July 01, 2009\r\nIsGovernmentService: True\r\nMonthlySalary: 15,072.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 23, 2010\r\n	admin	Experiences	1
775885	2025-03-26	15:16:28.0281230	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3962\r\nCompanyInstitution: VERDE ISLAND DISTRICT\r\nExperienceId: 0\r\nFromDate: July 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 12,951.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 30, 2009\r\n	admin	Experiences	1
775886	2025-03-26	15:16:28.0331461	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3962\r\nCompanyInstitution: VERDE ISLAND DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 11,774.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
775887	2025-03-26	15:16:28.0382004	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3962\r\nCompanyInstitution: VERDE ISLAND DISTRICT\r\nExperienceId: 0\r\nFromDate: January 01, 2008\r\nIsGovernmentService: True\r\nMonthlySalary: 11,774.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-2\r\nStatus: Permanent\r\nToDate: June 30, 2008\r\n	admin	Experiences	1
775888	2025-03-26	15:22:41.8146165	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO KANLURAN\r\nBarangay: SIRANG LUPA\r\nBasicInformationId: 0\r\nBirthDate: December 04, 1970\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: crispina.alea001@deped.gov.ph\r\nExtensionName: \r\nFirstName: CRISPINA\r\nFullName: CRISPINA B. ALEA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALEA\r\nMaidenName: \r\nMiddleName: BUENVIAJE\r\nMobileNumber: 09457139478\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO KANLURAN\r\nPermanentBarangay: SIRANG LUPA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 3\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 3\r\nTIN: \r\nWeight: 74\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775889	2025-03-26	15:22:41.8720936	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3963\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
775892	2025-03-26	15:24:14.8276681	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: 2023 DICTRICT ASSEMBLY FOR STRATEGIC DIRECTIONS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
775895	2025-03-26	15:27:16.6423734	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTIRICT WIDE ROLL OUT ON ELLN\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
775896	2025-03-26	15:28:05.6359552	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: DISTIRCT WIDE ROLL OUT ON ELLN\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
775890	2025-03-26	15:24:15.6314500	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: SIRANG LUPA\r\nBasicInformationId: 0\r\nBirthDate: March 29, 1997\r\nBirthPlace: SIRANG LUPA, BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: mariafatima.cueto@deped.gov.ph\r\nExtensionName: \r\nFirstName: MARIA FATIMA\r\nFullName: MARIA FATIMA B. CUETO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: CUETO\r\nMaidenName: \r\nMiddleName: BONGAT\r\nMobileNumber: 09150661522\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: SIRANG LUPA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 58\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775891	2025-03-26	15:24:15.6404628	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3964\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
775893	2025-03-26	15:26:08.8359204	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 126\r\nAddress2: SITIO CENTRO\r\nBarangay: SORO SORO KARSADA\r\nBasicInformationId: 0\r\nBirthDate: May 21, 1993\r\nBirthPlace: SORO SORO KARSADA, BATANGAS CITY\r\nBloodType: A\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: kriziamarie.macatangay@deped.gov.ph\r\nExtensionName: \r\nFirstName: KRIZIA MARIE\r\nFullName: KRIZIA MARIE MACATANGAY\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.5\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: MACATANGAY\r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: 09088751643\r\nNationality: Filipino\r\nPermanentAddress1: 126\r\nPermanentAddress2: SITIO CENTRO\r\nPermanentBarangay: SORO SORO KARSADA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 54\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775894	2025-03-26	15:26:08.8449568	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3965\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
775897	2025-03-26	15:28:34.1344454	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 17\r\nAddress2: LAMAO\r\nBarangay: LIBJO\r\nBasicInformationId: 0\r\nBirthDate: December 04, 1993\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: jodelyn.samson@deped.gov.ph\r\nExtensionName: \r\nFirstName: JODELYN\r\nFullName: JODELYN S. SAMSON-MAGALANG\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.48\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: SAMSON-MAGALANG\r\nMaidenName: \r\nMiddleName: SANCHEZ\r\nMobileNumber: 09952934220\r\nNationality: Filipino\r\nPermanentAddress1: 17\r\nPermanentAddress2: LAMAO\r\nPermanentBarangay: LIBJO\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 65\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775898	2025-03-26	15:28:34.1432858	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3966\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
775911	2025-03-26	15:30:08.7366436	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3963\r\nBirthDate: December 20, 1998\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: VINCENT ADRIELLE\r\nFullName: VINCENT ADRIELLE BUENVIAJE ALEA\r\nGender: Male\r\nLastName: ALEA\r\nMaidenName: \r\nMiddleName: BUENVIAJE\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775912	2025-03-26	15:30:08.7491331	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3963\r\nBirthDate: January 04, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ALLEN JOSHUA\r\nFullName: ALLEN JOSHUA BUENVIAJE ALEA\r\nGender: Male\r\nLastName: ALEA\r\nMaidenName: \r\nMiddleName: BUENVIAJE\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775900	2025-03-26	15:29:59.9865595	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3962\r\nEmployeeTrainingId: 0\r\nFromDate: October 13, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: SAN AGUSTIN INTEGRATED SCHOOL\r\nStatus: \r\nToDate: October 13, 2023\r\nTrainingId: 16794\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775901	2025-03-26	15:29:59.9905592	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3962\r\nEmployeeTrainingId: 0\r\nFromDate: August 14, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: ALANGILAN CENTRAL ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: August 14, 2023\r\nTrainingId: 15773\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775902	2025-03-26	15:29:59.9965595	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3962\r\nEmployeeTrainingId: 0\r\nFromDate: August 02, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: BATANGAS CITY SPORTS COLISEUM, BATANGAS CITY\r\nStatus: \r\nToDate: August 02, 2023\r\nTrainingId: 16597\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775903	2025-03-26	15:30:00.0005592	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3962\r\nEmployeeTrainingId: 0\r\nFromDate: March 10, 2023\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: PARANG CUEVA ELEMENTARY SCHOOL\r\nStatus: \r\nToDate: March 10, 2023\r\nTrainingId: 16780\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775904	2025-03-26	15:30:00.0075599	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3962\r\nCompanyInstitution: NEW DISTRICT \r\nExperienceId: 0\r\nFromDate: July 01, 2007\r\nIsGovernmentService: True\r\nMonthlySalary: 11,486.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2007\r\n	admin	Experiences	1
775905	2025-03-26	15:30:00.0125595	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3962\r\nCompanyInstitution: NEW DISTRICT \r\nExperienceId: 0\r\nFromDate: January 01, 2005\r\nIsGovernmentService: True\r\nMonthlySalary: 10,442.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: June 30, 2007\r\n	admin	Experiences	1
775906	2025-03-26	15:30:00.0180352	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3962\r\nCompanyInstitution: NEW DISTRICT \r\nExperienceId: 0\r\nFromDate: January 01, 2002\r\nIsGovernmentService: True\r\nMonthlySalary: 10,188.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: December 31, 2004\r\n	admin	Experiences	1
775907	2025-03-26	15:30:00.0221115	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3962\r\nCompanyInstitution: NEW DISTRICT \r\nExperienceId: 0\r\nFromDate: July 01, 2001\r\nIsGovernmentService: True\r\nMonthlySalary: 9,939.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 2001\r\n	admin	Experiences	1
775908	2025-03-26	15:30:00.0281338	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3962\r\nCompanyInstitution: NEW DISTRICT \r\nExperienceId: 0\r\nFromDate: January 01, 2000\r\nIsGovernmentService: True\r\nMonthlySalary: 9,466.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: June 30, 2001\r\n	admin	Experiences	1
775909	2025-03-26	15:30:00.0321472	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3962\r\nCompanyInstitution: NEW DISTRICT \r\nExperienceId: 0\r\nFromDate: January 01, 1999\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 1999\r\n	admin	Experiences	1
775910	2025-03-26	15:30:00.0372559	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3962\r\nCompanyInstitution: NEW DISTRICT \r\nExperienceId: 0\r\nFromDate: October 05, 1998\r\nIsGovernmentService: True\r\nMonthlySalary: 8,605.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-\r\nStatus: Permanent\r\nToDate: December 31, 1998\r\n	admin	Experiences	1
775915	2025-03-26	15:30:34.3615157	<Undetected>	Insert	BasicInformationId: \r\nSkillId: \r\nSkillName: \r\n	BasicInformationId: 3962\r\nSkillId: 0\r\nSkillName: DANCING AND ACTING\r\n	admin	Skills	1
775916	2025-03-26	15:30:34.3665310	<Undetected>	Insert	BasicInformationId: \r\nRecognitionId: \r\nRecognitionName: \r\n	BasicInformationId: 3962\r\nRecognitionId: 0\r\nRecognitionName: N/A\r\n	admin	Recognitions	1
775917	2025-03-26	15:30:34.3765959	<Undetected>	Insert	BasicInformationId: \r\nOrganizationId: \r\nOrganizationName: \r\n	BasicInformationId: 3962\r\nOrganizationId: 0\r\nOrganizationName: N/A\r\n	admin	Organizations	1
775925	2025-03-26	15:32:37.5190019	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3962\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09475854673\r\nExtensionName: \r\nFirstName: RIZA\r\nLastName: EBORA\r\nMiddleName: C.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775913	2025-03-26	15:30:08.7564823	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3963\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09951718194\r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: ROGELIO\r\nFullName: ROGELIO CENA ALEA\r\nGender: Male\r\nLastName: ALEA\r\nMaidenName: \r\nMiddleName: CENA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
775914	2025-03-26	15:30:08.7689669	<Undetected>	Update	BasicInformationId: 3963\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3760\r\n	BasicInformationId: 3963\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3760\r\n	admin	Questionnaires	1
775918	2025-03-26	15:31:59.5925586	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: HONORABLE MENTION\r\nBasicInformationId: 3963\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1978\r\nDateTo: 1984\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: SIRANG LUPA ELEMENTARY SCHOOL\r\nYearGraduated: 1984\r\n	admin	EducationalBackgrounds	1
775919	2025-03-26	15:31:59.5976485	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3963\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 1984\r\nDateTo: 1988\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: BATANGAS NATIONAL HIGH SCHOOL\r\nYearGraduated: 1988\r\n	admin	EducationalBackgrounds	1
775920	2025-03-26	15:31:59.6016620	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3963\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 1988\r\nDateTo: 1993\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: \r\nSchoolorUniversity: WESTERN PHILIPPINE COLLEGES\r\nYearGraduated: 1993\r\n	admin	EducationalBackgrounds	1
775921	2025-03-26	15:31:59.6139788	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3963\r\nCourse: \r\nCourseId: 1348\r\nCourseOrMajor: \r\nDateFrom: 2002\r\nDateTo: 2006\r\nEducationalAttainment: 42 UNITS\r\nEducationalBackgroundId: 0\r\nLevel: Master's Degree\r\nMajor: \r\nSchoolorUniversity: GOLDEN GATE COLLEGES\r\nYearGraduated: \r\n	admin	EducationalBackgrounds	1
775922	2025-03-26	15:31:59.6277909	<Undetected>	Update	BasicInformationId: 3963\r\nBirthDate: December 20, 1998\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4389\r\nExtensionName: \r\nFirstName: VINCENT ADRIELLE\r\nFullName: VINCENT ADRIELLE BUENVIAJE ALEA\r\nGender: Male\r\nLastName: ALEA\r\nMaidenName: \r\nMiddleName: BUENVIAJE\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3963\r\nBirthDate: December 20, 1998\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4389\r\nExtensionName: \r\nFirstName: VINCENT ADRIELLE\r\nFullName: VINCENT ADRIELLE ALEA\r\nGender: Male\r\nLastName: ALEA\r\nMaidenName: \r\nMiddleName: BUENVIAJE\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775923	2025-03-26	15:31:59.6328255	<Undetected>	Update	BasicInformationId: 3963\r\nBirthDate: January 04, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4390\r\nExtensionName: \r\nFirstName: ALLEN JOSHUA\r\nFullName: ALLEN JOSHUA BUENVIAJE ALEA\r\nGender: Male\r\nLastName: ALEA\r\nMaidenName: \r\nMiddleName: BUENVIAJE\r\nOccupation: \r\nRelationship: Child\r\n	BasicInformationId: 3963\r\nBirthDate: January 04, 2002\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4390\r\nExtensionName: \r\nFirstName: ALLEN JOSHUA\r\nFullName: ALLEN JOSHUA ALEA\r\nGender: Male\r\nLastName: ALEA\r\nMaidenName: \r\nMiddleName: BUENVIAJE\r\nOccupation: \r\nRelationship: Child\r\n	admin	EmployeeRelatives	1
775924	2025-03-26	15:31:59.6388369	<Undetected>	Update	BasicInformationId: 3963\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09951718194\r\nEmployeeRelativeId: 4391\r\nExtensionName: \r\nFirstName: ROGELIO\r\nFullName: ROGELIO CENA ALEA\r\nGender: Male\r\nLastName: ALEA\r\nMaidenName: \r\nMiddleName: CENA\r\nOccupation: \r\nRelationship: Husband\r\n	BasicInformationId: 3963\r\nBirthDate: January 01, 0001\r\nCivilStatus: Married\r\nContactNumber: 09951718194\r\nEmployeeRelativeId: 4391\r\nExtensionName: \r\nFirstName: ROGELIO\r\nFullName: ROGELIO ALEA\r\nGender: Male\r\nLastName: ALEA\r\nMaidenName: \r\nMiddleName: CENA\r\nOccupation: \r\nRelationship: Husband\r\n	admin	EmployeeRelatives	1
775928	2025-03-26	15:33:16.0823538	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO KANLURAN\r\nBarangay: SIRANG LUPA\r\nBasicInformationId: 3963\r\nBirthDate: December 04, 1970\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: crispina.alea001@deped.gov.ph\r\nExtensionName: \r\nFirstName: CRISPINA\r\nFullName: CRISPINA B. ALEA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALEA\r\nMaidenName: \r\nMiddleName: BUENVIAJE\r\nMobileNumber: 09457139478\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO KANLURAN\r\nPermanentBarangay: SIRANG LUPA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 3\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 3\r\nTIN: \r\nWeight: 74\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: SITIO KANLURAN\r\nBarangay: SIRANG LUPA\r\nBasicInformationId: 3963\r\nBirthDate: December 04, 1970\r\nBirthPlace: BATANGAS CITY\r\nBloodType: O\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: crispina.alea001@deped.gov.ph\r\nExtensionName: \r\nFirstName: CRISPINA\r\nFullName: CRISPINA B. ALEA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 06, 1997\r\nGovernmentIdNumber: 0018567\r\nGovernmentIdPlaceIssued: PRC LUCENA\r\nGovernmentIssuedId: PRC\r\nGSIS: 02002998106\r\nHDMF: 1490-0090-2881\r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ALEA\r\nMaidenName: \r\nMiddleName: BUENVIAJE\r\nMobileNumber: 09457139478\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: SITIO KANLURAN\r\nPermanentBarangay: SIRANG LUPA\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: PUROK 3\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000007833-5\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: PUROK 3\r\nTIN: 187-136-638-0000\r\nWeight: 74\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775930	2025-03-26	15:34:38.6832270	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3963\r\nCharacterReferenceId: 0\r\nCompanyAddress: PUROK 4 SIRANG LUPA BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09178558878\r\nExtensionName: \r\nFirstName: ROSALITO\r\nLastName: DELEN\r\nMiddleName: A\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775926	2025-03-26	15:32:37.5409804	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3962\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09203327289\r\nExtensionName: \r\nFirstName: CORAZON\r\nLastName: ALMAZAN\r\nMiddleName: E.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775927	2025-03-26	15:32:37.5453684	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3962\r\nCharacterReferenceId: 0\r\nCompanyAddress: SAN AGAPITO, ISLA VERDE, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09519657466\r\nExtensionName: \r\nFirstName: ROMMEL\r\nLastName: EBORA\r\nMiddleName: R.\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775929	2025-03-26	15:34:07.4598109	<Undetected>	Update	AccountName: \r\nAccountNumber: \r\nAddress1: 6\r\nAddress2: \r\nBarangay: BARANGAY 4\r\nBasicInformationId: 3962\r\nBirthDate: November 20, 1969\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: anonuevomarites018@gmail.com\r\nExtensionName: \r\nFirstName: MARITES\r\nFullName: MARITES P. ANONUEVO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: PATULAY\r\nMobileNumber: 09605572149\r\nNationality: Filipino\r\nPermanentAddress1: 6\r\nPermanentAddress2: \r\nPermanentBarangay: BARANGAY 4\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: P. HERRERA\r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: P. HERRERA\r\nTIN: \r\nWeight: 70\r\nZipCode: 4200\r\n	AccountName: \r\nAccountNumber: \r\nAddress1: 6\r\nAddress2: \r\nBarangay: BARANGAY 4\r\nBasicInformationId: 3962\r\nBirthDate: November 20, 1969\r\nBirthPlace: BATANGAS CITY\r\nBloodType: B\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Married\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: anonuevomarites018@gmail.com\r\nExtensionName: \r\nFirstName: MARITES\r\nFullName: MARITES P. ANONUEVO\r\nGender: Female\r\nGovernmentIdIssuedDate: January 16, 1997\r\nGovernmentIdNumber: 0027252\r\nGovernmentIdPlaceIssued: PRC MANILA\r\nGovernmentIssuedId: PRC ID\r\nGSIS: 69112001140\r\nHDMF: 1490-0090-2068\r\nHeight: 1.62\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: ANONUEVO\r\nMaidenName: \r\nMiddleName: PATULAY\r\nMobileNumber: 09605572149\r\nNationality: Filipino\r\nPermanentAddress1: 6\r\nPermanentAddress2: \r\nPermanentBarangay: BARANGAY 4\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: P. HERRERA\r\nPermanentZipCode: 4200\r\nPhilhealth: 09-000053177-3\r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: P. HERRERA\r\nTIN: 920-461-849-0000\r\nWeight: 70\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775934	2025-03-26	15:37:48.3658122	<Undetected>	Insert	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: \r\nBasicInformationId: \r\nBirthDate: \r\nBirthPlace: \r\nBloodType: \r\nCitizenshipType: \r\nCity: \r\nCivilStatus: \r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: \r\nEmailAddress: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nGovernmentIdIssuedDate: \r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: \r\nImageName: \r\nIsActive: \r\nLandlineNumber: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nMobileNumber: \r\nNationality: \r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: \r\nPermanentCity: \r\nPermanentCountry: \r\nPermanentProvince: \r\nPermanentStreetName: \r\nPermanentZipCode: \r\nPhilhealth: \r\nProvince: \r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: \r\nZipCode: \r\n	AccountName: \r\nAccountNumber: \r\nAddress1: \r\nAddress2: \r\nBarangay: LIPONPON ISLA VERDE\r\nBasicInformationId: 0\r\nBirthDate: June 06, 1999\r\nBirthPlace: LIPONPON ISLA VERDE, BATANGAS CITY\r\nBloodType: O+\r\nCitizenshipType: \r\nCity: BATANGAS CITY\r\nCivilStatus: Single\r\nContactAddress: \r\nContactName: \r\nContactNumber: \r\nContactRelationship: \r\nCountry: Philippines\r\nEmailAddress: nicabaja06@gmail.com\r\nExtensionName: \r\nFirstName: NICA\r\nFullName: NICA M. BAJA\r\nGender: Female\r\nGovernmentIdIssuedDate: January 01, 0001\r\nGovernmentIdNumber: \r\nGovernmentIdPlaceIssued: \r\nGovernmentIssuedId: \r\nGSIS: \r\nHDMF: \r\nHeight: 1.59\r\nImageName: \r\nIsActive: True\r\nLandlineNumber: \r\nLastName: BAJA\r\nMaidenName: \r\nMiddleName: MEDINA\r\nMobileNumber: 09125352837\r\nNationality: Filipino\r\nPermanentAddress1: \r\nPermanentAddress2: \r\nPermanentBarangay: LIPONPON ISLA VERDE\r\nPermanentCity: BATANGAS CITY\r\nPermanentCountry: Philippines\r\nPermanentProvince: BATANGAS\r\nPermanentStreetName: \r\nPermanentZipCode: 4200\r\nPhilhealth: \r\nProvince: BATANGAS\r\nReligion: \r\nSalutation: \r\nSSS: \r\nStreetName: \r\nTIN: \r\nWeight: 47\r\nZipCode: 4200\r\n	admin	BasicInformation	1
775935	2025-03-26	15:37:48.3749480	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3967\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: AVELINO\r\nFullName: AVELINO CUETO BAJA\r\nGender: Male\r\nLastName: BAJA\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
775936	2025-03-26	15:37:48.3749480	<Undetected>	Insert	BasicInformationId: \r\nBirthDate: \r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: \r\nExtensionName: \r\nFirstName: \r\nFullName: \r\nGender: \r\nLastName: \r\nMaidenName: \r\nMiddleName: \r\nOccupation: \r\nRelationship: \r\n	BasicInformationId: 3967\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 0\r\nExtensionName: \r\nFirstName: CLARITA\r\nFullName: CLARITA AMUL MEDINA\r\nGender: Female\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: AMUL\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
775937	2025-03-26	15:37:48.3749480	<Undetected>	Insert	BasicInformationId: \r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: \r\n	BasicInformationId: 3967\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 0\r\n	admin	Questionnaires	1
775931	2025-03-26	15:34:38.6882270	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3963\r\nCharacterReferenceId: 0\r\nCompanyAddress: DIVISION OF BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09667522908\r\nExtensionName: \r\nFirstName: CHARITHY\r\nLastName: MAGADIA\r\nMiddleName: S\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775932	2025-03-26	15:34:38.6932266	<Undetected>	Insert	BasicInformationId: \r\nCharacterReferenceId: \r\nCompanyAddress: \r\nCompanyName: \r\nContactNumber: \r\nExtensionName: \r\nFirstName: \r\nLastName: \r\nMiddleName: \r\nPosition: \r\nStatus: \r\n	BasicInformationId: 3963\r\nCharacterReferenceId: 0\r\nCompanyAddress: STA. RITA, BATANGAS CITY\r\nCompanyName: \r\nContactNumber: 09277106703\r\nExtensionName: \r\nFirstName: CHRISTOPHER\r\nLastName: PANGANIBAN\r\nMiddleName: M\r\nPosition: \r\nStatus: \r\n	admin	CharacterReferences	1
775933	2025-03-26	15:37:05.7757274	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: BOY SCOUT OF THE PHILIPPINES ADULT LEADER\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
775938	2025-03-26	15:37:58.8608612	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: LEARNING CAMP VOLUNTEER NATIONAL LEARNING CAMP 2024\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
775939	2025-03-26	15:38:36.9694730	<Undetected>	Insert	SpecificDepartmentId: \r\nSpecificEmploymentStatusId: \r\nSpecificPositionId: \r\nTitleOfConference: \r\nTrainingId: \r\nType: \r\n	SpecificDepartmentId: 0\r\nSpecificEmploymentStatusId: 0\r\nSpecificPositionId: 0\r\nTitleOfConference: STRATEGIES FOR TEACHING DIVERSE LEARNERS\r\nTrainingId: 0\r\nType:  \r\n	admin	Trainings	1
775940	2025-03-26	16:01:57.2612312	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3963\r\nEmployeeTrainingId: 0\r\nFromDate: November 25, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES\r\nStatus: \r\nToDate: November 29, 2024\r\nTrainingId: 16319\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775941	2025-03-26	16:01:57.2662839	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3963\r\nEmployeeTrainingId: 0\r\nFromDate: November 20, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION DISTRICT II\r\nStatus: \r\nToDate: November 20, 2024\r\nTrainingId: 16593\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775942	2025-03-26	16:01:57.2766484	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3963\r\nEmployeeTrainingId: 0\r\nFromDate: September 21, 2024\r\nHours: 8\r\nNatureOfParticipation: \r\nSponsoringAgency: BOY SCOUT OF THE PHILIPPINES BATANGAS CITY CHAPTER\r\nStatus: \r\nToDate: September 21, 2024\r\nTrainingId: 16797\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775943	2025-03-26	16:01:57.2806547	<Undetected>	Insert	BasicInformationId: \r\nEmployeeTrainingId: \r\nFromDate: \r\nHours: \r\nNatureOfParticipation: \r\nSponsoringAgency: \r\nStatus: \r\nToDate: \r\nTrainingId: \r\nTrainingPerformanceRate: \r\n	BasicInformationId: 3963\r\nEmployeeTrainingId: 0\r\nFromDate: July 01, 2024\r\nHours: 40\r\nNatureOfParticipation: \r\nSponsoringAgency: DEPARTMENT OF EDUCATION\r\nStatus: \r\nToDate: July 19, 2024\r\nTrainingId: 16798\r\nTrainingPerformanceRate: 0\r\n	admin	EmployeeTrainings	1
775944	2025-03-27	08:55:52.8739047	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3967\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2004\r\nDateTo: 2011\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: Elementary Graduate\r\nMajor: \r\nSchoolorUniversity: LIPONPON ELEMENTARY SCHOOL\r\nYearGraduated: 2011\r\n	admin	EducationalBackgrounds	1
775945	2025-03-27	08:55:52.8803094	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3967\r\nCourse: \r\nCourseId: 0\r\nCourseOrMajor: \r\nDateFrom: 2011\r\nDateTo: 2015\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: High School Graduate\r\nMajor: \r\nSchoolorUniversity: SAN ANTONIO NATIONAL HIGH SCHOOL\r\nYearGraduated: 2015\r\n	admin	EducationalBackgrounds	1
775946	2025-03-27	08:55:52.8863420	<Undetected>	Insert	Awards: \r\nBasicInformationId: \r\nCourse: \r\nCourseId: \r\nCourseOrMajor: \r\nDateFrom: \r\nDateTo: \r\nEducationalAttainment: \r\nEducationalBackgroundId: \r\nLevel: \r\nMajor: \r\nSchoolorUniversity: \r\nYearGraduated: \r\n	Awards: \r\nBasicInformationId: 3967\r\nCourse: \r\nCourseId: 1298\r\nCourseOrMajor: \r\nDateFrom: 2015\r\nDateTo: 2019\r\nEducationalAttainment: \r\nEducationalBackgroundId: 0\r\nLevel: College Graduate\r\nMajor: MAJOR IN GENERAL EDUCATION\r\nSchoolorUniversity: STA. TERESA COLLEGE\r\nYearGraduated: 2019\r\n	admin	EducationalBackgrounds	1
775947	2025-03-27	08:55:52.8947285	<Undetected>	Insert	BasicInformationId: \r\nDateOfExamination: \r\nDateOfRelease: \r\nEligibilityDocumentTypeId: \r\nEligibilityId: \r\nEligibilityProcessStatusId: \r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: \r\nLevelOfEligibility: \r\nLicenseNumber: \r\nPlaceOfExamination: \r\nRating: \r\nTitle: \r\n	BasicInformationId: 3967\r\nDateOfExamination: March 27, 2022\r\nDateOfRelease: June 06, 2025\r\nEligibilityDocumentTypeId: 6\r\nEligibilityId: 0\r\nEligibilityProcessStatusId: 0\r\nExpirationDate: \r\nImplementationDate: \r\nImplementationExpiration: \r\nLastDateOfExamination: March 27, 2022\r\nLevelOfEligibility: Second Level (Professional)\r\nLicenseNumber: 1926244\r\nPlaceOfExamination: LUCENA\r\nRating: 78.00\r\nTitle: LICENSURE EXAMINATION FOR TEACHERS\r\n	admin	Eligibilities	1
775948	2025-03-27	08:55:52.8999698	<Undetected>	Update	BasicInformationId: 3967\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4392\r\nExtensionName: \r\nFirstName: AVELINO\r\nFullName: AVELINO CUETO BAJA\r\nGender: Male\r\nLastName: BAJA\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Father\r\n	BasicInformationId: 3967\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4392\r\nExtensionName: \r\nFirstName: AVELINO\r\nFullName: AVELINO BAJA\r\nGender: Male\r\nLastName: BAJA\r\nMaidenName: \r\nMiddleName: CUETO\r\nOccupation: \r\nRelationship: Father\r\n	admin	EmployeeRelatives	1
775949	2025-03-27	08:55:52.9052384	<Undetected>	Update	BasicInformationId: 3967\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4393\r\nExtensionName: \r\nFirstName: CLARITA\r\nFullName: CLARITA AMUL MEDINA\r\nGender: Female\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: AMUL\r\nOccupation: \r\nRelationship: Mother\r\n	BasicInformationId: 3967\r\nBirthDate: January 01, 0001\r\nCivilStatus: \r\nContactNumber: \r\nEmployeeRelativeId: 4393\r\nExtensionName: \r\nFirstName: CLARITA\r\nFullName: CLARITA MEDINA\r\nGender: Female\r\nLastName: MEDINA\r\nMaidenName: \r\nMiddleName: AMUL\r\nOccupation: \r\nRelationship: Mother\r\n	admin	EmployeeRelatives	1
775950	2025-03-27	08:55:52.9094152	<Undetected>	Update	BasicInformationId: 3967\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: \r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3764\r\n	BasicInformationId: 3967\r\nQ34a: \r\nQ34b: \r\nQ35a: \r\nQ35b: No\r\nQ36a: \r\nQ37a: \r\nQ38a: \r\nQ38b: \r\nQ39: \r\nQ40a: \r\nQ40b: \r\nQ40c: \r\nQuestionnaireId: 3764\r\n	admin	Questionnaires	1
775951	2025-03-27	08:59:18.5177690	<Undetected>	Insert	BasicInformationId: \r\nCompanyInstitution: \r\nExperienceId: \r\nFromDate: \r\nIsGovernmentService: \r\nMonthlySalary: \r\nPositionHeld: \r\nRateTypeName: \r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: \r\nStatus: \r\nToDate: \r\n	BasicInformationId: 3967\r\nCompanyInstitution: SCHOOLS DIVISION BATANGAS CITY / SAN AGAPITO ELEMENTARY SCHOOL\r\nExperienceId: 0\r\nFromDate: January 01, 2025\r\nIsGovernmentService: True\r\nMonthlySalary: 30,024.00\r\nPositionHeld: TEACHER I\r\nRateTypeName: Monthly\r\nReasonOfLeaving: \r\nRemarks: \r\nSalaryGradeAndStepIncrement: 11-1\r\nStatus: Permanent\r\nToDate: March 27, 2025\r\n	admin	Experiences	1
\.


--
-- TOC entry 4553 (class 0 OID 0)
-- Dependencies: 187
-- Name: AuditTrails_AuditTrailId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"AuditTrails_AuditTrailId_seq"', 775951, true);


--
-- TOC entry 3810 (class 0 OID 16486)
-- Dependencies: 188
-- Data for Name: BankAccounts; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "BankAccounts" ("BankAccountNumber", "BankName", "IsActive", "EmployeeId") FROM stdin;
\.


--
-- TOC entry 3811 (class 0 OID 16492)
-- Dependencies: 189
-- Data for Name: BasicInformation; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "BasicInformation" ("LastName", "FirstName", "MiddleName", "MaidenName", "ExtensionName", "FullName", "Gender", "BirthDate", "BirthPlace", "Religion", "Address1", "Address2", "City", "Province", "LandlineNumber", "MobileNumber", "EmailAddress", "SSS", "TIN", "HDMF", "ContactName", "ContactRelationship", "ContactAddress", "ContactNumber", "Nationality", "Weight", "Height", "IsActive", "ImageName", "BasicInformationId", "GSIS", "Philhealth", "CivilStatus", "BloodType", "Barangay", "AccountName", "AccountNumber", "PermanentAddress1", "PermanentAddress2", "PermanentBarangay", "PermanentCity", "PermanentProvince", "Country", "PermanentCountry", "StreetName", "PermanentStreetName", "ZipCode", "PermanentZipCode", "CitizenshipType", "GovernmentIssuedId", "GovernmentIdNumber", "GovernmentIdIssuedDate", "GovernmentIdPlaceIssued", "Salutation") FROM stdin;
Admin	Admin				Admin	Male	2024-01-01	Balanga Bataan					BATAAN													1.6	t		1													Philippines									0001-01-01		
MADERAZO	AUBREY	MAGTIBAY			AUBREY M. MADERAZO	Female	1997-05-29	BATANGAS CITY		159B		ROSARIO	BATANGAS		09485377758	magtibayaubrey@gmail.com		344-655-305-0000	1212-3466-8468					Filipino	60	1.54	t	\N	3610	02005568478	09-250782738-3	Single	B+	MARILAG			159B		MARILAG	ROSARIO	BATANGAS	Philippines	Philippines	SITIO MAHARLIKA	SITIO MAHARLIKA	4205	4205				0001-01-01		
BEDIO	MATT RIVEN	DE REAL			MATT RIVEN DR. BEDIO	Male	1999-04-10	CALOOCAN CITY	ROMAN CATHOLIC	1253		BATANGAS CITY	BATANGAS		09673679096		34-8657493-7	746-791-991-0000	1212-5608-9438					Filipino	80	171	t	\N	3600		01-026505269-5	Single	O	KUMINTANG IBABA			1253	N/A	KUMINTANG IBABA	BATANGAS CITY	BATANGAS	Philippines	Philippines	ONA ROAD EXTENSION	ONA ROAD EXTENSION	4200	4200				0001-01-01		
CELEMIN	LEAH	MEDINA			LEAH M. CELEMIN	Female	1976-12-30	Batangas City	Christian	291	N/A	Batangas City	Batangas	0434255085	09778307399	leah.celemin@deped.gov.ph								Filipino	56	1.55	t	\N	3599			Single	B+	Gulod Labac			291	N/A	Gulod Labac	Batangas City	Batangas	Philippines	Philippines	N/A	N/A	4200	4200				0001-01-01		Ms.
MAGNAYE	DARLENE VENUS	DE TORRES			DARLENE VENUS DT. MAGNAYE	Female	1989-06-09	BATANGAS CITY				BATANGAS CITY	BATANGAS		09077527070	darlenevenus.magnaye@deped.gov.ph	04-2245291-9	291-810-322-0000	1210-6079-8167					Filipino	59.8	1.58	t	\N	3608	02005153064	08-050940817-7	Married	O+	BUCAL					BUCAL	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		
PERONO	REINA	CARREON			REINA C. PERONO	Female	1975-11-16	BATANGAS CITY				BATANGAS CITY	BATANGAS		09155592244	reina.perono@deped.gov.ph	04-3205475-0	302-575-536-0000	1490-0006-1004					Filipino	55	1.57	t	\N	3604	02005607474	09-050045394-9	Single	B	GULOD ITAAS					GULOD ITAAS	BATANGAS CITY	BATANGAS	Philippines	Philippines	PULONG IBABA, PUROK 1	PULONG IBABA, PUROK 1	4200	4200				0001-01-01		
GUINHAWA	MABELL	DRIZ			MABELL D. GUINHAWA	Female	1973-10-29	BATANGAS CITY		BLK.14 LOT 25	MAGNUS VILLE	BATANGAS CITY	BATANGAS	0437247761	09494000033	mabell.guinhawa@deped.gov.ph	04-0861067-8	160-730-195-0000	1490-0090-5308					Filipino	52	1.49	t	\N	3611	06003839214		Married	O	PALLOCAN WEST			BLK.14 LOT 25	MAGNUS VILLE	PALLOCAN WEST	BATANGAS CITY	BATANGAS	Philippines	Philippines	ST. FRANCIS	ST. FRANCIS	4200	4200				0001-01-01		
MATIRA	ROZ JELL	AMADO			ROZ JELL A. MATIRA	Female	1996-06-03	BAUAN BATANGAS				SAN PASCUAL	BATANGAS CITY		09287316773	rozjellmatira03@gmail.com	04-3934204-1	341-456-075-0000	1212-0982-4734					Filipino	55	1.54	t	\N	3607	02006334413	09-025581779-4	Single	O	ILAT SOUTH					ILAT SOUTH	SAN PASCUAL	BATANGAS CITY	Philippines	Philippines			4204	4204				0001-01-01		
MIGUEL	VILMA	PAGSUYOIN			VILMA P. MIGUEL	Female	1975-08-22	PASIG CITY METRO MANILA				BATANGAS CITY	BATANGAS		09567282707	VILMAMIGUEL@DEPED.GOV.PH								Filipino	68.5	1.52	t	\N	3605			Married	A	BANABA WEST					BANABA WEST	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		
UPO	PRINCE ALARIC	MACARAIG			PRINCE ALARIC M. UPO	Male	1997-08-30	BATANGAS CITY		0053		BATANGAS CITY	BATANGAS	7745308	09083719344	UPOALARIC@GMAIL.COM	34-5841335-6	720-278-139-0000	1211-6813-8947					Filipino	95	1.79	t	\N	3603	02006270221	08-051535508-5	Single	B	BARANGAY 20			0053		BARANGAY 20	BATANGAS CITY	BATANGAS	Philippines	Philippines	A DELAS ALAS DRIVE	A DELAS ALAS DRIVE	4200	4200				0001-01-01		
BREGONIA	CHARLES DARRELL	GUILLO			CHARLES DARRELL G. BREGONIA	Male	1992-09-01	BATANGAS				BATANGAS CITY	BATANGAS		09688715273	darrel.bregonia@deped.gov.ph	04-3809913-3	449-876-374-0000	1211-8247-9702					Filipino	91	1.65	t	\N	3602	02005934213	09-250006480-5	Single	A+	ALANGILAN					BARANGAY 20	BATANGAS CITY	BATANGAS	Philippines	Philippines	SITIO II B	A DELAS ALAS DRIVE TALAMBIRAS	4200	4200				0001-01-01		
LONTOC	MAYBELLE	PAGCALIWAGAN			MAYBELLE P. LONTOC	Female	1994-04-14	BATANGAS CITY	CHRISTIAN			Batangas	Batangas	0437221699	09276123447	maybellepagcaliwagan@gmail.com								Filipino	58	151	t	\N	3601			Married	A+	Kumintang Ilaya					Kumintang Ilaya	Batangas	Batangas	Philippines	Philippines			4200	4200				0001-01-01		
GONZALES	ERL JORDAN	LEUTERIO			ERL JORDAN L. GONZALES	Male	1997-03-05	BATANGAS CITY		159B		ROSARIO	BATANGAS		0			705-003-027-0000	1212-3912-7141					Filipino	70	1.7	t	\N	3614	02005537573	09-251903053-7	Single	B+	MARILAG			159B		MARILAG	ROSARIO	BATANGAS	Philippines	Philippines	SITIO MAHARLIKA	SITIO MAHARLIKA	4205	4205				0001-01-01		
ZARASPE	RINALYN	SORIANO			RINALYN S. ZARASPE	Female	1988-07-06	BATANGAS CITY			BAGONG POOK	BATANGAS CITY	BATANGAS		09273533174	RINALYN.SORIANO@DEPED.GOV.PH	04-1978808-1	260-570-088-0000	1210-2577-9322					Filipino	70	1.62	t	\N	3609	02004709098	09-050205119-8	Married	O	BILOGO				BAGONG POOK	BILOGO	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		
RAYOS	LEEZETTE	MENDOZA			LEEZETTE M. RAYOS	Female	1990-11-11	SAN LUIS,BATANGAS		172		SAN LUIS	BATANGAS		09996957877	RAYOSLEEZETTE@GMAIL.COM	04-2569126-9	426-627-242-0000	1210-7973-2501					Filipino	53	1.52	t	\N	3613	02006334373	01-051625321-0	Single	B	MUZON			172		MUZON	SAN LUIS	BATANGAS	Philippines	Philippines			4210	4210				0001-01-01		
GUERRA	KRISTOFFER	ANDAL			KRISTOFFER A. GUERRA	Male	1996-11-15	MANILA				IBAAN	BATANGAS		09276856403	psalmguerra21@gmail.com	04-4040178-0	345-424-552-0000	1212-2178-7299					Filipino	73	1.71	t	\N	3612	02006155480	03-250930908-5	Single	O	BAGO					BAGO	IBAAN	BATANGAS	Philippines	Philippines			4230	4230				0001-01-01		
MALIGALIG	LUIS	PEREZ			LUIS P. MALIGALIG	Male	1966-06-06	BATANGAS CITY				BATANGAS CITY	BATANGAS		09494419567	lsmaligalig@yahoo.com		124-513-954-0000						Filipino	84	1.75	t	\N	3616	66060600172	09-000010275-9	Married	B	KUMINTANG IBABA					KUMINTANG IBABA	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		
LAGMAN	MARIA JOSEFINA	MARANAN			MARIA JOSEFINA M. LAGMAN	Female	1961-01-08	BATANGAS CITY			MERCEDES HOME	BATANGAS CITY	BATANGAS		09178213626		04-0521383-2	136-310-653-0000	1490-0090-2901					Filipino	71	1.52	t	\N	3606	02002896651	09-050039547-7	Married	A	SOROSORO ILAYA				MERCEDES HOME	SOROSORO ILAYA	BATANGAS CITY	BATANGAS	Philippines	Philippines	MERCEDES BOULEVARD	MERCEDES BOULEVARD	4200	4200				0001-01-01		
BARTE	CRIS	ARDID			CRIS A. BARTE	Male	1973-11-01	BATANGAS CITY				BATANGAS CITY	BATANGAS		09512323956	cris.barte@deped.gov.ph	04-0854088-7	303-414-980-0000	1400-0074-1009					Filipino	57	1.68	t	\N	3618	02006334414	09-200628005-8	Married	AB	SOROSORO KARSADA					SOROSORO KARSADA	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		
COMIA	RANDY	FURTO			RANDY F. COMIA	Male	1979-07-26	STA.RITA BATANGAS CITY				BATANGAS CITY	BATANGAS		09454614111	RFCOMIA26@GMAIL.COM	04-3469337-1	921-094-645-0000	1211-8743-7150					Filipino	75	1.56	t	\N	3619		09-025013880-5	Single	A	STA. RITA KARSADA					STA. RITA KARSADA	BATANGAS CITY	BATANGAS	Philippines	Philippines	TAMBOBONG STREET	TAMBOBONG STREET	4200	4200				0001-01-01		
PATIO	LESLIE JOY	ANTIDO			LESLIE JOY A. PATIO	Female	1993-02-02	ANGELES CITY, PAMPANGA			ANTIDO BLANCO COMPOUND	BATANGAS CITY	BATANGAS		09656156500	lesliejoy.patio@deped.gov.ph		497-407-691-0000	1212-4981-4365					Filipino	55	1.52	t	\N	3621	02005607475	09-025668988-9	Single	O	BALETE				ANTIDO BLANCO COMPOUND	BALETE	BATANGAS CITY	BATANGAS	Philippines	Philippines	SITIO 5	SITIO 5	4200	4200				0001-01-01		
ALBURO	ALYANNA	LACSAMANA			ALYANNA L. ALBURO	Female	1994-05-15	BATANGAS CITY			VILLA PRECY	BATANGAS CITY	BATANGAS		09291691465	ALYANNA.ALBURO@GMAIL.COM	04-2869127-9	447-948-665-0000	1211-1541-4009					Filipino	63	1.68	t	\N	3620	02006352335	09-050413465-1	Single	B+	KUMINTANG ILAYA				VILLA PRECY	KUMINTANG ILAYA	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		
SECO	MAR	SAEL			MAR S. SECO	Male	1978-05-13	ORIENTAL MINDORO			SITIO LAGUNDI	BATANGAS CITY	BATANGAS		09996995307	mseco13.ms@gmail.com	04-0956111-1	275-937-271-0000	1210-8546-2082					Filipino	80	1.7	t	\N	3622		19-089347407-6	Married	B+	BANABA WEST				SITIO LAGUNDI	BANABA WEST	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		
BRIONES	ANGELO	BABAO			ANGELO B. BRIONES	Male	1998-03-15	BATANGAS CITY		116	TWINVILLA	BATANGAS CITY	BATANGAS		09175026303	angelo.briones@deped.gov.ph	04-4173007-8	736-700-137-0000	1212-4125-8236					Filipino	91	174	t	\N	3624	02005866454	09-250002652-2	Single	A	KUMINTANG ILAYA			116	TWINVILLA	KUMINTANG ILAYA	BATANGAS CITY	BATANGAS	Philippines	Philippines	ARGON	ARGON	4200	4200				0001-01-01		
SALAZAR	EVANGELINE	LEIS			EVANGELINE L. SALAZAR	Female	1993-02-14	BATANGAS CITY		#067		BATANGAS CITY	PROVINCE		09959763336	EVANGELINE.LEIS@DEPED.GOV.PH	04-2733275-9	440-210-107-0000	1210-9831-9572					Filipino	45	1.05	t	\N	3623	02005979456	09-050381590-6	Married	AB	TULO II			#067		TULO II	BATANGAS CITY	PROVINCE	Philippines	Philippines	SITIO KANLURAN	SITIO KANLURAN	4200	4200				0001-01-01		
DAYAO	MICHELLE	SANCHEZ			MICHELLE S. DAYAO	Female	1985-06-01	CUTA BATANGAS CITY				BATANGAS CITY	BATANGAS		09661725485	michelledayao06@gmail.com		480-819-212-0000	1212-6093-4264					Filipino	56	1.4	t	\N	3626	02006270120	09-025298000-1	Married	O	CUTA					CUTA	BATANGAS CITY	BATANGAS	Philippines	Philippines	SITIO MALIGAYA	SITIO MALIGAYA	4200	4200				0001-01-01		
FABREQUER	GINALYN	FAJICULAY			GINALYN F. FABREQUER	Female	1981-01-19	CORCUERA ROMBLOM			ANALYN	BATANGAS CITY	BATANGAS		09508636263		04-4461344-8	445-112-735-0000	1213-1392-6745					Filipino	52	165	t	\N	3631		09-254104835-0	Married	O	ALANGILAN				ANALYN	ALANGILAN	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		Mrs.
MANGUBAT	MARY ANN	ACUNA			MARY ANN A. MANGUBAT	Female	1980-12-26	BATANGAS CITY				BATANGAS CITY	BATANGAS		09057744816	maryann.mangubat@deped.gov.ph	04-4130649-9	372-853-883-0000	1212-3374-4313					Filipino	50	1.52	t	\N	3627	02006270126	09-250811598-0	Married	B	HALIGUE KANLURAN					HALIGUE KANLURAN	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		
TUGADO	RONALD	LIMA			RONALD L. TUGADO	Male	1974-05-14	SILAY CITY, NEGROS OCCIDENTAL				BATANGAS CITY	BATANGAS		09184446308	ronald.tugado@deped.gov.ph	07-1587882-7	623-754-011-0000	1213-1687-0831					Filipino	65	1.58	t	\N	3628	02006272583	09-025149211-4	Married	AB	TINGA ITAAS					TINGA ITAAS	BATANGAS CITY	BATANGAS	Philippines	Philippines	SITIO ILAYA, PUROK 5	SITIO ILAYA, PUROK 5	4200	4200				0001-01-01		Ms.
ARCARDO	JOEL	MACARAIG			JOEL M. ARCARDO	Male	1978-04-09	BATANGAS CITY				BATANGAS CITY	BATANGAS		09954442478	JOEL.ARCARDO@DEPED.GOV.PH	04-1754829-4	404-757-185-0000	1211-1215-6584					Filipino	50	1.57	t	\N	3617	02006270219	09-025151402-9	Single	O	BRGY. 4 POBLACION					BRGY. 4 POBLACION	BATANGAS CITY	BATANGAS	Philippines	Philippines	P.HERRERA ST.	P.HERRERA ST.	4200	4200				0001-01-01		
DIMAALA	ROSAL	RAMORIZ			ROSAL R. DIMAALA	Female	1987-03-07	TINGLOY, BATANGAS		BLK. 6 LOT 11	BLOOMFIELD HOMES	SAN PASCUAL	BATANGAS		09157450085	rosal.dimaala@deped.gov.ph	04-2335364-8	498-482-854-0000	1210-2391-8732					Filipino	74	1.55	t	\N	3615	02005572546	01-051197583-8	Married	O	BALIMBING			BLK. 6 LOT 11	BLOOMFIELD HOMES	BALIMBING	SAN PASCUAL	BATANGAS	Philippines	Philippines			4204	4204				0001-01-01		
MARANAN	JEFFERSON	DE CASTRO			JEFFERSON DC. MARANAN	Male	1995-12-12	BATANGAS CITY				BATANGAS CITY	BATANGAS		09684929538	JEFFERSON.MARANAN@DEPED.GOV.PH		466-351-256-0000	1212-6096-5682					Filipino	58	1.68	t	\N	3625	02006270204	09-202188321-4	Married	B+	ALANGILAN								Philippines	Philippines	LABAC		4200					0001-01-01		
RAMIREZ	MAGELYN	BABAO			MAGELYN B. RAMIREZ	Female	1981-01-06	LOBO BATANGAS				BATANGAS CITY	BATANGAS		09368602346	MAGELYN.RAMIREZ@DEPED.GOV.PH	33-6189507-4	325-138-348-0000	1212-6098-6330					Filipino	50	1.59	t	\N	3629	02006270211	09-250110207-7	Widow	AB+	TALUMPOK WEST					TALUMPOK WEST	BATANGAS CITY	BATANGAS	Philippines	Philippines	GUINTO	GUINTO	4200	4200				0001-01-01		
ITURRALDE	DONNA	GARCIA			DONNA G. ITURRALDE	Female	1977-06-29	BATANGAS CITY				BATANGAS CITY	BATANGAS		09052881709	DONNA.ITURRALDE@DEPED. GOV.PH		915-190-651-0000	1490-0090-0837					Filipino	68	1.58	t	\N	3630	02002996055	09-000008391-6	Single	B	6					6	BATANGAS CITY	BATANGAS	Philippines	Philippines	64, NOBLE STREET, BATANGAS CITY	64, NOBLE STREET, BATANGAS CITY	4200	4200				0001-01-01		
QUIZON	KRISTEL	CONTI			KRISTEL C. QUIZON	Female	1988-03-10	BATANGAS REGIONAL HOSPITAL		#1038		BATANGAS CITY	BATANGAS		09433122627	kristel.conti@deped.gov.ph	04-2084369-8	307-764-167-0000	1210-0680-9185					Filipino	49	1.52	t	\N	3633	02004790908	09-050229172-5	Married	O	KUMINTANG IBABA			#1038		KUMINTANG IBABA	BATANGAS CITY	BATANGAS	Philippines	Philippines	BIHI ROAD	BIHI ROAD	4200	4200				0001-01-01		Mrs.
GONZALES	SARAH JANE	TUNGOL			SARAH JANE T. GONZALES	Female	1990-12-12	ROSARIO,BATANGAS				BATANGAS CITY	BATANGAS		09369553720	SARAHJANE.GONZALEZ.@DEPED.GOV.PH	34-3538056-7	428-879-082-0000	1210-6971-5651					Filipino	65	1.71	t	\N	3632	02005568475	01-051506286-1	Married	B+	MALITAM					MALITAM	BATANGAS CITY	BATANGAS	Philippines	Philippines	ILANG ILANG	ILANG ILANG	4200	4200				0001-01-01		
BENTULAN	ANALY				ANALY BENTULAN	Female	1991-11-03	OZAMIZ CITY, MISAMIS OCCIDENTAL		269		BATANGAS CITY	BATANGAS		09302404291	analy.bentulan20@gmail.com	04-2652600-3	430-282-911-0000	1210-7565-2285					Filipino	43	1.52	t	\N	3635	02005982653	09-025322311-0	Single	O	TINGGA LABAC			269		TINGGA LABAC	BATANGAS CITY	BATANGAS	Philippines	Philippines	ROAD 3 BAYANIHAN	ROAD 3 BAYANIHAN	4200	4200				0001-01-01		
OREJUDOZ	GLADYS	BALBACAL			GLADYS B. OREJUDOZ	Female	1979-04-18	NAUJAN, ORIENTAL MINDORO		CRISTINA COMPOUND		BATANGAS CITY	BATANGAS		09081349144	gladysorejudoz7901@gmail.com		329-411-599-0000	1211-1727-5501					Filipino	60	1.52	t	\N	3638	02006270213	09-201237752-7	Single	A	KUMINTANG IBABA					BARCENADA	NAUJAN	ORIENTAL MINDORO	Philippines	Philippines	SITIO FERRY		4200	5204				0001-01-01		
DE CASTRO	JEMALYN	ABRACOSA			JEMALYN A. DE CASTRO	Female	1998-07-22	BATANGAS CITY				BATANGAS CITY	BATANGAS		09490489333	jemalyn.decastro@deped.gov.ph		748-709-583-0000	1212-5341-4399					Filipino	47	1.5	t	\N	3636	02005825721	09-025684430-2	Single	B+	KUMINTANG IBABA					KUMINTANG IBABA	BATANGAS CITY	BATANGAS	Philippines	Philippines	SITIO FERRY	SITIO FERRY	4200	4200				0001-01-01		
ABELLERA	MONICA	MARASIGAN			MONICA M. ABELLERA	Female	1977-08-27	BATANGAS CITY		322		BATANGAS CITY	BATANGAS		09976022070	monica.abellera@deped.gov.ph	04-3345828-7	918-809-341-0000	1210-3898-1412					Filipino	53	1.5	t	\N	3639	02005546367	09-025110354-1	Married	A+	MALITAM			322		MALITAM	BATANGAS CITY	BATANGAS	Philippines	Philippines	ILANG-ILANG STREET	ILANG-ILANG STREET	4200	4200				0001-01-01		
ANDES	LUCY KAREN	AGULO			LUCY KAREN A. ANDES	Female	1994-12-09	ILIJAN, BATANGAS CITY		517		BATANGAS CITY	BATANGAS		09684929492	LUCYKAREN.ANDES@DEPED.GOV.PH	04-2754502-5	332-166-853-0000	1211-7277-8266					Filipino	55	1.53	t	\N	3637	02005825728	09-025361056-4	Single	O	ILIJAN			517		ILIJAN	BATANGAS CITY	BATANGAS	Philippines	Philippines	HULONG SILANGAN	HULONG SILANGAN	4200	4200				0001-01-01		
EBORA	DANDY	GUTIERREZ			DANDY G. EBORA	Male	1971-01-29	ISLA VERDE, BATANGAS CITY				BATANGAS CITY	BATANGAS		09912436989	dandy.ebora@deped.gov.ph		203-143-016-0000	1490-0101-0718					Filipino	71	1.6	t	\N	3642	02002927539	19-089068289-1	Widow	B	SOROSORO KARSADA					SAN ANTONIO, ISLA VERDE	BATANGAS	BATANGAS	Philippines	Philippines			4200					0001-01-01		
DE JESUS	TONI MARGARET	MACATANGAY			TONI MARGARET M. DE JESUS	Female	1988-08-28	BATANGAS CUTY,BATANGAS		0973		BATANGAS CITY	BATANGAS		09272000638	TONIMARGARET.DEJESUS@YAHOO.COM	04-2185422-0	288-103-320-0000	1210-2842-2580					Filipino	58	1.52	t	\N	3641	02005605258	01-051020737-3	Single	A+	BOLBOK			0973		BOLBOK	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		
ATIENZA	CLIFF	BUENO			CLIFF B. ATIENZA	Male	1988-03-18	BUHANGIN NAUJAN ORIENTAL MINDORO		P1-104		BATANGAS CITY	BATANGAS		09338269038	CLIFF.ATIENZA@DEPED.GOV.PH	33-9365660-5	239-607-066-0000	1211-3597-5607					Filipino	80	1.07	t	\N	3634	02004670054	09-025313837-7	Single	AB+	STA.RITA KARSADA			P1-104		STA.RITA KARSADA	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		
CATAPANG	JOSEPHINE	DE LEON			JOSEPHINE DL. CATAPANG	Female	1987-06-04	BATANGAS CITY			SITIO BULIHAN	BATANGAS CITY	BATANGAS		09778363510	josephine.catapang@deped.gov.ph	04-1968268-2	278-329-970-0000	1210-5823-5216					Filipino	57	1.6	t	\N	3647		06-050113707-6	Married	A+	AMBULONG				SITIO BULIHAN	AMBULONG	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		
MAGBOJOS	KRIZIA MAE	ABUZMAN			KRIZIA MAE A. MAGBOJOS	Female	1996-10-15	BATANGAS CITY		301		SAN PASCUAL	BATANGAS		09772133865	kriziamagbojos@gmail.com	34-6976269-8	341-485-914-0000	1212-0638-0814					Filipino	73	1.52	t	\N	3643	02005568473	02-252937070-2	Single	A	MATAAS NA LUPA			301		MATAAS NA LUPA	SAN PASCUAL	BATANGAS	Philippines	Philippines			4204	4204				0001-01-01		Ms.
MACALALAD	RALPH KEVIN	GARCIA			RALPH KEVIN G. MACALALAD	Male	1992-04-28	BATANGAS CITY		2005		BATTANGAS CITY	BATANGAS		09369437941	RALPHKEVIN.MACALALAD@DEPED.GOV.PH	04-2609282-5	270-361-169-0000	1210-6471-6662					Filipino	99	1.68	t	\N	3640	02006334350	09-050339866-3	Married	O	CALICANTO			2005		CALICANTO	BATTANGAS CITY	BATANGAS	Philippines	Philippines	PUROK 6	PUROK 6	4200	4200				0001-01-01		
RIVERA	KRISTINA	MEMBROT			KRISTINA M. RIVERA	Female	1982-06-03	BATANGAS CITY			SITIO PULO	BATANGAS CITY	BATANGAS		09770017241	kristina.rivera@deped.gov.ph	04-1371000-0	453-461-632-0000	1211-2016-8871					Filipino	84	1.62	t	\N	3645	02004561135	19-026772641-1	Married	A+	TINGGA ITAAS				SITIO PULO	TINGGA ITAAS	BATANGAS CITY	BATANGAS	Philippines	Philippines	PUROK 7	PUROK 7	4200	4200				0001-01-01		
ALEA	ELIZABETH	MACARAIG			ELIZABETH M. ALEA	Female	1972-07-10	ROXAS, ORIENTAL MINDORO		BLK. 4 LOT 21	MERCEDES HOMES	BATANGAS CITY	BATANGAS		09090620196	elizabeth.alea@deped.gov.ph		912-300-915-0000	0401-2741-3801					Filipino	48	1.48	t	\N	3654	02002998280	09-000007902-1	Married	A+	SORO SORO ILAYA			BLK. 4 LOT 21	MERCEDES HOMES	SORO SORO ILAYA	BATANGAS CITY	BATANGAS	Philippines	Philippines	ARGUILLA	ARGUILLA	4200	4200				0001-01-01		
REALINGO	RICKY	MEDINA			RICKY M. REALINGO	Male	1973-04-27	BATANGAS CITY			PUROK 3	BATANGAS CITY	BATANGAS		09260391368	ricky.realingo@deped.gov.ph	04-3036087-3	083-220-042-0000	1490-0033-8351					Filipino	80	1.65	t	\N	3655	02004977074	09-050039648-1	Married	B	TINGA ITAAS				PUROK 3	TINGA ITAAS	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		
BARAIRO	ALGENE	CAPUNO			ALGENE C. BARAIRO	Male	1986-05-06	SAN NICOLAS, BATANGAS		#73		SAN NICOLAS	BATANGAS		09567931169	ALGENE.BARAIRO@DEPED.GOV.PH	04-3506177-9	407-242-105-0000	1211-3714-6568					Filipino	65	1.57	t	\N	3644	02005059726	09-025353483-3	Married	A+	BALETE			#73		BALETE	SAN NICOLAS	BATANGAS	Philippines	Philippines			4207	4207				0001-01-01		Mr.
GABIA	ROSE ANNE ALYSSA	FARAON			ROSE ANNE ALYSSA F. GABIA	Female	1986-01-05	BATANGAS CITY		142-C		BATANGAS CITY	BATANGAS		09156422436	ROSEANNEALYSSA.GABIA@DEPED.GOV.PH	04-1824795-0	305-696-116-0000	1211-8358-7276					Filipino	57	1.66	t	\N	3652	06017706856	90-501166091-3	Married	A+	TULO			142-C		TULO	BATANGAS CITY	BATANGAS	Philippines	Philippines	SITIO MANGGAHAN	SITIO MANGGAHAN	4200	4200				0001-01-01		
MAGPANTAY	MA. ISABEL	BARZA			MA. ISABEL B. MAGPANTAY	Female	1962-07-08	BATANGAS CITY		BLK 8 LOT 20	TIERRA VERDE SUBD.	BATANGAS CITY	BATANGAS		06684929508	maisabel.magpantay001@deped.gov.ph		124-513-759-0000	1490-0086-8488					Filipino	60	1.52	t	\N	3649	02002896624	09-000010247-3	Married	B	PALOOCAN WEST			BLK 8 LOT 20	TIERRA VERDE SUBD.	PALOOCAN WEST	BATANGAS CITY	BATANGAS	Philippines	Philippines	ST. PAUL STREET	ST. PAUL STREET	4200	4200				0001-01-01		Mrs.
PEREZ	MICKO PAOLO	ABANTE			MICKO PAOLO A. PEREZ	Male	1988-06-28	BATANGAS CITY		82		BATANGAS CITY	BATANGAS	0437029344	09175017184	MIKKOPAOLOPEREZ@GMAIL.COM		277-633-295-0000	1211-5492-4438					Filipino	59	1.58	t	\N	3648		09-025240759-5	Married	O	POBLACION 5			82		POBLACION 5	BATANGAS CITY	BATANGAS	Philippines	Philippines	P. HERRERA	P. HERRERA	4200	4200				0001-01-01		
COMIA	SACORO	RAMIREZ			SACORO R. COMIA	Female	1966-09-25	BATANGAS CITY				BATANGAS CITY	BATANGAS		09171892566	comia_sacoro@yahoo.com		124-515-488-0000	0403-1280-9902					Filipino	56	1.52	t	\N	3656	06609500099		Married	O	TALUMPOK WEST					TALUMPOK WEST	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		
LUSTERIO	MARILOU	CORTAZ			MARILOU C. LUSTERIO	Female	1969-03-10	STA. MARIA PINAMALAYAN, ORIENTAL MINDORO			PERLAS COMPOUND	BATANGAS CITY	BATANGAS		09083605019	mariloulusterio041@gmail.com		325-873-402-0000	1212-6100-8628					Filipino	50	1.52	t	\N	3653		09-025105233-2	Married	O	KUMINTANG ILAYA				PERLAS COMPOUND	KUMINTANG ILAYA	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		
ISLETA	MARIA ROSEL	DRIZ			MARIA ROSEL D. ISLETA	Female	1973-10-23	BATANGAS CITY		BLOCK 53 LOT 19	EL SITIO SUBDIVISION	BATANGAS CITY	BATANGAS		09971284850	MARIAROSEL.ISLETA@DEPED. GOV.PH	04-0889282-3	177-763-666-0000	1490-0094-0748					Filipino	65	1.52	t	\N	3650	02002896683	19-000326757-5	Married	O	DUMANTAY			BLOCK 53 LOT 19	EL SITIO SUBDIVISION	DUMANTAY	BATANGAS CITY	BATANGAS	Philippines	Philippines	THIRD STREET	THIRD STREET	4200	4200				0001-01-01		
ASI	LORNA	MAGPANTAY			LORNA M. ASI	Female	1971-11-13	BATANGAS CITY		#409		BATANGAS CITY	BATANGAS		09985968905	LORNA.ASI@DEPED.GOV,PH		183-229-725-0000	1490-0098-0960					Filipino	48	1.53	t	\N	3683	71111300881	09-000021827-7	Married	O	MALITAM			#409		MALITAM	BATANGAS CITY	BATANGAS	Philippines	Philippines	ILANG-ILANG	ILANG-ILANG	4200	4200				0001-01-01		
EBORA	MADONNA	MENDOZA			MADONNA M. EBORA	Female	1983-09-15	BATANGAS CITY				BATANGAS CITY	BATANGAS		09369249796	madonna.ebora@deped.gov.ph	04-1653752-3	938-862-940-0000	1050-0228-8292					Filipino	50	1.58	t	\N	3651	02003440777	09-050118513-1	Married	O+	BARANGAY MALALIM					BARANGAY MALALIM	BATANGAS CITY	BATANGAS	Philippines	Philippines	SITIO IBABA	SITIO IBABA	4200	4200				0001-01-01		
ABAG	CHRISTINE	MARASIGAN			CHRISTINE M. ABAG	Female	1995-04-01	BATANGAS CITY		22 LOT 14 16	MERCEDES HOMES	BATANGAS CITY	BATANGAS		09171887095	christine.marasigan001@deped.gov.ph	04-3653930-7	466-839-798-0000	1211-8707-2504					Filipino	60	1.65	t	\N	3646	02005120802	09-250123145-4	Married	O+	SOROSORO ILAYA					GULOD LABAC	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		
ALI	ALDIN VAN	TIRASOL			ALDIN VAN T. ALI	Male	1995-06-14	SAN. ROQUE, ROSARIO, BATANGAS		BLOCK 4 LOT 21	MABINI HEIGHTS	LIPA CITY	BATANGAS		09154036805	VANALIALDIN@GMAIL.COM	04-3957584-7	345-180-685-0000	1212-2021-3944					Filipino	66	1.57	t	\N	3659	02005893818	09-250780804-4	Single	B+	MABINI			BLOCK 4 LOT 21	MABINI HEIGHTS	MABINI	LIPA CITY	BATANGAS	Philippines	Philippines	LAKANDULA	LAKANDULA	4217	4217				0001-01-01		
EBORA	VICENTA	MENDOZA			VICENTA M. EBORA	Female	1969-02-22	BATANGAS CITY		1019	SITIO CENTRO	BATANGAS CITY	BATANGAS		09173244813	vicenta.ebora001@deped.gov.ph	04-3581879-9	124-448-525-0000	1490-0095-8376					Filipino	55	1.65	t	\N	3658	02002929512	09-000008908-6	Widow	AB	GULOD ITAAS			1019	SITIO CENTRO	GULOD ITAAS	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		
CABANDING	ROWENA	DIMAANO			ROWENA D. CABANDING	Female	1965-08-17	BATANGAS CITY		6422		BATANGAS CITY	BATANGAS		09175930974	rowena.cabanding001@deped.gov.ph		124-606-482-0000	1210-4215-5010					Filipino	59	1.52	t	\N	3662	02002912494	09-000050336-2	Single	AB	ZONE 5			6422		ZONE 5	BATANGAS CITY	BATANGAS	Philippines	Philippines	LUALHATI ST.	LUALHATI ST.	4200	4200				0001-01-01		
AQUINO	LEA	CALAHATI			LEA C. AQUINO	Female	1970-08-11	ISLA VERDE, BATANGAS CITY				BATANGAS CITY	BATANGAS		09171428944	lea.aquino@deped.gov.ph		150-051-355-0000	1490-0090-0837					Filipino	63	1.52	t	\N	3666		09-000022148-0	Married	B	BOLBOK					BOLBOK	BATANGAS CITY	BATANGAS	Philippines	Philippines	MONTALBO ROAD	MONTALBO ROAD	4200	4200				0001-01-01		
GABRIEL	REBECCA	SALVACION			REBECCA S. GABRIEL	Female	1967-11-02				SITIO FERRY	BATANGAS CITY	BATANGAS		06194342121	bekkasgabriel@yahoo.com								Filipino	68	1.61	t	\N	3660	67110201254	09-000010293-7	Widow	AB	KUMINTANG IBABA				SITIO FERRY	KUMINTANG IBABA	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		
LUBRIN	MARIWINS	CABRAL			MARIWINS C. LUBRIN	Female	1988-04-28	STA. TERESITA, BATANGAS				BATANGAS CITY	BATANGAS		09859902900	MARLWINS.LUBRIN@DEPED.GOV.PH	34-9956390-6	622-300-681-0000	1212-7891-6179					Filipino	68	5	t	\N	3661		09-201410729-2	Married	O+	CUTA					CUTA	BATANGAS CITY	BATANGAS	Philippines	Philippines	M.H DEL PILAR	M.H DEL PILAR	4200	4200				0001-01-01		
DE CASTRO	JESSILYN	FLORIDA			JESSILYN F. DE CASTRO	Female	1969-10-08	ROSARIO BATANGAS				BATAMNGAS CITY	BATANGAS		09493392364	JESSILYNDECASTRO1@GMAIL.COM	03-8767218-0	489-868-719-0000	1210-9672-5427					Filipino	56	5	t	\N	3663		09-025161266-7	Married	B+	KUMINTANG IBABA					KUMINTANG IBABA	BATAMNGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		
BRIONES	EDELYN	BABAO			EDELYN B. BRIONES	Female	1964-07-28	LOBO, BATANGAS		1116	TWINVILLA	BATANGAS CITY	BATANGAS		091657005579	EDELYN.BRIONES001@DEPED.GOV.PH	03-8255036-2	124-523-923-0000	1490-0096-8878					Filipino	80	5.4	t	\N	3665	02002994405	09-000012252-0	Married	B	KUMINTANG IBABA			1116	TWINVILLA	KUMINTANG IBABA	BATANGAS CITY	BATANGAS	Philippines	Philippines	ARGON	ARGON	4200	4200				0001-01-01		
BAGON	ROSSANA	PEREZ			ROSSANA P. BAGON	Female	1977-04-10	BATANGAS CITY		BLOCK 4	BETZAIDA VIKKAGE	BATANGAS CITY	BATANGAS	7415817	09175050018	ROSSANA.BAGON@DEPED.GOV.PH	04-3205965-8	913-869-034-0000	1490-0078-3419					Filipino	75	1.63	t	\N	3667	02006291357	09-050082014-3	Married	B+	DUMANTAY			BLOCK 4	BETZAIDA VIKKAGE	DUMANTAY	BATANGAS CITY	BATANGAS	Philippines	Philippines	CATLEYA	CATLEYA	4200	4200				0001-01-01		
JAVIER	GENERIEGO	ODESTE			GENERIEGO O. JAVIER	Male	1978-10-09	BATANGAS CITY		BLOCK 12 LOT 28	BETZAIDA VILLAGE	BATANGAS CITY	BATANGAS		09209002085	generiego.javier@deped.gov.ph		918-073-516-0000	1211-5619-1873					Filipino	90	1.65	t	\N	3657		09-000062045-8	Married	B	DUMANTAY			BLOCK 12 LOT 28	BETZAIDA VILLAGE	DUMANTAY	BATANGAS CITY	BATANGAS	Philippines	Philippines	CARNATION STREET	CARNATION STREET	4200	4200				0001-01-01		
OCON	AUREA	PANOPIO			AUREA P. OCON	Male	1973-08-24	BATANGAS CITY		130		BATANGAS CITY	BATANGAS		09475071038	aurea.ocon001@deped.gov.ph		194-233-541-0000	1490-0088-0079					Filipino	69	1.6	t	\N	3664	02002992141		Married	O	PALLOCAN EAST			130		PALLOCAN EAST	BATANGAS CITY	BATANGAS	Philippines	Philippines	MANALO ST.	MANALO ST.	4200	4200				0001-01-01		
MAGADIA	CHARITY	SIKAT			CHARITY S. MAGADIA	Female	1967-09-20	CALAPAN CITY, ORIENTAL MINDORO			SITIO KANLURAN	BATANGAS CITY	BATANGAS		09667522908	charity.magadia0012@deped.gov.ph		124-521-792-0000	1490-0007-4047					Filipino	55	1.52	t	\N	3673	02002992225	09-000007404-7	Married	O	GULOD ITAAS				SITIO KANLURAN	GULOD ITAAS	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		
ASI	NICOLAS	ASI			NICOLAS A. ASI	Male	1964-11-13	CONDE LABAC, BATANGAS CITY				BATANGAS CITY	BATANGAS		09776888076	nicolas.asi@deped.gov.ph		124-520-083-0000	0401-2498-6605					Filipino	68	1.66	t	\N	3669		09-000008357-6	Married	A	CONDE LABAC					CONDE LABAC	BATANGAS CITY	BATANGAS	Philippines	Philippines	PUROK 3	PUROK 3	4200	4200				0001-01-01		
ASI	ROWENA	TOLENTINO			ROWENA T. ASI	Female	1967-12-23	BATANGAS CITY		567		BATANGAS CITY	BATANGAS		09171600146	rowena.asi001@deped.gov.ph		128-617-118-0000	1490-0083-4151					Filipino	65	1.58	t	\N	3674	02002993040	09-000001262-6	Married	O	SAMPAGA EAST			567		SAMPAGA EAST	BATANGAS CITY	BATANGAS	Philippines	Philippines	LUMANGLAS STREET	LUMANGLAS STREET	4200	4200				0001-01-01		
COMIA	ROSALINDA	MARASIGAN			ROSALINDA M. COMIA	Female	1966-06-14	BATANGAS CITY		# 2235	TWINVILLA SUBD.	BATANGAS CITY	BATANGAS	04307023338	09171131038	ROSALINDA.COMIA001@DEPED.GOV.PH		128-622-454-0000	1400-0094-4343					Filipino	61	157.48	t	\N	3670	02002992987	09-000012259-8	Married	O	KUMINTANG ILAYA			# 2235	TWINVILLA SUBD.	KUMINTANG ILAYA	BATANGAS CITY	BATANGAS	Philippines	Philippines	LEAD STREET	LEAD STREET	4200	4200				0001-01-01		Mrs.
PEREZ	MARIETA	NOCHE			MARIETA N. PEREZ	Female	1964-09-30	LIBJO, BATANGAS CITY			SITIO MALIGAYA	BATANAGS CITY	BATANGAS		09985553861	marieta.perez002@deped.gov.ph		124-516-415-0000	1490-0097-4597					Filipino	69	1.54	t	\N	3668	02002928905		Married	A	CUTA				SITIO MALIGAYA	CUTA	BATANAGS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		
ASI	LOLITA	TARCELO			LOLITA T. ASI	Female	1966-01-17	MAHABANG DAHILIG, BATANGAS CITY				BATANGAS CITY	BATANGAS		09175057894	lolita.asi001@deped.gov.ph		141-003-315-0000	1490-0094-2169					Filipino	68	1.59	t	\N	3671	02002928760	09-000006933-6	Married	AB	MAHABANG DAHILIG					MAHABANG DAHILIG	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		
VILLENA	MICHELLE	PARTO			MICHELLE P. VILLENA	Female	1977-01-17	BATANGAS		BLK. 14 LOT 33	TIERRA VERDE	BATANGAS CITY	BATANGAS		09072496516	ELLEMICH2018@GMAIL.COM	04-3320079-4	235-684-747-0000	1490-0032-1456					Filipino	49	5.1	t	\N	3672	02005801279	09-050113227-5	Single	AB+	PALLOCAN WEST			BLK. 14 LOT 33	TIERRA VERDE	PALLOCAN WEST	BATANGAS CITY	BATANGAS	Philippines	Philippines	ST. FRANCIS	ST. FRANCIS	4200	4200				0001-01-01		
CAMACHO	JOSEIL	DE SAGUN			JOSEIL DS. CAMACHO	Female	1979-12-23	SUBIO IBABA, AGONCILLO, BATANGAS				BATANGAS CITY	BATANGAS		09482503086	joseil.camacho@deped.gov.ph	04-1237634-8	220-408-587-0000	1211-5406-6634					Filipino	49	1.52	t	\N	3676	02005997399	09-025013765-5	Married	A+	PINAMUCAN PROPER					PINAMUCAN PROPER	BATANGAS CITY	BATANGAS	Philippines	Philippines	PUROK 2	PUROK 2	4200	4200				0001-01-01		
CATAPANG	HERMAN	ANTE			HERMAN A. CATAPANG	Male	1968-10-23	TINGA LABAC		#333		BATANGAS CITY	BATANGAS		09989700743	herman.catapang001@deped.gov.ph	04-0788721-1	117-809-553-0000	1490-0098-0971					Filipino	165	1.78	t	\N	3681	02002993686	09-000014569-5	Single	AB+	TINGA LABAC			#333		TINGA LABAC	BATANGAS CITY	BATANGAS	Philippines	Philippines	ROAD 2	road 2	4200	4200				0001-01-01		
SECO	LEILA	MARANAN			LEILA M. SECO	Male	1982-04-16	STA.RITA, BATANGAS CITY				BATANGAS	BATANGAS		09228292303	LEILA.SECO@DEPED.GOV.PH	04-1273086-1	928-521-298-0000	1490-0037-0794					Filipino	57	1.5	t	\N	3678		09-025078388-3	Married	B+	BANABA WEST					BANABA WEST	BATANGAS	BATANGAS	Philippines	Philippines	SITIO LAGUNDI	SITIO LAGUNDI	4200	4200				0001-01-01		
PANGANIBAN	ROSALINA	HERNANDEZ			ROSALINA H. PANGANIBAN	Female	1967-06-11	BATANGAS CITY		211		BATANGAS CITY	BATANGAS	0439840619	09171151780	ROSALINA.PANGANIBAN@DEPED.GOV.PH	04-0631172-0	141-003-734-0000	1490-0094-2170					Filipino	61	1.57	t	\N	3675	67061100153	19-000442541-7	Married	A	SAN ISIDRO			211		SAN ISIDRO	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		
BAUTISTA	DEMETRIO	BALBUENA			DEMETRIO B. BAUTISTA	Male	1976-06-21	IBAAN, BATANGAS		#410		BATANGAS CITY	BATANGAS		09295320442	demetrio.bautista001@deped.gov.ph	04-0955292-6	921-649-161-0000	1490-0032-3466					Filipino	80	1.71	t	\N	3677	02002046672	19-000772834-8	Single	A+	BANABA CENTER			#410		BANABA CENTER	BATANGAS CITY	BATANGAS	Philippines	Philippines	SITIO PARANG 1	SITIO PARANG 1	4200	4200				0001-01-01		
FESTIJO	CYRUS	TAWATAO			CYRUS T. FESTIJO	Male	1990-03-06	VICTORIA, ORIENTAL MINDORO		BLK 10 LOT 8	ST. PAULA HOMES	BATANGAS CITY	BATANGAS		09165225542	cyrus.festijo@deped.gov.ph		436-868-721-0000	1210-9314-9610					Filipino	120	1.87	t	\N	3679	02004360261	09-000087723-8	Single	A	LIBJO			BLK 10 LOT 8	ST. PAULA HOMES	LIBJO	BATANGAS CITY	BATANGAS	Philippines	Philippines	CORNER 4TH STREET	CORNER 4TH STREET	4200	4200				0001-01-01		
VIVAS	AURELIA	GARCIA			AURELIA G. VIVAS	Female	1975-12-11	PINAMUKAN PROPER BATS. CITY		BLK 15 LOT 38	CAMELLA AZIENDA	BATANGAS CITY	BATANGAS		09088881167	AURELIA.VIVAS@DEPED.GOV.PH	04-3160558-2	000-912-636-0000	4015-6440-9304					Filipino	60	1.05	t	\N	3680	02004002678		Married	O+	TINGA LABAC			BLK 15 LOT 38	CAMELLA AZIENDA	TINGA LABAC	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		Mrs.
MONTALBO	NIEVES	AGUBA			NIEVES A. MONTALBO	Female	1970-08-05	PINAMUKAN EAST, BATANGAS CITY		BLOCK 4 LOT 17	MERCEDES HOMES	BATANGAS CITY	BATANGAS		09055132951	nieves.montalbo@deped.gov.ph		912-183-340-0000	0403-0702-0110					Filipino	50	1.5	t	\N	3682	06006276816	09-000010546-4	Married	O	SORO SORO ILAYA			BLOCK 4 LOT 17	MERCEDES HOMES	SORO SORO ILAYA	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		
ABAG	GENE KARLO	DISTOR			GENE KARLO D. ABAG	Male	1989-10-06	BATANGAS CITY		130		BATANGAS CITY	BATANGAS		09171350689	genekarlo.abag@deped.gov.ph		284-064-531-0000	1210-6054-4755					Filipino	85	1.62	t	\N	3684	02003403978	09-050291146-6	Married	B+	GULOD TABAC			2	RK SUBDIVISION	CALICANTO	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		
CABATAY	REDELINE JOYCE	LAGMAN			REDELINE JOYCE L. CABATAY	Female	1986-11-10	QUEZON CITY, METRO MANILA		BLOCK 1 LOT 19 PARCEL 2	MERCEDES HOMES	BATANGAS CITY	BATANGAS		09778361949	redelinejoyce.cabatay@deped.gov.ph		254-738-078-0000	1490-0011-3584					Filipino	63	1.5	t	\N	3687	02004709081		Married	O+	SOROSORO ILAYA			BLOCK 1 LOT 19 PARCEL 2	MERCEDES HOMES	SOROSORO ILAYA	BATANGAS CITY	BATANGAS	Philippines	Philippines	MERCEDES AVENUE	MERCEDES AVENUE	4200	4200				0001-01-01		Mrs.
DELGADO	MARIA VINNAH	CULLA			MARIA VINNAH C. DELGADO	Female	1972-05-03	BATANGAS CITY				BATANGAS CITY	BATANGAS		09683099125	mariahvinnah.delgado@deped.gov		150-051-389-0000	1210-5062-5806					Filipino	55	1.52	t	\N	3688		09-000023138-9	Single	B+	ALANGILAN					ALANGILAN	BATANGAS CITY	BATANGAS	Philippines	Philippines	NATIONAL HIGHWAY	NATIONAL HIGHWAY	4200	4200				0001-01-01		
DIONALDO	JESSA	FATAL			JESSA F. DIONALDO	Female	1988-02-10	BATANGAS CITY			SITIO BAGONG POOK	BATANGAS CITY	BATANGAS		09351181382	jessa.dionaldo001@deped.gov.ph	04-1940093-2	295-075-076-0000	1210-0580-4656					Filipino	60	1.54	t	\N	3690	02006270222	09-052083637-3	Married	AB+	SAN MIGUEL				SITIO BAGONG POOK	SAN MIGUEL	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		
EBORA	MENIANO	DE TORRES			MENIANO DT. EBORA	Male	1981-09-16	STO.NIÑO BATANGAS CITY		BLK. 14, LOT 17	PARCEL 1, MERCEDES HOMES SUBDIVISION	BATANGAS CITY	BATANGAS		09186704877	meniano.ebora@deped.gov.ph	04-1216963-6	934-303-403-0000	1490-0099-0037					Filipino	66	1.7	t	\N	3689	02003562526	09-050084187-6	Married	A+	SOROSORO ILAYA					STO.NIÑO	BATANGAS CITY	BATANGAS	Philippines	Philippines	LEGASPI ST.		4200	4200				0001-01-01		
BABAO	MAGIELYN	RAYOS			MAGIELYN R. BABAO	Female	1978-04-15	ISLA VERDE, BATANGAS CITY				BATANGAS CITY	BATANGAS		09217516928	magielyn.babao@deped.gov.ph	04-1123217-9	929-380-075-0000	1490-0097-4541					Filipino	58	1.62	t	\N	3693	02002087497	09-050077619-5	Widow	B+	DALIG					DALIG	BATANGAS CITY	BATANGAS	Philippines	Philippines	PUROK 2	PUROK 2	4200	4200				0001-01-01		
SORIANO	IREN	CORDERO			IREN C. SORIANO	Female	1970-09-28	TAYSAN, BATANGAS		094		BATANGAS CITY	BATANGAS		09998889052	IREN.SORIANO@DEPED.GOV.PH		148-667-758-0000	1490-0035-0432					Filipino	60	5	t	\N	3692	02002031132	09-000000535-4	Married	O+	TULO			094		TULO	BATANGAS CITY	BATANGAS	Philippines	Philippines	SITIO KANLURAN	SITIO KANLURAN	4200	4200				0001-01-01		
UNTALAN	JANIZE	MACATANGAY			JANIZE M. UNTALAN	Female	1989-06-04	BATANGAS CITY				BATANGAS CITY	BATANGAS		09268518730	janize.untalan@deped.gov.ph	04-2341946-9	403-534-688-0000	1211-4432-6906					Filipino	78	1.57	t	\N	3691	02003172346	09-025291446-2	Married	B+	MAHACOT WEST					MAHACOT WEST	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		
UNTALAN	JUNE	GUTIERREZ			JUNE G. UNTALAN	Male	1984-06-04	BATANGAS CITY			BEREDO SUBDIVISION	BATANGAS CITY	BATANGAS	0434250163	09177282933	june.untalan@deped.gov.ph		277-766-937-0000	1210-3324-9674					Filipino	65	1.65	t	\N	3685	02004176272	09-000083402-4	Married	O	ALANGILAN				BEREDO SUBDIVISION	ALANGILAN	BATANGAS CITY	BATANGAS	Philippines	Philippines	OPAL STREET	OPAL STREET	4200	4200				0001-01-01		
BUENAFE	SHIELA	LUISTRO			SHIELA L. BUENAFE	Female	1975-12-29	BATANGAS CITY		198 KWIKSET STREET	ST.PETER SUBDIVISION	BATANGAS CITY	BATANGAS	0439844470	09177282933	shiela.buenafe001@deped.gov.ph			1490-0091-9598					Filipino	72	1.57	t	\N	3686	02002895916	09-000052028-3	Single	B	ALANGILAN			198 KWIKSET STREET	ST.PETER SUBDIVISION	ALANGILAN	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		
MAGADIA	MARIA LUZ	VILLANUEVA			MARIA LUZ V. MAGADIA	Female	1994-12-03	BATANGAS CITY				BATANGAS CITY	BATANGAS		09067171189	MARIALUZMAGADIA@GMAIL.COM	34-5673879-0	480-547-655-0000	1212-8780-9560					Filipino	64	1.53	t	\N	3694	02006270123	09-250003340-3	Single	O+	TINGA LABAK					TINGA LABAK	BATANGAS CITY	BATANGAS	Philippines	Philippines	SITIO 2	SITIO 2	4200	4200				0001-01-01		Mr.
SABELLANO	BELINDA	DALANGIN			BELINDA D. SABELLANO	Female	2024-06-12	BACO, ORIENTAL MINDORO			MARINERS RESIDENCE	BATANGAS CITY	BATANGAS		09778046804	belinda.sabellano067@gmail.com		308-172-559-0000	1212-1075-0877					Filipino	80	1.52	t	\N	3700	02005275173	09-025276105-4	Married	B+	KUMINTANG ILAYA					TAGUMPAY	BACO	ORIENTAL MINDORO	Philippines	Philippines	BLOCK 3 LOT 5	BARACAN 1	4200	5201				0001-01-01		
AMOTO	ANGELISA	AREVALO			ANGELISA A. AMOTO	Female	1972-10-01	BATANGAS CITY		BLOCK 12, LOT 2	CENTER PLAIN HOMES	BATANGAS CITY	BATANGAS		09338688795	ANGELISA.AMOTO001@DEPED.GOV.PH		174-047-079-0000	1490-0096-8890					Filipino	64	1.05	t	\N	3695	02002927797	09-000007016-4	Married	B	TINGA LABAC			BLOCK 12, LOT 2	CENTER PLAIN HOMES	TINGA LABAC	BATANGAS CITY	BATANGAS	Philippines	Philippines	ÑINA,ST	ÑINA,ST	4200	4200				0001-01-01		
BALSE	CONIE	MENIA			CONIE M. BALSE	Female	1987-09-19	BATANGAS CITY			EL SITIO	BATANGAS CITY	BATANGAS		09506940675	con.balse@deped.gov.ph		270-020-821-0000	1490-0040-5625					Filipino	74	5.5	t	\N	3696	02005059868	09-050231530-6	Married	B+	DUMANTAY					SAN JUAN	TINGLOY	BATANGAS	Philippines	Philippines	5TH		4200	4203				0001-01-01		
METRILLO	ALVIN	PRICAS			ALVIN P. METRILLO	Male	1989-10-31	BRGY. LOOB, MATAAS NA KAHOY, BATANGAS		113		MATAAS NA KAHOY	BATANGAS		09054794042	ALVIN.METRILLO@DEPED.GOV.PH	04-1917755-3	417-160-149-0000	1210-4384-4175					Filipino	60	1.58	t	\N	3698	02004602517	09-050317603-2	Single	O	LOOB			113		LOOB	MATAAS NA KAHOY	BATANGAS	Philippines	Philippines			4223	4223				0001-01-01		
PANALIGAN	JESRIC BRIAN	FAJILAN			JESRIC BRIAN F. PANALIGAN	Male	1993-12-09	NAUJAN, ORIENTAL MINDORO				BATANGAS CITY	BATANGAS		09953412459	jesricbrian.panaligan@deped.gov.ph		471-834-835-0000	1211-6176-9440					Filipino	87	1.76	t	\N	3697	02115819374	09-000092686-7	Single	A	MAHABANG PARANG					MAHABANG PARANG	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		
BAUAL	RIZZA	EBORA			RIZZA E. BAUAL	Female	1990-10-11	BATANGAS CITY		BLK. 12, LOT 21	MERCEDES HOMES	BATANGAS CITY	BATANGAS		09084587588	rizza.ebora@deped.gov.ph								Filipino	64	1.5	t	\N	3703			Married	A+	SORO-SORO ILAYA			BLK. 12, LOT 21	MERCEDES HOMES	SORO-SORO ILAYA	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		
ABRUGENA	MADONNA	BORILLO			MADONNA B. ABRUGENA	Female	1974-05-11	BATANGAS CITY				BATANGAS CITY	BATANGAS	0437022094	09393665149	madonna.abrugena@deped.gov.ph	04-0942246-7	181-575-624-0000	1490-0093-1244					Filipino	68	1.6	t	\N	3702	74051101018	19-089570368-4	Married	B	SAN TEODORO					SAN TEODORO	BATANGAS CITY	BATANGAS	Philippines	Philippines	ILAYA	ILAYA	4201	4201				0001-01-01		
ULIT	EDUARDO	MAGPILI			EDUARDO M. ULIT	Male	1977-11-01	CALAPAN, ORIENTAL MINDORO		LOT 8 BLK. 6	ECOVERDE HOMES	ROSARIO	BAtangas		0917421116	EDUARDO.ULIT@DEPED.GOV.PH	33-6217940-1	217-956-268-0000	1211-5412-9168					Filipino	103	1.6	t	\N	3699	02004739844	19-089606673-4	Single	O	QUILIB			LOT 8 BLK. 6	ECOVERDE HOMES	QUILIB	ROSARIO	BAtangas	Philippines	Philippines			4225	4225				0001-01-01		
FALLURIN	FE	MACATANGAY			FE M. FALLURIN	Female	1969-09-20	BATANGAS CITY, BATANGAS		BLOCK 18 LOT 7	SUNRISE POINT SUBDIVISION	LIPA CITY	BATANGAS	7221704	09688568869	FE.FALLURIN001@DEPED.GOV.PH	04-4408829-3	158-012-045-0000	1490-0085-4500					Filipino	44	1.47	t	\N	3701	20029991535	09-000085450-0	Widow	O	INOSLUBAN			1222	TWINVILLA SUBDIVISION	KUMINTANG ILAYA	BATANGAS CITY	BATANGAS	Philippines	Philippines		BORIN STREET	4217	4200				0001-01-01		
SILANG	RHUBIE	SILANG			RHUBIE S. SILANG	Female	1975-03-20	SAN PASCUAL, BATANGAS		1114	TWINVILLA SUBDIVISION	BATANGAS CITY	BATANGAS	0437402914	09260391429	RHUBIE.SILANG001@DEPED.GOV.PH	04-1034298-9	205-475-667-0000	1490-0031-3829					Filipino	65	1.5	t	\N	3704	02005197054	19-089229129-6	Widow	O	KUMINTANG ILAYA			1114	TWINVILLA SUBDIVISION	KUMINTANG ILAYA	BATANGAS CITY	BATANGAS	Philippines	Philippines	ARGON STREET	ARGON STREET	4200	4200				0001-01-01		
RANCHEZ	RAQUEL	BARROLA			RAQUEL B. RANCHEZ	Female	1965-01-02	BATANGAS CITY				BATANGAS CITY	BATANGAS	0437027770	09176220151	raquel.ranchez002@deped.gov.ph		128-315-255-0000	1490-0089-7986					Filipino	75	1.55	t	\N	3706	02002896815	09-000022214-2	Married	A									Philippines	Philippines			4200	4200				0001-01-01		
GAYETA	CAROLINE	CLAVERIA			CAROLINE C. GAYETA	Female	1989-09-24	BATANGAS CITY		516A		BATANGAS CITY	BATANGAS		09088166537	caroline.claveria@deped.gov.ph/ caroline.claveria@yahoo.com	04-2235967-2	294-094-192-0000	0449-2773-9008					Filipino	50	1.45	t	\N	3707	02004232292	09-050258874-4	Married	O+	TULO			516A		TULO	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		
MEDINA	MARIANNE	RAYOS			MARIANNE R. MEDINA	Female	1974-04-02	BATANGAS CITY			VILLA JESUS SUBD.	BATANGAS CITY	BATANGAS		09237418686	marianne.medina001@deped.gov.ph	04-0942067-6	194-224-461-0000	1490-0091-8076					Filipino	60	1.52	t	\N	3705		09-000051803-3	Married	A	BARANGAY 20				VILLA JESUS SUBD.	BARANGAY 20	BATANGAS CITY	BATANGAS	Philippines	Philippines	ARIETTA ROAD II	ARIETTA ROAD II	4200	4200				0001-01-01		
CRUZAT	JESUSA	AREVALO			JESUSA A. CRUZAT	Female	1981-03-25	DAO, BATANGAS CITY		BLK 10, LOT 16	TIERRA VERDE	BATANGAS CITY	BATANGAS		09475856631	cruzatjesusa25@gmail.com								Filipino	55	1.5	t	\N	3708			Married	B	PALLOCAN WEST			BLK 10, LOT 16	TIERRA VERDE	PALLOCAN WEST	BATANGAS CITY	BATANGAS	Philippines	Philippines	SAINT LUKE ST.	SAINT LUKE ST.	4200	4200				0001-01-01		
CUSI	ROSEMARIE	FALCULAN			ROSEMARIE F. CUSI	Female	1977-09-09	BATANGAS CITY		13	GAWAD KALINGA	BATANGAS CITY	BATANGAS		09301836309	rosemarie.cusi@deped.gov.ph	04-1113469-1	717-411-465-0000	1212-1487-9541					Filipino	52	1.43	t	\N	3719	02005413499	09-025275689-1	Married	A+	LIBJO			13	GAWAD KALINGA	LIBJO	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC ID	1578375	2017-12-13	LUCENA CITY	
ARELLANO	ALLAN	CLEOFE			ALLAN C. ARELLANO	Male	1986-01-10	BATANGAS CITY			SITIO CUTO-CUTO	BATANGAS CITY	BATANGAS		09660512857	allan.arellano002@deped.gov.ph	04-1849892-9	252-538-481-0000	1490-0008-0370					Filipino	84	1.7	t	\N	3713	02004127290	09-050168651-3	Married	A+	MARUCLAP				SITIO CUTO-CUTO	MARUCLAP	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC ID	0955057	2007-12-05	LUCENA CITY	
ADEVA	LUCIA	CAMACHO			LUCIA C. ADEVA	Female	1989-10-15	BATANGAS CITY		MALIGAYA VILLAGE ROAD	PUROK 1	BATANGAS CITY	BATANGAS		09127705002	lucia.adeva@depe.gov.ph	04-1986593-3	454-867-229-0000	1211-2232-5522					Filipino	55	1.5	t	\N	3712	02004994187	09-050214181-2	Married	O	GULOD ITAAS			MALIGAYA VILLAGE ROAD	PUROK 1	GULOD ITAAS	BATANGAS CITY	BATANGAS	Philippines	Philippines	SITIO KANLURAN	SITIO KANLURAN	4200	4200		PRC ID	1271763	2014-01-10	LUCENA CITY	
ESTERO	MARCELA	REGALARIO			MARCELA R. ESTERO	Female	1976-01-31	BATANGAS CITY				BATANGAS CITY	BATANGAS		09065878996	marcela.estero@deped.gov.ph		921-099-006-0000	1490-0092-0166					Filipino	70	1.49	t	\N	3711	76013100388	09-000051376-7	Married	A	STO. NINO					STO. NINO	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PROFESSIONAL REGULATION COMMISSION	0243236	1997-12-15	PRC-MANILA	
HERNANDEZ	ANABELLE	DE CASTRO			ANABELLE DC. HERNANDEZ	Female	1981-08-07	MAYURO, ROSARIO, BATANGAS				BATANGAS CITY	BATANGAS		09089456368	anabelle.hernandez@deped.gov.ph		303-549-785-0000	1211-4544-4516					Filipino	101	1.57	t	\N	3715	02111581226	09-025033653-4	Married	O	SOROSORO IBABA					SOROSORO IBABA	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	0982026	2007-05-12	LUCENA CITY	
ABAS	RHODORA	MAALA			RHODORA M. ABAS	Female	1976-03-03	RIZAL, PANDAYAN TAAL BATANGAS		#31		BATANGAS CITY	BATANGAS	7026892	09605342485	rhodora.abas001@deped.gov.ph		918-073-524-0000	1490-0098-4543					Filipino	50	1.55	t	\N	3714	00431801140	09-050014044-4	Married	O	PALLOCAN WEST			#31		PALLOCAN WEST	BATANGAS CITY	BATANGAS	Philippines	Philippines	MASITERA STREET	MASITERA STREET	4200	4200		PRC	0241338	0001-01-01	LUCENA CITY	
HERNANDEZ	AIDA BLANDINA	ALONZO			AIDA BLANDINA A. HERNANDEZ	Female	1991-06-01	BATANGAS CITY		218		BATANGAS CITY	BATANGAS		09507338526	aidablandina.alonzo@deped.gov.ph	04-2590477-8	424-375-147-0000	9121-8810-3513					Filipino	60	1.6	t	\N	3717	02004709921	09-050334526-8	Married	B+	GULOD LABAC			218		GULOD LABAC	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	1124253	2012-04-18	PRC-LUCENA	
ADOYO	JOCELYN	SALAS			JOCELYN S. ADOYO	Female	1980-11-26	ALABANG MUNTINLUPA, METRO MANILA			POTENCIANA VILLAGE	BATANGAS CITY	BATANGAS	3112903	09696098664	jocelyn.adoyo@deped.gov.ph	04-1271553-0	926-097-379-0000	1490-0098-0893					Filipino	50	1.55	t	\N	3716	02003459318	19-090052392-4	Married	A+	PALLOCAN WEST				POTENCIANA VILLAGE	PALLOCAN WEST	BATANGAS CITY	BATANGAS	Philippines	Philippines	JASMINE STREET	JASMINE STREET	4200	4200		PRC ID	0757246	2024-06-18	ALABANG, METRO MANILA	
DAZA	RONALYN	PIADUCHE			RONALYN P. DAZA	Female	1985-11-12	BATANGAS CITY				BATANGAS CITY	BATANGAS		09295163743	ronalyn.daza@deped.gov.ph	04-2021289-2	263-623-486-0000	1640-0105-7114					Filipino	58	1.5	t	\N	3721	02006236712	09-050224716-5	Married	A+	STA. CLARA					STA. CLARA	BATANGAS CITY	BATANGAS	Philippines	Philippines	SITIO PUYO	SITIO PUYO	4200	4200		PRC	1487917	2016-12-09	LUCENA CITY	
ALCANTARA	BRENDA	PORCINO			BRENDA P. ALCANTARA	Female	1993-10-31	SAN ANTONIO, ISLA VERDE BATANGAS CITY			AMIHAN VILLAGE	BATANGAS CITY	BATANGAS		09387811735	brenda.porcino@deped.gov.ph		462-784-580-0000	1212-0601-1301					Filipino	45	1.49	t	\N	3718	20052151550	01-025446137-6	Married	O	BALAGTAS				AMIHAN VILLAGE	BALAGTAS	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	1461480	2016-03-20	MANILA	Mrs.
ALCAYDE	MIA BERNADINE	AGUILAR			MIA BERNADINE A. ALCAYDE	Female	1994-10-09	BATANGAS CITY				BATANGAS CITY	BATANGAS		09171871657	miabernadine.aguilar@deped.gov.ph	34-5490086-3	471-446-200-0000	1211-5090-7073					Filipino	50	1.49	t	\N	3720	20052134790	09-050465956-8	Married	A+	PINAMUCAN IBABA					PINAMUCAN IBABA	BATANGAS CITY	BATANGAS	Philippines	Philippines	SITIO BABASA	SITIO BABASA	4200	4200		PRC	1393613	2015-12-09	LUCENA	
DINGLASAN	ANALYN	ALORRO			ANALYN A. DINGLASAN	Female	1978-03-07	CULASI, ANTIQUE			SITIO SUPREME	BATANGAS CITY	BATANGAS		09053647110	analyn.dinglasan@deped.gov.ph	33-6782729-5	226-354-262-0000	1210-2556-0336					Filipino	53	1.58	t	\N	3710		19-000786890-5	Married	A+	STO. NINO				SITIO SUPREME	STO. NINO	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC ID	0612339	1999-11-15	MANILA	
GUICO	LALAINE	ILAGAN			LALAINE I. GUICO	Female	1985-09-29	BATANGAS CITY				BATANGAS CITY	BATANGAS		09175350130	lalaine.guico@deped.gov.ph	04-1739577-7	302-580-324-0000	1490-0081-8665					Filipino	65	1.63	t	\N	3722	02005948935	09-050155732-2	Married	O	SAN MIGUEL					SAN MIGUEL	BATANGAS CITY	BATANGAS	Philippines	Philippines	SITIO BAGONG POOK	SITIO BAGONG POOK	4200	4200		PRC ID	0929842	2006-08-27	LUCENA CITY	
TARCELO	MARITES	DE CASTRO			MARITES DC. TARCELO	Female	1976-12-06	BATANGAS CITY		0276	BULIHAN	BATANGAS CITY	BATANGAS		09151454687	marites.tarcelo@deped.gov.ph	04-0944844-1	188-268-709-0000	1490-0092-0154					Filipino	63	1.52	t	\N	3709	20029993890	09-000051603-0	Married	A	TABANGAO AMBULONG			0276	BULIHAN	TABANGAO AMBULONG	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC ID	0498801	2024-12-26	STA.MESA MANILA	
TOLENTINO	FRITZIE ANNE	FAJICULAY			FRITZIE ANNE F. TOLENTINO	Female	1986-04-14	CORCUERA, ROMBLON			DE JOYA COMPOUND LABAC	BATANGAS CITY	BATANGAS		09087534046	fritzieanne.tolentino@deped.gov.ph	04-1846632-2	253-618-770-0000	1490-0073-4162					Filipino	72	1.8	t	\N	3728	02005400541	09-050172408-3	Married	O+	ALANGILAN				DE JOYA COMPOUND LABAC	ALANGILAN	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC ID	1508472	2016-09-28	LUCENA CITY	
HERILLA	LORNA	SAWALI			LORNA S. HERILLA	Female	1999-01-12	TINGLOY, BATANGAS		UNIT 14 PHASE 1	VILLA VICTOIRE	BATANGAS CITY	BATANGAS		09611979762	lornaherilla0828@gmail.com	34-9513393-2	375-636-200-0000	1212-7235-5761					Filipino	79	1.53	t	\N	3723	02006531112	09-025721012-9	Single	A+	PALLOCAN EAST			UNIT 14 PHASE 1	VILLA VICTOIRE	PALLOCAN EAST	BATANGAS CITY	BATANGAS	Philippines	Philippines	PULO	PULO	4200	4200		PRC LICENSE	1842770	2020-01-10	PRC LUCENA	
MENDOZA	RHANDLE	ANONUEVO			RHANDLE A. MENDOZA	Male	1993-05-12	BATANGAS CITY		PUROK 5A	MACSOR SITE	BATANGAS CITY	BATANGAS		09605313139	rhandle.mendoza@deped.gov.ph	04-2705051-0	314-416-698-0000	1211-0786-8694					Filipino	78	1.52	t	\N	3725	02005866452	09-050391667-2	Single	O+	STA. CLARA			PUROK 5A	MACSOR SITE	STA. CLARA	BATANGAS CITY	BATANGAS	Philippines	Philippines	RIZAL AVENUE EXTENSION ROAD	RIZAL AVENUE EXTENSION ROAD	4200	4200		PRC ID	1648920	2018-06-20	LUCENA CITY	
ALUAN	LOIDA	RAMOS			LOIDA R. ALUAN	Female	1979-07-29	POBLACION, LOBO BATANGAS				BATANGAS CITY	BATANGAS		09186126205	loida.aluan@deped.gov.ph		927-336-979-0000	1490-0092-8568					Filipino	51	1.63	t	\N	3724	79092900303	09-000054404-2	Married	O	DALIG					DALIG	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	0744888	2017-10-24	PRC LUCENA	
MERCENES	MA. LORIELYN	BAGUI			MA. LORIELYN B. MERCENES	Female	1996-11-13	DAGAT-DAGATAN, CALOOCAN CITY				BATANGAS CITY	BATANGAS		09755627144	malorielyn.mercenes@deped.gov.ph	04-3906878-1	337-861-834-0000	9171-5724-9485					Filipino	60	1.39	t	\N	3726	02006068718	09-050518857-7	Single	O	SOROSORO ILAYA					SOROSORO ILAYA	BATANGAS CITY	BATANGAS	Philippines	Philippines	PUROK 5	PUROK 5	4200	4200		PROFESSIONAL REGULATION COMMISSION	1581339	2017-12-14	LUCENA	
COLLERA	LEANICA	ABUNDA			LEANICA A. COLLERA	Female	1995-09-12	MALITAM, BATANGAS CITY			CENTRAL	BATANGAS CITY	BATANGAS		09913281626	leanica.abunda@deped.gov.ph	04-3749223-6	490-348-241-0000	1211-8103-7167					Filipino	63	1.52	t	\N	3733	02005845290	09-250184141-4	Married	A+	LIBJO				CENTRAL	LIBJO	BATANGAS CITY	BATANGAS	Philippines	Philippines	BABAO ROAD	BABAO ROAD	4200	4200		PASSPORT ID	P5319080C	0001-01-01	LUCENA CITY	
BALMES	ANALIZA	MANALO			ANALIZA M. BALMES	Female	1988-03-07	BATANGAS CITY				BATANGAS CITY	BATANGAS		09230882057	analiza.balmes001@deped.gov.ph	04-2416653-3	341-752-606-0000	1211-2298-2894					Filipino	60	1.53	t	\N	3729	02005311915	09-000096333-9	Married	B	HALIGUE SILANGAN					HALIGUE SILANGAN	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		NATIONAL ID	3495096758628170	2022-07-12	BATANGAS CITY	
ANTENOR	KIRJEE ALEXIS	CELLO			KIRJEE ALEXIS C. ANTENOR	Male	1992-07-01	BATANGAS CITY		11C	TIERRA VERDE SUBDIVISION	BATANGAS CITY	BATANGAS		09617540415	kirjeealexis.antenor@deped.gov.ph		469-615-177-0000	1211-9932-8844					Filipino	70	1.77	t	\N	3727	02005637255	09-050449320-1	Single	O	PALLOCAN WEST			11C	TIERRA VERDE SUBDIVISION	PALLOCAN WEST	BATANGAS CITY	BATANGAS	Philippines	Philippines	ST. AGUSTIN STREET	ST. AGUSTIN STREET	4200	4200		PRC ID	1425999	2024-03-21	LUCENA CITY, QUEZON	
SULIT	MARIVIC	BUENAFE			MARIVIC B. SULIT	Female	1990-09-16	PASIG CITY		BLOCK 8 LOCT 1/3	MERCEDES HOMES SUBD.	BATANGAS CITY	BATANGAS		09473431393	marivic.sulit@deped.gov.ph	04-2947656-1	454-408-912-0000	1211-2187-1170					Filipino	60	1.6	t	\N	3730	02005974103	09-050176522-7	Separated	O+	SORO-SORO ILAYA			BLOCK 8 LOCT 1/3	MERCEDES HOMES SUBD.	SORO-SORO ILAYA	BATANGAS CITY	BATANGAS	Philippines	Philippines	PARCEL 4 MARIA MARTHA ST.	PARCEL 4 MARIA MARTHA ST.	4200	4200		PRC	1419662	2015-12-23	PRC MANILA	
BADILLO	MARY KRIS	ALMAREZ			MARY KRIS A. BADILLO	Female	1993-01-18	BATANGAS CITY, BATANGAS		001		SAN LUIS	BATANGAS		09164850075	marykris.badillo@deped.gov.ph		436-885-209-0000	1210-9745-6941					Filipino	65	1.55	t	\N	3731	02005228738	09-050369622-2	Married	A+	CALUMPANG EAST			001		CALUMPANG EAST	SAN LUIS	BATANGAS	Philippines	Philippines			4210	4210		PRC LICENSE	1298892	2014-04-24	LUCENA CITY, QUEZON	
CAMPOSAGRADO	MELANIE	SUAREZ			MELANIE S. CAMPOSAGRADO	Female	1987-01-06	BATANGAS CITY				BATANGAS CITY	BATANGAS		09367531291	melanie.camposagrado@deped.gov.ph	04-2026227-9	274-886-989-0000	1211-6938-6108					Filipino	80	1.7	t	\N	3736	02004190805	09-050226285-7	Married	A	CONDE ITAAS					CONDE ITAAS	BATANGAS CITY	BATANGAS	Philippines	Philippines	PUROK 1	PUROK 1	4200	4200		PRC LICENSE	14026606	2023-12-18	STA. ROSA LAGUNA	
CUETO	ANGELA YVONNE	FACTOLERIN			ANGELA YVONNE F. CUETO	Female	1990-05-02	BATANGAS CITY			VILLA DE OCAMPO	BATANGAS CITY	BATANGAS	7400992	09491316234	angelayvonne.cueto@deped.gov.ph		409-332-105-0000	9161-1899-9798					Filipino	80	1.59	t	\N	3735	02004975909	09-050295165-2	Married	O+	GULOD ITAAS				VILLA DE OCAMPO	GULOD ITAAS	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	1096785	2011-07-27	LUCENA CITY	
BAUTISTA	LANIE	ARCOIREZ			LANIE A. BAUTISTA	Female	1983-05-14	BATANGAS CITY				BATANGAS CITY	BATANGAS	7863519	09267411920	lanie.bautista@deped.gov.ph	04-1218556-8	937-552-086-0000	1210-5100-3906					Filipino	57	1.5	t	\N	3734	02004341053	09-050120992-8	Married	O	LIBJO					LIBJO	BATANGAS CITY	BATANGAS	Philippines	Philippines	EASTERN	EASTERN	4200	4200		PRC	1068486	2010-09-01	LUCENA CITY	
TEOVISIO	KAREN JEAN	TAPANGAN			KAREN JEAN T. TEOVISIO	Female	1994-07-06	TAGUM DAVAO DEL NORTE			BUKLOD 1	BATANGAS CITY	BATANGAS		09671988585	kjean.2013178@gmail.com	04-4082998-0	375-708-001-0000	1212-3784-2795					Filipino	51	1.59	t	\N	3738	02006517056	09-050551065-7	Married	B+	DUMANTAY				BUKLOD 1	DUMANTAY	BATANGAS CITY	BATANGAS	Philippines	Philippines	EVERLASTING	EVERLASTING	4200	4200		PRC	1692274	2018-09-01	LUCENA CITY	
SAGAYNO	ROBBIE	ALINEA			ROBBIE A. SAGAYNO	Female	1978-12-14	SAN PABLO CITY				BATANGAS CITY	BATANGAS		09165903742	robbie.alinea@deped.gov.ph		411-561-253-0000	1210-3975-6418					Filipino	48	1.52	t	\N	3739	02004128970	09-025223257-4	Married	B	DUMUCLAY SOUTH					DUMUCLAY SOUTH	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC ID	0781933	2002-11-18	LUCENA CITY	
MAHAYAG	LIEZL	FAJARITO			LIEZL F. MAHAYAG	Female	1982-02-17	PALLOCAN WEST, BATANGAS CITY		12		BATANGAS CITY	BATANGAS	7813388	09605342478	liezl.mahayag@deped.gov.ph		419-893-475-0000	1210-7811-2078					Filipino	60	1.52	t	\N	3740	02004190804	09-000084629-4	Married	O	PALLOCAN WEST			12		PALLOCAN WEST	BATANGAS CITY	BATANGAS	Philippines	Philippines	ANLIT	ANLIT	4200	4200		PRC	1019517	2009-03-04	LUCENA CITY	
ATIENZA	MHATIEL	GARCIA			MHATIEL G. ATIENZA	Female	1995-05-20	BATANGAS CITY		24/12	MERCEDES HOMES	BATANGAS CITY	BATANGAS	7406787	09988415502	mhatiel.garcia@deped.gov.ph	04-3568876-7	467-570-791-0000	1211-9918-1221					Filipino	47	1.54	t	\N	3737	02005403666	09-050444553-3	Married	B+	SORO-SORO ILAYA			24/12	MERCEDES HOMES	SORO-SORO ILAYA	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC ID	1425977	0001-01-01	LUCENA CITY	
MERCADO	MYRNA	PAZ			MYRNA P. MERCADO	Female	1970-09-29	BATANGAS CITY		4860		BATANGAS CITY	BATANGAS		09289665229	myrna.mercado@deped.gov.ph	04-0801589-1	931-078-355-0000	1490-0093-5705					Filipino	61	1.73	t	\N	3741	02002992861	09-025031710-6	Married	B	PALLOCAN WEST			4860		PALLOCAN WEST	BATANGAS CITY	BATANGAS	Philippines	Philippines	VELASQUEZ ST.	VELASQUEZ ST.	4200	4200		PRC ID	0803291	0001-01-01	ROSARIO, BATANGAS	
MONTALBO	MARIE	ALMAREZ			MARIE A. MONTALBO	Female	1990-11-19	BATANGAS CITY		047		BATANGAS CITY	BATANGAS		09564780615	marie.montalbo001@deped.gov.ph		435-492-448-0000	1210-1110-6355					Filipino	74	1.55	t	\N	3743	02004626975	00-905030750-3	Married	A	TALUMPOK WEST			047		TALUMPOK WEST	BATANGAS CITY	BATANGAS	Philippines	Philippines	SITIO GUINTO	SITIO GUINTO	4200	4200		PRC ID	1123914	2012-04-08	LUCENA	
GOOT	MARIA DINA	RAMOS			MARIA DINA R. GOOT	Female	1969-06-02	BATANGAS CITY		PUROK 2	ARAGO COMPOUND	BATANGAS CITY	BATANGAS	7814619	09205921236	mariadina.goot@deped.gov.ph		105-681-443-0000	1490-0097-4375					Filipino	95	1.57	t	\N	3744	02002995043	09-050002384-7	Married	B+	DALIG			PUROK 2	ARAGO COMPOUND	DALIG	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		DEPED ID	4263950	0001-01-01	BATANGAS CITY	
FEBRIA	RONALYN	SASTADO			RONALYN S. FEBRIA	Female	1987-01-15	BUCAL, BATANGAS CITY				BATANGAS CITY	BATANGAS		09483522722	ronalyn.febria@deped.gov.ph	04-1613159-2	304-654-480-0000	1211-7457-2901					Filipino	65	1.55	t	\N	3753	02004232148	09-201448031-7	Married	O	BUCAL					BUKAL	BATANGAS CITY	BATANGAS	Philippines	Philippines	D. SILANG ST.	D. SILANG ST.	4200	4200		PRC ID	1123475	2012-04-18	PRC LUCENA	
BOOL	LENY	MAGTIBAY			LENY M. BOOL	Female	1966-01-19	LOBO BATANGAS		04		BATANGAS CITY	BATANGAS		09189649408	leny.bool@deped.gov.ph		124-516-319-0000	1490-0083-8569					Filipino	59	1.51	t	\N	3742	02002991603	09-000007373-2	Married	O	PALLOCAN WEST			04		PALLOCAN WEST	BATANGAS CITY	BATANGAS	Philippines	Philippines	QUINIO	QUINIO	4200	4200		PRC	0009136	1996-10-30	MANILA PHILIPPINES	
BONSOL	LOUIELYN	GAYAGAYA			LOUIELYN G. BONSOL	Female	1994-09-06	BATANGAS CITY				BATANGAS CITY	BATANGAS		09163045509	louielyn.bonsol@deped.gov.ph		328-790-931-0000	1211-7238-5877					Filipino	60	1.65	t	\N	3732	02005433643	09-250188176-9	Married	B+	BILOGO					BILOGO	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC ID	1515146	2016-12-23	PRC LUCENA	
FERNANDEZ	MARIA CLARISSA	MAGADIA			MARIA CLARISSA M. FERNANDEZ	Female	1994-10-05	METRO MANILA		58		BATANGAS CITY	BATANGAS		09086758844	mariaclarissafernandez0105@gmail.com	04-2981880-2	457-925-465-0000	1211-2772-6259					Filipino	65	1.63	t	\N	3746	02006569668	09-050425265-4	Married	B+	BARANGAY 2			58		BARANGAY 2	BATANGAS CITY	BATANGAS	Philippines	Philippines	MH DEL PILAR STREET	MH DEL PILAR STREET	4200	4200		PRC ID	1803681	2019-12-16	LUCENA CITY	
DE CASTRO	MARIACECILIA	DUENAS			MARIACECILIA D. DE CASTRO	Female	1982-02-13	POBLACION, LOBO, BATANGAS CITY				BATANGAS CITY	BATANGAS		09684978356	mariacecilia.decastro@deped.gov.ph		934-310-495-0000	1490-0093-9000					Filipino	55	1.51	t	\N	3745	06010987191	09-000060301-4	Married	B+	PALLOCAN WEST					PALLOCAN WEST	BATANGAS CITY	BATANGAS	Philippines	Philippines	TARNATE ST.	TARNATE ST.	4200	4200		PRC	0780611	2022-11-18		
LIWAG	MARY CHRISTINE	PEREZ			MARY CHRISTINE P. LIWAG	Female	1986-07-24	BATANGAS CITY				BATANGAS CITY	BATANGAS		09971854151	marychristine.liwag@deped.gov.ph	04-1884453-1	255-262-931-0000	1210-0536-5365					Filipino	56	1.54	t	\N	3749	02003404453	00-305038253-9	Married	B	BALETE					BALETE	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		DRIVER'S LICENSE	D01-19-001856	2019-02-10	BATANGAS CITY	
DE CASTRO	RUEL	BALMES			RUEL B. DE CASTRO	Male	1979-12-15	BATANGAS CITY		73A		BATANGAS	BATANGAS	7848020	09563977545	RUEL.DE CASTRO@DEPED.GOV.PH	04-1272073-2	929-373-581-0000	1210-3734-4935					Filipino	80	1.72	t	\N	3748	20034493439	09-050078904-4	Single	O+	PALLOCAN WEST			73A		PALLOCAN WEST	BATANGAS	BATANGAS	Philippines	Philippines	GUSI	GUSI	4200	4200		DRIVERS LICENSE	DO1-12-003558	2032-12-15	BATANGAS CITY	
PLATA	AILYN	LAGMAN			AILYN L. PLATA	Female	1970-02-05	BATANGAS CITY		266		BATANGAS CITY	BATANGAS		09915447122	ailyn.plata@deped.gov.ph		177-627-187-0000	1490-0088-1668					Filipino	53	1.46	t	\N	3750	02002993951	09-000014005-7	Married	A	BUKAL			266		BUKAL	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC ID	0158269	1997-09-30	PRC MANILA	
ESCAREZ	ELMA	OXINA			ELMA O. ESCAREZ	Female	1973-06-04	LABRADOR PANGASINAN		1212	SITIO LAMAO	BATANGAS CITY	BATANGAS	4024327	09454803809	elma_escarez@yahoo.com		912-277-339-0000	0401-2634-7908					Filipino	52	1.52	t	\N	3747		09-000021780-7	Married	A	LIBJO			1212	SITIO LAMAO	LIBJO	BATANGAS CITY	BATANGAS	Philippines	Philippines	ST. JOSEPH	ST. JOSEPH	4200	4200		PRC	0311291	1999-02-19	MANILA	
MATALA	IRENE	PAGCALIWAGAN			IRENE P. MATALA	Female	1984-05-05	BUCAL, BATANGAS CITY				BATANGAS CITY	BATANGAS		09230892985	irene.matala@deped.gov.ph	04-1305137-4	251-919-517-0000	1020-0332-8596					Filipino	42	1.49	t	\N	3752	02004477418	08-050639473-6	Married	O+	BUKAL					BUKAL	BATANGAS CITY	BATANGAS	Philippines	Philippines			42000	42000		PRC	0894177	2005-12-05	LUCENA	
CATILO	ALMA	MEDRANO			ALMA M. CATILO	Female	1977-02-13	BATANGAS CITY		41		BATANGAS CITY	BATANGAS		09770671733	alma.catilo@deped.gov.ph		918-072-227-0000	1210-2658-9866					Filipino	80	1.54	t	\N	3751	02004161274	09-205204257-0	Single	A	BILOGO			41		BILOGO	BATANGAS CITY	BATANGAS	Philippines	Philippines	ZONE 1	ZONE 1	4200	4200		PRC	0820742	2003-10-24	LUCENA CITY	
COMETA	ATHENA	MENDOZA			ATHENA M. COMETA	Female	1981-12-04	BATANGAS CITY		322 PUROK 2		SAN JOSE	BATANGAS	0437022671	09988639304	athena.cometa@deped.gov.ph		940-464-389-0000	1490-0096-3003					Filipino	43	1.5	t	\N	3756	02002895240	09-000064755-0	Single	B	AGUILA			322 PUROK 2		AGUILA	SAN JOSE	BATANGAS	Philippines	Philippines			4227	4227		PRC	0820478	2003-11-24	LUCENA CITY	
DE TORRES	MARIBEL	DE CASTRO			MARIBEL DC. DE TORRES	Female	1978-09-17	BUCAL BATANGAS CITY		0078		BATANGAS CITY	BATANGAS		09156020010	maribel.detorres@deped.gov.ph		301-719-396-0000	1490-0096-5660					Filipino	60	1.5	t	\N	3755	02002896686	09-025158561-9	Married	O	BUCAL			0078		BUCAL	BATANGAS CITY	BATANGAS	Philippines	Philippines	WEST	WEST	4200	4200		PRC	0656056	2000-10-26	MANILA	
ROSALES	ROMMEL	ADARLO			ROMMEL A. ROSALES	Male	1985-11-14	BATANGAS CITY		BLOCK 10 / LOT 8	LE CLERMONT SUBDIVISION	SAN PACUAL	BATANGAS CITY		09219882493	rommel.rosales@deped.gov.ph		262-324-760-0000	1490-0002-2095					Filipino	69	1.69	t	\N	3774	02003473159	09-000072474-1	Married	O+	BALIMBING			BLOCK 10 / LOT 8	LE CLERMONT SUBDIVISION	BALIMBING	SAN PACUAL	BATANGAS CITY	Philippines	Philippines			4204	4204		PRC ID	1587508	2017-12-15	PRC MANILA	
DE CASTRO	APRIL PEARL	TEJADA			APRIL PEARL T. DE CASTRO	Female	1987-04-16	BUKAL, BATANGAS CITY		347		BATANGAS CITY	BATANGAS		09926508829	aprilpearl.decastro@deped.gov.ph		447-831-621-0000	1211-5492-7513					Filipino	130	1.54	t	\N	3757	02116012454	09-000092610-7	Single	O	BUKAL			347		BUKAL	BATANGAS CITY	BATANGAS	Philippines	Philippines	E. JACINTO STREET	E. JACINTO STREET	4200	4200		PRC	1304119	2014-05-29	PRC LUCENA	
ALCANTARA	ROSE ANN	MENDOZA			ROSE ANN M. ALCANTARA	Female	1995-05-07	STA. CLARA BATANGAS CITY		PARCEL 5/ BLOCK 40/ LOT. 12	MERCEDES HOMES	BATANGAS	BATANGAS		09166308495	ROSEANN.ALCANTARA001@DEPED.GOV.PH	13-0167210-7	626-552-944-0000	1211-9916-7887					Filipino	46	1.58	t	\N	3754	02005819514	09-250002039-5	Single	O+	SORO-SORO ILAYA			PARCEL 5/ BLOCK 40/ LOT. 12	MERCEDES HOMES	SORO-SORO ILAYA	BATANGAS	BATANGAS	Philippines	Philippines			4200	4200		PRC	1516711	2016-12-27	LUCENA CITY	
MACATANGAY	MARISSA	ANTE			MARISSA A. MACATANGAY	Female	1983-12-25	BATANGAS CITY				BATANGAS CITY	BATANGAS		0919597938	marissa.macatangay@deped.gov.ph		304-790-783-0000	1490-0097-9034					Filipino	60	1.57	t	\N	3759	02003001151	09-200628134-8	Married	A	SOROSORO KARSADA					SOROSORO KARSADA	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC ID	08666381	2004-12-06	PRC LUCENA CITY	
AGUSTIN	RONILO	DELOS SANTOS			RONILO DS. AGUSTIN	Male	1961-11-18	MAKATI METRO MANILA				BATANGAS CITY	BATANGAS		0	MARYGRACE.ADAO@DEPED.GOV.PH	33-0127518-8	126-982-694-0000	1490-0093-2710					Filipino	75	1.6	t	\N	3763	02002993830	19-000787521-9	Widow	A	BANABA WEST					BANABA WEST	BATANGAS CITY	BATANGAS	Philippines	Philippines	SITIO GO WEST	SITIO GO WEST	4200	4200		DEPED ID	4176215	0001-01-01	BATANGAS CITY	
TULIAO	BABYLINDA	COMETA			BABYLINDA C. TULIAO	Female	1966-10-04	BUKAL, BATANGAS CITY		368		BATANGAS CITY	BATANGAS		09196426534	babylinda.tuliao001@deped.gov.ph		164-192-649-0000	1490-0089-1547					Filipino	55	1.52	t	\N	3765	02002994146	09-000014004-9	Married	A	BUKAL			368		BUKAL	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	0110415	1997-08-30	LUCENA	
DUMAPIT	RENIEL	PLATA			RENIEL P. DUMAPIT	Male	1989-09-03	ROSARIO, PASIG, METRO MANILA		291		BATANGAS CITY	BATANGAS		09771657934	reniel.dumapit@deped.gov.ph	04-2254606-1	294-760-523-0000	1210-9620-4650					Filipino	92.8	1.69	t	\N	3760	02004396596	09-050261217-3	Single	B	BUCAL			291		BUCAL	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PROFESSIONAL IDENTIFICATION CARD	1085027	2023-09-19	ROBINSONS PLACE, LAS PINAS	
BARTE	EVANGELINE	DELIZO			EVANGELINE D. BARTE	Female	1965-11-29	CALAPAN, ORIENTAL MINDORO				BATANGAS	BATANGAS		09090803746	EVANGELINE.BARTE001@DEPED.GOV.PH		174-050-874-0000	1490-0083-6415					Filipino	60	1.67	t	\N	3758	02003003240	09-000014032-4	Married	O+	BANABA WEST					BANABA WEST	BATANGAS	BATANGAS	Philippines	Philippines	LOOBAN 2	LOOBAN 2	4200	4200		PRC LICENSE	0071575	1997-06-11	PRC MANILA	
MACATANGAY	ROWENA	PAGCALIWAGAN			ROWENA P. MACATANGAY	Female	1969-10-24	BUCAL, BATANGAS CITY				BATANGAS CITY	BATANGAS		09605313104	rowena.macatangay@deped.gov.ph	04-1584423-3	124-519-177-0000	1490-0087-9334					Filipino	45	1.45	t	\N	3762	02002995564	09-000014011-1	Widow	B	BUKAL					BUKAL	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC ID	0095910	1997-08-11	PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY	
JAVIER	MAYLIEN	MENDOZA			MAYLIEN M. JAVIER	Female	1989-05-04	SAN JOSE, BATANGAS		0183		BATANGAS CITY	BATANGAS		09455645777	maylien.mendoza@deped.gov.ph		279-166-649-0000	1211-4940-8011					Filipino	65	1.62	t	\N	3761	02004169617	09-059231795-3	Married	B+	BUCAL			0183		BUCAL	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC ID	1045765	2010-01-06	LUCENA CITY	
PAPASIN	ENIA	DE GUZMAN			ENIA DG. PAPASIN	Female	1967-01-08	BATANGAS CITY		BLOCK & LOT 13	BRIXTON HOMES SUBDIVISION	LIPA CITY	BATANGAS		09171543842	enia.papasin2deped.gov.ph	04-0718370-8	115-305-232-0000	1490-0090-0161					Filipino	55	1.56	t	\N	3764	02002998352	09-000009382-2	Widow	O	BALINTAWAK			BLOCK & LOT 13	BRIXTON HOMES SUBDIVISION	BALINTAWAK	LIPA CITY	BATANGAS	Philippines	Philippines			4217	4217		PRC	0023680	1997-01-10	MANILA	
ADAO	MARY GRACE	BECHAYDA			MARY GRACE B. ADAO	Female	1986-03-09	BATANGAS CITY				BATANGAS CITTY	BATANGAS		09985486360	MARYGRACE.ADAO@DEPED.GOV.PH	04-1434149-4	253-006-873-0000	1490-0038-4369					Filipino	55	1.54	t	\N	3766	02005120805	09-025132766-6	Married	B	BANABA WEST					BANABA WEST	BATANGAS CITTY	BATANGAS	Philippines	Philippines	SITIO MANGGAHAN	SITIO MANGGAHAN	4200	4200		PRC ID	0004994	2015-11-25	MANILA	Mrs.
BARRAMEDA	RODEZA MHAE	AMPARO			RODEZA MHAE A. BARRAMEDA	Female	1998-01-28	BATANGAS CITY		BLOCK 12/LOT12	GC BERBERABE	BATANGAS CITY	BATANGAS		09122107745	rodezaamparo.1998@gmail.com	34-7776914-6	656-739-263-0000	1212-3152-9788					Filipino	50	1.56	t	\N	3768	02006523215	09-250190668-0	Married	B+	PALLOCAN EAST			BLOCK 12/LOT12	GC BERBERABE	PALLOCAN EAST	BATANGAS CITY	BATANGAS	Philippines	Philippines	AMETHYST STREET	AMETHYST STREET	4200	4200		PRC ID	1697719	2019-01-03	LUCENA CITY	
VIBAL	ROMABEL	VILLAREAL			ROMABEL V. VIBAL	Female	1990-08-27	BUKAL, BATANGAS CITY				BATANGAS CITY	BATANGAS		09772063255	romabel.villareal@deped.gov.ph		439-917-512-0000	1210-4417-1454					Filipino	54	1.43	t	\N	3767	02004488918	09-050333922-5	Married	O+	BUKAL					BUKAL	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC LICENSE	1134868	0001-01-01	LUCENA CITY	
AMUL	ILYN	DUTADO			ILYN D. AMUL	Female	1987-08-22	LIPONPON ISLA VERDE, BATANGAS CITY				BATANGAS CITY	BATANGAS		09605572145	ilyn.dutado@deped .gov.ph	04-2120864-3	276-965-600-0000	1210-8787-4278					Filipino	54	1.58	t	\N	3773	02004190803	09-950228907-5	Married	O	LIPONPON ISLA VERDE					LIPONPON ISLA VERDE	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PPRC ID	1046209	2021-07-23	LUCENA CITY	
ALANO	MARISSA	CEPEDOSA			MARISSA C. ALANO	Female	1990-08-20	BAOGO INABANGA BOHOL				BATANGAS CITY	BATANGAS		09097964658	MARISSA.ALANO@DEPED.GOV.PH		408-200-240-0000	1211-4369-2512					Filipino	53	162	t	\N	3769	02004232299	09-000085313-4	Married	AB+	BANABA WEST					BANABA WEST	BATANGAS CITY	BATANGAS	Philippines	Philippines	LOOBAN 2	LOOBAN 2	4200	4200		PRC	1123669	2012-04-18	LUCENA CITY	
VILLANUEVA	ANALYN	OLIT			ANALYN O. VILLANUEVA	Female	1985-09-24	SAN ANTONIO, ISLA VERDE, BATANGAS CITY				BATANGAS CITY	BATANGAS		09684979005	analyn.villanueva004@deped.gov.ph		437-092-690-0000	1211-0023-8354					Filipino	46	1.52	t	\N	3771	02004396527	23-001926421-7	Married	O	SAN ANTONIO, ISLA VERDE					SAN ANTONIO, ISLA VERDE	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	1198046	2013-05-05	LUCENA CITY	
GONZALES	MYLA	BAJA			MYLA B. GONZALES	Female	1981-06-22	LIPONPON, ISLA VERDE				BATANGAS CITY	BATANGAS		09605572141	myla.gonzales002@deped.gov.ph		301-853-264-0000	0449-0798-9406					Filipino	56	1.54	t	\N	3770	02002511754	09-000063590-0	Married	A	LIPONPON					LIPONPON	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	0820926	2003-11-24	LUCENA CITY	
DIMASACAT	CHARILL	EBORA			CHARILL E. DIMASACAT	Female	1981-12-01	LIPONPON ISLA VERDE, BATANGAS CITY				BATANGAS CITY	BATANGAS		09396237887	charill.dimasacat001@deped.gov.ph		934-873-660-0000	0401-5295-9806					Filipino	65	1.58	t	\N	3772	81011200389	09-000081985-8	Married	O	LIPONPON, ISLA VERDE					LIPONPON, ISLA VERDE	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	709083	2001-10-26	RAMON MAGSAYSAY HIGH SCHOOL	
ESCALONA	MA. GENEVA ALMERA ARAH	ESPELETA			MA. GENEVA ALMERA ARAH E. ESCALONA	Female	1993-01-12	BATANGAS CITY		BLOCK 30 LOT 51 & 52	MERCEDES HOMES	BATANGAS CITY	BATANGAS		09972806867	magenevaalmeraarah.escalona@deped.gov.ph	04-2758123-8	446-250-925-0000	1210-9129-0267					Filipino	68	1.65	t	\N	3775	02005837619	09-050375159-2	Married	O	SORO-SORO			BLOCK 30 LOT 51 & 52	MERCEDES HOMES	SORO-SORO	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC LICENSE	1236144	2013-12-05	LUCENA CITY	
GARCIA	AISHA JADE	CASTILLO			AISHA JADE C. GARCIA	Female	1984-02-03	BATANGAS CITY			BANABA A-POOL	BATANGAS CITY	BATANGAS		09219335918	aishajade.garcia@deped.gov.ph		721-330-806-0000	1213-0853-0362					Filipino	74	1.58	t	\N	3777	02006141124	09-250167427-5	Married	A	SANTA RITA KARSADA								Philippines	Philippines			4200			PRC ID	1645769	2009-09-22	LUCENA CITY	
COMETA	RHEZIEL	BORILLO			RHEZIEL B. COMETA	Female	1981-11-19	BATANGAS CITY				BATANGAS CITY	BATANGAS		09196950576	RHEZIEL.COMETA@DEPED.GOV.PH	04-1369542-6	250-820-662-0000	1211-2389-5068					Filipino	54	1.62	t	\N	3776	02004510692	09-050103743-4	Married	A	TINGA LABAC					TINGA LABAC	BATANGAS CITY	BATANGAS	Philippines	Philippines	SITIO 2	SITIO 2	4200	4200		PRC LICENSE	0780473	2002-11-19	LUCENA CITY	
MACATANGAY	ROSALIE	MACATANGAY			ROSALIE M. MACATANGAY	Female	1970-08-09	BATANGAS CITY		375		BATANGAS CITY	BATANGAS		09068671057	ROSALIE.MACATANGAY001@DEPED.GOV.PH		174-453-302-0000	1490-0086-7309					Filipino	51	1.55	t	\N	3778	02002996675	09-000012397-7	Single	AB	BANABA KANLURAN			375		BANABA KANLURAN	BATANGAS CITY	BATANGAS	Philippines	Philippines	SITIO LOOBAN 1	SITIO LOOBAN 1	4200	4200		GSIS ID	006-0069-9533-3	2010-05-15	BATANAGS CITY	
SAMONTE	ANGELA	VALENCIA			ANGELA V. SAMONTE	Female	1998-06-08	BATANGAS CITY				BATANGAS CITY	BATANGAS		09812246251	angelasamonte.0608@gmail.com	34-8452201-7	743-515-560-0000	1212-5055-8025					Filipino	73	1.58	t	\N	3783		09-250224331-6	Single	O+	ALANGILAN					ALANGILAN	BATANGAS CITY	BATANGAS	Philippines	Philippines	SITIO 2A	SITIO 2A	4200	4200		PRC LICENSE	1810560	2019-12-18	LUCENA	
MENDOZA	DARRAH LYNN	DAGOT			DARRAH LYNN D. MENDOZA	Female	1979-07-10	NARRA PALAWAN			SITIO LOOBAN 1	BATANGAS CITY	BATANGAS		09122286974	DARRAHLYNN.MENDOZA001@DEPED.GOV.PH		942-071-235-0000	1490-0097-4297					Filipino	50	150	t	\N	3785	02002896292	09-000075396-2	Married	O	BANABA WEST				SITIO LOOBAN 1	BANABA WEST	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	0684889	2000-11-27	MANILA	
MOJADO	EDNA	CUSI			EDNA C. MOJADO	Female	1965-01-01	SAN ANTONIO, ISLA VERDE, BATANGAS CITY				BATANGS CITY	BATANGAS		09771366067	edna.mojado@deped.gov.ph		124-612-263-0000	1490-0099-3746					Filipino	56	1.52	t	\N	3779	81011200389	09-000010515-4	Married	O	SAN ANTONIO, ISLA VERDE					SAN ANTONIO, ISLA VERDE	BATANGS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	0099378	0001-01-01		
DIMACULANGAN	LANILYN	ARANAS			LANILYN A. DIMACULANGAN	Female	1979-09-03	BATANGAS CITY		56		BATANGAS	BATANGAS	0437749208	09125894836	LANILYN.DIMACULANGAN@DEPED.GOV.PH		280-325-750-0000	1210-8931-5321					Filipino	80	1.64	t	\N	3780	02004285012	09-000086738-0	Married	O+	BANABA WEST			56		BANABA WEST	BATANGAS	BATANGAS	Philippines	Philippines	SITIO LAGUNDI	SITIO LAGUNDI	4200	4200		PRC	094527	2027-09-03	LUCENA CITY	
PORCINO	CLEO LALAINE	PAGCALIWAGAN			CLEO LALAINE P. PORCINO	Female	1998-08-12	BATANGAS CITY		LOT 9 BLOK 15		BATANGAS CITY	BATANGAS		09669221216	cleolalaineprocino@gmail.com	34-9208882-8	396-218-440-0000	1212-8171-4955					Filipino	45	1.62	t	\N	3782	02006517090	09-250156032-6	Single	O	SANTA CLARA			LOT 9 BLOK 15		SANTA CLARA	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC ID	2077826	2023-07-26	LIPA, BATANGAS	
HERRERA	JOHN RAFAEL	PAGSUYOIN			JOHN RAFAEL P. HERRERA	Male	1996-06-13	PASIG CITY				BATANGAS	BATANGAS	4023562	09391849311	JOHNRAFAEL.HERRERA@DEPED.GOV.PH	04-3932919-0	706-291-472-0000	1212-0415-2570					Filipino	98	1.75	t	\N	3781	02006122685	09-250244062-6	Single	AB+	BANABA KANLURAN					BANABA KANLURAN	BATANGAS	BATANGAS	Philippines	Philippines	SITIO GO WEST	SITIO GO WEST	4200	4200		PRC ID	1634360	2018-03-25	LUCENA CITY	
MENDOZA	PRECITA	CIUDAD			PRECITA C. MENDOZA	Female	1962-12-03	BAUAN, BATANGAS			PERLAS COMPOUND	BATANGAS CITY	BATANGAS		09	precita.mendoza@deped.gov.ph	03-9281134-7	127-387-170-0000	1490-0025-1206					Filipino	58.8	1.52	t	\N	3784	02005312626	09-025073206-5	Married	O	KUMINTANG ILAYA				PERLAS COMPOUND	KUMINTANG ILAYA	BATANGAS CITY	BATANGAS	Philippines	Philippines	EMERALD STREET	EMERALD STREET	4200	4200		SSS ID	0392811347	1988-01-01	BATANGAS CITY	
FESTIJO	IRISH	SAJUL			IRISH S. FESTIJO	Female	1998-12-30	TINGGA ITAAS, BATANGAS CITY		302		BATANGAS CITY	BATANGAS		09770076091	irish.festijo@deped.gov.ph	04-4275706-3	749-304-109-0000	1212-5140-0790					Filipino	52	1.57	t	\N	3786	02006188687	09-025672940-6	Single	B	TINGA ITAAS			302		TINGA ITAAS	BATANGAS CITY	BATANGAS	Philippines	Philippines	PUROK 4	PUROK 4	4200	4200		PRC ID/LICENSE	1901674	2022-04-22	ROBINSONS STA. ROSA LAGUNA	
PLATA	NINA JHUSTINE	BORRES			NINA JHUSTINE B. PLATA	Female	1999-01-10	CALICANTO, BATANGAS CITY			PUROK 6	BATANGAS CITY	BATANGAS		09854023021	ninajhustine.plata@deped.gov.ph	34-9410455-1	761-341-928-0000	1212-7112-6002					Filipino	54	1.54	t	\N	3787		09-025735809-6	Widow	B+	CALICANTO				PUROK 6	CALICANTO	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC LICENSE	1873847	2020-02-17	LUCENA CITY, QUEZON	
ENOT	MARYROSE	PATAL			MARYROSE P. ENOT	Female	1990-12-16	BIGA LOBO BATANGAS				BATANGAS CITY	BATANGAS		09662872559	meryrose.enot@deped.gov.ph	04-3842136-1	334-630-775-0000	1211-9080-3916					Filipino	57	1.45	t	\N	3788	02005411648	09-201474173-0	Married	B	BALAGTAS					BALAGTAS	BATANGAS CITY	BATANGAS	Philippines	Philippines	SITIO 1	SITIO 1	4200	4200		PRC ID	1470287	2016-07-04	PAGADIAN CITY	
CENIZA	MELODY KYLIE	MENDOZA			MELODY KYLIE M. CENIZA	Female	1991-04-05	STA. CLARA, BATANGAS CITY		BLOCK 11 LOT NO. 13		BATANGAS CITY	BATANGAS		09178066514	melodykylie.ceniza@deped.gov.ph	04-2391079-3	287-591-103-0000	1210-4414-9359					Filipino	75	1.67	t	\N	3790	02004488931	09-025364256-3	Married	O+	STA. CLARA			BLOCK 11 LOT NO. 13		STA. CLARA	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	1135054	2012-06-18	LUCENA	
LOZANO	MERCYDELINA	ATIENZA			MERCYDELINA A. LOZANO	Female	1982-04-10	BATANGAS CITY				BATANGAS CITY	BATANGAS		09217404320	mercydelina.lozano@deped.gov.ph	33-6765819-2	202-731-224-0000	1210-4693-3655					Filipino	58	1.46	t	\N	3789	02004532195	19-051278069-9	Married	O	DUMANTAY					DUMANTAY	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC LICENSE	0875489	2004-10-28	LUCENA	
GASCO	RICHARD	MATANGUIHAN			RICHARD M. GASCO	Male	1979-04-24	LIPA CITY				BATANGAS CITY	BATANGAS		09292677297	richard.gasco@deped.gov.ph	33-7518908-0	213-743-619-0000	1211-4455-6896					Filipino	52	1.6	t	\N	3792	02004510731	09-025114137-0	Married	A+	STA. CLARA					STA. CLARA	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC ID	1254000	2013-12-16	PRC MANILA	
GAMAB	ROSEBEL	ARGUELLES			ROSEBEL A. GAMAB	Female	1997-02-14	BATANGAS CITY		425		BATANGAS CITY	BATANGAS		09773646513	rosebel.gamab@deped.gov.ph	04-3906590-4	705-325-364-0000	1212-0561-1111					Filipino	46	1.53	t	\N	3791	02006108789	09-050521133-1	Single	O+	WAWA			425		WAWA	BATANGAS CITY	BATANGAS	Philippines	Philippines	PUROK 3	PUROK 3	4200	4200		PRC ID / LICENSE	1638128	2024-01-29	SOUTH PARK CENTER	
MENDOZA	DIANA ROSE	CAISIP			DIANA ROSE C. MENDOZA	Female	1997-10-19	BATANGAS CITY				BATANGAS CITY	BATANGAS		09099736978	DIANAROSE.MENDOZA001@DEPED.GOV.PH	34-5872659-3	327-960-231-0000	1211-6910-4489					Filipino	48	1.61	t	\N	3793	02006108745	09-250197858-4	Married	A+	STA. RITA KARSADA BANABA A-POOL					STA. RITA KARSADA BANABA A-POOL	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	1757728	2019-06-03	LUCENA CITY	
MENDOZA	LORELYN	MENDOZA			LORELYN M. MENDOZA	Female	1979-08-31	STA. CLARA, BATANGAS CITY				BATANGAS CITY	BATANGAS		09158591386	lorelyn.mendoza001@deped.gov.ph		447-936-123-0000	1212-0596-6432					Filipino	50	1.56	t	\N	3794	02004739881	09-201847329-3	Single	O	STA. CLARA					STA. CLARA	BATANGAS CITY	BATANGAS	Philippines	Philippines	PUROK 6	PUROK 6	4200	4200		PRC ID	1200638	2017-01-16	LUCENA CITY	
GUTIERREZ	AIZA	MERCADO			AIZA M. GUTIERREZ	Female	1993-06-25	BATANGAS CITY		163		BATANGAS CITY	BATANGAS		09661725842	aiza.mercado@deped.gov.ph		460-276-473-0000	1211-2339-1021					Filipino	65	1.58	t	\N	3797	02005142104	09-025426561-5	Married	O+	MALITAM			163		MALITAM	BATANGAS CITY	BATANGAS	Philippines	Philippines	ROSAL	ROSAL	4200	4200		PRC LICENSE	1335485	2014-11-25	LUCENA CITY	
MENDOZA	MELISA	FALEJO			MELISA F. MENDOZA	Female	1981-09-05	CORCUERA, ROMBLON		BLOCK 10 LOT 34		BATANGAS CITY	BATANGAS		09493687250	melisa.mendoza001@deped.gov.ph		944-779-028-0000	1490-0098-0914					Filipino	54	1.55	t	\N	3800	02003448045	09-000069547-4	Married	O	BALETE RELOCATION SITE			BLOCK 10 LOT 34		BALETE RELOCATION SITE	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	0756656	2002-10-29	LUCENA	
BALMES	REVEGEN	MARASIGAN			REVEGEN M. BALMES	Female	1994-12-25	BATANGAS CITY				BATANGAS CITY	BATANGAS		09268507800	revegen.balmes@deped.gov.ph	04-4169949-4	744-648-019-0000	1212-0323-6194					Filipino	48	1.49	t	\N	3799	02005603688	09-050519306-6	Single	B+	HALIGUE SILANGAN					HALIGUE SILANGAN	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	1480734	2016-09-25	LUCENA	
FALCULAN	CARLA	FAMODULAN			CARLA F. FALCULAN	Female	1997-03-30	CORCUERA, ROMBLON		0081	PUROK 1	BATANGAS CITY	BATANGAS	0437028138	09555945710	carla.falculan@deped.gov.ph	04-4084374-6	605-687-216-0000	1212-9407-8178					Filipino	71	1.55	t	\N	3795	02006022875	09-050561710-9	Single	B+	CONDE LABAC			0081	PUROK 1	CONDE LABAC	BATANGAS CITY	BATANGAS	Philippines	Philippines	MALIGAYA ROAD	MALIGAYA ROAD	4200	4200		PRC ID	1697710	2019-01-03	LUCENA	
MENDOZA	KATHLEEN	TINGCHUY			KATHLEEN T. MENDOZA	Female	1974-11-12	BATANGAS CITY				BATANGAS CITY	BATANGAS	9806001	09293210478	KATHLEEN.MENDOZA001@DEPED.GOV.PH		926-102-678-0000	1490-0094-5321					Filipino	58	1.34	t	\N	3796	02002877290	17-000041403-7	Married		BANABA WEST					BANABA WEST	BATANGAS CITY	BATANGAS	Philippines	Philippines	ROADSIDE	ROADSIDE	4200	4200		PRC	0592341	1999-10-21	MANILA	
BAYANI	MA. ALELI	PANALIGAN			MA. ALELI P. BAYANI	Female	1991-02-12	BATANGAS CITY		BLK. 1, LOT 14		BATANGAS CITY	BATANGAS		09079937667			460-310-841-0000	1212-1039-8284					Filipino	49	1.5	t	\N	3798	02005283860	09-000091416-8	Married	AB	DUMANTAY			BLK. 1, LOT 14		DUMANTAY	BATANGAS CITY	BATANGAS	Philippines	Philippines	SITIO KANLURAN	SITIO KANLURAN				PRC ID / LICENSE	1307303	2014-10-01	LUCENA CITY	
PASIA	JOVELYN	GUTIERREZ			JOVELYN G. PASIA	Female	1986-05-08	SAN MIGUEL BULACAN				BATANGAS CITY	BATANGAS		09926280464	JOVELYN.PASYA@DEPED.GOV.PH	34-1124698-4	261-337-856-0000	1210-2821-9744					Filipino	60	1.65	t	\N	3801	02003736386	21-000005692-2	Married	B	BANABA WEST					BANABA WEST	BATANGAS CITY	BATANGAS	Philippines	Philippines	SITIO MANGGAHAN	SITIO MANGGAHAN	4200	4200		PRC	0948541	2007-11-21	MANILA	
MENDOZA	ANDREA GINA	ILAGAN			ANDREA GINA I. MENDOZA	Female	1965-11-30	BATANGAS CITY		BLK 8 LOT 9	CAMELLA	BATANGAS CITY	BATANGAS		09183779813	andrea.mendoza002@deped.gov.ph	03-9178403-5	120-966-860-0000	1211-7036-0253					Filipino	82	1.68	t	\N	3804	02003512481	09-025045516-9	Married	A	ALANGILAN			BLK 8 LOT 9	CAMELLA	ALANGILAN	BATANGAS CITY	BATANGAS	Philippines	Philippines	VERONA, PHASE 2	VERONA, PHASE 2	4200	4200		PRC	0896630	2005-12-07	LUCENA	
PERSINCULA	MARLENE	FALTADO			MARLENE F. PERSINCULA	Female	1969-07-13	BANABA WEST BATANGAS CITY		201		BATANGAS CITY	BATANGAS		09204028921	MARLENE.PERSINCULA001@DEPED.GOV.PH		168-177-882-0000	1490-0088-1379					Filipino	51	1.52	t	\N	3803	02002995095	09-000014215-7	Married	A+	BANABA WEST			201		BANABA WEST	BATANGAS CITY	BATANGAS	Philippines	Philippines	SITIO SEEKERS	SITIO SEEKERS	4200	4200		PRC	0060310	1997-05-15	LUCENA	
SADABA	JOLEFEL	ANONUEVO			JOLEFEL A. SADABA	Female	1989-05-26	CALICANTO, BATANGAS CITY		316		BATANGAS	BATANGAS		09506519187	JOLEFEANONUEVO@DEPED.GOV.PH	04-2117227-4	279-166-594-0000	1210-7957-9068					Filipino	60	1.53	t	\N	3805	02005746213	09-050231788-0	Married	O+	BANABA CENTER			316		BANABA CENTER	BATANGAS	BATANGAS	Philippines	Philippines	SITIO PARANG 2	SITIO PARANG 2	4200	4200		PRC ID	1045833	2010-01-06	LUCENA CITY	
SUMAGUE	HELEN	MACATANGAY			HELEN M. SUMAGUE	Female	1977-05-09	BATANGAS CITY				BATANGAS	BATANGAS		09273689443	HELEN.SUMAGUE001@DEPED.GO.PH	04-3319840-8	902-364-202-0000	1490-0092-8534					Filipino	55	1.52	t	\N	3806	02002992497	09-000053917-0	Married	O	TINGA LABAC					TINGA LABAC	BATANGAS	BATANGAS	Philippines	Philippines	POOK MASIKAP	POOK MASIKAP	4200	4200		PRC ID	0582707	1999-10-09	MANILA	
ZARASPE	CECILIA	DELGADO			CECILIA D. ZARASPE	Female	1968-02-02	FABRICA, LOBO BATANGAS		545		BATANGAS CITY	BATANGAS		09396213330	cecilia.zaraspe@deped.gov.ph		192-983-402-0000	1490-0089-4909					Filipino	65	1.5	t	\N	3809	02003002799	09-000007118-7	Widow	A	SAMPAGA CENTRO			545		SAMPAGA CENTRO	BATANGAS CITY	BATANGAS	Philippines	Philippines	GOV. ANTONIO CARPIO ROAD	GOV. ANTONIO CARPIO ROAD	4200	4200		PRC LICENSE	043100	1998-09-08	MANILA	
NEBRIDA	ELIZA	BAGSIT			ELIZA B. NEBRIDA	Female	1977-12-23	BATANGAS CITY			ABACAN SUBDIVISION	BATANGAS CITY	BATANGAS		09618306429	eliza.nebrida@deped.gov.ph	04-3296734-2	912-183-446-0000	1490-0096-7291					Filipino	55	1.56	t	\N	3808	02003003069	09-050053617-8	Married	O+	CALICANTO				ABACAN SUBDIVISION	CALICANTO	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC LICENSE	0492668	1998-11-16	MANILA	
RAMIREZ	ANGELICA	MENDOZA			ANGELICA M. RAMIREZ	Female	1993-11-04	BATANGAS CITY		120		BATANGAS CITY	BATANGAS		09953169522	ANGELICA.RAMIREZ@DEPED.GOV.PH	04-2714264-8	473-104-773-0000	1211-2969-9839					Filipino	55	1.61	t	\N	3802	02005607464	09-201776323-9	Married	B+	SAN PEDRO			120		SAN PEDRO	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		SSS UMID ID	011154940413	0001-01-01	BATANGAS CITY	
VERGARA	ROSHELLE	GUTEZA			ROSHELLE G. VERGARA	Female	1997-03-01	BATANGAS CITY				BATANGAS	BATANGAS		09954686641	ROSHELLE.VERGARA@DEPED.HOV.PH	04-3892891-6	337-861-701-0000	1211-9782-7017					Filipino	50	1.5	t	\N	3807	02005622377	09-050515028-6	Single	B	SANTA RITA KARSADA			077		LEPUTE	SAN JOSE	BATANGAS	Philippines	Philippines			4200	4227		PRC ID	1567936	2017-12-08	LUCENA CITY	
ALVAREZ	GLADES	MARASIGAN			GLADES M. ALVAREZ	Female	1977-03-11	BATANGAS CITY		21	SIRANG LUPA	BATANGAS CITY	BATANGAS		09605313203	glades.alvarez001@deped.gov.ph	04-1114602-9	302-580-412-0000	1490-0096-8809					Filipino	62	1.56	t	\N	3810	02002896400	09-050078295-0	Married	B	SIRANG LUPA			21	SIRANG LUPA	SIRANG LUPA	BATANGAS CITY	BATANGAS	Philippines	Philippines	PUROK 1	PUROK 1	4200	4200		PRC LICENSE	0657668	2000-10-28	MANILA	
SANTOS	EMMA	CUETO			EMMA C. SANTOS	Female	1983-07-29	ISLA VERDE, BATANGAS CITY			BEREDO'S COMPOUND	BATANGAS CITY	BATANGAS		09185932204	emma.santos001@deped.gov.ph		304-225-135-0000	1490-0097-4564					Filipino	56	1.5	t	\N	3812	02002895317	09-000066245-2	Married	O	ALANGILAN				BEREDO'S COMPOUND	ALANGILAN	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	0898878	2005-12-31	LUCENA	
VALLE	MILA ALMA	GALARPE			MILA ALMA G. VALLE	Female	1971-04-17	MISAMIS ORIENTAL		33		BATANGAS	BATANGAS		09107544671	MILAALMA.VALLE@DEPED.GOV.PH		302-550-871-0000	1490-0036-9370					Filipino	63	1.63	t	\N	3813	02002123600	09-000064834-4	Married	O	BANABA WEST			33		BANABA WEST	BATANGAS	BATANGAS	Philippines	Philippines	LOOBAN 1	LOOBAN 1	4200	4200		PRC ID	0692950	2001-01-10	BAGUIO	
RONQUILLO	MARIFE	ABEL			MARIFE A. RONQUILLO	Female	1977-10-02	BATANGAS CITY		11 RS		BATANGAS CITY	BATANGAS		09605313210	marife.ronquillo@deped.gov.ph		927-337-716-0000	1490-0092-8544					Filipino	80	1.55	t	\N	3811	02002992757	19-000831582-9	Married	O	CUTA WEST			11 RS		CUTA WEST	BATANGAS CITY	BATANGAS	Philippines	Philippines	M.H. DEL PILAR STREET	M.H. DEL PILAR STREET	4200	4200		PRC LICENSE	0709902	2001-10-26	LUCENA CITY	
GARCIA	REA	ALEA			REA A. GARCIA	Female	1979-10-02	STA. CLARA, BATANGAS CITY				BATANGAS CITY	BATANGAS		09450895437	aerzac_2@yahoo.com		938-792-667-0000	1490-0094-7686					Filipino	62	1.5	t	\N	3815	02002895579	09-000063672-9	Married	O	STA. CLARA								Philippines	Philippines	PUROK 7		2400			PRC	0820694	2003-11-24	MANILA	
CRELENCIA	JAZMIN	MAGLUNOG			JAZMIN M. CRELENCIA	Female	1968-03-17	MANILA			VILLAS DE JESUS SUBDIVISION	BATANGAS CITY	BATANGAS		09338162523	jazmin.crelencia001@deped.gov.ph	33-0935347-1	101-871-429-0000	1210-2026-3105					Filipino	62	1.6	t	\N	3816	02004561006	19-089733125-3	Single	AB+	BARANGAY 20				VILLAS DE JESUS SUBDIVISION	BARANGAY 20	BATANGAS CITY	BATANGAS	Philippines	Philippines	ARRIETA ROAD	ARRIETA ROAD	4200	4200		NATIONAL ID	2867195706205216	2022-12-01	MANILA	
MACARAIG	TACIANA			QUINERY	TACIANA MACARAIG QUINERY	Female	1966-01-12	BATANGAS CITY				BATANGAS CITY	BATANGAS		0173677576	taciana.macaraig001@deped.gov.ph		253-894-762-0000	1490-0098-9937					Filipino	69	1.64	t	\N	3823	02003493334	09-000071645-5	Married	O	STA. CLARA					STA. CLARA	BATANGAS CITY	BATANGAS	Philippines	Philippines	PUROK 6	PUROK 6	4200	4200		PRC LICENSE	975381	2008-02-19	MANILA	
NOCHE	JEANNETE	DIZON			JEANNETE D. NOCHE	Female	1974-01-28	MARINDUQUE		1692 / 11 / 11		BATANGAS CITY	BATANGAS		09350887064	jeannette.noche001@deped.gov.ph		183-219-434-0000	1490-0085-0816					Filipino	50	1.52	t	\N	3825	02003003625	09-000013883-4	Married	B	SANTA CLARA			1692 / 11 / 11		SANTA CLARA	BATANGAS CITY	BATANGAS	Philippines	Philippines	PCAD	PCAD	4200	4200		PRC LICENSE	0556055	1999-05-25	MANILA	
BALITAAN	CORAZON	CAAWAY			CORAZON C. BALITAAN	Female	1971-08-07	WAWA, BATANGAS CITY			EASTERN	BATANGAS CITY	BATANGAS		09940772705	corazon.balitaan001@deped.gov.ph		934-312-614-0000	1490-0094-2957					Filipino	57	1.55	t	\N	3817	02002896269	09-000057610-6	Married	A	LIBJO				EASTERN	LIBJO	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC ID	0592155	1999-08-08	LUCENA CITY	
CUSTODIO	NELISA	PAPASIN			NELISA P. CUSTODIO	Female	1976-10-02	BATANGAS CITY		NO. 20	STARVILLE SUBDIVISION	BATANGAS CITY	BATANGAS		09157226912	nelisa.custodio@deped.gov.ph		922-069-847-0000	1490-0091-5924					Filipino	60	1.49	t	\N	3818	02002927441	09-000044809-4	Married	O+	GULOD ITAAS			NO. 20	STARVILLE SUBDIVISION	GULOD ITAAS	BATANGAS CITY	BATANGAS	Philippines	Philippines	SUPERNOVA	SUPERNOVA	4200	4200		PRC LICENSE	0241662	1997-12-12	MANILA	
DINGLASAN	AIDA	ATIENZA			AIDA A. DINGLASAN	Female	1974-11-22	BATANGAS CITY		363-A		BATANGAS CITY	BATANGAS		09295160800	aida.dinglasan@deped.gov.ph	04-0916402-6	182-682-748-0000	1490-0083-4274					Filipino	52	1.57	t	\N	3819	02002992058	09-000012416-7	Married	O+	TULO CENTRO			363-A		TULO CENTRO	BATANGAS CITY	BATANGAS	Philippines	Philippines	CALLEJON ROAD	CALLEJON ROAD	4200	4200		PRC LICENSE	0113165	1997-09-02	MANILA	
TORRES	MARY JANE	CADANO			MARY JANE C. TORRES	Female	1984-03-11	BATANGAS CITY				BATANGAS CITY	BATANGAS		09157364449	maryjane.torres@deped.gov.ph	04-1651950-9	301-641-010-0000	1490-0081-1749					Filipino	56	1.49	t	\N	3820	02004162667	09-050120259-1	Married	AB+	CUTA CENTRAL					CUTA CENTRAL	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	1026698	2009-06-08	BATANGAS CITY	
RAMIREZ	REA	GABOG			REA G. RAMIREZ	Female	1980-03-31	CUTA, BATANGAS CITY				BATANGAS CITY	BATANGAS		09684934474	rea.ramirez@deped.gov.ph		301-641-077-0000	1490-0098-1924					Filipino	48	1.54	t	\N	3821	02003562327	09-050120260-5	Married	O	TULO					TULO	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	0709803	2001-10-26	LUCENA CITY	
ABEJO	LUISA	SANCHEZ			LUISA S. ABEJO	Female	1972-04-09	LIBJO BATANGAS CITY		1289		BATANGAS CITY	BATANGAS	7744805	09497449222	LUISA.ABEJO@DEPED.GOV.PH		187-897-475-0000	1490-0098-4721					Filipino	75	1.21	t	\N	3814	02002942930	19-000362705-9	Married	B	LIBJO			1289		LIBJO	BATANGAS CITY	BATANGAS	Philippines	Philippines	LAMAO	LAMAO	4200	4200		PRC ID	0359274	2024-06-27	ALABANG CITY	
CULLERA	EPITACIA	CONCHA			EPITACIA C. CULLERA	Female	1975-05-23	IMELDA. SAN JUAN, BATANGAS		BLOCK 9 / LOT 25	MERCEDES HOMES	BATANGAS CITY	BATANGAS		09089915567	epitacia.cullera@deped.gov.ph		443-305-300-0000	1490-0095-8331					Filipino	62	1.51	t	\N	3832	02002967202	19-000525322-9	Married	B+	SOROSORO ILAYA			BLOCK 9 / LOT 25	MERCEDES HOMES	SOROSORO ILAYA	BATANGAS CITY	BATANGAS	Philippines	Philippines	CAMBRIDGE ST.	CAMBRIDGE ST.	4226	4226		PRC	0292812	1998-02-02	LUCENA CITY	
ALMAREZ	TOMMY	ASI			TOMMY A. ALMAREZ	Male	1984-09-18	CONDE ITAAS, BATANGAS CITY				BATANGAS	BATANGAS		09276968746	TOMMY.ALMAREZ@DEPED.GOV.PH	04-1613648-8	938-789-069-0000	1490-0009-7718					Filipino	74	1.63	t	\N	3822	02005820456	09-050120001-7	Single	O	CONDE ITAAS					CONDE ITAAS	BATANGAS	BATANGAS	Philippines	Philippines			4200	4200		PRC ID	1024364	2009-05-28	LUCENA CITY	
ANONUEVO	FRANCISCA	DE CASTRO			FRANCISCA DC. ANONUEVO	Female	1969-03-09	TABANGAO AMBULONG, BATANGAS CITY		106		BATANGAS	BATANGAS		09162622738		04-0820997-8	132-109-768-0000	1490-0090-4511					Filipino	50	1.49	t	\N	3824	02002927386	19-000560137-5	Married	B+	TABANGAO AMBULONG			106		TABANGAO AMBULONG	BATANGAS	BATANGAS	Philippines	Philippines	SITIO PROPER	SITIO PROPER	4200	4200		PRC	0034705	1997-02-03	MANILA	
ABACAN	JEAN	MACARAIG			JEAN M. ABACAN	Female	1967-08-31	BATANGAS CITY		0265		BATANGAS CITY	BATANGAS		09175172621	jean.abacan@deped.gov.ph		174-047-117-0000	1490-0091-8053					Filipino	58	1.62	t	\N	3826	02002992550	09-000044259-2	Married	B	STA. CLARA			0265		STA. CLARA	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	0539256	1999-03-13	MANILA	
RAMIREZ	LOVELLA	BACLAO			LOVELLA B. RAMIREZ	Female	1975-01-30	BATANGAS CITY				BATANGAS CITY	BATANGAS		09605313209	lovella.ramirez@deped.gov.ph		443-548-000-0000	1490-0090-8163					Filipino	54	1.46	t	\N	3829	02003004338	19-000531325-6	Married	B	SIMLONG					SIMLONG	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC ID / LICENSE	0022235	2027-01-30	BATANGAS	
GUARDIANO	LORENA	ARELLANO			LORENA A. GUARDIANO	Female	1973-03-22	TULO, BATANGAS CITY		513		BATANGAS CITY	BATANGAS		09091997660	lorena.guardiano001@deped.gov.ph		166-399-082-0000	1490-0083-3341					Filipino	47	1.47	t	\N	3827	02003004204	09-000007124-1	Married	B	TULO			513		TULO	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	0276964	1998-01-16	MANILA	
SALIGAO	ETHEL	MEDINA			ETHEL M. SALIGAO	Female	1978-10-13	ISLA VERDE, BATANGAS CITY			STO. NINO VILLAGE	BATANGAS CITY	BATANGAS		09085648378	ethel.saligao001@deped.gov.ph	04-3404961-1	933-463-065-0000	1490-0093-6250					Filipino	55	1.56	t	\N	3831	02002992405	09-020556485-5	Married	B	BOLBOK				STO. NINO VILLAGE	BOLBOK	BATANGAS CITY	BATANGAS	Philippines	Philippines	WOODPECKER STREET	WOODPECKER STREET	4200	4200		PRC	0592304	1999-10-21	MANILA	
FAMPULME	MARGELEN	FAJILAN			MARGELEN F. FAMPULME	Female	1970-01-17	CORCUERA, ROMBLON				BATANGAS CITY	BATANGAS		09605313229	margelen.fampulme@deped.gov.ph		177-620-095-0000	1490-0085-4979					Filipino	40	1.52	t	\N	3828	02003004625	09-000007117-9	Married	B	KUMINTANG ILAYA					KUMINTANG ILAYA	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC LICENSE	0015629	1996-12-27	MANILA	
MENDOZA	GUILLERMA	RAMOS			GUILLERMA R. MENDOZA	Female	1970-02-10	BATANGAS CITY		BLK 14A LOT 29	CAMELLA SOLAMENTE	BATANGAS CITY	BATANGAS		09954629717	guillerma.mendoza001@deped.gov.ph		163-163-067-0000	1490-0088-3243					Filipino	40	1.57	t	\N	3830	02003000882	09-000007127-6	Married	B	SORO-SORO KARSADA			BLK 14A LOT 29	CAMELLA SOLAMENTE	SORO-SORO KARSADA	BATANGAS CITY	BATANGAS	Philippines	Philippines	CALLE SEVILLA	CALLE SEVILLA	4200	4200		PRC ID	0066417	1997-05-29	MANILA	
BUROG	BARRY	BAES			BARRY B. BUROG	Male	1991-06-11	BATANGAS CITY				BATANGAS CITY	BATANGAS		09540381018	barry.burog@deped.gov.ph		409-444-815-0000	1211-9620-3899					Filipino	56	1.59	t	\N	3833	02004341108	09-050295399-1	Single	O+	STA. CLARA					STA. CLARA	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC ID	1139002	2012-07-06	LUCENA CITY	
SALCEDO	LANIE JANE	SORIANO			LANIE JANE S. SALCEDO	Female	1994-01-23	BATANGAS CITY		BLK 18 LOT 8	BETZAIDA VILLAGE	BATANGAS CITY	BATANGAS		09185431891	laniejane.salcedo@deped.gov.ph	04-2610662-7	313-838-727-0000	1210-9302-1778					Filipino	55.75	1.53	t	\N	3837	02006446990	09-050369993-0	Married	AB	DUMANTAY				SAN AGAPITO	ISLA VERDE	BATANGAS CITY	BATANGAS	Philippines	Philippines	EVERLASTING STREET		4200	4200		PRC ID	1951314	2022-12-02	LUCENA CITY	
MACALINDONG	GEMMA	CUETO			GEMMA C. MACALINDONG	Female	1969-08-24	ISLA VERDE, BATANGAS CITY				BATANGAS CITY	BATANGAS		09655021727	gemma.macalindong@deped.gov.ph	04-3061802-0	933-465-347-0000	1490-0093-5049					Filipino	70	1.63	t	\N	3834	01102896401	09-025002760-4	Married	O+	STA. CLARA					STA. CLARA	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC ID	0582314	0001-01-01	METRO MANILA	
CORTEZ	DAN ROY	YAMBAO			DAN ROY Y. CORTEZ	Male	1989-11-03	DAGUPAN, PANGASINAN		BLK 10 LOT 14	MERCEDES HOMES	BATANGAS CITY	BATANGAS		09159451249	danroy.cortez@deped.gov.ph	04-1778266-3	351-043-165-0000	1211-7777-6345					Filipino	83	1.72	t	\N	3839	02006514775	09-050492160-2	Married	A+	SORO-SORO ILAYA			41-B		POBLACION 7	BATANGAS CITY	BATANGAS	Philippines	Philippines		P. CANLAPAN	4200	4200		PRC	2142096	2024-02-07	PRC LUCENA	
MANALO	MA. ANGELICA	FAJILAN			MA. ANGELICA F. MANALO	Female	1996-08-07	BATANGAS CITY		BLOCK 6C LOT 64	ECOVERDE HOMES	SAN PASCUAL	BATANGAS		09292210744	maangelica.manalo@deped.gov.ph	04-3903401-6	700-923-490-0000	1211-9957-7462					Filipino	53	1.5	t	\N	3838	02005825758	09-250203849-6	Single	O	BARANGAY STO. NINO			141		BARANGAY 12	BATANGAS CITY	BATANGAS	Philippines	Philippines		VERGARA STREET	4204	4200		PRC	1630570	2018-05-21	MANILA	
SILVA	IRENE	ANDAL			IRENE A. SILVA	Female	1970-01-10	BATANGAS CITY				BATANGAS CITY	BATANGAS		09235700721	irene.silva@deped.gov.ph		146-955-510-0000	1490-0096-7280					Filipino	50	1.58	t	\N	3841	02003003551	09-000066125-1	Single	O	CUTA					CUTA	BATANGAS CITY	BATANGAS	Philippines	Philippines	SITIO JOURNAL	SITIO JOURNAL	4200	4200		PRC	0644786	0001-01-01	MANILA	
MENDOZA	JANICE	DIMAANO			JANICE D. MENDOZA	Female	1989-06-01	ORIENTAL MINDORO			SAN AGAPITO	BATANGAS CITY	BATANGAS		09684978998	janice.mendoza008@deped.gov.ph		295-518-740-0000	1210-5007-8142					Filipino	50	1.5	t	\N	3835	02004104855	09-000078898-7	Married	B+	ISLA VERDE				SAN AGAPITO	ISLA VERDE	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	1046198	0001-01-01	LUCENA	
DAGUS	RHEALYN	CALALUAN			RHEALYN C. DAGUS	Female	1997-06-13	ISLA VERDE, BATANGAS CITY			SAN ANTONIO	BATANGAS CITY	BATANGAS		09656818682	rhealyn.dagus@deped.gov.ph	04-4256296-0	720-776-926-0000	1212-8793-6661					Filipino	68	1.72	t	\N	3840	02006359071	09-250239016-5	Single	O+	ISLA VERDE				SAN ANTONIO	ISLA VERDE	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC ID	1578695	2017-12-13	LUCENA CITY	
AMUL	JENELYN	LUALHATI			JENELYN L. AMUL	Female	1985-12-14	SAN AGUSTIN ISLA VERDE			SAN AGUSTIN SILANGAN	BATANGAS CITY	BATANGAS		09605572155	jenelyn.amul@deped.gov.ph		252-903-670-0000	1210-9136-8639					Filipino	66	1.52	t	\N	3836	02004532235	09-050162907-2	Married	AB	ISLA VERDE				SAN AGUSTIN SILANGAN	ISLA VERDE	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	1271590	2014-01-10	LUCENA CITY	
TOLENTINO	JONALYN	SAMSON			JONALYN S. TOLENTINO	Female	1984-09-14	130 LAMAO LIBJO, BATANGAS CITY		130		BATANGAS CITY	BATANGAS		09771516830	JONALYN.TOLENTINO@DEPED.GOV.PH		255-497-296-0000	1490-0098-4608					Filipino	52	1.5	t	\N	3842	02003609113	09-050117361-8	Married	A	LIBJO			130		LIBJO	BATANGAS CITY	BATANGAS	Philippines	Philippines	LAMAO	LAMAO	4200	4200		PRC	0894012	2005-12-05	LUCENA CITY	
RAYOS	SHARLENE	CACAO			SHARLENE C. RAYOS	Female	1979-04-11	BALAYAN, BATANGAS			DE JOYA COMPOUND	BATANGAS CITY	BATANGAS		09081434705	sharlene.rayos001@deped.gov.ph		924-968-865-0000	1490-0098-4643					Filipino	48	1.47	t	\N	3843	02002123901	09-000051649-9	Married	B	ALANGILAN				DE JOYA COMPOUND	ALANGILAN	BATANGAS CITY	BATANGAS	Philippines	Philippines	SITIO	SITIO	4200	4200		UMID	00600496169	0001-01-01	BATANGAS CITY	
GABIASO	YOLIELYN	LOCES			YOLIELYN L. GABIASO	Female	1967-07-28	ISLA VERDE, BATANGAS CITY			SAN AGUSTING KANLURAN	BATANGAS CITY	BATANGAS		09124623295	yolielyn.gabiaso001@deped.gov.ph		912-304-993-0000	1490-0086-5446					Filipino	58	1.52	t	\N	3846	02002929541	09-000021612-6	Married	B+	ISLA VERDE				SAN AGUSTING KANLURAN	ISLA VERDE	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	0289228	1998-01-28	LUCENA CITY	
ESCONDE	AYRENE	BALMES			AYRENE B. ESCONDE	Female	1972-04-20	BATANGAS CITY		BLK 12 LOT 10	LE CLERMONT VILLAS	SAN PASCUAL	BATANGAS	0433320786	09272916389	ayrene.esconde@deped.gov.ph		174-047-158-0000	1490-0085-2325					Filipino	79	1.71	t	\N	3845	02002997755	09-000007320-1	Married	O	BALIMBING			BLK 12 LOT 10	LE CLERMONT VILLAS	BALIMBING	SAN PASCUAL	BATANGAS	Philippines	Philippines	HYACINTH	HYACINTH	4204	4204		PRC ID	0304406	1998-02-11	MANILA	
PEREZ	GIGIVETH	FAJORA			GIGIVETH F. PEREZ	Female	1972-11-13	ISLA VERDE, BATANGAS CITY				ISLA VERDE, BATANGAS CITY	BATANGAS		09386719176	gigibeth.perez@deped.gov.ph		916-032-681-0000	1490-0085-4200					Filipino	55	1.53	t	\N	3848	02002928335	09-000021950-8	Married	B	SAN AGUSTIN KANLURAN					SAN AGUSTIN KANLURAN	ISLA VERDE, BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC LICENSE	0547766	1999-04-28	LUCENA CITY	
TOLENTINO	EVELYN	BUENAFE			EVELYN B. TOLENTINO	Female	1980-10-06	BATANGAS CITY				BATANGAS	BATANGAS	3324604	09166066738	EVELYN.TOLENTINO@DEPED.GOV.PH	04-1370816-4	722-067-916-0000	1212-2585-6361					Filipino	57	1.52	t	\N	3850	02005504109	09-050122813-2	Married	B	DUMUCLAY SOUTH					DUMUCLAY SOUTH	BATANGAS	BATANGAS	Philippines	Philippines			4200	4200		PRC ID	1509872	2016-12-12	MANILA	
SORIANO	MARILOU	SANCHEZ			MARILOU S. SORIANO	Female	1974-02-24	LIBJO, BATANGAS CITY				BATANGAS CITY	BATANGAS	7744804	09296742766	MARILOU.SORIANO008@DEPED.GOV.PH		921-098-431-0000	1490-0091-2862					Filipino	65	1.49	t	\N	3844	02002992759	09-000046210-0	Married	B+	LIBJO					LIBJO	BATANGAS CITY	BATANGAS	Philippines	Philippines	LAMAO	LAMAO	4200	4200		PRC	0312652	2024-06-27	ALABANG CITY	
SUAREZ	RICA	AGUADO			RICA A. SUAREZ	Female	1977-08-16	TABANGAO DAO BATANGAS CITY				BATANGAS CITY	BATANGAS		09279802637	RICA.SUAREZ@DEPED.GOV.PH								Filipino	48	1.56	t	\N	3853			Married	B	TABANGAO DAO					TABANGAO DAO	BATANGAS CITY	BATANGAS	Philippines	Philippines	SITIO AGUADO	SITIO AGUADO	4200	4200				0001-01-01		
RIVERA	SAMANTHA GLAIZE	GATDULA			SAMANTHA GLAIZE G. RIVERA	Female	1996-05-24	BATANGAS CITY		BLK 6 LOT 4	MERCEDES HOMES	BATANGAS CITY	BATANGAS		09565115484	SAMANTHAGLAIZE.DEPED.GOV.PH	04-4094209-0	347-482-500-0000	1212-2859-0973					Filipino	54	1.65	t	\N	3851	02005656926	09-050542135-2	Single	O	SORO-SORO ILAYA			BLK 6 LOT 4	MERCEDES HOMES	SORO-SORO ILAYA	BATANGAS CITY	BATANGAS	Philippines	Philippines	JOAQUIN ST.	JOAQUIN ST.	4200	4200		PRC ID	1515115	2016-12-12	LUCENA CITY	
PENTINIO	RESHIELE	FALCON			RESHIELE F. PENTINIO	Female	1990-05-15	SAN VICENTE, PALAWAN		BLOCK 1 LOT 3	MERCEDES HOMES	BATANGAS CITY	BATANGAS		09486730702	reshiele.pentinio@deped.gov.ph	04-2455601-7	413-370-226-0000	1210-1134-9466					Filipino	56	1.5	t	\N	3847	02004532157	03-050898859-8	Married	O+	SOROSORO ILAYA			BLOCK 1 LOT 3	MERCEDES HOMES	SOROSORO ILAYA	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC ID	1165651	2012-12-21	LUCENA CITY	
CANTUBA	OLIVIA	FONTE			OLIVIA F. CANTUBA	Female	1966-07-17	CORCUERA, ROMBLON				BATANGAS CITY	BATANGAS	0437818768	09560537876	olivia.cantuba001@deped.gov.ph		124-520-276-0000	1490-0084-0993					Filipino	50	1.58	t	\N	3852	02003005850	09-000012246-6	Widow	O	KUMINTANG ILAYA					KUMINTANG ILAYA	BATANGAS CITY	BATANGAS	Philippines	Philippines	MERALCO SITE	MERALCO SITE	4200	4200		PROFESSIONAL IDENTIFICATION CARD	0126531	1997-09-10	MANILA	
SOLIMAN	CONCEPCION	GUTIERREZ			CONCEPCION G. SOLIMAN	Female	1965-08-12	CUTA BATANGAS CITY			EASTERN	BATANGAS CITY	BATANGAS	0439845041	09286748499	CONCEPCION.SOLIMAN001@DEPED.GOV.PH		124-523-868-0000	1490-0086-0452					Filipino	75	1.65	t	\N	3854	02002998012	09-000008881-0	Married	O	EASTERN LIBJO				EASTERN	EASTERN LIBJO	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC ID	0060787	2017-12-11	LUCENA CITY	
MAGPANTAY	LICYZL	SABADO			LICYZL S. MAGPANTAY	Female	1998-11-17	BATANGAS CITY				BATANGAS CITY	BATANGAS		09550557701	magpantaylicyzl17@gmail.com	04-4202707-8	749-293-482-0000	1212-5254-6495					Filipino	45	1.62	t	\N	3849	02006122590	09-250169793-3	Single	A+	TABANGAO DAO					TABANGAO DAO	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC ID	1815553	2019-12-20	PRC LUCENA	
RAYOS	JOANNA	TIPOSO			JOANNA T. RAYOS	Female	1999-12-02	BATANGAS CITY				BATANGAS CITY	BATANGAS		09155037593	joanna.rayos@deped.gov.ph		352-677-688-0000	1212-2581-9080					Filipino	43	1.49	t	\N	3857	02006515231	09-253305528-3	Single	O	SAN AGAPITO, ISLA VERDE					SAN AGAPITO, ISLA VERDE	BATANGAS CITY	BATANGAS	Philippines	Philippines	CACAWAN	CACAWAN	4200	4200		PRC LICENSE	2085870	2023-08-24	LUCENA CITY	
PAMPLONA	ABIGAIL	BALMES			ABIGAIL B. PAMPLONA	Female	1992-01-28	BATANGAS CITY			DOMOCLAY SOUTH	BATANGAS CITY	BATANGAS	0437735037	09363948289	ABIGAIL.BALMES@DEPED.GOV.PH	04-2937256-8	447-946-885-0000	1211-3791-9555					Filipino	49.5	1.47	t	\N	3855	02004813499	09-050428248-0	Married	O	DOMOCLAY				DOMOCLAY SOUTH	DOMOCLAY	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	1207644	2013-05-20	LUCENA CITY	
ALMAZAN	CORAZON	EBORA			CORAZON E. ALMAZAN	Female	1971-10-21	SAN AGAPITO, ISLA VERDE, BATANGAS CITY				BATANGAS CITY	BATANGAS		09605572148	corazon.almazan001@deped.gov.ph		177-623-721-0000	1490-0085-1348					Filipino	50	1.41	t	\N	3856	02002927948	09-000021634-7	Married	B	SAN AGAPITO, ISLA VERDE								Philippines	Philippines			4200			PRC	0026774	1997-01-16	BATANGAS CITY	
LACSAMANA	LORNA	CULLA			LORNA C. LACSAMANA	Female	1969-07-16	BATANGAS CITY			VILLA GUAPO	BATANGAS CITY	BATANGAS	0434025293	09668541714	lorna.lacsamana@deped.gov.ph		177-622-502-0000	1490-0084-5631					Filipino	150	1.5	t	\N	3858	02003004259	09-000007323-6	Married	A+	BANABA CENTER				VILLA GUAPO	BANABA CENTER	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC ID	0015603	1996-12-27	MANILA	
FONDEVILLA	CRISILDA	BULAWIN			CRISILDA B. FONDEVILLA	Female	1995-10-22	BATANGAS CITY		0028	PUROK 1	BATANGAS CITY	BATANGAS		09686229841	crisilda.fondevilla@deped.gov.ph	04-3754685-2	619-590-582-0000	1211-7098-7758					Filipino	55	1.46	t	\N	3859	02006215374	09-050490057-5	Single	O+	KUMINTANG ILAYA			0028	PUROK 1	KUMINTANG ILAYA	BATANGAS CITY	BATANGAS	Philippines	Philippines	MERALCO SITE	MERALCO SITE	4200	4200		PRC	1516704	2016-12-27	LUCENA CITY	
BRETON	AILEEN	DE CASTRO			AILEEN DC. BRETON	Female	1981-12-30	BATANGAS CITY				BATANGAS CITY	BATANGAS		09815405570	aileen.breton@deped.gov.ph		435-368-872-0000	1211-5610-4645					Filipino	52	1.57	t	\N	3860	02004994107	09-025188820-4	Married	O	SAN ANDRES, ISLA VERDE					SAN ANDRES, ISLA VERDE	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	1425587	2015-12-29		
MEDINA	PRECIOSA	EBORA			PRECIOSA E. MEDINA	Female	1967-01-29	SAN ANTONIO, ISLA VERDE, BATANGAS CITY				BATANGAS CITY	BATANGAS		09564781003	preciosa.medina@deped.gov.ph		177-628-147-0000	1490-0085-1394					Filipino	49	1.5	t	\N	3861	02002929244	09-000021670-3	Married	A	SAN ANTONIO					SAN ANTONIO	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	0192828	1997-10-28	MANILA	
PANGANIBAN	MIRNALYN	DUTADO			MIRNALYN D. PANGANIBAN	Female	1982-01-24	ISLA VERDE, BATANGAS CITY		LOT 35 BLOCK 7	BETZAIDA VILLAGE	BATANGAS CITY	BATANGAS		09983574363	mirnalyn.panganiban@deped.gov.ph	04-1274914-0	929-374-517-0000	1490-0030-9231					Filipino	55	1.57	t	\N	3867	02005215007	09-050078908-4	Married	A+	DUMANTAY			LOT 35 BLOCK 7	BETZAIDA VILLAGE	DUMANTAY	BATANGAS CITY	BATANGAS	Philippines	Philippines	STARGAZER	STARGAZER	4200	4200		PRC ID	0756444	2022-10-29	LUCENA CITY	
PEREZ	ELENITA	RESURRECCION			ELENITA R. PEREZ	Female	2000-06-11	SAN AGAPITO ISLA VERDE BATANGAS CITY			KANSAS	BATANGAS CITY	BATANGAS		09705957710	elenita.perez@deped.gov.ph	04-3063647-1	915-189-617-0000	1490-0101-2116					Filipino	68	1.57	t	\N	3866	02002087622	09-000048147-4	Married	O	EL SITIO SUBDIVISION				KANSAS	EL SITIO SUBDIVISION	BATANGAS CITY	BATANGAS	Philippines	Philippines	BLK 51 LOT 38	BLK 51 LOT 38	4200	4200		PRC	0506885	0001-01-01	LUCENA CITY	
DRIZ	MA. ELENA	SEGUNIAL			MA. ELENA S. DRIZ	Female	1966-11-15	BULI, TAAL, BATANGAS				BATANGAS CITY	BATANGAS		09920102694	maelena.driz@deped.gov.ph		302-012-087-0000	1211-4467-2441					Filipino	75	1.5	t	\N	3864	02002087674	09-000063477-7	Married	O	SAN ANTONIO, ISLA VERDE					SAN ANTONIO, ISLA VERDE	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	0636192	1999-08-08	NATIONAL CAPITAL REGION	
MARASIGAN	NERIZA	SAYSON			NERIZA S. MARASIGAN	Female	1985-06-29	KUMINTANG IBABA BATANGAS CITY				BATANGAS CITY	BATANGAS		09663666555	neriza.marasigan@deped.gov.ph	42-2030995-4	283-255-438-0000	1211-4449-8381					Filipino	50	1.52	t	\N	3868	02004112730	09-050241832-6	Married	O	PINAMUCAN PROPER					PINAMUCAN PROPER	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC ID	1013360	2009-02-02	LUCENA CITY	
PANGANIBAN	SHECKA MAE	CASCALLA			SHECKA MAE C. PANGANIBAN	Female	1998-08-31	BATANGAS CITY				BATANGAS CITY	BATANGAS		09126299427	sheckamae.panganiban@deped.gov.ph	35-0297449-5	768-604-644-0000	1212-8088-0944					Filipino	70	1.53	t	\N	3869	02006514799	09-025748868-2	Single	O+	SAN ANDRES, ISLA VERDE					SAN ANDRES, ISLA VERDE	BATANGAS CITY	BATANGAS	Philippines	Philippines	CUEVA	CUEVA	4200	4200		PRC ID	1904248	2022-04-26	LUCENA CITY	
EBORA	MARIANE	CALALUAN			MARIANE C. EBORA	Female	1999-10-23	ISLA VERDE, BATANGAS CIT				BATANGAS CITY	BATANGAS		09066259334	mariane.ebora@deped.gov.ph	04-4216350-5	742-101-790-0000	1212-4819-7213					Filipino	50	1.58	t	\N	3865	02006524958	09-250231014-5	Single	B	KUMINTANG IBABA					KUMINTANG IBABA	BATANGAS CITY	BATANGAS	Philippines	Philippines	PROPER	PROPER	4200	4200		PRC ID	2153800	2024-02-23	LUCENA CITY	
RAYOS	ROMELINARD	EBORA			ROMELINARD E. RAYOS	Male	1991-12-06	SAN ANTONIO, ISLA VERDE, BATANGAS CITY				BATANGAS CITY	BATANGAS		09452154049	romelinard.rayos@deped.gov.ph		421-233-825-0000	1210-2670-0746					Filipino	69	1.72	t	\N	3862	02005213541	09-050323855-0	Single	B	SAN ANTONIO, ISLA VERDE					SAN ANTONIO, ISLA VERDE	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	1202865	2023-05-15	LUCENA	
BAGRO	JUDY ANN	DE CASTRO			JUDY ANN DC. BAGRO	Female	1999-01-09	BATANGAS CITY			MARINERS RESIDENCES	BATANGAS CITY	BATANGAS		09096248697	judyannbagro@gmail.com	14-4294088-3	361-458-927-0000	1212-6102-2518					Filipino	50	1.49	t	\N	3871	02006520454	09-025705858-0	Single	A+	KUMINTANG ILAYA				MARINERS RESIDENCES	KUMINTANG ILAYA	BATANGAS CITY	BATANGAS	Philippines	Philippines	GOOD SAILING	GOOD SAILING	4200	4200		PRC ID / LICENSE	2055147	2023-06-12	LUCENA CITY	
SORIANO	VANESSA	BAJA			VANESSA B. SORIANO	Female	1998-04-08	LIPONPON, ISLA VERDE, BATANGAS CITY				BATANGAS CITY	BATANGAS		09066177828	vanessa.soriano001@deped.gov.ph	04-4222087-5	648-158-177-0000	1212-9591-1259					Filipino	53	1.6	t	\N	3863	02006463143	09-250237813-0	Single	O+							BATANGAS CITY	BATANGAS	Philippines	Philippines	SITIO MABATO	SITIO MABATO	4200	4200		PRC	1762791	2019-05-25	LUCENA	
MATIRA	JENNYLYN	BRIONES			JENNYLYN B. MATIRA	Female	1991-08-15	TALUMPOK EAST BATANGAS CITY				BATANGAS CITY	BATANGAS	0437408838	09264407587	Jennylyn.Matira@deped.gov.ph	04-2580303-1	316-731-395-0000	1210-5783-5781					Filipino	70	1.73	t	\N	3870	02005322472	01-051461954-4	Married	B	TALUMPOK EAST					TALUMPOK EAST	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	1545202	2017-06-21	LUCENA CITY	
ABDON	MAY ANN	CALATON			MAY ANN C. ABDON	Female	1999-05-19	TAYSAN, BATANGAS		058		BATANGAS CITY	BATANGAS	0437221589	09565296572	mayann.abdon@deped.gov.ph	34-8366138-0	750-672-332-0000	1212-4478-9450					Filipino	53	1.5	t	\N	3874	02005993168	09-050562641-8	Single	AB	DOMOCLAY			058		DOMOCLAY	BATANGAS CITY	BATANGAS	Philippines	Philippines	WEST	WEST	4200	4200		PRC ID	1850632	2020-01-16	LUCENA CITY	
AGUDA	ZARAH	ACLAN			ZARAH A. AGUDA	Female	1998-04-01	BATANGAS CITY				BATANGAS CITY	BATANGAS		09108385711	zarahaguda0@gmail.com		383-579-875-0000	1212-6480-5232					Filipino	70	1.51	t	\N	3872	02006068736	09-025704222-6	Single	B+	BANABA CENTER					BANABA CENTER	BATANGAS CITY	BATANGAS	Philippines	Philippines	PARANG II	PARANG II	4200	4200		PRC ID / LICENSE	1809592	2019-12-18	LUCENA CITY	
MARASIGAN	ELSA	BEDONIA			ELSA B. MARASIGAN	Female	1972-01-09	LIBJO BATANGAS CITY				BATANGAS CITY	BATANGAS	4029153	09195941509	elsa.marasigan@deped.gov.ph		174-047-087-0000	1490-0083-7360					Filipino	80	1.64	t	\N	3873	02002928078	09-000011135-9	Married	O	LIBJO CENTRAL					LIBJO CENTRAL	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	0054157	2024-01-19	STA. ROSA LAGUNA	
DABALOS	RAQUEL	REPIA			RAQUEL R. DABALOS	Female	1981-09-15	DINGALAN, AURORA				BATANGAS CITY	BATANGAS		09684978959	raquel.dabalos@deped.gov.ph		447-878-721-0000	1211-7037-5785					Filipino	49	1.4	t	\N	3875	02004570089	09-025031447-6	Married	A	SAN ANDRES, ISLA VERDE					SAN ANDRES, ISLA VERDE	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PROFESSIONAL REGULATION	1198036	2013-05-08	LUCENA	
ANDAL	JESSA	RAYOS			JESSA R. ANDAL	Female	1998-05-08	SAN ANTONIO, ISLA VERDE BATANGAS CITY				BATANGAS CITY	BATANGAS		09125302464	jessa13andal@gmail.com	34-7556242-6	737-038-625-0000	1212-2541-6555					Filipino	57.7	1.52	t	\N	3918	02006076766	09-250241754-3	Single	B	SAN ANTONIO, ISLA VERDE					SAN ANTONIO, ISLA VERDE	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC IDENTIFICATION CARD	1762576	2019-12-20	PRC LUCENA	
SILANG	ORPHA	GUTIERREZ			ORPHA G. SILANG	Female	1983-11-30	NAUJAN ORIENTAL MINDORO				BATANGAS CITY	BATANGAS		09309614605	orpha.silang@deped.gov.ph	04-1231073-1	937-959-994-0000	1212-0597-8054					Filipino	58	1.45	t	\N	3881	02005231548	09-201155905-2	Married	O	SAN AGUSTIN KANLURAN, ISLA VERDE					SAN AGUSTIN KANLURAN, ISLA VERDE	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC LICENSE	1344022	2014-12-02	LUCENA CITY	
MEDINA	FELIZA	PICCIO			FELIZA P. MEDINA	Female	1982-03-03	RIZAL, OCCIDENTAL MINDORO				BATANGAS CITY	BATANGAS		09959550839	feliza.medina@deped.gov.ph	04-1258936-8	943-221-514-0000	1211-7284-3798					Filipino	46	1.27	t	\N	3876	02004779937	09-201474798-4	Married	O+	SAN AGUSTIN KANLURAN, ISLA VERDE					SAN AGUSTIN KANLURAN, ISLA VERDE	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC LICENSE	1335897	2014-11-25	LUCENA CITY	
MARASIGAN	GRACE	BALAHIBO			GRACE B. MARASIGAN	Female	1994-12-01	HALIGUE SILANGAN, BATANGAS CITY			SITIO BINOTBOT	BATANGAS CITY	BATANGAS		09558413455	grace.marasigan003@deped.gov.ph	04-3796242-3	726-694-169-0000	1211-7807-3061					Filipino	50	1.57	t	\N	3877	02005438515	09-250115951-6	Single	A	HALIGUE SILANGAN				SITIO BINOTBOT	HALIGUE SILANGAN	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC ID	1398341	2015-12-11	LUCENA CITY	
BALITA	JINKY	PAGCALIWAGAN			JINKY P. BALITA	Female	1988-10-31	SAN ANDRES, ISLA VERDE, BATANGAS CITY				BATANGAS CITY	BATANGAS		09914290840	jinky.balita@deped.gov.ph		441-135-551-0000	1210-8099-1518					Filipino	75	1.63	t	\N	3878	02004653184	09-050302910-2	Married	O	SAN ANDRES, ISLA VERDE					SAN ANDRES, ISLA VERDE	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC ID	1123737	2022-04-08	LUCENA CITY	
PAGCALIWAGAN	JANICE	APARRI			JANICE A. PAGCALIWAGAN	Female	1982-12-13	SAN ANDRES, ISLA VERDE, BATANGAS CITY				BATANGAS CITY	BATANGAS		09914290841	janice.pagcaliwagan001@deped.gov.ph		263-960-504-0000	1490-0104-7630					Filipino	88	1.62	t	\N	3879	02003511778	11-077400000-4	Married	O	SAN ANDRES, ISLA VERDE					SAN ANDRES, ISLA VERDE	BATANGAS CITY	BATANGAS	Philippines	Philippines	KURUKAN	KURUKAN	4200	4200		PRC	0894127	2005-12-05	LUCENA CITY	
INTAC	JENNIELYN	DAGLI			JENNIELYN D. INTAC	Female	1986-10-02	BATANGAS CITY				BATANGAS CITY	BATANGAS		09361243276	jennielyn.intac@deped.gov.ph	04-2005587-1	269-264-563-0000	1470-0025-9986					Filipino	95	1.6	t	\N	3882	02005403664	09-050233912-4	Married	O+	DUMUCLAY					DUMUCLAY	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC ID	1038015	2009-11-25	LUCENA CITY	
MACARAIG	ANALIZA	EVANGELIO			ANALIZA E. MACARAIG	Female	1994-10-20	BATANGAS CITY				BATANGAS CITY	BATANGAS		09293447813	analiza.evangelio@deped.gov.ph	04-3742420-4	708-506-283-0000	1211-6928-7085					Filipino	60	1.57	t	\N	3883	02005476218	09-025478794-8	Married	O+	CATANDALA					CATANDALA	BATANGAS CITY	BATANGAS	Philippines	Philippines	SILANGAN	SILANGAN	4200	4200		PRC ID	1491007	2016-12-12	LUCENA CITY	
MEDINA	REYLANDO	AMUL			REYLANDO A. MEDINA	Male	1966-04-27	SAN ANTONIO, ISLA VERDE				BATANGAS CITY	BATANGAS		09507998227	reylando.medina@deped.gov.ph		906-888-777-0000	1490-0087-7372					Filipino	60	1.65	t	\N	3919	66042701093	09-000022017-4	Married	AB	SAN ANTONIO					SAN ANTONIO	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		TIN	906888777	1998-01-29		
FABILA	MELODY	MEDINA			MELODY M. FABILA	Female	1971-06-05	SAN AGUSTIN, ISLA VERDE, BATANGAS CITY				BATANGAS CITY	BATANGAS		09086231854	melody.fabila001@deped.gov.ph		187-898-000-0000	1490-0087-3706					Filipino	40	1.4	t	\N	3916	02002929030	09-000021605-3	Married	O	SAN AGUSTIN KANLURAN, ISLA VERDE					SAN AGUSTIN KANLURAN, ISLA VERDE	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	0360495	1998-04-29	LUCENA CITY	
GARCIA	JOCELYN	CATRAL			JOCELYN C. GARCIA	Female	1973-07-03	LIBJO, BATANGAS CITY				BATANGAS CITY	BATANGAS		09178423406	jocelyn.garcia008@deped.gov.ph	04-0916399-1	182-682-764-0000	1490-0090-2913					Filipino	49	1.52	t	\N	3917	02003003669	09-000021955-9	Married	O	LIBJO					LIBJO	BATANGAS CITY	BATANGAS	Philippines	Philippines	TANGISAN	TANGISAN	4200	4200		PRC ID	0156680	1997-09-29	MANILA	
GERONIMO	LOLITA	GONZALES			LOLITA G. GERONIMO	Female	1970-01-12	LUCENA CITY				BATANGAS CITY	BATANGAS		09455692754	lolita.geronimo002@deped.gov.ph								Filipino	51	1.49	t	\N	3920			Married	A+	CENTRAL LIBJO					CENTRAL LIBJO	BATANGAS CITY	BATANGAS	Philippines	Philippines	PINAGPALA ROAD	PINAGPALA ROAD	4200	4200				0001-01-01		
PURIO	BERNADITE	CALAHATI			BERNADITE C. PURIO	Female	1970-06-02	SAN AGAPITO, VERDE BATANGAS CITY				BATANGAS CITY	BATANGAS		09684978951	bernaditte.purio@deped.gov.ph		924-721-400-0000	1490-0094-2892					Filipino	75	1.56	t	\N	3921	00002261208	09-000048119-9	Married	O	SAN AGAPITO, ISLA VERDE					SAN AGAPITO, ISLA VERDE	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	0582315	1999-10-05	ORIENTAL MINDORO	
LAUDE	MIRIAM	AMUL			MIRIAM A. LAUDE	Female	1980-09-05	SAN ANTONIO, ISLA VERDE				BATANGAS CITY	BATANGAS		09615493370	miriam.laude@deped.gov.ph	04-1111845-5	301-997-066-0000	1490-0098-0860					Filipino	48	1.52	t	\N	3922	80090500965	09-050074626-1	Married	A+	SAN ANTONIO, ISLA VERDE					SAN ANTONIO, ISLA VERDE	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	0899027	2005-08-14	LUCENA CITY	
CALALUAN	NORILYN	DELGADO			NORILYN D. CALALUAN	Female	1997-08-11	SAN AGAPITO, ISLA VERDE, BATANGAS CITY				BATANGAS CITY	BATANGAS		09482319232	norilyn.calaluan@deped.gov.ph	34-9544345-7	768-503-664-0000	1212-7659-2919					Filipino	53	1.55	t	\N	3923		09-250231119-2	Married	A	SAN AGAPITO					SAN AGAPITO	BATANGAS CITY	BATANGAS	Philippines	Philippines	SIRIIN II	SIRIIN II	4200	4200		PRC	1836162	2020-01-08	LUCENA CITY	
ESCAREZ	EVELYN	MAPILI			EVELYN M. ESCAREZ	Female	1973-12-25	SAN ANDRES, ISLA VERDE, BATANGAS CITY				BATANGAS CITY	BATANGAS		09922120805	evelyn.escarez001@deped.gov.ph		913-669-573-0000	1490-0087-1566					Filipino	52	1.3	t	\N	3880	02002928158	09-000021979-6	Married	B	SAN ANDRES, ISLA VERDE					SAN ANDRES, ISLA VERDE	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		DEPED ID	4418570	0001-01-01		
SAMSON-MAGALANG	JODELYN	SANCHEZ			JODELYN S. SAMSON-MAGALANG	Female	1993-12-04	BATANGAS CITY		17	LAMAO	BATANGAS CITY	BATANGAS		09952934220	jodelyn.samson@deped.gov.ph								Filipino	65	1.48	t	\N	3966			Married	B	LIBJO			17	LAMAO	LIBJO	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		
ALEA	CRISPINA	BUENVIAJE			CRISPINA B. ALEA	Female	1970-12-04	BATANGAS CITY			SITIO KANLURAN	BATANGAS CITY	BATANGAS		09457139478	crispina.alea001@deped.gov.ph		187-136-638-0000	1490-0090-2881					Filipino	74	1.62	t	\N	3963	02002998106	09-000007833-5	Married	O	SIRANG LUPA				SITIO KANLURAN	SIRANG LUPA	BATANGAS CITY	BATANGAS	Philippines	Philippines	PUROK 3	PUROK 3	4200	4200		PRC	0018567	1997-01-06	PRC LUCENA	
ANONUEVO	MARITES	PATULAY			MARITES P. ANONUEVO	Female	1969-11-20	BATANGAS CITY		6		BATANGAS CITY	BATANGAS		09605572149	anonuevomarites018@gmail.com		920-461-849-0000	1490-0090-2068					Filipino	70	1.62	t	\N	3962	69112001140	09-000053177-3	Married	B	BARANGAY 4			6		BARANGAY 4	BATANGAS CITY	BATANGAS	Philippines	Philippines	P. HERRERA	P. HERRERA	4200	4200		PRC ID	0027252	1997-01-16	PRC MANILA	
BAJA	ROSALIE	GABIA			ROSALIE G. BAJA	Female	1974-02-12	STO. DOMINGO, BATANGAS CITY		#5		BATANGAS CITY	BATANGAS		09950829219	rosalie.baja@deped.gov.ph		912-277-339-0000	1490-0091-5957					Filipino	68	1.58	t	\N	3925	02002929343	09-000045364-0	Married	B	BARANGAY 2			#5		BARANGAY 2	BATANGAS CITY	BATANGAS	Philippines	Philippines	P. PRIETO ST.	P. PRIETO ST.	4200	4200		PRC LICENSE	00621110	2023-12-28	LUCENA CITY	
BAJA	NICA	MEDINA			NICA M. BAJA	Female	1999-06-06	LIPONPON ISLA VERDE, BATANGAS CITY				BATANGAS CITY	BATANGAS		09125352837	nicabaja06@gmail.com								Filipino	47	1.59	t	\N	3967			Single	O+	LIPONPON ISLA VERDE					LIPONPON ISLA VERDE	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		
LUCES	JOLLY	TAMARES			JOLLY T. LUCES	Female	1975-01-18	NAUJAN ORIENTAL MINDORO				BATANGAS CITY	BATANGAS		09641907678	jolly.luces001@deped.gov.ph	04-0944868-7	912-175-923-0000	1490-0089-0025					Filipino	65	1.52	t	\N	3924	02002928523	09-000021603-7	Married	A	SAN AGUSTIN KANLURAN, ISLA VERDE					SAN AGUSTIN KANLURAN, ISLA VERDE	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	0289180	1998-01-28	LUCENA CITY	
MACATANGAY	ALAIZA	EBORA			ALAIZA E. MACATANGAY	Female	1999-09-30	BATANGAS CITY				BATANGAS CITY	BATANGAS		09358055148	alaizamacatangay24@gmail.com	04-4053188-3	721-056-618-0000	1212-2344-0514					Filipino	60	1.71	t	\N	3958	02006602044	09-500538065-6	Single	B	SANTA RITA					SANTA RITA	BATANGAS CITY	BATANGAS	Philippines	Philippines	MALIGAYA ROAD	MALIGAYA ROAD	4200	4200		PRC ID	2150341	0001-01-01	LUCENA CITY	
CUETO	ARLYN	EDUBA			ARLYN E. CUETO	Female	1975-02-18	LIPONPON, ISLA VERDE, BATANGAS CITY				BATANGAS CITY	BATANGAS		09194459918	arlyn.cueto001@deped.gov.ph	33-4833986-7	913-623-911-0000	1010-0274-0982					Filipino	50	1.59	t	\N	3959	02004709268	01-051008924-9	Married	O	LIPONPON ISL A VERDE					LIPONPON ISL A VERDE	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		PRC	1342737	2014-12-01	LUCENA CITY	
PAGKALIWAGAN	JESSALINE	CALALUAN			JESSALINE C. PAGKALIWAGAN	Female	1998-06-11	LEMERY, BATANGAS				BATANGAS CITY	BATANGAS		09367201702	jessaline.pagkaliwagan11@gmail.com	34-8195306-1	723-431-156-0000	1212-4268-6830					Filipino	82	1.65	t	\N	3961	02005633193	09-025658899-3	Single	A+	SAN AGAPITO, ISLA VERDE					SAN AGAPITO, ISLA VERDE	BATANGAS CITY	BATANGAS	Philippines	Philippines	BAYANI I	BAYANI I	4200	4200		PRC ID	1695868	2019-01-03	MANILA	
ANONUEVO	SEBASTIAN	CASTILLO			SEBASTIAN C. ANONUEVO	Male	1965-01-20	LIPONPON ISLA VERDE, BATANGAS CITY				BATANGAS CITY	BATANGAS		0	N/A		900-431-653-0000	1490-0083-2531					Filipino	70	1.5	t	\N	3960	02002927727	09-000021519-7	Married	B	LIPONPON ISLA VERDE					LIPONPON ISLA VERDE	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200		NATIONAL ID	5392150846103825	2021-12-20		
CUETO	MARIA FATIMA	BONGAT			MARIA FATIMA B. CUETO	Female	1997-03-29	SIRANG LUPA, BATANGAS CITY				BATANGAS CITY	BATANGAS		09150661522	mariafatima.cueto@deped.gov.ph								Filipino	58	1.5	t	\N	3964			Single	B	SIRANG LUPA					SIRANG LUPA	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		
MACATANGAY	KRIZIA MARIE				KRIZIA MARIE MACATANGAY	Female	1993-05-21	SORO SORO KARSADA, BATANGAS CITY		126	SITIO CENTRO	BATANGAS CITY	BATANGAS		09088751643	kriziamarie.macatangay@deped.gov.ph								Filipino	54	1.5	t	\N	3965			Single	A	SORO SORO KARSADA			126	SITIO CENTRO	SORO SORO KARSADA	BATANGAS CITY	BATANGAS	Philippines	Philippines			4200	4200				0001-01-01		
\.


--
-- TOC entry 4554 (class 0 OID 0)
-- Dependencies: 190
-- Name: BasicInformation_BasicInformationId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"BasicInformation_BasicInformationId_seq"', 3967, true);


--
-- TOC entry 3813 (class 0 OID 16516)
-- Dependencies: 191
-- Data for Name: BonusTypes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "BonusTypes" ("BonusTypeId", "BonusTypeName", "FixedAmount", "PercentageFromSalary", "MaxAmount", "AdditionalGiftAmount", "AmountBasis", "BonusBasis", "RateNumber", "YearsOfServiceRequired", "SpecificEmploymentStatus", "AttendedFromDate", "AttendedToDate") FROM stdin;
\.


--
-- TOC entry 4555 (class 0 OID 0)
-- Dependencies: 192
-- Name: BonusTypes_BonusTypeId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"BonusTypes_BonusTypeId_seq"', 1, false);


--
-- TOC entry 3815 (class 0 OID 16533)
-- Dependencies: 193
-- Data for Name: Breaks; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Breaks" ("BreakId", "EmployeeScheduleId", "Minutes") FROM stdin;
\.


--
-- TOC entry 4556 (class 0 OID 0)
-- Dependencies: 194
-- Name: Breaks_BreakId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Breaks_BreakId_seq"', 13374, true);


--
-- TOC entry 3817 (class 0 OID 16538)
-- Dependencies: 195
-- Data for Name: Cards; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Cards" ("CardId", "Status", "IsActive", "ServesAs", "HasExpiry", "ExpiryDate", "VisitorCardNumber") FROM stdin;
\.


--
-- TOC entry 3818 (class 0 OID 16548)
-- Dependencies: 196
-- Data for Name: CharacterReferences; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "CharacterReferences" ("LastName", "FirstName", "MiddleName", "ExtensionName", "ContactNumber", "Position", "CompanyName", "CompanyAddress", "Relationship", "Status", "CharacterReferenceId", "BasicInformationId") FROM stdin;
CASAO	MYRA FE			09175758860			PALLOCAN EAST, BATANGAS CITY	\N		6532	3602
CARANDANG	GENELYN			09189448457			RR STATION, BARANGAY 24 BATANGAS CITY	\N		6533	3602
SANDOVAL	DANIEL BRIAN			09178462228			BOLBOK, BATANGAS CITY	\N		6534	3602
MACARAIG	AMOR 	D		09055558018			ALANGILAN BATANGAS CITY	\N		6535	3603
GALVES	AREN ROSE	E		09778143411			CALICANTO BATANGAS CITY	\N		6536	3603
ANTE	FATIMA LLANA	B		09306035020			ALANGILAN BATANGAS CITY	\N		6537	3603
DE TORRES	ARLENE	A		09997325078			BLK 7 LOT 4 SAN ANTONIO HOMES, SAN PASCUAL, BATANGAS	\N		6538	3604
EVANGELISTA	PABLO	C	SR	723-0995			DE JOYA CAPITOL VILLAGE, KUMINTANG ILAYA BATANGAS CITY	\N		6539	3604
EVANGELISTA	CRISPIN	A		09360442846			BEEPER LENDING CORPORATION, #18 D. SILANG ST., BATANGAS CITY	\N		6540	3604
MAGSINO	EUNIZE	E		09257294626			BAUAN BATANGAS	\N		6541	3607
CONTI	MARITES	S		09989520308			BAUAN, BATANGAS	\N		6542	3607
ADAME	MARIA CARLA	M		09175696033			SAN PASCUAL, BATANGAS	\N		6543	3607
LAGMAN	MARIA JOSEFINA	M		(043) 722-0715			SOROSORO ILAYA, BATANGAS CITY	\N		6544	3608
BRIONES	YOLANDA	R		(043) 723-6277			GULOD ITAAS, BATANGAS CITY	\N		6545	3608
GABIA	ROSE ANNE ALYSSA	F		(043) 722-0715			TULO, BATANGAS CITY	\N		6546	3608
SUNICO	MARICON 	S		09328909284			GULOD LABAC, BATANGAS CITY	\N		6547	3609
LAGMAN	MARIA JOSEFINA 	M		09178213626			SORO-SORO IBABA, BATANGAS CITY	\N		6548	3609
PANGANIBAN 	MICHELLE 	B		09213054944			MAGALANGGALANG , BAUAN BATANGAS	\N		6549	3609
LAGMAN	MARIA JOSEFINA 	M		722-0715			SDO BATANGAS CITY	\N		6550	3610
CASALLA	ROCHELLE			09957582612			PHIC PRO IV-B	\N		6551	3610
LAGMAN	MARIA JOSEFINA	M		09306998117			SOROSORO, BATANGAS CITY	\N		6552	3611
ALON	EDUARDA	U		09190814770			BATANGAS CITY	\N		6553	3611
PANALIGAN	LOU	C		09088937510			ALITAGTAG, BATANGAS CITY	\N		6554	3611
LAGMAN	MARIA JOSEFINA	M		09178213626			MERCEDES HOMES, SOROSORO ILAYA, BATANGAS CITY	\N		6555	3612
GALVEZ	AREN ROSE	C		09778143411			CALICANTO BATANGAS CITY	\N		6556	3612
ALVAREZ	JENNY	D		09278359080			SAN ISIDRO ITAAS, LEMERY BATANGAS	\N		6557	3612
UMALI	LIZA	V		09989535221			LIPA CITY	\N		6558	3606
CAMO	FELISA	Q		09228232141			BOLBOK, BATANGAS CITY	\N		6559	3606
GLORIA	MARITES	L		09178562247			KARANGALAN VILLAGE, QC	\N		6560	3606
LAGMAN	MARIA JOSEFINA	M		722-0715			SDO BATANGAS CITY	\N		6561	3614
CAY	DOREMIDANTE	F		723-307			COA- CITY GOVERNMENT OF BATANGAS	\N		6562	3614
ZARASPE	RINALYN	S		09182398826			BILOGO, BATANGAS CITY 	\N		6563	3615
COMIA	SHIELA	P		09167153738			STA. RITA KARSADA, BATANGAS CITY	\N		6564	3615
PANGANIBAN	KENNETH 	G		09293553160			453 BALAGTAS, BATANGAS 	\N		6565	3613
MORALES	RHEA		CPA	09165527713			ROSARIO, BATANGAS	\N		6566	3613
IRINEO 	ROSALINA 	C	CPA	09178572603			ALANGILAN,BATANGAS	\N		6567	3613
MIGUEL	VILMA	P		09567282707			BATANGAS CITY	\N		6568	3616
BOLAÑOS	RIZALDY			09778341123			PADRE GARCIA	\N		6569	3616
FARAL	ARMANDO	V		09178247370			BATANGAS CITY	\N		6570	3616
DE CASTRO	ANA MARIE			09754235341			BUCAL, BATANGAS CITY	\N		6571	3617
ATIVO	INGRID			09459913823			BALAGTAS, BATANGAS CITY	\N		6572	3617
GARCIA	ELPIDIA			09279152090			TULO II, BATANGAS CITY 	\N		6573	3617
GUINHAWA	ENRIQUIE	F		09085751598			SOROSORO KARSADA, BATANGAS CITY	\N		6574	3618
DIMAANO	EDMUNDO			09169515787			SOROSORO KARSADA, BATANGAS CITY	\N		6575	3618
BUENSALIDA	MARY GRACE			09287863758			SOROSORO KARSADA, BATANGAS CITY	\N		6576	3618
ANTE	FATIMA LLANA	B		09306135020			ALANGILAN, BATANGAS CITY	\N		6577	3619
GALVEZ	AREN ROSE	E					BOLBOK, BATANGAS CITY	\N		6578	3619
LAT	MA. AURA VERONICA	G		09274093944			VERGARA ST., BATANGAS CITY	\N		6579	3621
HUSMILLO	REV. GEOVANI 			09163718082			VILLA CRISTINA, ARCE, BATANGAS CITY	\N		6580	3621
NO	STEWARD GLEN	B		09272054718			ILAT NORTH, SAN PASCUAL, BATANGAS	\N		6581	3621
DE VILLA 	AMIR 	A		09177044783			ALANGILAN, BATANGAS CITY	\N		6582	3620
COMIA	SACORO	R		09971892566			TALUMPOK, BATANGAS CITY	\N		6583	3622
BAUTISTA	DEMETRIO	B		09295320442			BANABA CENTER, BATANGAS CITY	\N		6584	3622
CATAPANG	HERMAN	A		09989700743			TINGA LABAC, BATANGAS CITY	\N		6585	3622
TAMAYO	FRANCIS ALBERT	B		09213916440			KUMINTANG IBABA, BATANGAS CITY	\N		6586	3624
LAPERA	JOSHUA MARI	M		09486200370			MATALA, IBAAN BATANGAS	\N		6587	3624
ARGUELLES	SHEENA WELLA 	G		09272140670			TAYSAN, BATANGAS	\N		6588	3624
FANOJA	KATHLEEN 	F		980-0385 loc. 1911			BATANGAS STATE UNIVERSITY	\N		6589	3623
CASAO	RICHELL 	A		980-0385 loc. 1988			BATANGAS STATE UNIVERSITY 	\N		6590	3623
CELEMIN  	LEAH 	M 		702- 2094 loc. 101			DEPED BATANGAS CITY 	\N		6591	3623
RAMOS	DELMAR	P		09333174959			MAHABANG PARANG, BATANGAS CITY	\N		6592	3626
ZARASPE	LOURDES	M		09178552388			CALICANTO, BATANGAS CITY	\N		6593	3626
DELA CRUZ	RICHELLE			09999445028			TULO, BATANGAS CITY	\N		6594	3626
RAMOS	DELMAR	P		09333174955			MAHABANG PARANG, BATANGAS CITY	\N		6595	3627
BURI	MARJORIE			0919109899			LIBJO, BATANGAS CITY	\N		6596	3627
BREGONIA	CHARLES DARREL 			09175018522			ALANGILAN, BATANGAS CITY	\N		6597	3627
LIZADA	JULIA 			0966444852			TINGA ITAAS, BATANGAS CITY	\N		6598	3628
BAGUI	MARTIN			09263098391			TINGA ITAAS, BATANGAS CITY	\N		6599	3628
GUICO	VICTORIANO			0919065351			TINGA ITAAS, BATANGAS CITY	\N		6600	3628
RAMOS	DELMAR			09333174959			MAHABANG DAHILIG, BATANGAS CITY	\N		6601	3625
ZARASPE	LOURDES 	M		09178552388			CALICANTO BATANGAS CITY	\N		6602	3625
LAGMAN	MARIA JOSEFINA 	M					SORO-SORO BATANGAS CITY	\N		6603	3625
COMIA	SACORO  	R		09171892566			TALUMPOK  WEST BATANGAS CITY	\N		6604	3629
ZARASPE	LOURDES	M		09178552388			CALICANTO BATANGAS CITY	\N		6605	3629
LONTOC	ISAGANI						TALUMPOK WEST BATANGAS CITY	\N		6606	3629
CELEMIN 	LEAH 	M		702-2094			GULOD LABAC, BATANGAS CITY	\N		6607	3630
AQUINO	LEA	C		09171428944			MONTALBO ROAD, BOLBOK BATANGAS CITY	\N		6608	3630
ISLETA	MARIA ROSEL 	D		09971284850			DUMANTAY BATANGAS CITY 	\N		6609	3630
FAMPO	GERALYN			09817234326			ALANGILAN BATANGAS CITY	\N		6610	3631
LAGMAN	MARIA JOSEFINA	M		723-7319			SOROSORO ILAYA, BATANGAS CITY	\N		6611	3633
CELEMIN	LEAH	M		702-2094			GULOD ITAAS, BATANGAS CITY	\N		6612	3633
JARDIN	SHIRLEY	Z		723-6847			TABANGAO, BATANGAS CITY	\N		6613	3633
MACALALAD	RODELIA	G		740-8687			DEPED DIVISION OF BATANGAS CITY	\N		6614	3632
CATINAN	MARIETTA			840-3771 LOC. 125			SANTIS DELICATESSEN	\N		6615	3632
NG	AIVY			09178868116			BNC INGREDIENTS CORPORATION	\N		6616	3632
MAJOMOT	LILY BETH	L		(043) 724-5494			CSC FIELD OFFICE BATANGAS	\N		6617	3635
CARMONA	ALLAN POE	M		09298060778			BULACAN	\N		6618	3635
ABU	NORMA	C		(043)724-5494			CSC FIELD OFFICE BATANGAS	\N		6619	3635
RAMOS	DELMAR			0933174459			MAHABANG PARANG, BATANGAS CITY	\N		6620	3638
ABRUGENA	MADONNA	B		09393665149			BAUAN BATANGAS	\N		6621	3638
BUENO	DR. DONATO 	G		09175620438			NAUJAN ORIENTAL MINDORO 	\N		6622	3634
FARAL 	ARMANDO 	V		043-702-2094			DEPED- DIVISION OF BATANGAS CITY 	\N		6623	3634
PEREZ	MIKKO PAOLO 			043-702-2094			DEPED- DIVISION OF BATANGAS CITY 	\N		6624	3634
SESCON	JAN JUAN	D		09457003166			CITY OF SAN JOSE DEL MONTE, BULACAN	\N		6625	3636
MALABANAN	DANNALYN	P		09351496809			IBAAN, BATANGAS	\N		6626	3636
YAPE	LOREN	P		09508708842			BALAGTAS, BATANGAS CITY	\N		6627	3636
COMIA	SACORO	R		09172753556			SDO BATANGAS CITY	\N		6628	3639
BAUTISTA	DEMETRIO 	B		09295320442			SDO BATANGAS CITY	\N		6629	3639
EBORA	MENIANO	D		09171328890			SDO BATANGAS CITY	\N		6630	3639
ISLETA	MARIA ROSEL 	D		09971264850			DUMANTAY, BATANGAS CITY	\N		6631	3637
MALIGALIG	LUIS	P		09494419567			KUMINTANG IBABA,BATANGAS CTY	\N		6632	3637
RAMIREZ	MAGELYN	B		09368602346			TALUMPOK WEST ,BATANGAS CITY	\N		6633	3637
CELEMIN	LEAH	M		09778307399			DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY	\N		6634	3643
DE LOS REYES	RENA JANNINE 	M		09508778844			LANDBANK OF THE PHILIPPINES	\N		6635	3643
SORIANO	MA. VANESSA			09159377383			ACCENTURE	\N		6636	3643
HARELL	MARITES 			9800371			CALICANTO BATANGAS CITY 	\N		6637	3640
BIDON	MA .JEAN			09178770109			STA CLARA PIER BATANGAS CITY 	\N		6638	3640
QUIBAEL	ARNEL 			09063749536			ROXAS BLVD MALATE MANILA 	\N		6639	3640
EBORA	MADONNA 	M		09369249796			MALALIM, BATANGAS CITY	\N		6640	3645
LAGMAN	MARIA JOSEFINA	M		09178213626			SORO SORO ILAYA, BATANGAS CITY	\N		6641	3645
AGUADO	ELVIE	P		09292930064			SAN PASCUAL, BATANGAS CITY	\N		6642	3645
FALQUEZA	JOEPI	F		09985142515			SAN JUAN, BATANGAS	\N		6643	3642
BOLAÑOS	FELIZARDO	O		09778341123			PADRE GARCIA, BATANGAS	\N		6644	3642
PEREZ	MIKKO PAOLO	A		09175017184			BATANGAS CITY	\N		6645	3642
LAGMAN	MARIA JOSEFINA	M		722-0715			SORO -SORO, BATANGAS CITY	\N		6646	3641
DIMAALA	ROSAL	R		09157450085			SAN PASCUAL, BATANGAS	\N		6647	3641
MAGSOMBOL	CHRISTINE			723-1446 LOC. 208			SAN LUIS, BATANGAS	\N		6648	3641
BAJA	RANDY	M		0935616936			BATANGAS STATE UNIVERSITY- MAIN CAMPUS	\N		6649	3646
POBLADOR	MARIA THERESA 	R		(046) 419- 2534			CIVIL SERVICE COMMISSION FIELD OFFICE- CAVITE 	\N		6650	3646
CELEMIN	LEAH	M		702-2094			DEPARTMENT OF EDUCATION	\N		6651	3646
LAGMAN 	MARIA JOSEFINA 	M 		702-70940 LOC. 1025 			DEPED BATANGAS CITY ACCOUNTING UNIT 	\N		6652	3644
PEREZ  	VIVAN 	A 		09194417861			LYCEUM OF THE PHILIPPINES UNIVERSITY -  BATANGAS HS DEPARTMENT 	\N		6653	3644
BUENO 	DONATO 	G 		09175620438			NAUHAN ORIENTAL MINDORO 	\N		6654	3644
BUENO	DONATO	G		09175620438			NAUJAN, ORIENTAL MINDORO	\N		6655	3649
ZARASAPE	LOURDES	M		043-702-2094			DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY	\N		6656	3649
PEREZ	MIKKO PAOLO			043-702-2094			DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY	\N		6657	3649
PANGANIBAN	HERMOGENES	 M	CESO V	(43) 723 3586			CUENCA, BATANGAS	\N		6658	3648
BOLANOS	FELIZARDO	O	CESO V	(43) 727 5506			PADRE GARCIA, BATANGAS	\N		6659	3648
BUENO	DONATO	G	EDD	09175620438			NAUJAN, ORIENTAL MINDORO	\N		6660	3648
LAGMAN	MARIA JOSEFINA	M		(043) 722-0715			 DEPED SDO BATANGAS CITY	\N		6661	3647
PANGANIBAN	HERMOGENES 			(043) 723-3586			 DEPED SDO BATANGAS CITY	\N		6662	3647
MACALALAD	RODELIA			(043) 723-8687			 DEPED SDO BATANGAS CITY	\N		6663	3647
BUSTOS	NERMA			09298912310			KUMINTANG ILAYA, BATANGAS CITY	\N		6664	3653
BUENVIAJE	KEY ANN			09298912310			KUMINTANG ILAYA, BATANGAS CITY	\N		6665	3653
DELOS REYES	EMELY 			09175921892			KUMINTANG ILYA, BATANGAS CITY	\N		6666	3653
COMIA	SACORO	R		09171892566			TALUMPOK WEST, BATANGAS CITY	\N		6667	3654
EBORA	MENIANO 	D		09171328890			SORO-SORO ILAYA, BATANGAS CITY	\N		6668	3654
BAGON 	ROSSANA 	P		09338522812			DUMANTAY, BATANGAS CITY	\N		6669	3654
YLAGAN 	ALEX 			723-2441			LYCEUM OF THE PHILIPPINES UNIVERSITY- BATANGAS 	\N		6670	3650
ALMERO	DELIA	B					LANDBANK OF THE PHILIPPINES 	\N		6671	3650
ITURRALDE	ELVIRA	G		723-3063			NOBLE ST., BATANGAS CITY	\N		6672	3650
MAGNAYE	DARLENE  VENUS	D 		722-2715			P.HERRERA ST., BATANGAS CITY	\N		6673	3652
LAGMAN	MARIA JOSEFINA	M		722-2715			P.HERRERA ST., BATANGAS CITY	\N		6674	3652
QUIZON	KRISTEL	C		702-2094 LOC 101			P.HERRERA ST., BATANGAS CITY	\N		6675	3652
VIRTUS	LILIBETH 			0998127698			LIBJO, BATANGAS CITY	\N		6676	3655
COMIA	SACORO	R		09171892566			TALUMPOK	\N		6677	3655
PORTUGAL	LUCILA			093937434721			BAUAN, BATANGAS	\N		6678	3655
PANGANIBAN	HERMOGENES	M		702-2094 loc 100			DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY	\N		6679	3656
FALQUEZA	JOEPI	F					DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY	\N		6680	3656
MARANAN	CATHERINE	V		786-0296			DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY	\N		6681	3656
TEJADA 	MARIE JOY 			09450756428			ALANGILAN, BATANGAS CITY	\N		6682	3651
RIVERA	KRISTINA			09770017241			TINGA ITAAS, BATANGAS CITY	\N		6683	3651
AGUADO 	ELVIE 	P		09292930064			SAN PASCUAL, BATANGAS	\N		6684	3651
COMIA	SACORO	R		09172753556			TALUMPOK, BATANGAS CITY	\N		6685	3658
ASI	LOLITA	T		09175057894			MAHABANG DAHILIG, BATANGAS CITY	\N		6686	3658
MAGADIA	CHARITY	S		09667522908			GULOD ITAAS, BATANGAS CITY	\N		6687	3658
ITURRALDE	EMMA	P		723-1922			NOBLE ST. BATANGAS CITY	\N		6688	3660
ROXAS	ARJAY 			09171336805			STO. TORIBIO, LIPA CITY, BATANGAS 	\N		6689	3659
MAGSUMBOL 	CARMELLA 			09557346975			CALUMPANG WEST, SAN LUIS, BATANGAS 	\N		6690	3659
MAGADIA 	MARIA LUZ 	V		09067171189			BATANGAS CITY 	\N		6691	3659
PEREZ	JOEL 	A		09192980703			NATIVIDAD ST. BATANGAS CITY	\N		6692	3661
LAGMAN 	JOSEFINA	M		09178552017			SOROSORO ILAYA BATANGAS CITY 	\N		6693	3661
RAMOS 	DELAMR			09393665149			MAHABANG PARANG BATANGAS CITY 	\N		6694	3661
CATAPANG	HERMAN	A		09989700743			TINGA LABAC, BATANGAS CITY	\N		6695	3657
BAGON	ROSSANA	P		09985767442			BETZAIDA VILLAGE DUMANTAY, BATANGAS CITY	\N		6696	3657
PEREZ	MARIETA 	N		09985553861			BRGY. CUTA BATANGAS CITY	\N		6697	3657
PEREZ	JOEL 	A 		09192980703			NATIVIDAD STREET BATANGAS CITY	\N		6698	3663
LAGMAN	JOSEFINA	M		09178552017			SOROSORO ILAYA BATANGAS CITY	\N		6699	3663
RAMOS	DELMAR 			09393665149			MAHABANG PARANG BATANGAS CITY	\N		6700	3663
COMIA	SACORO	R		09171892566			SDO BATANGAS CITY	\N		6701	3662
MARANAN	CATHERINE	V		786-0296			SDO BATANGAS CITY	\N		6702	3662
PANGANIBAN 	HERMOGENES	M		043-723-3586			SDO BATANGAS CITY	\N		6703	3662
COMIA	SACORO	R		09171892566			TALUMPOK WEST,BATANGAS CITY	\N		6704	3665
ABRUGENA	MADONNA	B 		09393665149			BAUAN,BATANGAS	\N		6705	3665
COMIA	SACORO	R		0917892566			SDO BATANGAS CITY	\N		6706	3664
MARANAN	CATHERINE 	V		786-0296			SDO BATANGAS CITY	\N		6707	3664
PANGANIBAN	HERMOGENES	M		043-723-3586			SDO BATANGAS CITY	\N		6708	3664
PANGANIBAN	HERMOGENES	M		702-2094			DEPARTMENT OF EDUCATION BATANGAS CITY	\N		6709	3666
COMIA	SACORO	R		09171892566			DEPARTMENT OF EDUCATION BATANGAS CITY	\N		6710	3666
AMOTO	ANGELISA	A					DEPARTMENT OF EDUCATION BATANGAS CITY	\N		6711	3666
PEREZ 	MARIETA 	N		09985553861			BRGY. CUTA BATANGAS CITY 	\N		6712	3667
JAVIER 	GENERIEGO 	O		09209002085			BETZAIDA VILLAGE, DUMANTAY BATS. CITY 	\N		6713	3667
ASI 	NICOLAS 	O		09776888076			CONDE LABAC 	\N		6714	3667
CATAPANG	HERMAN	A		09989700743			TINGGA LABAC BATANGAS CITY 	\N		6715	3669
CABANDING 	ROWENA	A		09175930974			TAAL BATANGAS 	\N		6716	3669
BAUTISTA	DEMETRIO	B		09295320442			BANABA CENTER BATANGAS CITY 	\N		6717	3669
PANGANIBAN 	HERMOGENES 	M		0437022094			CALACA, BATANGAS 	\N		6718	3670
COMIA 	SACORO 	R		09171892566			TALUMPOK BATANGAS CITY 	\N		6719	3670
AMOTO 	ANGELISA 	A		0437022094			BALAGTAS, BATANGAS CITY 	\N		6720	3670
PANGANIBAN	HERMOGENES	M		702-2094			CALACA, BATANGAS  	\N		6721	3668
MARANAN	CATHERINE 	V		702-2094			SAN PASCUAL, BATANGAS	\N		6722	3668
COMIA	SACORO	R		09175985168			TALUMPOK WEST, BATANGAS CITY	\N		6723	3668
AMOTO	ANGELISA 	A		7022094			BALAGTAS, BATANGAS CITY 	\N		6724	3671
COMIA	SACORO	R		09175985168			TALUMPOK WEST, BATANGAS CITY 	\N		6725	3671
PANGANIBAN	HERMOGENES	M		7022094			CALACA, BATANGAS 	\N		6726	3671
SILANG	MILA			723-2936			BATANGAS CITY LIBRARY	\N		6727	3672
JAVIER	PAULITA	A		723-1446			UNIVERSITY OF BATANGAS,LEARNING RESOURCE CENTER	\N		6728	3672
LUNAR	ALEXANDER	T		984-5532			BATANGAS PROVINCIAL LIBRARY	\N		6729	3672
AMOTO	ANGELISA 	A		7022094			BALAGTAS, BATANGAS CITY 	\N		6730	3673
COMIA	SACORO 	R		09175985168			TALUMPOK WEST, BATANGAS CITY 	\N		6731	3673
PANGANIBAN 	HERMOGENES 	M		7022094			CALACA, BATANGAS	\N		6732	3673
PANGANIBAN	HERMOGENES	M.		043 - 702 - 2094			DEPED, BATANGAS CITY	\N		6733	3674
COMIA	SACORO 	R. 		09175985168			TALUMPOK WEST, BATANGAS CITY	\N		6734	3674
AMOTO	ANGELISA	A		043 - 702 - 2094			DEPED, BATANGAS CITY	\N		6735	3674
COMIA	SACORO	R		09171892566			TALUMPOK WEST, BATANGAS CITY	\N		6736	3676
MERCADO 	TRISTAN 	C		09498914720			STA. ROSA LAGUNA	\N		6737	3676
MARANAN 	CATHERINE 	V		043-702-0735			DEPARTMENT OF EDUCATION, BATANGAS CITY 	\N		6738	3675
PEREZ 	MARIETA 	N		043-702-2094			DEPARTMENT OF EDUCATION, BATANGAS CITY	\N		6739	3675
COMIA 	SACORO 	R		043-722-0735			DEPARTMENT OF EDUCATION, BATANGAS CITY	\N		6740	3675
LUCERO 	JHUN-JHUN 	D		095695547105			LYNARS VILLAGE TANGWAY LIPA CITY, BATANGAS 	\N		6741	3677
CATAPANG	HERMAN	A		09989700743			TINGA LABAC, BATANGAS CITY	\N		6742	3677
SECO	LEILA	M		09228292303			BANABA WEST, BATANGAS CITY	\N		6743	3677
COMIA	SACORO	R		091718922566			TALUMPOK ,BATANGAS CITY	\N		6744	3678
BAUTISTA	DEMETRIO	B		09295320442			BANABA CENTER,BATANGAS CITY	\N		6745	3678
CATAPANG	HERNAN	A		09989700743			TINGA LABAC,BATANGAS CITY	\N		6746	3678
BAUTISTA	DEMETRIO 	B		09295320492			BANABA CENTER, BATANGAS CITY 	\N		6747	3681
ANDAL	DEMETRIA 	P		09171483671			TINGA LABAC, BATANGAS CITY 	\N		6748	3681
SECO	LEILA 	M		09228292303			BANABA WEST, BATANGAS CITY 	\N		6749	3681
DE CHAVEZ	MIGUELA	G. 		09395700624			BALETE, BATANGAS CITY	\N		6750	3679
JAVIER	GENERIEGO 	O. 		09209002085			DUMANTAY, BATANGAS CITY	\N		6751	3679
DELOS SANTOS	ERWIN			09126190782			NAUJAN, ORIENTAL MINDORO	\N		6752	3679
SANTOS 	NIDA	C		09499636976			DEPED- BATANGAS CITY 	\N		6753	3680
MELO 	PRINCESS MARIE 	B		09209732337			BATSTATEU- CICS	\N		6754	3680
AMOTO 	ANGELISA 	A		043-702-2094 LOC 103			DEPED- BATANGAS CITY 	\N		6755	3680
BAUAN	LEODIVINA	M. 		09614965059			BATANGAS CITY	\N		6756	3684
EBORA	MENIANO 			09171495489			SOROSORO ILAYA BATANGAS CITY	\N		6757	3684
BAJA	RANDY	M.		09356196936			BATANGAS CITY	\N		6758	3684
FABARIER 	VICTORIA 	G	PHD 	09215155505			BATANGAS CITY 	\N		6759	3683
PEREZ	MARIETA	N	PHD	09182980596			BATANGAS CITY 	\N		6760	3683
ASI	ROWENA 	T	PHD	09171600146			BATANGAS CITY 	\N		6761	3683
VIRTUS	LILIBETH	M		09173658065			LIBJO, BATANGAS CITY	\N		6762	3682
DE TORRES	MENA 	M		09156598816			MERCEDES HOMES, SORO SORO ILAYA	\N		6763	3682
COMIA	SACORRO	R		09171524836			TALUMPOK, BATANGAS CITY	\N		6764	3682
SABELLANO	BELINDA	D		09778046804			KUMINTANG ILAYA, BATANGAS CITY 	\N		6765	3686
MAGPANTAY	MARIBEL 	D		09684929508			TIERRA VERDE SUBD., BATANGAS CITY 	\N		6766	3686
PEREZ	JOEL 	A		09192980703			NATIVIDAD ST., BATANGAS CITY 	\N		6767	3686
PEREZ	MIKKO PAOLO	A		09175017184			BATANGAS CITY	\N		6768	3687
ABRUGENA	MADONNA	B		0939665149			BAUAN, BATANGAS	\N		6769	3687
BUENO	DONATO	G		09175620432			BARCENAGA, CALAPAN CITY 	\N		6770	3688
AREVALO 	PONCIANA	R		09083549822			SDO- BATANGAS CITY 	\N		6771	3688
BABAO	MAGIELYN 	R		09017516928			SDO-BATANGAS CITY 	\N		6772	3688
FABABIER	VICTORIA 	G		0935174459			BATANGAS CITY	\N		6773	3690
GUICO	MARCELO			09759239814			BATANGAS CITY	\N		6774	3690
PANGANIBAN 	HERMOGENES 	M		(043)-702-2094			CALACA CITY, BATANGAS 	\N		6775	3689
MARANAN 	CATHERINE 	V		(043)-702-2094			SAN PASCUAL, BATANGAS 	\N		6776	3689
AMOTO	ANGELISA 	A		(043)-702-2094			TINGA LABAC, BATANGAS CITY 	\N		6777	3689
ABRUGENA	MADONNA 	B		09393665149			BAUAN, BATANGAS	\N		6778	3691
SABELLANO	BELINDA	D		09778046804			KUMINTANG ILAYA, BATANGAS CITY	\N		6779	3691
CLET	MARIA ROSA VILLA	C		09177001613			ALANGILAN, BATANGAS CITY	\N		6780	3692
LUMANGLAS 	JUDITH 	D		09944093567			TULO, BATANGAS CITY 	\N		6781	3692
SABELLANO 	BELINDA	D		09778046804			BATANGAS CITY 	\N		6782	3692
BUENAFE	SHIELA 	L		702-2094			DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY, P.HERRERA ST. BATS.CITY	\N		6783	3685
MEDINA	MARIANNE 	R		702-2094			DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY, P.HERRERA ST. BATS.CITY	\N		6784	3685
CABATAY	REDELINE JOYCE 	L		702-2094			DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY, P.HERRERA ST. BATS.CITY	\N		6785	3685
AMOTO	ANGELISA	A.		09338688795			TINGA LABAC, BATANGAS CITY	\N		6786	3694
ABRUGENA	MADONNA	B.		09956184811			SAN TEODORO BAUAN, BATANGAS CITY	\N		6787	3694
FALLURIN	FE	M.		702-2024 LOC 103			LIPA BATANGAS 	\N		6788	3694
PANGANIBAN 	HERMOGENES 	M		723-3586			BATANGAS 	\N		6789	3695
MARANAN	CATHERINE 	V		786-0296			BATANGAS 	\N		6790	3695
COMIA 	SACORO 	R		723-3586 LOCAL 103			BATANGAS CITY 	\N		6791	3695
AMOTO	ANGELISA 	A		09338688795			CENTRAL PLAIN HOMES, TINGA LABAC, BATANGAS CITY	\N		6792	3693
FALLURIN	FE	M		09688568869			MALVAR, BATANGAS	\N		6793	3693
LAGMAN	MARIA JOSEFINA	M		09178213626			BLK 15 357, MERCEDES HOMES, SOROSORO ILAYA, BATANGAS CITY	\N		6794	3693
AMOTO	ANGELISA	A. 		702-2094			BATANGAS CITY	\N		6795	3696
BABAO	MAGIELYN 	R.		702-2094			BATANGAS CITY	\N		6796	3696
MENDOZA 	EDNA 	U		09266147276			TANAUAN, BATANGAS 	\N		6797	3698
AMOTO	ANGELISA	A		09165879239			BATANGAS CITY 	\N		6798	3698
FALLURIN	FE	M		09688568869			LIPA CITY, BATANGAS 	\N		6799	3698
MALIWANAG	GRACHELA	V.		91585196443			POBLACION BACO, ORIENTAL MINDORO	\N		6800	3700
QUINDONG	COLETA 			917858519643			CAMILMIL CALAPAN CITY	\N		6801	3700
MEDINA	MARIANNE 	R.		9561407829			BARANGAY 20, BATANGAS CITY	\N		6802	3700
DOCE	JOANNE 			09499952632			KUMINTANG IBABA, BATANGAS CITY	\N		6803	3697
ABRUGENA	MADONNA	B		09393665149			BAUAN BATANGAS	\N		6804	3697
PEREZ	GRENA	C		723-3779			GULOD ITAAS, BATANGAS CITY	\N		6805	3697
AMOTO 	ANGELISA	A		09171158903			TINGA LABAC, BATANGAS CITY 	\N		6806	3701
COMIA	ROSALINDA	M		09285244985			KUMINTANG ILAYA, BATANGAS CITY 	\N		6807	3701
BAJA	RANDY 	M		09338522620			GULOD ITAAS, BATANGAS CITY 	\N		6808	3701
MARANAN 	CATHERINE 	V		043 702 2094			SDO BATANGAS CITY 	\N		6809	3704
RGC	AMELIA 	B		09959959454			ALANGILAN, BATANGAS CITY 	\N		6810	3704
AMOTO 	ANGELISA 	A	PHD	043 702 2094			SDO BATANGAS CITY 	\N		6811	3704
ZARASPE	LOURDES	M. 		043-7238507			CALICANTO, BATANGAS CITY	\N		6812	3702
LAGMAN	MARIA JOSEFINA	M. 		043-7237319			ALANGILAN, BATANGAS CITY 	\N		6813	3702
AMOTO	ANGELISA 	A. 		043-7022094			TINGA LABAK, BATANGAS CITY	\N		6814	3702
METRILLO	ALVIN 	P		(403) 702-2094			SDO BATANGAS CITY	\N		6815	3703
MARANAN	CATHERINE	V		(043) 702-2094			 SDO BATANGAS CITY 	\N		6816	3703
AMOTO	ANGELISA 	A		(043) 702-2094			 SDO BATANGAS CITY 	\N		6817	3703
BUENO	DONATO	G.		9175620432			BARSINAGA, CALAPAN CITY	\N		6818	3706
GUTIERREZ	LORETO 	P. 		9088950611			CUTA LOOBAN BATANGAS CITY	\N		6819	3706
MARANAN	JEFFREY	P. 		9209476705			PALLOCAN WEST BATANGAS CITY	\N		6820	3706
PEREZ	SHERLY 			09088618532			TULO, BATANGAS CITY 	\N		6821	3707
BRIONES 	EDELYN 	B		09165700579			ALANGILAN, BATANGAS CITY 	\N		6822	3707
RIVERA 	REBECCA	E		09959788178			SAN ISIDRO, BATANGAS CITY 	\N		6823	3707
SABELLANO	BELINDA	D		09778046804			KUMINTANG ILAYA, BATANGAS CITY	\N		6824	3705
ABRUGENA	MADONNA	B		09393665149			BAUAN BATANGAS	\N		6825	3705
CABATAY	REDELINE JOYCE	L		09778361949			SOROSORO, BATANGAS CITY	\N		6826	3705
MAGADIA	CHARITY	S.					GULOD ITAAS, BATANGAS CITY	\N		6827	3709
DE TORRES	GEMMA	C.		0906109637			CONDE, BATANGAS CITY	\N		6828	3709
SAUAREZ	RICA	A.		09279802637			DAO, BATANGAS CITY	\N		6829	3709
CORDERO	MARILOU	B		09455314703			ALANGILAN, BATANGAS CITY	\N		6830	3710
PEREZ	BELYNDA	B		09757328865			NOBLE ST. BATANGAS CITY	\N		6831	3710
HERNANDEZ	LEONORA	E		09272481486			STO. NINO BATANGAS CITY	\N		6832	3710
EBORA	VILMA	C		09051466206			SANTO  NINO, BATANGAS CITY	\N		6833	3711
ABAG	CARMELITA	D		09175867036			CALICANTO, BATANGAS CITY	\N		6834	3711
RAMIREZ	LEANDRO	C		091753810055			SANTO NINO, BATANGAS CITY	\N		6835	3711
FURTO	LEA	C.		09175040151			DALIG, BATANGAS CITY	\N		6836	3712
TARCELO	MARITES	D.		09151454687			TABANGAO, AMBULONG, BATANGAS CITY	\N		6837	3712
ADOYO	JOCELYN	S.		09696098664			PALLOCAN WEST, BATANGAS CITY	\N		6838	3712
PANGANIBAN	ROSALINA	H		09175028703			BATANGAS CITY	\N		6839	3713
ALON	NESTOR	E		09275805470			BATANGAS CITY	\N		6840	3713
MARASIGAN	MARYDEL	B		09178770027			BATANGAS CITY	\N		6841	3713
REYES	ARIEL	D		09634017328			SOROSORO IBABA, BATANGAS CITY	\N		6842	3715
MAGBOJOS	CRISTILENE	Q		09777416115			SOROSORO ILAYA, BATANGAS CITY	\N		6843	3715
DALISAY	MA. KIMBERLIE	M		09695693894			CUTA, BATANGAS CITY	\N		6844	3715
TARCELO	MARITES 	D.		09151454687			AMBULONG, BATANGAS CITY	\N		6845	3714
BOOL	LENY	M.		723-7361			PALLOCAN WEST, BATANGAS CITY	\N		6846	3714
ALUAN	LOIDA	R.		09186126205			DALIG, BATANGAS CITY	\N		6847	3714
TARCELO	MARITES	D. 		09151454687			AMBULONG, BATANGAS CITY	\N		6848	3716
BOOL	LENY	M.		09189649408			PALLOCAN WEST, BATANGAS CITY	\N		6849	3716
ALUAN	LOIDA	R.		09186126205			DALIG, BATANGAS CITY	\N		6850	3716
ASI	ROWENA	T		09171600146			SAMPAGA EAST, BATANGAS CITY	\N		6851	3717
MANACAP	DANILO	E		09175165443			DUMANTAY, BATANGAS CITY	\N		6852	3717
GONZALES	ESTELITA	M		09206317868			MALITAM, BATANGAS CITY	\N		6853	3717
HERNANDEZ	AIDA BLANDINA	A		09507338526			218 GULOD LABAC, BATANGAS CITY	\N		6854	3719
MENDOZA	RHANDLE	A		09605313139			PUROK 5A MACSOR SITE STA. CLARA, BATANGAS CITY	\N		6855	3719
MACARAIG	DAISYLIN	M		09217518922			PUROK 2, VILLA PRECY SUBDIVISION, KUMINTANG ILAYA, BATANGAS CITY	\N		6856	3719
MEDINA	PRECIOSA	E.		09564781003			SAN ANTONIO, ISLA VERDE BATANGAS CITY	\N		6857	3718
DE CASTRO	FRANCISO	A.		09108452404			SAN ANTONIO, ISLA VERDE BATANGAS CITY	\N		6858	3718
FATALLA	BUHAY JOSE			09602114973			SAN ANTONIO, ISLA VERDE BATANGAS CITY	\N		6859	3718
FAMPULME	MARY JOY	G		09675403485			MALITAM, BATANGAS CITY	\N		6860	3721
MENDOZA	KRISTINE MAY	S		09567351309			BOLBOK, BATANGAS CITY	\N		6861	3721
BALMES	RICA MAE	M		09161067348			GULOD, BATANGAS CITY	\N		6862	3721
ALUAN	LOIDA	R.		09186126205			DALIG, BATANGAS CITY	\N		6863	3720
DE TORRES	GEMMA	C.		09163109637			CONDE ITAAS, BATANGAS CITY	\N		6864	3720
ARCE	TITA	M.		09167901399			PINAMUCAN IBABA, BATANGAS CITY	\N		6865	3720
CAJAYON	MARY JOYCE	C		09566634069			SORO SORO BATANGAS CITY	\N		6866	3722
TOLENTINO	FRITZIE ANNE	F		09087534046			ALANGILAN, BATANGAS CITY	\N		6867	3722
YEMA	MELISSA	S		09162261416			ALANGILAN, BATANGAS CITY	\N		6868	3722
VILLENA	DIANE ANGELA	R		09163046604			BATANGAS CITY	\N		6869	3723
PANALIGAN	MARY ANNE CHRISTINE	M		09462673955			ROSARIO, BATANGAS CITY	\N		6870	3723
PASIA	ANNA JANE	 		09918420533			ROSARIO, BATANGAS	\N		6871	3723
HERNANDEZ	AIDA BLANDINA	A		09507338526			BATANGAS CITY	\N		6872	3725
GARCIA	AILEEN			09163763119			LIPA CITY, BATANGAS	\N		6873	3725
BABASA	EDWARD			09175049649			BATANGAS CITY	\N		6874	3725
CATAPANG	MERIAM	S		09194616640			TINGA LABAC, BATANGAS CITY	\N		6875	3726
PANGANIBAN	GRACE	R		09167201365			NATUNUAN NORTH, SAN PASCUAL BATANGAS	\N		6876	3726
DE TORRES	MENA	M		09497598274			SOROSORO ILAYA, BATANGAS CITY	\N		6877	3726
TARCELO	MARITES	D.		N/A			AMBULONG, BATANGAS CITY	\N		6878	3727
KALALO	ALEXANDRIA	B.		N/A			PALLOCAN WEST,  BATANGAS CITY	\N		6879	3727
DESTACAMENTO	EDEN 	M.		N/A			SAN PASCUAL, BATANGAS	\N		6880	3727
GUICO	LALAINE	I		09175350130			SAN MIGUEL, BATANGAS CITY	\N		6881	3728
HERNANDEZ	AIDA BLANDINA	A		09507338526			GULOD LABAK, BATANGAS CITY	\N		6882	3728
AMUL	MA. ELENA	G		09667233615			SORO SORO, BATANGAS CITY	\N		6883	3728
PEREZ	HAZEL	D		09292731008			BAUAN, BATANGAS	\N		6884	3730
SUAREZ	LESHEL	R		09477872377			SAN PASCUAL, BATANGAS	\N		6885	3730
EROA	LUTHER JOSE	O		09195813127			DUMANTAY, BATANGAS CITY	\N		6886	3730
TARCELO	MARITES	D		09151454687			AMBULONG, BATANGAS CITY	\N		6890	3732
ALUAN	LOIDA	R		09186126205			DALIG, BATANGAS CITY	\N		6891	3732
BOOL	LENY	M		09189649408			PALLOCAN WEST, BATANGAS CITY	\N		6892	3732
	KAREN JEAN	T	TEAOVISION	09671988585			DUMANTAY BATANGAS CITY	\N		6893	3733
GONZALES	JASMIN	E		09609188306			PALLOCAN WEST, BATANGAS CITY	\N		6894	3733
ANONUEVO	MARIFE	Z		09155056203			MAHACOT WEST, BATANGAS CITY	\N		6895	3733
AQUINO	LEA	C		09171428944			BATANGAS CITY	\N		6899	3735
DE TORRES	GEMMA 	C		09163109637			BATANGAS CITY	\N		6900	3735
BOOL	LENY	M		09192005204			BATANGAS CITY	\N		6901	3735
TARCELO	MARITES	D.		09151454687			AMBULONG, BATANGAS CITY	\N		6887	3729
ALEA	ELIZABETH	M.		09602715239			SORO-SORO KARSADA, BATANGAS CITY	\N		6888	3729
MANALO	ROSA JEALYN	M. 		09303863270			AGUILA, SAN JOSE BATANGAS	\N		6889	3729
DE TORRES	GEMMA	C.		09163109637			CONDE ITAAS, BATANGAS CITY	\N		6896	3731
ALUAN	LOIDA	R.		09186126205			DALIG, BATANGAS CITY	\N		6897	3731
BOOL	LENY	M.		09192005204			PALLOCAN WEST, BATANGAS CITY	\N		6898	3731
FRANE	MARIFE	D		09106986929			TULO 1, BATANGAS CITY	\N		6902	3736
TARCELO	MARITES	D		09151454687			AMBULONG, BATANGAS CITY	\N		6903	3736
ALUAN	LOIDA	R		09062884095			DALIG, BATANGAS CITY	\N		6904	3736
BALMES	DANILO			09176519008			HALIGUE SILANGAN, BATANGAS CITY	\N		6905	3734
AQUINO	LEA	C.		09171428944			BOLBOK, BATANGAS CITY	\N		6906	3734
DE TORRES	GEMMA 	C. 		09163109637			CONDE ITAAS, BATANGAS CITY	\N		6907	3734
PICAR	APRIL	M		09175786698			DUMUCLAY EAST BATANGAS CITY	\N		6908	3738
TENORIO	BRIANNE						PALLOCAN WEST BATANGAS CITY	\N		6909	3738
COLLERA	LEANICA	A		09688960110			LIBJO CENTRAL BATANGAS CITY	\N		6910	3738
TARCELO	MARITES	D		09151454687			CONDE ITAAS, BATANGAS CITY	\N		6911	3739
BOOL	LENY	M		09189649408			PALLOCAN WEST, BATANGAS CITY	\N		6912	3739
ALUAN	LOIDA	R		09186126205			DALIG, BATANGAS CITY	\N		6913	3739
DE TORRES	GEMMA	C.		09163109637			CONDE ITAAS BATANGAS CITY	\N		6914	3737
ALUAN	LOIDA	R.		09186126205			DALIG BATANGAS CITY	\N		6915	3737
BOOL	LENY	M.		09189649408			PALLOCAN WEST BATANGAS CITY	\N		6916	3737
TARCELO	MARITES	D		09151454687			AMBULONG, BATANGAS CITY	\N		6917	3740
BOOL	LENY	M		09189649408			PALLOCAN WEST, BATANGAS CITY	\N		6918	3740
ALUAN	LOIDA	R		09186126205			DALIG, BATANGAS CITY	\N		6919	3740
CATILO	ROMY			7220496			PALLOCAN WEST, BATANGAS CITY	\N		6920	3742
TARCELO	MARITES	D		09151454687			AMBULONG BATANGAS CITY	\N		6921	3742
VILLESTAS	RICARDO			7220993			PALLOCAN WEST, BATANGAS CITY	\N		6922	3742
DE TORRES	GEMMA	C.		09163109637			CONDE ITAAS BATANGAS CITY	\N		6923	3741
ALUAN	LOIDA	R.		09186126205			DALIG BATANGAS CITY	\N		6924	3741
BOOL	LENY	M. 		09189649408			PALLOCAN WEST BATANGAS CITY	\N		6925	3741
DE TORRES	GEMMA	C					CONDE, BATANGAS CITY	\N		6926	3744
BANAAG	YOLANDA						TALUMPOK, BATANGAS CITY	\N		6927	3744
FRANE	MARIFE						TULO, BATANGAS CITY	\N		6928	3744
TARCELO	MARITES	D.		09151454687			AMBULONG, BATANGAS CITY	\N		6929	3743
DE TORRES	GEMMA	C.		09163109637			CONDE ITAAS, BATANGAS CIYT	\N		6930	3743
BOOL	LENY	M.		09547008950			PALLOCAN WEST, BATANGAS CITY	\N		6931	3743
BOOL	LENY	M.		723 7361			PALLOCAN WEST, BATANGAS CITY	\N		6932	3745
TARCELO	MARITES 	D.		09151454687			AMBULONG, BATANGAS CITY	\N		6933	3745
ALUAN	LOIDA	R.		09186126205			DALIG, BATANGAS CITY	\N		6934	3745
MAANO	CHARITY	GARCIA		09178559641			BATANGAS CITY	\N		6935	3746
ALAMANG	MARY JOY			09452083413			SAN PASCUAL BATANGAS	\N		6936	3746
CUSTODIO	MARILOU	B		09954289623			BATANGAS CITY	\N		6937	3746
AGTAY	MARISSA	C.		09369563520			PALLOCAN WEST, BATANGA CITY	\N		6938	3748
MACATANGAY	MARISSA	A		09195979838			SOROSORO KARSADA. BATANGAS CITY	\N		6939	3749
BOOL	LEONILA	P		09175019796			ILIJAN, BATANGAS CITY	\N		6940	3749
BRETON	DATIVA	A		09982003126			BALETE, BATANGAS CITY	\N		6941	3749
DE TORRES	GEMMA	C.		09163109637			CONDE LABAC, BATANGAS CITY	\N		6942	3747
TARCELO	MARITES	D.		09151454687			AMBULONG, BATANGAS CITY	\N		6943	3747
LUALHATI	ETHEL	M.		09208580783			DUMANTAY, BATANGAS CITY	\N		6944	3747
MAGNAYE	AQUILINO	D		09913533013			BUKAL, BATANGAS CITY	\N		6945	3750
TULIAO	BABYLINDA	C		09196426543			BUKAL, BATANGAS CITY	\N		6946	3750
MACATANGAY	ROWENA	P		09605313104			BUKAL, BATANGAS CITY	\N		6947	3750
TARCELO	MARITES 	D.		09151454687			AMBULONG BATANGAS CITY	\N		6948	3751
FRANE	MARIFE	D.		09109686929			TULO BATANGAS CITY	\N		6949	3751
BOOL	LENY 	M.		09189649408			PALLOCAN WEST BATANGAS CITY	\N		6950	3751
GUTIERREZ	KRISTINA	C		09081891192			SAMPAGA, BATANGAS CITY	\N		6951	3752
CULLERA	EPITACIA	C		09173282459			MERCEDES HOMES, SORO-SORO ILAYA, BATANGAS CITY	\N		6952	3752
TULIAO	BABYLINDA	C		09196426534			BUCAL, BATANGAS CITY	\N		6953	3752
MACATANGAY	ROWENA	P		09605313104			BUCAL BATANGAS CITY	\N		6954	3755
MAGNAYE	AQUILINO	D		09913533013			BUCAL BATANGAS CITY	\N		6955	3755
RESPLANDOR	FLORDELIZA	A		09279071085			CONCEPCION BATANGAS CITY	\N		6956	3755
MACATANGAY	ROWENA	P.		09605313104			BUCAL, BATANGAS CITY	\N		6957	3753
MACATANGAY	MARISSA 	A.		09195979838			SORO-SORO KARSADA, BATANGAS CITY	\N		6958	3753
MAGNAYE	AQUILINO	D.		09913533013			BUCAL, BATANGAS CITY	\N		6959	3753
DE CASTRO	RUEL	B		09563977545			PALLOCAN, BATANGAS CITY	\N		6960	3754
DESTACAMENTO	EDEN	M		09399198761			BANABA BATANGAS CITY	\N		6961	3754
BARTE	EVANGELINE	D		09083058176			BANABA WEST BATANGAS CITY	\N		6962	3754
MACATANGAY	ROWENA	P		09605313104			BUCAL, BATANGAS CITY	\N		6963	3757
MACARAIG	JASMIN	M		09777447371			BALETE, BATANGAS CITY	\N		6964	3757
MAGNAYE	AQUILINO	D		09913533013			BUCAL, BATANGAS CITY	\N		6965	3757
MACATANGAY	MARISSA	A.		09195979838			SOROSORO KARSADA, BATANGAS CITY	\N		6966	3756
MACATANGAY	ROWENA	P.		09605313104			BUCAL, BATANGAS CITY	\N		6967	3756
MAGNAYE	AQUILINO	D.		09913533013			BUCAL, BATANGAS CITY	\N		6968	3756
PANALIGAN	CAROLINA	E		09177297709			KUMINTANG IBABA, BATANGAS CITY	\N		6969	3759
GUTIERREZ	AIDA	C		09202847720			KUMINTANG ILAYA, BATANGAS CITY	\N		6970	3759
FRANE	MARIFE	D		09109686929			TULO I, BATANGAS CITY	\N		6971	3759
GUTIERREZ	KRISTINA	C.		09081891192			TULO, BATANGAS CITY	\N		6972	3760
BLANCO	THELMA	D.		09166813938			BALETE, BATANGAS CITY	\N		6973	3760
MACATANGAY	MARISSA 	A.		09939800939			SORO SORO BATANGAS CITY	\N		6974	3760
LUSANTA	ESPERANZA	B		09995114678			BANABA WEST BATANGAS CITY	\N		6975	3758
DE CASTRO	RUEL	B		09563977545			BANABA WEST BATANGAS CITY	\N		6976	3758
MACATANGAY	CHITO	H		4027239175			BANABA WEST BATANGAS CITY	\N		6977	3758
MACATANGAY	MARISSA	A		09195979838			SOROSORO KARSADA, BATANGAS CITY	\N		6978	3762
MAGNAYE	AQUILINO	D		099135333013			BUKAL, BATANGAS CITY	\N		6979	3762
TULIAO	BABYLINDA	C		09196426534			BUKAL, BATANGAS CITY	\N		6980	3762
MACATANGAY	MARISSA	A.		09195979838			SORO SORO KARSADA, BATANGAS CITY	\N		6981	3761
MAGNAYE	AQUILINO			09913533013			BUKAL, BATANGAS CITY	\N		6982	3761
MACARAIG	JASMIN	M.		09777447371			BALETE, BATANGAS CITY	\N		6983	3761
DE CASTRO	RUEL	B.		784-8020			PALLOCAN WEST, BATANGAS CITY	\N		6984	3763
RUBIA	MARIA						BANABA WEST BATANGAS CITY	\N		6985	3763
PAGLICAUAN	MATEO						BANABA WEST BATANGAS CITY	\N		6986	3763
MAGNAYE	AQUILINO	D		09913533013			BUCAL, BATANGAS CITY	\N		6987	3765
COMETA	ATHENA	M		09988639304			AGUILA, SAN JOSE, BATANGAS	\N		6988	3765
BARRAMEDA	RODEZA MAE	A		09122107745			GC BERBERABE, PALLOCAN EAST, BATANGAS CITY	\N		6989	3765
MACATANGAY	MARISSA	A.		09195979838			SORO SORO KARSADA, BATANGAS CITY	\N		6990	3764
MACATANGAY	ROWENA	P.		09167737580			BUCAL, BATANGAS CITY	\N		6991	3764
BLANCO	THELMA	D.		09190046008			BALETE, BATANGAS CITY	\N		6992	3764
CLAVERIA	VICTOR			09082668908			BATANGAS CITY	\N		6993	3768
TARCELO	MARITES	D		09171609774			BATANGAS CITY	\N		6994	3768
ADOYO	JOCELYN			09062544334			BATANGAS CITY	\N		6995	3768
COMIA	DR. SACORO	R.		7022094			TALUMPOK WEST BATANGAS CITY	\N		6996	3766
BAY	AMELIA	B.		09959959454			ALANGILAN BATANGAS CITY	\N		6997	3766
DE CASTRO	RUEL 	B. 		7848020			PALLOCAN WEST BATANGAS CITY	\N		6998	3766
AGUILA	BEN			09165227488			SAN JOSE, BATANGAS CITY	\N		6999	3767
MAGNAYE	AQUILINO			09913533013			BUCAL BATANGAS CITY	\N		7000	3767
GUTIERREZ	KRISTINA 	C.		09081891192			SAMPAGA BATANGAS CITY	\N		7001	3767
EBORA	ROLAND	C.		09295745268			LIPONPON ISLA VERDE,BATANGAS CITY	\N		7002	3772
EBORA	DANDY 	G.		09209680729			BOLBOK, BATANAGS CITY	\N		7003	3772
PORCINO	TEODORICA	S.		09076854205			SAN AGAPITO, ISLA VERDE, BATANGAS CITY	\N		7004	3772
SALAZAR	LANIE	M.		09292621229			BALETE BATANGAS CITY	\N		7005	3774
MARANAN	ROLANDO	A.		09166652417			BANABA SAN PASCUAL BATANGAS	\N		7006	3774
SULIT	DAISY	G.		09169588932			CONDE LABAC, BATANGAS CITY	\N		7007	3774
DE CASTRO	RUEL	B		09563977545			PALLOCAN WEST, BATANGAS CITY	\N		7008	3769
MACATANGAY	CHITO	H		402-723-9175			BANABA WEST BATANGAS CITY	\N		7009	3769
MENDOZA	FE	M		09397921705			BANABA WEST BATANGAS CITY	\N		7010	3769
ALDAY	JUANITA	P		7262783			SAN JOSE, BATANGAS	\N		7011	3775
PORCINO	TEODORICA	S		09298270559			SAN AGAPITO, ISLA VERDE, BATANGAS CITY	\N		7012	3775
FATALLA	JOSE BUHAY			09602114973			SAN ANTONIO, ISLA VERDE, BATANGAS CITY	\N		7013	3775
PORCINA	TEODORICA	S		09298270559			SAN AGAPITO, ISLA VERDE, BATANGAS CITY	\N		7014	3777
EBORA	DANDY	G		09209680729			BOLBOK, BATANGAS CITY	\N		7015	3777
DE CASTRO	RUEL	B		09563977545			PALLOCAN WEST, BATANGAS CITY	\N		7016	3776
ALDOVER	SUSAN	R		09175044945			BOLBOK, BATANGAS CITY	\N		7017	3776
SALAZAR	LANIE	M		09997383399			BALAGTAS BATANGAS CITY	\N		7018	3776
PORCINO	TEODORICA	S		09298270559			SAN AGAPITO, ISLA VERDE, BATANGAS CITY	\N		7019	3771
FATALLA	JOSE BUHAY			09166474847			SAN ANTONIO, ISLA VERDE, BATANGAS CITY	\N		7020	3771
DE CASTRO	FRANCISCO			09074369644			SAN ANTONIO, ISLA VERDE, BATANGAS CITY	\N		7021	3771
DE CASTRO	RUEL	B		09563977545			PALLOCAN WEST, BATANGAS CITY	\N		7022	3778
LUSANTA	ESPERANZA 	B		09995115678			BANABA WEST, BATANGAS CITY	\N		7023	3778
MACATANGAY	CHITO	H		402-723-9175			BANABA WEST, BATANGAS CITY	\N		7024	3778
COMIA	SACORO	R					TALUMPOK, BATANGAS CITY	\N		7025	3770
GUNO	RAYMUNDO	C		092086442920			ANALYN SUBDIVISION, BATANGAS CITY	\N		7026	3770
ROSALES	ROMMEL	A					SAN PASCUAL, BATANGAS	\N		7027	3770
FATALLA	JOSE	BUHAY		09602114973			SAN ANTONIO, ISLA VERDE, BATANGAS CITY	\N		7028	3779
EBORA	DANDY	G.		09209680729			BOLBOK, BATANGAS CITY	\N		7029	3779
PORCINO	TEODORICA	S.		09076854205			SAN AGAPITO, ISLA VERDE, BATANGAS CITY	\N		7030	3779
DE CASTRO	RUEL	B		09563977545			PALLOCAN BATANGAS CITY	\N		7031	3780
COMIA	ROSALINDA 	M		09285044985			ALANGILAN BATANGAS CITY	\N		7032	3780
LUSANTA	ESPERANZA	B		09995114678			BANABA WESTR BATANGAS CITY	\N		7033	3780
PORCINO	TEODORICA	S		09298270559			SAN AGAPITO, ISLA VERDE BATANGAS CITY	\N		7034	3773
EBORA	DANDY	G		09209680729			BOLBOK, BATANGAS CITY	\N		7035	3773
ARAGO	DERICK	B		09984051167			SANTA CLARA, BATANGAS CITY	\N		7036	3782
ECALNIR	ROSA ADELAIDA	C		09171906704			BATANGAS CITY	\N		7037	3782
BRIONES	PRINCESS LEI	C		09167675265			SANTA CLARA, BATANGAS CITY	\N		7038	3782
BUSTOS	NERMA 			0437236318			KUMINTANG ILAYA, BATANGAS CITY	\N		7042	3784
CULLERA	EPITACIA	C		09913261235			MERCEDES HOMES, SORO-SORO, BATANGAS CITY	\N		7043	3784
OCON	AUREA	P		09175057894			PALLOCAN EAST, BATANGAS CITY	\N		7044	3784
VALENCIA	HEIDILYN	J		09309940794			ALANGILAN, BATANGAS CITY	\N		7048	3786
GAMAB	ROSEBEL	A		09773646513			WAWA BATANGAS CITY	\N		7049	3786
DELA TORRE	ROMELYN	V		09067951760			LIBJO BATANGAS CITY	\N		7050	3786
CULLERA	EPITACIA	C		09089915567			MERCEDES HOMES, SORO-SORO, BATANGAS CITY	\N		7054	3788
OCON	AUREA	P		09175057894			PALLOCAN EAST, BATANGAS CITY	\N		7055	3788
NEBRIDA	ELIZA	B		09618306429			P. HERRERA STREET,  BATANGAS CITY	\N		7056	3788
ARAGO	DERICK	B		09553910395			STA. CLARA, BATANGAS CITY	\N		7057	3790
CABANDING	ROWENA	D		09175930974			P. ZAMORA ST. TAAL, BATANGAS CITY	\N		7058	3790
CULLERA	EPITACIA	C		09089915567			MERCEDES HOMES, SORO-SORO, BATANGAS CITY	\N		7059	3790
CULLERA	EPITACIA	C		09475854670			MERCEDES HOMES, SOROSORO, BATANGAS CITY	\N		7066	3792
NEBRIDA	ELIZA 	B		09618306429			CALICANTO, BATANGAS CITY	\N		7067	3792
EBORA	RIZA	C		09475854670			SAN AGUSTIN, ISLA VERDE, BATANGAS CITY	\N		7068	3792
CULLERA	EPITACIA	C		09913261235			MERCEDES HOMES, SORO-SORO, BATANGAS CITY	\N		7072	3794
OCON	AUREA	P		09175057894			PALLOCAN EAST, BATANGAS CITY	\N		7073	3794
NEBRIDA	ELIZA	B		09618306429			P. HERRERA ST., BATANGAS CITY	\N		7074	3794
CULLERA	EPITACIA	C		09913261235			MERCEDES HOMES, SORO SORO, BATANGAS CITY	\N		7081	3797
OCON	AUREA	P		09175057894			PALLOCAN EAST, BATANGAS CITY	\N		7082	3797
NEBRIDA	ELIZA	B		09618306429			P. HERRERA STREET, BATANGAS CITY	\N		7083	3797
DE CASTRO	RUEL	B		09563977545				\N		7039	3781
RUBIA	MARIA	C		09994861077				\N		7040	3781
DESTACAMENTO	EDEN 			09399198761				\N		7041	3781
DELEN	HEIDILYN	J.		09309940794			ALANGILAN, BATANGAS CITY	\N		7045	3783
DELEN	ELAINE	J.		09926529749			BAUAN, BATANGAS	\N		7046	3783
FESTIJO	IRISH	S.		09770076091			TINGA ITAAS BATANGAS CITY	\N		7047	3783
VALENCIA	HEIDILYN	J. 		09309940794			ALANGILAN, BATANGAS CITY	\N		7051	3787
FESTIJO	IRISH	S.		09770076091			TINGA ITAAS, BATANGAS CITY	\N		7052	3787
BALMES	DIOSA MARIE	M.		09559468978			SAN ISIDRO, BATANGAS CITY	\N		7053	3787
CULLERA	EPITACIA	C.		09913261235			MERCEDES HOMES SORO-SORO, BATANGAS CITY	\N		7060	3789
OCON	AUREA 	P.		09175057894			PALLOCAN EAST, BATANGAS CITY	\N		7061	3789
NEBRIDA	ELIZA	B.		09618306429			P. HERRERA ST. BATANGAS CITY	\N		7062	3789
DE CASTRO	RUEL 	B		09563977545			BANABA WEST ELEMENTARY SCHOOL	\N		7063	3785
SALAZAR	LANIE	M		09997383399			BANABA WEST INTEGRATED SCHOOL	\N		7064	3785
ALDOVER	SUSAN	R					STA. RITA BATANGAS CITY	\N		7065	3785
GRIMPLUMA	JEROME	G. 		043 723 0878			WAWA, BATANGAS CITY	\N		7069	3791
ANOYO	JOYCELYN	L.		09165684718			STA. CLARA BATANGAS CITY	\N		7070	3791
FESTIJO	IRISH	S.		09770076091			TINGA ITAAS, BATANGAS CITY	\N		7071	3791
DE CASTRO 	RUEL 	B		09563977545			PALLOCAN WEST BATANGAS CITY	\N		7075	3793
MACATANGAY	CHITO	H		7239175			BANABA WEST BATANGAS CITY	\N		7076	3793
DESTACAMENTO	EDEN 	M		7231608			PALLOCAN EAST BATANGAS CITY	\N		7077	3793
MACALALAD	`FLORA	A.		09189305412			BANABA SOUTH, BATANGAS CITY	\N		7078	3795
COMIA	MAILA	C.		09276974555			NATUNUAN NORTH SAN PASCUAL, BATANGAS CITY	\N		7079	3795
AGUBA	BABY LESSETE	G.		09171761446			BALAGTAS, BATANGAS CITY	\N		7080	3795
CULLERA	EPITACIA	C		09089915567			MERCEDES HOMES, SORO-SORO, BATANGAS CITY	\N		7084	3800
OCON	AUREA	P		09175057894			PALLOCAN EAST, BATANGAS CITY	\N		7085	3800
NEBRIDA	ELIZA	B		09618306429			P. HERRERA STREET, BATANGAS CITY	\N		7086	3800
DE CASTRO	RUEL 	B		09563977545			PALLOCAN BATANGAS CITY	\N		7087	3796
ALDOVER	SUSAN	R		7273554			STA. RITA BATANGAS CITY	\N		7088	3796
DOLOR 	ANTONIA 	P					SAN ANDRES BAUAN BATANGAS 	\N		7089	3796
CULLERA	EPITACIA	C		09913261235			MERCEDES HOMES, SORO-SORO, BATANGAS CITY	\N		7090	3799
OCON	AUREA	P 		09175057894			PALLOCAN EAST, BATANGAS CITY	\N		7091	3799
NEBRIDA	ELIZA	B		09618306429			P. HERRERA STREET, BATANGAS CITY	\N		7092	3799
CULLERA	EPITACIA CONCHA			09913261235			MERCEDES HOMES SORO-SORO BATANGAS CITY	\N		7093	3798
OCON	AUREA 	P.		09175057894			PALLOCAN EAST, BATANGAS CITY	\N		7094	3798
NEBRIDA	ELIZA	B.		09618306429			P. HERRERA ST. BATANGAS CITY	\N		7095	3798
DE CASTRO	RUEL 	B		09563977545			PALLOCAN WEST BATANGAS CITY	\N		7096	3801
GAREJO	MERLA 	P		7024838			KUMINTANG ILAYA BATANGAS CITY	\N		7097	3801
RECIO	MARILYN 	Q		09997159711			PALLOCAN WEST BATANGAS CITY	\N		7098	3801
DE CASTRO	RUEL 	B		09563977545			PALLOCAN WEST BATANGAS CITY 	\N		7099	3803
MACATANGAY 	CHITO 	H		9688568867			BANABA WEST BATANGAS CITY 	\N		7100	3803
LUZANTA	ESPERANZA	B		09183262472			BANABA WEST BATANGAS CITY 	\N		7101	3803
DE CASTRO	RUEL	B		09563977545			PALLOCAN, BATANGAS CITY	\N		7102	3805
MENDOZA	KATHLEEN	T		09293210478			BANABA WEST, BATANGAS CITY	\N		7103	3805
DELA PENA	JENNYLYN 	MAALA		09075163027			STA. RITA KARSADA, BATANGAS CITY	\N		7104	3805
SALIGAO	ETHEL	M		09258260240			BOLBOK, BATANGAS CITY	\N		7105	3804
PAGCALIWAGAN	REBECCA	R		09989976778			MERCEDES HOMES, SORO-SORO, BATANGAS CITY	\N		7106	3804
MACALINDONG	GEMMA	C		09263661969			STA. CLARA, BATANGAS CITY	\N		7107	3804
PEREZ	BELINDA	M		09757328865			D. SILANG ST. BATANGAS CITY	\N		7108	3806
FAA	JEANETH	F		09471737723			EL SITIO DUMANTAY BATANGAS CITY	\N		7109	3806
CELEMIN	ELMA	L		0439846169			GULOD LABAC BATANGAS CITY	\N		7110	3806
AGUADO 	GERARDO	B.	II	09175042263			CUTA, BATANGAS CITY	\N		7111	3802
PEREZ	ISABELLA ANNE	B. 		09081723628			PALLOCAN WEST, BATANGAS CITY	\N		7112	3802
MACATANGAY	MYRA	T.		09387196736			BANABA WEST, BATANGAS CITY	\N		7113	3802
CULLERA	EPITACIA	C		09913261235			MERCEDES HOMES, SORO-SORO, BATANGAS CITY	\N		7114	3808
OCON	AUREA	P		09175057894			PALLOCAN EAST, BATANGAS CITY	\N		7115	3808
ALVAREZ	GLADES	M		09605313203			SIRANG LUPA, BATANGAS CITY	\N		7116	3808
DE CASTRO	RULE	B		09563977545			PALLOCAN, BATANGAS CITYY	\N		7117	3807
PEREZ	MARIETA	N		09985553861			CUTA, BATANGAS CITY	\N		7118	3807
BAGON	ROSANNA	P		09175050018			SAMPAGA, BATANGAS CITY	\N		7119	3807
CULLERA	EPITACIA	C		09913261225			MERCEDES HOMES, SORO-SORO, BATANGAS CITY	\N		7120	3809
OCON	AUREA	P		09175057894			PALLOCAN EAST, BATANGAS CITY	\N		7121	3809
NEBRIDA	ELIZA	B		09618306429			CALICANTO, BATANGAS CITY	\N		7122	3809
CULLERA	EPITACIA	C.		09913261235			BATANGAS CITY	\N		7123	3812
OCON	AUREA	P.		09175756947			BATANGAS CITY	\N		7124	3812
NEBRIDA	ELIZA	B.		09175421815			BATANGAS CITY	\N		7125	3812
DE CASTRO	RUEL	B		09563977545			PALLOCAN BATANGAS CITY	\N		7126	3813
LUSANTA	ESPERANA	B		09995114678			BANABA WEST BATANGAS CITY	\N		7127	3813
MACATANGAY	CHITO	H		4027239175			BANABA WEST BATANGAS CITY	\N		7128	3813
CULLERA	EPITACIA	C		09913261235			MERCEDES HOMES, SORO-SORO, BATANGAS CITY	\N		7129	3810
OCON	AUREA	P		09175051894			PALLOCAN EAST, BATANGAS CITY	\N		7130	3810
NEBRIDA	ELIZA	B		09618306429			P. HERRERA STREET, BATANGAS CITY	\N		7131	3810
CULLERA	EPITACIA	C		09913261235			MERCEDES HOMES, SORO-SORO, BATANGAS CITY	\N		7132	3811
OCON	AUREA	P 		09175051894			PALLOCAN EAST, BATANGAS CITY	\N		7133	3811
NEBRIDA	ELIZA	B		09618306429			CALICANTO, BATANGAS CITY	\N		7134	3811
CULLERA	EPITACIA	C		09913261235			SORO-SORO, BATANGAS CITY	\N		7144	3817
OCON	AUREA	P		09175071078			PALLOCAN EAST, BATANGAS CITY	\N		7145	3817
CULLA	TERESITA	L		09175021815			BANABA, BATANGAS CITY	\N		7146	3817
CULLERA	EPITACIA	C		09913261235			MERCEDES, SORO-SORO, BATANGAS CITY	\N		7150	3818
OCON	AUREA	P		09175057894			PALLOCAN EAST, BATANGAS CITY	\N		7151	3818
NEBRIDA	ELIZA	B		09618306429			P. HERRERA STREET, BATANGAS CITY	\N		7152	3818
CULLERA	EPITACIA	C.		09176748063			BATANGAS CITY	\N		7135	3815
OCON	AUREA	P. 		09175756947			BATANGAS CITY	\N		7136	3815
CULLA	TERESITA	L.		09175421815			BATANGAS CITY	\N		7137	3815
BORJA	JERICO	T.		027518264			MAKATI CITY	\N		7141	3816
MEDINA	MARCO FERDINAND			09162770177			BATANGAS CITY	\N		7142	3816
ESGUERRA	RAQUEL 			09228694424			BALAYAN, BATANGAS 	\N		7143	3816
CULLERA	EPITACIA	C.		09913261235			MERCEDES HOMES SORO-SORO, BATANGAS CITY	\N		7153	3823
OCON	AUREA	P. 		09175057894			PALLOCAN EAST, BATANGAS CITY	\N		7154	3823
NEBRIDA	ELIZA 	B.		09618306429			P. HERRERA ST. BATANGAS CITY	\N		7155	3823
SUAREZ	RICA	A 		7231358			TABANGAO DAO, BATANGAS CITY	\N		7138	3814
MALIBIRAN	MARICEL 	A		09219648224			LAMAO LIBJO, BATANGAS CITY	\N		7139	3814
ANONUEVO	FRANCISCA 	D		09162622738			AMBULONG, BATANGAS CITY	\N		7140	3814
SUAREZ	RICA	A		09279802637			TABANGAO DAO, BATANGAS CITY	\N		7147	3822
CLAVERIA	GEMMA	C		09274083148			TANGISAN, BATANGAS CITY	\N		7148	3822
SUAREZ	JONALYN	B		09266943729			CONDE ITAAS, BATANGAS CITY	\N		7149	3822
CULLERA	EPITACIA	C		09913261225			MERCEDES HOMES, SORO-SORO, BATANGAS CITY	\N		7156	3819
OCON	AUREA	P		09175057894			PALLOCAN EAST, BATANGAS CITY	\N		7157	3819
NEBRIDA	ELIZA	B		09618306429			CALICANTO, BATANGAS CITY	\N		7158	3819
MANALO	ROSA JEALYN	M		09303863270			AGUILA, SAN JOSE, BATANGAS	\N		7159	3820
PADILLA	LANIE	C		09605342029			MALALIM, BATANGAS CITY	\N		7160	3820
ALEA	ELIZABETH	M		09090620196			SORO-SORO, BATANGAS CITY	\N		7161	3820
CULLERA	EPITACIA	C		09913261235			MERCEDES HOMES, SORO-SORO, BATANGAS CITY	\N		7162	3821
ASI	ROWENA	T		09171600146			SAMPAGA, BATANGAS CITY	\N		7163	3821
CRELENCIA	JAZMIN	M		09338162523			ARRIETA ROAD, BARANGAY 20, BATANGAS CITY	\N		7164	3821
SUAREZ	RICA 	A		9155369142			TABANGAO DAO, BATANGAS CITY	\N		7165	3824
BERBERABE	JEFFERSON	C		9483416234			TABANGAO AMBULONG, BATANGAS CITY 	\N		7166	3824
CLAVERIA	GEMMA 	C		9274083148			TANGISAN, LIBJO BATANGAS CITY	\N		7167	3824
CULLERA	EPITACIA	C.		09913261235			MERCEDES HOMES SORO-SORO, BATANGAS CITY	\N		7168	3825
OCON	AUREA	P.		09175057894			PALLOCAN EAST, BATANGAS CITY	\N		7169	3825
NEBRIDA	ELIZA	B.		09618306429			P. HERRERA ST. BATANGAS CITY	\N		7170	3825
MACALINDONG	GEMMA	C		09655021727			STA. CLARA, BATANGAS CITY	\N		7171	3826
MENDOZA	ANDREA GINA	I		09183779813			ALANGILAN, BATANGAS CITY	\N		7172	3826
ZARASPE	CECILIA	D		09173046309			SAMPAGA, BATANGAS CITY	\N		7173	3826
CULLERA	EPITACIA	C. 		09913261235			MERCEDES HOMES SORO-SORO, BATANGAS CITY	\N		7174	3829
OCON	AUREA	P.		09175057894			PALLOCAN EAST, BATANGAS CITY	\N		7175	3829
NEBRIDA	ELIZA	B.		09618306429			P. HERRERA ST. BATANGAS CITY	\N		7176	3829
CULLERA	EPITACIA	C		09913261235			MERCEDES HOMES, SORO-SORO, BATANGAS CITY	\N		7177	3827
OCON	AUREA	P		09175057884			PALLOCAN EAST, BATANGAS CITY	\N		7178	3827
NEBRIDA	ELIZA	B		09618306429			P. HERRERA STREET, BATANGAS CITY	\N		7179	3827
CULLERA	EPITACIA	C. 		09913261235			MERCEDES HOMES SORO-SORO BATANGS CITY	\N		7180	3831
OCON	AUREA	P.		09175057894			PALLOCAN EAST, BATANGAS CITY	\N		7181	3831
NEBRIDA	ELIZA 	B.		09618306429			P. HERRERA ST. BATANGAS CITY	\N		7182	3831
CULLERA	EPITACIA	C		09913261235			MERCEDES HOMES, SORO-SORO, BATANGAS CITY	\N		7183	3828
OCON	AUREA	P		09175051894			PALLOCAN EAST, BATANGAS CITY	\N		7184	3828
NEBRIDA	ELIZA	B		09618306429			P. HERRERA STREET, BATANGAS CITY	\N		7185	3828
ASI	LOLITA	T. 		09175057894			MAHABANG DAHILIG, BATANGAS CITY	\N		7186	3832
ANDAL	DEMETRIA	P.		09171483671			TINGA LABAC, BATANGAS CITY	\N		7187	3832
ASI	ROWENA	T.		09451533902			SAMPAGA, BATANGAS CITY	\N		7188	3832
CULLERA	EPITACIA	C		09913261235			MERCEDES HOMES, SORO-SORO, BATANGAS CITY	\N		7189	3830
OCON	AUREA	P		09175057894			PALLOCAN EAST, BATANGAS CITY	\N		7190	3830
NEBRIDA	ELIZA	B		09618306429			P. HERRERA STREET, BATANGAS CITY	\N		7191	3830
ARAGO	DERICK	B. 		09540342212			STA. CLARA BATANGAS CITY	\N		7192	3833
CULLERA	EPITACIA	C.		7265193			STA. CLARA BATANGAS CITY	\N		7193	3833
MARANAN	THELMA			09944091101			STA. CLARA BATANGS CITY	\N		7194	3833
BRUCAL	GERLIE JOY			09486721424			MABINI, BATANGAS	\N		7195	3837
SANCHEZ	JOEBELLE	B		09814419269			DAO, BATANGAS CITY	\N		7196	3837
MAGARARU	MARVIN	M		09661926550			KUMINTANG IBABA, BATANGAS CITY	\N		7197	3837
ABACAN	JEAN 	M.		09175172621			STA. CLARA, BATANGAS CITY	\N		7198	3834
CULLERA	EPITACIA	C.		09171308883			MERCEDES HOMES, SORO-SORO BATANGAS CITY	\N		7199	3834
FAMPULME	MARGELEN	F.		09605313229			KUMINTANG ILAYA, BATANGAS	\N		7200	3834
ALO	NILO	D		09196383526			SAN AGAPITO, BATANGAS CITY	\N		7201	3839
CUDIAMAT	ROSS NOWELL			09500164522			CUENCA BATANGAS	\N		7202	3839
MAGNO	NIKO			09456558784			DUMANTAY BATANGAS CITY	\N		7203	3839
SULIT	MARICEL	CONTRERAS		09453190454			PAHARANG EAST, BATANGAS CITY	\N		7204	3840
FRUELDA	VIRGINIA	DELGADO		09093202297			LIBJO, BATANGAS CITY	\N		7205	3840
CUETO	AZENETH	EVANGELISTA		09397597592			STA. RITA KARSADA, BATANGAS CITY	\N		7206	3840
FRONDA	IVY	E		09217787383			BATANGAS CITY	\N		7207	3838
ESCALERA	ANGELICA	D		09084104780			BATANGAS CITY	\N		7208	3838
FAMPULME	ARGEL	F		09675403488			BATANGAS CITY	\N		7209	3838
CULLERA	EPITACIA	C. 		09913261235			MERCEDES HOMES. SORO-SOROR BATANGAS CITY	\N		7210	3841
ASI	ROWENA	T. 		09171600146			SAMPAGA, BATANGAS CITY	\N		7211	3841
CRELENCIA	JAZMIN	M.		09338162523			ARRIETTA ROAD, BARANGAY 20, BATANGAS CITY	\N		7212	3841
FRONDA	IVY	E		09217787383			LIBJO, BATANGAS CITY	\N		7213	3836
CALALUAN	LEA	C		09197258564			SAN AGAPITO, ISLA VERDE	\N		7214	3836
EBORA	RIZA	C		09475854673			SAN AGAPITO, ISLA VERDE	\N		7215	3836
SUAREZ	RICA 	A. 		0437271358			TABANGAO DAO, BATANGAS CITY 	\N		7216	3842
CLAVERIA 	GEMMA 	C. 		0437271358			TABANGAO LIBJO, BATANGAS CITY 	\N		7217	3842
SOLIMAN 	CONCEPCION 	G. 		0437271358			EASTERN LIBJO, BATANGAS CITY	\N		7218	3842
FRONDA	IVY	E		09217787383			LIBJO, BATANGAS CITY	\N		7219	3835
AMUL	JENELYN	L		09605572155			SAN AGUSTIN, ISLA VERDE, BATANGAS CITY	\N		7220	3835
PEREZ	ELENITA	R		09605572162			SAN AGAPITO, ISLA VERDE, BATANGAS CITY	\N		7221	3835
CULLERA	EPITACIA	C.		09913261235			MERCEDES HOMES SORO-SORO, BATANGAS CITY	\N		7222	3843
ASI	ROWENA	T.		09171600146			SAMPAGA, BATANGAS CITY	\N		7223	3843
CRELENCIA	JAZMIN	M.		09338162523			ARRIETA ROAD BRGY 20, BATANGAS CITY	\N		7224	3843
FABILA	MELODY	M		09086231854			ISLA VERDE, BATANGAS CITY	\N		7225	3846
MONTALBO	NIEVES	A		09055132951			MERCEDES HOMES, SOROSORO ILAYA, BATANGAS CITY	\N		7226	3846
CLARO	LEOBERT	E		09277975449			ISLA VERDE, BATANGAS CITY	\N		7227	3846
CULLERA	EPITACIA	C. 		09089915567			MERCEDES HOMES, SOROSORO, BATANGAS CITY	\N		7228	3845
ASI	ROWENA 	T.		09171600146			SAMPAGA, BATANGAS CITY	\N		7229	3845
CRELENCIA	JAZMIN	M.		09338162523			ARRIETA ROAD, BARANGAY 20, BATANGAS CITY	\N		7230	3845
DELOS REYES	EMELYN	B		7023571			BALETE BATANGAS CITY	\N		7231	3850
CASTILLO	KATHERINE	D		7024272			BALETE BATANGAS CITY	\N		7232	3850
CASTILLO	JAYSON	V		7024272			BALETE BATANGAS CITY	\N		7233	3850
MONTALBO	NIEVES	A		09055132951			MERCEDES HOMES, SOROSORO ILAYA, BATANGAS CITY	\N		7234	3848
FABILA	MELODY	F		09086231854			ISLA VERDE, BATANGAS CITY	\N		7235	3848
LOPEZ	ANTHONY	M		09984390676			ISLA VERDE, BATANGAS CITY	\N		7236	3848
SUAREZ	RICA 	A.		9155369142			TABANGAO DAO, BATANGAS CITY 	\N		7237	3844
ABEJO 	LUISA 	S. 		09497449222			LAMAO, LIBJO BATANGAS CITY 	\N		7238	3844
CLAVERIA 	GEMMA 	C. 		9274083148			TANGISAN, LIBJO BATANGAS CITY 	\N		7239	3844
BALITAAN	ANACORETA			09451535899			LIBJO BATANGAS CITY	\N		7240	3851
MALIBIRAN	EDNA	B		09186025725			CUTA BATANGAS CITY	\N		7241	3851
 DE GUZMAN	RONALYN	M		09154452236			STA. RITA BATANGAS CITY	\N		7242	3851
MACATANGAY	LUISA	P		09217469444			BOLBOK, BATANGAS CITY	\N		7243	3847
CANICON	MYRA			09155918456			SOROSORO ILAYA, BATANGAS CITY	\N		7244	3847
CULTURA	BOBET			09296001467			SOROSORO ILAYA, BATANGAS CITY	\N		7245	3847
CULLERA	EPITACIA	C. 		09913261235			MERCEDES HOMES SORO SORO, BATANGAS CITY	\N		7246	3852
OCON	AUREA	P.		09175057894			PALLOCAN WEST, BATANGAS CITY	\N		7247	3852
NEBRIDA	ELIZA	B. 		09618306429			P. HERRERA ST. BATANGAS CITY	\N		7248	3852
SUAREZ	RICA	A		7271358			TABANGAO DAO, BATANGAS CITY	\N		7249	3854
PANGANIBAN	ROSALINA	H		7271358			SAN ISIDRO BATANGAS CITY	\N		7250	3854
CLAVERIA	GEMMA	C		7271358			LIBJO TANGISAN, BATANGAS CITY	\N		7251	3854
MONTALBO	NIEVES			09055132951			MERCEDES HOMES, SORO-SORO ILAYA, BATANGAS CITY	\N		7252	3849
FABILA	MELODY	M		09086231854			ISLA VERDE, BATANGAS CITY	\N		7253	3849
LOPEZ	ANTHONY	M		09984390676			ISLA VERDE, BATANGAS CITY	\N		7254	3849
EBORA	ROMMEL	R		09308228548			SAN AGAPITO, ISLA VERDE, BATANGAS CITY	\N		7255	3856
EBORA	RIZA	C		09745854670			SAN AGAPITO, ISLA VERDE, BATANGAS CITY	\N		7256	3856
FACTOR	LORNA	D		09369173831			SAN AGAPITO, ISLA VERDE, BATANGAS CITY	\N		7257	3856
CULLERA	EPITACIA	C.		09089915567			MERCEDES HOMES, SOROSORO, BATANGAS CITY	\N		7258	3858
ASI	ROWENA 	T.		09171600146			SAMPAGA, BATANGAS CITY	\N		7259	3858
CRELENCIA	JAZMIN	M.		09338162523			ARRIETA ROAD, BARANGAY 20, BATANGAS CITY	\N		7260	3858
FABABIER	VICTORIA 	G		09171887152			SAN MIGUEL, BATANGAS CITY	\N		7261	3857
EBORA	RIZA	C		09778038773			SAN AGAPITO, ISLA VERDE, BATANGAS CITY	\N		7262	3857
MACARAIG	REGINE	P		09399077686			STO. NINO, GALAMAY AMO, SAN JOSE, BATANGAS	\N		7263	3857
LUCES	JOLLY	T		09641907678			SAN AGAPITO, ISLA VERDE, BATANGAS CITY	\N		7264	3859
EBORA	RIZA	C		09475854673			SAN AGAPITO, ISLA VERDE, BATANGAS CITY	\N		7265	3859
BUSTOS	NERMA	C		7236318			KUMINTANG ILAYA, BATANGAS CITY	\N		7266	3859
FUENTES	MIRIAM	R.		09971827343			SAN ANDRES ISLA VERDE BATANGAS CITY	\N		7267	3860
ALO	NILO	D.		09196383526			BILOGO, BATANGAS CITY	\N		7268	3860
PEREZ	ELENITA	R.		09065572162			SAN AGAPITO, ISLA VERDE BATANGAS CITY	\N		7269	3860
DE CASTRO	FRANCISCO			09285429753			SAN ANTONIO, ISLA VERDE, BATANGAS CITY	\N		7270	3861
MAGADIA	CHARITY	S		09667522908			GULOD ITAAAS, BATANGAS CITY	\N		7271	3861
FATALIA	BUHAY JOSE 			09602114973			BATANGAS CITY	\N		7272	3861
BAGON	CARINA	M		09778416380			PAGKILATAN BATANGAS CITY	\N		7273	3855
PANGANIBAN	ROSALINA	H		09175028103			SAN ISIDRO, BATANGAS CITY	\N		7274	3855
SUAREZ	RICA	A		0437271358			TABANGAO, BATANGAS CITY	\N		7275	3855
PANGANIBAN	ROSALINA 	H		09175028703			SAN ISIDRO, BATANGAS CITY	\N		7276	3867
SUAREZ	RICA	A		0437271358			TABANGAO DAO BATANGAS CITY	\N		7277	3867
CLAVERIA	GEMMA 	C		09178162851			TANGISAN BATANGAS CITY	\N		7278	3867
ALO	NILO	D.		09196383526			TULO, BATANGAS CITY	\N		7279	3866
COMIA	SACORO	R.		09172753556			GUINTO, TALUMPOK BATANGAS CITY	\N		7280	3866
EBORA	ROMMEL	R.		09302924754			SAN AGAPITO, ISLA VERDE	\N		7281	3866
MEDINA	PRECIOSA	E		09564781003			SAN ANTONIO, ISLA VERDE, BATANGAS CITY	\N		7282	3864
FATALLA	JOSE BUHAY			09602114973			SAN ANTONIO, ISLA VERDE, BATANGAS CITY	\N		7283	3864
DE CASTRO	FRANCISCO			09108452404			SAN ANTONIO, ISLA VERDE, BATANGAS CITY	\N		7284	3864
SUAREZ	RICA	A 		0437271358			TABANGAO DAO BATANGAS CITY	\N		7285	3868
ALMAREZ	TOMMY	A		09276968746			CONDE ITAAS BATANGAS CITY	\N		7286	3868
MAYATE	MILAGROS	D		09972248393			TANGISAN LIBJO BATANGAS CITY	\N		7287	3868
ALO	NILO	D.		09196383526			SAN AGAPITO ISLA VERDE, BATANGAS CITY	\N		7288	3869
MAGPANTAY	REV JUANITO	M.		09171320641			SAN ANDRES ISLA VERDE, BATANGAS CITY	\N		7289	3869
FUENTES	MIRIAM	R.		09971827343			SAN ANDRES ISLA VERDE, BATANGAS CITY	\N		7290	3869
MEDINA	PRECIOSA	E		09461270526			SAN ANTONIO, ISLA VERDE, BATANGAS CITY	\N		7291	3862
FATALLA	BUHAY JOSE			09635263097			SAN ANTONIO, ISLA VERDE, BATANGAS CITY	\N		7292	3862
LAUDE	MIRIAM	A		09615493370			SAN ANTONIO, ISLA VERDE, BATANGAS CITY	\N		7293	3862
ALO	NILO	D.		09196383526			SAN AGAPITO ISLA VERDE, BATANGAS CITY	\N		7294	3871
DIMAYUGA	CHRISTINE JOY	D.		09677055517			TINGGA ITAAS, BATANGAS CITY	\N		7295	3871
CULIAT	MARIE SANDRE	D.		09481115912			PUROK 1, CULIAT STREET SOROSORO IBABA, BATANGAS CITY	\N		7296	3871
BAJA	RANDY	M		09338522620			SAMPAGUITA HOMES, GULOD ITAAS, BATANGAS CITY	\N		7297	3863
YLAGAN	PCMS REXY	S		09776507291			BANSUD, ORIENTAL MINDORO	\N		7298	3863
DELEN	JENELYN	R		09567665093			SOROSORO ILAYA, BATANGAS CITY	\N		7299	3863
DELICA	MELECIO			09678691671			TALUMPOK SILANGAN BATANGAS CITY	\N		7300	3870
SUAREZ	RICA	A		09279802637			TABANGAO DAO BATANGAS CITY	\N		7301	3870
FADERAGAO	KRISTINE JOY 			09776189366			BARANGAY 15 BATANGAS CITY	\N		7302	3870
BALITAAN	ANACORETA	C		09177242205			LIBJO CENTRAL, BATANGAS CITY	\N		7303	3865
ISLA	DELIA	C		09171623814			TAAL, BATANGAS	\N		7304	3865
CALIBOSO	TARCELA	M		09167438836			BATANGAS CITY SOUTH ELEMENTARY SCHOOL	\N		7305	3865
ALO	NILO 	D.		09196383516			SAN AGAPITO, ISLA VERDE, BATANGS CITY	\N		7306	3872
LEYNES	KIMBERLY MAE	M.		09171627429			NAMUNGA, ROSARIO BATANGAS	\N		7307	3872
PEREZ	MARILYN	P.		09927063336			LUCBAN VALLEY, BALETE, TANAUAN CITY	\N		7308	3872
SUAREZ	PICA	A		7221358			TABANGAO DAO BATANGAS CITY	\N		7309	3873
CLAVERIA	GEMMA	C		7221358			TANGISAN LIBJO BATANGAS CITY	\N		7310	3873
DIMAANO	PABLITO			4029351			ALANGILAN BATANGAS CITY	\N		7311	3873
MANALO	AILEEN			09054788623			SAN PASCUAL, BATANGAS	\N		7312	3874
DIMAANO	MA. SUNSHINE 			09175977268			SORO-SORO, BATANGAS CITY	\N		7313	3874
DELA CUEVA	ROWENA			09173213925			SAN PABLO, LAGUNA	\N		7314	3874
BRITON	DIOMEDES	B		09473680961			SAN ANDRES, ISLA VERDE, BATANGAS CITY	\N		7315	3875
MAGPANTAY	JUANITO	M		09309657720			SAN ANDRES, ISLA VERDE, BATANGAS CITY	\N		7316	3875
EBORA	RIZA	C		09178627327			SAN AGAPITO, ISLA VERDE, BATANGAS CITY	\N		7317	3875
FUENTES	MIRIAM						SAN ANDRES, ISLA VERDE, BATANGAS CITY	\N		7318	3878
BRITON	ARNOLD						SAN ANDRES, ISLA VERDE, BATANGAS CITY	\N		7319	3878
ROXAS	JESSIE			09507534977			SAN ANDRES, ISLA VERDE, BATANGAS CITY	\N		7320	3878
MONTALBO	NIEVES 	A.		09055132951			MERCEDES HOMES SORO SORO ILAYA	\N		7321	3876
FABILA	MELODY	M.		09086231854			ISLA VERDE, BATANGAS CITY	\N		7322	3876
CLARO	LEOBERT	E.		09277975449			ISLA VERDE, BATANGAS CITY	\N		7323	3876
BAGON	CARINA	M		09778416380			PAGKILATAN BATANGAS CITY	\N		7324	3877
MARASIGAN	MARYDEL	B		09178770027			HALIGUE SILANGAN BATANGAS CITY	\N		7325	3877
SUAREZ	RICA	A		09279802637			TABANGAO DAO, BATANGAS CITY	\N		7326	3877
FUENTES	MIRIAM	R					SAN ANDRES, ISLA VERDE, BATANGAS CITY	\N		7327	3879
BRITON	DIOMEDES	B		09473680961			SAN ANDRES, ISLA VERDE, BATANGAS CITY	\N		7328	3879
DELA ROCA	AIZA	E		09956183271			SAN ANDRES, ISLA VERDE, BATANGAS CITY	\N		7329	3879
SUAREZ	RICA	A		09279802637			TABANGAO DAO, BATANGAS CITY	\N		7330	3882
BAGON	ROSSANA	P		09258690079			DUMANTAY BATANGAS CITY	\N		7331	3882
MANALO	BERNADETTE	A		09338568100			BALIMBING, SAN PASCUAL BATANGAS	\N		7332	3882
MONTALBO	NIEVES	A.		09055132951			MERCEDES HOMES SORO SORO ILAYA, BATANGAS CITY	\N		7333	3881
FABILA	MELODY	M.		09086231854			ISLA VERDE, BATANGAS CITY	\N		7334	3881
CLARO	LEOBERT 	E.		09277975449			ISLA VERDE, BATANGAS CITY	\N		7335	3881
SUAREZ	RICA	A		09279802637			TABANGAO DAO, BATANGAS CITY	\N		7336	3883
PAREDES	CYNTHIA	D		09162398134			OLD SAN VICENTE LIBJO, BATANGAS CITY	\N		7337	3883
CAPIO	MA. CRISTINA	G		09219910085			PINAMUCAN, BATANGAS CITY	\N		7338	3883
MONTALBO	NIEVES	A.		0955132951			MERCEDES HOMES, SORO SORO ITAAS, BATANGAS CITY	\N		7339	3916
MAGADIA	CHARITY	S.		09667522908			GULOD LABAC, BATANGAS CITY	\N		7340	3916
EBORA	RIZA	C.		09475854673			SAN AGAPITO, BATANGAS CITY	\N		7341	3916
MONTALBO	NIEVES			09055132951			MERCEDES HOMES SORO-SORO ILAYA, BATANGAS CITY	\N		7342	3918
FABILA	MELODY	M.		09086231854			ISLA VERDE, BATANGAS CITY	\N		7343	3918
LOPEZ	ANTHONY	M. 		09984390676			ISLA VERDE, BATANGAS CITY	\N		7344	3918
SUAREZ	RICA	A		0437231358			TABANGAO DAO, BATANGAS CITY	\N		7345	3917
CLAVERIA	GEMMA 	C		0437231358			TANGISAN, LIBJO BATANGAS CITY	\N		7346	3917
MARASIGAN	MARINA	F		09165824082			EASTERN LIBJO, BATANGAS CITY	\N		7347	3917
ASI	LORNA			09171570651			STO. DOMINGO BATANGAS CITY	\N		7348	3919
MAGADIA	CHARITY	S. 		09667522908			GULOD ITAAS BATANGAS CITY	\N		7349	3919
FATALLA	BUHAY JOSE 			09602114973			SAN ANTONIO, ISLA VERDE	\N		7350	3919
EBORA	ROMMEL			09302924754			SAN AGAPITO, ISLA VERDE, BATANGAS CITY	\N		7351	3921
MEDINA	PRECIOSA	E.		09564781003			SAN AGAPITO, ISLA VERDE BATANGAS CITY	\N		7352	3921
EBORA	RIZA	C.		09178627327			SAN AGAPITO, ISLA VERDE, BATANGAS CITY	\N		7353	3921
MEDINA	PRECIOSA	E.		09564781003			SAN ANTONIO, ISLA VERDE BATANGAS CITY	\N		7354	3922
DE CASTRO	FRANCISCO	A.		09108452404			SAN ANTONIO, ISLA VERDE BATANGAS CITY	\N		7355	3922
EBORA	RIZA	C.		09178627327			SAN AGAPITO, ISLA VERDE BATANGAS CITY	\N		7356	3922
FUENTES	MIRIAM	R		09971827343			SAN ANDRES, ISLA VERDE, BATANGAS CITY	\N		7357	3880
BRITON	DIOMEDES	B		09473680961			SAN ANDRES, ISLA VERDE, BATANGAS CITY	\N		7358	3880
MAGPANTAY	JUANITO			09309657720			SAN ANDRES, ISLA VERDE, BATANGAS CITY	\N		7359	3880
FRONDA	IVY	E.		09217787383			SAN AGAPITO, ISLA VERDE	\N		7360	3923
FACTOR	LORNA	D.		0936917381			SAN AGAPITO, ISLA VERDE	\N		7361	3923
MENDOZA	JANICE	D.		09605572161			SAN AGAPITO, ISLA VERDE	\N		7362	3923
ASI	LORNA	M		09171570651			STO. DOMINGOO, BATANGAS CITY	\N		7363	3925
MAGADIA	CHARITY	S		09178634734			GULOD ITAAS, BATANGAS CITY	\N		7364	3925
MONTALBO	NIEVES	A		09055132951			SORO-SORO, BATANGAS CITY	\N		7365	3925
BAJA	ROSALIE	G		09950829219			LIPONPON ISLA VERDE, BATANGAS CITY	\N		7366	3960
EBORA	RONALD	C		09483416234			LIPONPON ISLA VERDE, BATANGAS CITY	\N		7367	3960
CLAVERIA	GEMMA 	C		09274083148			TANGISAN, LIBO, BATANGAS CITY	\N		7368	3960
MONTALBO	NIEVES	A.		0955132951			MERCEDES HOMES, SORO SORO ITAAS, BATANGAS CITY	\N		7369	3924
MAGADIA	CHARITY	S.		09667522908			GULOD LABAC, BATANGAS CITY	\N		7370	3924
FABILA	MELODY	S.		09086231854			SAN AGUSTIN KANLURAN ISLA VERDE	\N		7371	3924
EBORA	RIZA	C		09475854673			SAN AGAPITO, ISLA VERDE, BATANGAS CITY	\N		7372	3958
PANOPIO	CLEOFE			095117103249			SAN AGAPITO, ISLA VERDE, BATANGAS CITY	\N		7373	3958
VILLAGANAS	RHEA			09171089746			PALLOCAN WEST, BATANGAS CITY	\N		7374	3958
QUIDADO	NORMA	C		09161419231			LIPONPPON ISLA VERDE BATANGAS CITY	\N		7375	3959
EBORA	RONALD	C		09297245268			LIPONPON ISLA VERDE BATANGAS CITY	\N		7376	3959
BAJA	ROSALIE	G		09950829219			LIPONPON ISLA VERDE BATANGAS CITY	\N		7377	3959
EBORA	RIZA	C. 		09178627327			SAN AGAPITO, ISLA VERDE, BATANGAS CITY	\N		7378	3961
CARINGAL	MA. TERESA	E.		09151122506			SAN NICOLAS, BATANGAS 	\N		7379	3961
LUCES	JOLLY	T.		09641907678			SAN AGUSTIN KANLURAN, ISLA VERDE, BATANGAS CITY	\N		7380	3961
EBORA	RIZA	C.		09475854673			SAN AGAPITO, ISLA VERDE, BATANGAS CITY	\N		7381	3962
ALMAZAN	CORAZON	E.		09203327289			SAN AGAPITO, ISLA VERDE, BATANGAS CITY	\N		7382	3962
EBORA	ROMMEL	R.		09519657466			SAN AGAPITO, ISLA VERDE, BATANGAS CITY	\N		7383	3962
DELEN	ROSALITO	A		09178558878			PUROK 4 SIRANG LUPA BATANGAS CITY	\N		7384	3963
MAGADIA	CHARITHY	S		09667522908			DIVISION OF BATANGAS CITY	\N		7385	3963
PANGANIBAN	CHRISTOPHER	M		09277106703			STA. RITA, BATANGAS CITY	\N		7386	3963
\.


--
-- TOC entry 4557 (class 0 OID 0)
-- Dependencies: 197
-- Name: CharacterReferences_CharacterReferenceId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"CharacterReferences_CharacterReferenceId_seq"', 7386, true);


--
-- TOC entry 3820 (class 0 OID 16556)
-- Dependencies: 198
-- Data for Name: Children; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Children" ("ChildrenId", "FirstName", "MiddleName", "LastName", "FullName", "Gender", "BirthDate", "BirthPlace", "IsDependent", "EmployeeId") FROM stdin;
\.


--
-- TOC entry 4558 (class 0 OID 0)
-- Dependencies: 199
-- Name: Children_ChildrenId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Children_ChildrenId_seq"', 112, true);


--
-- TOC entry 3822 (class 0 OID 16564)
-- Dependencies: 200
-- Data for Name: CommunityServices; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "CommunityServices" ("CommunityServiceId", "Status", "BasicInformationId", "OrganizationName", "OrganizationAddress", "DateFrom", "DateTo", "NumberOfHours") FROM stdin;
956	DIRECTOR FOR LUZON	3606	LIONS CLUBS INTERNATIONAL DISTRICT 301 A2 PHILIPPINES 	LIONS CLUBS INTERNATIONAL DISTRICT 301 A2 PHILIPPINES	2023-07-01 00:00:00	2024-06-30 00:00:00	0
957	COMMITTEE CHAIR- SIGHTS FOR KIDS	3606	BATANGAS CROWN LIONS CLUB, PMJP	BATANGAS CROWN LIONS CLUB, PMJP	2023-07-01 00:00:00	2024-06-30 00:00:00	0
958	COMMITTEE CHAIR- READING ACTION PROGRAM 	3606	LIONS CLUBS INTERNATIONAL DISTRICT 301 A2 PHILIPPINES 	LIONS CLUBS INTERNATIONAL DISTRICT 301 A2 PHILIPPINES 	2023-07-01 00:00:00	2024-06-30 00:00:00	0
959	COUNCIL BOARD ( TREASURER )	3606	GIRL SCOUTS OF THE PHILIPPINES BATANGAS CITY COUNCIL  	GIRL SCOUTS OF THE PHILIPPINES BATANGAS CITY COUNCIL	2021-07-01 00:00:00	2024-06-30 00:00:00	0
960	ACCOUNTING ASSOCIATE (VOLUNTEER)	3613	CONNECT CHURCH DISCIPLINING SERVANTLEADERS,INC.-BATANGAS CITY	BATANGAS CITY	2016-09-01 00:00:00	2022-12-31 00:00:00	0
961	BOARD OF TRUSTEES (AUDITOR)	3613	COMMON GROUND PHILS.INC	BATANGAS CITY	2012-09-01 00:00:00	2014-06-30 00:00:00	0
962	PRESIDENT 	3644	UNITED  HEARTS CLUB 	UNITED  HEARTS CLUB 	2005-04-01 00:00:00	2006-03-31 00:00:00	0
963	ADVISER 	3644	SILAHIS NG PAGKAKAISA 	SILAHIS NG PAGKAKAISA 	2010-04-01 00:00:00	2011-03-31 00:00:00	0
964	PRESIDENT 	3644	BATANGAS VARSITARIAN 	BATANGAS VARSITARIAN 	2005-01-01 00:00:00	2005-12-31 00:00:00	0
965	PRE CANA	3667	FAMILY AND LIFE MINISTRY ( MOST HOLY TRINITY PARISH)	BATANGAS CITY 	2019-05-01 00:00:00	2024-07-08 00:00:00	2
966	BIBLE SHARING/ COMMUNITY OUTREACH 	3667	COUPLES FOR CHRIST 	COUPLES FOR CHRIST 	2003-06-01 00:00:00	2024-07-08 00:00:00	1
967	MEMBER	3675	BATANGAS CITY PUBLIC SCHOOL TEACHERS AND EMPLOYEES ASSOCIATION 	BATANGAS CITY PUBLIC SCHOOL TEACHERS AND EMPLOYEES ASSOCIATION	1989-06-13 00:00:00	2024-07-09 00:00:00	0
968	BOARD OF DIRECTOR 	3675	WEST DISTRICT TEACHERS & EMPLOYEES  COOPERATIVE 	WEST DISTRICT TEACHERS & EMPLOYEES  COOPERATIVE 	2000-01-09 00:00:00	2024-07-09 00:00:00	0
969	MEMBER 	3675	REGIONAL ASSOCIATION OF PUBLIC SCHOOLS DISTRICT SUPERVISOR 	REGIONAL ASSOCIATION OF PUBLIC SCHOOLS DISTRICT SUPERVISOR 	2013-09-20 00:00:00	2024-07-09 00:00:00	0
970	RESOURCE SPEAKER 	3680	BATANGAS STATE UNIVERSITY- COLLEGE OF TEACHER EDUCATION GRADUATE SCHOOL ( EXTENSION SERVICE) 	BATANGAS STATE UNIVERSITY 	2021-05-28 00:00:00	2021-05-28 00:00:00	8
971	MEMBER	3683	PHILIPPINE ELEMENTARY SCHOOLS PRINCIPALS ASSOCIATION	PHILIPPINE ELEMENTARY SCHOOLS PRINCIPALS ASSOCIATION	1995-06-28 00:00:00	2024-07-10 00:00:00	0
972	BOD	3683	BATANGAS CITY EAST DISTRICT EMPLOYEES COOPERATIVE	BATANGAS CITY EAST DISTRICT EMPLOYEES COOPERATIVE	1905-12-07 00:00:00	2024-07-10 00:00:00	0
973	MEMBER-ADVOCATE 	3695	CARRER SERVICE WRITTEN EXAMINATION 	CARRER SERVICE WRITTEN EXAMINATION	2022-04-04 00:00:00	2022-04-04 00:00:00	0
974	MEMBER- ADVOCATE 	3695	THE EDUCATOR'S LINK: CONNECTING TEACHERS AROUND THE GLOBE 	THE EDUCATOR'S LINK: CONNECTING TEACHERS AROUND THE GLOBE	2021-06-25 00:00:00	2021-06-25 00:00:00	0
\.


--
-- TOC entry 4559 (class 0 OID 0)
-- Dependencies: 201
-- Name: CommunityServices_CommunityServiceId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"CommunityServices_CommunityServiceId_seq"', 974, true);


--
-- TOC entry 3824 (class 0 OID 16572)
-- Dependencies: 202
-- Data for Name: Companies; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Companies" ("CompanyId", "CompanyName", "ContactPerson", "ContactNumber", "CompanyAddress") FROM stdin;
\.


--
-- TOC entry 4560 (class 0 OID 0)
-- Dependencies: 203
-- Name: Companies_CompanyId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Companies_CompanyId_seq"', 1, true);


--
-- TOC entry 3826 (class 0 OID 16580)
-- Dependencies: 204
-- Data for Name: ContributionMemberships; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "ContributionMemberships" ("ContributionMembershipId", "EmployeeId", "DateStarted", "DateEnded", "ContributionTypeId") FROM stdin;
\.


--
-- TOC entry 4561 (class 0 OID 0)
-- Dependencies: 205
-- Name: ContributionMemberships_ContributionMembershipId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"ContributionMemberships_ContributionMembershipId_seq"', 1, false);


--
-- TOC entry 3828 (class 0 OID 16585)
-- Dependencies: 206
-- Data for Name: ContributionTypes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "ContributionTypes" ("ContributionTypeId", "ContributionTypeName", "ContributionImplementation", "SalaryPercentage", "FixedAmount", "MaxAmount") FROM stdin;
\.


--
-- TOC entry 4562 (class 0 OID 0)
-- Dependencies: 207
-- Name: ContributionTypes_ContributionTypeId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"ContributionTypes_ContributionTypeId_seq"', 1, false);


--
-- TOC entry 3830 (class 0 OID 16593)
-- Dependencies: 208
-- Data for Name: Courses; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Courses" ("CourseId", "CourseName", "Level") FROM stdin;
1246	Bachelor of Science in Accounting Management	College
1247	Bachelor of Science in Commerce	College
1248	Bachelor of Science in Industrial Engineering	College
1249	Bachelor of Industrial Technology Major in Drafting	College
1250	BACHELOR OF SCIENCE IN ACCOUNTANCY	College
1251	ASSOCIATE IN RADIOLOGIC TECHNOLOGY	Vocational
1252	BACHELOR OF SCIENCE IN COMMERCE	College
1253	MASTER IN PUBLIC ADMINISTRATION	Master's
1254	MASTER IN  BUSINESS ADMINISTRATION	College
1255	MASTER IN BUSINESS ADMINISTRATION	College
1256	MASTERS IN BUSINESS ADMINISTRATION	Master's
1257	BACHELOR OF SCIENCE IN ACCOUNTING MANAGEMENT	College
1258	BACHELOR OF SCIENCE IN COMPUTER SCIENCES	College
1259	DOCTOR OF PHILOSOPHY IN MANAGEMENT 	Doctorate
1260	MASTER IN MANAGEMENT IN PUBLIC ADMINISTRATION 	Master's
1261	PIPEFITTING NATIONAL CERTIFICATE II	Vocational
1262	BACHELOR OF SCIENCE IN COMMERCE MAJOR IN ACCOUNTING	College
1263	NC III BOOKKEEPING	Vocational
1264	COBOL	Vocational
1265	BACHELOR OF SCIENCE IN MANAGEMENT	College
1266	TECHNICAL EDUCATION- TECHNICAL ELECTRICITY	College
1267	BS IN COMPUTER ENGINEERING	College
1268	BACHELOR OF SCIENCE IN INFORMATION TECHNOLOGY 	College
1269	PIPEFITTING	Vocational
1270	BACHELOR OF SECONDARY EDUCATION	College
1271	BACHELOR OF SCIENCE IN PSYCHOLOGY	College
1272	MASTER OF ARTS IN PSYCHOLOGY	Master's
1273	ELECTRONICS SERVICEMAN TV AND RADIO RECEIVER	Vocational
1274	PROFESSIONAL TEACHER 	College
1275	BACHELOR OF SCIENCE IN BUSINESS 	College
1276	PROFESSIONAL TEACHER	Master's
1277	ASSOCIATE IN COMPUTER TECHNOLOGY	College
1278	TERTIARY/DIPLOMA IN INFORMATION AND COMMUNICATIONS TECHNOLOGY	College
1279	CAREGIVER COURSE	Vocational
1280	BACHELOR OF SCIENCE IN BUSINESS ADMINISTRATION	College
1281	PROFESSIONAL EDUCATION	Master's
1282	BACHELOR OF INDUSTRIAL TECHNOLOGY 	College
1283	RELIGIOUS EDUCATION	Vocational
1284	MASTER IN EDUCATION	Master's
1285	BSC -MANAGEMENT OF FINANCIAL INSTITUTION	College
1286	BACHELOR OF SCIENCE IN APPLIED ECONOMICS	College
1287	BS COMMERCE 	College
1288	JURIS DOCTOR	College
1289	BACHELOR OF SCIENCE IN FINANCIAL MANAGEMENT	College
1290	BACHELOR IN ELEMENTARY EDUCATION	College
1291	MASTER OF ARTS IN EDUCATION	Master's
1292	BACHELOR OF ARTS IN ENGLISH	College
1293	DOCTOR OF PHILOSOPHY IN INDUSTRIAL	Doctorate
1294	BACHELOR OF SCIENCE IN EDUCATION	College
1295	PH.D IN ENVIRONMENTAL EDUCATION	Master's
1296	MASTER OF ARTS IN ENVIRONMENTAL EDUCATION 	Master's
1297	PH. IN ENVIRONMENTAL EDUCATION	Doctorate
1298	BACHELOR OF ELEMENTARY EDUCATION	College
1299	DOCTOR IN PHILOSOPHY	Doctorate
1300	UNDERGRADUATE	College
1301	MAED- EDUC'I ADMINISTRATION	Master's
1302	DOCTOR OF EDUCATION- EDUCATIONAL MANAGEMENT	Doctorate
1303	BACHELOR OF SCIENCE IN ELEMENTARY EDUCATION (BEED)	College
1304	MASTER OF ARTS IN EDUCATIONAL MANAGEMENT 	Master's
1305	BACHELOR OF SCIENCE IN FOREIGN SERVICE	College
1306	DOCTOR OF EDUCATION	College
1307	BACHELOR OF ELEMENTARY  EDUCATION SPECIALIZATION IN CHILDHOOD EDUCATION  	College
1308	DOCTOR OF PHILOSOPHY IN EDUCATION 	College
1309	BACHELOR OF INDUSTRIAL EDUCATION	College
1310	DOCTOR OF PHILOSOPHY IN EDUCATIOP	Doctorate
1311	TECHNICAL DRAFTING 	Vocational
1312	BSIE DRAFTING	College
1313	MASTER IN PHYSICAL EDUCATION AND SPORTS	Master's
1314	BACHELOR OF SCIENCE IN ELEMENTARY EDUCATION 	College
1315	TYPING/COMPUTER	Vocational
1316	MASTER OF SCIENCE IN LIBRARY SCIENCE	Master's
1317	BACHELOR OF SCIENCE IN COMPUTER SCIENCE	College
1318	BACHELOR OF SCIENCE IN SECONDARY EDUCATION	College
1319	BACHELOR OF SCIENCE IN SECONDARY EDUCATION (18 UNITS EARNED)	College
1320	TECH. VOC	Vocational
1321	BS INDUSTRIAL EDUCATION 	College
1322	MAEd - Filipino	Master's
1323	MAEd	College
1324	PhD	Doctorate
1325	DIPLOMA IN TEACHING READING	Doctorate
1326	PHILOSOPHY  IN READING EDUCATION	Doctorate
1327	CERTIFICATE IN INDUSTRIAL TECHNOLOGY	Vocational
1328	MASTER IN EDUCATION 	Master's
1329	BACHELOR OF SCIENCE IN INDUSTRIAL EDUCATION	College
1330	MA-EM & EDD-EM	Master's
1331	COMPUTER HARDWARE SERVICING (CHS)	Vocational
1332	BACHELOR OF SCIEENCE IN ELECTRONICS AND COMMUNICATIONS ENGINEERING 	College
1333	MASTER OF ARTS IN EDUCATION 	Master's
1334	MASTER OF ARTS IN EDUCATION- MATH	Vocational
1335	MASTERS OF ARTS IN EDUCATION- MATH 	Master's
1336	DOCTOR OF PHILOSOPHY IN EDUCATION- MATH 	Doctorate
1337	MASTER OF ARTS IN TEACHING VOCATIONAL EDUCATION	Master's
1338	DOCTOR OF  EDUCATION	Doctorate
1339	DOCTOR OF PHILOSOPHY IN CURRICULUM & INSTRUCTION	Doctorate
1340	bACHELOR OF SCIENCE IN NURSING	College
1341	MASTER OF ARTS IN NURSING	Master's
1342	BACHELOR OR SCIENCE IN NURSING	College
1343	BACHELOR OF SCIENCE IN NURSING	College
1344	BUSINESS AND TECHNOLOGY EDUCATION COUNCIL HIGHER NATIONAL DIPLOMA IN HEALTH AND SOCIAL CARE	Master's
1345	ASSOCIATE IN BUSINESS MANAGEMENT	College
1346	BACHELOR OF SCIENCE IN NURSING 	College
1347	MASTER OF ARTS IN PUBLIC ADMINISTRATION 	Master's
1348	MASTER OF EDUCATION 	Master's
1349	DOCTOR OF PHILOSOPHY	Doctorate
1350	BACHELOR OF ARTS IN ELEMENTARY EDUCATION 	College
1351	BS PSYCHOLOGY	College
1352	MA IN PSYCHOLOGY	Master's
1353	BACHELOR OF AR5TS IN PSYCHOLOGY	College
1354	MASTER IN DISASTER RISK MANAGEMENT	Master's
1355	BACHELOR OF SECONDARY EDUCATION 	Vocational
1356	DOKTOR NG PILOSOPIYA SA PANGWIKANG FILIPINO 	Doctorate
1357	BACHELOR OF SCIENCE IN BIOLOGY	College
1358	BACHELOR OF SCIENCE IN CIVIL ENGINEERING	College
1359	DOCTOR OF MEDICINE	College
1360	BS ACCOUNTANCY	College
1361	MASTER OF ARTS IN EDUCATION MAJOR IN ENGLISH	Master's
1362	AB- PSYCHOLOGY 	College
1363	MASTER OF ARTS IN COUNSELING 	Master's
1364	BACHELOR OF SCIENCE IN ENGINEERING	College
1365	DOCTOR OF PHILOSOPHY IN EDUCATION	Doctorate
1366	MASTERS IN NURSING	College
1367	MASTER OF ARTS IN EDUCATIONAL MANAGEMENT	Master's
1368	MASTER OF ARTS IN ELEMENTARY EDUCATION	Master's
1369	MASTER OF ARTS IN ELEMENTARY EDUCATION (MAED) NON-THESIS	Master's
1370	BACHELOR OF ELEMENTARY EDUCATION MAJOR IN EARLY CHILDHOOD EDUCATION	College
1371	MASTER OF ARTS IN EDUCATION (MAED) NON THESIS 	College
1372	COMPUTER-BASED ENGLISH PROFICIENCY	Vocational
1373	MASTER IN ELEMENTARY EDUCATION	Master's
1374	CERTIFICATE IN TEACHING PROGRAM	College
1375	BACHELOR IN SECONDARY EDUCATION	College
1376	BACHER OF SCIENCE IN HOTEL AND RESTAURANT MANAGEMENT	College
1377	BACHELOR OF SCIENCE IN HOTEL AND RESTAURANT MANAGEMENT	College
1378	MASTER OF ARTS	College
1379	MASTER OF ARTS IN EDUCATIONAL ADMINISTRATION	Master's
1380	MASTER OF ARTS IN EARLY CHILDHOOD EDUCATION	College
1381	INDUSTRIAL SEWING MACHINE OPERATION	Vocational
1382	BACHELOR OF SCIENCE IN MECHANICAL ENGINEERING 	College
1383	ENGLISH PROFICIENCY LANGUAGE	Vocational
1384	NC II COOKERY	Vocational
1385	MASTER OF ARTS IN ENGLISH LANGUAGE TEACHING	Master's
1386	BACHELOR OF ARTS	College
1387	MASTER OF ARTS IN EDUC.	College
1388	BACHELOR OF SCIENCE IN HOME ECONOMICS	College
1389	BACCALAUREATE IN ACCOUNTANCY	College
1390	MASTER OF MANAGEMENT IN PUBLIC ADMINISTRATION	Master's
1391	COBOL PROGRAMMING	Vocational
1392	ASSOCIATE IN HOTEL AND RESTAURANT MANAGEMENT	College
1393	DOCTOR OF PHILOSOPHY IN EDUCATIONAL MANAGEMENT 	Doctorate
1394	MASTER IN ARTS IN EDUCATIONAL MANAGEMENT	Master's
1395	ENGLISH LANGUAGE	Vocational
1396	BS DEVELOPMENT COMMUNICATION	College
1397	MASTER OF ARTS IN SOCIAL SRUDIES	College
1398	MASTER OF ARTS IN SOCIAL SCIENCE STUDIES	Master's
1399	ENGLISH & KOREAN	Vocational
1400	MASTER OF ARTS MAJOR IN EDUCATIONAL MANAGEMENT	Master's
1401	COMPUTER TECHNICIAN	Vocational
1402	MASTER OF ARTS IN EDUCATION - NON THESIS	Master's
1403	SPEECH - VOCATIONAL	Vocational
1404	NC II BEAUTY CARE	Vocational
1405	SECRETARIAL/AUTO MECHANICS	Vocational
1406	BACHELOR OF ARTS IN PSYCHOLOGY	College
\.


--
-- TOC entry 4563 (class 0 OID 0)
-- Dependencies: 209
-- Name: Courses_CourseId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Courses_CourseId_seq"', 1406, true);


--
-- TOC entry 3832 (class 0 OID 16601)
-- Dependencies: 210
-- Data for Name: Credentials; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Credentials" ("CredentialId", "BasicInformationId", "CredentialName", "CredentialImageName") FROM stdin;
\.


--
-- TOC entry 4564 (class 0 OID 0)
-- Dependencies: 211
-- Name: Credentials_CredentialId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Credentials_CredentialId_seq"', 33, true);


--
-- TOC entry 3834 (class 0 OID 16609)
-- Dependencies: 212
-- Data for Name: CreditsComputationDates; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "CreditsComputationDates" ("CreditsComputationDateId", "Month", "Year") FROM stdin;
1	6	2021
2	8	2017
3	2	2018
4	6	2017
5	5	2015
6	10	2015
7	12	2017
8	6	2015
9	3	2016
10	8	2018
11	5	2019
12	6	2010
13	7	2021
14	8	2020
15	8	2021
16	9	2021
17	3	2021
18	8	2022
19	10	2022
20	9	2022
21	11	2022
22	7	2022
23	12	2022
\.


--
-- TOC entry 4565 (class 0 OID 0)
-- Dependencies: 213
-- Name: CreditsComputationDates_CreditsComputationDateId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"CreditsComputationDates_CreditsComputationDateId_seq"', 23, true);


--
-- TOC entry 3836 (class 0 OID 16614)
-- Dependencies: 214
-- Data for Name: DailyLeaveCredits; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "DailyLeaveCredits" ("DailyLeaveCreditId", "Day", "LeaveEarned") FROM stdin;
3	2	0.08300
4	1	0.04200
5	3	0.12500
6	30	1.25000
7	29	1.20800
8	28	1.16700
9	27	1.12500
10	26	1.08300
11	25	1.04200
12	24	1.00000
13	23	0.95800
14	22	0.91700
15	21	0.87500
16	20	0.83300
17	19	0.79200
18	18	0.75000
19	17	0.70800
20	16	0.66700
21	15	0.62500
22	14	0.58300
23	13	0.54200
24	12	0.50000
25	11	0.45800
26	10	0.41700
27	9	0.37500
28	8	0.33300
29	7	0.29200
30	6	0.25000
31	5	0.20800
32	4	0.16700
\.


--
-- TOC entry 4566 (class 0 OID 0)
-- Dependencies: 215
-- Name: DailyLeaveCredits_DailyLeaveCreditId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"DailyLeaveCredits_DailyLeaveCreditId_seq"', 33, true);


--
-- TOC entry 3838 (class 0 OID 16619)
-- Dependencies: 216
-- Data for Name: DayConversionValues; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "DayConversionValues" ("DayConversionValueId", "Hour", "Minute", "EquivalentDay") FROM stdin;
1	1	0	0.12500
13	0	3	0.00600
3	2	0	0.25000
14	0	4	0.00800
15	0	5	0.01000
5	0	2	0.00400
6	0	1	0.00200
16	0	6	0.01200
17	0	7	0.01500
19	0	9	0.01900
18	0	8	0.01700
20	0	10	0.02100
7	3	0	0.37500
8	4	0	0.50000
21	0	11	0.02300
9	5	0	0.62500
10	6	0	0.75000
11	7	0	0.87500
12	8	0	1.00000
22	0	12	0.02500
23	0	13	0.02700
24	0	14	0.02900
25	0	15	0.03100
26	0	16	0.03300
27	0	17	0.03500
28	0	18	0.03700
29	0	19	0.04000
30	0	20	0.04200
31	0	21	0.04400
32	0	22	0.04600
33	0	23	0.04800
34	0	24	0.05000
35	0	25	0.05200
36	0	26	0.05400
37	0	27	0.05600
38	0	28	0.05800
39	0	29	0.06000
40	0	30	0.06200
41	0	31	0.06500
42	0	32	0.06700
43	0	33	0.06900
44	0	34	0.07100
45	0	35	0.07300
46	0	36	0.07500
47	0	37	0.07700
48	0	38	0.07900
49	0	39	0.08100
50	0	40	0.08300
51	0	41	0.08500
52	0	42	0.08700
53	0	43	0.09000
54	0	44	0.09200
55	0	45	0.09400
56	0	46	0.09600
57	0	47	0.09800
58	0	48	0.10000
59	0	49	0.10200
60	0	50	0.10400
61	0	51	0.10600
62	0	52	0.10800
63	0	53	0.11000
64	0	54	0.11200
68	0	58	0.12100
65	0	55	0.11500
66	0	56	0.11700
67	0	57	0.11900
69	0	59	0.12300
70	0	60	0.12500
\.


--
-- TOC entry 4567 (class 0 OID 0)
-- Dependencies: 217
-- Name: DayConversionValues_DayConversionValueId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"DayConversionValues_DayConversionValueId_seq"', 70, true);


--
-- TOC entry 3840 (class 0 OID 16624)
-- Dependencies: 218
-- Data for Name: DeductionTypes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "DeductionTypes" ("DeductionTypeId", "DeductionTypeName", "Cutoff", "Amount") FROM stdin;
\.


--
-- TOC entry 4568 (class 0 OID 0)
-- Dependencies: 219
-- Name: DeductionTypes_DeductionTypeId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"DeductionTypes_DeductionTypeId_seq"', 1, false);


--
-- TOC entry 3842 (class 0 OID 16632)
-- Dependencies: 220
-- Data for Name: Departments; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Departments" ("DepartmentName", "Description", "Rank", "DepartmentId", "DepartmentCode", "ShortName", "ExemptedToHolidays", "ExemptedToWeekends", "OldName", "FundingType", "SignatoryName", "SignatoryPosition", "FppCode") FROM stdin;
Curriculum Implementation Division		2	126	101	CID	f	f	CID				
Schools Governance and Operations Division		3	127	102	SGOD	f	f	SGOD				
OFFICE OF THE SCHOOLS DIVISION SUPERINTENDENT		1	125	100	OSDS	f	f	OSDS				
\.


--
-- TOC entry 4569 (class 0 OID 0)
-- Dependencies: 221
-- Name: Departments_DepartmentId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Departments_DepartmentId_seq"', 127, true);


--
-- TOC entry 3844 (class 0 OID 16649)
-- Dependencies: 222
-- Data for Name: DistributionReleases; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "DistributionReleases" ("DistributionEntryId", "DistributionId", "EmployeeId", "DateReleased", "Amount", "ServiceRecordId") FROM stdin;
\.


--
-- TOC entry 4570 (class 0 OID 0)
-- Dependencies: 223
-- Name: DistributionReleases_DistributionEntryId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"DistributionReleases_DistributionEntryId_seq"', 15, true);


--
-- TOC entry 3846 (class 0 OID 16654)
-- Dependencies: 224
-- Data for Name: Distributions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Distributions" ("DistributionId", "DistributionName", "DistributionCreationDate", "Description") FROM stdin;
\.


--
-- TOC entry 4571 (class 0 OID 0)
-- Dependencies: 225
-- Name: Distributions_DistributionId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Distributions_DistributionId_seq"', 3, true);


--
-- TOC entry 3848 (class 0 OID 16662)
-- Dependencies: 226
-- Data for Name: Divisions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Divisions" ("DivisionId", "DivisionName", "Description", "DepartmentId", "Rank") FROM stdin;
164	Administrative Section	Admin	125	1
\.


--
-- TOC entry 4572 (class 0 OID 0)
-- Dependencies: 227
-- Name: Divisions_DivisionId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Divisions_DivisionId_seq"', 164, true);


--
-- TOC entry 4573 (class 0 OID 0)
-- Dependencies: 229
-- Name: EducationalBackground_EducationalID_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"EducationalBackground_EducationalID_seq"', 14662, true);


--
-- TOC entry 3850 (class 0 OID 16670)
-- Dependencies: 228
-- Data for Name: EducationalBackgrounds; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "EducationalBackgrounds" ("EducationalBackgroundId", "Level", "SchoolorUniversity", "YearGraduated", "CourseOrMajor", "Awards", "BasicInformationId", "DateFrom", "DateTo", "EducationalAttainment", "Course", "Major", "CourseId") FROM stdin;
13497	Elementary Graduate	Mamburao Central School	2011	\N		3598	2006	2011		\N		0
13498	High School Graduate	Occidental Mindoro National High School	2015	\N		3598	2011	2015		\N		0
13499	College Graduate	Batangas State University	2019	\N		3598	2015	2019		\N		1246
13500	Elementary Graduate	MAMBURAO CENTRAL SCHOOL	2011	\N		3600	2006	2011		\N		0
13501	High School Graduate	OCCIDENTAL MINDORO NATIONAL HIGH SCHOOL	2015	\N		3600	2011	2015		\N		0
13502	College Graduate	BATANGAS STATE UNIVERSITY MAIN I	2019	\N		3600	2015	2019		\N		1246
13503	Elementary Graduate	Batangas City East Elementary School	1989		N/A	3599	1983	1989				0
13504	High School Graduate	Western Philippine Colleges	1993		N/A	3599	1989	1993				0
13505	College Graduate	University of Batangas	1998		N/A	3599	1995	1998			Computer Application	1247
13506	Elementary Graduate	JULIAN A. PASTOR MEMORIAL ELEMENTARY SCHOOL	2004	\N		3602	1999	2005		\N		0
13507	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2009	\N		3602	2005	2009		\N		0
13508	College Under Graduate	BATANGAS STATE UNIVERSITY		\N		3602	2009	2011	Undergraduate	\N		1249
13509	Elementary Graduate	JULIAN A. PASTOR MEMORIAL ELEMENTARY SCHOOL	2012	\N		3603	2005	2012		\N		0
13510	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2016	\N		3603	2011	2016		\N		0
13511	Senior High Graduate	ALANGILAN SENIOR HIGH SCHOOL	2021		WITH HONORS	3603	2019	2021				0
13512	Elementary Graduate	GULOD ELEMENTARY SCHOOL	1989	\N	4TH HONOR	3604	1982	1989		\N		0
13513	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1993	\N		3604	1989	1993		\N		0
13514	Vocational Graduate	LYCEUM OF THE PHILIPPINES		\N	PESFA SCHOLAR	3604	1993	1993	24 UNITS	\N		1251
13515	College Graduate	UNIVERSITY OF BATANGAS	1997	\N		3604	1993	1997		\N	MAJOR IN BANKING AND FINANCE	1252
13516	Master's Degree	BATANGAS STATE UNIVERSITY	2022	\N	MOST OUTSTANDING ACHIEVEMENT AWARD	3604	2019	2022		\N		1253
13517	Elementary Graduate	COLEGIO DEL BUEN  CONSEJO	1998	\N		3605	1982	1988		\N		0
13518	High School Graduate	COLEGIO DEL BUEN CONSEJO	1992	\N		3605	1988	1992		\N		0
13519	College Graduate	POLYTECHNIQUE UNIVERSITY OF THE PHILIPPINES	1992	\N		3605	1992	1996		\N		1250
13520	College Graduate	GOLDEN GATE COLLEGES	2006	\N		3605	2004	2006		\N		1255
13521	Master's Degree	GOLDEN GATE COLLEGES	2006	\N		3605	2004	2006		\N		1256
13522	Elementary Graduate	ILAT ELEMENTARY SCHOOL	2009	\N		3607	2003	2009		\N		0
13523	High School Graduate	STA. TERESA COLLEGE	2013	\N		3607	2009	2013		\N		0
13524	College Graduate	BATANGAS STATE UNIVERSITY	2017	\N	UNIVERSITY SCHOLAR	3607	2013	2017		\N		1257
13525	Master's Degree	GOLDEN GATE COLLEGES		\N		3607	2022	2023	36 UNITS	\N		1256
13526	Elementary Graduate	CONCEPCION ELEMENTARY SCHOOL	2001	\N		3608	1995	2001		\N		0
13527	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2005	\N		3608	2001	2005		\N		0
13528	College Graduate	BATANGAS STATE UNIVERSITY/ ALANGILAN CAMPUS	2010	\N		3608	2005	2010		\N		1258
13529	Elementary Graduate	BILOGO ELEMENTARY SCHOOL 	2000	\N	SECOND HONORABLE 	3609	1994	2000		\N		0
13530	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL 	2004	\N		3609	2000	2004		\N		0
13531	College Graduate	BATANGAS STATE UNIVERSITY	2008	\N	OCVAS SCHOLAR 	3609	2004	2008		\N		1257
13532	Master's Degree	PHILIPPINE CHRISTIAN UNIVERSITY 	2018	\N		3609	2016	2018		\N		1260
13533	Elementary Graduate	SAINT JOSEPH INSTITUTE	2009	\N		3610	2003	2009		\N		0
13534	High School Graduate	SAINT JOSEPH INSTITUTE	2013	\N		3610	2009	2013		\N		0
13535	College Graduate	BATANGAS STATE UNIVERSITY MAIN CAMPUS I	2017	\N		3610	2013	2017		\N		1257
13536	Master's Degree	BATANGAS STATE UNIVERSITY	2022	\N	GOVERNMENT SCHOLAR	3610	2019	2022		\N		1253
13537	Elementary Graduate	SAINT BRIDGETINE COLLEGE	1986	\N		3611	1980	1986		\N		0
13538	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1990	\N		3611	1986	1990		\N		0
13539	College Under Graduate	UNIVERSITY OF BATANGAS		\N		3611	1990	1992	2ND YEAR/ 103 UNITS	\N		1250
13540	Elementary Graduate	SAINT JAMES ACADEMY	2009			3612	2003	2009				0
13541	High School Graduate	OBLATES OF SAINT JOSEPH MINOR SEMINARY	2014			3612	2011	2014				0
13542	Vocational Graduate	TECHNICAL EDUCATION AND SKILLS DEVELOPMENT AUTHORITY BATANGAS	2018			3612	2018	2018				1261
13543	College Under Graduate	UNIVERSITY OF BATANGAS				3612	2014	2016	140 UNITS			1257
13544	Elementary Graduate	ST. THERESA'S ACADEMY ALANGILAN CENTRAL ELEM. SCHOOL 	1973			3606	1967	1973				0
13545	High School Graduate	WESTERN PHILIPPINES COLLEGES ( NOW UNIVERSITY OF BATANGAS)	1977		2ND HONORABLE MENTION 	3606	1973	1977				0
13546	College Graduate	WESTERN PHILIPPINES COLLEGES ( NOW UNIVERSITY OF BATANGAS)	1981			3606	1977	1981			ACCOUNTING	1252
13547	Master's Degree	LYCEUM OF THE PHILIPPINES UNIVERSITY BATANGAS	2000		ACADEMIC EXCELLENCE AWARDEE	3606	1995	2001				1256
13548	Doctorate Degree	LYCEUM OF THE PHILIPPINES UNIVERSITY BATANGAS	2023		ACADEMIC EXCELLENCE AWARDEE	3606	2021	2023				1259
13549	Elementary Graduate	LEUTEBORO ELEMENTARY SCHOOL	2009	\N		3614	2003	2009		\N		0
13550	High School Graduate	LEUTEOBORO NATIONAL HIGH SCHOOL	2013	\N		3614	2009	2013		\N		0
13551	College Graduate	BATANGAS STATE UNIVERSITY MAIN CAMPUS I	2017	\N		3614	2013	2017		\N		1257
13552	Master's Degree	BATANGAS STATE UNIVERSITY	2022	\N	GOVERNMENT SCHOLAR	3614	2019	2022		\N		1253
13553	Elementary Graduate	MUZON ELEMENTARY SCHOOL	2003		VALEDICTORIAN	3613	1996	2003				0
13554	High School Graduate	RIZAL COLLEGE OF TAAL	2007		WITH HONORS	3613	2003	2007				0
13555	Vocational Graduate	TESDA				3613	2012	2017				1263
13556	College Graduate	UNIVERSITY OF BATANGAS	2012			3613	2007	2012			ACCOUNTING	1252
13557	Elementary Graduate	GAMAW ELEMENTARY SCHOOL	2000	\N	2ND HONORABLE MENTION	3615	1994	2000		\N		0
13558	High School Graduate	TINGLOY NATIONAL HIGH SCHOOL	2004	\N		3615	2000	2004		\N		0
13559	College Graduate	UNIVERSITY OF BATANGAS	2010	\N	DEAN'S LISTER	3615	2005	2010		\N	BUSINESS MANAGEMENT	1252
13560	Master's Degree	BATANGAS STATE UNIVERSITY	2022	\N	GOVERNMENT SCHOLAR	3615	2019	2022		\N		1253
13561	Elementary Graduate	BATANGAS CITY EAST ELEMENTARY SCHOOL	1979	\N		3616	1972	1979		\N		0
13562	High School Graduate	WESTERN PHILIPPINE COLLEGES 	1984	\N		3616	1980	1984		\N		0
13563	Vocational Graduate	COMPUTER INFORMATION SERVICES CENTER	1985	\N		3616	1985	1985		\N		1264
13564	College Graduate	LYCEUM OF THE PHILIPPINES UNIVERSITY BATANGAS	1989	\N		3616	1985	1989		\N		1265
13567	Elementary Graduate	SOROSORO ELEMENTARY SCHOOL	1986	\N		3618	1980	1986		\N		0
13568	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1992	\N		3618	1988	1992		\N		0
13569	College Graduate	BATANGAS STATE UNIVERSITY	1995	\N		3618	1992	1995		\N		1266
13565	Elementary Graduate	BATANGAS CITY EAST ELEMENTARY SCHOOL/ NON FORMAL ACCREDITATION AND EQUIVALENCY TEST 	2005	\N		3617	1985	2005		\N		0
13566	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL / UNIVERSITY OF BATANGAS 		\N	2011	3617	2005	2011		\N		0
13570	Elementary Graduate	STA, RITA ELEMENTARY SCHOOL	1992	\N		3619	1986	1992		\N		0
13571	College Graduate	AMA COMPUTER COLLEGE	2001	\N		3619	1996	2001		\N		1267
13572	High School Graduate	UNIVERSITY OF BATANGAS	1992	\N		3619	1992	1996		\N		0
13573	Elementary Graduate	BALETE ELEMENTARY SCHOOL	2006	\N	VALEDICTORIAN	3621	2000	2006		\N		0
13574	High School Graduate	CASA DEL BAMBINO EMMANUEL MONTESSORI	2010	\N	ACHIEVER	3621	2006	2010		\N		0
13575	Elementary Graduate	JULIAN A. PASTOR MEMORIAL ELEMENTARY SCHOOL 	2006			3620	2001	2006				0
13576	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL 	2010			3620	2006	2010				0
13577	College Graduate	BATANGAS STATE UNIVERSITY 	2013			3620	2010	2013				1268
13578	Elementary Graduate	STA. CLARA ELEMENTARY SCHOOL	1991	\N		3622	1986	1991		\N		0
13579	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1995	\N		3622	1991	1995		\N		0
13580	Vocational Graduate	BATANGAS MANPOWER TRAINING CENTER, INC.	2009	\N	DODO MANDANAS SCHOLARSHIP	3622	2009	2009		\N		1269
13581	College Graduate	ST. BRIGDET COLLEGE	2023	\N	EBD SCHOLARSHIP PROGRAM	3622	2019	2023		\N	SOCIAL STUDIES	1270
13582	Elementary Graduate	SAN ISIDRO ELEMENTARY SCHOOL 	2005	\N		3623	1999	2005		\N		0
13583	High School Graduate	BATANGAS STATE UNIVERSITY 	2009	\N		3623	2005	2009		\N		0
13584	College Graduate	BATANGAS STATE UNIVERSITY 	2013	\N		3623	2009	2013		\N		1257
13585	Elementary Graduate	KUMINTANG CENTRAL ELEMENTARY SCHOOL	2010	\N		3624	2002	2010		\N		0
13586	High School Graduate	SAINT BRIDGET  COLLEGE	2014	\N		3624	2010	2014		\N		0
13587	College Graduate	BATANGAS STATE UNIVERSITY	2018	\N		3624	2014	2018		\N		1271
13588	Master's Degree	UNIVERSITY OF BATANGAS		\N		3624	2020	2024	30 UNITS	\N		1260
13589	Elementary Graduate	JULIAN A. PASTOR MEMORIAL ELEMENTARY SCHOOL	1997	\N		3626	1990	1997		\N		0
13590	High School Graduate	BATANGAS CITY EAST ELEMENTARY SCHOOL		\N		3626	2018	2018		\N		0
13591	Elementary Graduate	ILIJAN ELEMENTARY SCHOOL	1994	\N		3627	1987	1994		\N		0
13592	High School Graduate	STO. NINO NATIONAL HIGH SCHOOL	1998	\N		3627	1994	1998		\N		0
13593	Elementary Graduate	SILAY ELEMENTARY SCHOOL	1988	\N		3628	1982	1988		\N		0
13594	High School Graduate	SILAY INSTITUTE	1992	\N		3628	1988	1992		\N		0
13595	Vocational Graduate	WESTERN TECHNICAL INSTITUTE OF ELECTRONICS	1993	\N		3628	1993	1993		\N		1273
13597	High School Graduate	LOBO INSTITUTE	2014		ACHIEVER 	3629	2012	2014				0
13596	College Graduate	COLEGIO NG LUNGSOD NG BATANGAS 	2021			3629	2017	2021			MARKETING MANAGEMENT 	1275
13598	Elementary Graduate	BALATBAT ELEMENTARY 	2012		ACHIEVER	3629	2005	2012				0
13599	Master's Degree	GOLDEN GATE COLLEGES 	2022			3629	2021	2022				1276
13600	Elementary Graduate	BATANGAS CITY EAST ELEMENTARY SCHOOL 	1990	\N		3630	1984	1990		\N		0
13601	High School Graduate	WESTERN PHILIPPINE COLLEGES 	1994	\N		3630	1990	1994		\N		0
13602	College Graduate	WESTERN PHILIPPINE COLLEGES 	1998	\N		3630	1994	1998		\N		1252
13603	Elementary Graduate	SUGOD ELEMENTARY SCHOOL	1994	\N		3631	1985	1994		\N		0
13604	High School Graduate	ODIONGAN NATIONAL HIGH SCHOOL	1998	\N		3631	1994	1998		\N		0
13605	Elementary Graduate	MANGHINAO ELEMENTARY SCHOOL	2003		HONORABLE MENTION	3632	1997	2003				0
13606	High School Graduate	BAUAN TECHNICAL HIGH SCHOOL	2007			3632	2003	2007				0
13607	College Graduate	WESTMEAD INTERNATIONAL SCHOOL 	2012			3632	2008	2012				1250
13608	Master's Degree	GOLDEN GATE COLLEGES	2021			3632	2019	2021				1253
13609	Elementary Graduate	UNIVERSITY OF BATANGAS  	2001	\N		3633	1995	2001		\N		0
13610	High School Graduate	UNIVERSITY OF BATANGAS	2005	\N		3633	2001	2005		\N		0
13611	College Graduate	UNIVERSITY OF BATANGAS	2009	\N		3633	2005	2009		\N	ACCOUNTING MANAGEMENT	1252
13612	Master's Degree	GOLDEN GATE COLLEGES	2013	\N		3633	2009	2013		\N		1256
13613	Elementary Graduate	BUHANGIN ELEMENTARY SCHOOL	2000	\N		3634	1994	2000		\N		0
13614	Elementary Graduate	ALANGILAN CENTRAL ELEMENTARY SCHOOL		\N		3635	1999	2002		\N		0
13615	Elementary Graduate	MISAMIS ANNEX ELEMENTARY SCHOOL	2005	\N	5TH HONORABLE MENTION	3635	2002	2005		\N		0
13616	High School Graduate	OZAMIZ CITY NATIONAL HIGH SCHOOL	2009	\N	7TH HONORABLE MENTION	3635	2005	2009		\N		0
13617	College Graduate	UNIVERSITY OF BATANGAS 	2011	\N		3635	2009	2011		\N		1277
13618	College Graduate	UNIVERSITY OF BATANGAS	2015	\N		3635	2013	2015		\N		1268
13619	High School Graduate	PORFIRIO G. COMIA MEMORIAL NHS	2000			3634	1994	2000				0
13620	College Under Graduate	ST AGUSTINE SCHOOL OF NURSING 				3634	2017	2019	41 UNITS			1277
13621	Elementary Graduate	BATANGAS CITY EAST ELEMENTARY SCHOOL	2011	\N		3636	2005	2011		\N		0
13622	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2015	\N		3636	2011	2015		\N		0
13623	College Graduate	BATANGAS STATE UNIVERSITY	2019	\N	EBD/ VAD SCHOLAR	3636	2015	2019		\N		1257
13624	Elementary Graduate	ILIJAN ELEMENTARY SCHOOL	2007			3637	2001	2007				0
13625	High School Graduate	PEDRO S. TOLENTINO MEMORIAL NATIONAL HIGH SCHOOL 	2011			3637	2007	2011				0
13626	College Graduate	COLEGIO NG LUNGSOD NG BATANGAS	2016			3637	2014	2016				1278
13627	Elementary Graduate	BARCENAGA CENTRAL SCHOOL	1992	\N		3638	1986	1992		\N		0
13628	High School Graduate	SAINT FRANCIS ACADEMY	1996	\N		3638	1992	1996		\N		0
13629	Vocational Graduate	FAITH CAREGIVER INC	2003	\N		3638	2002	2003		\N		1279
13630	College Graduate	COLEGIO NG LUNGSOD NG BATANGAS	2021	\N		3638	2017	2021		\N		1280
13631	Master's Degree	GOLDEN GATE COLLEGES	2022	\N		3638	2021	2022		\N		1281
13632	Elementary Graduate	SAN FRANCISCO ELEMENTARY SCHOOL	1990	\N		3639	1984	1990		\N		0
13633	High School Graduate	JUDGE JUAN LUNA HIGH SCHOOL	1994	\N		3639	1990	1994		\N		0
13634	College Graduate	SAINT BRIDGET COLLEGE	1999	\N		3639	1994	1999		\N	MAJOR IN MANAGAMENT	1252
13641	Elementary Graduate	MATISAY ELEMENTARY SCHOOL	1984	\N	1ST HONORABLE MENTION	3642	1978	1984		\N		0
13642	High School Graduate	ISLA VERDE CATHLIC HIGH SCHOOL	1989	\N		3642	1985	1989		\N		0
13643	Vocational Graduate	SACRED HEART INFORMATION CENTER FOR RELIGIOUS EDUCATION	1993	\N		3642	1991	1993		\N		1283
13644	College Graduate	RIZAL COLLEGE OF TAAL 	1999	\N		3642	1996	1999		\N	MATHEMATICS	1270
13645	Master's Degree	RIZAL COLLEGE OF TAAL 	2000	\N		3642	2010	2011		\N		1284
13635	Elementary Graduate	CALICANTO ELEMENTARY SCHOOL 	2004	\N		3640	1998	2004		\N		0
13636	High School Graduate	UNIVERSITY OF BATANGAS 	2008	\N		3640	2004	2008		\N		0
13637	College Graduate	BATANGAS STATE UNIVERSITY 	2012	\N		3640	2008	2012		\N	INSTRUMENTATION AND CONTROL TECHNOLOGY 	1282
13650	Elementary Graduate	BALETE ELEMENTARY SCHOOL 	1999	\N	SALUTATORIAN 	3644	1992	1999		\N		0
13651	High School Graduate	OUR LADY OF CAYSASAY ACADEMY 	2003	\N		3644	1999	2003		\N		0
13652	College Graduate	LYCEUM OF THE PHILIPPINES UNIVERSITY- BATANGAS	2009	\N		3644	2005	2009		\N	 FINANCIAL AND MANAGEMENT ACCOUNTING 	1287
13638	Elementary Graduate	SAINT BRIDGET COLLEGE	2001	\N		3641	1995	2001		\N		0
13639	High School Graduate	SAINT BRIDGET COLLEGE	2005	\N	WITH HONORS	3641	2001	2005		\N		0
13640	College Graduate	DE LA SALLE UNIVERSITY - MANILA	2009	\N	DEAN'S LIST (TWICE)	3641	2005	2009		\N		1285
13646	Elementary Graduate	MATAAS NA LUPA- PALSAHINGIN ELEMENTARY SCHOOL	2009	\N		3643	2003	2009		\N		0
13647	High School Graduate	STA. TERESA COLLEGE	2013	\N		3643	2009	2013		\N		0
13648	College Graduate	DE LA SALLE LIPA	2017	\N		3643	2013	2017		\N	MAJOR IN FINANCIAL MANAGEMENT	1280
13649	Master's Degree	GOLDEN GATE COLLEGHES	2021	\N		3643	2019	2021		\N		1253
13653	Elementary Graduate	BATANGAS SOUTH ELEMENTARY SCHOOL	1995	\N		3645	1988	1995		\N		0
13654	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1999	\N		3645	1995	1999		\N		0
13655	College Graduate	BATANGAS STATE UNIVERSITY	2003	\N		3645	1999	2003		\N		1286
13656	Master's Degree	GOLDEN GATE COLLEGES	2024	\N		3645	2022	2024		\N		1256
13657	Elementary Graduate	GULOD ELEMENTARY SCHOOL	2007	\N		3646	2001	2007		\N		0
13658	High School Graduate	WESTMEAD INTERNATIONAL SCHOOL 	2011	\N	3RD HONORABLE MENTION	3646	2007	2011		\N		0
13659	College Graduate	ST. BRIDGET COLLEGE	2015	\N	EBD SCHOLARSHIP	3646	2011	2015		\N	MAJOR IN HUMAN RESOURCE AND DEVELOPMENT MANAGEMENT 	1280
13660	Master's Degree	BATANGAS STATE UNIVERSITY		\N		3646	2017	2018	18 UNITS	\N		1256
13661	Elementary Graduate	AMBULONG ELEMENTARY SCHOOL	2000	\N	8TH PLACER	3647	1994	2000		\N		0
13662	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2004	\N	SCIENCE CLASS B	3647	2000	2004		\N		0
13663	College Graduate	BATANGAS STATE UNIVERSITY (FORMER PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY)	2008	\N	UNIVERSITY SCHOLAR/ 3RD BEST FEASIBILITY STUDY	3647	2004	2008		\N		1257
13664	Master's Degree	GOLDEN GATE COLLEGES		\N		3647	2023	2024	UNDERGRADUATE (PRESENT)	\N		1253
13665	Elementary Graduate	BATANGAS NORTH ELEMENTARY SCHOOL	1975	\N		3649	1969	1975		\N		0
13666	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1979	\N		3649	1975	1979		\N		0
13667	College Graduate	UNIVERSITY OF BATANGAS (FORMER WPC)	1987	\N		3649	1979	1987		\N		1252
13668	Elementary Graduate	SAINT BRIDGET COLLEGE 	2001			3648	1995	2001				0
13669	High School Graduate	SAINT BRIDGET COLLEGE	2005			3648	2001	2005				0
13670	College Graduate	DE LA SALLE LIPA 	2009			3648	2005	2009			BUSINESS MANAGEMENT	1287
13671	Doctorate Degree	UNIVERSITY OF BATANGAS 	2014			3648	2009	2014				1259
13672	Elementary Graduate	BATANGAS CITY SOUTH ELEMENTARY SCHOOL 	1986	\N		3650	1980	1986		\N		0
13673	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL 	1990	\N		3650	1986	1990		\N		0
13674	College Graduate	LYCEUM OF THE PHILIPPINES UNIVERSITY- BATANGAS ( FORMER LYCEUM OF BATANGAS )	1994	\N		3650	1990	1994		\N		1250
13675	Elementary Graduate	WESTERN PHILIPPINE COLLEGES	1996	\N		3651	1991	1996		\N		0
13676	High School Graduate	PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY 	2000	\N		3651	1996	2000		\N		0
13677	College Graduate	BATANGAS STATE UNIVERSITY	2004	\N		3651	2000	2004		\N		1289
13678	Master's Degree	GOLDEN GATE COLLEGES		\N		3651	2022	2024	27	\N		1256
13679	Elementary Graduate	CALICANTO ELEMENTARY SCHOOL	1999			3652	1993	1999				0
13680	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL 	2003			3652	1999	2003				0
13681	College Graduate	LYCEUM OF THE PHILIPPINES FORMERLY LYCEUM OF BATANGAS	2007			3652	2003	2007			FINANCIAL MANAGEMENT  ACCOUNTING	1252
13682	Master's Degree	PHILIPPINE CHRISTIAN UNIVERSITY 	2018			3652	2016	2018				1253
13683	Elementary Graduate	MABUHAY 1 SOCORO ORIENTAL MINDORO	1982	\N		3653	1981	1982		\N		0
13684	High School Graduate	PAMBISAN NATIONAL HIGH SCHOOL		\N		3653	1983	1984	THIRD YEAR	\N		0
13685	Elementary Graduate	STA. BRIGADA ELEMENTARY SCHOOL	1985	\N		3654	1979	1985		\N		0
13686	High School Graduate	STO. NINO HIGH SCHOOL	1989	\N		3654	1985	1989		\N		0
13687	College Graduate	WESTERN PHILIPPINE COLLEGES 	1995	\N		3654	1990	1995		\N		1290
13688	Master's Degree	GOLDEB GATE OLLEGES		\N		3654	1997	2000	45 UNITS	\N		1291
13689	Elementary Graduate	SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL 	1986	\N	VALEDICTORIAN	3655	1980	1986		\N		0
13690	High School Graduate	ISLA VERDE CATHOLIC HIGH SCHOOL 	1990	\N	1ST HONORABLE 	3655	1986	1990		\N		0
13691	College Graduate	LYCEUM OF THE PHILIPPINES UNIVERSITY	1994	\N		3655	1990	1994		\N		1292
13692	Doctorate Degree	ST. LINUS UNIVERSITY	2012			3655	2008	2012				1293
13693	Elementary Graduate	GUINTO ELEMENTARY SCHOOL	1979	\N	2ND HONORABLE MENTION	3656	1974	1979		\N		0
13694	High School Graduate	TALUMPOK NATIONAL HIGH SCHOOL	1983	\N	VALEDICTORIAN	3656	1979	1983		\N		0
13695	College Graduate	ST. BRIDGET COLLEGE	1987	\N		3656	1983	1987		\N		1294
13696	Master's Degree	MIRIAM COLLEGE	1996	\N	DECS SCHOLAR	3656	1992	1996		\N		1296
13697	Doctorate Degree	MIRIAM COLLEGE	2009	\N	INSTITUTIONAL SCHOLAR	3656	2002	2009		\N		1297
13698	Elementary Graduate	SAINT BRIDGETS COLLEGE	1991	\N		3657	1986	1991		\N		0
13699	High School Graduate	SAINT BRIDGETS COLLEGE	1995	\N		3657	1991	1995		\N		0
13700	College Graduate	PHILIPPINE NORMAL UNIVERSITY	1999	\N		3657	1995	1999		\N	MAJOR IN MUSIC	1270
13701	Elementary Graduate	TALAHIB PANDAYAN ELEMENTARY SCHOOL	1981	\N		3658	1975	1981		\N		0
13702	High School Graduate	TALAHIB PANDAYAN NATIONAL HIGH SCHOOL	1985	\N		3658	1981	1985		\N		0
13703	College Graduate	GOLDEN GATE COLLEGES	1981	\N		3658	1985	1981		\N		1290
13704	Master's Degree	GOLDEN GATE COLLEGES		\N		3658	1990	2004		\N		1291
13705	Doctorate Degree	ST.JUDE COLLEGES		\N		3658	2016	2018		\N		1299
13706	Elementary Graduate	ROSARIO ADVENTIST ELEMENTARY SCHOOL 	2007	\N		3659	2001	2007		\N		0
13707	High School Graduate	PADRE VICENTE GARCIA MEMORIAL ACADEMY 	2011	\N		3659	2007	2011		\N		0
13708	College Under Graduate	AMA COMPUTER COLLEGE LIPA 		\N		3659	2015	2018		\N		1277
13709	Elementary Graduate	LUMANGBAYAN ELEMENTARY SCHOOL	1980	\N		3660	1974	1980		\N		0
13710	High School Graduate	JOSE J. LEIDO MEMORIAL HIGH SCHOOL	1986	\N		3660	1980	1986		\N		0
13711	College Under Graduate	DIVINE WORD COLLEGE OF CALAPAN		\N		3660	1986	1987		\N		1300
13714	Elementary Graduate	STA. CLARA ELEMENTARY SCHOOL 	1978	\N		3662	1972	1978		\N		0
13715	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1982	\N	MODEL HOME MAKER OF THE YEAR	3662	1978	1982		\N		0
13716	College Graduate	ST. BRIDGET COLLEGE 	1986	\N		3662	1982	1986		\N		1294
13717	Master's Degree	UNIVERSITY OF BATANGAS 	2010	\N		3662	2005	2010		\N		1301
13718	Doctorate Degree	BATANGAS STATE UNIVERSITY	2018	\N		3662	2015	2018		\N		1302
13731	Elementary Graduate	PARANG ELEMENTARY SCHOOL	1983	\N	FIRST HONORS	3666	1977	1983		\N		0
13732	High School Graduate	ISLA VERDE CATHOLIC HIGH SCHOOL	1987	\N	VALEDICTORIAN	3666	1983	1987		\N		0
13733	College Graduate	SAINT CRIDGET COLLEGE	1992	\N		3666	1987	1992		\N		1298
13712	Elementary Graduate	SAMPA PACIFICO ELEMENTARY SCHOOL 	2001	\N		3661	1995	2001		\N		0
13713	High School Graduate	STA. TERESITA NATIONAL HIGH SCHOOL 	2005	\N		3661	2001	2005		\N		0
13719	Elementary Graduate	APAR ELEMENTARY SCHOOL	1982	\N		3663	1976	1982		\N		0
13720	High School Graduate	TULOS HIGH SCHOOL	1996	\N		3663	1982	1996		\N		0
13721	College Graduate	COLEGIO NG LUNGSOD NG BATANGAS 		\N		3663	2019	2022		\N		1280
13727	Elementary Graduate	BALATBAT ELEMENTARY SCHOL	1976		FIRST HONOR	3665	1970	1976				0
13728	High School Graduate	LOBO INSTITUTE	1980			3665	1976	1980				0
13729	College Graduate	LYCEUM OF THE PHILIPPINES	1984			3665	1980	1984				1305
13730	Doctorate Degree	BATANGAS STATE UNIVERSITY	2012			3665	2009	2012				1302
13734	Elementary Graduate	PAHARANG ELEMENTARY SCHOOL 	1989	\N		3667	1984	1989		\N		0
13735	High School Graduate	PAHARANG NATIONAL HIGH SCHOOL 	1994	\N		3667	1990	1994		\N		0
13736	College Graduate	ST, BRIDGET COLLEGE	1998	\N		3667	1994	1998		\N		1307
13737	Doctorate Degree	UNIVERSITY OF BATANGAS 		\N		3667	2009	2018		\N	EDUCATION AND SUPERVISION 	1299
13722	Elementary Graduate	JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL FORMERLY KNOWN AS PALLOCAN ELEMENTARY SCHOOL	1986	\N		3664	1980	1986		\N		0
13723	High School Graduate	BATANGAS CITY INTEGRATED HIGH SCHOOL FORMERLY BATANGAS NATIONAL HIGH SCHOOL	1990	\N		3664	1986	1990		\N		0
13724	College Graduate	BATANGAS STATE UNIVERSITY FORMERLY PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY	1994	\N		3664	1990	1994		\N		1303
13725	Master's Degree	GOLDEN GATE COLLEGES 	2012			3664	2004	2012				1304
13726	Doctorate Degree	ST. JUDE COLLEGE/BSU	2016			3664	2013	2016				1299
13738	Elementary Graduate	LIBJO ELEMENTARY SCHOOL	1977	\N		3668	1971	1977		\N		0
13739	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1981	\N		3668	1977	1981		\N		0
13740	College Graduate	PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY	1985	\N		3668	1981	1985		\N		1309
13741	Master's Degree	UNIVERSITY OF BATANGAS	2003	\N		3668	2001	2003		\N		1291
13742	Doctorate Degree	UNIVERSITY OF BATANGAS 	2019	\N		3668	2015	2019		\N		1299
13743	Elementary Graduate	CONDE LABAC ELEMENTARY SCHOOL	1977	\N	CERTIFICATE	3669	1971	1977		\N		0
13744	High School Graduate	CONDE LABAC BARANGAY HIGH SCHOOL	1981	\N	OUTSTANDING	3669	1977	1981		\N		0
13745	Vocational Graduate	PANLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY	1983	\N	CERTIFICATE	3669	1981	1983		\N		1311
13746	College Graduate	PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY	1987	\N	CERTIFICATE	3669	1985	1987		\N		1312
13747	Master's Degree	PAMANTAASAAN NG LUNGSOD NG	2003	\N	CERTIFICATE	3669	2000	2003		\N		1313
13748	Elementary Graduate	JULIAN A. PASTOR MEMORIAL SCHOOL  	1979			3670	1973	1979				0
13749	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL 	1982			3670	1979	1982				0
13750	College Graduate	WESTERN PHILIPPINE COLLEGES 	1986			3670	1982	1986				1314
13751	Doctorate Degree	ST. JUDE COLLEGE PHINMA MANILA 	2018			3670	2015	2018			EDUCATION MANAGEMENT 	1299
13752	Elementary Graduate	MAHABANG DAHILIG ELEMENTARY SCHOOL	1979	\N		3671	1973	1979		\N		0
13753	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1983	\N		3671	1979	1983		\N		0
13754	Vocational Graduate	VILLENA'S FASHION AND BUSINESS INSTITUTION 	1986	\N		3671	1986	1986		\N		1315
13755	College Graduate	WESTERN PHILIPPINE COLLEGES (NOW UNIVERSITY OF BATANGAS)	1987	\N		3671	1984	1987		\N		1298
13756	Master's Degree	UNIVERSITY OF BATANGAS 	2001	\N		3671	1988	2001		\N		1291
13757	Doctorate Degree	EULOGIA AMANG RODRIGUEZ INSTITUTE OF SCIENCE AND TECHNOLOGY	2008	\N		3671	2002	2008		\N		1310
13758	Elementary Graduate	WESTERN PHILIPPINE COLLEGES	1989	\N		3672	1983	1989		\N		0
13759	High School Graduate	WESTERN PHILIPPINE COLLEGE	1993	\N		3672	1988	1993		\N		0
13760	College Graduate	UNIVERSITY OF BATANGAS	1998	\N	STUDENT ASSISTANT SCHOLARSHIP	3672	1993	1998		\N	COMPUTER APPLICATION	1252
13761	Master's Degree	MANUEL LUIS QUEZON UNIVERSITY	2009	\N		3672	2007	2009		\N		1316
13762	Elementary Graduate	CANUBING I ELEMENTARY SCHOOL	1979	\N		3673	1972	1979		\N		0
13763	High School Graduate	CANUBING I BRGY. HIGH SCHOOL	1983	\N		3673	1979	1983		\N		0
13764	College Graduate	DIVINE WORD COLLEGE OF CALAPAN 	1988	\N		3673	1983	1988		\N		1303
13765	Doctorate Degree	ST. JUDE COLLEGE- MANILA	2016	\N		3673	2012	2016		\N		1302
13766	Elementary Graduate	BATANGAS CITY SOUTH ELEMENTARY SCHOOL	1981	\N		3674	1975	1981		\N		0
13767	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1984	\N		3674	1981	1984		\N		0
13768	College Graduate	SAINT BRIDGET COLLEGE 	1988	\N		3674	1984	1988		\N		1298
13769	Master's Degree	GOLDEN GATE COLLEGES	2016	\N		3674	2014	2016		\N		1291
13770	Doctorate Degree	ST JUDE COLLEGE 	2018	\N		3674	2016	2018		\N		1299
13771	Elementary Graduate	MAHABANG DAHILIG ELEMENTARY SCHOOL 	1979		FIRST HONORABLE MENTION 	3675	1973	1979				0
13772	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL 	1983			3675	1979	1983				0
13773	College Graduate	UNIVERSITY OF BATANGAS 	1987			3675	1983	1987				1290
13774	Doctorate Degree	SAINT JUDE COLLEGES 	2018			3675	2015	2018				1299
13775	Elementary Graduate	SUBIC ELEMENTARY SCHOOL	1993	\N	FIRST HONOR	3676	1987	1993		\N		0
13776	High School Graduate	OUR LADY OF MIRACULOUS MEDAL ACADEMY (OLMMA)	1997	\N		3676	1993	1997		\N		0
13777	College Graduate	RIZAL COLLEGE OF TAAL 	2001	\N	PSB SCHOLAR	3676	1997	2001		\N		1317
13778	College Graduate	AGONCILLO COLLEGE INC.	2015	\N		3676	2014	2015		\N		1319
13779	Elementary Graduate	BANABA SOUTH ELEMENTARY SCHOOL	1989	\N		3677	1983	1989		\N		0
13780	High School Graduate	BANABA WEST BARANGAY HIGH SCHOOL	1993	\N		3677	1989	1993		\N		0
13781	Vocational Graduate	PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY	1995	\N		3677	1993	1995		\N		1320
13782	College Graduate	PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY	1999	\N		3677	1996	1999		\N		1277
13783	Master's Degree	BATANGAS STATE UNIVERSITY	2004	\N		3677	2000	2004		\N	FILIPINO	1284
13784	Doctorate Degree	PHILIPPINE NORMAL UNIVERSITY - MANILA	2014	\N		3677	2008	2014		\N	FILIPINO	1324
13785	Elementary Graduate	BOLBOK ELEMENTARY SCHOOL	1993	\N	8TH PLACE	3678	1987	1993		\N		0
13786	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1997	\N		3678	1993	1997		\N		0
13787	College Graduate	BATANGAS STATE UNIVERSITY	2001	\N	INSTITUTE SCHOLAR	3678	1997	2001		\N		1270
13788	Master's Degree	BATANGAS STATE UNIVERSITY	2015	\N		3678	2014	2015		\N		1291
13789	Doctorate Degree	PHILIPPINE NORMAL UNIVERSITY	2015	\N	RACAS SCHOLARSHIP	3678	2014	2015		\N		1325
13790	Doctorate Degree	NATIONAL UNIVERSITY	2015	\N		3678	2014	2015		\N		1302
13791	Doctorate Degree	PHILIPPINE NATIONAL UNIVERSITY	2015	\N	LISQUP	3678	2014	2015		\N		1326
13792	Elementary Graduate	TINGA LABAC ELEMENTARY	1982	\N	2ND HONOR	3681	1976	1982		\N		0
13793	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1987	\N	SALUTATORIAN	3681	1982	1987		\N		0
13794	College Graduate	PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY	1991	\N		3681	1987	1991		\N		1329
13795	Master's Degree	BATANGAS STATE UNIVERSITY	2017	\N		3681	1991	2017		\N		1330
13796	Elementary Graduate	PINAMUKAN ELEMENTARY SCHOOL 	1988			3680	1982	1988				0
13797	High School Graduate	PINAMUKAN NATIONAL HIGH SCHOOL 	1992			3680	1988	1992				0
13798	Vocational Graduate	ST ANTHONY COLLEGE- CALAPAN THRU TESDA 	2009			3680	2009	2009				1331
13799	College Graduate	BATANGAS STATE UNIVERSITY 	1998			3680	1992	1998				1332
13800	Master's Degree	MINSCAT/ UNIVERSITY OF BATANGAS 				3680	2007	2011				1335
13801	Doctorate Degree	MINSCAT/ UNIVERSITY OF BATANGAS 	2019			3680	2016	2019				1336
13802	Elementary Graduate	ADRIATICO MEMORIAL ELEMENTARY SCHOOL/ STA. RITA ELEMENTARY SCHOOL	2002			3679	1996	2002				0
13803	High School Graduate	BATANGAS NATIONAL HIGH SHOOL	2006			3679	2002	2006				0
13804	Vocational Graduate	BATANGAS STATE UNIVERSITY 	2009			3679	2007	2009			MECHANICAL ENGINEERING TECHNOLOGY	1327
13805	College Graduate	BATANGAS STATE UNIVERSITY 	2012			3679	2009	2012			MUSIC, ARTS, PHYSICAL EDUCATION AND HEALTH	1270
13806	Master's Degree	GOLDEN GATE COLLEGES 	2018			3679	2017	2018			MUSIC, ARTS, PHYSICAL EDUCATION AND HEALTH	1284
13807	Elementary Graduate	DAO ELEMENTARY SCHOOL	1983		SALUTATORIAN	3682	1977	1983				0
13808	High School Graduate	PINAMUKAN BARANGAY HIGH SCHOOL	1988		HONORABLE MENTION	3682	1984	1988				0
13809	College Graduate	UNIVERSITY OF BATANGAS 	1992			3682	1988	1992			MAJOR IN ENGLISH	1277
13810	Master's Degree	PHILIPPINE NORMAL UNIVERSITY 	2006		DEPARTMENT OF EDUCATION SCHOLAR	3682	2005	2006				1337
13811	Doctorate Degree	PHILIPPPINE CHRISTIAN UNIVERSITY 	2021		DEPARTMENT OF EDUCATION SCHOLAR	3682	2018	2021				1338
13812	Elementary Graduate	BATANGAS CITY EAST ELEMENTARY SCHOOL	1984	\N	GRADES 4 & 5 - 1ST HONOR	3683	1979	1984		\N		0
13813	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1988	\N		3683	1984	1988		\N		0
13814	College Graduate	WESTERN PHILIPPINE COLLEGES	1992	\N		3683	1988	1992		\N	ENGLISH	1314
13815	Master's Degree	UNIVERSITY OF THE PHILIPPINES	2004	\N		3683	2001	2004		\N	SOCIAL STUDIES	1291
13816	Doctorate Degree	BATANGAS STATE UNIVERSITY	2017	\N		3683	2015	2017		\N	EDUCATIONAL MANAGEMENT	1338
13817	Doctorate Degree	PHILIPPINE NORMAL UNIVERSITY	2023	\N		3683	2021	2023		\N		1339
13818	Elementary Graduate	BATANGAS CITY SOUTH ELEMENTARY SCHOOL	2002	\N		3684	1999	2002		\N		0
13819	High School Graduate	SAINT BRIDGET COLLEGE	2006	\N		3684	2002	2006		\N		0
13820	College Graduate	LYCEUM OF THE PHILIPPINES UNIVERSITY	2010	\N		3684	2006	2010		\N		1340
13821	Master's Degree	GOLDEN GATE COLLEGES	2023	\N		3684	2022	2023		\N		1341
13822	Elementary Graduate	MAHACOT ELEMENTARY SCHOOL	1997	\N		3685	1991	1997		\N		0
13823	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2001	\N		3685	1997	2001		\N		0
13824	College Graduate	UNIVERSITY OF BATANGAS	2007	\N		3685	2003	2007		\N		1340
13825	Elementary Graduate	HOLY CHILD SCHOOL 	1988	\N		3686	1981	1988		\N		0
13826	High School Graduate	ST. BRIDGET'S COLLEGE 	1992	\N		3686	1988	1992		\N		0
13827	College Graduate	LYCEUM OF BATANGAS 	1996	\N		3686	1992	1996		\N		1343
13828	Elementary Graduate	DIIVINE CHILD ACADEMY	1999	\N	SOCIAL APOSTOLATE AWARD	3687	1993	1999		\N		0
13829	High School Graduate	MARIAN LEARNING CENTER AND SCIENCE HIGH SCHOOL	2003	\N		3687	1999	2003		\N		0
13830	College Graduate	LYCEUM OF BATANGAS 	2007	\N		3687	2003	2007		\N		1343
13831	Master's Degree	CITY OF LONDON BUSINESS COLLEGE 		\N		3687	2010	2011	18 UNITS	\N		1344
13832	Elementary Graduate	ALANGILAN ELEMENTARY SCHOOL	1984	\N		3688	1978	1984		\N		0
13833	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1988	\N		3688	1984	1988		\N		0
13834	College Graduate	ST. BRIDGET'S COLLEGE		\N		3688	1988	1992		\N		1318
13835	Master's Degree	BATANGAS STATE UNIVERSITY	2015	\N		3688	2014	2015		\N		1291
13836	Elementary Graduate	STO. NIÑO ELEMENTARY SCHOOL 	1993	\N		3689	1988	1993		\N		0
13837	High School Graduate	STO. NIÑO NATIONAL HIGH SCHOOL 	2001	\N		3689	1996	2001		\N		0
13838	College Graduate	UNIVERSITY OF BATANGAS 	2005	\N		3689	2001	2005		\N	ENGLISH	1270
13839	Master's Degree	RIZAL COLLEGE OF TAAL 	2011	\N		3689	2008	2011		\N		1291
13840	Doctorate Degree	BATANGAS STATE UNIVERSITY 	2015	\N		3689	2011	2015		\N		1338
13841	Elementary Graduate	SAN MIGUEL ELEMENTARY SCHOOL	2001	\N		3690	1995	2001		\N		0
13842	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2005	\N		3690	2001	2005		\N		0
13843	College Graduate	BATANGAS STATE UNIVERSITY		\N		3690	2005	2007	1ST YEAR COLLEGE	\N		1345
13844	Elementary Graduate	ALANGILAN CENTRAL ELEMENTARY SCHOOL	2001	\N		3691	1995	2001		\N		0
13845	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2005	\N		3691	2001	2005		\N		0
13846	College Graduate	LYCEUM OF THE PHILIPPINES UNIVERSITY- BATANGAS		\N		3691	2005	2009		\N		1343
13847	Elementary Graduate	SAN MARCELINO ELEMENTARY SCHOOL 	1983	\N	SECOND HONORS 	3692	1977	1983		\N		0
13848	High School Graduate	TAYAN HIGH SCHOOL 	1996	\N	SPECIAL MENTION 	3692	1983	1987		\N		0
13849	College Graduate	LYCEUM OF BATANGAS 	1991	\N		3692	1987	1991		\N		1342
13850	Master's Degree	PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY GRADUATE SCHOOL		\N		3692	1996	1999	15 UNITS	\N		1347
13851	Elementary Graduate	TINGA LABAC ELEMENTARY SCHOOL	2007	\N		3694	2001	2007		\N		0
13852	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2011	\N		3694	2007	2011		\N		0
13853	College Graduate	BATANGAS STATE UNIVERSITY- ALANGILAN CAMPUS	2015	\N		3694	2011	2015		\N		1268
13854	Elementary Graduate	DAO ELEMENTARY SCHOOL 	1985	\N		3695	1979	1985		\N		0
13855	High School Graduate	TABANGAO NATIONAL HIGH SCHOOL TESDA/ DYNED	1993	\N	WITH HONORS	3695	1989	1993		\N		0
13856	College Graduate	UNIVERSITY OF BATANGAS 	1993	\N		3695	1989	1993		\N		1350
13857	Elementary Graduate	SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL	1991		ACHIEVER	3693	1985	1991				0
13858	High School Graduate	ISLA VERDE CATHOLIC HIGH SCHOOL	1996		ACHIEVER	3693	1993	1996				0
13859	College Graduate	SAINT. BRIDGET COLLEGE				3693	1996	1997				1298
13860	College Graduate	LIPA CITY COLLEGES	2000			3693	1997	2000				1298
13861	Master's Degree	GOLDEN GATE COLLEGES 	2011			3693	2005	2007				1348
13862	Master's Degree	GOLDEN GATE COLLEGES 	2017			3693	2016	2017				1291
13863	Doctorate Degree	UNIVERSITY OF BATANGAS				3693	2017	2024	32 UNITS		MAJOR IN EDUCATIONAL MANAGEMENT	1349
13864	Elementary Graduate	SAN JUAN ELEMENTARY SCHOOL	2000	\N	3RD HONOR	3696	1994	2000		\N		0
13865	High School Graduate	TINGLOY NATIONAL HIGH SCHOOL	2004	\N	7TH PLACER 	3696	2000	2004		\N		0
13866	College Graduate	LPU - BATANGAS 	2008	\N		3696	2004	2008		\N		1351
13867	Master's Degree	LPU - BATANGAS	2012	\N		3696	2011	2012		\N		1352
13868	Elementary Graduate	CONCEPCION ELEMENTARY SCHOOL	2006	\N		3697	2000	2006		\N		0
13869	High School Graduate	NAVERA BATANGAS NATIONAL HIGH SCHOOL ANNEX	2010	\N		3697	2006	2010		\N		0
13870	College Graduate	UNIVERSITY OF BATANGAS- MAIN CAMPUS	2014	\N		3697	2010	2014		\N		1353
13871	Master's Degree	BATANGAS STATE UNIVERSITY- MAIN CAMPUS		\N		3697	2022	2024	18 UNITS	\N		1344
13872	Elementary Graduate	LOOB ELEMENTARY SCHOOL 	2002	\N		3698	1996	2002		\N		0
13873	High School Graduate	MATAAS NA KAHOY NATIONAL HIGH SCHOOL 	2006	\N		3698	2002	2006		\N		0
13874	Vocational Graduate	KOLEHIYO NG LUNSOD NG BATANGAS 	2013	\N	DEAN'S LISTER 	3698	2006	2013		\N	FILIPINO 	1355
13875	Master's Degree	BATANGAS STATE UNIVERSITY 	2018	\N		3698	2015	2018		\N	LANGUAGE TEACHING 	1348
13876	Doctorate Degree	PHILIPPINE NORMAL SCHOOL 		\N		3698	2019	2022	COMPLETE ACADEMIC REQUIREMENTS 	\N		1356
13877	Elementary Graduate	ROSARIO EAST CENTRAL SCHOOL	1991	\N		3699	1985	1991		\N		0
13878	High School Graduate	SAINT JOSEPH INSTITUTE	1995	\N		3699	1991	1995		\N		0
13879	College Graduate	UNIVERSITY OF THE EAST 	2000	\N		3699	1995	2000		\N		1358
13880	Elementary Graduate	DUOLANGAN I ELEMENTARY SCHOOL	1997	\N	FIRST HONOR	3700	1991	1997		\N		0
13881	High School Graduate	HOLY INFANT ACADEMY	2001	\N	TOP 10	3700	1997	2001		\N		0
13882	College Graduate	UNIVERSITY OF EAST - MANILA	2005	\N	CUM LAUDE	3700	2001	2005		\N		1357
13883	Doctorate Degree	UNIVERSITY OF THE EAST RAMON MAGSAYSAY MEMORIAL MEDICAL CENTER (UERMMMC)	2009	\N		3700	2005	2009		\N		1325
13884	Elementary Graduate	BUCAYAO ELEMENTARY SCHOOL 	1982	\N		3701	1976	1982		\N		0
13885	High School Graduate	CALAPAN SCHOOL OF ARTS AND TRADES	1986	\N		3701	1982	1986		\N		0
13886	College Graduate	UNIVERSITY OF BATANGAS 	1990	\N		3701	1986	1990		\N		1270
13887	Doctorate Degree	UNIVERSITY OF BATANGAS 	2020	\N		3701	2016	2019		\N		1310
13888	Elementary Graduate	BATANGAS CITY SOUTH ELEMENTARY SCHOOL	1987	\N		3702	1981	1987		\N		0
13889	Elementary Graduate	BATANGAS CITY SOUTH ELEMENTARY SCHOOL	1987	\N		3702	1981	1987		\N		0
13890	High School Graduate	WESTERN PHILIPPINE COLLEGES (FORMER UNIVERSITY OF BATANGAS)	1991	\N		3702	1987	1991		\N		0
13891	College Graduate	WESTERN PHILIPPINE COLLEGES (FORMER UNIVERSITY OF BATANGAS)	1995	\N		3702	1991	1995		\N		1360
13892	Master's Degree	GOLDEN GATE COLLEGES	2006	\N		3702	2004	2006		\N		1255
13893	Elementary Graduate	BATANGAS CITY EAST ELEMENTARY SCHOOL	2003	\N	WITH HONORS	3703	1997	2003		\N		0
13894	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL 	2007	\N		3703	2003	2007		\N		0
13895	Elementary Graduate	BATANGAS CITY SOUTH ELEM. SCHOOL 	1988	\N		3704	1982	1988		\N		0
13896	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL 	1992	\N		3704	1988	1992		\N		0
13897	College Graduate	LYCEUM OF THE PHILIPPINES UNIVERSITY- BATANGAS 	1996	\N		3704	1992	1996		\N		1362
13898	Master's Degree	NATIONAL TEACHERS COLLEGE 		\N		3704	2014	2016	CAR	\N		1363
13899	College Graduate	BATANGAS STATE UNIVERSITY	2011		MSFP SCHOLAR, EBD SCHOLAR	3703	2007	2011			MAJOR IN ENGLISH  	1318
13900	Master's Degree	GOLDEN GATE COLLEGES 	2018			3703	2016	2018			MAJOR IN ENGLISH	1291
13901	Master's Degree	BATANGAS STATE UNIVERSITY				3703	2011	2016	39 UNITS WITH COMPREHENSIVE EXAMINATION 		MAJOR IN ENGLISH LANGUAGE TEACHING 	1333
13902	Elementary Graduate	WESTERN PHILIPPINE COLLEGES	1987			3705	1981	1987				0
13903	High School Graduate	PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY	1991			3705	1987	1991				0
13904	College Graduate	GOLDEN GATE COLLEGES 	1995		WITH ACADEMIC/ DISTINCTION 	3705	1991	1995				1346
13905	Master's Degree	BATANGAS STATE UNIVERSITY				3705	1996	1999	COMPLETED ACADEMIC REQUIREMENTS			1253
13906	Master's Degree	LYCEUM OF THE PHILIPPPINES UNIVERSITY	2014			3705	2013	2014				1341
13907	Elementary Graduate	SAINT BRIDGET COLLEGE	1977	\N		3706	1971	1977		\N		0
13908	High School Graduate	SAINT BRIDGET COLLEGE	1981	\N		3706	1977	1981		\N		0
13909	College Graduate	PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY (NOW BATANGAS STATE UNIVERSITY)		\N		3706	1931	1986		\N		1362
13910	Elementary Graduate	TUOLO 1 ELEMENTARY SCHOOL 	2002	\N	SECOND HONOR 	3707	1996	2002		\N		0
13911	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL 	2006	\N		3707	2002	2006		\N		0
13912	College Graduate	COLEGIO NG LUNGSOD NG BATANGAS 	2010	\N	CLB SCHOLAR	3707	2006	2010		\N	MAJOR IN CONTENT COURSE	1298
13913	Doctorate Degree	UNIVERSITY OF BATANGAS 	2019	\N		3707	2015	2019		\N	MAJOR IN EDUCATIONAL MANAGEMENT	1365
13914	Elementary Graduate	BATANGAS CITY SOUTH ELEMENTARY SCHOOL	1994	\N	2nd HONOR	3708	1988	1994		\N		0
13915	High School Graduate	UNIVERSITY OF BATANGAS	1998	\N		3708	1994	1998		\N		0
13916	Elementary Graduate	TABANGAO ELEMENTARY SCHOOL	1990	\N	FIRST HONORABLE MENTION	3709	1984	1990		\N		0
13918	Elementary Graduate	SAN LUIS-CONDES ELEMENTARY SCHOOL	1991	\N		3710	1985	1991		\N		0
13920	Master's Degree	GOLDEN GATE COLLEGES	2020	\N		3710	2018	2020		\N	ELEMENTARY EDUCATION	1291
13919	College Graduate	THE NATIONAL TEACHERS COLLEGE	1999	\N		3710	1995	1999		\N		1303
13921	High School Graduate	NORTHERN ANTIQUE VOCATIONAL SCHOOL	1995			3710	1991	1995				0
13922	Master's Degree	BATANGAS STATE UNIVERSITY			PROVINCIAL SCHOLAR	3712	2018	2025	36		EDUCATIONAL MANAGEMENT	1367
13923	Elementary Graduate	STO. NINO ELEMENTARY SCHOOL	1989			3711	1982	1989				0
13924	High School Graduate	STO. NINO BARANGAY HIGH SCHOOL	1993			3711	1989	1993				0
13925	College Graduate	PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY	1997			3711	1993	1997				1298
13926	Master's Degree	GOLDEN GATE COLLEGES	2019			3711	2018	2019				1368
13927	Elementary Graduate	HALIGUE KANLURAN ELEMENTARY SCHOOL	1998		FIFTH HONORS	3713	1992	1998				0
13928	High School Graduate	STO. NINO NATIONAL HIGH SCHOOL	2002		FOURTH HONORS	3713	1998	2002				0
13929	College Graduate	UNIVERSITY OF BATANGAS	2007			3713	2003	2007			ENGLISH	1270
13930	Doctorate Degree	UNIVERSITY OF BATANGAS`	2020			3713	2016	2020			ENGLISH	1365
13931	Master's Degree	GOLDEN GATE COLLEGES	2019			3714	2004	2019				1369
13932	Elementary Graduate	PINAMUKAN ELEMENTARY SCHOOL	1994		WITH HONORS	3715	1988	1994				0
13933	High School Graduate	PINAMUKAN NATIONAL HIGH SCHOOL	1998		WITH HONORS	3715	1994	1998				0
13934	College Graduate	BATANGAS STATE UNIVERSITY	2002		WITH HONORS	3715	1998	2002				1270
13935	Master's Degree	POLYTHECNIC UNIVERSITY OF THE PHILIPPINES	2016			3715	2013	2016				1367
13936	Master's Degree	METRO MANILA COLLEGE	2015			3716	2016	2018			MAJOR IN EDUCATIONAL MANAGEMENT	1291
13937	Elementary Graduate	JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	2003			3717	1997	2003				0
13938	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2007			3717	2003	2007				0
13939	College Graduate	BATANGAS STATE UNIVERSITY	2011			3717	2007	2011			MATHEMATICS	1270
13940	Master's Degree	GOLDEN GATE COLLEGES	2015			3717	2013	2015			EDUCATIONAL ADMINISTRATION	1284
13941	Master's Degree	GOLDEN GATE COLLEGES	2018			3717	2016	2018			MATHEMATICS	1291
13942	Master's Degree	PHILIPPINE COLLEGE OF HEALTH SCIENCES, INC.	2022			3718	2019	2022			MAJOR IN EDUCATIONAL MANAGEMENT	1291
13943	Elementary Graduate	PINAMUKAN IBABA ELEMENTARY SCHOOL	2006		WITH HONOR	3720	2000	2006				0
13944	High School Graduate	PINAMUCAN NATIONAL HIGH SCHOOL	2010		EBD SCHOLAR / BEST IN	3720	2006	2010				0
13945	College Graduate	ST. BRIGDET COLLEGE				3720	2010	2013	2013		MAJOR IN EARLY CHILDHOOD EDUCATION	1298
13946	College Graduate	UNIVERSITY OF BATANGAS	2015			3720	2013	2015			MAJOR IN EARLY CHILDHOOD EDUCATION	1298
13947	Master's Degree	GOLDEN GATE COLLEGES	2017			3720	2016	2017			MAJOR IN ELEMENTARY EDUCATION	1344
13948	Elementary Graduate	STA. CLARA ELEMENTARY SCHOOL	1999			3721	1993	1999				0
13949	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2003			3721	1999	2003				0
13950	College Graduate	BATANGAS STATE UNIVERSITY	2007			3721	2003	2007			BACHELOR OF SCIENCE IN COMPUTER EDUCATION	1270
13951	Master's Degree	GOLDEN GATE COLLEGES				3721	2023	2024	27 UNITS		TECHNOLOGY AND LIVELIHOOD EDUCATION	1284
13952	High School Graduate	TABANGAO NATIONAL HIGH SCHOOL	1994		SIXTH PLACE	3709	1990	1994				0
13953	College Graduate	GOLDEN GATE COLLEGES	1998		PESFA SCHOLAR	3709	1994	1998				1298
13954	Master's Degree	GOLDEN GATE COLLEGES	2016			3709	2004	2016				1291
13955	Elementary Graduate	ALANGILAN CENTRAL ELEMENTARY SCHOOL	2006			3718	2002	2006				0
13956	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2010			3718	2006	2010				0
13957	College Graduate	ST. BRIDGET COLLEGE	2015			3718	2010	2015			MAJOR IN EARLY CHILDHOOD EDUCATION	1298
13958	Elementary Graduate	TULO II ELEMENTARY SCHOOL	1998			3722	1992	1998				0
13959	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2002			3722	1998	2002				0
13960	College Graduate	BATANGAS STATE UNIVERSITY	2006			3722	2002	2006				1270
13961	Master's Degree	BATANGAS STATE UNIVERSITY	2017			3722	2015	2017				1367
13962	Elementary Graduate	CALICANTO ELEMENTARY SCHOOL	2002			3712	1995	2002				0
13963	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2006			3712	2002	2006				0
13964	College Graduate	WESTMEAD INTERNATIONAL SCHOOL	2013			3712	2007	2013			MAJOR IN PRESCHOOL EDUCATION	1298
13965	Vocational Graduate	RTC-TESDA CALABARZON	2014		SCHOLAR	3712	2014	2014				1372
13966	Elementary Graduate	PALLOCA WEST ELEMENTARY SCHOOL	1989			3714	1982	1989				0
13967	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1993			3714	1989	1993				0
13968	College Graduate	PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY (P.B.M.I.T.)	1997			3714	1993	1997				1298
13969	Elementary Graduate	UNIVERSITY OF BATANGAS	1994			3716	1998	1994				0
13970	High School Graduate	UNIVERSITY OF BATANGAS	1998			3716	1994	1998				0
13971	College Graduate	SAINT BRIDGET COLLEGE	2002			3716	1998	2002				1298
13972	Elementary Graduate	SAN JUAN ELEMENTARY SCHOOL	2011		THIRD HONOR	3723	2005	2011				0
13973	High School Graduate	TINGLOY NATIONAL HIGH SCHOOL	2015			3723	2011	2015				0
13974	College Graduate	BATANGAS STATE UNIVERSITY	2019			3723	2015	2019			MATHEMATICS	1270
13975	Master's Degree	GOLDEN GATE COLLEGES				3723	2023	2025	27 UNITS		MATHEMATICS	1291
13976	Elementary Graduate	LOBO CENTRAL ELEMENTARY SCHOOL	1992			3724	1986	1992				0
13977	High School Graduate	MASAGUITSIT BANALO NATIONAL HIGH SCHOOL	1996			3724	1992	1996				0
13978	College Graduate	BATANGAS STATE UNIVERSITY	2001			3724	1996	2001			MAJOR IN ENGLISH	1314
13979	Master's Degree	GOLDEN GATE COLLEGES	2016			3724	2014	2016				1373
13980	Elementary Graduate	STA CLARA ELEMENTARY SCHOOL	2005			3725	2000	2005				0
13981	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2009			3725	2005	2009				0
13982	College Graduate	COLEGIO NG LUNGSOD NG BATANGAS	2013		WITH DISTINCTIONS	3725	2009	2013				1280
13983	Master's Degree	GOLDEN GATE COLLEGES				3725	2022	2025			EDUCATIONAL MANAGEMENT	1284
13984	Elementary Graduate	TINGA LABAC ELEMENTARY SCHOOL	2009		FIRST HONORABLE MENTION	3726	2003	2009				0
13985	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2013			3726	2009	2013				0
13986	College Graduate	ST. BRIDGET COLLEGE				3726	2013	2017				1375
13987	Elementary Graduate	BATANGAS CITY EAST ELEMENTARY SCHOOL	2005			3727	1999	2005				0
13988	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2009			3727	2005	2009				0
13989	College Graduate	ST. BRIDGET COLLEGE	2015			3727	2009	2015			MAJOR IN EARLY CHILDHOOD EDUCATION	1298
13990	Master's Degree	GOLDEN GATE COLLEGES				3727	2016	2017	33 UNITS		MAJOR IN EARLY CHILDHOOD EDUCATION	1348
13991	Elementary Graduate	CORCUERA CENTRAL SCHOOL	1999			3728	1993	1999				0
13992	High School Graduate	CORCUERA NATIONAL HIGH SCHOOL	2003			3728	1999	2003				0
13993	College Graduate	ROMBLON STATE UNIVERSITY	2007			3728	2003	2007				1377
13994	Master's Degree	GOLDEN GATE COLLEGES	2022		BEST IN COMPREHENSIVE EXAM	3728	2019	2022			SOCIAL STUDIES	1291
13995	Elementary Graduate	HALIGUE SILANGAN ELEMENTARY SCHOOL	2001			3729	1995	2001				0
13996	High School Graduate	STO. NINO NATIONAL HIGH SCHOOL	2005			3729	2001	2005				0
13997	College Graduate	COLEGIO NG LUNGSOD NG BATANGAS	2010			3729	2006	2010				1290
13998	Master's Degree	GOLDEN GATE COLLEGES	2018			3729	2015	2018			MAJOR IN EDUCATIONAL ADMNISTRATION	1291
14006	Elementary Graduate	SAN MIGUEL ELEMENTARY SCHOOL	2005			3731	1999	2005				0
14007	High School Graduate	BATANGAS NATIONAL HIGHSCHOOL	2009			3731	2005	2009				0
14008	College Graduate	COLEGIO NG LUNGSOD NG BATANGAS	2013			3731	2009	2013				1298
14009	Master's Degree	BATANGAS STATE UNIVERSITY	2020			3731	2018	2020				1367
14014	Elementary Graduate	HALIGUE SILANGAN ELEMENTARY SCHOOL	1996			3734	1990	1996				0
14015	High School Graduate	STO. NINO NATIONAL HIGH SCHOOL	2000			3734	1996	2000				0
14016	College Graduate	LIPA CITY COLLEGES	2009			3734	2007	2009				1298
14017	Master's Degree	BATANGAS STATE UNIVERSITY				3734	2011	2025	42 UNITS		EDUCATIONAL MANAGEMENT	1291
13999	Elementary Graduate	MARIKINA ELEMENTARY SCHOOL	2002			3730	1995	2002				0
14000	High School Graduate	MALABRIGO NATIONAL HIGH SCHOOL	2006			3730	2002	2006				0
14001	College Graduate	BATANGAS STATE UNIVERSITY MAIN CAMPUS 1	2014		UNIVERSITY SCHOLAR 2013-2014	3730	2010	2014			TLE	1270
14002	Elementary Graduate	BILOGO ELEMENTARY SCHOOL	2007			3732	2001	2007				0
14003	High School Graduate	PAHARANG NATIONAL HIGH SCHOOL	2011			3732	2007	2011				0
14004	College Graduate	COLEGIO NG LUNGSOD NG BATANGAS	2016			3732	2012	2016			GENERAL EDUCATION	1290
14005	Master's Degree	PHILIPPINE INTERCONTINENTAL COLLEGE				3732	2023	2025	30 UNITS			1304
14010	Elementary Graduate	MALITAM ELEMENTARY SCHOOL	2008			3733	2002	2008				0
14011	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2012			3733	2008	2012				0
14012	College Graduate	COLEGIO NG LUNGSOD NG BATANGAS	2016			3733	2012	2016				1298
14013	Master's Degree	PACIFIC INTERCONTINENTAL COLLEGE				3733	2023	2025	39 UNITS		EDUCATIONAL MANAGEMENT	1344
14018	Elementary Graduate	TOMASA C. PASIA MEMORIAL ELEMENTARY SCHOOL	2002			3735	1996	2002				0
14019	High School Graduate	CUENCA INSTITUTE	2006			3735	2002	2006				0
14020	College Graduate	UNIVERSITY OF BATANGAS	2011			3735	2006	2011			EARLY CHILDHOOD EDUCATION	1298
14021	Elementary Graduate	CONDE  ITAAS ELEMENTARY SCHOOL	2000		FIRST HONOR	3736	1994	2000				0
14022	High School Graduate	CONDE LABAC NATIONAL HIGH SCHOOL	2004		FIRST HONORABLE MENTION	3736	2000	2004				0
14023	College Graduate	UNIVERSITY OF BATANGAS	2008		SM SCHOLARSHIP FOUNDATION	3736	2004	2008				1290
14024	Master's Degree	GOLDEN GATE COLLEGES	2017			3736	2014	2017				1284
14025	Elementary Graduate	JULIAN A. PASTOR MEMORIAL ELEMENTARY SCHOOL	2007			3737	2001	2007				0
14026	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2011			3737	2007	2011				0
14027	College Graduate	COLEGIO NG LUNGSOD NG BATANGAS 	2015		WITH DISTINCTION	3737	2011	2015				1298
14028	Master's Degree	BATANGAS STATE UNIVERSITY	2021			3737	2018	2021			MAJOR IN EDUCATIONAL MANAGEMENT	1333
14029	Elementary Graduate	SIXTO BABAO ELEMENTARY SCHOOL	2007			3738	2002	2007				0
14030	High School Graduate	ALTERNATIVE LEARNING SYSTEM	2011			3738	2010	2011				0
14031	College Graduate	ST. BRIDGET COLLEGE	2018			3738	2013	2018				1290
14032	Elementary Graduate	MABINI CENTRAL SCHOOL	1994			3739	1988	1994				0
14033	High School Graduate	SAINT FRANCIS ACADEMY	1998			3739	1995	1998				0
14034	College Graduate	UNIVERSITY OF BATANGAS	2008			3739	1998	2008				1298
14035	Master's Degree	GOLDEN GATE COLLEGES	2018			3739	2013	2018			ADMINISTRATION	1291
14036	Elementary Graduate	PALLOCAN ELEMENTARY SCHOOL	1983		FIRST HONOR	3741	1977	1983				0
14037	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1987		WORKING SCHOLAR	3741	1983	1987				0
14038	College Graduate	SAINT BRIDGET'S COLLEGE	1991		WORKING SCHOLAR	3741	1987	1991				1298
14039	Master's Degree	BATANGAS STATE UNIVERSITY				3741	1993	1993	6 UNITS		MAJOR IN EDUCATIONAL MANAGEMENT	1333
14040	Elementary Graduate	PALLOCAN ELEMENTARY SCHOOL	1995			3740	1989	1995				0
14041	High School Graduate	GOLDEN GATE COLLEGES	1999			3740	1995	1999				0
14042	College Graduate	GOLDEN GATE COLLEGES	2003			3740	1999	2003				1290
14043	Master's Degree	GOLDEN GATE COLLEGES	2018			3740	2016	2018			EDUCATIONAL MANAGEMENT	1291
14044	Elementary Graduate	LOBO CENTRAL SCHOOL	1977			3742	1971	1977				0
14045	High School Graduate	LOBO INSTITUTE	1981			3742	1977	1981				0
14047	Master's Degree	GOLDEN GATE COLLEGE	1992			3742	1990	1992				1291
14046	College Graduate	WESTERN PHILIPPINE COLLEGE	1987			3742	1982	1986				1314
14048	Elementary Graduate	GUINTO ELEMENTARY SCHOOL	2003			3743	1997	2003				0
14049	High School Graduate	TALUMPOK NATIONAL HIGH SCHOOL	2007			3743	2003	2007				0
14050	College Graduate	COLEGIO NG LUNGSOD NG BATANGAS 	2011			3743	2007	2011				1290
14051	Master's Degree	BATANGAS STATE UNIVERSITY MAIN CAMPUS I	2018			3743	2016	2018			MAJOR IN EDUCATIONAL MANAGEMENT	1333
14052	Elementary Graduate	BATANGAS CITY EAST ELEMENTARY SCHOOL	1982			3744	1976	1982				0
14053	High School Graduate	WESTERN PHILIPPINE COLLEGE	1986			3744	1982	1986				0
14054	College Graduate	ST. BRIDGET COLLEGE	1990			3744	1986	1990				1290
14055	Master's Degree	GOLDEN GATE COLLEGES	2023		BEST IN COMPREHENSIVE EXAM	3744	2007	2023			ELEMENTARY EDUCATION	1291
14056	Elementary Graduate	BANSUD CENTRAL SCHOOL	1994			3745	1988	1994				0
14057	High School Graduate	MASAGUTSIT BANALO NATIONAL HIGH SCHOOL	1998			3745	1994	1998				0
14058	College Graduate	UNIVERSITY OF BATANGAS	2002			3745	1998	2002				1298
14059	Master's Degree	GOLDEN GATE COLLEGES	2018			3745	2016	2018			MAJOR IN EDUCATIONAL MANAGEMENT	1291
14060	Elementary Graduate	UNIVERSITY OF BATANGAS 	2007			3746	2001	2007				0
14061	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2011			3746	2008	2011				0
14062	College Graduate	COLEGIO NG LUNGSOD NG BATANGAS 	2019			3746	2015	2019				1290
14063	Master's Degree	BATANGAS STATE UNIVERSITY				3746	2021	2025	18 UNITS		EDUCATIONAL MANAGEMENT 	1291
14064	Elementary Graduate	JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	1992	\N	8th HONOR	3748	1986	1992		\N		0
14065	College Graduate	SAINT BRIDGET COLLEGE	2002	\N	STUDENT ASSISTANT	3748	1998	2002		\N		1298
14066	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1996	\N		3748	1992	1996		\N		0
14067	Doctorate Degree	PHILIPPINE COLLEGE OF HEALTH SCIENCES, INC.	2023	\N		3748	2017	2023		\N	EDUCATIONAL MANAGEMENT	1338
14068	Elementary Graduate	GOLDEN GATE SCHOOL	1986		THIRD HONOR	3747	1985	1986				0
14069	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1990			3747	1986	1990				0
14070	College Graduate	WESTERN PHILIPPINE COLLEGE	1994			3747	1990	1994				1298
14071	Elementary Graduate	UNIVERSITY OF BATANGAS	1999			3749	1993	1999				0
14072	High School Graduate	BATANGAS STATE UNIVERSITY	2003			3749	1999	2003				0
14073	College Graduate	BATANGAS STATE UNIVERSITY	2007		SANGGUNIANG KABATAAN STUDY GRANT	3749	2003	2007				1250
14074	Elementary Graduate	BUCAL ELEMENTARY SCHOOL	1982			3750	1976	1982				0
14075	High School Graduate	WESTERN PHILIPPINE COLLEGES	1986			3750	1982	1986				0
14076	College Graduate	WESTERN PHILIPPINE COLLEGES	1990			3750	1986	1990				1298
14077	Elementary Graduate	PALLOCAN ELEMENTARY SCHOOL	1990			3751	1984	1990				0
14078	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1994			3751	1990	1994				0
14079	College Graduate	UNIVERSITY OF BATANGAS	2003			3751	1994	1998				1290
14080	Master's Degree	UNIVERSITY OF BATANGAS				3751	2011	2013	33 UNITS		MAJOR IN FILIPINO	1328
14081	Elementary Graduate	BUCAL ELEMENTARY SCHOOL	1997			3752	1991	1997				0
14082	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2001			3752	1997	2001				0
14083	College Graduate	BATANGAS STATE UNIVERSITY	2005			3752	2001	2005				1290
14084	Master's Degree	ST. JUDE COLLEGE PHINMA	2018			3752	2016	2018			EDUCATIONAL MANAGEMENT	1291
14085	Elementary Graduate	BUCAL ELEMENTARY SCHOOL	2000		CLASS SALUTATORIAN	3753	1994	2000				0
14086	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2004		SCHOOL SCHOLAR	3753	2000	2004				0
14087	College Graduate	UNIVERSITY OF BATANGAS	2010		EBD SCHOLAR	3753	2008	2010				1298
14088	College Graduate	SAINT BRIDGET COLLEGE 				3753	2004	2007	32 UNITS			1298
14089	Master's Degree	ST. JUDE COLLEGE PHINMA	2018			3753	2016	2018			MAJOR IN EDUCATIONAL MANAGEMENT	1333
14090	Elementary Graduate	BUCAL ELEMENTARY SCHOOL	1992		THIRS HONORABLE	3755	1986	1992				0
14091	High School Graduate	DR. CONCEPCION A. AGUILA MEMORIAL COLLEGE	1996		THIRD HONORABLE	3755	1993	1996				0
14092	College Graduate	UNIVERSITY OF BATANGAS	2000			3755	1997	2000			MATHEMATICS	1298
14093	Master's Degree	GOLDEN GATE COLLEGES	2015			3755	2013	2015			EDUCATIONAL ADMINISTRATION	1284
14094	Elementary Graduate	BATANGAS CITY SOUTH ELEMENTARY SCHOOL	2007			3754	2001	2007				0
14095	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2011			3754	2007	2011				0
14096	College Graduate	COLEGIO NG LUNGSOD NG BATANGAS 	2016			3754	2012	2016				1290
14097	Master's Degree	BATANGAS STATE UNIVERSITY				3754	2017	2024	33			1367
14098	Elementary Graduate	WESTERN PHILIPPINE COLLEGES	1995			3756	1989	1995				0
14099	High School Graduate	UNIVERSITY OF BATANGAS	1999			3756	1995	1999				0
14100	College Graduate	BATANGAS STATE UNIVERSITY	2003			3756	1999	2003				1298
14101	Master's Degree	GOLDEN GATE COLLEGES 	2017			3756	2016	2017			MAJOR IN EDUCATIONAL ADMINISTRAION	1284
14102	Master's Degree	UNIVERSITY OF BATANGAAS	2017			3756	2006	2012				1379
14103	Elementary Graduate	ZAPOTE ELEMENTARY SCHOOL	2000			3757	1994	2000				0
14104	High School Graduate	LAS-PINAS NORTH NATIONAL HIGH SCHOOL	2004			3757	2000	2004				0
14105	College Graduate	BATANGAS STATE UNIVERSITY	2009			3757	2004	2009				1307
14106	Master's Degree	PHILIPPINE NORMAL UNIVERSITY				3757	2022	2025	39 UNITS			1380
14107	Elementary Graduate	BUCAYAO ELEMENTARY SCHOOL	1978		CERTIFICATE	3758	1972	1978				0
14108	High School Graduate	BANABA WEST NATIONAL HIGH SCHOOL	1984		DIPLOMA	3758	1981	1984				0
14109	College Graduate	DIVINE WORD COLLEGE OF CALAPAN	1984		DIPLOMA	3758	1981	1984				1298
14110	Master's Degree	GOLDEN GATE COLLEGES	1998		CERTIFICATE	3758	1996	1998			MAJOR IN EDUCATIONAL SUPERVISION AND ADMINISTRATION	1348
14111	Elementary Graduate	BUCAL ELEMENTARY SCHOOL	2002			3760	1996	2002				0
14112	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2006			3760	2002	2006				0
14113	College Graduate	ST. BRIDGET COLLEGE 	2010			3760	2006	2010				1298
14114	Doctorate Degree	UNIVERSITY OF PERPETUAL HELP SYSTEM DALTA				3760	2019	2024			MAJOR IN EDUCATIONAL MANAGEMENT	1365
14115	Elementary Graduate	CONCEPCION ELEMENTARY SCHOOL	1996			3759	1991	1996				0
14116	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2000			3759	1997	2000				0
14117	College Graduate	UNIVERSITY OF BATANGAS	2004			3759	2001	2004				1290
14118	Master's Degree	GOLDEN GATE COLLEGES	2011			3759	2007	2011				1291
14119	Elementary Graduate	PADRE IMO LUNA MEMORIAL ELEMENTARY	2000			3761	1994	2000				0
14120	High School Graduate	SAINT JOSEPH ACADEMY	2005			3761	2000	2005				0
14121	College Graduate	UNIVERSITY OF BATANGAS 	2009			3761	2005	2009				1290
14122	Master's Degree	ST. JUDE COLLEGE				3761	2016	2017	27 UNITS			1291
14123	Elementary Graduate	BUCAL ELEMENTARY SCHOOL	1982		SECOND HONORS	3762	1976	1982				0
14124	High School Graduate	WESTERN PHILIPPINE COLLEGES	1986			3762	1982	1986				0
14125	College Graduate	WESTERN PHILIPPINE COLLEGES	1990			3762	1986	1990				1290
14126	Master's Degree	GOLDEN GATE COLLEGES				3762	1992	1999	45 UNITS			1284
14127	Elementary Graduate	HALIGUE KANLURAN ELEMENTARY SCHOOL	1979		THIRD HONORABLE MENTION	3764	1973	1979				0
14128	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1983			3764	1979	1983				0
14129	Vocational Graduate	TECHNICAL EDUCATION AND SKILLS DEVELOPMENT AUTHORITY	1988			3764	1988	1988				1381
14130	College Graduate	GOLDEN GATE COLLEGES	1987			3764	1983	1987				1298
14131	Master's Degree	GOLDEN GATE COLLEGES				3764	1996	2000	45 UNITS			1284
14132	Elementary Graduate	CEMBO ELEMENTARY SCHOOL	1974			3763	1968	1974				0
14133	High School Graduate	MAKATI HIGH SCHOOL	1978			3763	1974	1978				0
14134	College Graduate	MANUEL L. QUEZON UNIVERSITY	1982			3763	1978	1982				1382
14135	Elementary Graduate	BUCAL ELEMENTARY SCHOOL	1980			3765	1974	1980				0
14136	High School Graduate	WESTERN PHILIPPINE COLLEGES	1984			3765	1980	1984				0
14137	College Graduate	WESTERN PHILIPPINE COLLEGES	1988			3765	1984	1988				1307
14138	Master's Degree	GOLDEN GATE COLLEGES				3765	1997	1999	42 UNITS			1291
14139	Elementary Graduate	BANABA WEST ELEMENTYARY SCHOOL	1999			3766	1993	1999				0
14140	High School Graduate	BANABA WEST NATIONAL HIGH SCHOOL	2003			3766	1999	2003				0
14141	College Graduate	LYCEUM OF THE PHILIPPINES UNIVERSITY	2007		STUDENT ASSISTANT	3766	2003	2007				1353
14142	Master's Degree	LYCEUM OF THE PHILIPPINES UNIVERSITY	2012		INSTITUTIONAL SCHOLAR	3766	2011	2012				1352
14143	Elementary Graduate	BUCAL ELEMENTARY SCHOOL	2003	\N		3767	1996	2003		\N		0
14144	High School Graduate	BATANGASA NATIONAL HIGH SCHOOL	2007	\N		3767	2003	2007		\N		0
14145	College Graduate	COLEGIO NG LUNGSOD NG BATANGAS	2011	\N		3767	2007	2011		\N	CONTENT COURSE	1290
14146	Master's Degree	ST. JUDE COLLEGE PHINMA	2018	\N		3767	2016	2018		\N	MAJOR IN EDUCATIONAL MANAGEMENT	1291
14147	Elementary Graduate	CUMBA ELEMENTARY SCHOOL	2010			3768	2004	2010				0
14148	High School Graduate	CONDE LABAC NATIONAL HIGH SCHOOL	2014			3768	2010	2014				0
14149	Vocational Graduate	TECHNICAL EDUCATION AND SKILLS DEVELOPMENT AUTHORITY	2019			3768	2019	2019				1383
14150	College Graduate	BATANGAS STATE UNIVERSITY	2018			3768	2014	2018				1290
14151	Master's Degree	GOLDEN GATE COLLEGES				3768	2022	2025	18 UNITS		EDUCATIONAL MANAGEMENT	1291
14152	Elementary Graduate	MALITAM ELEMENTRAY SCHOOL 	2003			3769	1997	2003				0
14153	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL 	2007			3769	2003	2007				0
14154	College Graduate	COLEGIO NG LUNGSOD NG BATANGAS 	2011			3769	2007	2011				1290
14155	Master's Degree	GOLDEN GATE COLLEGES	2017			3769	2012	2017			EDUCATIONAL ADMINISTRATION	1348
14156	Elementary Graduate	LIPONPON ELEMENTARY SCHOO;	1993	\N		3772	1987	1993		\N		0
14157	High School Graduate	SAN AGUSTIN NATIONAL HIGH SCHOOL	1997	\N		3772	1993	1997		\N		0
14158	Vocational Graduate	CRISTOREY INSTITUTE AND TECHNOLOGY	2015	\N		3772	2015	2015		\N		1384
14159	College Graduate	BATANGAS STATE UNIVERSITY	2001	\N		3772	1997	2001		\N		1318
14160	Master's Degree	PACIFIC INTERCONTINENTAL COLLEGE (PIC)		\N		3772	2023	2025	39 UNITS	\N	MAJOR IN EDUCATIONAL MANAGEMENT	1291
14161	Elementary Graduate	BANABA ELEMENTARY SCHOOL	1999		VALEDICTORIAN	3774	1992	1999				0
14162	High School Graduate	SAN PASCUAL NATIONAL HIGH SCHOOL	2003		ACHIEVER	3774	1999	2003				0
14163	College Graduate	BATANGAS STATE UNIVERSITY	2008		DOST SCHOLAR	3774	2003	2008			MAJOR IN MECHANICAL ENGINEERING TECHNOLOGY	1282
14164	College Graduate	BATANGAS STATE UNIVERSITY				3774	2010	2011	18 UNITS			1274
14165	Master's Degree	GOLDEN GATE COLLEGES	2020		BEST THESIS PRESENTER	3774	2018	2020			MAJOR IN TECHNOLOGY AND LIVELIHOOD EDUCATION	1333
14166	Doctorate Degree	SAINT DOMINIC SAVIO COLLEGE	2023			3774	2021	2023			MAJOR IN SCHOOL LEADERSHIP AND MANAGEMENT	1349
14167	Elementary Graduate	JULIANA A. PASTOR MEMORIAL ELEMENTARY SCHOOL	2004	\N	RANK 6	3775	1999	2004		\N		0
14168	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL 	2009	\N		3775	2004	2009		\N		0
14169	College Graduate	BATANGAS STATE UNIVERSITY	2013	\N		3775	2009	2013		\N	MAJOR IN ENGLISH	1270
14170	Master's Degree	BATANGAS STATE UNIVERSITY		\N		3775	2015	2023	36 UNITS	\N		1385
14171	Elementary Graduate	TINGA LABAC ELEMENTARY SCHOOL	1994			3776	1988	1994				0
14172	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1998			3776	1994	1998				0
14173	College Graduate	BATANGAS STATE UNIVERSITY	2002			3776	1998	2002				1298
14174	Master's Degree	GOLDEN GATE COLLEGES	2019			3776	2017	2019			MAJOR IN PRE SCHOOL	1348
14175	Elementary Graduate	BANABA WEST ELEMENTARY SCHOOL	1996			3777	1990	1996				0
14176	High School Graduate	BANABA WEST NATIONAL HIGH SCHOOL	2000			3777	1996	2000				0
14177	College Graduate	BATANGAS STATE UNIVERSITY	2005			3777	2000	2005			PSYCHOLOGY	1386
14178	Elementary Graduate	BANABA WEST ELEMENTARY SCHOOL	1983			3778	1977	1983				0
14179	High School Graduate	BANABA WEST BARANGAY HIGH SCHOOL	1987			3778	1983	1987				0
14180	College Graduate	GOLDEN GATE COLLEGES	1993			3778	1989	1993				1298
14181	Elementary Graduate	PARANG ELEMENTARY SCHOOL	1976	\N		3779	1970	1976		\N		0
14182	High School Graduate	ISLA VERDE HIGH SCHOOL	1980	\N		3779	1976	1980		\N		0
14183	College Graduate	WESTERN PHILIPPINE COLLEGES	1985	\N		3779	1980	1985		\N		1318
14184	Elementary Graduate	PARANG ELEMENTARY SCHOOL	1998		VALEDICTORIAN	3771	1992	1998				0
14185	High School Graduate	SAN ANTONIO NATIONAL HIGH SCHOOL	2002			3771	1998	2002				0
14186	College Graduate	MINDORO STATE COLLEGE OF AGRICULTURE & TECHNOLOGY	2006			3771	2002	2006				1318
14187	Elementary Graduate	LIPONPON ELEMENTARY SCHOOL	1993			3770	1987	1993				0
14188	High School Graduate	SAN AGUSTIN NATIONAL HIGH SCHOOL	1997			3770	1993	1997				0
14189	College Graduate	BATANGAS STATE UNIVERSITY	2001			3770	1997	2001				1270
14190	Elementary Graduate	BANABA WEST ELEMENTARY SCHOOL	1992			3780	1986	1992				0
14191	High School Graduate	UNIVERSITY OF BATANGAS	1996			3780	1992	1996				0
14192	College Graduate	UNIVERSITY OF BATANGAS	2004			3780	1996	2004			MAJOR IN MATHEMATICS	1290
14193	Master's Degree	GOLDEN GATE COLLEGES				3780	2009	2014	27		MAJOR IN EDUCATIONAL MANAGEMENT	1291
14194	Elementary Graduate	LIPONPON ELEMENTARY SCHOOL	2000			3773	1994	2000				0
14195	High School Graduate	SAN ANTONIO NATIONAL HIGH SCHOOL	2004			3773	2000	2004				0
14196	College Graduate	SAINT BRIDGET COLLEGE	2009		ST JOHN EUDES SCHOLAR	3773	2005	2009			BIOLOGICAL SCIENCES	1270
14197	Master's Degree	PHILIPPINE COLLEGE OF HEALTH SCIENCE, INC.				3773	2019	2022	43 UNITS		EDUCATIONAL MANAGEMENT	1291
14198	Elementary Graduate	BANABA WEST ELEMENTARY SCHOOL	2008			3781	2002	2008				0
14199	High School Graduate	BANABA WEST NATIONAL HIGH SCHOOL	2012			3781	2008	2012				0
14200	College Graduate	BATANGAS STATE UNIVERSITY	2016			3781	2012	2016				1314
14201	Master's Degree	GOLDEN GATE COLLEGES	2021		BEST IN ACTION RESEARCH	3781	2019	2021			MAJOR IN ELEMENTARY EDUCATION	1333
14202	Elementary Graduate	SANTA CLARA ELEMENTARY SCHOOL	2011			3782	2005	2011				0
14203	High School Graduate	BATANGAS INTEGRATED HIGH SCHOOL	2015			3782	2011	2015				0
14204	College Graduate	BATANGAS STATE UNIVERSITY - TNEU MAIN CAMPUS I	2020			3782	2015	2020				1298
14205	Elementary Graduate	ALANGILAN CENTRAL ELEMENTARY SCHOOL	2010	\N		3783	2004	2010		\N		0
14206	High School Graduate	CASE DEL BAMBINO EMMANUEL MONTESSORI	2014	\N		3783	2010	2014		\N		0
14207	College Graduate	ST. BRIDGET COLLEGE	2019	\N		3783	2014	2019		\N	MAJOR IN EARLY CHILDHOOD EDUCATION	1290
14208	Master's Degree	RIZAL COLLEGE OF TAAL		\N		3783	2023	2025	9 UNITS	\N	MAJOR IN EDUCATION ADMINISTRATION	1291
14209	Elementary Graduate	SAN ANDRES ELEMENTARY SCHOOL	1976			3784	1970	1976				0
14210	High School Graduate	ST. THERESA'S ACADEMY	1981			3784	1977	1981				0
14211	College Graduate	RIZAL TECHNOLOGICAL COLLEGES	1987			3784	1982	1987				1358
14219	Elementary Graduate	TINGA ITAAS ELEMENTARY SCHOOL	2011			3786	2005	2011				0
14220	High School Graduate	TINGA SOROSORO NATIONAL HIGH SCHOOL	2015			3786	2011	2015				0
14221	College Graduate	WESTMEAD INTERNATIONAL SCHOOL	2019		EBD SCHOLAR	3786	2015	2019			PRESCHOOL	1298
14222	Elementary Graduate	BIGA ELEMENTARY SCHOOL	2002			3788	1996	2002				0
14223	High School Graduate	LAIYA NATIONAL HIGH SCHOOL	2006			3788	2002	2006				0
14224	College Graduate	JOSEFENA CERRILES STATE COLLEGE DUMINGAG CAMPUS	2016			3788	2013	2016				1298
14229	Elementary Graduate	STA. CLARA ELEMENTARY SCHOOL	2003			3790	1997	2003				0
14230	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2007			3790	2003	2007				0
14231	College Graduate	COLEGIO NG LUNGSOD NG BATANGAS 	2011			3790	2007	2011				1290
14236	Elementary Graduate	STA. CLARA ELEMENTARY SCHOOL	1992			3792	1986	1992				0
14237	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1996			3792	1992	1996				0
14238	College Graduate	UNIVERSITY OF BATANGAS	2013		DEAN'S LISTER	3792	2009	2013			SOCIAL STUDIES	1290
14239	Master's Degree	BATANGAS STATE UNIVERSITY	2020			3792	2017	2020			EDUCATIONAL MANAGEMENT	1291
14249	Elementary Graduate	STA. CLARA ELEMENTARY SCHOOL	1993			3794	1988	1993				0
14250	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1997			3794	1994	1997				0
14251	College Graduate	BATANGAS STATE UNIVERSITY	2011			3794	1997	2011				1298
14252	Elementary Graduate	LIPONPON ELEMENTARY SCHOOL	2006		2ND HONOR	3797	2000	2006				0
14253	High School Graduate	SAN ANTONIO NATIONAL HIGH SCHOOL	2010		EBD SCHOLARSHIP	3797	2006	2010				0
14254	College Graduate	COLEGIO NG LUNGSOD NG BATANGAS	2014			3797	2010	2014				1290
14255	Master's Degree	GOLDEN GATE COLLEGES	2017			3797	2015	2017			EDUCATIONAL ADMINISTRATION	1284
14212	Elementary Graduate	CALICANTO ELEMENTARY SCHOOL	2011	\N		3787	2005	2011		\N		0
14213	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2015	\N		3787	2011	2015		\N		0
14214	College Graduate	ST. BRIDGET COLLEGE	2019	\N	EBD SCHOLAR	3787	2015	2019		\N	MAJOR IN EARLY CHILDHOOD EDUCATION	1298
14225	Elementary Graduate	STA. CLARA ELEMENTARTY SCHOOL	1955	\N	SECOND HONORABLE MENTION	3789	1989	1955		\N		0
14226	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1999	\N		3789	1995	1999		\N		0
14227	College Graduate	BATANGAS STATE UNIVERSITY	2004	\N		3789	2000	2004		\N		1290
14228	Master's Degree	GOLDEN GATE COLLEGES	2017	\N		3789	2015	2017		\N		1284
14232	Elementary Graduate	WAWA ELEMENTARY SCHOOL	2009	\N		3791	2003	2009		\N		0
14233	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2013	\N		3791	2009	2013		\N		0
14234	College Graduate	COLEGIO NG LUNGSOD NG BATANGAS	2017	\N		3791	2013	2017		\N		1290
14235	Master's Degree	BATANGAS STATE UNIVERSITY - THE NATIONAL ENGINEERING UNIVERSITY		\N		3791	2021	2024	COMPREHENSIVE EXAM PASSER / 33 UNITA	\N	MAJOR IN EDUCATIONAL MANAGEMENT - THESIS PROGRAM	1291
14215	Elementary Graduate	NARRA PILOT ELEMENTARY SCHOOL	1992		OUTSTANDING	3785	1986	1992				0
14216	High School Graduate	NARRA NATIONAL HIGH SCHOOL	1996		6TH HONORS	3785	1992	1996				0
14217	College Graduate	SAN FRANCISCO JAVIER COLLEGE 	2000		WITH DISTINCTION	3785	1996	2000				1298
14218	Master's Degree	GOLDEN GATE COLLEGES 	2014			3785	2014	2014				1328
14240	Elementary Graduate	TALUMPOK PROPER ELEMENTARY SCHOOL	2010		TOP 8	3793	2004	2010				0
14241	High School Graduate	TALUMPOK NATIONAL HIGH SCHOOL 	2014			3793	2010	2014				0
14242	College Graduate	COLEGIO NG LUNGSOD NG BATANGAS 	2018		DEAN'S LISTER	3793	2014	2018				1298
14243	Master's Degree	GOLDEN GATE COLLEGES 	2025			3793	2023	2025			EDUCATIONAL MANAGEMENT	1291
14244	Elementary Graduate	WAWA ELEMENTARY SCHOOL	2010	\N		3795	2004	2010		\N		0
14245	High School Graduate	CONDE LABAC NATIONAL HIGH SCHOOL	2014	\N	8TH PLACE	3795	2010	2014		\N		0
14246	College Graduate	BATANGAS STATE UNIVERSITY	2018	\N	BEST IN PRACTICE TEACHING	3795	2014	2018		\N		1298
14247	Master's Degree	GOLDEN GATE COLLEGES	2021	\N	MAGNA CUM LAUDE	3795	2019	2021		\N	MAJOR IN EDUCATIONAL MANAGEMENT	1291
14248	Doctorate Degree	LYCEUM OF THE PHILIPPINES UNIVERSITY BATANGAS	2024	\N	BEST RESEARCH PRESENTER	3795	2022	2024		\N	SPECIALIZED IN EDUCATION	1259
14256	Elementary Graduate	BANABA WEST ELEMENTARY SCHOOL 	1988			3796	1983	1988				0
14257	High School Graduate	SAINT BRIDGET COLLEGE 	1992			3796	1989	1992				0
14258	College Graduate	PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY	1999			3796	1993	1999				1290
14259	Master's Degree	GOLDEN GATE COLLEGES 	2014			3796	2012	2014			EDUCATIONAL MANAGEMENT 	1333
14260	Elementary Graduate	STA. CLARA ELEMENTARY SCHOOL	2003	\N		3798	1998	2003		\N		0
14261	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2007	\N		3798	2003	2007		\N		0
14262	College Graduate	COLEGIO NG LUNGSOD NG BATANGAS	2011	\N		3798	2008	2011		\N		1298
14263	Elementary Graduate	STA. CLARA ELEMENTARY SCHOOL	1994			3800	1988	1994				0
14264	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1998			3800	1994	1998				0
14265	College Graduate	BATANGAS STATE UNIVERSITY	2001			3800	1998	2001				1290
14266	Master's Degree	BATANGAS STATE UNIVERSITY - THE NATIONAL ENGINEERING UNIVERSITY	2022			3800	2018	2022			EDUCATIONAL MANAGEMENT	1291
14267	Elementary Graduate	HALIGUE SILANGAN ELEMENTARY SCHOOL	2007			3799	2001	2007				0
14268	High School Graduate	STO. NINO NATIONAL HIGH SCHOOL	2011			3799	2007	2011				0
14269	College Graduate	BATANGAS STATE UNIVERSITY	2016			3799	2012	2016				1298
14270	Master's Degree	GOLDEN GATE COLLEGES	2019			3799	2017	2019			PRESCHOOL EDUCATION	1291
14271	Elementary Graduate	CAMIAS NORTH CENTRAL ELEMENTARY SCHOOL 	1999			3801	1993	1999				0
14272	High School Graduate	SAN MIGUEL HIGH SCHOOL 	2003			3801	1999	2003				0
14273	College Graduate	BULACAN AGRICULTURAL STATE COLLEGE	2003			3801	2003	2007				1290
14274	Master's Degree	DR. GLORIA D. LACSON FOUNDATION COLLEGES, INC	2016			3801	2015	2016				1291
14275	Elementary Graduate	BANABA WEST ELEMENTARY SCHOOL  	1982		CERTIFICATE	3803	1976	1982				0
14276	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1986		DIPLOMA	3803	1982	1986				0
14277	College Graduate	PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY (PBMIT)	1990		DIPLOMA	3803	1986	1990				1388
14278	Master's Degree	GOLDEN GATE COLLGES	2008			3803	2008	2008				1291
14279	Elementary Graduate	BANABA WEST ELEMENTARY SCHOOL	2001			3805	1996	2001				0
14280	High School Graduate	BANABA WEST NATIONAL HIGH SCHOOL	2005			3805	2001	2005				0
14281	College Graduate	SAINT BRIDGET COLLEGE	2009			3805	2005	2009			MAJOR IN CONTENT PURPOSE	1298
14282	Master's Degree	PHILIPPINE NORMAL UNIVERSITY				3805	2012	2017	39		MAJOR IN EARLY CHILDHOOD EDUCATION	1291
14283	Elementary Graduate	ALANGILAN CENTRAL SCHOOL	1990			3806	1984	1990				0
14284	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1994			3806	1990	1994				0
14285	College Graduate	PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY	1998			3806	1994	1998				1290
14286	Master's Degree	PHILIPPINE NORMAL UNIVERSITY	2004			3806	1999	2004			MAJOR IN TECHNOLOGY AND HOME ECONOMICS	1291
14287	Elementary Graduate	JULIAN A. PASTOR ELEMENTARY SCHOOL	1978			3804	1972	1978				0
14288	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1982			3804	1978	1982				0
14289	College Graduate	WESTERN PHILIPPINE COLLEGE	1987			3804	1982	1987			MAJOR IN ACCOUNTING	1252
14290	Master's Degree	GOLDEN GATE COLLEGES	2017			3804	2015	2017				1291
14291	Elementary Graduate	BIGAIN ELEMENTARY SCHOOL	2009			3807	2002	2009				0
14292	High School Graduate	HOLY FAMILY MONTESSORI	2013			3807	2009	2013				0
14293	College Graduate	SAINT BRIDGET COLLEGE	2017			3807	2013	2017			MAJOR IN EARLY CHILDHOOD EDUCATION	1298
14294	Master's Degree	GOLDEN GATE COLLEGES	2019			3807	2018	2019			MAJOR IN PRESCHOOL	1333
14295	Elementary Graduate	JULIIAN A. PASTOR MEMORIAL ELEMENTARY SCHOOL	2006			3802	2000	2006				0
14296	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2010			3802	2006	2010				0
14297	College Graduate	BATANGAS STATE UNIVERSITY	2014		EBD / VAD SCHOLAR	3802	2010	2014				1257
14298	Elementary Graduate	BATANGAS CITY EAST ELEMENTARY SCHOOL	1990			3808	1984	1990				0
14299	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1994			3808	1990	1994				0
14300	College Graduate	GOLDEN GATE COLLEGES	1998			3808	1994	1998				1290
14301	Master's Degree	BATANGAS STATE UNIVERSITY	2022			3808	2018	2022			EDUCATIONAL MANAGEMENT	1291
14302	Elementary Graduate	LOBO CENTRAL SCHOOL	1980			3809	1974	1980				0
14303	High School Graduate	LOBO INSTITUTE	1984			3809	1980	1984				0
14304	College Graduate	WESTERN PHILIPPINE COLLEGES	1989			3809	1984	1989				1298
14305	College Graduate	NCPE PAMANTASAN NG LUNGSOD NG MAYNILA	1993			3809	1989	1993			PHYSICAL EDUCATION	1298
14306	Master's Degree	NCPE PAMANTASAN NG LUNGSOD NG MAYNILA				3809	1993	1995	30 UNITS		PHYSICAL EDUCATION	1378
14307	Master's Degree	GOLDEN GATE COLLEGES				3809	1996	1997	9 UNITS			1291
14308	Elementary Graduate	SAN AGAPITO ELEMENTARY SCHOOL	1996			3812	1990	1996				0
14309	High School Graduate	SAN AGAPITO NATIONAL HIGH SCHOOL	2000			3812	1996	2000				0
14310	College Graduate	UNIVERSITY OF BATANGAS	2005		PESFA SCHOLAR	3812	2001	2005				1298
14311	Master's Degree	GOLCEN GATE COLLEGES				3812	2008	2011	24 UNITS			1291
14312	Elementary Graduate	INITAO CENTRAL SCHOOL	1984		CERTIFICATE	3813	1978	1984				0
14313	High School Graduate	XAVIER HIGH SCHOOL	1988		DIPLOMA	3813	1984	1988				0
14314	College Graduate	DON MARIANO MARCOS MEMORIAL STATE UNIVERSITY	2000		DIPLOMA	3813	1988	2000				1298
14315	Elementary Graduate	SIRANG LUPA ELEMENTARY SCHOOL	1990		FIRST HONORABLE MENTION	3810	1985	1990				0
14316	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1995			3810	1990	1995				0
14317	College Graduate	PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY	2000			3810	1996	2000				1290
14318	Master's Degree	BATANGAS STATE UNIVERSITY	2022			3810	2018	2022			EDUCATIONAL MANAGEMENT	1291
14319	Elementary Graduate	STA. CLARA ELEMENTARY SCHOOL	1992			3815	1986	1992				0
14320	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1996			3815	1992	1996				0
14321	College Graduate	BATANGAS STATE UNIVERSITY	2003			3815	1999	2003				1298
14322	Master's Degree	GOLDEN GATE COLLEGES				3815	1996	1996	27 UNITS			1291
14323	Elementary Graduate	JULIAN A. PASTOR MEMORIAL ELEMENTARY SCHOOL	1990			3811	1984	1990				0
14324	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1995			3811	1990	1995				0
14325	College Graduate	BATANGAS STATE UNIVERSITY	2001			3811	1995	2001				1298
14326	Master's Degree	BATANGAS STATE UNIVERSITY	2020			3811	2017	2020			EDUCATIONAL MANAGEMENT	1291
14327	Elementary Graduate	LIBJO ELEMENTARY SCHOOL 	1985			3814	1980	1985				0
14328	High School Graduate	WESTERN PHILIPPINE COLLEGES	1989			3814	1985	1989				0
14329	College Graduate	GOLDEN GATE COLLEGES 	1994			3814	1991	1994				1290
14330	Master's Degree	BATANGAS STATE UNIVERSITY				3814	1996	2001	42 UNITS 		EDUCATIONAL MANAGEMENT	1333
14331	Elementary Graduate	IMMACULATE CONCEPTION COLLEGE	1981	\N	SALUTATORIAN	3816	1974	1981		\N		0
14332	High School Graduate	IMMACULATE CONCEPTION COLLEGE	1985	\N		3816	1981	1985		\N		0
14333	College Graduate	POLYTECHNIC UNIVERSITY OF THE PHILIPPINES	1990	\N		3816	1986	1990		\N		1389
14334	Master's Degree	PHILIPPINE CHRISTIAN UNIVERSITY	2018	\N		3816	2017	2018		\N		1390
14335	Elementary Graduate	CONDE ITAAS ELEMENTARY SCHOOL	1997		7th HONORS	3822	1991	1997				0
14336	High School Graduate	CONDE LABAC ELEMENTARY SCHOOL	2001		TOP 10	3822	1997	2001				0
14337	College Graduate	SAINT BRIDGET COLLEGE	2001		BAYANIHAN AWARDEE	3822	2001	2005				1290
14338	Master's Degree	GOLDEN GATE COLLEGES	2014			3822	2012	2014			MAJOR IN EDUCATIONAL MANAGEMENT	1291
14339	Elementary Graduate	WAWA ELEMENTARY SCHOOL	1984			3817	1978	1984				0
14340	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1988			3817	1984	1988				0
14341	College Graduate	UNIVERSITY OF BATANGAS	1996			3817	1989	1996				1290
14342	Master's Degree	POLYTECHNIQUE UNIVERSITY OF THE PHILIPPINES				3817	2011	2013	45 UNITS		EDUCATIONAL MANAGEMENT	1348
14343	Elementary Graduate	STA. CLARA ELEMENTARY SCHOOL	1978			3823	1977	1978				0
14344	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1985		FIRST HONORABLE MENTION	3823	1984	1985				0
14345	College Graduate	WESTERN PHILIPPINE COLLEGES	1992			3823	1991	1992				1270
14346	Elementary Graduate	AMBULONG ELEMENTARY SCHOOL	1982			3824	1977	1982				0
14347	High School Graduate	TABANGAO BARANGAY HIGH SCHOOL	1986		3rd HONORABLE MENTION	3824	1982	1986				0
14348	Vocational Graduate	SYSTEM TECHNOLOGY INSTITUTE	1993			3824	1993	1993				1391
14349	College Graduate	WESTERN PHILIPPINE COLLEGES	1995			3824	1986	1995			MAJOR IN MATHEMATICS	1298
14350	Master's Degree	GOLDEN GATE COLLEGES				3824	1999	2008	45			1291
14351	Elementary Graduate	STA. CLARA ELEMENTARY SCHOOL	1989			3818	1986	1989				0
14352	High School Graduate	WESTERN PHILIPPINE COLLEGES	1993			3818	1989	1993				0
14353	College Graduate	UNIVERSITY OF BATANGAS	1997			3818	1993	1997				1290
14354	Master's Degree	GOLDEN GATE COLLEGES				3818	1998	2007				1291
14355	Elementary Graduate	STA. CLARA ELEMENTARY SCHOOL	1987			3825	1981	1987				0
14356	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1991			3825	1987	1991				0
14357	College Graduate	PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY	1995			3825	1991	1995				1290
14358	Master's Degree	GOLDEN GATE COLLEGES				3825	2001	2002	18 UNITS		MAJOR IN EDUCATIONAL MANAGEMENT	1291
14359	Elementary Graduate	TULO II ELEMENTARY SCHOOL	1987			3819	1981	1987				0
14360	High School Graduate	WESTERN PHILIPPINE COLLEGES	1991			3819	1987	1991				0
14361	College Graduate	SAINT BRIDGET COLLEGE	1995			3819	1991	1995				1290
14362	Master's Degree	UNIVERSITY OF BATANGAS				3819	1997	1999	45 UNITS		EDUCATIONAL ADMINISTRATION	1284
14363	Elementary Graduate	JULIAN A. PASTOR MEMORIAL ELEMENTARY SCHOOL	1997			3820	1991	1997				0
14364	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2001			3820	1997	2001				0
14365	College Graduate	BATANGAS STATE UNIVERSITY	2005		BSU MUNICIPAL SCHOLARS	3820	2001	2005				1298
14366	Master's Degree	BATANGAS STATE UNIVERSITY - THE NATIONAL ENGINEERING UNIVERSITY	2022			3820	2018	2020			EDUCATIONAL MANAGEMENT	1291
14367	Elementary Graduate	TULO II ELEMENTARY SCHOOL	1993		FIRST HONORABLE MENTION	3821	1987	1993				0
14368	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1997			3821	1993	1997				0
14369	College Graduate	BATANGAS STATE UNIVERSITY	2001			3821	1997	2001				1290
14370	Master's Degree	BATANGAS STATE UNIVERSITY				3821	2017	2022	36 UNITS		EDUCATIONAL MANAGEMENT	1348
14371	Elementary Graduate	DIVINE CHILD ACADEMY	1988			3829	1982	1988				0
14372	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1992			3829	1988	1992				0
14373	College Graduate	BATANGAS STATE UNIVERSITY	1996			3829	1992	1996				1290
14374	Master's Degree	GOLDEN GATE COLLEGES				3829	2000	2000	18 UNITS			1291
14382	Elementary Graduate	SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL	1991		SECOND HONORABLE MENTION	3831	1984	1991				0
14383	High School Graduate	SAN AGUSTIN NATIONAL HIGH SCHOOL	1995			3831	1991	1995				0
14384	College Graduate	PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY	1999			3831	1995	1999				1298
14385	Master's Degree	GOLDEN GATE COLLEGES				3831	2001	2015	MASTER'S GRADUATE W/45 UNITS			1284
14386	Elementary Graduate	BARUALTE ELEMENTARY SCHOOL	1988		THIRD HONOR	3832	1983	1988				0
14387	High School Graduate	SOUTHERN SAN JUAN ACADEMY	1993		SALUTATORIAN	3832	1989	1993				0
14388	College Graduate	PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY	1997			3832	1994	1997				1298
14389	Master's Degree	ST. JUDE COLLEGE	2017			3832	2015	2017				1291
14390	Doctorate Degree	ST. DOMINIC SAVIO COLLEGE	2021			3832	2017	2021				1349
14399	Elementary Graduate	STA. CLARA ELEMENTARY SCHOOL	2003			3833	1997	2003				0
14400	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2007			3833	2003	2007				0
14401	College Graduate	COLEGIO NG LUNGSOD NG BATANGAS	2011			3833	2007	2011				1290
14402	Master's Degree	BATANGAS STATE UNIVERSITY				3833	2017	2017	18 UNITS			1284
14408	Elementary Graduate	SAN AGAPITO ELEMENTARY SCHOOL	1982			3834	1976	1982				0
14409	High School Graduate	ISLA VERDE CATHOLIC HIGH SCHOOL	1986			3834	1982	1986				0
14410	College Graduate	WESTERN PHILIPPINE COLLEGES	1991			3834	1987	1991				1314
14411	Master's Degree	GOLDEN GATE COLLEGES				3834	2002	2002	9 UNITS			1368
14415	Elementary Graduate	JULIAN ARCEO PASTOR MEMORIAL ELEMENTARY SCHOOL	1983			3841	1977	1983				0
14416	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1987			3841	1983	1987				0
14417	College Graduate	ST BRIDGET'S COLLEGE	1991			3841	1987	1991				1298
14418	Master's Degree	GOLDEN GATE COLLEGES				3841	2006	2007	18 UNITS			1348
14375	Elementary Graduate	STA CLARA ELEMENTARY SCHOOL	1980			3826	1974	1980				0
14376	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1984			3826	1980	1984				0
14377	College Graduate	PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY	1988			3826	1984	1988				1329
14378	Elementary Graduate	PAHARANG ELEMENTARY SCHOOL	1986		FIRST HONORABLE MENTION	3827	1985	1986				0
14379	High School Graduate	PAHARANG NATIONAL HIGH SCHOOL	1990		FIRST HONORABLE MENTION	3827	1986	1990				0
14380	College Graduate	WESTERN PHILIPPINE COLLEGES	1994		OUTSTANDING ACADEMIC ACHIEVEMENT	3827	1990	1994				1298
14381	Master's Degree	UNIVERSITY OF BATANGAS				3827	1994	1997	30 UNITS			1291
14391	Elementary Graduate	CORCUERA CENTRAL SCHOOL	1982		FIRST HONORABLE MENTION	3828	1977	1982				0
14392	High School Graduate	CORCUERA ACADEMY	1987		FIRST HONORABLE MENTION	3828	1983	1987				0
14393	College Graduate	UNIVERSITY OF BATANGAS	1992			3828	1989	1992				1290
14394	Master's Degree	BATANGAS STATE UNIVERSITY				3828	1995	2007	42 UNITS			1367
14395	Elementary Graduate	HALIGUE KANLURAN ELEMENTARY SCHOOL	1982		SECOND HONORS	3830	1976	1982				0
14396	High School Graduate	STO. NINO NATIONAL HIGH SCHOOL	1986		2ND HONORABLE MENTION	3830	1982	1986				0
14397	College Graduate	UNIVERSITY OF BATANGAS	1990			3830	1986	1990			MATHEMATICS	1290
14398	Master's Degree	GOLDEN GATE COLLEGES				3830	2006	2008	45 UNITS			1291
14403	Elementary Graduate	SAN AGAPITO ELEMENTARY SCHOOL	2006			3837	2001	2006				0
14404	High School Graduate	SAN AGAPITO NATIONAL HIGH SCHOOL	2010			3837	2006	2010				0
14405	College Graduate	BATANGAS STATE UNIVERSITY	2012			3837	2010	2012				1392
14406	College Graduate	BATANGAS STATE UNIVERSITY	2018			3837	2014	2018			TECHNOLOGY AND LIVELIHOOD EDUCATION	1270
14407	Master's Degree	LIPA CITY COLLEGE				3837	2024	2025	12 UNITS			1291
14412	Elementary Graduate	BATANGAS CITY SOUTH ELEMENTARY SCHOOL	2002			3839	1996	2002				0
14413	High School Graduate	UNIVERSITY OF BATANGAS	2006			3839	2002	2006				0
14414	College Graduate	UNIVERSITY OF BATANGAS	2016			3839	2009	2016			ENGLISH	1270
14419	Elementary Graduate	PARANG ELEMENTARY SCHOOL	2009			3840	2003	2009				0
14420	High School Graduate	ANILAO NATIONAL HIGH SCHOOL	2013			3840	2009	2013				0
14421	College Graduate	KOLEHIYO NG LUNGSOD NG LIPA	2017			3840	2013	2017				1375
14422	Elementary Graduate	BATANGAS CITY SOUTH ELEMENTARY SCHOOL	2009			3838	2003	2009				0
14423	High School Graduate	UNIVERSITY OF BATANGAS	2013			3838	2009	2013				0
14424	College Graduate	UNIVERSITY OF BATANGAS	2017		ACHIEVER AWARD	3838	2013	2017			MATHEMATICS	1270
14425	Master's Degree	GOLDEN GATE COLLEGES	2024			3838	2022	2024			MATHEMATICS	1291
14426	Elementary Graduate	LIBJO ELEMENTARY SCHOOL 	1996			3842	1991	1996				0
14427	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL 	2001			3842	1997	2001				0
14428	College Graduate	UNIVERSITY OF BATANGAS 	2005			3842	2001	2005				1290
14429	Master's Degree	BATANGAS STATE UNIVERSITY 	2015			3842	2011	2015			EDUCATIONAL MANAGEMENT 	1333
14430	Elementary Graduate	SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL	1999		THIRD HONORABLE	3836	1993	1999				0
14431	High School Graduate	SAN AGUSTIN NATIONAL HIGH SCHOOL	2003		FIRST HONORABLE	3836	1999	2003				0
14432	College Graduate	BATANGAS STATE UNIVERSITY	2013			3836	2009	2013			BIOLOGICAL SCIENCE	1270
14433	Master's Degree	PHILIPPINE COLLEGE OF HEALTH AND SCIENCES	2018			3836	2016	2018				1291
14434	Elementary Graduate	BATANGAS CITY EAST ELEMENTARY SCHOOL	1992		2ND HONOR	3843	1986	1992				0
14435	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1996			3843	1992	1996				0
14436	College Graduate	PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY	2000		PSB SCHOLAR	3843	1996	2000				1298
14437	Doctorate Degree	UNIVERSITY OF PERPETUAL HELP SYSTEM DALTA-LAS PINAS				3843	2019	2020	24 UNITS			1299
14438	Elementary Graduate	SAN AGAPITO ELEMENTARY SCHOOL	2001		FIRST HONORABLE MENTION	3835	1998	2001				0
14439	High School Graduate	SAN AGAPITO NATIONAL HIGH SCHOOL	2005		FIRST HONORABLE MENTION	3835	2001	2005				0
14440	College Graduate	ST. BRIDGET COLLEGE	2009			3835	2005	2009			BIOLOGICAL SCIENCE	1375
14441	Elementary Graduate	LIBJO ELEMENTARY SCHOOL 	1987			3844	1981	1987				0
14442	High School Graduate	WESTERN PHILIPPINE COLLEGES	1991			3844	1987	1991				0
14443	College Graduate	GOLDEN GATE COLLEGES 	1995			3844	1991	1995				1298
14444	Master's Degree	PHILIPPINE COLLEGES OF HEALTH SCIENCE INC.				3844	2016	2018	24 MA UNITS 			1291
14445	Elementary Graduate	SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL	1981			3846	1975	1981				0
14446	High School Graduate	SAN AGUSTIN SILANGAN NATIONAL HIGH SCHOOL	1985			3846	1981	1985				0
14447	College Graduate	WESTERN PHILIPPINE COLLEGES	1993			3846	1989	1993				1290
14448	Master's Degree	GOLDEN GATE COLLEGES	2001			3846	1996	2001				1291
14449	Elementary Graduate	STA. CLARA ELEMENTARY SCHOOL	1985		SECOND HONORABLE MENTION	3845	1979	1985				0
14450	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1989		PARENT TEACHER ASSOCIATION SCHOLAR	3845	1985	1989				0
14451	College Graduate	GOLDEN GATE COLLEGES	1993		CUM LAUDE	3845	1989	1993				1290
14452	Master's Degree	GOLDEN GATE COLLEGES				3845	2004	2006	45 UNITS			1291
14453	Elementary Graduate	BALETE ELEMENTARY SCHOOL	1994			3850	1988	1994				0
14454	High School Graduate	BALETE NATIONAL HIGH SCHOOL	1998			3850	1994	1998				0
14455	College Graduate	GOLDEN GATE COLLEGES	2003			3850	1998	2003				1290
14456	Master's Degree	RIZAL COLLEGE OF TAAL	2023			3850	2020	2023			MAJOR IN EDUCATIONAL ADMINISTRATION	1291
14457	Elementary Graduate	SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL	1986		FIRST HONORABLE MENTION	3848	1980	1986				0
14458	High School Graduate	SAN AGUSTIN BARANGAY HIGH SCHOOL	1990		FIRST HONORABLE MENTION	3848	1986	1990				0
14459	College Graduate	WESTERN PHILIPPINE COLLEGES	1994			3848	1990	1994				1290
14460	Master's Degree	GOLDEN GATE COLLEGES				3848	2011	2013	27 UNITS			1284
14469	Elementary Graduate	STA. CLARA ELEMENTARY SCHOOL	2003			3847	1997	2003				0
14470	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2007			3847	2003	2007				0
14471	College Graduate	COLEGIO NG LUNGSOD NG BATANGAS	2012			3847	2008	2012				1290
14461	Elementary Graduate	JULIAN A. PASTOR MEMORIAL ELEMETARY SCHOOL	2008			3851	2001	2008				0
14462	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2012			3851	2008	2012				0
14463	College Graduate	BATANGAS STATE UNIVERSITY	2016			3851	2012	2016				1298
14464	Master's Degree	PACIFIC INTERCONTINENTAL COLLEGE	2025			3851	2023	2025			MAJOR IN EDUCATIONAL MANAGEMENT	1291
14465	Elementary Graduate	MANGANSAG ELEMENTARY SCHOOL	1980	\N	1ST HONORABLE MENTION	3852	1974	1980		\N		0
14466	High School Graduate	MABINI BARANGAY HIGH SCHOOL	1984	\N	3RD HONORABLE MENTION	3852	1980	1984		\N		0
14467	College Graduate	WESTERN PHILIPPINE COLLEGES	1988	\N		3852	1984	1988		\N		1290
14468	Master's Degree	PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY		\N		3852	1998	2001	33 UNITS	\N		1367
14472	Elementary Graduate	JULIAN A. PASTOR MEMORIAL ELEMENTARY SCHOOL	1979			3854	1974	1979				0
14473	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1982			3854	1979	1982				0
14474	College Graduate	PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY	1986			3854	1982	1986				1329
14475	Master's Degree	GOLDEN GATE COLLEGES				3854	1995	2006	45		MASTER IN EDUCATIONAL MANAGEMENT	1291
14476	Elementary Graduate	DAO ELEMENTARY SCHOOL 	1990		SECOND HONORABLE MENTION 	3853	1984	1990				0
14477	High School Graduate	TABANGAO NATINAL HIGH SCHOOL 	1994		VALEDICTORIAN 	3853	1990	1994				0
14478	College Graduate	UNIVERSITY OF BATANGAS 	1998		DEAN'S LISTER PESPA SCHOLAR 	3853	1994	1998				1298
14479	Master's Degree	BATANGAS STATE UNIVERSITY 	2005			3853	1999	2005				1304
14480	Doctorate Degree	BATANGAS STATE UNIVERSITY 				3853	2013	2016	36			1302
14481	Doctorate Degree	BATANGAS STATE UNIVERSITY 	2017			3853	2016	2017				1325
14482	Elementary Graduate	HALIGUE SILANGAN ELEMENTARY SCHOOL	2004			3855	1998	2004				0
14483	High School Graduate	STO. NINO NATIONAL HIGH SCHOOL	2008			3855	2004	2008				0
14484	College Graduate	BATANGAS STATE UNIVERSITY	2012			3855	2008	2012				1298
14485	Master's Degree	ST. JUDE COLLEGE				3855	2018	2018	36		MAJOR IN SPECIAL EDUCATION	1333
14486	Elementary Graduate	DAO ELEMENTARY SCHOOL	2011		SALUTATORIAN	3849	2005	2011				0
14487	High School Graduate	TABANGAO NATIONAL HIGH SCHOOL	2015			3849	2011	2015				0
14488	College Graduate	COLEGIO NG LUNGSOD NG BATANGAS	2019			3849	2015	2019				1290
14489	Master's Degree	BATANGAS STATE UNIVERSITY				3849	2022	2025	33 UNITS			1367
14490	Elementary Graduate	BANABA WEST ELEMENTARY SCHOOL	1982	\N		3858	1976	1982		\N		0
14491	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1986	\N		3858	1982	1986		\N		0
14492	College Graduate	GOLDEN GATE COLLEGES	1990	\N		3858	1986	1990		\N		1290
14493	Master's Degree	GOLDEN GATE COLLEGES		\N		3858	1996	1998	45 UNITS	\N		1291
14494	Elementary Graduate	SAN AGAPITO ELEMENTARY SCHOOL	1984		FIRST HONORS	3856	1978	1984				0
14495	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1988			3856	1984	1988				0
14496	College Graduate	WESTERN PHILIPPINE COLLEGE	1992			3856	1988	1992				1290
14497	Master's Degree	GOLDEN GATE COLLEGES				3856	1996	1999	45 UNITS WITH CAR		EDUCATIONAL MANAGEMENT	1284
14498	Elementary Graduate	PARANG ELEMENTARY SCHOOL	2012		THIRD HONOR	3857	2006	2012				0
14499	High School Graduate	SOVEREIGN SHEPHERD SCHOOL OF VALUES AND LEARNING	2018		WITH HONORS	3857	2016	2018				0
14500	College Graduate	COLEGIO NG LUNGSOD NG BATANGAS	2022		WITH DISTINCTIONS	3857	2018	2022				1290
14501	Elementary Graduate	BATANGAS CITY SOUTH ELEMENTARY SCHOOL	1995			3860	1988	1995				0
14502	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1999			3860	1995	1999				0
14503	College Graduate	BATANGAS STATE UNIVERSITY	2003			3860	1999	2003			MAJOR IN SOCIAL STUDIES	1270
14504	Master's Degree	PHILIPPINE COLLEGE OF HEALTH SCIENCES	2023			3860	2019	2023			MAJOR IN EDUCATIONAL MANAGEMENT	1291
14505	Elementary Graduate	KUMINTANG ELEMENTARY SCHOOL	2008			3859	2002	2008				0
14506	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2012			3859	2008	2012				0
14507	Vocational Graduate	TESDA REGIONAL IV-A CALABARZON	2021			3859	2021	2021				1395
14508	College Graduate	COLEGIO NG LUNGSOD NG BATANGAS	2016			3859	2012	2016				1290
14509	Master's Degree	GOLDEN GATE COLLEGES	2020			3859	2018	2020			EDUCATIONAL MANAGEMENT	1284
14510	Elementary Graduate	SAN AGAPITO ELEMENTARY SCHOOL	1985		FIRST HONORABLE MENTION	3866	1979	1985				0
14511	High School Graduate	ISLA VERDE CATHOLIC HIGH SCHOOL	1990		FIRST HONORABLE MENTION	3866	1986	1990				0
14512	College Graduate	WESTERN PHILIPPINE COLLEGES (UB)	1994			3866	1990	1994			MAJOR IN ENGLISH	1270
14513	Master's Degree	UNIVERSITY OF BATANGAS				3866	1998	2010	45 UNITS		MAJOR IN EDUCATIONAL MANAGEMENT	1291
14514	Elementary Graduate	SAN AGAPITO ELEMENTARY SCHOOL	1980			3861	1975	1980				0
14515	High School Graduate	ISLA VERDE CATHOLIC HIGH SCHOOL	1984			3861	1980	1984				0
14516	College Graduate	WESTERN PHILIPPINE COLLEGES	1989			3861	1980	1989				1290
14517	Master's Degree	PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY				3861	1992	2000	39 UNITS			1367
14518	Elementary Graduate	LIPONPON ELEMENTARY SCHOOL	1994		3rd HONOR	3867	1988	1994				0
14519	High School Graduate	SAN AGUSTIN NATIONAL HIGH  SCHOOL	1998			3867	1994	1998				0
14520	College Graduate	CANOSSA COLLEGE	2002		MAGDALENE SCHOLAR	3867	1998	2002				1290
14521	Master's Degree	UNIVERSITY OF THE PHILIPPINES DILIMAN				3867	2003	2006	21		MAJOR IN SPECIAL EDUCATION	1284
14522	Elementary Graduate	PINAMUKAN ELEMENTARY SCHOOL	1998			3868	1992	1998				0
14523	High School Graduate	PINAMUKAN NATIONAL HIGH SCHOOL	2002			3868	1998	2002				0
14524	College Graduate	SAINT BRIDGET COLLEGE	2006			3868	2002	2006			MAJOR IN PRE-SCHOOL	1298
14525	Elementary Graduate	BULI ELEMENTARY SCHOOL	1980			3864	1975	1980				0
14526	High School Graduate	BATANGAS WEST HIGH SCHOOL	1984			3864	1981	1984				0
14527	College Graduate	RIZAL COLLEGE OF TAAL	1990			3864	1987	1990				1298
14528	Elementary Graduate	PARANG CUEVA ELEMENTARY SCHOOL	2011			3869	2005	2011				0
14529	High School Graduate	SAN AGUSTIN NATIONAL HIGH SCHOOL	2015			3869	2011	2015				0
14530	College Graduate	BATANGAS STATE UNIVERSITY MAIN I	2020			3869	2015	2020			MAJOR IN MATHEMATICS	1270
14531	Master's Degree	GOLDEN GATE COLLEGES				3869	2022	2023	18 UNITS		MAJOR IN MATHEMATICS	1348
14532	Elementary Graduate	PARANG ELEMENTARY SCHOOL	2004			3862	1998	2004				0
14533	High School Graduate	SAN ANTONIO NATIONAL HIGH SCHOOL	2008		THIRD HONORABLE MENTION	3862	2004	2008				0
14534	College Graduate	COLEGIO NG LUNGSOD NG BATANGAS	2012			3862	2008	2012				1290
14535	Master's Degree	GOLDEN GATE COLLEGES	2019			3862	2016	2019			ELEMENTARY EDUCATION	1291
14536	Elementary Graduate	SAN AGUSTIN ELEMENTARY SCHOOL	2011	\N		3871	2005	2011		\N		0
14537	High School Graduate	SAN AGUSTIN NATIONAL HIGH SCHOOL	2015	\N		3871	2011	2015		\N		0
14538	College Graduate	BATANGAS STATE UNIVERSITY	2019	\N		3871	2015	2019		\N	MAJOR IN FILIPINO	1270
14539	Master's Degree	GOLDEN GATE COLLEGES		\N		3871	2022	2022	9 UNITS	\N	MAJOR IN FILIPINO TEACHING	1291
14540	Elementary Graduate	TALUMPOK EAST ELEMENTARY SCHOOL	2004			3870	1998	2004				0
14541	High School Graduate	TALUMPOK NATIONAL HIGH SCHOOL	2008		5th HONORABLE MENTION	3870	2004	2008				0
14542	College Graduate	BATANGAS STATE UNIVERSITY	2012			3870	2008	2012				1396
14543	Master's Degree	UNIVERSITY OF BATANGAS	2016			3870	2016	2016				1374
14544	Elementary Graduate	LIPONPON ELEMENTARY SCHOOL	2010			3863	2004	2010				0
14545	High School Graduate	SAN ANTONIO NATIONAL HIGH SCHOOL	2014		ACHIEVER	3863	2010	2014				0
14546	College Graduate	GOLDEN GATE COLLEGES	2018			3863	2014	2018				1290
14547	Elementary Graduate	BANABA CENTER ELEMENTARY SCHOOL	2010	\N		3872	2004	2010		\N		0
14548	High School Graduate	BANABA WEST NATIONAL HIGH SCHOOL	2014	\N		3872	2010	2014		\N		0
14549	College Graduate	BATANGAS STATE UNIVERSITY MAIN I	2019	\N		3872	2014	2019		\N	MAJOR IN SOCIAL STUDIES	1270
14550	Master's Degree	GOLDEN GATE COLLEGES	2024	\N		3872	2022	2024		\N	MAJOR IN SOCIAL STUDIES TEACHING	1333
14551	Elementary Graduate	SAN AGAPITO ELEMENTARY SCHOOL	2013			3865	2007	2013				0
14552	High School Graduate	SAN AGAPITO INTERGRATED SCHOOL	2017			3865	2013	2017				0
14553	College Graduate	COLEGIO NG LUNGSOD NG BATANGAS	2023			3865	2019	2023				1290
14554	Senior High Graduate	TABANGAO INTERGRATED SCHOOL	2019			3865	2017	2019				0
14555	Elementary Graduate	LIBJO ELEMENTARY SCHOOL	1985			3873	1979	1985				0
14556	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1989			3873	1985	1989				0
14557	College Graduate	SAINT BRIDGET COLLEGE	1993			3873	1989	1993				1290
14558	Master's Degree	GOLDEN GATE COLLEGES				3873	1994	2001	45		MAJOR IN EDUCATIONAL MANAGEMENT	1291
14559	Elementary Graduate	DUMUCLAY ELEMENTARY SCHOOL	2011		ACHIEVER	3874	2005	2011				0
14560	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2015			3874	2011	2015				0
14561	College Graduate	ST. BRIDGET COLLEGE	2019			3874	2015	2019			MATHEMATICS MAJOR	1270
14562	Elementary Graduate	SALVACION ELEMENTARY SCHOOL	1995		WITH HONORS	3875	1988	1995				0
14563	High School Graduate	ANUB HIGH SCHOOL	1999		WITH HONORS	3875	1995	1999				0
14564	College Graduate	UNIVERSITY OF BATANGAS	2005			3875	1999	2005			EARLY CHILDHOOD EDUCATION	1298
14565	Master's Degree	GOLDEN GATE COLLEGES	2018			3875	2017	2018			ELEMENTARY EDUCATION	1348
14566	Elementary Graduate	HALIGUE SILANGAN ELEMENTARY SCHOOL	2007			3877	2000	2007				0
14567	High School Graduate	STO. NINO NATIONAL HIGH SCHOOL	2011			3877	2007	2011				0
14568	College Graduate	BATANGAS STATE UNIVERSITY	2015			3877	2011	2015				1298
14569	Master's Degree	GOLDEN GATE COLLEGES	2019			3877	2017	2019			MAJOR IN PRESCHOOL EDUCATION	1291
14570	Elementary Graduate	MANOOT ELEMENTARY SCHOOL	1995		FOURTH HONORS	3876	1989	1995				0
14571	High School Graduate	BAYAMBANG NATIONAL HIGH SCHOOL	1999			3876	1995	1999				0
14572	College Graduate	LIPA CITY PUBLIC SCHOOL	2005			3876	2001	2005				1307
14573	Master's Degree	GOLDEN GATE COLLEGES	2018			3876	2017	2018				1284
14574	Elementary Graduate	PARANG CUEVA ELEMENTARY SCHOOL	2002			3878	1994	2002				0
14575	High School Graduate	SAN AGUSTIN NATIONAL HIGH SCHOOL	2006			3878	2003	2006				0
14576	College Graduate	SAINT BRIDGET COLLEGE	2011		EBD SCHOLAR	3878	2007	2011				1290
14577	Master's Degree	GOLDEN GATE COLLEGES	2019			3878	2018	2019				1284
14578	Elementary Graduate	SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL	1996	\N	ACHIEVER	3881	1991	1996		\N		0
14579	High School Graduate	SAN AGUSTIN NATIONAL HIGH SCHOOL	2008	\N	ACHIEVER	3881	1996	2008		\N		0
14580	Vocational Graduate	TECHNICAL EDUCATION AND SKILLS DEVELOPMENT AUTHORITY	2014	\N		3881	2014	2014		\N		1372
14581	College Graduate	COLEGIO NG LUNGSOD NG BATANGAS	2014	\N		3881	2010	2014		\N		1298
14582	Master's Degree	GOLDEN GATE COLLEGES	2017	\N		3881	2015	2017		\N		1284
14583	Elementary Graduate	PARANG CUEVA ELEMENTARY SCHOOL	1996		THIRD HONORABLE MENTION	3879	1991	1996				0
14584	High School Graduate	SAN AGUSTIN NATIONAL HIGH SCHOOL	2000		ACHIEVER	3879	1996	2000				0
14585	College Graduate	BATANGAS STATE UNIVERSITY	2005			3879	2001	2005				1290
14586	Master's Degree	GOLDEN GATE COLLEGES				3879	2011	2018	45 UNITS			1348
14587	Elementary Graduate	GUINTO ELEMENTARY SCHOOL	1999		SECOND HONORS	3882	1993	1999				0
14588	High School Graduate	TALUMPOK NATIONAL HIGH SCHOOL	2003		THIRD HONORS	3882	1999	2003				0
14589	College Graduate	SAINT BRIDGET COLLEGE	2007		PESFA SCHOLAR	3882	2003	2007			MAJOR IN COMMUNICATION ARTS IN ENGLISH	1290
14590	Master's Degree	PHILIPPINE NORMAL UNIVERSITY				3882	2016	2025	42			1398
14591	Elementary Graduate	KATANDALA ELEMENTARY SCHOOL	2008			3883	2006	2008				0
14592	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	2012			3883	2008	2012				0
14593	Vocational Graduate	TESDA REGIONAL TRAINING CENTER	2018			3883	2018	2018				1399
14594	College Graduate	BATANGAS STATE UNIVERSITY	2016			3883	2012	2016				1298
14595	Master's Degree	BATANGAS STATE UNIVERSITY	2019			3883	2017	2019				1337
14596	Elementary Graduate	SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL	1984		FIRST HONORABLE MENTION	3916	1978	1984				0
14597	High School Graduate	SAN AGUSTIN NATIONAL HIGH SCHOOL	1988		FIRST HONORABLE MENTION	3916	1984	1988				0
14598	College Graduate	WESTERN PHILIPPINE COLLEGES				3916	1988	1992				1307
14599	Master's Degree	GOLDEN GATE COLLEGES			 	3916	1996	2001				1291
14600	Elementary Graduate	LIBJO ELEMENTARY SCHOOL	1986			3917	1980	1986				0
14601	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1990			3917	1986	1990				0
14602	College Graduate	SAINT BRIDGET COLLEGE	1995			3917	1991	1995				1290
14603	Master's Degree	GOLDEN GATE COLLEGE				3917	1999	2000	24		MAJOR IN EDUCATIONAL MANAGEMENT	1333
14604	Elementary Graduate	PARANG ELEMENTARY SCHOOL	2009	\N	SALUTATORIAN	3918	2003	2009		\N		0
14605	High School Graduate	SAN ANTONIO NATIONAL HIGH SCHOOL	2013	\N	1ST HONORABLE MENTION	3918	2009	2013		\N		0
14606	College Graduate	COLEGIO NG LUNGSOD NG BATANGAS	2018	\N	DEAN'S LISTER	3918	2013	2018		\N		1307
14607	Master's Degree	PACIFIC INTERCONTINENTAL COLLEGE	2025	\N		3918	2023	2025		\N	MAJOR IN EDUCATIONAL MANAGEMENT	1333
14608	Elementary Graduate	PARANG ELEMENTARY SCHOOL	1979		SECOND HONOR	3919	1973	1979				0
14609	High School Graduate	ISLA VERDE CATHOLIC HIGH SCHOOL	1984		HONORABLE MENTION	3919	1980	1984				0
14610	Elementary Graduate	LIBJO ELEMENTARY SCHOOL	1983			3920	1977	1983				0
14611	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1987			3920	1983	1987				0
14612	College Graduate	UNIVERSITY OF BATANGAS	1998			3920	1994	1998				1298
14613	Master's Degree	GOLDEN GATE COLLEGES				3920	1999	2002	27			1291
14614	Elementary Graduate	SAN AGAPITO ELEMENTARY SCHOOL	1983			3921	1997	1983				0
14615	High School Graduate	ISLA VERDE CATHOLIC HIGH SCHOOL	1987			3921	1983	1987				0
14616	College Graduate	WESTERN PHILIPPINE COLLEGES	1992			3921	1988	1992			MAJOR IN MATH	1298
14617	Master's Degree	PHILIPPINE COLLEGE OF HEALTH SCIENCES INC.	2019			3921	2017	2019			MAJOR IN EDUCATIONAL MANAGEMENT	1291
14618	Elementary Graduate	PARANG ELEMENTARY SCHOOL	1993			3922	1987	1993				0
14619	High School Graduate	ISLA VERDE CATHOLIC HIGH SCHOOL	1997			3922	1993	1997				0
14620	Vocational Graduate	ST. PETER TECHNICAL TRAINING CENTER	2003			3922	2003	2003				1401
14621	College Graduate	ST. BRIDGET COLLEGE	2005			3922	1997	2005				1298
14622	Master's Degree	PHILIPPINE COLLEGE OF HEALTH SCIENCES, INC.	2022			3922	2019	2022				1291
14623	Elementary Graduate	SAN AGAPITO ELEMENTARY SCHOOL	2011		SALUTATORIAN	3923	2005	2011				0
14624	High School Graduate	SAN AGAPITO NATIONAL HIGH SCHOOL	2015		5TH PLACE	3923	2011	2015				0
14625	College Graduate	COLEGIO NG LUNGSOD NG BATANGAS	2019			3923	2015	2019				1298
14626	Elementary Graduate	BALETE ELEMENTARY SCHOOL	1987			3880	1981	1986				0
14627	High School Graduate	BALETE BARANGAY HIGH SCHOOL	1990			3880	1987	1990				0
14628	Elementary Graduate	SAN ISIDRO ELEMENTARY SCHOOL	1987		THIRD HONORABLE MENTION	3924	1981	1987				0
14629	High School Graduate	SAN AGUSTIN NATIONAL HIGH SCHOOL	1991			3924	1987	1991				0
14630	College Graduate	DIVINE WORLD COLLEGE OF SAN JOSE OCCIDENTAL	1995			3924	1991	1995				1298
14631	Master's Degree	GOLDEN GATE COLLEGES				3924	1997	2000	45 UNITS			1402
14632	Elementary Graduate	STO. DOMINGO ELEMENTARY SCHOOL	1987		2ND HONORS	3925	1981	1987				0
14633	High School Graduate	GOLDEN GATE COLLEGES	1991		ACHIEVER	3925	1987	1991				0
14634	Vocational Graduate	TESDA BATANGAS	2007			3925	2007	2007				1403
14635	College Graduate	ADVENTIST UNIVERSITY OF THE PHILIPPINES	1995		DEAN'S LISTER	3925	1991	1995				1290
14636	Master's Degree	GOLDEN GATE COLLEGES	2015			3925	2004	2015				1284
14637	Elementary Graduate	LIPONPON ELEMENTARY SCHOOL	1980			3960	1977	1980				0
14638	High School Graduate	SAN AGUSTINE NATIONAL HIGH SCHOOL	1983			3960	1980	1983				0
14639	Elementary Graduate	LEMERY PILOT ELEMENTARY SCHOOL	2010			3961	2004	2010				0
14640	High School Graduate	TAAL NATIONAL HIGH SCHOOL	2014			3961	2010	2014				0
14641	Vocational Graduate	ISABELO BALEROS MEMORIAL ELEMENTARY SCHOOL	2018			3961	2017	2018				1404
14642	College Graduate	BATANGAS STATE UNIVERSITY - LEMERY CAMPUS	2018			3961	2014	2018			MAJOR IN INDUSTRIAL ARTS	1329
14643	Elementary Graduate	SAN AGAPITO ELEMENTARY SCHOOL	2012			3958	2006	2012				0
14644	High School Graduate	SAN AGAPITO NATIONAL HIGH SCHOOL	2016			3958	2012	2016				0
14645	Senior High Graduate	SAN AGUSTIN SENIOR HIGH SCHOOL	2018			3958	2016	2018				0
14646	College Graduate	COLEGIO NG LUNGSOD NG BATANGAS	2023			3958	2019	2023				1298
14647	Elementary Graduate	BATANGAS CITY EAST ELEMENTARY SCHOOL	1982			3962	1976	1982				0
14648	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1987			3962	1983	1987				0
14649	College Graduate	GOLDEN GATE COLLEGES BATANGAS CITY	1994			3962	1990	1994				1290
14650	Master's Degree	GOLDEN GATE COLLEGES BATANGAS CITY				3962	2018	2018				1348
14651	Elementary Graduate	MALALATAN ELEMENTARY SCHOOL	1987		VALEDICTORIAN	3959	1981	1987				0
14652	High School Graduate	AFUSING NATIONAL HIGH SCHOOL	1992		SALUTATORIAN	3959	1987	1992				0
14653	Vocational Graduate	ARAULLO EVENING VOCATIONAL SCHOOL	2007			3959	2007	2007				1405
14654	College Graduate	CAGAYAN STATE UNIVERSITY	1997			3959	1992	1996				1406
14655	College Graduate	PHILIPPINE WOMEN'S UNIVERSTIY				3959	2002	2003	18 UNITS			1318
14656	Elementary Graduate	SIRANG LUPA ELEMENTARY SCHOOL	1984		HONORABLE MENTION	3963	1978	1984				0
14657	High School Graduate	BATANGAS NATIONAL HIGH SCHOOL	1988			3963	1984	1988				0
14658	College Graduate	WESTERN PHILIPPINE COLLEGES	1993			3963	1988	1993				1298
14659	Master's Degree	GOLDEN GATE COLLEGES				3963	2002	2006	42 UNITS			1348
14660	Elementary Graduate	LIPONPON ELEMENTARY SCHOOL	2011			3967	2004	2011				0
14661	High School Graduate	SAN ANTONIO NATIONAL HIGH SCHOOL	2015			3967	2011	2015				0
14662	College Graduate	STA. TERESA COLLEGE	2019			3967	2015	2019			MAJOR IN GENERAL EDUCATION	1298
\.


--
-- TOC entry 3852 (class 0 OID 16681)
-- Dependencies: 230
-- Data for Name: Eligibilities; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Eligibilities" ("EligibilityId", "Title", "LicenseNumber", "BasicInformationId", "ExpirationDate", "PlaceOfExamination", "Rating", "DateOfExamination", "DateOfRelease", "LastDateOfExamination", "EligibilityDocumentTypeId", "ImplementationDate", "ImplementationExpiration", "EligibilityProcessStatusId", "LevelOfEligibility") FROM stdin;
2421	CSE SubProfessional	N/A	3598		Batangas State University	84				0			0	First Level (Subprofessional)
2422	CSE Professional		3598		Batangas National High School	81				0			0	Second Level (Professional)
2423	CSE PROFESSIONAL LEVEL		3600		BATANGAS NATIONAL HIGH SCHOOL	82				6			0	Second Level (Professional)
2424	CSE SUBPROFESSIONAL LEVEL		3600		BATANGAS STATE UNIVERSITY MAIN I	84				7			0	First Level (Subprofessional)
2425	Civil Service Eligibility	N/A	3599		Batangas National High School	81.89	November 07, 1999		November 07, 1999	6			0	Second Level (Professional)
2426	CAREER SERVICE- PROFESSIONAL CIVIL SERVICE		3604		BATANGAS NATIONAL HIGH SCHOOL	83.37%	October 23, 2016		October 23, 2016	6			0	Second Level (Professional)
2427	CAREER SERVICE- SUB-PROFESSIONAL CIVIL SERVICE		3604		UNIVERSITY OF BATANGAS	81.13%	February 16, 1997		February 16, 1997	7			0	First Level (Subprofessional)
2428	CAREER SERVICE PROFESSIONAL 	08-139825	3605		BATANGAS STATE UNIVERITY	80.45%	May 22, 2011	July 12, 2011	May 22, 2011	6			0	Second Level (Professional)
2429	CAREER SERVICE SUB-PROFESSIONAL 		3605		QUEZON CITY	84.79%	February 18, 1996		February 18, 1996	7			0	First Level (Subprofessional)
2430	CAREER SERVICE ELIGIBILITY (PROFESSIONAL LEVEL)		3607		BATANGAS NATIONAL HIGH SCHOOL	83.58%	March 13, 2022		March 13, 2022	6			0	Second Level (Professional)
2431	CSC SUBPROFESSIONAL ELIGIBILITY		3608		BATANGAS STATE UNIVERSITY- ALANGILAN CAMPUS	80.16%	October 23, 2016		October 23, 2016	7			0	First Level (Subprofessional)
2432	CAREER CIVIL SERVICE PASSER - PROFESSIONAL 		3609		BATANGAS CITY 	81.03% 	July 27, 2008		July 27, 2008	6			0	Second Level (Professional)
2433	CAREER SERVICE PROFESSIONAL EXAMINATION		3610		BATANGAS CITY	81.79%	April 17, 2016		April 17, 2016	6			0	Second Level (Professional)
2434	SUB-PROFESSIONAL EXAM		3611		BATANGAS NATIONAL HIGH SCHOOL	81.41%	October 14, 2001	August 20, 1995	October 14, 2001	7			0	First Level (Subprofessional)
2435	CAREER SERVICE PROFESSIONAL	20004151012971801	3612		BATANGAS CITY	80.5%	October 18, 2015	November 26, 2015	October 18, 2015	6			0	Second Level (Professional)
2436	CPA LICENSURE EXAMINATION 	0056265	3606		MANILA	75% 	November 09, 1983	January 08, 2024	November 09, 1983	0			0	Second Level (Professional)
2437	CAREER SERVICE PROFESSIONAL EXAMINATION		3614		BATANGAS CITY	82.39%	March 12, 2017		March 12, 2017	6			0	Second Level (Professional)
2438	CAREER CIVIL SERVICE PROFESSIONAL 	206242	3613		BATANGAS CITY	83.4	August 07, 2022	October 10, 2022	August 07, 2022	6			0	Second Level (Professional)
2439	CAREER SERVICE PROFESSIONAL 		3615		BATANGAS CITY	81.64%	August 17, 2017		August 17, 2017	6			0	Second Level (Professional)
2440	CAREER SERVICE PROFESSIONAL		3616		BATANGAS NATIONAL HIGH SCHOOL	80.5%	October 17, 1993		October 17, 1993	6			0	Second Level (Professional)
2441	CAREER SERVICE- PROFESSIONAL CIVIL SERVICE		3621		BATANGAS NATIONAL HIGH SCHOOL					6			0	Second Level (Professional)
2442	CAREER SERVICE SUB- PROFESIONAL 		3620		CALAPAN CITY, ORIENTAL MINDORO 	81.6	August 04, 2019		August 04, 2019	7			0	First Level (Subprofessional)
2443	CAREER SERVICE PROFESSIONAL 		3623		BATANGAS NATIONAL HIGH SCHOOL 	82.15	October 23, 2016		October 23, 2016	6			0	Second Level (Professional)
2444	CAREER SERVICE PROFESSIONAL		3624		BATANGAS STATE UNIVERSITY	80.5%	March 18, 2018		March 18, 2018	6			0	Second Level (Professional)
2445	REGISTERED PSYCHOMETRICIAN	018843	3624		PROFESSIONAL REGULATION COMMISSION	77.4%	November 14, 2019	March 15, 2022	November 14, 2019	0			0	
2446	CAEER SERVICE PROFESSIONAL ELIGIBILITY		3632		BATANGAS STATE UNIVERSITY	81.19	March 12, 2017		March 12, 2017	6			0	Second Level (Professional)
2447	CAREER SERVICE SUB- PROFESSIONAL		3633		BATANGAS CITY BATANGAS	83.33%	October 28, 2007		October 28, 2007	7			0	First Level (Subprofessional)
2448	LICENSURE EXAMINATION FOR TEACHERS	1462366	3633		LUCENA CITY, QUEZON	81.60%	March 20, 2016	June 14, 2016	March 20, 2016	0			0	First Level (Subprofessional)
2449	CAREER SERVICE SUB PROFESSIONAL ELIGIBILITY		3635		BATANGAS STATE UNIVERSITY- ALANGILAN	81.34%	March 18, 2018		March 18, 2018	7			0	First Level (Subprofessional)
2450	CAREER SERVICE SUBPROFESSIONAL ELIGIBILITY		3634		BATANGAS CITY 	80.0	June 19, 2022		June 19, 2022	7			0	First Level (Subprofessional)
2451	CAREER SERVICE PROFESSIONAL ELIGIBILITY		3636		BATANGAS STATE UNIVERSITY	80.28%	April 08, 2019		April 08, 2019	6			0	Second Level (Professional)
2452	CSE -PROFESSIONAL LEVEL 		3637		BATANGAS CITY INTEGRATED HIGH SCHOOL 	80.00	June 19, 2022		June 19, 2022	6			0	Second Level (Professional)
2453	CSE - SUB PROFESSIONAL LEVEL		3637		BSU -ALANGILAN	81.66	August 12, 2018		August 12, 2018	7			0	First Level (Subprofessional)
2454	LICENSE PROFESSIONAL TEACHER	2004932	3638		LUCENA CITY	76.6%	October 02, 2022	April 18, 2026	October 02, 2022	6			0	Second Level (Professional)
2455	CAREER SERVICE PROFESSIONAL 		3639		BATANGAS NATIONAL HIGH SCHOOL	80.81%	March 26, 2000		March 26, 2000	6			0	Second Level (Professional)
2456	CAREER SERVICE PROFESSIONAL		3641		BATANGAS NATIONAL HIGH SCHOOL	82.9	October 21, 2012		October 21, 2012	6			0	Second Level (Professional)
2457	LICENSURE EXAMINATION FOR TEACHERS	0592653	3642		UE RECTOR	75.0	August 08, 1999		August 08, 1999	6			0	Second Level (Professional)
2458	CAREER SERVICE PROFESSIONAL		3643		BATANGAS CITY	80.7	August 06, 2017		August 06, 2017	6			0	Second Level (Professional)
2459	SUB-PROFESSIONAL EXAM 	661396	3644		BATANGAS STATE UNIVERSITY- ALANGILAN CAMPUS 	82.05 % 	October 18, 2015		October 18, 2015	7			0	First Level (Subprofessional)
2460	PD 907		3645							0			0	
2461	CAREER SERVICE SUB PROFESSIONAL 	660220	3646		BATANGAS STATE UNIVERSITY- ALANGILAN CAMPUS	84.13%	April 17, 2016	October 21, 2016	April 17, 2016	7			0	First Level (Subprofessional)
2462	LICENSURE EXAMINATION FOR TEACHERS- RA 1080	1907865	3646		LUCENA CITY	86.00%	January 30, 2022	May 04, 2022	January 30, 2022	6			0	Second Level (Professional)
2463	CAREER SERVICE PROFESSIONAL ELIGIBILITY		3647		EBD 5 BUILDING, BATANGAS NATIONAL HIGH SCHOOL	80.4%	October 23, 2016		October 23, 2016	6			0	Second Level (Professional)
2464	CAREER SERVICE SUB PROFESSIONAL 		3649		BATANGAS CITY	74.7%	December 07, 1980		December 07, 1980	7			0	First Level (Subprofessional)
2465	RA 1080 -BAR	64383	3648		SUPREME COURT OF THE PHILIPPINES - MANILA	PASSED	April 28, 2014		April 28, 2014	6			0	Second Level (Professional)
2466	CAREER SERVICE PROFESSIONAL  		3650		BATANGAS NATIONAL HIGH  SCHOOL 	83.51% 	February 25, 1995		February 25, 1995	6			0	Second Level (Professional)
2469	CAREER SERVICE SUB - PROFESSIONAL  EO132/790 - VETERAN REFERENCE RATING		3652		BATANGAS STATE UNIVERSITY	80.45%				7			0	First Level (Subprofessional)
2467	CAREER SERVICE PROFESSIONAL EXAMINATION		3651		BATANGAS NATIONAL HIGH SCHOOL	80.5%	October 17, 2004		October 17, 2004	6			0	Second Level (Professional)
2468	CAREER SERVICE SUB PROFESSIONAL EXAMINATION		3651		BATANGAS NATIONAL HIGH SCHOOL	84.8%	October 20, 2002		October 20, 2002	7			0	First Level (Subprofessional)
2470	BOARD FOR PROFESSIONAL TEACHERS	0874336	3655		LUCENA CITY	83.2%	August 29, 2004		August 29, 2004	6			0	Second Level (Professional)
2471	CAREER SERVICE PROFESSIONAL		3655		BATANGAS CITY	84.9%	November 27, 1994		November 27, 1994	6			0	Second Level (Professional)
2472	CAREER SERVICE SUBPROFESSIONAL		3655		BATANGAS CITY	80.9	July 26, 1992		July 26, 1992	7			0	First Level (Subprofessional)
2474	CAREER SERVICE PROFESSIONAL	12693	3656		BATANGAS CITY	72.22%	July 26, 1987	July 26, 1987	July 26, 1987	6			0	Second Level (Professional)
2473	CAREER SERVICE SUB PROFESSIONAL	000706	3656		BATANGAS CITY	72.65%	July 28, 1985	July 28, 1985	July 28, 1985	7			0	First Level (Subprofessional)
2475	PROFESSIONAL BOARD  EXAMINATION FOR TEACHERS	030370	3656		QUEZON CITY	76.25%	November 22, 1987	June 06, 1988	November 22, 1987	6			0	Second Level (Professional)
2476	LICENSURE EXAMINATION FOR TEACHERS 	0595747	3657		MANILA	75%	August 01, 1999	October 09, 2019	August 01, 1999	0			0	
2477	CIVIL SERVICE EXAMINATION PEN AND PAPER TEST ( SUB- PROFESSIONAL)		3659		BATANGAS STATE UNIVERSITY- ALANGILAN CAMPUS	85.3%	August 14, 2019		August 14, 2019	7			0	First Level (Subprofessional)
2478	PROFESSIONAL BOARD EXAM FOR TEACHERS (PBET)		3664		BATANGAS CITY	76.9%	May 01, 1994		May 01, 1994	6			0	Second Level (Professional)
2479	CIVIL SERVICE EXAM FOR PROFESSIONAL 		3664		BATANGAS CITY	81.1%	November 01, 1994		November 01, 1994	6			0	Second Level (Professional)
2480	PROFESSIONAL BOARD EXAMINATION  FOR TEACHERS 		3662		QUEZON CITY	78.48%	October 01, 1986		October 01, 1986	6			0	Second Level (Professional)
2481	PROFESSIONAL BOARD FOR ELEMENTARY TEACHER	0126530	3665		MANILA	77.4	December 18, 1988	January 28, 2024	December 18, 1988	6			0	Second Level (Professional)
2482	PBET 	0062217	3666		BATANGAS NATIONAL HIGH SCHOOL	78.47%	October 25, 1992	August 11, 2025	October 25, 1992	0			0	First Level (Subprofessional)
2483	LICENSURE EXAMINATION FOR PROFESSIONAL TEACHERS 	0507735	3667		MANILA	77.20	November 26, 1998	April 10, 2026	November 26, 1998	6			0	Second Level (Professional)
2484	PHILIPPINE BOARD EXAMINATION FOR TEACHER (PBET)	54825	3668		MANILA	74.9%	October 26, 1986	September 30, 2018	October 26, 1986	6			0	First Level (Subprofessional)
2485	PROFESSIONAL BOARD EXAM FOR TEACHER		3669		BATANGAS CITY	72.7%	May 30, 1993	November 13, 2023	May 30, 1993	6			0	Second Level (Professional)
2486	PROFESSIONAL BOARD EXAM FOR TEACHERS 		3670		RAMON MAGSAYSAY HIGH SCHOOL 	73.1 %	January 10, 1986		January 10, 1986	6			0	Second Level (Professional)
2487	PROFESSIONAL BOARD EXAMINATION FOR TEACHERS 	0041718	3671		QUEZON CITY 	70.15%	February 11, 1987	January 17, 2020	February 11, 1987	6			0	Second Level (Professional)
2488	CIVIL SERVICE PROFESSIONAL		3671		BATANGAS CITY	80.00%	July 28, 1991		July 28, 1991	6			0	Second Level (Professional)
2489	LIBRARIAN LICENSURE EXAMINATION	5906	3672		MANUEL LUIS QUEZON UNIVERSITY	77.5	November 10, 2009	January 17, 2027	November 11, 2009	6			0	Second Level (Professional)
2490	PROFESSIONAL BOARD EXAMINATION FOR TEACHERS	0054267	3673		QUEZON CITY	70.4%	December 10, 1989	April 22, 1997	December 10, 1989	6			0	Second Level (Professional)
2491	NATIONAL QUALIFYING EXAMINATION FOR TEACHERS 		3673		STA. CRUZ, LAGUNA	98.9%	January 10, 2011	August 17, 2011	January 10, 2011	0			0	
2492	PROFESSIONAL BOARD EXAMINATION FOR TEACHERS 	0058576	3674		QUEZON CITY	79.29%	November 27, 1988	December 23, 2027	November 27, 1988	6			0	Second Level (Professional)
2493	PROFESSIONAL BOARD EXAMINATION FOR TEACHERS	0041167	3675		QUEZON CITY 	71.5%	November 22, 1987	June 11, 2018	November 22, 1987	6			0	Second Level (Professional)
2494	LICENSURE EXAMINATION FOR TEACHER (LET)	1693014	3676		LUCENA CITY	75.0 %	September 30, 2018	July 12, 2018	September 30, 2018	0			0	
2495	LICENSURE EXAMINATION FOR TEACHERS	902005275	3678		LUCENA	79.80	September 30, 2012	April 16, 2025	September 30, 2012	6			0	Second Level (Professional)
2496	PBET	0086823	3681		BATANGAS CITY	71.86%	November 10, 1991	November 10, 1991		0			0	
2497	CSC-PROF 	95-1003994	3681		BATANGAS CITY	80.22	November 27, 1994	November 27, 1994	November 27, 1994	6			0	Second Level (Professional)
2498	LICENSURE EXAMINATION FOR TEACHERS 	1516938	3680		BATANGAS NATIONAL HIGH SCHOOL/ LUCENA CITY 	80.0%	September 20, 2016	November 12, 2026	December 27, 2016	6			0	Second Level (Professional)
2499	CSC PROFESSIONAL  	13-111177	3680		BATANGAS NATIONAL HIGH SCHOOL 	80.0% 	April 14, 2023		April 14, 2023	6			0	Second Level (Professional)
2500	COMPUTER HARDWARE SERVICING NC II 	09170302003329	3680		CALAPAN ORIENTAL MINDORO 	COMPETENT 				6			0	Second Level (Professional)
2501	LICENSURE EXAMINATION FOR TEACHERS	1153670	3679		LUCENA CITY	79.40	September 30, 2012	June 03, 2024	September 30, 2012	0			0	Second Level (Professional)
2502	PBET	0321738	3682		BATANGAS NATIONAL HIGH SCHOOL	73.93%	October 29, 1992	May 08, 2027		0			0	
2503	PROFESSIONAL BOARD EXAMINATION FOR TEACHERS	0061392	3683		BATANGAS CITY	73.47%	October 25, 1992	March 10, 1993	October 25, 1992	6			0	Second Level (Professional)
2504	CAREER SERVICE SUB-PROFESSIONAL 		3683		BATANGAS CITY	83.94%	July 28, 1991		July 28, 1991	7			0	First Level (Subprofessional)
2505	CAREER SERVICE PROFESSIONAL		3683		BATANGAS CITY	80.78%	October 17, 1993		October 17, 1993	6			0	Second Level (Professional)
2506	RA 1080 - NURSES' LICENSURE EXAMINATION	0681817	3684		MANILA	78.0	December 19, 2010	October 06, 2024	December 19, 2010	6			0	Second Level (Professional)
2507	CAREER SERVICE EXAMINATION - PROFESSIONAL		3684		BATANGAS STATE UNIVERSITY	80.0	March 29, 2009		March 29, 2009	6			0	First Level (Subprofessional)
2508	NURSE LICENSURE EXAM	0546514	3685		LUCENA	75%	November 01, 2008	June 24, 2019	November 01, 2008	6			0	Second Level (Professional)
2509	NURSE LICENSURE EXAMINATION	0297127	3686		MANILA	78.4%	April 28, 1996	December 29, 2024	April 28, 1996	6			0	Second Level (Professional)
2510	LICENSED PROFESSIONAL NURSE	0446612	3687		LUCENA CITY 	78.4	January 06, 2007	July 16, 1905	January 06, 2007	6			0	Second Level (Professional)
2511	CAREER SERVICE PROFESSIONAL EXAM		3688		BATANGAS CITY	84.1	October 25, 1992		October 25, 1992	6			0	Second Level (Professional)
2512	PHILIPPINE BOARD EXAM FOR TEACHERS	0453371	3688		BATANGAS CITY	77	July 26, 1992	June 03, 2024	July 26, 1992	6			0	Second Level (Professional)
2513	LICENSURE EXAMINATION FOR TEACHERS (LET)	0933942	3689		LUCENA CITY 	75.00%	August 30, 2016	September 16, 2025	August 30, 2016	6			0	Second Level (Professional)
2517	NURSE LICENSURE EXAMINATION 	0288383	3692		MANILA 	79.20%	December 04, 1995	September 28, 2027	December 04, 1995	6			0	Second Level (Professional)
2519	PHILIPPINE PROFESSIONAL BOARD FOR TEACHERS	0066190	3695		BATANGAS CITY 	73.92%	May 30, 1993	October 01, 2024	May 30, 1993	6			0	Second Level (Professional)
2520	CAREER SERVICE WRITTEN EXAMINATION 		3695		UNIVERSITY OF PHILIPPINES DILIMAN 	83.70%	December 18, 2022		December 18, 2022	6			0	Second Level (Professional)
2514	CAREER SERVICE EXAMINATION- PEN AND PAPER TEST (SUBPROFESSIONAL)	177/760650	3690		BATANGAS STATE UNIVERSITY, BATANGAS CITY	80.85	June 19, 2022		June 19, 2022	7			0	First Level (Subprofessional)
2515	NURSE LICENSURE EXAMINATION	0622362	3691		LUCENA	78.6%	November 29, 2009	June 04, 2025	November 30, 2009	0			0	
2516	HEALTH CARE SERVICES NC II	160410020022659	3691		TESDA REGION IV-A (BATANGAS)	PASSED	October 01, 2016	October 07, 2021	October 01, 2016	0			0	
2518	CAREER SERVICE PROFESSIONAL EXAMINATION	827/763737	3694		BATANGAS CITY ,BATANGAS	80.75	March 26, 2023	June 09, 2023	March 26, 2023	6			0	Second Level (Professional)
2521	LICENSURE EXAMINATION FOR ELEMENTARY TEACHERS	0658044	3693		CAINTA, RIZAL	76.8%	August 01, 2000	April 15, 2025	August 01, 2000	0			0	
2522	LICENSE PROFESSIONAL TEACHER	1355516	3696		LUCENA CITY	80.4	August 01, 2014	September 19, 2025	August 01, 2014	6			0	Second Level (Professional)
2523	CAREER SERVICE PROFESSIONAL EXAMINATION 		3697		BATANGAS STATE UNIVERSITY- PABLO BORBON CAMPUS, BATANGAS CITY	81.4%	April 06, 2014		April 06, 2014	6			0	Second Level (Professional)
2524	LICENSURE EXAMINATION FOR TEACHERS 	1245083	3698		LUCENA CITY 	78.20%	September 29, 2013	October 31, 2026	September 29, 2013	6			0	Second Level (Professional)
2525	DRIVER' LICENSE 	DO8-20-102307	3698					October 31, 2025		6			0	Second Level (Professional)
2526	LICENSURE EXAMINATION FOR CIVIL ENGINEER	88173	3699		MANUEL L. QUEZON UNIVERSITY, MANILA	76.15	November 18, 2000	December 18, 2000	November 19, 2000	6			0	Second Level (Professional)
2527	PHYSICIAN LICENSURE EXAM	0118498	3700		MANILA	80%	August 01, 2010		August 01, 2010	6			0	Second Level (Professional)
2528	PROFESSIONAL BOARD EXAMINATION FOR TEACHERS 	0039877	3701		BATANGAS NATIONAL HIGH SCHOOL 	70.1%	November 10, 1991	September 01, 2024	November 10, 1991	6			0	Second Level (Professional)
2529	CAREER SERVICE PROFESSIONAL 		3702		CSC - REGION IV	81.08%	November 17, 1998		November 17, 1998	6			0	Second Level (Professional)
2530	CAREER SERVICE SUB-PROFESSIONAL		3702		BATANGAS CITY	82.15	January 24, 1994		January 24, 1994	7			0	First Level (Subprofessional)
2531	LICENSURE EXAMINATION FOR TEACHERS 	1124602	3703		LUCENA CITY 	75.4%	September 26, 2012	October 11, 2018	September 26, 2012	0			0	
2532	NURSE LICENSURE EXAMINATION 	0277220	3705		MANILA	75.20%	June 11, 1995	August 25, 1995	June 12, 1995	0			0	
2533	CIVIL SERVICE SUB-PROFESSIONAL		3705		BATANGAS CITY	81.85%	October 17, 1993			7			0	First Level (Subprofessional)
2534	CAREER SERVICE PROFESSIONAL		3706		BATANGAS NATIONAL HIGH SCHOOL					6			0	Second Level (Professional)
2535	CAREER SERVICE SUB PROFESSIONAL		3706		BATANGAS NATIONAL HIGH SCHOOL					7			0	First Level (Subprofessional)
2536	LICENSURE EXAMINATION FOR TEACHERS 	1085450	3707		QUEZON MEMORIAL ELEMENTARY SCHOOL 	75.0%	September 26, 2010	September 24, 2024	September 26, 2010	6			0	Second Level (Professional)
2537	LICENSURE EXAMINATION FOR TEACHERS	0498801	3709		STA. MESA MANILA	78.8	August 01, 1998	December 26, 2024	August 01, 1998	6			0	Second Level (Professional)
2538	LICENSURE EXAMINATION FOR TEACHERS	0612339	3710		SAMPALOC, MANILA	80	August 08, 1999	November 15, 1999	August 08, 1999	6			0	Second Level (Professional)
2539	LICENSURE EXAMINATION FOR TEACHERS	0243236	3711		NATIONAL UNIVERSITY SAMPALOC, MANILA	75.80	August 23, 1997	December 15, 1997	August 23, 1997	6			0	Second Level (Professional)
2540	LICENSURE EXAMINATION FOR TEACHERS (LET)	1271763	3712		LUCENA  CITY, QUEZON	75.0	January 09, 2013	October 15, 2023	January 09, 2013	6			0	Second Level (Professional)
2542	LICENSURE EXAMINATION FOR TEACHERS	0955057	3713		LUCENA CITY	80	August 26, 2007	January 10, 2028	August 26, 2007	6			0	Second Level (Professional)
2543	LICENSURE EXAMINATION FOR TEACHERS (LET)	0241338	3714		UNIVERSITY OF STO. TOMAS			March 03, 2027		6			0	Second Level (Professional)
2544	LICENSURE EXAMINATION FOR TEACHERS	0982026	3715		LUCENA CITY	75	May 12, 2007	August 07, 2028	May 12, 2007	6			0	Second Level (Professional)
2545	LICENSURE EXAMINATION FOR TEACHERS (LET)	0757246	3716		IBABANG DUPAY ELEMENTARY SCHOOL, LUCENA CITY	78.6	August 25, 2002	November 26, 2024	August 25, 2002	6			0	Second Level (Professional)
2546	LICENSURE EXAMINATION FOR TEACHER (LET)	1124253	3717		LUCENA	76.2	September 25, 2011	June 01, 2027	September 25, 2011	6			0	Second Level (Professional)
2547	LICENSURE EXAMINATION FOR TEACHERS (LET)	1461480	3718		MANILA	78.2	March 20, 2016	October 31, 2025	March 20, 2016	6			0	Second Level (Professional)
2548	LICENSURE EXAMINATION FOR TEACHER	1578375	3719		LUCENA CITY, QUEZON PROVINCE	80.4	September 24, 2017	December 13, 2017	September 24, 2017	6			0	Second Level (Professional)
2549	LICENSURE EXAMINATION FOR TEACHERS 	1393613	3720		LUCENA	79.0	September 27, 2015	October 09, 2027	September 27, 2015	6			0	Second Level (Professional)
2550	LICENSURE EXAMINATION FOR TEACHERS 	1487917	3721		LUCENA CITY	80.20	September 25, 2016	November 12, 2028	September 25, 2016	6			0	Second Level (Professional)
2551	LICENSURE EXAMINATION FOR TEACHERS	0929842	3722		LUCENA CITY	80	August 27, 2006	September 29, 2002	August 27, 2006	6			0	Second Level (Professional)
2552	LICENSURE EXAMINATION FOR TEACHERS 	1842770	3723		SACRED HEAR COLLEGE	85.8	September 29, 2019	January 12, 2026	September 29, 2019	6			0	Second Level (Professional)
2553	LICENSURE EXAMINATION FOR TEACHERS	744888	3724		STA. MESA MANILA	77.4	August 26, 2001	December 18, 2001	August 26, 2001	6			0	Second Level (Professional)
2554	LICENSURE EXAMINATION FOR TEACHERS	1648920	3725		LUCENA CITY	81.60	March 25, 2018	May 12, 2027	March 25, 2018	6			0	Second Level (Professional)
2555	CAREER SERVICE PROFESSIONAL EXAMINATION (CSE-PPT)	2166	3725		BATANGAS CITY	80.05	August 06, 2017		August 06, 2017	6			0	Second Level (Professional)
2556	LICENSURE EXAMINATION FOR TEACHERS	1581339	3726		LUCENA	80	September 24, 2017	November 13, 2026	September 24, 2017	6			0	Second Level (Professional)
2557	LICENSURE EXAMINATION FOR TEACHERS	1425999	3727		LUCENA CITY, QUEZON	76.40	September 27, 2015	July 01, 2027	September 27, 2015	6			0	Second Level (Professional)
2558	LICENSURE EXAMINATION FOR TEACHERS	1508472	3728		LUCENA, QUEZON	78.6	September 28, 2016	April 14, 2025	September 28, 2016	6			0	Second Level (Professional)
2559	LICENSURE EXAMINATION FOR TEACHERS	1273661	3729		HONGKONG	75	October 03, 2013	March 07, 2026	October 03, 2013	6			0	Second Level (Professional)
2562	LICENSURE EXAMINATION FOR TEACHERS	1298892	3731		LUCENA CITY, QUEZON	78.80	January 26, 2014	January 18, 2026	January 26, 2014	6			0	Second Level (Professional)
2564	LICENSURE EXAMINATION FOR TEACHERS (LET)	1068468	3734		IYAM, LUCENA CITY, QUEZON	76.20	April 18, 2010	April 05, 2019	April 18, 2010	6			0	Second Level (Professional)
2560	LICENSURE EXAMINATION FOR TEACHERS	1419662	3730		ST. JUDE COLLEGE MANILA	76.4	September 27, 2015	September 16, 2024	September 27, 2015	6			0	Second Level (Professional)
2561	LICENSURE EXAMINATION FOR TEACHERS	1515146	3732		PRC LUCENA		December 23, 2016		December 23, 2016	6			0	Second Level (Professional)
2563	LICENSURE EXAMINATION FOR TEACHERS	1641287	3733		MANILA	76	March 25, 2018	December 29, 2024	March 25, 2018	6			0	Second Level (Professional)
2565	LICENSURE EXAMINATION FOR TEACHERS	1096785	3735		LUCENA CITY	76.4	March 04, 2011	February 05, 2027	March 04, 2011	6			0	Second Level (Professional)
2566	LICENSURE EXAMINATION FOR TEACHERS	1026606	3736		LUCENA CITY	81.6	April 01, 2009	June 01, 2027	April 01, 2009	6			0	Second Level (Professional)
2567	LICENSURE EXAMINATION FOR TEACHERS	1425977	3737		LUCENA CITY, QUEZON	78.0	September 27, 2015	May 20, 2028	September 27, 2015	6			0	Second Level (Professional)
2568	LICENSURE EXAMINATION FOR TEACHERS	1692274	3738		LUCENA CITY	75.2	September 01, 2018	July 06, 2027	September 01, 2018	6			0	Second Level (Professional)
2569	LICENSURE EXAMINATION FOR TEACHERS	0781933	3739		LUCENA CITY	76.8	August 25, 2002	December 24, 2023	August 25, 2002	6			0	Second Level (Professional)
2570	LICENSURE EXAMINATION FOR TEACHERS	0803294	3741		BATANGAS CITY	74.20	October 10, 1992	September 29, 2024	October 10, 1992	6			0	Second Level (Professional)
2571	LICENSURE EXAMINATION FOR TEACHERS	1019517	3740		LUCENA CITY	75	September 28, 2009	February 17, 2027	September 28, 2009	6			0	Second Level (Professional)
2572	LICENSURE EXAMINATION FOR TEACHERS	0009136	3742		QUEZON CITY	70.85	November 22, 1987	October 30, 1988	November 22, 1987	6			0	Second Level (Professional)
2573	LICENSURE EXAMINATION FOR TEACHERS	0241495	3744		BATANGAS NATIONAL HIGH SCHOOL	73.75	November 10, 1991	June 02, 2025	November 10, 1991	6			0	Second Level (Professional)
2574	CAREER SERVICE PROFESSIONAL		3744		BATANGAS NATIONAL HIGH SCHOOL	80.78	July 28, 1991		July 28, 1991	6			0	Second Level (Professional)
2575	LICENSURE EXAMINATION FOR TEACHERS	1123914	3743		LUCENA CITY, PHILIPPINES	77.80	September 25, 2011	November 19, 2024	September 25, 2011	6			0	Second Level (Professional)
2576	LICENSURE EXAMINATION FOR TEACHERS	0780611	3745		LUCENA CITY	76.80	August 25, 2002	February 13, 2026	August 25, 2002	6			0	Second Level (Professional)
2577	LICENSURE EXAMINATION FOR TEACHERS	1803681	3746		LUCENA CITY 	79	September 01, 2019	October 05, 2025	September 01, 2019	6			0	Second Level (Professional)
2578	LICENSURE EXAMINATION FOR TEACHERS	0756399	3748		LUCENA CITY	78.60	August 01, 2002	December 15, 2024	August 01, 2002	6			0	Second Level (Professional)
2579	PBET	621110	3747		PANDACAN, MANILA	76.2		April 19, 1999		6			0	Second Level (Professional)
2580	CARRER SERVICE PROFESSIONAL EXAM		3749		BATANGAS CITY, BATANGAS	85.4	December 03, 2017		December 03, 2017	6			0	Second Level (Professional)
2581	LICENSURE EXAMINATION FOR TEACHERS	0158269	3750		BATANGAS CITY	72.15	October 25, 1992	September 30, 1997	October 25, 1992	6			0	Second Level (Professional)
2582	LICENSURE EXAMINATION FOR TEACHERS	0820742	3751		LUCENA CITY	78.20	January 08, 2003	February 13, 2027	January 08, 2003	6			0	Second Level (Professional)
2583	LICENSURE EXAMINATION FOR TEACHERS	0894177	3752		LUCENA	79.80	August 14, 2005	May 05, 2024	August 14, 2005	6			0	Second Level (Professional)
2584	LICENSURE EXAMINATION FOR TEACHERS	1123475	3753		IYAM, LUCENA CITY	76.4	September 25, 2011	January 15, 2027	September 25, 2011	6			0	Second Level (Professional)
2585	LICENSURE EXAMINATION FOR TEACHERS	1516711	3754		LUCENA CITY	75.6	September 25, 2016	May 07, 2025	September 25, 2016	6			0	Second Level (Professional)
2586	LICENSURE EXAMINATION FOR TEACHERS	0656056	3755		F. TORRES HIGH SCHOOL GAGALANGIN TONDO MANILA	76.8	August 27, 2000	September 17, 2026	August 27, 2000	6			0	Second Level (Professional)
2587	LICENSURE ELIGIBILITY FOR TEACHERS	0820478	3756		LUCENA CITY	80.80	August 31, 2003	December 04, 2026	August 31, 2003	6			0	Second Level (Professional)
2588	LICENSURE EXAMINATION FOR TEACHERS	1304119	3757		IYAM, LUCENA CITY	75	September 25, 2011	April 16, 2023	September 25, 2011	6			0	Second Level (Professional)
2589	LIVENSURE EXAMINATION FOR TEACHERS	1085027	3760		LUCENA CITY	75.00	September 26, 2010	March 09, 2026	September 26, 2010	6			0	Second Level (Professional)
2590	LICENSURE EXAMINATION FOR TEACHERS	0866381	3759		LUCENA CITY, QUEZON PROVINCE	82.20	August 29, 2024	December 25, 2026	August 29, 2024	6			0	Second Level (Professional)
2591	PROFESSIONAL BOARD EXAMINATION FOR TEACHERS	0071575	3758		PABLO BORBON INSTITUTE OF TECHNOLOGY	70.8	May 30, 1993	November 29, 2027	May 30, 1993	6			0	Second Level (Professional)
2592	LICENSURE EXAMINATION FOR TEACHERS	104565	3761		LUCENA CITY	76.40	November 15, 2009	April 29, 2019	November 15, 2009	6			0	Second Level (Professional)
2593	LICENSURE EXAMINATION FOR TEACHERS	0095910	3762		PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY	73.06	November 25, 1990	October 24, 2026	November 25, 1990	6			0	Second Level (Professional)
2594	LICENSURE EXAMINATION FOR TEACHERS	0023680	3764		NCR - MANILA	75.00	August 24, 1996	November 19, 1996	August 24, 1996	6			0	Second Level (Professional)
2595	LICENSURE EXAMINATION FOR TEACHERS	0110415	3765		BATANGAS CITY	70	October 25, 1992	October 04, 2019	October 25, 1992	6			0	Second Level (Professional)
2596	PRC LICENSE	0004994	3766		MANILA	N/A	November 25, 2015	March 09, 2027	November 25, 2015	6			0	Second Level (Professional)
2597	LICENSURE EXAMINATION FOR TEACHERS	1697719	3768		LUCENA CITY, QUEZON PROVINCE	77.80	September 30, 2018	January 28, 2028	September 30, 2018	6			0	Second Level (Professional)
2598	LICENSURE EXAMINATION FOR TEACHERS	1134868	3767		LUCENA CITY	77.2	March 31, 2012	August 27, 2027	March 31, 2012	6			0	Second Level (Professional)
2599	LICENSURE EXAMINATION FOR TEACHERS	1123669	3769		LUCENA CITY	75.40	September 01, 2011	August 20, 2028	September 01, 2011	6			0	Second Level (Professional)
2600	LICENSURE EXAMINATION FOR TEACHERS	709083	3772		RAMON MAGSAYSAY HIGH SCHOOL	75	August 26, 2001	October 26, 2001	August 26, 2001	6			0	Second Level (Professional)
2601	LICENSURE EXAMINATION FOR TEACHERS	1587508	3774		MANILA	81.6	September 24, 2017	November 04, 2027	September 24, 2017	6			0	Second Level (Professional)
2602	LICENSURE EXAMINATION FOR TEACHERS	1236144	3775		LUCENA CITY	76.40	September 29, 2013	January 12, 2025	September 29, 2013	6			0	Second Level (Professional)
2603	LICENSURE EXAMINATION FOR TEACHERS	0780473	3776		LUCENA CITY	77.80	August 25, 2002	November 19, 2025	August 25, 2002	6			0	Second Level (Professional)
2604	LICENSURE EXAMINATION FOR TEACHERS	1046209	3777		LUCENA CITY	75	September 22, 2009	August 22, 2024	September 22, 2009	6			0	Second Level (Professional)
2605	PROFESSIONAL BORAD EXAMINATION FOR TEACHERS	0029319	3778		BATANGAS CITY SOUTH ELEMENTARY SCHOOL	78.3	May 30, 1993	January 23, 1997	May 30, 1993	6			0	Second Level (Professional)
2606	LICENSURE EXAMINATION FOR TEACHERS	0099378	3779		QUEZON CITY	70	November 24, 1985	January 01, 2027	November 24, 1985	6			0	Second Level (Professional)
2607	LICENSURE EXAMINATION FOR TEACHERS	1198046	3771		LUCENA CITY	77	January 29, 2013	September 24, 2020	January 29, 2013	6			0	Second Level (Professional)
2608	LICENSURE EXAMINATION FOR TEACHERS	0820926	3770		LUCENA CITY	76.4	August 30, 2003	June 22, 2027	August 30, 2003	6			0	Second Level (Professional)
2609	LICENSURE EXAMINATION FOR TEACHERS	09454274	3780		LUCENA CITY	76.0	August 14, 2005	September 03, 2027	August 14, 2005	6			0	Second Level (Professional)
2610	LICENSURE EXAMINATION FOR TEACHERS	1046209	3773		LUCENA CITY	75	September 22, 2009	August 22, 2027	September 22, 2009	6			0	Second Level (Professional)
2611	LICENSURE EXAMINATION FOR TEACHERS	1634360	3781		LUCENA CITY	75.0	June 07, 2018	June 13, 2027	June 07, 2018	6			0	Second Level (Professional)
2612	LICENSURE EXAMINATION FOR TEACHERS	2077826	3782		LUCENA CITY	75	March 19, 2023	August 12, 2026	March 19, 2023	6			0	Second Level (Professional)
2613	LICENSURE EXAMINATION FOR TEACHERS	1810560	3783		LUCENA CITY, QUEZON	75.0	September 29, 2019	June 08, 2025	September 29, 2019	6			0	Second Level (Professional)
2614	CAREER SERVICE PROFESSIONAL		3784		QUEZON CITY	71.9	July 26, 1987		July 26, 1987	6			0	Second Level (Professional)
2615	LICENSURE EXAMINATION FOR TEACHERS (RA 1080)	1873847	3787		LUCENA CITY, QUEZON	80.60	September 28, 2019	January 10, 2026	September 28, 2019	6			0	Second Level (Professional)
2616	LICENSURE EXAMINATION FOR TEACHERS	0684889	3785		MANILA	79.60	August 27, 2000	November 26, 2000	August 27, 2000	6			0	Second Level (Professional)
2617	LICENSURE EXAMINATION FOR TEACHERS	1901674	3786		LUCENA CITY	85.40	January 30, 2022	December 30, 2028	January 30, 2022	6			0	Second Level (Professional)
2618	LICENSURE EXAMINATION FOR TEACHERS	1470287	3788		PAGADIAN CITY	75	March 02, 2016	December 16, 2026	March 02, 2016	6			0	Second Level (Professional)
2619	PROFESSIONAL REGULATION COMISSION	0875489	3789		LUCENA	80.6	August 29, 2004	April 10, 2026	August 29, 2004	6			0	Second Level (Professional)
2620	LICENSURE EXAMINATION FOR TEACHERS	1135054	3790		LUCENA CITY	75	March 11, 2012	April 05, 2027	March 11, 2012	6			0	Second Level (Professional)
2621	LICENSURE EXAMINATION FOR TEACHERS	1254000	3792		MANILA	80	September 29, 2013	April 24, 2028	September 29, 2013	6			0	Second Level (Professional)
2622	LICENSURE EXAMINATION FOR TEACHERS 	1638128	3791		LUCENA CITY	76.80	March 25, 2018	February 14, 2027	March 25, 2018	6			0	Second Level (Professional)
2623	LICENSURE EXAMINATION FOR TEACHERS 	1757728	3793		LUCENA CITY	79.80	March 06, 2019	October 19, 2025	March 06, 2019	6			0	Second Level (Professional)
2624	LICENSURE EXAMINATION FOR TEACHERS	1697710	3795		PRC LUCENA	79.60	September 30, 2018	March 30, 2025	September 30, 2018	6			0	Second Level (Professional)
2625	LICENSURE EXAMINATION FOR TEACHERS	1200638	3794		LUCENA CITY	77.4	March 10, 2013	August 31, 2024	March 10, 2013	6			0	Second Level (Professional)
2626	LICENSURE EXAMINATION FOR TEACHERS 	0592341	3796		V. MAPA HIGHSCHOOL QUIAPO MANILA	79	August 08, 1999	November 12, 2025	August 08, 1999	6			0	Second Level (Professional)
2627	LICENSURE EXAMINATION FOR TEACHERS	1335485	3797		LUCENA CITY	76	August 17, 2014	June 25, 2026	August 17, 2014	6			0	Second Level (Professional)
2628	LICENSURE EXAMINATION FOR TEACHERS	1307303	3798		LUCENA CITY	75.0	January 26, 2014	February 12, 2027	January 26, 2014	6			0	Second Level (Professional)
2629	LICENSURE EXAMINATION FOR TEACHERS	0756656	3800		LUCENA CITY		January 08, 2001	September 05, 2025	January 08, 2001	6			0	Second Level (Professional)
2630	LICENSURE EXAMINATION FOR TEACHERS	1480734	3799		LUCENA	77.2	September 25, 2016	December 25, 2025	September 25, 2016	6			0	Second Level (Professional)
2631	LICENSURE EXAMINATION FOR TEACHERS 	948541	3801		GEN. MAXIMO SCHOOL, TONDO MANILA	75.40	August 26, 2007	May 08, 2026	August 26, 2007	6			0	Second Level (Professional)
2632	PROFESSIONAL BOARD EXAMINATION FOR TEACHERS	0060310	3803		BATANGAS NATIONAL HIGH SCHOOL-BATANGAS CITY	71	May 30, 1993	July 13, 2022	May 30, 1993	6			0	Second Level (Professional)
2633	LET/PRC	1045833	3805		LUCENA CITY	76.6	April 10, 2009	May 26, 2025	April 10, 2009	6			0	Second Level (Professional)
2634	LICENSURE EXAMINATION FOR TEACHERS	0582707	3806		TAYUMAN TONDO MANILA	75	August 14, 1998	May 09, 2024	August 14, 1998	6			0	Second Level (Professional)
2635	LICENSURE EXAMINATION FOR TEACHERS	0896630	3804		LUCENA	75.80	August 14, 2005	November 30, 2027	August 14, 2005	6			0	Second Level (Professional)
2636	CAREER SERVICE PROFESSIONAL	78705	3804		MANILA	80.80	July 28, 1991		July 28, 1991	6			0	Second Level (Professional)
2637	LICENSURE EXAMINATION FOR TEACHERS	1567936	3807		LUCENA CITY	79.4	September 24, 2017	March 01, 2026	September 24, 2017	6			0	Second Level (Professional)
2638	CAREER SERVICE PROFESSIONAL ELIGIBILITY		3802		BATANGAS NATIONAL HIGH SCHOOL	80.79	March 18, 2018		March 18, 2018	7			0	Second Level (Professional)
2639	LICENSURE EXAMINATION FOR TEACHERS	0492668	3808		MANILA	75	January 08, 1998	December 23, 2024	January 08, 1998	6			0	Second Level (Professional)
2640	LICENSURE EXAMINATION FOR TEACHERS	043100	3809		BATANGS NATIONAL HIGH SCHOOL	70.69	May 05, 1994	February 02, 2024	May 05, 1994	6			0	Second Level (Professional)
2641	LICENSURE EXAMINATION FOR TEACHERS	0898878	3812		LUCENA CITY	78.60	August 14, 2005	July 29, 2027	August 14, 2005	6			0	Second Level (Professional)
2642	LICENSURE EXAMINATION FOR TEACHERS	06922950	3813		BAGUIO	75	January 10, 2001	April 17, 2025	January 10, 2001	6			0	Second Level (Professional)
2643	LICENSURE EXAMINATION FOR TEACHERS	0657668	3810		MANILA	80.60	August 27, 2000	March 11, 2027	August 27, 2000	6			0	Second Level (Professional)
2644	LICENSURE EXAMINATION FOR TEACHERS	02981072	3815		LUCENA CITY	78	August 31, 2003	October 02, 2025	August 31, 2003	6			0	Second Level (Professional)
2645	LICENSURE EXAMINATION FOR TEACHERS	0709902	3811		LUCENA CITY	83	August 26, 2001	October 02, 2026	August 26, 2001	6			0	Second Level (Professional)
2649	LICENSURE EXAMINATION FOR TEACHERS	0592155	3817		NATIONAL TEACHER COLLEGES	76.60	August 08, 1999	July 08, 2025	August 08, 9999	6			0	Second Level (Professional)
2652	LICENSURE EXAMINATION FOR TEACHERS	0241662	3818		NATIONAL UNIVERSITY, MANILA	76.6	August 23, 1997	October 02, 2025	August 23, 1997	6			0	Second Level (Professional)
2646	PROFESSIONAL BOARD EXAMINATION FOR TEACHERS	0359274	3814		BATANGAS NATIONAL HIGH SCHOOL 	77.18	May 29, 1994	April 09, 2027	May 29, 1994	6			0	Second Level (Professional)
2648	LICENSURE EXAMINATION FOR TEACHERS	1024364	3822		LUCENA CITY	77	April 30, 2018	January 09, 2024	April 30, 2018	6			0	Second Level (Professional)
2651	LICENSURE EXAMINATION FOR TEACHERS	0034705	3824		NATIONAL CAPITAL REGION-MANILA	76.6	August 24, 1996	March 09, 2025	August 24, 1996	6			0	Second Level (Professional)
2647	CAREER SERVICE PROFESSIONAL ELIGIBILITY		3816		BATANGAS NATIONAL HIGH SCHOOL	81.11	November 27, 1994		November 27, 1994	6			0	Second Level (Professional)
2650	PROFESSIONAL REGULATION COMMISSION	0975381	3823		BATANGAS CITY	75.60	May 29, 1994	January 12, 2026	May 29, 1994	6			0	Second Level (Professional)
2653	PROFESSIONAL BOARD EXAM FOR TEACHERS (PBET)	0556055	3825		BATANGAS NATIONAL HIGH SCHOOL BATANGAS CITY	73	May 25, 1995	January 28, 2026	May 25, 1995	6			0	Second Level (Professional)
2654	LICENSURE EXAMINATION FOR TEACHERS	0113165	3819		BATANGAS NATIONAL HIGH SCHOOL, BATANGAS CITY	70.80	May 28, 1995	November 22, 2025	May 28, 1995	6			0	Second Level (Professional)
2655	CAREER SERVICE SUB-PROFESSIONAL		3819		WESTERN PHILIPPINE COLLEGES, HILTOP, BATANGAS CITY	84.2	November 27, 1994		November 27, 1994	7			0	First Level (Subprofessional)
2656	LICENSURE EXAMINATION FOR TEACHERS	1026698	3820		IYAM, LUCENA CITY	75	April 05, 2009	March 11, 2028	April 05, 2009	6			0	Second Level (Professional)
2657	LICENSURE EXAMINATION FOR TEACHERS	0709803	3821		QUEZON NATIONAL HIGH SCHOOL	78.4	August 21, 2001	March 31, 2027	August 21, 2001	6			0	Second Level (Professional)
2658	LICENSURE EXAMINATION FOR TEACHERS	002235	3829		FEATI, MANILA	75.50	August 25, 1996	January 30, 2027	August 25, 1996	6			0	Second Level (Professional)
2659	LICENSURE EXAMINATION FOR TEACHERS	0539256	3826		LUCENA CITY		March 13, 1999	August 31, 2025	March 13, 1999	6			0	Second Level (Professional)
2660	LICENSURE EXAMINATION FOR TEACHERS (LET)	0592304	3831		V. MAPA HIGH SCHOOL QUIAPO, MANILA	75.0	August 08, 1999	October 13, 2027	August 08, 1999	6			0	Second Level (Professional)
2661	LICENSURE EXAMINATION FOR TEACHERS	0276994	3827		BATANGAS NATIONAL HIGH SCHOOL	75.54	May 29, 1994	March 22, 2024	May 29, 1994	6			0	Second Level (Professional)
2662	LICENSURE EXAMINATION FOR TEACHERS 	0292812	3832		MANUEL L. QUEZON UNIVERSITY	76.2	August 23, 1997	May 23, 2026	August 23, 1997	6			0	Second Level (Professional)
2663	LICENSURE EXAMINATION FOR TEACHERS	0015629	3828		BATANGAS CITY SOUTH ELEMENTARY SCHOOL	72.74	May 30, 1993	January 17, 2027	May 30, 1993	6			0	Second Level (Professional)
2664	LICENSURE EXAMINATION FOR TEACHERS	0066417	3830		BATANGAS CITY	71.29	October 25, 1992	October 02, 2027	October 25, 1992	6			0	Second Level (Professional)
2665	LICENSURE EXAMINATION FOR TEACHERS	1139002	3833		LUCENA CITY	76	October 01, 2011	June 11, 2025	October 01, 2011	6			0	Second Level (Professional)
2666	LICENSURE EXAMINATION FOR TEACHERS (RA 1080)	0582314	3834		ORIENTAL MINDORO	75	August 08, 1999	August 24, 2027	August 08, 1999	6			0	Second Level (Professional)
2667	LICENSURE EXAMINATION FOR TEACHERS	1951314	3837		LUCENA CITY	79	June 26, 2022	January 23, 2028	June 26, 2022	6			0	Second Level (Professional)
2668	LICENSURE EXAMINATION FOR TEACHERS	2142096	3839		LUCENA	81.4	September 24, 2023	November 03, 2027	September 24, 2023	6			0	Second Level (Professional)
2669	PROFESSIONAL BOARD EXAMINATION FOR TEACHERS	0644786	3841		BATANGAS NATIONAL HIGH SCHOOL	72.46	November 11, 1991	January 10, 2028	November 11, 1991	6			0	Second Level (Professional)
2670	LICENSURE EXAMINATION FOR TEACHERS	1578695	3840		LUCENA CITY	76.2	September 24, 2017	June 13, 2027	September 24, 2017	6			0	Second Level (Professional)
2671	LICENSURE EXAMINATION FOR TEACHERS	0894012	3842		LUCENA CITY 	77.6	August 14, 2005	September 14, 2027	August 14, 2005	6			0	Second Level (Professional)
2672	LICENSURE EXAMINATION FOR TEACHERS	1630570	3838		MANILA	83.4	September 24, 2017	August 07, 2027	September 24, 2017	6			0	Second Level (Professional)
2673	LICENSURE EXAMINATION FOR TEACHERS (LET)	0660401	3843		STA. MESA, MANILA	77.60	August 27, 2000	April 11, 2027	August 27, 2000	6			0	Second Level (Professional)
2674	LICENSURE EXAMINATION FOR TEACHERS	1271590	3836		LUCENA CITY	81.2	September 29, 2013	December 14, 2026	September 29, 2013	6			0	Second Level (Professional)
2675	LICENSURE EXAMINATION FOR TEACHERS	1046198	3835		LUCENA CITY	75.8	October 04, 2009	June 10, 2027	October 04, 2009	6			0	Second Level (Professional)
2676	PROFESSIONAL BOARD EXAMINATION FOR TEACHERS	312656	3844		BATANGAS NATIONA HIGH SCHOOL 	74	May 28, 1995	February 24, 2024	May 28, 1995	6			0	Second Level (Professional)
2677	PROFESSIONAL EXAMINATION FOR TEACHERS	0304406	3845		BATANGAS CITY	76.67	May 31, 1993	April 20, 2027	May 31, 1993	6			0	Second Level (Professional)
2678	LICENSURE EXAMINATION FOR TEACHERS	289228	3846		BATANGAS CITY	70.61	May 28, 1995	July 28, 2019	May 28, 1995	6			0	Second Level (Professional)
2679	LICENSURE EXAMINATION FOR TEACHERS	1509872	3850		LUCENA CITY	76.4	September 25, 2016	October 06, 2028	September 25, 2016	6			0	Second Level (Professional)
2680	LICENSURE EXAMINATION FOR TEACHERS	0547766	3848		BATANGAS NATIONAL HIGH SCHOOL, BATANGAS CITY	74.44	May 24, 1994	November 13, 2024	May 24, 1994	6			0	Second Level (Professional)
2681	PROFESSIONAL BOARD EXAMINATION FOR TEACHERS	0126531	3852		QUEZON CITY	72.40	November 27, 1988	July 17, 2027	November 27, 1988	6			0	Second Level (Professional)
2682	LICENSURE EXAMINATION FOR TEACHERS	1515115	3851		LUCENA CITY	79.60	September 25, 2016	December 23, 2016	September 25, 2016	6			0	Second Level (Professional)
2683	LICENSURE EXAMINATION FOR TEACHERS	1165651	3847		LUCENA CITY	78	September 30, 2012	May 14, 2027	September 30, 2012	6			0	Second Level (Professional)
2684	PROFESSIONAL BOARD EXAMINATION FOR TEACHERS	0060787	3854		BATANGAS CITY	75.4	October 23, 1994	August 12, 2026	October 23, 1994	6			0	Second Level (Professional)
2685	CIVIL SERVICE SUB PROF. EXAMINATION 		3853		BATANGAS CITY 	83.94	May 24, 1998		May 24, 1998	7			0	First Level (Subprofessional)
2686	LICENSURE EXAMINATION FOR TEACHERS 	0493346	3853		DAPITAN, MANILA	83.20	January 08, 1998	August 16, 2026	January 08, 1998	6			0	Second Level (Professional)
2687	NATIONAL QUALIFYING EXAMINATION FOR SCHOOL HEADS 		3853		CAINTA, RIZAL	99.32	January 20, 2013		January 20, 2013	6			0	Second Level (Professional)
2688	LICENSURE EXAMINATION FOR TEACHERS	1815553	3849		LUCENA CITY	83.6	September 29, 2019	November 17, 2025	September 29, 2019	6			0	Second Level (Professional)
2689	PROFESSIONAL BOARD EXAMINATION FOR TEACHERS	0015603	3858		BATANGAS CITY	72.92	October 25, 1992	July 16, 2027	October 25, 1992	6			0	Second Level (Professional)
2690	LICENSURE EXAMINATION FOR TEACHERS	0026774	3856		BATANGAS CITY	72.92	October 25, 1992	October 21, 2026	October 25, 1992	6			0	Second Level (Professional)
2691	BOARD LICENSURE EXAMINATION FOR TEACHERS	1425587	3860		LUCENA CITY	76	September 27, 2015	December 30, 2027	September 27, 2015	6			0	Second Level (Professional)
2692	LICENSURE EXAMINATION FOR TEACHERS	2085870	3857		LUCENA CITY	82.8	March 19, 2023	December 02, 2026	March 19, 2023	6			0	Second Level (Professional)
2693	LICENSURE EXAMINATION FOR TEACHERS	1516704	3859		LUCENA CITY	78.80	September 25, 2016	October 22, 2028	September 25, 2016	6			0	Second Level (Professional)
2694	PROFESSIONAL BOARD EXAMINATION FOR TEACHERS	0506885	3866		BATANGAS CITY		May 29, 1994	May 16, 2025	May 29, 1994	6			0	Second Level (Professional)
2695	LICENSURE EXAMINATION FOR TEACHERS	0192828	3861		BATANGAS CITY	72.2	October 25, 1992	January 29, 2024	October 25, 1992	6			0	Second Level (Professional)
2696	LICENSURE EXAMINATION FOR TEACHERS	1207644	3855		LUCENA CITY	75.6	March 10, 2013	January 28, 2027	March 10, 2013	6			0	Second Level (Professional)
2697	LICENSURE EXAMINATION FOR TEACHERS	0756444	3867		LUCENA CITY	78.8	August 25, 2002	January 24, 2025	August 25, 2002	6			0	Second Level (Professional)
2698	LICENSURE EXAMINATION FOR TEACHER	1013360	3868		LUCENA CITY	76	September 28, 2008	February 02, 2009	September 28, 2008	6			0	Second Level (Professional)
2699	LICENSURE EXAMINATION FOR TEACHERS	0636192	3864		NATIONAL CAPITAL REGION	76.8	August 08, 1999	November 15, 2023	August 08, 1999	6			0	Second Level (Professional)
2700	LICENSURE EXAMINATION FOR TEACHERS (RA 1080)	1904248	3869		LUCENA CITY	81	March 29, 2020	August 31, 2025	March 29, 2020	6			0	Second Level (Professional)
2701	LICENSURE EXAM FOR TEACHERS (RA 1080)	2055147	3871		LUCENA CITY	76.40	October 02, 2022	January 09, 2026	October 02, 2022	6			0	Second Level (Professional)
2702	LICENSURE EXAMINATION FOR TEACHERS	1545202	3870		LUCENA CITY	79	March 26, 2017	August 15, 2026	March 26, 2017	6			0	Second Level (Professional)
2703	LICENSURE EXAMINATION FOR TEACHERS	1202865	3862		LUCENA CITY	79.2	March 10, 2013	December 06, 2027	March 10, 2013	6			0	Second Level (Professional)
2704	LICENSURE EXAMINATION FOR TEACHERS	1762791	3863		LUCENA CITY	76.6	March 24, 2019	April 08, 2025	March 24, 2019	6			0	Second Level (Professional)
2705	LICENSURE EXAMINATION FOR TEACHERS (RA 1080)	1809592	3872		LUCENA CITY	79.80	September 29, 2020	April 01, 2025	September 29, 2020	6			0	Second Level (Professional)
2706	LICENSURE EXAMINATION FOR TEACHERS	2153800	3865		LUCENA CITY, QUEZON	82.6	September 24, 2023	October 23, 2027	September 24, 2023	6			0	Second Level (Professional)
2707	PROFESSIONAL BOARD EXAMINATION FOR TEACHERS	0054157	3873		BATANGAS CITY	74.5	May 30, 1993	January 09, 2027	May 30, 1993	6			0	Second Level (Professional)
2708	LICENSURE EXAMINATION FOR TEACHERS	1850632	3874		LUCENA CITY	80	September 29, 2019	May 19, 2026	September 29, 2019	6			0	Second Level (Professional)
2709	LICENSURE EXAMINATION FOR TEACHERS	1198036	3875		LUCENA CITY	75.6	March 10, 2013	September 15, 2025	March 10, 2013	6			0	Second Level (Professional)
2710	LICENSURE EXAMINATION FOR TEACHERS	1398341	3877		LUCENA CITY	78	September 15, 2015	December 01, 2027	September 15, 2015	6			0	Second Level (Professional)
2711	PRC LICENSE	13335897	3876		LUCENA CITY	75.0	August 17, 2014	March 03, 2026	August 17, 2014	6			0	Second Level (Professional)
2712	LICENSURE EXAMINATION FOR TEACHERS	1123737	3878		LUCENA CITY	75	September 23, 2011	October 31, 2026	September 23, 2011	6			0	Second Level (Professional)
2713	PRC LICENSE	1344022	3881		LUCENA CITY	75.0	July 17, 2014	November 30, 2024	July 17, 2014	6			0	Second Level (Professional)
2714	LICENSURE EXAMINATION FOR TEACHERS	1038015	3882		LUCENA CITY	80	August 26, 2007	October 02, 2025	August 26, 2007	6			0	Second Level (Professional)
2715	LICENSURE EXAMINATION FOR TEACHERS	0894127	3879		LUCENA CITY	75.8		December 31, 2023		6			0	Second Level (Professional)
2716	BOARD LICENSURE EXAMMINATION FOR PROFESSIONAL TEACHERS	1491007	3883		LUCENA CITY	80.5	September 25, 2016	October 20, 2027	September 25, 2016	6			0	Second Level (Professional)
2717	PROFESSIONAL BOARD EXAMINATION FOR TEACHERS (PBET)	0360495	3916		BATANGAS NATIONAL HIGH SCHOOL	70.00	October 25, 1992	April 29, 1998	October 25, 1992	6			0	Second Level (Professional)
2718	PROFESSIONAL BOARD EXAMINATION FOR TEACHERS	0156680	3917		BATANGAS NATIONAL HIGH SCHOOL	73.9	May 28, 1995	July 03, 2024	May 28, 1995	6			0	Second Level (Professional)
2719	LICENSURE EXAMINATION FOR TEACHERS	1762576	3918		LUCENA, QUEZON	80.20	March 24, 2019	May 08, 2025	March 24, 2019	6			0	Second Level (Professional)
2720	LICENSURE EXAMINATION FOR TEACHERS	0510808	3920		MANILA	75	August 01, 1998	January 13, 2025	August 01, 1998	6			0	Second Level (Professional)
2721	LICENSURE EXAMINATION FOR TEACHERS 	0582315	3921		ORIENTAL MINDORO	75.4	August 01, 1999	June 02, 2026	August 01, 1999	6			0	Second Level (Professional)
2722	LICENSURE EXAMINATION FOR TEACHERS	0899027	3922		LUCENA CITY	76.80	August 14, 2005	September 05, 2024	August 14, 2005	6			0	Second Level (Professional)
2723	LIENSURE EXAMINATION FOR TEACHERS (LET)	1836162	3923		LUCENA	75.6	September 29, 2019	August 11, 2027	September 29, 2019	6			0	Second Level (Professional)
2724	LICENSURE EXAMINATION FOR TEACHERS	0206858	3880		BATANGAS NATIONAL HIGH SCHOOL	73.8	May 28, 1995		May 28, 1995	6			0	Second Level (Professional)
2725	PROFESSIONAL BOARD EXAMS FOR TEACHERS (PBET)	0289180	3924		MAMBURAO OCCIDENTAL MINDORO	75.09	May 26, 1995	January 18, 2025	May 26, 1995	6			0	Second Level (Professional)
2726	LICENSURE EXAMINATION FOR TEACHERS	0621110	3925		TONDO MANILA	79.6	August 08, 1999	February 12, 2027	August 08, 1999	6			0	Second Level (Professional)
2727	LICENSURE EXAMINATION FOR TEACHERS	1695868	3961		MANILA	75.40	September 30, 2018	June 11, 2025	September 30, 2018	6			0	Second Level (Professional)
2728	LICENSURE EXAMINATION FOR TEACHERS	2150341	3958		LUCENA	80.8	September 24, 2023	September 30, 2027	September 24, 2023	6			0	Second Level (Professional)
2729	LICENSURE EXAMINATION FOR TEACHERS	1342737	3959		CUBAO, MANILA	75	August 17, 2014	February 18, 2026	August 17, 2014	6			0	Second Level (Professional)
2730	LICENSURE EXAMINATION FOR TEACHERS	0027252	3962		NCR MANILA	77.0	August 24, 1996	November 20, 2026	August 24, 1996	6			0	Second Level (Professional)
2731	LICENSURE EXAMINATION FOR TEACHERS	1926244	3967		LUCENA	78.00	March 27, 2022	June 06, 2025	March 27, 2022	6			0	Second Level (Professional)
\.


--
-- TOC entry 4574 (class 0 OID 0)
-- Dependencies: 231
-- Name: Eligibilities_EligibilityId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Eligibilities_EligibilityId_seq"', 2731, true);


--
-- TOC entry 3854 (class 0 OID 16695)
-- Dependencies: 232
-- Data for Name: EligibilityDocumentTypes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "EligibilityDocumentTypes" ("EligibilityDocumentTypeId", "DocumentType", "Rank") FROM stdin;
1	CESO V	1
2	CESO 4	2
3	CESO 3	3
4	CESO 2	4
5	CESO 1	5
6	Professional	6
7	Sub Professional	7
\.


--
-- TOC entry 4575 (class 0 OID 0)
-- Dependencies: 233
-- Name: EligibilityDocumentTypes_EligibilityDocumentTypeId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"EligibilityDocumentTypes_EligibilityDocumentTypeId_seq"', 7, true);


--
-- TOC entry 3856 (class 0 OID 16704)
-- Dependencies: 234
-- Data for Name: EligibilityProcessStatuses; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "EligibilityProcessStatuses" ("EligibilityProcessStatusId", "StatusName", "StatusNumber") FROM stdin;
\.


--
-- TOC entry 4576 (class 0 OID 0)
-- Dependencies: 235
-- Name: EligibilityProcessStatuses_EligibilityProcessStatusId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"EligibilityProcessStatuses_EligibilityProcessStatusId_seq"', 1, false);


--
-- TOC entry 3858 (class 0 OID 16712)
-- Dependencies: 236
-- Data for Name: EmployeeAllowances; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "EmployeeAllowances" ("AllowanceTypeId", "ServiceRecordId", "EffectivityDate", "EmployeeAllowanceId", "Period", "AllowanceAmount") FROM stdin;
\.


--
-- TOC entry 4577 (class 0 OID 0)
-- Dependencies: 237
-- Name: EmployeeAllowances_EmployeeAllowanceId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"EmployeeAllowances_EmployeeAllowanceId_seq"', 1787, true);


--
-- TOC entry 3860 (class 0 OID 16722)
-- Dependencies: 238
-- Data for Name: EmployeeAwards; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "EmployeeAwards" ("EmployeeAwardId", "DateAwarded", "EmployeeId", "LoyaltyAwardPolicyId", "Remarks", "AwardAmount", "Status") FROM stdin;
\.


--
-- TOC entry 4578 (class 0 OID 0)
-- Dependencies: 239
-- Name: EmployeeAwards_EmployeeAwardId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"EmployeeAwards_EmployeeAwardId_seq"', 1, true);


--
-- TOC entry 3862 (class 0 OID 16732)
-- Dependencies: 240
-- Data for Name: EmployeeBonuses; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "EmployeeBonuses" ("EmployeeBonusId", "EmployeeId", "Amount") FROM stdin;
\.


--
-- TOC entry 3863 (class 0 OID 16735)
-- Dependencies: 241
-- Data for Name: EmployeeCards; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "EmployeeCards" ("CardId", "EmployeeId", "Enabled") FROM stdin;
\.


--
-- TOC entry 3864 (class 0 OID 16741)
-- Dependencies: 242
-- Data for Name: EmployeeDeductions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "EmployeeDeductions" ("EmployeeDeductionId", "DeductionTypeId", "EmployeeId", "Cutoff", "DeductionAmount") FROM stdin;
\.


--
-- TOC entry 4579 (class 0 OID 0)
-- Dependencies: 243
-- Name: EmployeeDeductions_EmployeeDeductionId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"EmployeeDeductions_EmployeeDeductionId_seq"', 1, false);


--
-- TOC entry 3866 (class 0 OID 16749)
-- Dependencies: 244
-- Data for Name: EmployeeEarnings; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "EmployeeEarnings" ("EarningId", "BasicInformationId", "Amount", "Source", "SourceId", "ServiceRecordId", "DateRecieved") FROM stdin;
\.


--
-- TOC entry 4580 (class 0 OID 0)
-- Dependencies: 245
-- Name: EmployeeEarnings_EarningId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"EmployeeEarnings_EarningId_seq"', 2, true);


--
-- TOC entry 3868 (class 0 OID 16757)
-- Dependencies: 246
-- Data for Name: EmployeeLogs; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "EmployeeLogs" ("TimeIn", "TimeOut", "Remarks", "EmployeeLogId", "EmployeeId", "TimeInDate", "TimeOutDate", "TimeInImage", "TimeOutImage", "IsApproved", "StationId") FROM stdin;
\.


--
-- TOC entry 4581 (class 0 OID 0)
-- Dependencies: 247
-- Name: EmployeeLogs_EmployeeLogId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"EmployeeLogs_EmployeeLogId_seq"', 63669, true);


--
-- TOC entry 3870 (class 0 OID 16766)
-- Dependencies: 248
-- Data for Name: EmployeePremiumContributions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "EmployeePremiumContributions" ("EmployeePremiumContributionId", "EmployeeId", "EffectivityDate", "PremiumType", "Amount", "Percentage", "IsCancelled", "SetGovernmentShare", "GovernmentShareValue") FROM stdin;
\.


--
-- TOC entry 4582 (class 0 OID 0)
-- Dependencies: 249
-- Name: EmployeePremiumContributions_EmployeePremiumContributionId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"EmployeePremiumContributions_EmployeePremiumContributionId_seq"', 333, true);


--
-- TOC entry 3872 (class 0 OID 16776)
-- Dependencies: 250
-- Data for Name: EmployeeRelatives; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "EmployeeRelatives" ("EmployeeRelativeId", "FirstName", "MiddleName", "LastName", "ExtensionName", "FullName", "Gender", "BirthDate", "BirthPlace", "Occupation", "EmailAddress", "ContactNumber", "Relationship", "CivilStatus", "BasicInformationId", "MaidenName") FROM stdin;
3259	Vicente	Cueto	Celemin (Deceased)		Vicente Celemin (Deceased)	Male	1945-04-05	\N		\N		Father		3599	\N
3260	Maria Rosemarie	Pentinio	Medina		Maria Rosemarie Medina	Male	1951-03-30	\N		\N		Mother		3599	\N
3321	RESTITA	FURTO	COMIA		RESTITA FURTO COMIA	Female	0001-01-01	\N		\N		Mother		3619	
3262	FELIX	BAYACAL	UPO		FELIX UPO	Male	0001-01-01	\N		\N		Father		3603	\N
3281	ROSSINI	GUTIERREZ	MAGADIA		ROSSINI GUTIERREZ MAGADIA	Female	0001-01-01	\N		\N		Mother		3609	
3266	LUIS	MEDINA	PERONO	SR.	LUIS PERONO SR.	Male	0001-01-01	\N		\N		Father		3604	\N
3302	EMMA	MARASIGAN	MENDOZA		EMMA MARASIGAN MENDOZA	Female	0001-01-01	\N		\N		Mother		3613	
3273	RODEL	MACUHA	MATIRA		RODEL MATIRA	Male	0001-01-01	\N		\N		Father		3607	\N
3269	SERAPIO	REYES	PAGSUYOIN		SERAPIO REYES PAGSUYOIN	Male	0001-01-01	\N		\N		Father		3605	
3279	FERDINAND DERICK	FARAON	ZARASPE		FERDINAND DERICK ZARASPE	Male	0001-01-01	\N		\N		Husband		3609	\N
3280	EVARISTO	PEREZ	SORIANO		EVARISTO SORIANO	Male	0001-01-01	\N		\N		Father		3609	\N
3261	CHANCE GABRIEL	B	BREGONIA		CHANCE GABRIEL BREGONIA	Male	2020-10-15	\N		\N		Child		3602	\N
3282	DWAYNE JARRED	S	ZARASPE		DWAYNE JARRED ZARASPE	Male	2017-08-23	\N		\N		Child		3609	\N
3283	RAJON JAYDEN	S	ZARASPE		RAJON JAYDEN ZARASPE	Male	2023-03-15	\N		\N		Child		3609	\N
3264	DARWIN	BONIFACIO	BREGONIA		DARWIN BREGONIA	Male	0001-01-01	\N		\N		Father		3602	\N
3305	ANATOLIA	DE CHAVEZ	BACSA		ANATOLIA DE CHAVEZ BACSA	Female	0001-01-01	\N		\N		Mother		3615	
3275	JOHN ERWIN	CONDEZ	MAGNAYE		JOHN ERWIN MAGNAYE	Male	0001-01-01	\N		\N		Husband		3608	\N
3306	MARIBEL	DELA PEÑA	MALIGALIG		MARIBEL DELA PEÑA MALIGALIG	Female	0001-01-01	\N		\N		Wife		3616	
3277	PERFECTO	ABEL	DE TORRES		PERFECTO DE TORRES	Male	0001-01-01	\N		\N		Father		3608	\N
3308	LUISA	FRAGO	PEREZ		LUISA FRAGO PEREZ	Female	0001-01-01	\N		\N		Mother		3616	
3268	VERGEL	ODERA	MIGUEL		VERGEL MIGUEL	Male	0001-01-01	\N		\N		Husband		3605	\N
3267	FELICIDAD	CARREON	PERONO		FELICIDAD CARREON PERONO	Female	0001-01-01	\N		\N		Mother		3604	
3263	LIBERTY	ACOSTA	MACARAIG		LIBERTY ACOSTA MACARAIG	Female	0001-01-01	\N		\N		Mother		3603	
3265	LOLITA	VILLA-REAL	GUILLO		LOLITA GUILLO	Female	0001-01-01	\N		\N		Mother		3602	\N
3272	VENEDICT	P	MIGUEL		VENEDICT MIGUEL	Male	0001-01-01	\N		\N		Child		3605	\N
3284	GUIDO	TENORIO	MADERAZO		GUIDO MADERAZO	Male	0001-01-01	\N		\N		Father		3610	\N
3276	JILLIAN DAYNE	DE TORRES	MAGNAYE		JILLIAN DAYNE DE TORRES MAGNAYE	Female	2016-10-26	\N		\N		Child		3608	
3286	LORETO	MONTALBO	GUINHAWA	JR	LORETO GUINHAWA JR	Male	0001-01-01	\N	OFW	\N		Husband		3611	\N
3287	FLORENCIO	PANGANIBAN	DRIZ	SR	FLORENCIO DRIZ SR	Male	0001-01-01	\N		\N		Father		3611	\N
3296	LEONARDA	BUAN	ALVAREZ		LEONARDA BUAN ALVAREZ	Female	0001-01-01	\N		\N		Mother		3606	
3289	MAR LEMUEL	DRIZ	GUINHAWA		MAR LEMUEL GUINHAWA	Male	1992-05-03	\N		\N		Child		3611	\N
3290	MIGUEL MICO	DRIZ	GUINHAWA		MIGUEL MICO GUINHAWA	Male	1997-05-20	\N		\N		Child		3611	\N
3297	REDELINE JOYCE	L	CABATAY		REDELINE JOYCE L CABATAY	Female	1986-11-10	\N		\N		Child		3606	
3292	LILIANO	GUERRA	GUERRA		LILIANO GUERRA	Male	0001-01-01	\N		\N		Father		3612	\N
3288	MILAGROS	MACARAIG	DRIZ		MILAGROS MACARAIG DRIZ	Female	0001-01-01	\N		\N		Mother		3611	
3294	REDENTOR	VIRAY	LAGMAN		REDENTOR LAGMAN	Male	0001-01-01	\N		\N		Husband		3606	\N
3295	FERNANDO	PASTOR	MARANAN		FERNANDO MARANAN	Male	0001-01-01	\N		\N		Father		3606	\N
3285	VICTORIA	BACULA	MAGTIBAY		VICTORIA BACULA MAGTIBAY	Female	0001-01-01	\N		\N		Mother		3610	
3278	LEILANI	MERCADO	ILAO		LEILANI MERCADO ILAO	Female	0001-01-01	\N		\N		Mother		3608	
3298	RAYMOND JASON	M	LAGMAN		RAYMOND JASON LAGMAN	Male	1988-01-17	\N		\N		Child		3606	\N
3299	RENDELL JASON	M	LAGMAN		RENDELL JASON LAGMAN	Male	1994-06-28	\N		\N		Child		3606	\N
3300	ROSEO	FRIAS	GONZALES		ROSEO GONZALES	Male	0001-01-01	\N		\N		Father		3614	\N
3293	AUREA	ATIENZA	ANDAL		AUREA ATIENZA ANDAL	Female	0001-01-01	\N		\N		Mother		3612	
3303	FROILAN	LUZON	DIMAALA		FROILAN DIMAALA	Male	0001-01-01	\N		\N		Husband		3615	\N
3304	HILARION	CABRAL	RAMORIZ		HILARION RAMORIZ	Male	0001-01-01	\N		\N		Father		3615	\N
3301	LEABETH	BALITA	LEUTERIO		LEABETH BALITA LEUTERIO	Female	0001-01-01	\N		\N		Mother		3614	
3274	LUISA	MADLANGBAYAN	AMADO		LUISA MADLANGBAYAN AMADO	Female	0001-01-01	\N		\N		Mother		3607	
3307	LORENZO	MAZA	MALIGALIG		LORENZO MALIGALIG	Male	0001-01-01	\N		\N		Father		3616	\N
3270	VICTORIA		CLARETE		VICTORIA CLARETE	Female	0001-01-01	\N		\N		Mother		3605	
3271	VIVIENNE	P	MIGUEL		VIVIENNE P MIGUEL	Female	1997-08-23	\N		\N		Child		3605	
3320	RICARDO	AGUADO	COMIA		RICARDO COMIA	Male	0001-01-01	\N		\N		Father		3619	\N
3291	PRECIOUS	DRIZ	GUINHAWA		PRECIOUS DRIZ GUINHAWA	Female	2007-02-02	\N		\N		Child		3611	
3311	JUANITO	DELA CRUZ	ARCARDO		JUANITO ARCARDO	Male	0001-01-01	\N		\N		Father		3617	\N
3312	LUCITA	DE CASTRO	MACARAIG		LUCITA DE CASTRO MACARAIG	Female	0001-01-01	\N		\N		Mother		3617	
3313	MARILOU	LONTOC	BARTE		MARILOU LONTOC BARTE	Female	0001-01-01	\N		\N		Wife		3618	
3314	OSIAS	ARDID	BARTE		OSIAS BARTE	Male	0001-01-01	\N		\N		Father		3618	\N
3315	CHINITA	DIMAANO	ARDID		CHINITA DIMAANO ARDID	Female	0001-01-01	\N		\N		Mother		3618	
3316	KIM VINCENT	LONTOK	BARTE		KIM VINCENT BARTE	Male	1998-06-03	\N		\N		Child		3618	\N
3317	KRISTINE MARIELLE	LONTOC	BARTE		KRISTINE MARIELLE LONTOC BARTE	Female	1999-09-23	\N		\N		Child		3618	
3309	KIM CAROL	D	MALIGALIG		KIM CAROL D MALIGALIG	Female	1999-12-29	\N		\N		Child		3616	
3310	KRISTINE	D	MALIGALIG		KRISTINE D MALIGALIG	Female	2002-08-13	\N		\N		Child		3616	
3322	PEDRO	YBAÑEZ	ALBURO		PEDRO ALBURO	Male	0001-01-01	\N		\N		Father		3620	\N
3319	EZEKIEL JONH	LONTOC	BARTE		EZEKIEL JONH BARTE	Male	2004-11-30	\N		\N		Child		3618	\N
3360	CELESTE	B	RAMIREZ		CELESTE RAMIREZ	Female	2008-01-31	\N		\N		Child	Single	3629	\N
3327	TANTING		SECO		TANTING SECO	Male	0001-01-01	\N		\N		Father		3622	\N
3328	LUZVIMINDA		SAEL		LUZVIMINDA SAEL	Female	0001-01-01	\N		\N		Mother		3622	\N
3329	LEE MARREON	M	SECO		LEE MARREON SECO	Male	2016-02-13	\N		\N		Child		3622	\N
3330	ALEX	DE CHAVEZ	SALAZAR		ALEX SALAZAR	Male	0001-01-01	\N		\N		Husband		3623	\N
3331	ARMANDO	CRUZ	LEIS		ARMANDO LEIS	Male	0001-01-01	\N		\N		Father		3623	\N
3361	EUFROSINO	BOONGALING	BABAO		EUFROSINO BABAO	Male	0001-01-01	\N		\N		Father	Married	3629	\N
3362	BENITA	CANDOR	UMALI		BENITA UMALI	Female	0001-01-01	\N		\N		Mother	Married	3629	\N
3363	RODGIE	B	RAMIREZ		RODGIE RAMIREZ	Male	2006-08-11	\N		\N		Child	Single	3629	\N
3364	CELESTE	B	RAMIREZ		CELESTE RAMIREZ	Female	2008-01-31	\N		\N		Child	Single	3629	\N
3365	RAM ANDREW	B	RAMIREZ		RAM ANDREW RAMIREZ	Male	2009-02-28	\N		\N		Child	Single	3629	\N
3344	PELAGIA	BAJA	SANCHEZ		PELAGIA SANCHEZ	Female	0001-01-01	\N		\N		Mother		3627	\N
3345	GORGONIO	MANALO	ACUNA		GORGONIO ACUNA	Male	0001-01-01	\N		\N		Father		3627	\N
3346	PELAGIA	BAJA	SANCHEZ		PELAGIA SANCHEZ	Female	0001-01-01	\N		\N		Mother		3627	\N
3347	JAYSON	OLOTEO	MANGUBAT		JAYSON MANGUBAT	Male	0001-01-01	\N	UTILITY	\N		Husband	Married	3627	\N
3348	SKARLETTE	ACUNA	MANGUBAT		SKARLETTE MANGUBAT	Female	2003-05-09	\N		\N		Child		3627	\N
3350	CYRUZ	ACUNA	MANGUBAT		CYRUZ MANGUBAT	Male	2008-08-17	\N		\N		Child		3627	\N
3351	JAY	ACUNA	MANGUBAT		JAY MANGUBAT	Male	2010-04-10	\N		\N		Child		3627	\N
3352	IVAN	ACUNA	ASCAN		IVAN ASCAN	Male	2021-02-02	\N		\N		Child		3627	\N
3353	RUBILYN	UNTIVEROS	TUGADO		RUBILYN UNTIVEROS TUGADO	Female	0001-01-01	\N	FISH VENDOR	\N		Wife		3628	
3354	MARCELINO	GRANTOS	TUGADO		MARCELINO GRANTOS TUGADO	Male	0001-01-01	\N		\N		Father		3628	
3355	PATERNA	MENDOZA	LIMA		PATERNA MENDOZA LIMA	Female	0001-01-01	\N		\N		Mother		3628	
3356	KURT DANNIEL	U	TUGADO		KURT DANNIEL U TUGADO	Male	2005-01-27	\N		\N		Child		3628	
3357	KENNIEL DRAKE	U	TUGADO		KENNIEL DRAKE U TUGADO	Male	2006-08-10	\N		\N		Child		3628	
3358	RONNELYN	U	TUGADO		RONNELYN U TUGADO	Female	2010-05-07	\N		\N		Child		3628	
3359	KIER PATRICK	U	TUGADO		KIER PATRICK U TUGADO	Male	2012-09-18	\N		\N		Child		3628	
3323	LAURA	BERANIA	LACSAMANA		LAURA BERANIA LACSAMANA	Female	0001-01-01	\N		\N		Mother		3620	
3318	SHEENA FLORENCE	LONTOC	BARTE		SHEENA FLORENCE LONTOC BARTE	Female	2000-10-23	\N		\N		Child		3618	
3333	SERGIO	MAGTIBAY	BRIONES		SERGIO BRIONES	Male	0001-01-01	\N		\N		Father		3624	\N
3349	CLARISSE	ACUNA	MANGUBAT		CLARISSE ACUNA MANGUBAT	Female	2006-04-20	\N		\N		Child		3627	
3366	NESTOR	RAYOS	ITURRALDE		NESTOR ITURRALDE	Male	0001-01-01	\N		\N		Father	Married	3630	\N
3367	ELVIRA	GARCIA	CAPULI		ELVIRA CAPULI	Male	0001-01-01	\N		\N		Mother		3630	\N
3368	RENE	FALLAN	FABREQUER		RENE FALLAN FABREQUER	Male	0001-01-01	\N	DRIVER	\N	09691293710	Husband	Married	3631	
3369	ROGELIO	FRUELDA	FAJICULAY		ROGELIO FRUELDA FAJICULAY	Male	0001-01-01	\N		\N		Father		3631	
3324	LEONIDES	NAGUIT	PATIO		LEONIDES PATIO	Male	0001-01-01	\N		\N		Father		3621	\N
3325	MARITES	BLANCO	ANTIDO		MARITES BLANCO ANTIDO	Female	0001-01-01	\N		\N		Mother		3621	
3332	PACITA	BORBON	MANGUERRA		PACITA BORBON MANGUERRA	Female	0001-01-01	\N		\N		Mother		3623	
3370	ROSALINDA	MADERA	FAJICULAY		ROSALINDA MADERA FAJICULAY	Female	0001-01-01	\N		\N		Mother		3631	
3371	REGIE		FABREQUER		REGIE FABREQUER	Female	2002-03-20	\N		\N		Child		3631	
3372	RENIER		FABREQUER		RENIER FABREQUER	Male	2004-03-01	\N		\N		Child		3631	
3373	GALE NICOLE		FABREQUER		GALE NICOLE FABREQUER	Male	2011-06-25	\N		\N		Child		3631	
3335	TERESA	SANDOVAL	MARANAN		TERESA MARANAN	Female	0001-01-01	\N		\N		Wife	Married	3625	\N
3336	ARNEL	NOBLEJAS	MARANAN		ARNEL MARANAN	Male	0001-01-01	\N		\N		Father	Married	3625	\N
3337	AGNES	ALVAREZ	DE CASTRO		AGNES DE CASTRO	Female	0001-01-01	\N		\N		Mother		3625	\N
3338	JAN JESTER	S	MARANAN		JAN JESTER MARANAN	Male	2020-04-01	\N		\N		Child	Single	3625	\N
3339	YNAH	S	MARANAN		YNAH MARANAN	Female	2022-02-22	\N		\N		Child	Single	3625	\N
3374	ROCKY EARVIN	MACATANGAY	GONZALES		ROCKY EARVIN GONZALES	Male	0001-01-01	\N	TEACHER	\N		Husband	Married	3632	\N
3375	ANGELO	SIGUA	TUNGOL		ANGELO TUNGOL	Male	0001-01-01	\N		\N		Father	Married	3632	\N
3376	ANACLETA	MAGTIBAY	AGUADO		ANACLETA AGUADO	Male	0001-01-01	\N		\N		Mother		3632	\N
3377	EFREN	PANGANIBAN	CONTI		EFREN PANGANIBAN CONTI	Male	0001-01-01	\N		\N		Father		3633	
3378	EFREN	PANGANIBAN	CONTI		EFREN PANGANIBAN CONTI	Male	0001-01-01	\N		\N		Father		3633	
3379	ALEJANDRA	DELICA	CONTI		ALEJANDRA DELICA CONTI	Female	0001-01-01	\N		\N		Mother		3633	
3380	KRISHA ALTHEA	CONTI	QUIZON		KRISHA ALTHEA CONTI QUIZON	Female	2018-08-25	\N		\N		Child		3633	
3381	KRISHA FRENDA	CONTI	QUIZON		KRISHA FRENDA CONTI QUIZON	Female	2021-11-10	\N		\N		Child		3633	
3382	JUANITO	CULLA	ATIENZA		JUANITO ATIENZA	Male	0001-01-01	\N		\N		Child	Married	3634	\N
3383	EMMA	HULGADO	BUENO		EMMA BUENO	Female	0001-01-01	\N		\N		Mother	Married	3634	\N
3334	EDELYN	BOONGALING	BABAO		EDELYN BABAO	Female	0001-01-01	\N		\N		Mother		3624	\N
3340	JOEL	ACLAN	DAYAO		JOEL DAYAO	Male	0001-01-01	\N	MASON	\N		Husband	Married	3626	\N
3341	PAQUITO	BEPINOSO	SANCHEZ		PAQUITO SANCHEZ	Male	0001-01-01	\N		\N		Father		3626	\N
3326	LEILA	MARANAN	SECO		LEILA SECO	Female	0001-01-01	\N	DEPED SURPERVISOR	\N		Wife	Married	3622	\N
3384	GIL	VILLACAMPA	JUMAWAN		GIL VILLACAMPA JUMAWAN	Male	0001-01-01	\N		\N		Father		3635	
3385	ALMA	SABAYTON	BENTULAN		ALMA SABAYTON BENTULAN	Female	0001-01-01	\N		\N		Mother		3635	
3388	VALENTINA BELEN	SILANG	AGULO		VALENTINA BELEN AGULO	Female	0001-01-01	\N		\N		Mother	Married	3637	\N
3389	VALENTINA BELEN	SILANG	AGULO		VALENTINA BELEN AGULO	Female	0001-01-01	\N		\N		Mother	Married	3637	\N
3390	ALFREDO	VIADO	OREJUDOZ		ALFREDO VIADO OREJUDOZ	Male	0001-01-01	\N		\N		Father		3638	
3391	ELENA	MARANAN	BALBACAL		ELENA MARANAN BALBACAL	Female	0001-01-01	\N		\N		Mother		3638	
3392	ALYZA NICOLE		OREJUDOZ		ALYZA NICOLE OREJUDOZ	Male	2001-05-30	\N		\N		Child		3638	
3386	MARIO	ILAGAN	DE CASTRO		MARIO DE CASTRO	Male	0001-01-01	\N		\N		Father		3636	\N
3387	SONIA	REYES	ABRACOSA		SONIA ABRACOSA	Female	0001-01-01	\N		\N		Mother		3636	\N
3393	JULES EDSEL	MANALO	ABELLERA		JULES EDSEL ABELLERA	Male	0001-01-01	\N	ADMINISTRATIVE AIDE III	\N		Husband	Married	3639	\N
3394	PEDRO	CANTOS	MARASIGAN		PEDRO MARASIGAN	Male	0001-01-01	\N		\N		Father		3639	\N
3395	TEOFILA	OXILLO	PATULAY		TEOFILA PATULAY	Female	0001-01-01	\N		\N		Mother		3639	\N
3396	JULS MARCUS	M	ABALLERA		JULS MARCUS ABALLERA	Male	2003-05-02	\N		\N		Child		3639	\N
3397	MONINA JEAN	M	ABELLERA		MONINA JEAN ABELLERA	Female	2006-08-29	\N		\N		Child		3639	\N
3403	TONY	REDUBLO	DE JESUS		TONY DE JESUS	Male	0001-01-01	\N		\N		Father	Married	3641	\N
3404	DAISY	MACATANGAY	DE JESUS		DAISY DE JESUS	Female	0001-01-01	\N		\N		Mother	Married	3641	\N
3405	DOMINGO	CALAHATI	EBORA		DOMINGO EBORA	Male	0001-01-01	\N		\N		Father		3642	\N
3406	LOLITA	PENTINIO	GUTIERREZ		LOLITA GUTIERREZ	Female	0001-01-01	\N		\N		Mother		3642	\N
3398	BAILON	VILLAMOR	MACALALAD		BAILON MACALALAD	Male	0001-01-01	\N		\N		Father	Married	3640	\N
3399	BAILON	VILLAMOR	MACALALAD		BAILON MACALALAD	Male	0001-01-01	\N		\N		Father	Married	3640	\N
3400	RODELIA	AMUL	GARCIA		RODELIA GARCIA	Female	0001-01-01	\N		\N		Mother	Single	3640	\N
3401	LORRAINE	AGUDA	MACALALAD		LORRAINE MACALALAD	Female	0001-01-01	\N	SCHOOL NURSE 	\N	0437417182	Wife	Married	3640	\N
3402	LEBRON JEREMIAS	A	MACALALAD		LEBRON JEREMIAS MACALALAD	Male	2022-01-13	\N		\N		Child	Single	3640	\N
3407	CONRADO	TUMAMBING	MAGBOJOS		CONRADO TUMAMBING MAGBOJOS	Male	0001-01-01	\N		\N		Father		3643	
3408	ANITA	JUSI	ABUZMAN		ANITA JUSI ABUZMAN	Female	0001-01-01	\N		\N		Mother		3643	
3413	WILSON	DIMAANO	RIVERA		WILSON RIVERA	Male	0001-01-01	\N		\N		Husband		3645	\N
3414	DANTE	SARABIA	MEMBROT		DANTE MEMBROT	Male	0001-01-01	\N		\N		Father		3645	\N
3415	TERESITA	DE OCAMPO	DELA CRUZ		TERESITA DELA CRUZ	Female	0001-01-01	\N		\N		Mother		3645	\N
3416	CAITLIN	M	RIVERA		CAITLIN RIVERA	Female	0001-01-01	\N		\N		Mother		3645	\N
3409	MARIA CZARINA	VILLAMAR	BARAIRO		MARIA CZARINA BARAIRO	Female	0001-01-01	\N	PUBLIC TEACHER 	\N	09159073145	Wife	Married	3644	\N
3410	FELIXBERTO	CACAO	BARAIRO		FELIXBERTO BARAIRO	Male	0001-01-01	\N		\N		Father	Married	3644	\N
3411	WENONA	CAPUNO	BARAIRO		WENONA BARAIRO	Female	0001-01-01	\N		\N		Mother	Married	3644	\N
3412	ALINA MAXINE	V	BARAIRO		ALINA MAXINE BARAIRO	Male	2020-11-23	\N		\N		Child	Single	3644	\N
3417	GENE KARLO	DISTOR	ABAG		GENE KARLO ABAG	Male	0001-01-01	\N	NURSE II- GOVERNMENT EMPLOYEE	\N		Husband	Married	3646	\N
3418	CRISANTO	AFRICA	MARASIGAN		CRISANTO MARASIGAN	Male	0001-01-01	\N		\N		Father		3646	\N
3419	ZENAIDA	UNTALAN	HERNANDEZ		ZENAIDA HERNANDEZ	Female	0001-01-01	\N		\N		Mother		3646	\N
3420	FERDINAND	BEREDO	CATAPANG		FERDINAND CATAPANG	Male	0001-01-01	\N	OFW- METAL MACHINIST	\N		Husband	Married	3647	\N
3421	ARCHIE	DE LEON	CATAPANG		ARCHIE CATAPANG	Male	2014-06-28	\N		\N		Child		3647	\N
3422	SINFROSO	ARCEGA	DE LEON		SINFROSO DE LEON	Male	0001-01-01	\N		\N		Father		3647	\N
3423	MARIA MELINDA	LAYUSA	ESPETIRO		MARIA MELINDA ESPETIRO	Female	0001-01-01	\N		\N		Mother		3647	\N
3424	PABLO	TOLENTINO	MAGPANTAY		PABLO MAGPANTAY	Male	0001-01-01	\N	OFW	\N		Husband	Married	3649	\N
3425	NEMESIO	MUÑOZ	BARZA		NEMESIO BARZA	Male	0001-01-01	\N		\N		Father		3649	\N
3426	TERISITA ROSARIO	DE CASTRO	MATIRA		TERISITA ROSARIO MATIRA	Female	0001-01-01	\N		\N		Mother		3649	\N
3427	ANGEL THERESA	B	MAGPANTAY		ANGEL THERESA MAGPANTAY	Female	2000-09-10	\N		\N		Child		3649	\N
3428	RAMON	POZON	PEREZ		RAMON PEREZ	Male	0001-01-01	\N		\N		Father		3648	\N
3429	RAMON	POZON	PEREZ		RAMON PEREZ	Male	0001-01-01	\N		\N		Father		3648	\N
3430	SIMEONA SUSAN	MEDINA	ABANTE		SIMEONA SUSAN ABANTE	Female	0001-01-01	\N		\N		Mother		3648	\N
3431	RAMON ALFREDO	R	PEREZ		RAMON ALFREDO PEREZ	Male	2013-03-01	\N		\N		Child		3648	\N
3432	DIEGO ANTONIO	R	PEREZ		DIEGO ANTONIO PEREZ	Male	2018-03-29	\N		\N		Child		3648	\N
3433	JEROME TRISTAN	D	ISLETA		JEROME TRISTAN ISLETA	Female	1999-06-08	\N		\N		Child	Single	3650	\N
3434	JULIO EFREN	CUETO	DRIZ		JULIO EFREN DRIZ	Male	0001-01-01	\N		\N		Father	Married	3650	\N
3435	AMELIA	AGLERON	DELGADO		AMELIA DELGADO	Male	0001-01-01	\N		\N		Mother		3650	\N
3436	RAZELLE GAE	D	ISLETA		RAZELLE GAE ISLETA	Male	1996-10-28	\N		\N		Child	Single	3650	\N
3439	GABRIEL BRIAN	D	ISLETA		GABRIEL BRIAN ISLETA	Male	2007-01-18	\N		\N		Child	Single	3650	\N
3438	GARIZALDY	AVERION	ISLETA		GARIZALDY ISLETA	Male	0001-01-01	\N	GOVERNMENT EMPLOYEE 	\N		Husband	Married	3650	\N
3444	CARLO	LONTOC	GABIA		CARLO GABIA	Male	0001-01-01	\N	ADMINISTRATIVE ASSISTANT III	\N	0437237319	Wife	Married	3652	\N
3445	TEOFILO	ESPINO	FARAON		TEOFILO FARAON	Male	0001-01-01	\N		\N		Father		3652	\N
3446	TESSIE	FALCESO	FARAON		TESSIE FARAON	Female	0001-01-01	\N		\N		Mother		3652	\N
3447	CARLEEN AIESHA	F	GABIA		CARLEEN AIESHA GABIA	Female	2012-03-18	\N		\N		Child		3652	\N
3448	ALYXANDRE	F	GABIA		ALYXANDRE GABIA	Male	2014-08-10	\N		\N		Child		3652	\N
3454	DANIEL		ALEA		DANIEL ALEA	Male	0001-01-01	\N		\N		Husband		3654	\N
3455	FEDERICO	LIWAG	MACARAIG		FEDERICO MACARAIG	Male	0001-01-01	\N		\N		Father		3654	\N
3456	MARIETA	CATAPANG	GUTIERREZ		MARIETA GUTIERREZ	Female	0001-01-01	\N		\N		Mother		3654	\N
3457	PRECIOUS THEA	MACARAIG	CARILLAGA		PRECIOUS THEA CARILLAGA	Female	2015-07-31	\N		\N		Child		3654	\N
3458	MA. QUEENCITA	MACATANGAY	REALINGO		MA. QUEENCITA REALINGO	Female	0001-01-01	\N	TEACHER	\N		Wife	Married	3655	\N
3459	DEMETRIO	IBON	REALINGO		DEMETRIO REALINGO	Male	0001-01-01	\N		\N		Father		3655	\N
3460	DELIA	MACARAIG	MEDINA		DELIA MEDINA	Female	0001-01-01	\N		\N		Mother		3655	\N
3461	VICTOR		REALINGO		VICTOR REALINGO	Male	1999-03-31	\N		\N		Child		3655	\N
3462	ANDREA ROMINA		REALINGO		ANDREA ROMINA REALINGO	Female	2005-06-30	\N		\N		Child		3655	\N
3463	ODELION	CAIGA	COMIA		ODELION COMIA	Male	0001-01-01	\N	DRIVER	\N		Husband	Married	3656	\N
3464	PEDRO	MANALO	RAMIREZ		PEDRO RAMIREZ	Male	0001-01-01	\N		\N		Father		3656	\N
3465	JULIANA	DE TORRES	CLAVERIA		JULIANA CLAVERIA	Female	0001-01-01	\N		\N		Mother		3656	\N
3466	SHEILA MARIZ	R	COMIA		SHEILA MARIZ COMIA	Female	1999-09-16	\N		\N		Child		3656	\N
3449	RODRIGO	SOLAMO	LUSTERIO		RODRIGO LUSTERIO	Male	0001-01-01	\N	FARMER	\N		Husband	Married	3653	\N
3450	FAUSTINO	PANALIGAN	CORTAZ		FAUSTINO CORTAZ	Male	0001-01-01	\N		\N		Father		3653	\N
3451	LOLINE	MAGCAMIT	NAPOLITANO		LOLINE NAPOLITANO	Female	0001-01-01	\N		\N		Mother		3653	\N
3452	MA. BERNADETTE	L	SOLIVERES		MA. BERNADETTE SOLIVERES	Female	1986-09-02	\N		\N		Child		3653	\N
3453	ERIC	C	LUSTERIO		ERIC LUSTERIO	Male	1969-02-06	\N		\N		Child		3653	\N
3440	DOMINGO	EBORA	EBORA		DOMINGO EBORA	Male	0001-01-01	\N	OFW	\N		Husband	Married	3651	\N
3441	FLORENTINO	EBORA	MENDOZA		FLORENTINO MENDOZA	Male	0001-01-01	\N		\N		Father		3651	\N
3442	QUINTINA	EBORA	PANGANIBAN		QUINTINA PANGANIBAN	Female	0001-01-01	\N		\N		Mother		3651	\N
3443	DAWN	M	EBORA		DAWN EBORA	Female	2012-04-23	\N		\N		Child		3651	\N
3467	SHEENA MAE	R	COMIA		SHEENA MAE COMIA	Female	2001-11-05	\N		\N		Child		3656	\N
3468	RAYMIEL KANE	R	COMIA		RAYMIEL KANE COMIA	Male	2004-09-16	\N		\N		Child		3656	\N
3469	YUAN SEBASTIAN	P	JAVIER		YUAN SEBASTIAN JAVIER	Male	2003-02-15	\N		\N		Child		3657	\N
3470	GONZALO	VILLA	JAVIER		GONZALO JAVIER	Male	0001-01-01	\N		\N		Father		3657	\N
3471	VIRGINIA	BAROLA	ODESTE		VIRGINIA ODESTE	Female	0001-01-01	\N		\N		Mother		3657	\N
3472	YOHANN THOMAS	P	JAVIER		YOHANN THOMAS JAVIER	Female	2013-04-12	\N		\N		Child		3657	\N
3473	YUAN SEBASTIAN	P	JAVIER		YUAN SEBASTIAN JAVIER	Male	2003-02-15	\N		\N		Child		3657	\N
3474	ELPIDIO	MENDOZA	EBORA		ELPIDIO EBORA	Male	0001-01-01	\N		\N		Husband		3658	\N
3475	DONATO	MENDOZA	MENDOZA		DONATO MENDOZA	Male	0001-01-01	\N		\N		Father		3658	\N
3476	ESTILITA	CARINGAL	MENDOZA		ESTILITA MENDOZA	Female	0001-01-01	\N		\N		Mother		3658	\N
3477	PRINCESS LOUIZA REA	M	EBORA		PRINCESS LOUIZA REA EBORA	Female	1994-06-21	\N		\N		Child		3658	\N
3478	PRECIOUS IRISH	M	EBORA		PRECIOUS IRISH EBORA	Female	1995-11-30	\N		\N		Child		3658	\N
3479	MOHALIDIN	DRAPER	TIRASOL		MOHALIDIN TIRASOL	Male	0001-01-01	\N		\N		Father	Married	3659	\N
3480	PERVANEH	TAMBIS	TIRASOL		PERVANEH TIRASOL	Female	0001-01-01	\N		\N		Mother	Married	3659	\N
3486	EDGARDO	DE GUZMAN	LUBRN		EDGARDO LUBRN	Male	0001-01-01	\N	STREET SWEEPER 	\N		Husband	Seperated	3661	\N
3487	GERARDO	MARAMAG	CABRAL		GERARDO CABRAL	Male	0001-01-01	\N		\N		Father	Married	3661	\N
3488	JACINTA	CLOR	CALAPATI		JACINTA CALAPATI	Female	0001-01-01	\N		\N		Mother	Married	3661	\N
3489	KATHLYN	C	LUBRIN		KATHLYN LUBRIN	Female	2008-03-25	\N		\N		Child	Single	3661	\N
3490	JAKE	C	LUBRIN		JAKE LUBRIN	Male	2009-11-05	\N		\N		Child	Single	3661	\N
3491	KHIE-ANN	C	LUBRIN		KHIE-ANN LUBRIN	Female	2014-06-28	\N		\N		Child	Single	3661	\N
3492	JAYSON	C	LUBRIN		JAYSON LUBRIN	Male	2018-11-03	\N		\N		Child	Single	3661	\N
3499	ARVIN	F	DE CASTRO		ARVIN DE CASTRO	Male	1993-03-21	\N		\N		Child		3663	\N
3500	CAYETANO	ASI	FLORIDA		CAYETANO FLORIDA	Male	0001-01-01	\N		\N		Father		3663	\N
3501	ZENAIDA	AGUILAR	ESCOBILLA		ZENAIDA ESCOBILLA	Female	0001-01-01	\N		\N		Mother		3663	\N
3502	ARJAY	F	DE CASTRO		ARJAY DE CASTRO	Male	1991-06-19	\N		\N		Child		3663	\N
3503	ARVIN	F	DE CASTRO		ARVIN DE CASTRO	Male	1993-03-21	\N		\N		Child		3663	\N
3504	ANGEL	F	DE CASTRO		ANGEL DE CASTRO	Female	1994-12-08	\N		\N		Child		3663	\N
3505	HIPOLITA	GONZALES	ANTENOR		HIPOLITA ANTENOR	Female	0001-01-01	\N		\N		Mother	Married	3664	\N
3506	ANTONIO	OBILO	PANOPIO		ANTONIO PANOPIO	Male	0001-01-01	\N		\N		Father		3664	\N
3507	HIPOLITA	GONZALES	ANTENOR		HIPOLITA ANTENOR	Female	0001-01-01	\N		\N		Mother	Married	3664	\N
3508	JAMESON	P	OCON		JAMESON OCON	Male	2000-10-31	\N		\N		Child		3664	\N
3509	ANGELY JADE	P	OCON		ANGELY JADE OCON	Female	2005-10-03	\N		\N		Child		3664	\N
3510	JORDAN ANGELO	P	OCON		JORDAN ANGELO OCON	Male	2007-10-04	\N		\N		Child		3664	\N
3493	SANSON	MASANGKAY	CABANDING		SANSON CABANDING	Male	0001-01-01	\N		\N		Father		3662	\N
3494	DANIEL	CATILO	DIMAANO		DANIEL DIMAANO	Male	0001-01-01	\N		\N		Father		3662	\N
3495	PAZ	MAGADIA	RIVERA		PAZ RIVERA	Female	0001-01-01	\N		\N		Mother		3662	\N
3496	ALYSSA BERNICE	D	CABANDING		ALYSSA BERNICE CABANDING	Female	1998-08-05	\N		\N		Child		3662	\N
3497	CHESKA ANNE	D	CABANDING		CHESKA ANNE CABANDING	Female	1992-03-31	\N		\N		Child		3662	\N
3498	BRAHAM NOE	D	CABANDING		BRAHAM NOE CABANDING	Male	1994-06-05	\N		\N		Child		3662	\N
3511	SERGIO	MAGTIBAY	BRIONES		SERGIO BRIONES	Male	0001-01-01	\N	FORMER SEAMAN	\N		Husband	Married	3665	\N
3512	ESTEBAN	ALDOVER	BABAO		ESTEBAN BABAO	Male	0001-01-01	\N		\N		Father	Married	3665	\N
3513	MELECIA	FRAGO	BOONGALING		MELECIA BOONGALING	Female	0001-01-01	\N		\N		Mother	Married	3665	\N
3514	ALEXIS	B	BRIONES		ALEXIS BRIONES	Male	1990-04-01	\N		\N		Child	Single	3665	\N
3515	EDZEL	B	BRIONES		EDZEL BRIONES	Male	1992-12-22	\N		\N		Child	Single	3665	\N
3516	SHERLYN	B	BRIONES		SHERLYN BRIONES	Female	1996-01-07	\N		\N		Child	Single	3665	\N
3517	ANGELO	B	BRIONES		ANGELO BRIONES	Male	1998-03-15	\N		\N		Child	Single	3665	\N
3518	SERVILLANO	EVANGELISTA	AQUINO		SERVILLANO AQUINO	Male	0001-01-01	\N		\N	09108842707	Husband		3666	\N
3519	MODESTO	GAREJO	CALAHATI		MODESTO CALAHATI	Male	0001-01-01	\N		\N		Father		3666	\N
3520	CRISANTA	EVANGELISTA	EBORA		CRISANTA EBORA	Female	0001-01-01	\N		\N		Mother		3666	\N
3521	MARY ROSE VERGENIE		AQUINO		MARY ROSE VERGENIE AQUINO	Female	1994-07-31	\N		\N		Child		3666	\N
3522	MARVELOUS VOLTAIRE		AQUINO		MARVELOUS VOLTAIRE AQUINO	Male	1996-05-10	\N		\N		Child		3666	\N
3523	MERRY RUTH VILLALEI		AQUINO		MERRY RUTH VILLALEI AQUINO	Female	2004-12-12	\N		\N		Child		3666	\N
3530	MARLO	ESPILETA	NOCHE		MARLO NOCHE	Male	0001-01-01	\N		\N		Father		3668	\N
3531	MARLO	ESPILETA	NOCHE		MARLO NOCHE	Male	0001-01-01	\N		\N		Father		3668	\N
3532	LYDIA	KALAW	SOLIS		LYDIA SOLIS	Female	0001-01-01	\N		\N		Mother		3668	\N
3481	ARTURO	DE GUZMAN	SALVACION		ARTURO SALVACION	Male	0001-01-01	\N		\N		Father		3660	\N
3482	IRMA	MANZO	SALVACION		IRMA SALVACION	Female	0001-01-01	\N		\N		Mother		3660	\N
3483	JOANE RUSCHEL	S	GABRIEL		JOANE RUSCHEL GABRIEL	Female	1992-01-18	\N		\N		Child		3660	\N
3484	JAYNE ROXANE	S	GABRIEL		JAYNE ROXANE GABRIEL	Female	1993-07-20	\N		\N		Child		3660	\N
3524	JESSIE ANDREI	P	BAGON		JESSIE ANDREI BAGON	Female	2023-12-18	\N		\N		Child	Single	3667	\N
3525	BARTOLOME	PEREZ	PEREZ		BARTOLOME PEREZ	Male	0001-01-01	\N		\N		Father	Married	3667	\N
3526	JULIETA	ALARAS	LOPEZ		JULIETA LOPEZ	Female	0001-01-01	\N		\N		Mother	Married	3667	\N
3528	ANTHONY	EBORA	BAGON		ANTHONY BAGON	Male	0001-01-01	\N	BUSINESSMAN 	\N	09985767442	Husband	Married	3667	\N
3529	JOHN ANDREW	P	BAGON		JOHN ANDREW BAGON	Male	2012-04-11	\N		\N		Child	Single	3667	\N
3533	LIGAYA	CANTOS	ASI		LIGAYA ASI	Female	0001-01-01	\N	TEACHER	\N	04307022094	Wife	Married	3669	\N
3534	ANASTACIO	SERVAN	ASI		ANASTACIO ASI	Male	0001-01-01	\N		\N		Father		3669	\N
3535	MAMERTA	BAYER	ASI		MAMERTA ASI	Female	0001-01-01	\N		\N		Mother		3669	\N
3536	SHANLEY NICOLE	C	ASI		SHANLEY NICOLE ASI	Female	2006-03-02	\N		\N		Child		3669	\N
3563	LEO	GUICO	PANGANIBAN		LEO PANGANIBAN	Male	0001-01-01	\N	SELF- EMPLOYED 	\N	0439840619	Husband	Married	3675	\N
3537	ELIAS	VILLONES	COMIA		ELIAS COMIA	Male	0001-01-01	\N	SELF- EMPLOYED 	\N	0437023338	Husband	Married	3670	\N
3538	FLORO	MACATANGAY	MARASIGAN		FLORO MARASIGAN	Male	0001-01-01	\N		\N		Father	Married	3670	\N
3539	BEATRIZ	CARINGAL	MAGNAYE		BEATRIZ MAGNAYE	Female	0001-01-01	\N		\N		Mother	Married	3670	\N
3540	SHARMAINE KRISTINE	M	COMIA		SHARMAINE KRISTINE COMIA	Female	1991-03-17	\N		\N		Child	Single	3670	\N
3541	REGINALD	M	COMIA		REGINALD COMIA	Male	1995-04-06	\N		\N		Child	Single	3670	\N
3542	ELVIN JOSEPH	M	COMIA		ELVIN JOSEPH COMIA	Male	1997-11-27	\N		\N		Child	Single	3670	\N
3543	COSME	EBORA	ASI		COSME ASI	Male	0001-01-01	\N	SELF EMPLOYED	\N	09159258993	Husband	Married	3671	\N
3544	JUSTINO	DE CASTRO	TARCELO		JUSTINO TARCELO	Male	0001-01-01	\N		\N		Father		3671	\N
3545	PAULINA	VIÑAS	EBORA		PAULINA EBORA	Female	0001-01-01	\N		\N		Mother		3671	\N
3546	ALTHEA MERLIN	T	ASI		ALTHEA MERLIN ASI	Female	2002-11-25	\N		\N		Child		3671	\N
3342	ZENAIDA	PESTAÑO	LANOT		ZENAIDA LANOT	Female	0001-01-01	\N		\N		Mother		3626	\N
3343	JOHN MICHAEL	SANCHEZ	DAYAO		JOHN MICHAEL DAYAO	Male	2005-08-04	\N		\N		Child		3626	\N
3547	ROLANDO	SUAREZ	VILLENA		ROLANDO VILLENA	Male	0001-01-01	\N		\N		Father	Married	3672	\N
3548	LEVITA	BALIDO	PARTO		LEVITA PARTO	Female	0001-01-01	\N		\N		Mother	Married	3672	\N
3564	FAUSTINO	BORBON	HERNANDEZ		FAUSTINO HERNANDEZ	Male	0001-01-01	\N		\N		Father	Married	3675	\N
3565	MAURA	ACLAN	ACUNA		MAURA ACUNA	Female	0001-01-01	\N		\N		Mother	Married	3675	\N
3566	ROSYLEE	HERNANDEZ	PANGANIBAN		ROSYLEE PANGANIBAN	Female	1993-11-21	\N		\N		Child	Single	3675	\N
3567	LEONYL	HERNANDEZ	HERNANDEZ		LEONYL HERNANDEZ	Male	1995-02-23	\N		\N		Child		3675	\N
3549	BRYAN CRIS	S	MAGADIA		BRYAN CRIS MAGADIA	Male	1997-02-18	\N		\N		Child		3673	\N
3550	ROMEO	ROMERO	SIKAT		ROMEO SIKAT	Male	0001-01-01	\N		\N		Father		3673	\N
3551	LILIA	ALBO	VILLANUEVA		LILIA VILLANUEVA	Male	0001-01-01	\N		\N		Mother		3673	\N
3552	CHRISTIAN ARLO	S	MAGADIA		CHRISTIAN ARLO MAGADIA	Male	0001-01-01	\N		\N		Child		3673	\N
3553	BRYAN CRIS	S	MAGADIA		BRYAN CRIS MAGADIA	Male	1997-02-18	\N		\N		Child		3673	\N
3554	CHARLENE	S	MAGADIA		CHARLENE MAGADIA	Female	1998-04-25	\N		\N		Child		3673	\N
3555	LOISE HEDWIG	S	MAGADIA		LOISE HEDWIG MAGADIA	Male	1999-12-04	\N		\N		Child		3673	\N
3556	LAWRENCE	S	MAGADIA		LAWRENCE MAGADIA	Male	2003-01-06	\N		\N		Child		3673	\N
3557	ANTONIO	RAMOS	ASI	JR	ANTONIO ASI JR	Male	0001-01-01	\N	SELF EMPLOYED	\N	09667369533	Husband	Married	3674	\N
3558	MARTIN	MENDOZA	TOLENTINO		MARTIN TOLENTINO	Male	0001-01-01	\N		\N		Father		3674	\N
3559	NORMA	BOLANOS	DIMACULANGAN		NORMA DIMACULANGAN	Female	0001-01-01	\N		\N		Mother		3674	\N
3560	ANTHONY ROWEN	T	ASI		ANTHONY ROWEN ASI	Male	1997-03-01	\N		\N		Child		3674	\N
3561	ANDREA MAUREEN	T	ASI		ANDREA MAUREEN ASI	Female	1998-01-24	\N		\N		Child		3674	\N
3562	ANGELICA	T	ASI		ANGELICA ASI	Female	2001-04-06	\N		\N		Child		3674	\N
3568	BERNARD	TURBANADA	CAMACHO		BERNARD CAMACHO	Male	0001-01-01	\N	DRIVER	\N	09276087653	Husband	Married	3676	\N
3569	JOSE	BRUCE	DE SAGUN		JOSE DE SAGUN	Male	0001-01-01	\N		\N		Father		3676	\N
3570	CARMEN	COSME	GAMO		CARMEN GAMO	Female	0001-01-01	\N		\N		Mother		3676	\N
3571	ROLF YZEN	D	CAMACHO		ROLF YZEN CAMACHO	Male	2011-10-24	\N		\N		Child		3676	\N
3572	LEIX YNOEH	D	CAMACHO		LEIX YNOEH CAMACHO	Female	2016-03-08	\N		\N		Child		3676	\N
3573	EDUARDO	ABRIL	BAUTISTA		EDUARDO BAUTISTA	Male	0001-01-01	\N		\N		Father		3677	\N
3574	LUZ	PATEÑA	BALBUENA		LUZ BALBUENA	Female	0001-01-01	\N		\N		Mother		3677	\N
3575	MAR	SAEL	SECO		MAR SECO	Female	0001-01-01	\N	CLERK	\N	09996995307	Wife	Married	3678	\N
3576	LUIS	BLANCO	MARANAN		LUIS MARANAN	Male	0001-01-01	\N		\N		Father	Married	3678	\N
3577	MATELDE	AGTAY	RAMOS		MATELDE RAMOS	Female	0001-01-01	\N		\N		Mother	Married	3678	\N
3578	LEE MAREEON	M	SECO		LEE MAREEON SECO	Male	2016-02-13	\N		\N		Child		3678	\N
3587	JUSTINO	MELO	CATAPANG		JUSTINO CATAPANG	Male	0001-01-01	\N		\N		Father		3681	\N
3588	CAYETANA	ANTE	ANTE		CAYETANA ANTE	Female	0001-01-01	\N		\N		Mother		3681	\N
3581	EFRAEM	ICALLA	VIVAS		EFRAEM VIVAS	Male	0001-01-01	\N		\N		Husband	Married	3680	\N
3582	ANANIAS	CARPIO	GARCIA		ANANIAS GARCIA	Male	0001-01-01	\N		\N		Father	Married	3680	\N
3583	ELENA	PAGSINOHIN	GARCIA		ELENA GARCIA	Female	0001-01-01	\N		\N		Mother	Married	3680	\N
3579	PEDRO	ASI	FESTIJO		PEDRO FESTIJO	Male	0001-01-01	\N		\N		Father		3679	\N
3589	EDWIN	GABA	MONTALBO		EDWIN MONTALBO	Male	0001-01-01	\N		\N		Husband		3682	\N
3590	DAMASO	ABAG	AGUBA		DAMASO AGUBA	Male	0001-01-01	\N		\N		Father		3682	\N
3584	ALEAH SANDRA	GARCIA	VIVAS		ALEAH SANDRA VIVAS	Female	2004-07-21	\N		\N		Child	Single	3680	\N
3585	LEANA MARIE	GARCIA	VIVAS		LEANA MARIE VIVAS	Female	2006-07-28	\N		\N		Child	Single	3680	\N
3586	EPHRAIM JYRUS	GARCIA	VIVAS		EPHRAIM JYRUS VIVAS	Male	2009-02-07	\N		\N		Child	Single	3680	\N
3580	NANCY	GARCIA	TAWATAO		NANCY TAWATAO	Female	0001-01-01	\N		\N		Mother		3679	\N
3591	MARIA	MENDOZA	SILANG		MARIA SILANG	Female	0001-01-01	\N		\N		Mother		3682	\N
3592	EDEZA VIENNE	A	MONTALBO		EDEZA VIENNE MONTALBO	Female	1997-03-12	\N		\N		Child		3682	\N
3593	ELOISA EDEN	A	MONTALBO		ELOISA EDEN MONTALBO	Female	2000-09-30	\N		\N		Child		3682	\N
3594	ED DARYLL	A	MONTALBO		ED DARYLL MONTALBO	Male	2007-08-20	\N		\N		Child		3682	\N
3595	TEODORO	ARELLANO	ASI		TEODORO ASI	Male	0001-01-01	\N	TIG WELDER	\N		Husband	Married	3683	\N
3596	DANIEL	ALMAREZ	MAGPANTAY		DANIEL MAGPANTAY	Male	0001-01-01	\N		\N		Father	Married	3683	\N
3597	FRUCTUOSA	TOLENTINO	MAGPANTAY		FRUCTUOSA MAGPANTAY	Female	0001-01-01	\N		\N		Mother	Married	3683	\N
3598	REINZ JONNEL	M	ASI		REINZ JONNEL ASI	Male	2002-10-05	\N		\N		Child	Single	3683	\N
3601	JANIZE	MACATANGAY	UNTALAN		JANIZE UNTALAN	Female	0001-01-01	\N	NURSE II	\N	7233586	Wife	Married	3685	\N
3602	MIGGZ ESTEFAN	M.	UNTALAN		MIGGZ ESTEFAN UNTALAN	Male	2014-01-17	\N		\N		Child		3685	\N
3603	MARC JACOBZ	M.	UNTALAN		MARC JACOBZ UNTALAN	Male	2016-11-18	\N		\N		Child		3685	\N
3604	JUAN	ACLAN	UNTALAN		JUAN UNTALAN	Male	0001-01-01	\N		\N		Father		3685	\N
3605	NIEVES		GUTIERREZ		NIEVES GUTIERREZ	Female	0001-01-01	\N		\N		Mother		3685	\N
3599	CHRISTINE	MARASIGAN	ABAG		CHRISTINE ABAG	Female	0001-01-01	\N	GOVERNMENT EMPLOYEE	\N		Wife	Married	3684	\N
3600	CARMELITA	CABUILING	DISTOR		CARMELITA DISTOR	Female	0001-01-01	\N		\N		Mother		3684	\N
3608	MARIA JOSEFINA	ALVAREZ	MARANAN		MARIA JOSEFINA ALVAREZ MARANAN	Female	0001-01-01	\N		\N		Mother		3687	
3609	REDENTOR	VIRAY	LAGMAN		REDENTOR VIRAY LAGMAN	Male	0001-01-01	\N		\N		Father		3687	
3610	MARIA JOSEFINA	ALVAREZ	MARANAN		MARIA JOSEFINA ALVAREZ MARANAN	Female	0001-01-01	\N		\N		Mother		3687	
3611	TINSLEY CASSIDY	L	CABATAY		TINSLEY CASSIDY L CABATAY	Female	2013-12-02	\N		\N		Child		3687	
3612	NATE ZACHARY	L	CABATAY		NATE ZACHARY L CABATAY	Male	2018-10-22	\N		\N		Child		3687	
3618	DONALD REY	ARNOCO	DIONALDO		DONALD REY ARNOCO DIONALDO	Male	0001-01-01	\N		\N		Husband		3690	
3619	MARIO	ASI	FATAL		MARIO ASI FATAL	Male	0001-01-01	\N		\N		Father		3690	
3620	QUINCIANA	ANDAL	GUICO		QUINCIANA ANDAL GUICO	Female	0001-01-01	\N		\N		Mother		3690	
3621	ARDLEIGH CODY	F	DIONALDO		ARDLEIGH CODY F DIONALDO	Male	2007-08-26	\N		\N		Child		3690	
3622	STEPHEN ARDIE	F	DIONALDO		STEPHEN ARDIE F DIONALDO	Male	2008-09-27	\N		\N		Child		3690	
3613	JUANA	ASI	EBORA		JUANA EBORA	Female	0001-01-01	\N	BEHAVIORAL THERAPIST 	\N	09064697268	Wife	Married	3689	\N
3614	MARCIANO	CASTILLO	EBORA		MARCIANO EBORA	Male	0001-01-01	\N		\N		Father		3689	\N
3615	ILUMINADA	CLOSA	DE TORRES		ILUMINADA DE TORRES	Female	0001-01-01	\N		\N		Mother		3689	\N
3616	LUCKY GEO	A	EBORA		LUCKY GEO EBORA	Male	2005-12-26	\N		\N		Child		3689	\N
3617	AYESZA	FREIGN	EBORA		AYESZA EBORA	Female	2007-01-01	\N		\N		Child		3689	\N
3623	JUNE	GUTIERREZ	UNTALAN		JUNE UNTALAN	Male	0001-01-01	\N	NURSE II	\N		Husband	Married	3691	\N
3624	CESAR	CLARETE	MACATANGAY		CESAR MACATANGAY	Male	0001-01-01	\N		\N		Father		3691	\N
3625	LOURDESITA	CONTRERAS	BEREDO		LOURDESITA BEREDO	Male	0001-01-01	\N		\N		Mother		3691	\N
3626	MIGGZ ESTEFAN	M	UNTALAN		MIGGZ ESTEFAN UNTALAN	Male	2014-01-17	\N		\N		Child		3691	\N
3627	MARC JACOBZ	M	UNTALAN		MARC JACOBZ UNTALAN	Male	2016-11-18	\N		\N		Child		3691	\N
3628	JAIME	DELISO	SORIANO		JAIME SORIANO	Male	0001-01-01	\N		\N		Husband	Married	3692	\N
3629	FELIMON	ABAJA	CORDERO		FELIMON CORDERO	Male	0001-01-01	\N		\N		Father	Married	3692	\N
3630	MARCELA	BAUTISTA	MALALUAN		MARCELA MALALUAN	Female	0001-01-01	\N		\N		Mother	Married	3692	\N
3631	IRISH JANELLE	C	SORIANO		IRISH JANELLE SORIANO	Female	1999-08-20	\N		\N		Child	Single	3692	\N
3606	CELSO	MANALO	BUENAFE	SR	CELSO BUENAFE SR	Male	0001-01-01	\N		\N		Father		3686	\N
3607	EDITHA	HERNANDEZ	LUISTRO		EDITHA LUISTRO	Female	0001-01-01	\N		\N		Mother		3686	\N
3632	ROLANDO	ANTENOR	MAGADIA		ROLANDO ANTENOR MAGADIA	Male	0001-01-01	\N		\N		Father	Married	3694	
3633	AURORA	ALBERTO	VILLANUEVA		AURORA ALBERTO	Female	0001-01-01	\N		\N		Mother	Married	3694	
3634	DANILO	PIZAÑA	AMOTO		DANILO AMOTO	Male	0001-01-01	\N	ELECTRICAL ENGINEER 	\N	0437239428	Husband	Married	3695	\N
3635	LUCIO	BAES	AREVALO		LUCIO AREVALO	Male	0001-01-01	\N		\N		Father	Married	3695	\N
3644	LEONA	BINAY	ALBANIA		LEONA ALBANIA	Female	0001-01-01	\N		\N		Mother		3696	\N
3637	AARON DANIEL	A	AMOTO		AARON DANIEL AMOTO	Male	2005-10-18	\N		\N		Child	Single	3695	\N
3639	JIMMY	CASTILLO	BABAO		JIMMY BABAO	Male	0001-01-01	\N		\N		Husband	Widow	3693	\N
3640	RAFAEL	PENTINIO	RAYOS		RAFAEL RAYOS	Male	0001-01-01	\N		\N		Father		3693	\N
3641	SIOMANDA	CUTETO	MEDINA		SIOMANDA MEDINA	Female	0001-01-01	\N		\N		Mother		3693	\N
3645	ROBERTO	CARANDANG	PANALIGAN		ROBERTO PANALIGAN	Male	0001-01-01	\N		\N		Father		3697	\N
3636	EUFROSINA	CANTOS	AGUADO		EUFROSINA AGUADO	Female	0001-01-01	\N		\N		Mother	Married	3695	\N
3638	A	AMOTO	INDIGO NATANIEL		A INDIGO NATANIEL	Male	2014-07-24	\N		\N		Child	Single	3695	\N
3642	JEFFERSON	ALVAREZ	BALSE		JEFFERSON BALSE	Male	0001-01-01	\N	CHIEF COOK	\N		Husband		3696	\N
3643	ELPIDIO	HERILLA	MENIA		ELPIDIO MENIA	Male	0001-01-01	\N		\N		Father		3696	\N
3646	JENNIFER	ALEA	FAJILAN		JENNIFER FAJILAN	Female	0001-01-01	\N		\N		Mother		3697	\N
3647	FELICISIMO	MAQUINTO	METRILLO		FELICISIMO METRILLO	Male	0001-01-01	\N		\N		Father	Married	3698	\N
3649	EHLEEN GENETRIE	R	ULIT		EHLEEN GENETRIE ULIT	Female	2017-11-25	\N		\N		Child		3699	\N
3650	EDUARDO	SUMANDE	ULIT		EDUARDO ULIT	Male	0001-01-01	\N		\N		Father	Married	3699	\N
3651	VERONIDIA	MASANGYA	MAGPILI		VERONIDIA MAGPILI	Female	0001-01-01	\N		\N		Mother		3699	\N
3648	GERTRUDES	ARELLANO	PRICAS		GERTRUDES PRICAS	Male	0001-01-01	\N		\N		Mother	Married	3698	\N
3655	SHERARD	CEPILLO	SABELLANO		SHERARD CEPILLO SABELLANO	Male	0001-01-01	\N	SUPPLY CHAIN - PLANNING OFFICER	\N		Husband	Married	3700	
3656	PAUL ALEXANDER	D.	SABELLANO		PAUL ALEXANDER D. SABELLANO	Male	2011-06-16	\N		\N		Child		3700	
3657	MA. YSABELLE PAULINE	D.	SABELLANO		MA. YSABELLE PAULINE D. SABELLANO	Female	2016-12-20	\N		\N		Child		3700	
3658	RUFINO	MARAMOT	DALANGIN		RUFINO MARAMOT DALANGIN	Male	0001-01-01	\N		\N		Father		3700	
3659	EMELINDA	BILBES	ABDON		EMELINDA BILBES ABDON	Female	0001-01-01	\N		\N		Mother		3700	
3660	FERNANDO	FALCULAN	FALLURIN		FERNANDO FALLURIN	Male	0001-01-01	\N		\N		Husband	Married	3701	\N
3661	JOSE	ROBLES	MASANGKAY		JOSE MASANGKAY	Male	0001-01-01	\N		\N		Father	Married	3701	\N
3662	JUANA	DE GUZMAN	VILLANUEVA		JUANA VILLANUEVA	Female	0001-01-01	\N		\N		Mother	Married	3701	\N
3663	JUSTEEN FAYE	M	FALLURIN		JUSTEEN FAYE FALLURIN	Female	2018-05-02	\N		\N		Child	Single	3701	\N
3664	JEREMEINE FEI	M	FALLURIN		JEREMEINE FEI FALLURIN	Female	2002-02-06	\N		\N		Child	Single	3701	\N
3652	ELONAH GENIEL	R	ULIT		ELONAH GENIEL ULIT	Male	2010-05-04	\N		\N		Child		3699	\N
3653	GENESON EDUARDO II	R	ULIT		GENESON EDUARDO II ULIT	Male	2011-12-02	\N		\N		Child		3699	\N
3654	EHLEEN GENETRIE	R	ULIT		EHLEEN GENETRIE ULIT	Female	2017-11-25	\N		\N		Child		3699	\N
3673	RANDY	CEPILLO	SILANG		RANDY SILANG	Male	0001-01-01	\N		\N		Husband	Married	3704	\N
3674	ROMUALDO	ARELLANO	MAUHAY		ROMUALDO MAUHAY	Male	0001-01-01	\N		\N		Father	Married	3704	\N
3675	NATIVIDAD	GARCIA	MASANGCAY		NATIVIDAD MASANGCAY	Female	0001-01-01	\N		\N		Mother	Married	3704	\N
3676	JIM DANRY	M	SILANG		JIM DANRY SILANG	Male	1996-01-25	\N		\N		Child	Single	3704	\N
3677	JOHN ANDRY	M	SILANG		JOHN ANDRY SILANG	Male	1998-06-03	\N		\N		Child	Single	3704	\N
3678	ANGELICA ARBIE	M	SILANG		ANGELICA ARBIE SILANG	Female	2002-05-09	\N		\N		Child	Single	3704	\N
3679	MIKAELA AUBREY	M	SILANG		MIKAELA AUBREY SILANG	Female	2006-02-21	\N		\N		Child	Single	3704	\N
3669	BAYANI	FERRER	BAUAL		BAYANI BAUAL	Male	0001-01-01	\N	DOCUMENT CONTROLLER	\N		Husband	Married	3703	\N
3670	ELIJAH	E	BAUAL		ELIJAH BAUAL	Male	2021-08-30	\N		\N		Child		3703	\N
3671	ANTIFAS	EBORA	EBORA		ANTIFAS EBORA	Male	0001-01-01	\N		\N		Father		3703	\N
3672	MERLY	DE TORRES	MAGBOO		MERLY MAGBOO	Female	0001-01-01	\N		\N		Mother		3703	\N
3665	ROGELIO	SUGABO	ABRUGENA		ROGELIO ABRUGENA	Male	0001-01-01	\N	NDT TECHNICIAN	\N		Husband	Married	3702	\N
3666	DANNAH GAIL	B.	ABRUGENA		DANNAH GAIL ABRUGENA	Male	2015-06-08	\N		\N		Child		3702	\N
3667	VICENTE	ALCANTARA	BORILLO		VICENTE BORILLO	Male	0001-01-01	\N		\N		Father		3702	\N
3668	ERIBERTA	RIANO	RAMOS		ERIBERTA RAMOS	Female	0001-01-01	\N		\N		Wife		3702	\N
3684	RIZALITO	SANTISO	RANCHEZ		RIZALITO SANTISO RANCHEZ	Male	0001-01-01	\N	GOVERNMENT EMPLOYEE	\N		Husband	Married	3706	
3685	NEOL JOSEPH	B.	RANCHEZ		NEOL JOSEPH B. RANCHEZ	Male	1997-06-28	\N		\N		Child		3706	
3686	ANTONIO	TORRES	BARROLA		ANTONIO TORRES BARROLA	Male	0001-01-01	\N		\N		Father		3706	
3687	ROSARIO	DE GUZMAN	PEREZ		ROSARIO DE GUZMAN PEREZ	Female	0001-01-01	\N		\N		Mother		3706	
3680	RAQUE	NAPAGAL	MEDINA		RAQUE MEDINA	Male	0001-01-01	\N	OFW	\N		Husband	Married	3705	\N
3681	ANSELMO	SALAZAR	RAYOS		ANSELMO RAYOS	Male	0001-01-01	\N		\N		Father		3705	\N
3682	MARGARITA	CARINGAL	TALAIN		MARGARITA TALAIN	Female	0001-01-01	\N		\N		Mother		3705	\N
3683	JOHN ANTHON	RAYOS	MEDINA		JOHN ANTHON MEDINA	Male	2011-12-26	\N		\N		Child		3705	\N
3688	IAN FLOYD	MENDOZA	GAYETA		IAN FLOYD GAYETA	Male	0001-01-01	\N	MECHANICAL ENGINEER	\N	09084965912	Husband	Married	3707	\N
3689	SONNY	DE CASTRO	CLAVERIA		SONNY CLAVERIA	Male	0001-01-01	\N		\N		Father		3707	\N
3690	ZOILA	MUNDIN	ATIENZA		ZOILA ATIENZA	Female	0001-01-01	\N		\N		Mother		3707	\N
3691	XIAN CARL	C	GAYETA		XIAN CARL GAYETA	Male	2017-12-29	\N		\N		Child		3707	\N
3692	AHLIAH CELINE	C	GAYETA		AHLIAH CELINE GAYETA	Female	2019-07-13	\N		\N		Child		3707	\N
3693	CHRISTOPHER	MARASIGAN	CRUZAT		CHRISTOPHER CRUZAT	Male	0001-01-01	\N		\N		Husband		3708	\N
3694	LUCIO	BAES	AREVALO		LUCIO AREVALO	Male	0001-01-01	\N		\N		Father		3708	\N
3696	EUFROSINA	CANTOS	AGUADO		EUFROSINA AGUADO	Male	0001-01-01	\N		\N		Mother		3708	\N
3485	JOHN RAFAEL	S	GABRIEL		JOHN RAFAEL GABRIEL	Male	2001-10-22	\N		\N		Child		3660	\N
3713	VENANCIO	CARINGAL	CAMACHO		VENANCIO CAMACHO	Male	0001-01-01	\N		\N		Father		3712	\N
3714	TERESITA	COPO	GAMAB		TERESITA GAMAB	Female	0001-01-01	\N		\N		Mother		3712	\N
3699	PASENCIO	EBORA	DINGLASAN		PASENCIO DINGLASAN	Male	0001-01-01	\N	DRIVER	\N	09165148021	Husband	Married	3710	\N
3700	EJAY	ALORRO	DINGLASAN		EJAY DINGLASAN	Male	2011-09-29	\N		\N		Child		3710	\N
3701	ELIJAH	ALORRO	DINGLASAN		ELIJAH DINGLASAN	Male	2014-09-19	\N		\N		Child		3710	\N
3702	SOPHIA MARIE	ALORRO	DINGLASAN		SOPHIA MARIE DINGLASAN	Male	2020-11-28	\N		\N		Child		3710	\N
3703	MARK JYCER	CAMACHO	ADEVA		MARK JYCER ADEVA	Male	0001-01-01	\N		\N		Husband		3712	\N
3704	ZEION LUCHO	CAMACHO	ADEVA		ZEION LUCHO ADEVA	Male	2015-05-04	\N		\N		Child		3712	\N
3707	JOHN SELWYN HARRIES	REGALARIO	ESTERO		JOHN SELWYN HARRIES ESTERO	Male	2006-09-05	\N		\N		Child		3711	\N
3706	ARRE	VALENZUELA	ESTERO		ARRE ESTERO	Male	0001-01-01	\N	MILITARY (PHILIPPINE AIR FORCE)	\N		Husband	Married	3711	\N
3705	ALRICK JYCER	CAMACHO	ADEVA		ALRICK JYCER ADEVA	Male	2009-11-20	\N		\N		Child		3712	\N
3708	JOHN JARREL	REGALARIO	ESTERO		JOHN JARREL ESTERO	Male	2013-04-05	\N		\N		Child		3711	\N
3709	JOHN ZARRE	REGALARIO	ESTERO		JOHN ZARRE ESTERO	Male	2015-12-13	\N		\N		Child		3711	\N
3710	MARRESHIEL JOAHNA	REGALARIO	ESTERO		MARRESHIEL JOAHNA ESTERO	Male	2017-02-01	\N		\N		Child		3711	\N
3711	IMEE	SULIT	ARELLANO		IMEE ARELLANO	Female	0001-01-01	\N	TEACHING	\N	091793700323	Wife	Married	3713	\N
3712	ALLEENA ISIAH	SULIT	ARELLANO		ALLEENA ISIAH ARELLANO	Male	2013-09-09	\N		\N		Child		3713	\N
3718	RUEL	UCOL	ABAS		RUEL ABAS	Male	0001-01-01	\N	SAFETY OFFICER	\N	09951557065	Husband	Married	3714	\N
3719	ROGELIO	FORMENTOS	MAALA		ROGELIO MAALA	Male	0001-01-01	\N		\N		Father		3714	\N
3720	TERESITA	DIMAANO	REYES		TERESITA REYES	Female	0001-01-01	\N		\N		Mother		3714	\N
3721	CHITO	BALMES	HERNANDEZ		CHITO HERNANDEZ	Male	0001-01-01	\N	ASSISTANT CHIEF MECHANIC	\N	09913568692	Husband	Married	3715	\N
3722	TYRON CHAN	DE CASTRO	HERNANDEZ		TYRON CHAN HERNANDEZ	Male	2002-09-29	\N		\N		Child		3715	\N
3723	ALJUNE	SIGUE	ADOYO		ALJUNE ADOYO	Male	0001-01-01	\N		\N		Husband	Married	3716	\N
3724	KRISTEN GABRIELLE	SALAS	ADOYO		KRISTEN GABRIELLE ADOYO	Female	2009-11-06	\N		\N		Child		3716	\N
3725	PEDRO DAVID	GUTIERREZ	SALAS		PEDRO DAVID SALAS	Male	0001-01-01	\N		\N		Father		3716	\N
3726	VICTORIA	SOLIS	RAMOS		VICTORIA RAMOS	Female	0001-01-01	\N		\N		Mother		3716	\N
3727	ROMULO	ROJO	HERNANDEZ		ROMULO HERNANDEZ	Male	0001-01-01	\N		\N		Husband		3717	\N
3728	TENSHI CARRL		ALONZO		TENSHI CARRL ALONZO	Male	2018-05-29	\N		\N		Child		3717	\N
3729	EIGHTAN	ALONZO	HERNANDEZ		EIGHTAN HERNANDEZ	Male	2024-06-28	\N		\N		Child		3717	\N
3730	WELFREDO	SORIANO	CUSI		WELFREDO CUSI	Male	0001-01-01	\N		\N	09946700481	Husband	Married	3719	\N
3731	DOMINIC	FALCULAN	CUSI		DOMINIC CUSI	Male	2001-10-18	\N		\N		Child		3719	\N
3732	DARIEL	FALCULAN	CUSI		DARIEL CUSI	Male	2004-04-08	\N		\N		Child		3719	\N
3733	CHESTER JOHN	VILLENA	ALCAYDE		CHESTER JOHN ALCAYDE	Male	0001-01-01	\N	TECHNICIAN	\N		Husband	Married	3720	\N
3734	JAIME	BARUEL	AGUILAR		JAIME AGUILAR	Male	0001-01-01	\N		\N		Father		3720	\N
3735	LORNA	ATIENZA	MURON		LORNA MURON	Female	0001-01-01	\N		\N		Mother		3720	\N
3736	LUNA AYLA	AGUILAR	ALCAYDE		LUNA AYLA ALCAYDE	Female	2024-12-16	\N		\N		Child		3720	\N
3737	RICSON	ARAGO	DAZA		RICSON DAZA	Male	0001-01-01	\N	TRICYCLE DRIVER	\N		Husband	Married	3721	\N
3738	RIHANNA CORTNEY	PIADUCHE	DAZA		RIHANNA CORTNEY DAZA	Male	2012-05-06	\N		\N		Child		3721	\N
3697	ALVIN	CANTOS	TARCELO		ALVIN TARCELO	Male	0001-01-01	\N	OFW (SCAFFOLDING INSPECTOR)	\N		Husband	Married	3709	\N
3698	ALTHEA	DE CASTRO	TARCELO		ALTHEA TARCELO	Female	2003-08-24	\N		\N		Child		3709	\N
3715	ALLYNA	DE CASTRO	TARCELO		ALLYNA TARCELO	Female	2007-11-22	\N		\N		Child		3709	\N
3716	ANTONINO MELANDO	BAUTRO	DE CASTRO		ANTONINO MELANDO DE CASTRO	Male	0001-01-01	\N		\N		Father		3709	\N
3717	CECILIA	MACATANGAY	CLEOFE		CECILIA CLEOFE	Female	0001-01-01	\N		\N		Mother		3709	\N
3739	GLENN	GUTIERREZ	GUICO		GLENN GUICO	Male	0001-01-01	\N	PIPE INSULATOR	\N		Husband	Married	3722	\N
3740	GRACIE GWEN	ILAGAN	GUICO		GRACIE GWEN GUICO	Male	2018-12-29	\N		\N		Child		3722	\N
3741	FLORENCIA	MENIA	HERILLA		FLORENCIA HERILLA	Male	0001-01-01	\N		\N		Mother		3723	\N
3742	JOSE RIZALDO	ABANTE	HERILLA		JOSE RIZALDO HERILLA	Male	0001-01-01	\N		\N		Father		3723	\N
3743	APOLONIO	CALINGASAN	ALUAN		APOLONIO ALUAN	Male	0001-01-01	\N	SHIFT SUPERVISOR	\N	7405600	Husband	Married	3724	\N
3744	SERGIO	GUTIERREZ	RAMOS		SERGIO RAMOS	Male	0001-01-01	\N		\N		Father		3724	\N
3745	NEDINA	TIAMSIM	MAGTIBAY		NEDINA MAGTIBAY	Female	0001-01-01	\N		\N		Mother		3724	\N
3746	MARK	RAMOS	ALUAN		MARK ALUAN	Male	2003-08-31	\N		\N		Child		3724	\N
3747	PRINCESS ASHLEY	RAMOS	ALUAN		PRINCESS ASHLEY ALUAN	Female	2005-02-08	\N		\N		Child		3724	\N
3748	JETHRO TIMOTHY	RAMOS	ALUAN		JETHRO TIMOTHY ALUAN	Male	2007-01-29	\N		\N		Child		3724	\N
3749	BEA ANNIKA	RAMOS	ALUAN		BEA ANNIKA ALUAN	Female	2009-12-02	\N		\N		Child		3724	\N
3750	FEDERICO	BAROT	MENDOZA		FEDERICO MENDOZA	Male	0001-01-01	\N		\N		Father		3725	\N
3751	CRISPINA	ANONUEVO	MENDOZA		CRISPINA MENDOZA	Male	0001-01-01	\N		\N		Mother		3725	\N
3752	LITO	GAMBA	MERCENES		LITO MERCENES	Male	0001-01-01	\N		\N		Father		3726	\N
3753	ZOSIMA	BAGUI	MERCENES		ZOSIMA MERCENES	Male	0001-01-01	\N		\N		Mother		3726	\N
3754	SOTERO	MALALUAN	ANTENOR		SOTERO ANTENOR	Male	0001-01-01	\N		\N		Father		3727	\N
3755	RHEA LIZETTE	MIA	CELLO		RHEA LIZETTE CELLO	Female	0001-01-01	\N		\N		Mother		3727	\N
3756	VINCE CALIX PAVLO	MERCENES	DELGADO		VINCE CALIX PAVLO MERCENES DELGADO	Male	2024-08-08	\N		\N		Child		3726	
3758	FRANZ NOEL	FAJICULAY	TOLENTINO		FRANZ NOEL TOLENTINO	Male	2010-06-19	\N		\N		Child		3728	\N
3759	FORD NATHAN	FAJICULAY	TOLENTINO		FORD NATHAN TOLENTINO	Male	2017-03-02	\N		\N		Child		3728	\N
3760	FAITH NATHERINE	FAJICULAY	TOLENTINO		FAITH NATHERINE TOLENTINO	Male	2023-05-08	\N		\N		Child		3728	\N
3761	HARRY GLENN	RAMIREZ	BALMES		HARRY GLENN BALMES	Male	0001-01-01	\N	RELIABILITY MAINTAINANCE	\N		Husband	Married	3729	\N
3762	AMADO	BALMES	MANALO		AMADO MANALO	Male	0001-01-01	\N		\N		Father		3729	\N
3763	TERESITA	ALCOIREZ	ANONUEVO		TERESITA ANONUEVO	Female	0001-01-01	\N		\N		Mother		3729	\N
3764	AMARA HARRIETTE	MANALO	BALMES		AMARA HARRIETTE BALMES	Female	2018-08-10	\N		\N		Child		3729	\N
3757	NOEL	CASCALLA	TOLENTINO		NOEL TOLENTINO	Male	0001-01-01	\N	JEEPNEY DRIVER/OPERATOR	\N	09292618264	Husband	Married	3728	\N
3765	HANNAH ANGEL	BUENAFE	SULIT		HANNAH ANGEL SULIT	Male	2008-08-17	\N		\N		Child		3730	\N
3766	LUKE DRANIEL	BUENAFE	SISON		LUKE DRANIEL SISON	Male	2020-03-03	\N		\N		Child		3730	\N
3767	RAMON	ESCREZA	BUENAFE		RAMON BUENAFE	Male	0001-01-01	\N		\N		Father		3730	\N
3768	LINA	MAGNAYE	BUENAFE		LINA BUENAFE	Male	0001-01-01	\N		\N		Mother		3730	\N
3773	RIO	ABELA	BONSOL		RIO BONSOL	Male	0001-01-01	\N	OFW	\N		Husband	Married	3732	\N
3769	PATRICK	MENDOZA	BADILLO		PATRICK BADILLO	Male	0001-01-01	\N		\N		Husband	Married	3731	\N
3770	GREGORIO	RONQUILLO	ALMAREZ		GREGORIO ALMAREZ	Male	0001-01-01	\N		\N		Father		3731	\N
3771	FAVIANA	DE TORRES	DE TORRES		FAVIANA DE TORRES	Female	0001-01-01	\N		\N		Mother		3731	\N
3772	YUAN	ALMAREZ	BADILLO		YUAN BADILLO	Male	2022-09-05	\N		\N		Child		3731	\N
3774	EDWARD	REYES	COLLERA		EDWARD COLLERA	Male	0001-01-01	\N	MECHANICAL ENGINEER	\N		Husband	Married	3733	\N
3776	FRANCISCO	BALMES	ARCOIREZ		FRANCISCO ARCOIREZ	Male	0001-01-01	\N		\N		Father		3734	\N
3775	ELEAZAR JUANCHO	ABUNDA	COLLERA		ELEAZAR JUANCHO COLLERA	Male	2023-03-11	\N		\N		Child		3733	\N
3778	ADRIAN	GONZALES	CUETO		ADRIAN CUETO	Male	0001-01-01	\N	OFFICE STAFF	\N		Husband	Married	3735	\N
3779	KHAYEN YSABELLE	FACTOLERIN	CUETO		KHAYEN YSABELLE CUETO	Male	2016-01-11	\N		\N		Child		3735	\N
3780	KHAYDEN YZEKIELLE	FACTOLERIN	CUETO		KHAYDEN YZEKIELLE CUETO	Male	2020-07-15	\N		\N		Child		3735	\N
3777	FLORENCIA	OBLIGAR	CHAVEZ		FLORENCIA CHAVEZ	Female	0001-01-01	\N		\N		Mother		3734	\N
3781	GIL	BALMES	CAMPOSAGRADO		GIL CAMPOSAGRADO	Male	0001-01-01	\N		\N		Husband		3736	\N
3782	HANNAH GAILE	SUAREZ	CAMPOSAGRADO		HANNAH GAILE CAMPOSAGRADO	Male	2018-12-29	\N		\N		Child		3736	\N
3783	GWEN AIREN	SUAREZ	CAMPOSAGRADO		GWEN AIREN CAMPOSAGRADO	Male	2024-12-05	\N		\N		Child		3736	\N
3784	JOHN ERIC	MACUHA	ATIENZA		JOHN ERIC ATIENZA	Male	0001-01-01	\N	SEAFERER	\N		Husband	Married	3737	\N
3785	MANOLO	MERCADO	GARCIA		MANOLO GARCIA	Male	0001-01-01	\N		\N		Father		3737	\N
3786	LILIBETH	PAGCALIWAGAN	MENDOZA		LILIBETH MENDOZA	Female	0001-01-01	\N		\N		Mother		3737	\N
3787	KEVIN GEORGE	VASQUEZ	TEOVISIO		KEVIN GEORGE TEOVISIO	Male	0001-01-01	\N	AIRCON TECHNICIAN	\N		Husband	Married	3738	\N
3788	KAISA EVIA	TAPANGAN	TEOVISIO		KAISA EVIA TEOVISIO	Male	2021-07-09	\N		\N		Child		3738	\N
3789	DEMSON	GARCIA	SAGAYNO		DEMSON SAGAYNO	Male	0001-01-01	\N	CONTRUCTOR/FOREMAN	\N		Husband	Married	3739	\N
3790	JACOB HEZEKIAH	ALINEA	CASTILLO		JACOB HEZEKIAH CASTILLO	Male	2008-09-18	\N		\N		Child		3739	\N
3794	RENEBOY	ATON	MAHAYAG		RENEBOY MAHAYAG	Male	0001-01-01	\N	SECURITY GUARD	\N		Husband	Married	3740	\N
3791	RUBEN	BISCOCHO	MERCADO		RUBEN MERCADO	Male	0001-01-01	\N	COOK	\N		Husband	Married	3741	\N
3792	VILLAMOR	FABILLION	PAZ	JR.	VILLAMOR PAZ JR.	Male	0001-01-01	\N		\N		Father		3741	\N
3793	AMPARO	CATILO	DELGADO		AMPARO DELGADO	Female	0001-01-01	\N		\N		Mother		3741	\N
3795	LOUREEN STEPHANIE	FAJARITO	MAHAYAG		LOUREEN STEPHANIE MAHAYAG	Male	2008-04-28	\N		\N		Child		3740	\N
3796	RANIEZELLE	FAJARITO	MAHAYAG		RANIEZELLE MAHAYAG	Male	2009-09-28	\N		\N		Child		3740	\N
3797	LIZ REIGN	FAJARITO	MAHAYAG		LIZ REIGN MAHAYAG	Male	2011-12-21	\N		\N		Child		3740	\N
3798	JOSE CARLO	MAGTIBAY	BOOL		JOSE CARLO BOOL	Male	1990-09-06	\N		\N		Child		3742	\N
3807	RODEL	NAZAR	DE CASTRO		RODEL DE CASTRO	Male	0001-01-01	\N	SEAFARER	\N	6328138000	Husband	Married	3745	\N
3799	RUEL	BORBON	BOOL		RUEL BOOL	Male	0001-01-01	\N	GOVERNMENT EMPLOYEE/CIVIL ENGINEER	\N	437233454	Husband	Married	3742	\N
3800	MARK LENUEL	MAGTIBAY	BOOL		MARK LENUEL BOOL	Male	1994-08-15	\N		\N		Child		3742	\N
3801	JOSELITO DONDON	ANTENOR	MONTALBO		JOSELITO DONDON MONTALBO	Male	0001-01-01	\N	PIPEFITTER	\N		Husband	Married	3743	\N
3802	ENRIQUE	CAY	ALMAREZ		ENRIQUE ALMAREZ	Male	0001-01-01	\N		\N		Father		3743	\N
3803	CASIANA	RAMIREZ	SARMIENTO		CASIANA SARMIENTO	Female	0001-01-01	\N		\N		Mother		3743	\N
3804	ROMULO	BOBADILLA	GOOT		ROMULO GOOT	Male	0001-01-01	\N	SELF-EMPLOYED	\N	7814619	Husband	Married	3744	\N
3805	ROSE DELL	RAMOS	GOOT		ROSE DELL GOOT	Male	1993-09-13	\N		\N		Child		3744	\N
3806	RIA DELL	RAMOS	GOOT		RIA DELL GOOT	Male	2004-09-10	\N		\N		Child		3744	\N
3808	JOSEFINO	ELENTO	DUENAS		JOSEFINO DUENAS	Male	0001-01-01	\N		\N		Father		3745	\N
3809	MERCEDITA	ENDAYA	ALCANTARA		MERCEDITA ALCANTARA	Female	0001-01-01	\N		\N		Mother		3745	\N
3810	KEVIN JAMES	DUENAS	DE CASTRO		KEVIN JAMES DE CASTRO	Male	2011-06-07	\N		\N		Child		3745	\N
3811	KHAIDEN JACOB	DUENAS	DE CASTRO		KHAIDEN JACOB DE CASTRO	Male	2014-08-03	\N		\N		Child		3745	\N
3812	JAYSER	AGTONONG	FERNANDEZ		JAYSER FERNANDEZ	Male	0001-01-01	\N	GRAPHIC ARTIST	\N		Husband	Married	3746	\N
3813	ARIEL	RUSTIA	ESCAREZ		ARIEL ESCAREZ	Male	0001-01-01	\N	GOVERNMENT EMPLOYEE	\N	7232928	Husband	Married	3747	\N
3814	ARMANDO	AVILA	OXINA		ARMANDO OXINA	Male	0001-01-01	\N		\N		Father		3747	\N
3815	ILUMINADA	MANAOIS	RESOSO		ILUMINADA RESOSO	Female	0001-01-01	\N		\N		Mother		3747	\N
3816	ARJEL EIRON	OXINA	ESCAREZ		ARJEL EIRON ESCAREZ	Male	1997-05-12	\N		\N		Child		3747	\N
3817	ARIELLE SHAINE	OXINA	ESCAREZ		ARIELLE SHAINE ESCAREZ	Female	2002-07-13	\N		\N		Child		3747	\N
3818	ALTHER JOHN	OXINA	ESCAREZ		ALTHER JOHN ESCAREZ	Male	2004-04-12	\N		\N		Child		3747	\N
3819	ERIEL SEAN	OXINA	ESCAREZ		ERIEL SEAN ESCAREZ	Male	2012-05-02	\N		\N		Child		3747	\N
3821	JEFFERSON MAR	MIRANO	LIWAG		JEFFERSON MAR LIWAG	Male	0001-01-01	\N	CUSTOMER SERVICE REPRESENTATIVE	\N	0434300100	Husband	Married	3749	\N
3822	MARTIN GENARO	PEREZ	LIWAG		MARTIN GENARO LIWAG	Male	2017-05-03	\N		\N		Child		3749	\N
3823	CHRISTIAN PAUL	LAGMAN	PLATA		CHRISTIAN PAUL PLATA	Male	1993-05-13	\N		\N		Child		3750	\N
3824	JOHN PAUL	LAGMAN	PLATA		JOHN PAUL PLATA	Male	1995-08-06	\N		\N		Child		3750	\N
3825	ADRIAN NINO	LAGMAN	PLATA		ADRIAN NINO PLATA	Male	2000-01-22	\N		\N		Child		3750	\N
3826	CARLITO	AGUILERA	PLATA		CARLITO PLATA	Male	0001-01-01	\N		\N		Husband	Married	3750	\N
3827	ALBINO	MARASIGAN	CATILO		ALBINO CATILO	Male	0001-01-01	\N		\N		Father		3751	\N
3828	MILAGROS	PANA	MEDRANO		MILAGROS MEDRANO	Female	0001-01-01	\N		\N		Mother		3751	\N
3829	VHON CHRISTIAN	CATILO	VILLANO		VHON CHRISTIAN VILLANO	Male	1999-07-21	\N		\N		Child		3751	\N
3830	JOHN RAMOEL	CATILO	VILLANO		JOHN RAMOEL VILLANO	Male	2003-09-21	\N		\N		Child		3751	\N
3831	ALEXANDRA JEAN	CATILO	UMALI		ALEXANDRA JEAN UMALI	Female	2015-08-03	\N		\N		Child		3751	\N
3832	GILBERT	COMETA	MATALA		GILBERT MATALA	Male	0001-01-01	\N		\N		Husband		3752	\N
3833	IYA GWYNETH	PAGCALIWAGAN	MATALA		IYA GWYNETH MATALA	Male	2018-08-19	\N		\N		Child		3752	\N
3834	EMMA	BARTE	MALALUAN		EMMA MALALUAN	Female	0001-01-01	\N		\N		Mother		3753	\N
3835	RONNIE	VELASCO	SASTADO		RONNIE SASTADO	Male	0001-01-01	\N		\N		Father		3753	\N
3836	EMMA	BARTE	MALALUAN		EMMA MALALUAN	Female	0001-01-01	\N		\N		Mother		3753	\N
3837	SANTINO ROBEN	SASTADO	FEBRIA		SANTINO ROBEN FEBRIA	Male	2007-10-20	\N		\N		Child		3753	\N
3845	ISAGANI	COMETA	DE TORRES		ISAGANI DE TORRES	Male	0001-01-01	\N	OVERSEAS FILIPINO WORKER	\N	09173830187	Husband	Married	3755	\N
3846	CARMELA YASKY	DE CASTRO	DE TORRES		CARMELA YASKY DE TORRES	Male	2007-12-19	\N		\N		Child		3755	\N
3847	YURIE ISABEL	DE CASTRO	DE TORRES		YURIE ISABEL DE TORRES	Male	2012-12-02	\N		\N		Child		3755	\N
3850	DANA PEARL		DE CASTRO		DANA PEARL DE CASTRO	Male	2010-09-12	\N		\N		Child		3757	\N
3838	SIMON TIMOTHY	SASTADO	FEBRIA		SIMON TIMOTHY FEBRIA	Male	2011-08-29	\N		\N		Child		3753	\N
3839	SHAUN ADAM	SASTADO	FEBRIA		SHAUN ADAM FEBRIA	Male	2013-10-26	\N		\N		Child		3753	\N
3840	ZIA ANAIAH	SASTADO	FEBRIA		ZIA ANAIAH FEBRIA	Female	2024-09-06	\N		\N		Child		3753	\N
3841	RODOLFO	PAGDONSOLAN	DE CASTRO		RODOLFO PAGDONSOLAN DE CASTRO	Male	0001-01-01	\N		\N		Father		3748	
3842	CRESENCIANA	MENDOZA	BALMES		CRESENCIANA MENDOZA BALMES	Male	0001-01-01	\N		\N		Mother		3748	
3843	NUMERIANO	VILLENZA	ALCANTARA		NUMERIANO ALCANTARA	Male	0001-01-01	\N		\N		Father		3754	\N
3844	LORENA	ABAG	MENDOZA		LORENA MENDOZA	Male	0001-01-01	\N		\N		Mother		3754	\N
3848	SEVERINO	DOTONG	COMETA		SEVERINO COMETA	Male	0001-01-01	\N		\N		Father		3756	\N
3849	AURORA	GONZALES	MENDOZA		AURORA MENDOZA	Female	0001-01-01	\N		\N		Mother		3756	\N
3857	ROMER	BAUSON	MACATANGAY		ROMER MACATANGAY	Male	0001-01-01	\N	DRIVER	\N		Husband	Married	3759	\N
3858	HANZ RAMYR	ANTE	MACATANGAY		HANZ RAMYR MACATANGAY	Male	2011-08-03	\N		\N		Child		3759	\N
3859	HAZEL VIEN	ANTE	MACATANGAY		HAZEL VIEN MACATANGAY	Male	2014-10-09	\N		\N		Child		3759	\N
3854	CARLITO	MACARAIG	BARTE		CARLITO BARTE	Male	0001-01-01	\N		\N		Husband		3758	\N
3855	BILLY	DELIZO	BARTE		BILLY BARTE	Male	1991-07-24	\N		\N		Child		3758	\N
3856	CHARLENE MAE	DELIZO	BARTE		CHARLENE MAE BARTE	Male	1995-01-17	\N		\N		Child		3758	\N
3860	RENATO	BRAVO	DUMAPIT		RENATO DUMAPIT	Male	0001-01-01	\N		\N		Father		3760	\N
3861	AMOR	AGUIELERA	PLATA		AMOR PLATA	Female	0001-01-01	\N		\N		Mother		3760	\N
3862	NEIL	CONLU	JAVIER		NEIL JAVIER	Male	0001-01-01	\N	SEAMAN	\N		Husband	Married	3761	\N
3863	RICARDO	GONZALES	MENDOZA		RICARDO MENDOZA	Male	0001-01-01	\N		\N		Father		3761	\N
3864	VIRGINIA	BAGSIT	DE CASTRO		VIRGINIA DE CASTRO	Female	0001-01-01	\N		\N		Mother		3761	\N
3865	JUANITO	BARABAS	MACATANGAY		JUANITO MACATANGAY	Male	0001-01-01	\N		\N		Husband		3762	\N
3866	JEWELL MAE	PAGCALIWAGAN	MACATANGAY		JEWELL MAE MACATANGAY	Male	1999-05-03	\N		\N		Child		3762	\N
3867	MINA	MACARAIG	AGUSTIN		MINA AGUSTIN	Male	0001-01-01	\N		\N		Wife		3763	\N
3868	PACIFICO	ANDRES	AGUSTIN		PACIFICO AGUSTIN	Male	0001-01-01	\N		\N		Father		3763	\N
3869	OLYMPIA	AUBON	DELOS SANTOS		OLYMPIA DELOS SANTOS	Male	0001-01-01	\N		\N		Mother		3763	\N
3870	LADY RONIKA	M	AGUSTIN		LADY RONIKA AGUSTIN	Male	1991-01-31	\N		\N		Child		3763	\N
3871	RANDAL	M	AGUSTIN		RANDAL AGUSTIN	Male	1992-10-04	\N		\N		Child		3763	\N
3872	RON RANEL	M	AGUSTIN		RON RANEL AGUSTIN	Male	1995-07-04	\N		\N		Child		3763	\N
3873	EDDIE	GUTIERREZ	PAPASIN		EDDIE PAPASIN	Male	0001-01-01	\N		\N		Husband		3764	\N
3874	DOMINADOR	RAMOS	DE GUZMAN		DOMINADOR DE GUZMAN	Male	0001-01-01	\N		\N		Father		3764	\N
3875	JULITA	CUETO	CATAPANG		JULITA CATAPANG	Female	0001-01-01	\N		\N		Mother		3764	\N
3876	EDEN	DE GUZMAN	PAPASIN		EDEN PAPASIN	Female	1992-04-01	\N		\N		Child		3764	\N
3877	ERWIN	DE GUZMAN	PAPASIN		ERWIN PAPASIN	Male	1998-04-28	\N		\N		Child		3764	\N
3878	RAMIR	STA. MARIA	TULIAO		RAMIR TULIAO	Male	0001-01-01	\N		\N		Husband		3765	\N
3879	RICHARD JAY	COMETA	TULIAO		RICHARD JAY TULIAO	Male	1994-11-09	\N		\N		Child		3765	\N
3880	KHARREN BABES	COMETA	TULIAO		KHARREN BABES TULIAO	Male	1999-08-30	\N		\N		Child		3765	\N
3881	ROVAL	MIRANDA	ADAO		ROVAL ADAO	Male	0001-01-01	\N		\N		Husband		3766	\N
3882	TEOTIMO	BELLEN	BECHAYDA	JR	TEOTIMO BECHAYDA JR	Male	0001-01-01	\N		\N		Father		3766	\N
3883	BUENA	MAGBUHAT	ASIS		BUENA ASIS	Male	0001-01-01	\N		\N		Mother		3766	\N
3884	ROVEAC CHANIEL	B	ADAO		ROVEAC CHANIEL ADAO	Male	2009-11-01	\N		\N		Child		3766	\N
3885	ROV SVETLUTHER	B	ADAO		ROV SVETLUTHER ADAO	Male	2016-06-27	\N		\N		Child		3766	\N
3886	HANNA SVETLANA	B	ADAO		HANNA SVETLANA ADAO	Male	2017-08-09	\N		\N		Child		3766	\N
3890	JAYSON	DIMABAYAO	BARRAMEDA		JAYSON BARRAMEDA	Male	0001-01-01	\N	MECHANICAL FITTER	\N		Husband	Married	3768	\N
3891	AMIRAH JHADE	AMPARO	BARRAMEDA		AMIRAH JHADE BARRAMEDA	Male	2021-01-07	\N		\N		Child		3768	\N
3887	RICARDO	ABABA	VIBAL		RICARDO VIBAL	Male	0001-01-01	\N	PACKER	\N	09273410974	Husband	Married	3767	\N
3888	ROGELIO	MANGHINANG	VILLAREAL		ROGELIO VILLAREAL	Male	0001-01-01	\N		\N		Father		3767	\N
3889	ROSITA	COMETA	ANTE		ROSITA ANTE	Female	0001-01-01	\N		\N		Mother		3767	\N
3892	ROWEL	PAROCHA	ALANO		ROWEL ALANO	Male	0001-01-01	\N		\N		Husband		3769	\N
3893	SIXTO	ANASCO	CEPEDOSA		SIXTO CEPEDOSA	Male	0001-01-01	\N		\N		Father		3769	\N
3894	LOLITA	ONTONG	CENIZA		LOLITA CENIZA	Male	0001-01-01	\N		\N		Mother		3769	\N
3895	RENZ MATTHEW	C.	ALANO		RENZ MATTHEW ALANO	Male	2017-10-24	\N		\N		Child		3769	\N
3896	RITTZ MARTIN	C.	ALANO		RITTZ MARTIN ALANO	Male	2022-06-24	\N		\N		Child		3769	\N
3897	RUEL	DUDAS	DIMASACAT		RUEL DIMASACAT	Male	0001-01-01	\N	BARANGAY COUNCILOR	\N		Husband	Seperated	3772	\N
3898	FLORENTINO	DUTADO	EBORA		FLORENTINO EBORA	Male	0001-01-01	\N		\N		Father		3772	\N
3899	LIWAYWAY	BACULO	ESCAREZ		LIWAYWAY ESCAREZ	Female	0001-01-01	\N		\N		Mother		3772	\N
3904	RYESSYA JULIANA	A.	ROSALES		RYESSYA JULIANA ROSALES	Female	2016-05-15	\N		\N		Child		3774	\N
3905	RYANNAH	A.	ROSALES		RYANNAH ROSALES	Female	2019-07-09	\N		\N		Child		3774	\N
3906	TERESITA JOYCE	AYALA	ROSALES		TERESITA JOYCE ROSALES	Female	0001-01-01	\N		\N		Wife	Married	3774	\N
3907	RODRIGO	AGUILA	ROSALES		RODRIGO ROSALES	Male	0001-01-01	\N		\N		Father		3774	\N
3908	MELENCIANA	CANTOS	ADARLO		MELENCIANA ADARLO	Female	0001-01-01	\N		\N		Mother		3774	\N
3910	ELMER	EBREO	ESPELETA		ELMER ESPELETA	Male	0001-01-01	\N		\N		Father		3775	\N
3900	ROMEL	CUETO	AMUL		ROMEL AMUL	Male	0001-01-01	\N		\N		Father		3773	\N
3901	SERAPIO	EVANGELISTA	DUTADO		SERAPIO DUTADO	Male	0001-01-01	\N		\N		Father		3773	\N
3909	JAIME NICHOLO	MALAYAN	ESCALONA		JAIME NICHOLO ESCALONA	Male	0001-01-01	\N	CUSTOMER SERVICE REPRESENTATIVE	\N		Husband	Married	3775	\N
3911	JOCELYN	BENEDICTO	LUALHATI		JOCELYN LUALHATI	Female	0001-01-01	\N		\N		Mother		3775	\N
3912	JULIA AUBRYN	ESPELETA	ESCALONA		JULIA AUBRYN ESCALONA	Female	2018-07-22	\N		\N		Child		3775	\N
3913	CRISTOPHER	MANTAL	COMETA		CRISTOPHER COMETA	Male	0001-01-01	\N		\N		Husband		3776	\N
3914	RHIEZTOFF MATHEW	B	COMETA		RHIEZTOFF MATHEW COMETA	Male	2011-12-29	\N		\N		Child		3776	\N
3915	KRISTOF MARCUS	B	COMETA		KRISTOF MARCUS COMETA	Male	2006-12-21	\N		\N		Child		3776	\N
3916	RYAN REX	TOLENTINO	GARCIA		RYAN REX GARCIA	Male	0001-01-01	\N	SAFETY OFFICER	\N		Husband	Married	3777	\N
3917	ELISHA KACEY	CASTILLO	GARCIA		ELISHA KACEY GARCIA	Male	2005-12-18	\N		\N		Child		3777	\N
3918	DUSTINE ZETH	CASTILLO	GARCIA		DUSTINE ZETH GARCIA	Male	2013-12-12	\N		\N		Child		3777	\N
3919	LORETO	MACATANGAY	MACATANGAY		LORETO MACATANGAY	Male	0001-01-01	\N		\N		Father		3778	\N
3920	SOFIA	MACATANGAY	MACATANGAY		SOFIA MACATANGAY	Male	0001-01-01	\N		\N		Mother		3778	\N
3921	YSABELLE	MACATANGAY	MACATANGAY		YSABELLE MACATANGAY	Male	2010-06-20	\N		\N		Child		3778	\N
3925	REYMAR	ALOT	VILLANUEVA		REYMAR VILLANUEVA	Male	0001-01-01	\N		\N		Husband		3771	\N
3926	KEN ANDREI	OLIT	VILLANUEVA		KEN ANDREI VILLANUEVA	Male	2007-10-13	\N		\N		Child		3771	\N
3927	KIM ARIELLE	OLIT	VILLANUEVA		KIM ARIELLE VILLANUEVA	Male	2015-06-24	\N		\N		Child		3771	\N
3928	REYNALDO	MALIBIRAN	GONZALES		REYNALDO GONZALES	Male	0001-01-01	\N	RIGGER FOREMAN	\N		Husband	Married	3770	\N
3929	REEYAN MARCO	BAJA	GONZALES		REEYAN MARCO GONZALES	Male	2008-02-20	\N		\N		Child		3770	\N
3930	RHIZ MAYUMI	BAJA	GONZALES		RHIZ MAYUMI GONZALES	Male	2014-03-24	\N		\N		Child		3770	\N
3932	RIE CLAIRE CYNDELLE	D	CASTILLO		RIE CLAIRE CYNDELLE CASTILLO	Male	2000-03-21	\N		\N		Child		3780	\N
3933	RIO GIAN CARLO	A	DIMACULANGAN		RIO GIAN CARLO DIMACULANGAN	Male	2001-09-15	\N		\N		Child		3780	\N
3934	REENA LEIGH	A	DIMACULANGAN		REENA LEIGH DIMACULANGAN	Male	2006-06-22	\N		\N		Child		3780	\N
3936	RAHYAN MARC ALEXIS	A	DIMACULANGAN		RAHYAN MARC ALEXIS DIMACULANGAN	Male	2011-02-16	\N		\N		Child		3780	\N
3937	REYNANTE	MJANALO	DIMACULANGAN		REYNANTE DIMACULANGAN	Male	0001-01-01	\N		\N		Husband		3780	\N
3938	ARSENIO	MACATANGAY	ARANAS		ARSENIO ARANAS	Male	0001-01-01	\N		\N		Father		3780	\N
3939	SALUD	PAGLICAUAN	DE VILLA		SALUD DE VILLA	Male	0001-01-01	\N		\N		Mother		3780	\N
3922	FLORENCIO	MAGSUMBOL	MOJADO		FLORENCIO MOJADO	Male	0001-01-01	\N		\N		Husband	Married	3779	\N
3923	PEDRO	GUNO	CUSI		PEDRO CUSI	Male	0001-01-01	\N		\N		Father		3779	\N
3924	GLORIA	AMUL	POPULI		GLORIA POPULI	Female	0001-01-01	\N		\N		Mother		3779	\N
3902	ZANAIDA	RAYOS	CUETO		ZANAIDA CUETO	Female	0001-01-01	\N		\N		Mother		3773	\N
3903	RHIANNA IVONNE	DUTADO	AMUL		RHIANNA IVONNE AMUL	Male	2017-10-08	\N		\N		Child		3773	\N
3940	SEVERO BOY	AYUSON	HERRERA		SEVERO BOY HERRERA	Male	0001-01-01	\N		\N		Father		3781	\N
3941	JOSEPHINE	CLARETE	PAGSUYOIN		JOSEPHINE PAGSUYOIN	Male	0001-01-01	\N		\N		Mother		3781	\N
3942	LEONARDO	CASTILLA	PORCINO		LEONARDO PORCINO	Male	0001-01-01	\N		\N		Father		3782	\N
3943	MA. LORETA	PAGCALIWAGAN	PORCINO		MA. LORETA PORCINO	Male	0001-01-01	\N		\N		Mother		3782	\N
3946	EMANUEL	LIGAYA	MENDOZA		EMANUEL MENDOZA	Male	0001-01-01	\N	INSTRUCTOR	\N	09272553868	Husband	Married	3784	\N
3947	JED KEVIN	CIUDAD	MENDOZA		JED KEVIN MENDOZA	Male	1992-05-26	\N		\N		Child		3784	\N
3948	JANA KRIZA	CIUDAD	MENDOZA		JANA KRIZA MENDOZA	Male	1997-02-12	\N		\N		Child		3784	\N
3949	JEUS KIM	CIUDAD	MENDOZA		JEUS KIM MENDOZA	Male	1998-07-18	\N		\N		Child		3784	\N
3944	RAMON	ESTOLANO	SAMONTE		RAMON SAMONTE	Male	0001-01-01	\N		\N		Father		3783	\N
3945	LORETA	VALENCIA	CENIZA		LORETA CENIZA	Female	0001-01-01	\N		\N		Mother		3783	\N
3950	JULIO	CULLA	MENDOZA		JULIO MENDOZA	Male	0001-01-01	\N		\N		Husband		3785	\N
3951	ROBERTO	BACABAG	DAGOT		ROBERTO DAGOT	Male	0001-01-01	\N		\N		Father		3785	\N
3952	MARILYN	GARCIA	PASOL		MARILYN PASOL	Male	0001-01-01	\N		\N		Mother		3785	\N
3953	JUSTYNN JADE	D	MENDOZA		JUSTYNN JADE MENDOZA	Male	2002-03-27	\N		\N		Child		3785	\N
3957	HENRY	UNTIVEROS	FESTIJO		HENRY FESTIJO	Male	0001-01-01	\N		\N		Father		3786	\N
3958	NERIA	SAJUL	FESTIJO		NERIA FESTIJO	Male	0001-01-01	\N		\N		Mother		3786	\N
3954	JOHN PATRICK	REMOLAR	PLATA		JOHN PATRICK PLATA	Male	0001-01-01	\N		\N		Husband		3787	\N
3955	GUALBERTO	RABINO	BORRES		GUALBERTO BORRES	Male	0001-01-01	\N		\N		Father		3787	\N
3956	DONNA	UMAHON	CASAS		DONNA CASAS	Female	0001-01-01	\N		\N		Mother		3787	\N
3959	BLAIRE	AGUDERA	ENOT		BLAIRE ENOT	Male	0001-01-01	\N	CARPENTER	\N		Husband	Married	3788	\N
3960	JUSTINE BLAIRE	PATAL	ENOT		JUSTINE BLAIRE ENOT	Male	2010-04-23	\N		\N		Child		3788	\N
3961	ALEAH	PATAL	ENOT		ALEAH ENOT	Male	2021-08-02	\N		\N		Child		3788	\N
3962	CHRISTIAN	CASTANEDA	LOZANO		CHRISTIAN LOZANO	Male	0001-01-01	\N		\N		Husband	Married	3789	\N
3963	MARCELINO	GUTIERREZ	ATIENZA		MARCELINO ATIENZA	Male	0001-01-01	\N		\N		Father		3789	\N
3964	MAGDALENA	VILLAROSA	JASA		MAGDALENA JASA	Female	0001-01-01	\N		\N		Mother		3789	\N
3965	NOEL	CASAS	CENIZA		NOEL CENIZA	Male	0001-01-01	\N	STEVEDORE	\N		Husband	Married	3790	\N
3966	LHEION KHYLE	MENDOZA	CENIZA		LHEION KHYLE CENIZA	Male	2013-12-31	\N		\N		Child		3790	\N
3967	ROY	MENDOZA	GAMAB		ROY GAMAB	Male	0001-01-01	\N		\N		Father		3791	\N
3968	LILIAN	MALALUAN	ARGUILLES		LILIAN ARGUILLES	Female	0001-01-01	\N		\N		Mother		3791	\N
3970	IRENE	TOLENTINO	GASCO		IRENE GASCO	Female	0001-01-01	\N	TEACHER	\N		Wife	Married	3792	\N
3971	AIVER CHLEIN	TOLENTINO	GASCO		AIVER CHLEIN GASCO	Male	2013-11-16	\N		\N		Child		3792	\N
3969	AIRA CHARISSE	TOLENTINO	GASCO		AIRA CHARISSE GASCO	Female	2001-08-07	\N	TEACHER	\N		Child	Married	3792	\N
3972	RHODEER	AGUILAR	MENDOZA		RHODEER MENDOZA	Male	0001-01-01	\N		\N		Husband		3793	\N
3977	COLETA	MENDOZA	MENDOZA		COLETA MENDOZA	Male	0001-01-01	\N		\N		Mother		3794	\N
3973	VIRGILIO	CAISIP	CAISIP		VIRGILIO CAISIP	Male	0001-01-01	\N		\N		Father		3793	\N
3974	HELEN	LONTOK	LAIT		HELEN LAIT	Male	0001-01-01	\N		\N		Mother		3793	\N
3975	RODRICH SEVANI	C	MENDOZA		RODRICH SEVANI MENDOZA	Male	2020-11-11	\N		\N		Child		3793	\N
3976	LEOPOLDO	OCAMPO	MENDOZA		LEOPOLDO MENDOZA	Male	0001-01-01	\N		\N		Father		3794	\N
3978	CARLITO	FALCUTILA	FALCULAN		CARLITO FALCULAN	Male	0001-01-01	\N		\N		Father		3795	\N
3979	LIWAYWAY	FAJICULAY	FAMODULAN		LIWAYWAY FAMODULAN	Female	0001-01-01	\N		\N		Mother		3795	\N
3980	ANSELMO	GRABOSO	GUTIERREZ		ANSELMO GUTIERREZ	Male	0001-01-01	\N	TEACHER	\N	09166827012	Husband	Married	3797	\N
3987	RICHARD BIATO THYREESE	ATIENZA	LOZANO		RICHARD BIATO THYREESE ATIENZA LOZANO	Male	2008-09-11	\N		\N		Child		3789	
3988	SIMONE MELACHEA	ATIENZA	LOZANO		SIMONE MELACHEA ATIENZA LOZANO	Male	2009-11-07	\N		\N		Child		3789	
3989	ZANDRO LUIS	ATIENZA	LAZANO		ZANDRO LUIS ATIENZA LAZANO	Male	2013-04-12	\N		\N		Child		3789	
3990	CONCEPCION MARTINA	ATIENZA	LAZANO		CONCEPCION MARTINA ATIENZA LAZANO	Female	2019-03-05	\N		\N		Child		3789	
3981	AZIA AINSLEY	MERCADO	GUTIERREZ		AZIA AINSLEY GUTIERREZ	Male	2023-05-02	\N		\N		Child		3797	\N
3991	XYRIEL BREANNE	BORRES	PLATA		XYRIEL BREANNE BORRES PLATA	Female	2020-01-06	\N		\N		Child		3787	
3982	RUBEN	MACATANGAY	TINGCHUY		RUBEN TINGCHUY	Male	0001-01-01	\N		\N		Father		3796	\N
3983	MA. VICTORIA	LOZA	DE LEYOS		MA. VICTORIA DE LEYOS	Male	0001-01-01	\N		\N		Mother		3796	\N
3984	JULIUS ADRIELLE	T	MENDOZA		JULIUS ADRIELLE MENDOZA	Male	1995-01-28	\N		\N		Child		3796	\N
3985	MARIA SOPHIA	T	MENDOZA		MARIA SOPHIA MENDOZA	Male	2005-06-18	\N		\N		Child		3796	\N
3986	ALLEN	LUNAR	MENDOZA		ALLEN MENDOZA	Male	0001-01-01	\N		\N		Husband		3796	\N
3992	EDWIN	MANALO	BAYANI		EDWIN BAYANI	Male	0001-01-01	\N	TRICYCLE DRIVER	\N		Husband	Married	3798	\N
3993	ROLANDO	GUNIHIN	PANALIGAN		ROLANDO PANALIGAN	Male	0001-01-01	\N		\N		Father		3798	\N
3994	MA. DOLORES	ARCEGA	PAGWAGAN		MA. DOLORES PAGWAGAN	Female	0001-01-01	\N		\N		Mother		3798	\N
3995	ALLIYAH MAE	PANALIGAN	BAYANI		ALLIYAH MAE BAYANI	Female	2014-05-22	\N		\N		Child		3798	\N
3996	ALDWIN JAY	PANALIGAN	BAYANI		ALDWIN JAY BAYANI	Male	2015-09-24	\N		\N		Child		3798	\N
3997	EMMANUEL	MEJICO	MENDOZA		EMMANUEL MENDOZA	Male	0001-01-01	\N		\N		Husband		3800	\N
3998	HALLE PATRICIA	FALEJO	MENDOZA		HALLE PATRICIA MENDOZA	Male	2004-05-01	\N		\N		Child		3800	\N
3999	DEA NOREEN	FALEJO	MENDOZA		DEA NOREEN MENDOZA	Male	2008-12-24	\N		\N		Child		3800	\N
4000	MATT ETHAN	FALEJO	MENDOZA		MATT ETHAN MENDOZA	Male	2010-05-14	\N		\N		Child		3800	\N
4001	RADLEIGH	FALEJO	MENDOZA		RADLEIGH MENDOZA	Male	2019-06-16	\N		\N		Child		3800	\N
4002	BENJAMIN	MAGTIBAY	BALMES		BENJAMIN BALMES	Male	0001-01-01	\N		\N		Father		3799	\N
4003	MINA	MARASIGAN	BALMES		MINA BALMES	Male	0001-01-01	\N		\N		Mother		3799	\N
4004	JAYSON	DE CASTRO	PASIA		JAYSON PASIA	Male	0001-01-01	\N		\N		Husband		3801	\N
4005	JOEL	VICENTE	GUTIERREZ		JOEL GUTIERREZ	Male	0001-01-01	\N		\N		Father		3801	\N
4006	VIRGINIA	CABARTIJA	LEGASPI		VIRGINIA LEGASPI	Male	0001-01-01	\N		\N		Mother		3801	\N
4007	FHERCISSE JHAYLENE	G	PASIA		FHERCISSE JHAYLENE PASIA	Male	2012-01-27	\N		\N		Child		3801	\N
4008	CALEB JHESUA	G	PASIA		CALEB JHESUA PASIA	Male	2014-09-21	\N		\N		Child		3801	\N
4015	ISAGANI	GARCIA	PERSINCULA		ISAGANI PERSINCULA	Male	0001-01-01	\N		\N		Husband		3803	\N
4016	ERNESTO	MACATANGAY	FALTADO		ERNESTO FALTADO	Male	0001-01-01	\N		\N		Father		3803	\N
4017	BONIFACIA	MACATANGAY	CLARETE		BONIFACIA CLARETE	Male	0001-01-01	\N		\N		Mother		3803	\N
4018	GENELYN JOY	F	PERSINCULA		GENELYN JOY PERSINCULA	Male	1994-06-24	\N		\N		Child		3803	\N
4019	GRACE ANN	F	PERSINCULA		GRACE ANN PERSINCULA	Male	1996-09-13	\N		\N		Child		3803	\N
4020	RODERIC	DILAY	MENDOZA		RODERIC MENDOZA	Male	0001-01-01	\N	SEAFERER	\N	09176526789	Husband	Married	3804	\N
4021	JENDRICK	ILAGAN	MENDOZA		JENDRICK MENDOZA	Male	1996-10-20	\N		\N		Child		3804	\N
4022	RENDRIC	ILAGAN	MENDOZA		RENDRIC MENDOZA	Male	2000-02-20	\N		\N		Child		3804	\N
4023	ZENDRIC	ILAGAN	MENDOZA		ZENDRIC MENDOZA	Male	2004-09-27	\N		\N		Child		3804	\N
4024	MICHAEL	SURELA	SABADA		MICHAEL SABADA	Male	0001-01-01	\N		\N		Husband		3805	\N
4025	JESUS	ABADA	ANONUEVO		JESUS ANONUEVO	Male	0001-01-01	\N		\N		Father		3805	\N
4026	FELIPA	FALCUNIT	ANONUEVO		FELIPA ANONUEVO	Male	0001-01-01	\N		\N		Mother		3805	\N
4027	JOEL	TREMILLOS	SUMAGUE		JOEL SUMAGUE	Male	0001-01-01	\N		\N		Husband		3806	\N
4028	SEVERINO	DE GUZMAN	MACATANGAY		SEVERINO MACATANGAY	Male	0001-01-01	\N		\N		Father		3806	\N
4029	FELICIDAD	CASAS	ANTE		FELICIDAD ANTE	Male	0001-01-01	\N		\N		Mother		3806	\N
4030	ANNLYZETTE-JOYCE	M	SUMAGUE		ANNLYZETTE-JOYCE SUMAGUE	Male	2004-06-05	\N		\N		Child		3806	\N
4031	ISIDRO	PEREZ	VERGARA		ISIDRO VERGARA	Male	0001-01-01	\N		\N		Father		3807	\N
4032	LOIDA	ESPELETA	GUTEZA		LOIDA GUTEZA	Male	0001-01-01	\N		\N		Mother		3807	\N
4009	JOEL	BATHAN	RAMIREZ		JOEL RAMIREZ	Male	0001-01-01	\N		\N		Husband	Married	3802	\N
4010	ANGELITO	PENTINO	MENDOZA		ANGELITO MENDOZA	Male	0001-01-01	\N		\N		Father		3802	\N
4011	ELVIE	MALLORCA	MADALI		ELVIE MADALI	Female	0001-01-01	\N		\N		Mother		3802	\N
4012	AARON JAMES	MENDOZA	RAMIREZ		AARON JAMES RAMIREZ	Male	2014-05-24	\N		\N		Child		3802	\N
4013	DWAYNE JEIAN	MENDOZA	BAGON		DWAYNE JEIAN BAGON	Male	2021-11-19	\N		\N		Child		3802	\N
4014	JENICA JEIN	MENDOZA	RAMIREZ		JENICA JEIN RAMIREZ	Female	2023-01-12	\N		\N		Child		3802	\N
4033	DOMINADOR	MARANAN	NEBRIDA		DOMINADOR NEBRIDA	Male	0001-01-01	\N		\N		Husband		3808	\N
4034	DMONINC GABRIEL	BAGSIT	NEBRIDA		DMONINC GABRIEL NEBRIDA	Male	2005-08-30	\N		\N		Child		3808	\N
4035	IRISH COLEEN	BAGSIT	NEBRIDA		IRISH COLEEN NEBRIDA	Male	2006-12-23	\N		\N		Child		3808	\N
4039	SOPHIA BIANCA	CUETO	SANTOS		SOPHIA BIANCA SANTOS	Female	2012-09-26	\N		\N		Child		3812	\N
4040	CHRISTOPHER JULIAN	CUETO	SANTOS		CHRISTOPHER JULIAN SANTOS	Male	2017-01-28	\N		\N		Child		3812	\N
4041	MEDEL	ARAJA	ZARASPE		MEDEL ZARASPE	Male	0001-01-01	\N		\N		Husband		3809	\N
4042	MEDEL	DELGADO	ZARASPE		MEDEL ZARASPE	Male	1987-10-03	\N		\N		Child		3809	\N
4043	SHARA CECILLE	DELGADO	ZARASPE		SHARA CECILLE ZARASPE	Male	1992-02-27	\N		\N		Child		3809	\N
4044	MARIENELLE CECILLE	DELGADO	ZARASPE		MARIENELLE CECILLE ZARASPE	Male	1998-10-03	\N		\N		Child		3809	\N
4036	HECTOR SHELLINO OCTAVIO	AMISTOSO	SANTOS		HECTOR SHELLINO OCTAVIO SANTOS	Male	0001-01-01	\N	ENGINEER	\N	09085738159	Husband	Married	3812	\N
4037	ANTONIO	CALALUAN	CUETO		ANTONIO CUETO	Male	0001-01-01	\N		\N		Father		3812	\N
4038	MARILOU	CUETO	PURIO		MARILOU PURIO	Female	0001-01-01	\N		\N		Mother		3812	\N
4045	NILO	CANDIDO	VALLE		NILO VALLE	Male	0001-01-01	\N		\N		Husband		3813	\N
4046	EPITACIO	LEGASPI	GALARPE		EPITACIO GALARPE	Male	0001-01-01	\N		\N		Father		3813	\N
4047	PATROCINIO	MIRANDA	GALVEZ		PATROCINIO GALVEZ	Male	0001-01-01	\N		\N		Mother		3813	\N
4048	NEILMAR	G	VALLE		NEILMAR VALLE	Male	1990-03-07	\N		\N		Child		3813	\N
4049	GRACE	G	VALLE		GRACE VALLE	Male	1991-09-12	\N		\N		Child		3813	\N
4050	KID RAD	G	VALLE		KID RAD VALLE	Male	2000-08-02	\N		\N		Child		3813	\N
4051	RED	G	VALLE		RED VALLE	Male	2008-08-09	\N		\N		Child		3813	\N
4052	NELSON	DELA CRUZ	ALVAREZ		NELSON ALVAREZ	Male	0001-01-01	\N	MAINTENANCE/CARETAKER	\N		Husband	Married	3810	\N
4053	GODWIN	MARASIGAN	ALVAREZ		GODWIN ALVAREZ	Male	2004-09-14	\N		\N		Child		3810	\N
4054	GODRICH	MARASIGAN	ALVAREZ		GODRICH ALVAREZ	Male	2009-12-05	\N		\N		Child		3810	\N
4055	ZACARIAS	DIMAYACYAC	GARCIA		ZACARIAS GARCIA	Male	0001-01-01	\N	PIPE FITTER	\N		Husband	Married	3815	\N
4056	ALBERTO	CORTEZ	ALEA		ALBERTO ALEA	Male	0001-01-01	\N		\N		Father		3815	\N
4057	FLORENTINA	CONCEPCION	FAJARDO		FLORENTINA FAJARDO	Female	0001-01-01	\N		\N		Mother		3815	\N
4058	RAIN	ALEA	GARCIA		RAIN GARCIA	Female	2010-09-04	\N		\N		Child		3815	\N
4059	RAINIEL	ALEA	GARCIA		RAINIEL GARCIA	Male	2014-06-01	\N		\N		Child		3815	\N
4060	BOBBY	LARAÑIO	ABEJO		BOBBY ABEJO	Male	0001-01-01	\N		\N		Husband		3814	\N
4061	ROMEO	CATIBOG	SANCHEZ		ROMEO SANCHEZ	Male	0001-01-01	\N		\N		Father		3814	\N
4062	REMEDIOS	CUASAY	ENRIQUEZ		REMEDIOS ENRIQUEZ	Male	0001-01-01	\N		\N		Mother		3814	\N
4066	MAR	ROQUE	RONQUILLO		MAR RONQUILLO	Male	0001-01-01	\N	ADMINISTRATIVE AIDE III	\N	09292929601	Husband	Married	3811	\N
4067	MARIELLE	ABEL	RONQUILLO		MARIELLE RONQUILLO	Male	1997-01-19	\N		\N		Child		3811	\N
4068	ALESSANDRA MAE	ABEL	RONQUILLO		ALESSANDRA MAE RONQUILLO	Male	2000-10-21	\N		\N		Child		3811	\N
4069	ALEC JOSHUA	ABEL	RONQUILLO		ALEC JOSHUA RONQUILLO	Male	2005-05-04	\N		\N		Child		3811	\N
4070	MARC JEFFREY	ABEL	RONQUILLO		MARC JEFFREY RONQUILLO	Male	2009-12-23	\N		\N		Child		3811	\N
4063	NATHALIE	SANCHEZ	ABEJO		NATHALIE ABEJO	Male	2007-02-12	\N		\N		Child		3814	\N
4064	LAURICE	SANCHEZ	ABEJO		LAURICE ABEJO	Male	2008-03-01	\N		\N		Child		3814	\N
4071	CONRADO	MAGLUNOG	CRELENCIA		CONRADO CRELENCIA	Male	0001-01-01	\N		\N		Father		3816	\N
4072	ENRIQUETA	INCIONG	MAGLUNOG		ENRIQUETA MAGLUNOG	Female	0001-01-01	\N		\N		Mother		3816	\N
4073	JOSE	ALMAREZ	RONQUILLO		JOSE RONQUILLO	Male	0001-01-01	\N		\N		Father		3822	\N
4074	MARIA	MENDOZA	ASI		MARIA ASI	Male	0001-01-01	\N		\N		Mother		3822	\N
4075	FLORENCIO	CARAIG	BALITAAN		FLORENCIO BALITAAN	Male	0001-01-01	\N	TIG WELDER	\N	09568903244	Husband	Married	3817	\N
4076	JOHN MARC ACE BRYAN	CAAWAY	BALITAAN		JOHN MARC ACE BRYAN BALITAAN	Male	1987-08-10	\N		\N		Child		3817	\N
4077	JOY MAUREEN	CAAWAY	BALITAAN		JOY MAUREEN BALITAAN	Male	2002-11-23	\N		\N		Child		3817	\N
4078	SONNY	GARING	MACARAIG		SONNY MACARAIG	Male	0001-01-01	\N		\N		Husband		3823	\N
4079	RODOLFO	ATIENZA	QUINERY		RODOLFO QUINERY	Male	0001-01-01	\N		\N		Father		3823	\N
4080	FLORENCIA	RIVERA	MENDOZA		FLORENCIA MENDOZA	Female	0001-01-01	\N		\N		Mother		3823	\N
4081	SYBIL	QUINERY	MACARAIG		SYBIL MACARAIG	Male	1993-04-25	\N		\N		Child		3823	\N
4082	SANDRA MAE	MACARAIG	SERRANO		SANDRA MAE SERRANO	Female	1996-11-04	\N		\N		Child		3823	\N
4083	SEBASTIAN	CASTILLO	ANONUEVO		SEBASTIAN ANONUEVO	Male	0001-01-01	\N		\N		Husband		3824	\N
4084	FABIAN	MACARAIG	DE CASTRO		FABIAN DE CASTRO	Male	0001-01-01	\N		\N		Father		3824	\N
4085	LUCINA	MACAPUNO	MENDOZA		LUCINA MENDOZA	Male	0001-01-01	\N		\N		Mother		3824	\N
4086	JOHN CYRILE	DE CASTRO	ANONUEVO		JOHN CYRILE ANONUEVO	Male	2009-08-08	\N		\N		Child		3824	\N
4087	KENNETH	DE CASTRO	ANONUEVO		KENNETH ANONUEVO	Male	2011-02-16	\N		\N		Child		3824	\N
4088	ANGELO	MAGBUHAT	CUSTODIO		ANGELO CUSTODIO	Male	0001-01-01	\N	PIPE FITTER	\N		Husband	Married	3818	\N
4089	MIGUEL IVAN	PAPASIN	CUSTODIO		MIGUEL IVAN CUSTODIO	Male	2018-09-12	\N		\N		Child		3818	\N
4090	JERRY	VILLANUEVA	NOCHE		JERRY NOCHE	Male	0001-01-01	\N		\N		Husband	Married	3825	\N
4091	BIENVINIDO	LOGDAT	DIZON		BIENVINIDO DIZON	Male	0001-01-01	\N		\N		Father		3825	\N
4092	FELISA	MAAC	LAYAG		FELISA LAYAG	Female	0001-01-01	\N		\N		Mother		3825	\N
4093	JILLIANNE CHERRY MAE	DIZON	NOCHE		JILLIANNE CHERRY MAE NOCHE	Female	2002-05-14	\N		\N		Child		3825	\N
4094	JAN JAYVIEN	DIZON	NOCHE		JAN JAYVIEN NOCHE	Male	2004-01-23	\N		\N		Child		3825	\N
4095	JAN JERRY MEL	DIZON	NOCHE		JAN JERRY MEL NOCHE	Male	2007-10-15	\N		\N		Child		3825	\N
4096	ANGEL JAIDE	ATIENZA	DINGLASAN		ANGEL JAIDE DINGLASAN	Female	2005-10-06	\N		\N		Child		3819	\N
4097	JOWEL	CATAPANG	DINGLASAN		JOWEL DINGLASAN	Male	0001-01-01	\N	SEAFARER	\N		Husband	Married	3819	\N
4098	GABRIELLE	CADANO	TORRES		GABRIELLE TORRES	Male	2012-08-10	\N		\N		Child		3820	\N
4099	HERBERT	DE GUZMAN	TORRES		HERBERT TORRES	Male	0001-01-01	\N	MECHANICAL FITTER (CONTRACTUAL)/DRIVER	\N		Husband	Married	3820	\N
4100	NOEL	PITEL	RAMIREZ		NOEL RAMIREZ	Male	0001-01-01	\N	FACILITY STAFF	\N	09673576748	Husband	Married	3821	\N
4101	ALBERTO	BALMES	RAMIREZ		ALBERTO RAMIREZ	Male	0001-01-01	\N	LEADMAN OPERATOR	\N	09988404003	Husband	Married	3829	\N
4102	VIRGILIO	DESPABELADERAS	BACLAO		VIRGILIO BACLAO	Male	0001-01-01	\N		\N		Father		3829	\N
4103	LORENZA	MAYUGA	DE CASTRO		LORENZA DE CASTRO	Female	0001-01-01	\N		\N		Mother		3829	\N
4104	ABBY LORRAINE	B.	RAMIREZ		ABBY LORRAINE RAMIREZ	Female	2005-09-28	\N		\N		Child		3829	\N
4105	JEAN CHRISTDEL	MACARAIG	ABACAN		JEAN CHRISTDEL ABACAN	Male	1996-12-08	\N		\N		Child		3826	\N
4106	RODEL	VILLANUEVA	ABACAN		RODEL ABACAN	Male	0001-01-01	\N	OFW	\N		Husband	Married	3826	\N
4113	LARRA JOYCE	ARELLANO	GUARDIANO		LARRA JOYCE GUARDIANO	Male	2000-05-01	\N		\N		Child		3827	\N
4114	ALYSSA MAE	ARELLANO	GUARDIANO		ALYSSA MAE GUARDIANO	Male	2002-12-06	\N		\N		Child		3827	\N
4115	AIRA LOREEN	ARELLANO	GUARDIANO		AIRA LOREEN GUARDIANO	Male	2013-01-05	\N		\N		Child		3827	\N
4116	LARRY	MENDOZA	GUARDIANO		LARRY GUARDIANO	Male	0001-01-01	\N	MULTI-SKILLED TECHNICIAN	\N		Husband	Married	3827	\N
4107	RENATO	MACATANGAY	SALIGAO		RENATO SALIGAO	Male	0001-01-01	\N		\N		Husband		3831	\N
4108	ANDRES	MACARAIG	MEDINA		ANDRES MEDINA	Male	0001-01-01	\N		\N		Father		3831	\N
4109	ELEANOR	MEDINA	MENDOZA		ELEANOR MENDOZA	Female	0001-01-01	\N		\N		Mother		3831	\N
4110	AERON CHRISTIAN	MEDINA	SALIGAO		AERON CHRISTIAN SALIGAO	Male	2001-12-27	\N		\N		Child		3831	\N
4111	FAYE CAMILLE	MEDINA	SALIGAO		FAYE CAMILLE SALIGAO	Female	2004-03-14	\N		\N		Child		3831	\N
4112	NATHANIEL COLLINS	M.	SALIGAO		NATHANIEL COLLINS SALIGAO	Male	2019-02-01	\N		\N		Child		3831	\N
4117	MERICK	IBON	CULLERA		MERICK CULLERA	Male	0001-01-01	\N	SELF EMPLOYED	\N	09913263595	Husband	Married	3832	\N
4118	ELPIDIO	RAMOS	CONCHA		ELPIDIO CONCHA	Male	0001-01-01	\N		\N		Father		3832	\N
4119	AGATONA	UMALI	PATAL		AGATONA PATAL	Female	0001-01-01	\N		\N		Mother		3832	\N
4120	JOHN LEXTER	CONCHA	CULLERA		JOHN LEXTER CULLERA	Male	1996-10-24	\N		\N		Child		3832	\N
4121	JERICK LIONEL	CONCHA	CULLERA		JERICK LIONEL CULLERA	Male	2000-03-08	\N		\N		Child		3832	\N
4122	CHRISTINE ANGELIC	FAJILAN	FAMPULME		CHRISTINE ANGELIC FAMPULME	Male	1997-03-31	\N		\N		Child		3828	\N
4123	GRACELY MAE	FAJILAN	FAMPULME		GRACELY MAE FAMPULME	Male	2000-02-04	\N		\N		Child		3828	\N
4124	KATE LYLE	FAJILAN	FAMPULME		KATE LYLE FAMPULME	Male	2001-08-08	\N		\N		Child		3828	\N
4125	ROLLIE	FRONDA	FAMPULME		ROLLIE FAMPULME	Male	0001-01-01	\N		\N		Husband	Married	3828	\N
4126	VICENTE	CANTOS	MENDOZA		VICENTE MENDOZA	Male	0001-01-01	\N	SECURITY GUARD	\N		Husband	Married	3830	\N
4127	ANIKA ANNE	RAMOS	MENDOZA		ANIKA ANNE MENDOZA	Male	2008-11-03	\N		\N		Child		3830	\N
4128	MACARIO	MARANAN	BUROG		MACARIO BUROG	Male	0001-01-01	\N		\N		Father		3833	\N
4129	CONSOLITA	BRIONES	BAES		CONSOLITA BAES	Female	0001-01-01	\N		\N		Mother		3833	\N
4135	BLAINE MATHEW	SORIANO	SALCEDO		BLAINE MATHEW SALCEDO	Male	2023-04-21	\N		\N		Child		3837	\N
4136	BENJAMEN	BACOSA	SALCEDO		BENJAMEN SALCEDO	Male	0001-01-01	\N	SEAMAN	\N		Husband	Married	3837	\N
4130	JAY	PEREZ	MACALINDONG		JAY MACALINDONG	Male	0001-01-01	\N	TRICYCLE DRIVER	\N		Husband	Married	3834	\N
4131	PABLO	PURIO	CUETO		PABLO CUETO	Male	0001-01-01	\N		\N		Father		3834	\N
4132	PACIENCIA	MANALO	CALALUAN		PACIENCIA CALALUAN	Female	0001-01-01	\N		\N		Mother		3834	\N
4133	MARIELLE	CUETO	MACALINDONG		MARIELLE MACALINDONG	Female	2002-09-18	\N		\N		Child		3834	\N
4134	JEMUEL	CUETO	MACALINDONG		JEMUEL MACALINDONG	Male	2004-05-27	\N		\N		Child		3834	\N
4143	CHARLIE	HATULAN	DAGUS		CHARLIE DAGUS	Male	0001-01-01	\N		\N		Father		3840	\N
4138	CESARIO	CHAVEZ	CULLA		CESARIO CULLA	Male	0001-01-01	\N		\N		Father		3839	\N
4139	NENITA	YAMBAO	CORTEZ		NENITA CORTEZ	Male	0001-01-01	\N		\N		Mother		3839	\N
4144	LERMA	CALALUAN	DAGUS		LERMA DAGUS	Male	0001-01-01	\N		\N		Mother		3840	\N
4137	DONNA	ROPERO	CORTEZ		DONNA CORTEZ	Female	0001-01-01	\N	OFFICE STAFF	\N	09053364109	Wife	Married	3839	\N
4140	GREGORIO	ENRIQUEZ	SILVA		GREGORIO SILVA	Male	0001-01-01	\N		\N		Father		3841	\N
4141	LEONARDA	ALDOVINO	ANDAL		LEONARDA ANDAL	Female	0001-01-01	\N		\N		Mother		3841	\N
4142	ROBI BENEDICT		SILVA		ROBI BENEDICT SILVA	Male	2008-06-08	\N		\N		Child		3841	\N
4145	ANGELITO	LECAROZ	MANALO		ANGELITO MANALO	Male	0001-01-01	\N		\N		Father		3838	\N
4146	MARIA VICTORIA	FAJILAN	MANALO		MARIA VICTORIA MANALO	Male	0001-01-01	\N		\N		Mother		3838	\N
4147	STEPHEN	MARANAN	TOLENTINO		STEPHEN TOLENTINO	Male	0001-01-01	\N		\N		Husband		3842	\N
4148	DIONISIO	CANIEDO	SAMSON		DIONISIO SAMSON	Male	0001-01-01	\N		\N		Father		3842	\N
4149	JOSEPHINE	MALIGAYA	SANCHEZ		JOSEPHINE SANCHEZ	Male	0001-01-01	\N		\N		Mother		3842	\N
4150	JOHN STEVEN	S.	TOLENTINO		JOHN STEVEN TOLENTINO	Male	2010-12-14	\N		\N		Child		3842	\N
4151	JAMES SIEMON	S.	TOLENTINO		JAMES SIEMON TOLENTINO	Male	2012-05-26	\N		\N		Child		3842	\N
4152	JONAS SAMUEL	S.	TOLENTINO		JONAS SAMUEL TOLENTINO	Male	2014-04-30	\N		\N		Child		3842	\N
4153	JOANA SHAYNE	S.	TOLENTINO		JOANA SHAYNE TOLENTINO	Male	2015-12-16	\N		\N		Child		3842	\N
4154	JOIRA SHAINA	S.	TOLENTINO		JOIRA SHAINA TOLENTINO	Male	2020-12-02	\N		\N		Child		3842	\N
4155	EFREN	TOLENTINO	RAYOS		EFREN RAYOS	Male	0001-01-01	\N	SEAMAN	\N	0286556404	Husband	Married	3843	\N
4156	ANTONIO	DEL MONTE	CACAO		ANTONIO CACAO	Male	0001-01-01	\N		\N		Father		3843	\N
4157	TERESITA	PEREZ	BUESA		TERESITA BUESA	Female	0001-01-01	\N		\N		Mother		3843	\N
4158	SHANE FRENSY	CACAO	RAYOS		SHANE FRENSY RAYOS	Male	2006-07-20	\N		\N		Child		3843	\N
4159	ARNOLD	CUETO	AMUL		ARNOLD AMUL	Male	0001-01-01	\N		\N		Husband	Married	3836	\N
4160	ALIJAH JOHAN	LUALHATI	AMUL		ALIJAH JOHAN AMUL	Male	2019-12-12	\N		\N		Child		3836	\N
4161	CINDERELLA KATE	DIMAANO	MENDOZA		CINDERELLA KATE MENDOZA	Male	2009-11-01	\N		\N		Child		3835	\N
4167	MANNY	OLIT	SORIANO		MANNY SORIANO	Male	0001-01-01	\N		\N		Husband		3844	\N
4163	XIAN DANIELLE	DIMAANO	MENDOZA		XIAN DANIELLE MENDOZA	Male	2012-04-17	\N		\N		Child		3835	\N
4162	CRECENCIO	DELGADO	MENDOZA		CRECENCIO MENDOZA	Male	0001-01-01	\N	FISHERMAN	\N		Husband	Married	3835	\N
4165	TYRONE	DIMAANO	MENDOZA		TYRONE MENDOZA	Male	2015-11-28	\N		\N		Child		3835	\N
4166	RAYA	DIMAANO	MENDOZA		RAYA MENDOZA	Male	2019-09-22	\N		\N		Child		3835	\N
4164	SOPHIA	DIMAANO	MENDOZA		SOPHIA MENDOZA	Male	2014-07-29	\N		\N		Child		3835	\N
4168	ROMEO	CATIBOG	SANCHEZ		ROMEO SANCHEZ	Male	0001-01-01	\N		\N		Father		3844	\N
4169	REMEDIOS	CUASAY	ENRIQUEZ		REMEDIOS ENRIQUEZ	Male	0001-01-01	\N		\N		Mother		3844	\N
4170	KAYE ANNE	SANCHEZ	SORIANO		KAYE ANNE SORIANO	Male	2003-08-11	\N		\N		Child		3844	\N
4171	KRISTAL ANNE	SANCHEZ	SORIANO		KRISTAL ANNE SORIANO	Male	2007-04-05	\N		\N		Child		3844	\N
4172	KARL ANGELOU	SANCHEZ	SORIANO		KARL ANGELOU SORIANO	Male	2008-09-18	\N		\N		Child		3844	\N
4176	SAVERLYN GRACE	LOCES	GABIASO		SAVERLYN GRACE GABIASO	Male	2002-08-19	\N		\N		Child		3846	\N
4177	SALVADOR	NOPRADA	GABIASO		SALVADOR GABIASO	Male	0001-01-01	\N		\N		Husband	Married	3846	\N
4173	GUADENCIO	GLACIANO	ESCONDE		GUADENCIO ESCONDE	Male	0001-01-01	\N	PROJECT ENGINEER	\N	09555230263	Husband	Married	3845	\N
4174	ANTONIO	BALMES	BALMES		ANTONIO BALMES	Male	0001-01-01	\N		\N		Father		3845	\N
4175	PACITA	HERNANDEZ	BAUTISTA		PACITA BAUTISTA	Female	0001-01-01	\N		\N		Mother		3845	\N
4178	KIM AYRA	BALMES	ESCONDE		KIM AYRA ESCONDE	Female	1997-02-08	\N		\N		Child		3845	\N
4179	LEE RANIEL	BALMES	ESCONDE		LEE RANIEL ESCONDE	Male	2002-02-08	\N		\N		Child		3845	\N
4180	MHELL	CUETO	TOLENTINO		MHELL TOLENTINO	Male	0001-01-01	\N		\N		Father		3850	\N
4181	ESTER	COLIAT	BUENAFE		ESTER BUENAFE	Male	0001-01-01	\N		\N		Mother		3850	\N
4182	MHELLVEEN IVAN	B	TOLENTINO		MHELLVEEN IVAN TOLENTINO	Male	2011-05-28	\N		\N		Child		3850	\N
4183	LEAH JAHLEEL	FAJORA	PEREZ		LEAH JAHLEEL PEREZ	Male	1998-12-07	\N		\N		Child		3848	\N
4184	SHELAH MAE	FAJORA	PEREZ		SHELAH MAE PEREZ	Male	2001-05-01	\N		\N		Child		3848	\N
4185	ROMMEL	YLAGAN	PEREZ		ROMMEL PEREZ	Male	0001-01-01	\N	FOREMAN CARPENTER	\N	09486442323	Husband	Married	3848	\N
4186	CARLOS	DAPULA	RIVERA		CARLOS RIVERA	Male	0001-01-01	\N		\N		Father		3851	\N
4187	MYRENE	BAUTISTA	GATDULA		MYRENE GATDULA	Male	0001-01-01	\N		\N		Mother		3851	\N
4195	REYNOLD	CUETO	PENTINIO		REYNOLD PENTINIO	Male	0001-01-01	\N	TEACHER	\N	0437022094	Husband	Married	3847	\N
4196	RECTO	ZAMBRANO	FALCON		RECTO FALCON	Male	0001-01-01	\N		\N		Father		3847	\N
4197	MERLIE	BATISTIL	FALCON		MERLIE FALCON	Male	0001-01-01	\N		\N		Mother		3847	\N
4188	JOSEPHINE	FONTE	CANTUBA		JOSEPHINE CANTUBA	Female	1990-10-30	\N		\N		Child		3852	\N
4189	ARTEMIO	FRUELDA	FONTE		ARTEMIO FONTE	Male	0001-01-01	\N		\N		Father		3852	\N
4190	LAURIANA	MANZALAY	FAJILAN		LAURIANA FAJILAN	Female	0001-01-01	\N		\N		Mother		3852	\N
4191	JOSEPHINE	FONTE	CANTUBA		JOSEPHINE CANTUBA	Female	1990-10-30	\N		\N		Child		3852	\N
4192	JOEL	FONTE	CANTUBA		JOEL CANTUBA	Male	1992-01-31	\N		\N		Child		3852	\N
4193	JOSEPH	FONTE	CANTUBA	JR.	JOSEPH CANTUBA JR.	Male	1993-05-21	\N		\N		Child		3852	\N
4194	JOSHUA	FONTE	CANTUBA		JOSHUA CANTUBA	Male	1995-06-18	\N		\N		Child		3852	\N
4198	ALLAN	MONTALBO	SUAREZ		ALLAN SUAREZ	Male	0001-01-01	\N		\N		Husband		3853	\N
4199	CESARIO	CANTOS	AGUADO		CESARIO AGUADO	Male	0001-01-01	\N		\N		Father		3853	\N
4200	CHARITY	GUNDAY	GUILLES		CHARITY GUILLES	Male	0001-01-01	\N		\N		Mother		3853	\N
4201	AEDRIAN	A.	SUAREZ		AEDRIAN SUAREZ	Male	2009-02-08	\N		\N		Child		3853	\N
4202	AIRA EUNICE	A.	SUAREZ		AIRA EUNICE SUAREZ	Male	2021-07-25	\N		\N		Child		3853	\N
4203	RODELIO	DALUZ	SOLIMAN		RODELIO SOLIMAN	Male	0001-01-01	\N		\N		Husband		3854	\N
4204	FELIX	CATAPANG	GUTIERREZ		FELIX GUTIERREZ	Male	0001-01-01	\N		\N		Father		3854	\N
4205	ILUMINADA	APARATO	VALENCIA		ILUMINADA VALENCIA	Male	0001-01-01	\N		\N		Mother		3854	\N
4206	ALVIN	ARQUERO	PAMPLONA		ALVIN PAMPLONA	Male	0001-01-01	\N		\N		Husband		3855	\N
4207	BENJAMIN	MAGTIBAY	BALMES		BENJAMIN BALMES	Male	0001-01-01	\N		\N		Father		3855	\N
4208	MINA	VELASQUEZ	MARASIGAN		MINA MARASIGAN	Male	0001-01-01	\N		\N		Mother		3855	\N
4209	CEPRIANO	CABATAY	MAGPANTAY		CEPRIANO MAGPANTAY	Male	0001-01-01	\N		\N		Father		3849	\N
4210	LILIWA	SABADO	MAGPANTAY		LILIWA MAGPANTAY	Male	0001-01-01	\N		\N		Mother		3849	\N
4214	PAULA KATRINA	EBORA	ALMAZAN		PAULA KATRINA ALMAZAN	Male	2002-11-22	\N		\N		Child		3856	\N
4215	ALYSSA EULLINE	EBORA	ALMAZAN		ALYSSA EULLINE ALMAZAN	Male	2006-11-28	\N		\N		Child		3856	\N
4216	EDILBERTO	MANONGSONG	ALMAZAN		EDILBERTO ALMAZAN	Male	0001-01-01	\N	LIFEGUARD	\N	09995446919	Husband	Married	3856	\N
4211	ROBERTO	AGUBA	LACSAMANA		ROBERTO LACSAMANA	Male	0001-01-01	\N	TRICYCLE DRIVER	\N		Husband	Married	3858	\N
4212	DAMASO	AGUDA	CULLA		DAMASO CULLA	Male	0001-01-01	\N		\N		Father		3858	\N
4213	JOSEFINA	DELA ROCA	MAGADIA		JOSEFINA MAGADIA	Female	0001-01-01	\N		\N		Mother		3858	\N
4221	DIOSDADO	GAREJO	RAYOS		DIOSDADO RAYOS	Male	0001-01-01	\N		\N		Father		3857	\N
4222	FELICIDAD	TIPOSO	RAYOS		FELICIDAD RAYOS	Male	0001-01-01	\N		\N		Mother		3857	\N
4217	RYAN	ESCAREZ	BRETON		RYAN BRETON	Male	0001-01-01	\N	STRUCTURAL FITTER	\N		Husband	Married	3860	\N
4218	BUENAVENTURA	CLAVERIA	DE CASTRO		BUENAVENTURA DE CASTRO	Male	0001-01-01	\N		\N		Father		3860	\N
4219	TEODORA	AREVALO	HERNANDEZ		TEODORA HERNANDEZ	Female	0001-01-01	\N		\N		Mother		3860	\N
4220	SHEIM AIRA		BRETON		SHEIM AIRA BRETON	Female	2006-01-15	\N		\N		Child		3860	\N
4223	CRISANTO	FALLARIA	FONDEVILLA		CRISANTO FONDEVILLA	Male	0001-01-01	\N		\N		Father		3859	\N
4224	ROSALINDA	BULAWIN	FONDEVILLA		ROSALINDA FONDEVILLA	Male	0001-01-01	\N		\N		Mother		3859	\N
4232	DOROTHY BEATRICE	EBORA	MEDINA		DOROTHY BEATRICE MEDINA	Male	2005-05-18	\N		\N		Child		3861	\N
4233	EDWARD THEODORE	EBORA	MEDINA		EDWARD THEODORE MEDINA	Male	2007-04-23	\N		\N		Child		3861	\N
4234	REYNALDO	AMUL	MEDINA		REYNALDO MEDINA	Male	0001-01-01	\N	ADMINISTRATIVE AIDE 1	\N	0437022094	Husband	Married	3861	\N
4225	GERARDO	PENTINIO	PEREZ		GERARDO PEREZ	Male	0001-01-01	\N		\N		Husband	Married	3866	\N
4226	ALBERTO	EBORA	RESURRECCION		ALBERTO RESURRECCION	Male	0001-01-01	\N		\N		Father		3866	\N
4227	LEONICIA	MENDOZA	ANDAL		LEONICIA ANDAL	Female	0001-01-01	\N		\N		Mother		3866	\N
4228	RHELYN ELOISA	R.	PEREZ		RHELYN ELOISA PEREZ	Female	1997-11-30	\N		\N		Child		3866	\N
4229	GHEIANNE ALLYSA	R.	PEREZ		GHEIANNE ALLYSA PEREZ	Female	2000-06-11	\N		\N		Child		3866	\N
4230	GLENN JOSEPH	R.	PEREZ		GLENN JOSEPH PEREZ	Male	2003-07-16	\N		\N		Child		3866	\N
4231	MARK GERARD	R.	PEREZ		MARK GERARD PEREZ	Male	2006-01-31	\N		\N		Child		3866	\N
4235	ANTHONY	ROXAS	PANGANIBAN		ANTHONY PANGANIBAN	Male	0001-01-01	\N		\N		Husband		3867	\N
4236	ERIBERTO	DELA ROCA	DUTADO		ERIBERTO DUTADO	Male	0001-01-01	\N		\N		Father		3867	\N
4237	ALELI	MAGAHIS	MANALO		ALELI MANALO	Male	0001-01-01	\N		\N		Mother		3867	\N
4238	GEOFFREY	DUTADO	PANGANIBAN		GEOFFREY PANGANIBAN	Male	2008-10-16	\N		\N		Child		3867	\N
4239	RAZIELLA	DUTADO	PANGANIBAN		RAZIELLA PANGANIBAN	Male	2010-04-21	\N		\N		Child		3867	\N
4240	YSABELLA	DUTADO	PANGANIBAN		YSABELLA PANGANIBAN	Male	2019-06-26	\N		\N		Child		3867	\N
4241	MICHAEL	ANDER	MARASIGAN		MICHAEL MARASIGAN	Male	0001-01-01	\N		\N		Husband		3868	\N
4242	ROLANDO	BERSAMIN	SAYSON		ROLANDO SAYSON	Male	0001-01-01	\N		\N		Father		3868	\N
4243	MAGDALENA	ARCEGA	CALINGASAN		MAGDALENA CALINGASAN	Male	0001-01-01	\N		\N		Mother		3868	\N
4244	ROBERTO	DE CASTRO	DRIZ		ROBERTO DRIZ	Male	0001-01-01	\N		\N		Husband		3864	\N
4245	KYESK CARL ANGELO	SEGUNIAL	DRIZ		KYESK CARL ANGELO DRIZ	Male	2002-01-03	\N		\N		Child		3864	\N
4246	KYRO JOSEPH	SEGUNIAL	DRIZ		KYRO JOSEPH DRIZ	Male	2007-05-01	\N		\N		Child		3864	\N
4247	RODEL	ESCAREZ	PANGANIBAN		RODEL PANGANIBAN	Male	0001-01-01	\N		\N		Father		3869	\N
4248	HEIDE	ESCAREZ	CASCALLA		HEIDE CASCALLA	Female	0001-01-01	\N		\N		Mother		3869	\N
4254	NESTOR	GARBIN	RAYOS		NESTOR RAYOS	Male	0001-01-01	\N		\N		Father		3862	\N
4255	DELIA	EBORA	RAYOS		DELIA RAYOS	Male	0001-01-01	\N		\N		Mother		3862	\N
4249	JAYCEE	DOMIGO	MATIRA		JAYCEE MATIRA	Male	0001-01-01	\N		\N		Husband		3870	\N
4250	LAMBERTO	MAGTIBAY	BRIONES		LAMBERTO BRIONES	Male	0001-01-01	\N		\N		Father		3870	\N
4251	LOLITA	PEREZ	DELICA		LOLITA DELICA	Male	0001-01-01	\N		\N		Mother		3870	\N
4252	PRINCE YUAN	B	MATIRA		PRINCE YUAN MATIRA	Male	2013-07-01	\N		\N		Child		3870	\N
4253	PRINCESS YSABELLE	B	MATIRA		PRINCESS YSABELLE MATIRA	Male	2014-12-29	\N		\N		Child		3870	\N
4256	JUSITA	CASTRO	DE CASTRO		JUSITA DE CASTRO	Female	0001-01-01	\N		\N		Mother		3871	\N
4257	JUSITA	CASTRO	DE CASTRO		JUSITA DE CASTRO	Female	0001-01-01	\N		\N		Mother		3871	\N
4258	LEONARDO	DELA ROCA	SORIANO		LEONARDO SORIANO	Male	0001-01-01	\N		\N		Father		3863	\N
4259	MACARIA	BAJA	SORIANO		MACARIA SORIANO	Female	0001-01-01	\N		\N		Mother		3863	\N
4260	DOMINGO	ALMAREZ	EBORA		DOMINGO EBORA	Male	0001-01-01	\N		\N		Father		3865	\N
4261	ESTER	CALALUAN	EBORA		ESTER EBORA	Male	0001-01-01	\N		\N		Mother		3865	\N
4262	DIOVANNI	EJES	AGUDA		DIOVANNI AGUDA	Male	0001-01-01	\N		\N		Father		3872	\N
4263	GREGORIA	HERNANDEZ	ACLAN		GREGORIA ACLAN	Female	0001-01-01	\N		\N		Mother		3872	\N
4264	JACINTO	CLEOFE	MARASIGAN		JACINTO MARASIGAN	Male	0001-01-01	\N		\N		Husband		3873	\N
4265	EDUARDO	DIO	BEDONIA		EDUARDO BEDONIA	Male	0001-01-01	\N		\N		Father		3873	\N
4266	LUISA	ABEL	GONZALES		LUISA GONZALES	Male	0001-01-01	\N		\N		Mother		3873	\N
4267	JAC GABRIEL	B	MARASIGAN		JAC GABRIEL MARASIGAN	Male	1999-02-18	\N		\N		Child		3873	\N
4268	JAC DANIEL	B	MARASIGAN		JAC DANIEL MARASIGAN	Male	2003-02-17	\N		\N		Child		3873	\N
4269	PERFETO	ALEA	ABDON		PERFETO ABDON	Male	0001-01-01	\N		\N		Father		3874	\N
4270	LILIA	MAGSINO	CALATON		LILIA CALATON	Female	0001-01-01	\N		\N		Mother		3874	\N
4271	PRINCESS NICOLE	REPIA	DABALOS		PRINCESS NICOLE DABALOS	Male	2008-08-30	\N		\N		Child		3875	\N
4272	MEAGAN ANICA	REPIA	DABALOS		MEAGAN ANICA DABALOS	Male	2013-11-24	\N		\N		Child		3875	\N
4273	JEFFERSON	PASTOFIDE	DABALOS		JEFFERSON DABALOS	Male	0001-01-01	\N		\N		Husband		3875	\N
4278	POLICARPIO	VELASQUEZ	MARASIGAN		POLICARPIO MARASIGAN	Male	0001-01-01	\N		\N		Father		3877	\N
4279	ALICIA	MARASIGAN	BALAHIBO		ALICIA BALAHIBO	Male	0001-01-01	\N		\N		Mother		3877	\N
4274	AVELINO	ATIENZA	MEDINA		AVELINO MEDINA	Male	0001-01-01	\N	FARMER	\N		Husband	Married	3876	\N
4275	JOSE	CATAGUE	PICCIO		JOSE PICCIO	Male	0001-01-01	\N		\N		Father		3876	\N
4276	MAGDALEA	MUNGCAL	FRESNILLO		MAGDALEA FRESNILLO	Female	0001-01-01	\N		\N		Mother		3876	\N
4277	JOHN FELIX	PICCIO	MEDINA		JOHN FELIX MEDINA	Male	2013-05-08	\N		\N		Child		3876	\N
4280	EDRIELLE DENISE	PAGCALIWAGAN	BALITA		EDRIELLE DENISE BALITA	Male	2014-10-14	\N		\N		Child		3878	\N
4281	DIANDRA KYLIE	PAGCALIWAGAN	BALITA		DIANDRA KYLIE BALITA	Male	2020-10-13	\N		\N		Child		3878	\N
4282	DARWIN	CASA	BALITA		DARWIN BALITA	Male	0001-01-01	\N	SCAFOLDER	\N		Husband	Married	3878	\N
4283	RONEL	AZUCENA	SILANG		RONEL SILANG	Male	0001-01-01	\N		\N		Husband	Married	3881	\N
4284	MIGUEL		GUTIERREZ		MIGUEL GUTIERREZ	Male	0001-01-01	\N		\N		Father		3881	\N
4285	BEBIANA		RAMOS		BEBIANA RAMOS	Female	0001-01-01	\N		\N		Mother		3881	\N
4286	JOHN ROVIC	GUTIERREZ	SILANG		JOHN ROVIC SILANG	Male	2001-11-02	\N		\N		Child		3881	\N
4287	KENNETH	GUTIERREZ	SILANG		KENNETH SILANG	Male	2007-12-20	\N		\N		Child		3881	\N
4288	NEL AUSTIN	GUTIERREZ	SILANG		NEL AUSTIN SILANG	Male	2021-01-06	\N		\N		Child		3881	\N
4289	BONG	DE CASTRO	INTAC		BONG INTAC	Male	0001-01-01	\N		\N		Husband		3882	\N
4290	JAELLA BRIANNA	D	INTAC		JAELLA BRIANNA INTAC	Male	2013-07-12	\N		\N		Child		3882	\N
4291	CENON	LANDICHO	DAGLI		CENON DAGLI	Male	0001-01-01	\N		\N		Father		3882	\N
4293	ZENDRA FAITH	APARRI	PAGCALIWAGAN		ZENDRA FAITH PAGCALIWAGAN	Male	2021-08-10	\N		\N		Child		3879	\N
4294	SANDRO	AMPARO	PAGCALIWAGAN		SANDRO PAGCALIWAGAN	Male	0001-01-01	\N		\N		Husband	Married	3879	\N
4292	PAULINA	GAYATAO	CUETO		PAULINA CUETO	Male	0001-01-01	\N		\N		Mother		3882	\N
4295	JERALD	CANTOS	MACARAIG		JERALD MACARAIG	Male	0001-01-01	\N		\N		Husband		3883	\N
4296	JERAN ADEN	E	MACARAIG		JERAN ADEN MACARAIG	Male	2003-03-07	\N		\N		Child		3883	\N
4297	SOTERO	PANALIGAN	EVANGELIO		SOTERO EVANGELIO	Male	0001-01-01	\N		\N		Father		3883	\N
4298	SIMONA	ALO	ASI		SIMONA ASI	Male	0001-01-01	\N		\N		Mother		3883	\N
4328	ERICKA MELDANE	MEDINA	FABILA		ERICKA MELDANE FABILA	Female	2001-04-05	\N		\N		Child		3916	\N
4329	FELIMON	ROXAS	MEDINA		FELIMON MEDINA	Male	0001-01-01	\N		\N		Father		3916	\N
4330	RIC EMMANUEL	ENRIQUEZ	FABILA		RIC EMMANUEL FABILA	Male	0001-01-01	\N	BOATMAN	\N		Husband	Married	3916	\N
4331	PRIMA	MACARAIG	LOPEZ		PRIMA LOPEZ	Female	0001-01-01	\N		\N		Mother		3916	\N
4332	ERICKA MELDANE	MEDINA	FABILA		ERICKA MELDANE FABILA	Female	2001-04-05	\N		\N		Child		3916	\N
4333	GILBERT	GARCIA	GARCIA		GILBERT GARCIA	Male	0001-01-01	\N		\N		Husband		3917	\N
4334	DEXTER YOSEF	C	GARCIA		DEXTER YOSEF GARCIA	Male	2005-05-09	\N		\N		Child		3917	\N
4335	TEODORICO	CATRAL	CATRAL		TEODORICO CATRAL	Male	0001-01-01	\N		\N		Father		3917	\N
4336	NORBERTA	DUNO	DE VILLA		NORBERTA DE VILLA	Male	0001-01-01	\N		\N		Mother		3917	\N
4337	DIOSDADO	OLIT	ANDAL		DIOSDADO ANDAL	Male	0001-01-01	\N		\N		Father		3918	\N
4338	GLORIA	GAREJO	RAYOS		GLORIA RAYOS	Female	0001-01-01	\N		\N		Mother		3918	\N
4339	PRECIOSA	GUTIERREZ	EBORA		PRECIOSA EBORA	Female	0001-01-01	\N	TEACHER	\N	0437022094	Wife	Married	3919	\N
4340	MARCELINO	GARCIA	MEDINA		MARCELINO MEDINA	Male	0001-01-01	\N		\N		Father		3919	\N
4341	TRINIDAD	ANONUEVO	AMUL		TRINIDAD AMUL	Female	0001-01-01	\N		\N		Mother		3919	\N
4342	DOROTHY BEATRICE	E.	MEDINA		DOROTHY BEATRICE MEDINA	Female	2005-05-18	\N		\N		Child		3919	\N
4343	EDWARD THEODORE	E.	MEDINA		EDWARD THEODORE MEDINA	Male	2007-04-23	\N		\N		Child		3919	\N
4344	JOSE	RAMIREZ	GERONIMO		JOSE GERONIMO	Male	0001-01-01	\N		\N		Husband		3920	\N
4345	LUISITO	DE CASTRO	GONZALES		LUISITO GONZALES	Male	0001-01-01	\N		\N		Father		3920	\N
4346	CARMEN	GONZALES	PALTADO		CARMEN PALTADO	Male	0001-01-01	\N		\N		Mother		3920	\N
4347	JUN	CUETO	PURIO		JUN PURIO	Male	0001-01-01	\N	FARMER	\N		Husband	Married	3921	\N
4348	ALBERTO	DELGADO	CALAHATI		ALBERTO CALAHATI	Male	0001-01-01	\N		\N		Father		3921	\N
4349	JULITA	CUETO	ADALIN		JULITA ADALIN	Female	0001-01-01	\N		\N		Mother		3921	\N
4350	JOHN JERALD	C.	PURIO		JOHN JERALD PURIO	Male	1998-05-11	\N		\N		Child		3921	\N
4351	JAMES RAE	C.	PURIO		JAMES RAE PURIO	Male	2000-07-19	\N		\N		Child		3921	\N
4352	JUDITH JANE	C.	PURIO		JUDITH JANE PURIO	Female	2003-02-04	\N		\N		Child		3921	\N
4353	JOMAR	OTAYDE	LAUDE		JOMAR LAUDE	Male	0001-01-01	\N		\N		Husband	Married	3922	\N
4354	RAMON	DE CASTRO	AMUL		RAMON AMUL	Male	0001-01-01	\N		\N		Father		3922	\N
4355	MIGUELA	AMUL	CUETO		MIGUELA CUETO	Female	0001-01-01	\N		\N		Mother		3922	\N
4356	JIAN MOREH	A.	LAUDE		JIAN MOREH LAUDE	Male	2010-08-01	\N		\N		Child		3922	\N
4357	JEWEL MIZRAH	A.	LAUDE		JEWEL MIZRAH LAUDE	Female	2013-06-23	\N		\N		Child		3922	\N
4358	KEYVIN	EBORA	CALALUAN		KEYVIN CALALUAN	Male	0001-01-01	\N	VENDOR	\N		Husband	Married	3923	\N
4359	NOEL	RAYOS	DELGADO		NOEL DELGADO	Male	0001-01-01	\N		\N		Father		3923	\N
4360	VILMA	RAYOS	EBORA		VILMA EBORA	Female	0001-01-01	\N		\N		Mother		3923	\N
4361	JON SKYLER	D.	CALALUAN		JON SKYLER CALALUAN	Male	2018-02-06	\N		\N		Child		3923	\N
4362	EDSEL ALLEN	MAPILI	ESCAREZ		EDSEL ALLEN ESCAREZ	Male	1998-03-07	\N		\N		Child		3880	\N
4363	SAMUEL	MAPILI	ESCAREZ		SAMUEL ESCAREZ	Male	1999-07-14	\N		\N		Child		3880	\N
4364	ERUEL ANDREY	MAPILI	ESCAREZ		ERUEL ANDREY ESCAREZ	Male	2002-08-24	\N		\N		Child		3880	\N
4365	SAM BOY	MAPILI	ESCAREZ		SAM BOY ESCAREZ	Male	2006-12-31	\N		\N		Child		3880	\N
4366	ALDRIN	RUSTIA	ESCAREZ		ALDRIN ESCAREZ	Male	0001-01-01	\N	ADMINISTRATIVE AIDE	\N		Husband	Married	3880	\N
4367	RODERICK	GUTIERREZ	LUCES		RODERICK LUCES	Male	0001-01-01	\N	BARANGAY COUNCILOR	\N	9071420054	Husband	Married	3924	\N
4368	JUANITO	JIONSON	TAMARES		JUANITO TAMARES	Male	0001-01-01	\N		\N		Father		3924	\N
4369	MERLY	GONZALES	MACALALAD		MERLY MACALALAD	Female	0001-01-01	\N		\N		Mother		3924	\N
4370	JEANNE ERICHA	T.	LUCES		JEANNE ERICHA LUCES	Female	1997-12-11	\N		\N		Child		3924	\N
4371	SHANNA JANE	T.	LUCES		SHANNA JANE LUCES	Female	2003-08-11	\N		\N		Child		3924	\N
4372	ALJO	GABIA	BAJA		ALJO BAJA	Male	2001-10-19	\N		\N		Child		3925	\N
4373	ALREI	GABIA	BAJA		ALREI BAJA	Male	2002-09-16	\N		\N		Child		3925	\N
4374	ALFRED	GABIA	BAJA		ALFRED BAJA	Male	2004-12-06	\N		\N		Child		3925	\N
4375	JOHN CYRILE	DE CASTRO	ANONUEVO		JOHN CYRILE ANONUEVO	Male	2009-08-08	\N		\N		Child		3960	\N
4376	KENNETH	DE CASTRO	ANONUEVO		KENNETH ANONUEVO	Male	2011-02-16	\N		\N		Child		3960	\N
4377	FRANCISCA	DE CASTRO	ANONUEVO		FRANCISCA ANONUEVO	Female	0001-01-01	\N	TEACHER	\N	09162622738	Wife	Married	3960	\N
4378	FERNAN	MENDOZA	PAGKALIWAGAN		FERNAN PAGKALIWAGAN	Male	0001-01-01	\N		\N		Father		3961	\N
4379	LEYNIE	RAYOS	CALALUAN		LEYNIE CALALUAN	Female	0001-01-01	\N		\N		Mother		3961	\N
4380	NORBELITO	EUSEBIO	MACATANGAY		NORBELITO MACATANGAY	Male	0001-01-01	\N		\N		Father		3958	\N
4381	ERNALIE	EBORA	MACATANGAY		ERNALIE MACATANGAY	Male	0001-01-01	\N		\N		Mother		3958	\N
4382	JAMIE ELIANA	EDUBA	CUETO		JAMIE ELIANA CUETO	Male	2011-02-04	\N		\N		Child		3959	\N
4383	EFRENIO	CUSI	CUETO		EFRENIO CUETO	Male	0001-01-01	\N	FARMER	\N	09481123955	Husband	Married	3959	\N
4385	DOMINADOR	DELA ROCA	PATULAY		DOMINADOR PATULAY	Male	0001-01-01	\N		\N		Father		3962	\N
4384	MARGARITO	CALALUAN	ANONUEVO		MARGARITO ANONUEVO	Male	0001-01-01	\N	FISHERNAME	\N	09627104187	Husband	Married	3962	\N
4386	PATROCINIA	CARIG	HONRALES		PATROCINIA HONRALES	Female	0001-01-01	\N		\N		Mother		3962	\N
4387	APRIL MARGARETE	P.	ANONUEVO		APRIL MARGARETE ANONUEVO	Female	1999-04-03	\N		\N		Child		3962	\N
4388	PAMELA MAE	P.	ANONUEVO		PAMELA MAE ANONUEVO	Female	2005-04-27	\N		\N		Child		3962	\N
4389	VINCENT ADRIELLE	BUENVIAJE	ALEA		VINCENT ADRIELLE ALEA	Male	1998-12-20	\N		\N		Child		3963	\N
4390	ALLEN JOSHUA	BUENVIAJE	ALEA		ALLEN JOSHUA ALEA	Male	2002-01-04	\N		\N		Child		3963	\N
4391	ROGELIO	CENA	ALEA		ROGELIO ALEA	Male	0001-01-01	\N		\N	09951718194	Husband	Married	3963	\N
4392	AVELINO	CUETO	BAJA		AVELINO BAJA	Male	0001-01-01	\N		\N		Father		3967	\N
4393	CLARITA	AMUL	MEDINA		CLARITA MEDINA	Female	0001-01-01	\N		\N		Mother		3967	\N
\.


--
-- TOC entry 4583 (class 0 OID 0)
-- Dependencies: 251
-- Name: EmployeeRelatives_EmployeeRelativeId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"EmployeeRelatives_EmployeeRelativeId_seq"', 4393, true);


--
-- TOC entry 3874 (class 0 OID 16784)
-- Dependencies: 252
-- Data for Name: EmployeeSchedules; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "EmployeeSchedules" ("EmployeeScheduleId", "EmployeeId", "StartDate", "StartTime", "EndDate", "EndTime", "IsOtDay") FROM stdin;
\.


--
-- TOC entry 4584 (class 0 OID 0)
-- Dependencies: 253
-- Name: EmployeeSchedules_EmployeeScheduleId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"EmployeeSchedules_EmployeeScheduleId_seq"', 1043994, true);


--
-- TOC entry 3876 (class 0 OID 16792)
-- Dependencies: 254
-- Data for Name: EmployeeTrainings; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "EmployeeTrainings" ("EmployeeTrainingId", "BasicInformationId", "TrainingId", "Hours", "NatureOfParticipation", "TrainingPerformanceRate", "Status", "FromDate", "ToDate", "SponsoringAgency") FROM stdin;
7523	3608	15044	8.00	TECHNICAL	0		2023-11-22	2023-11-22	DEPARTMENT OF EDUCATION BATANGAS CITY
7524	3608	15045	24.00	TECHNICAL	0		2023-09-11	2023-09-13	DEPARTMENT OF EDUCATION BATANGAS CITY
7525	3608	15046	24.00	TECHNICAL	0		2023-05-15	2023-05-17	DEPARTMENT OF EDUCATION BATANGAS CITY
7526	3608	15047	8.00	TECHNICAL	0		2023-03-30	2023-03-30	DEPARTMENT OF EDUCATION BATANGAS CITY
7527	3608	15048	8.00	TECHNICAL	0		2023-01-17	2023-01-17	DEPARTMENT OF EDUCATION BATANGAS CITY
7528	3608	15049	32.00	TECHNICAL	0		2022-07-05	2022-07-08	DEPARTMENT OF EDUCATION- REGION IVA CALABARZON
7529	3608	15050	8.00	TECHNICAL	0		2022-06-30	2022-06-30	DEPARTMENT OF EDUCATION BATANGAS CITY
7530	3608	15051	32.00	TECHNICAL	0		2022-06-06	2022-06-08	DEPARTMENT OF EDUCATION REGION IV A CALABARZON
7531	3608	15049	40.00	TECHNICAL	0		2022-01-10	2022-01-14	DEPARTMENT OF EDUCATION REGION IVA CALABARZON
7532	3608	15053	40.00	TECHNICAL	0		2021-11-15	2021-11-19	DEPARTMENT OF EDUCATION REGION IVA CALABARZON
7533	3608	15054	24.00	TECHNICAL	0		2021-08-17	2021-08-19	DEPARTMENT OF EDUCATION BATANGAS CITY
7534	3608	15055	40.00	TECHNICAL	0		2021-07-12	2021-07-16	DEPARTMENT OF EDUCATION REGION IVA CALABARZON
7535	3608	15056	24.00	TECHNICAL	0		2020-09-03	2020-09-05	PICPA SOUTHERN TAGALOG REGION
7536	3608	15057	24.00	TECHNICAL	0		2020-07-13	2020-07-15	DEPARTMENT OF EDUCATION BATANGAS CITY
7537	3608	15058	40.00	TECHNICAL	0		2020-01-20	2020-01-24	DEPARTMENT OF EDUCATIONREGION IVA CALABARZON
7538	3608	15060	16.00	TECHNICAL	0		2019-12-12	2019-12-13	DEPARTMENT OF EDUCATION BATANGAS CITY
7539	3608	15061	16.00	TECHNICAL	0		2019-08-29	2019-08-30	DEPARTMENT OF EDUCATION REGION IVA CALABARZON
7540	3608	15062	16.00	TECHNICAL	0		2019-07-30	2019-07-31	DEPARTMENT OF EDUCATION BATANGAS CITY
7541	3608	15063	32.00	TECHNICAL	0		2019-07-09	2019-07-12	DEPARTMENT OF EDUCATION REGION IVA CALABARZON
7542	3608	15064	16.00	TECHNICAL	0		2019-05-23	2019-05-24	JDBC OCCUPATIONAL HEALTH, SAFETY AND ENVIRONMENT CONSULTANCY
7543	3607	15044	8.00	QUALITY	0		2023-11-22	2023-11-22	DEPARTMENT OF EDUCATION BATANGAS CITY
7544	3607	15045	24.00	TECHNICAL	0		2023-09-11	2023-09-13	DEPARTMENT OF EDUCATION BATANGAS CITY
7545	3607	15065	3.00	QUALITY	0		2023-02-13	2023-02-13	BATANGAS STATE UNIVERSITY- ALANGILAN, HUMAN RESOURCE MANAGAEMENT OFFICE
7546	3607	15066	3.00	QUALITY	0		2022-12-12	2022-12-12	BATANGAS STATE UNIVERSITY, ENVIRONMENTAL MANAGEMENT UNIT
7547	3607	15067	3.00	QUALITY	0		2022-10-27	2022-10-27	BATANGAS STATE UNIVERSITY 
7548	3607	15068	4.00	SKILLS	0		2022-01-10	2022-01-10	GOLDEN GATE COLLEGES- GRADUATE SCHOOL
7549	3607	15069	3.00	QUALITY	0		2022-09-20	2022-09-20	BATANGAS STATE UNIVERSITY, ENVIRONMENTAL MANAGEMENT UNIT
7550	3607	15070	8.00	SKILLS	0		2022-06-17	2022-06-17	BATANGAS STATE UNIVERSITY 
7551	3607	15071	3.00	TECHNICAL	0		2021-11-11	2021-11-11	BATANGAS STATE UNIVERSITY, LIBRARY SERVICES ALANGILAN
7552	3607	15072	3.00	TECHNICAL	0		2021-10-17	2021-10-17	INNOVATION PHILIPPINES TRAINING CONSULTANCY SERVICES
7553	3607	15073	3.00	TECHNICAL	0		2023-10-10	2023-10-10	INNOVATION PHILIPPINES TRAINING CONSULTANCY SERVICES
7554	3607	15074	3.00	TECHNICAL	0		2021-02-10	2021-02-10	INNOVATION PHILIPPINES TRAINING CONSULTANCY SERVICES 
7555	3607	15075	4.00	TECHNICAL	0		2021-09-23	2021-09-23	DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY- LUZON CLUSTER 3
7556	3607	15075	4.00	TECHNICAL	0		2021-09-24	2021-09-24	DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY- LUZON CLUSTER 3
7557	3607	15076	6.00	QUALITY	0		2021-07-16	2021-07-16	BATANGAS STATE UNIVERSITY 
7558	3607	15077	8.00	SKILLS	0		2021-06-23	2021-06-23	BATANGAS STATE UNIVERSITY 
7559	3607	15077	8.00	SKILLS	0		2021-06-25	2021-06-25	BATANGAS STATE UNIVERSITY 
7560	3604	15078	16.00	TECHNICAL	0		2023-09-19	2023-09-20	DEPARTMENT OF EDUCATION- REGIONAL OFFICE
7561	3604	15079	16.00	TECHNICAL	0		2023-09-11	2023-09-13	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY
7562	3604	15080	24.00	TECHNICAL	0		2023-05-23	2023-05-25	DEPARTMENT OF EDUCATION- CENTRAL OFFICE
7563	3604	15046	24.00	TECHNICAL	0		2023-05-15	2023-05-17	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY
7564	3604	15082	24.00	TECHNICAL	0		2022-11-09	2022-11-11	DEPARTMENT OF EDUCATION- REGIONAL OFFICE
7565	3604	15083	8.00	TECHNICAL	0		2023-06-30	2023-06-30	DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY
7566	3604	15084	4.00	TECHNICAL	0		2022-03-03	2022-03-03	PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS- SOUTHERN TAGALOG 
7567	3604	15085	24.00	TECHNICAL	0		2022-01-12	2022-01-14	DEPARTMENT OF EDUCATION- REGIONAL & CENTRAL OFFICE
7568	3604	15086	3.00	TECHNICAL	0		2021-05-29	2021-05-29	BATANGAS STATE UNIVERSITY
7569	3604	15087	3.00	TECHNICAL	0		2021-05-15	2021-05-15	BATANGAS STATE UNIVERSITY
7570	3604	15088	3.00	TECHNICAL	0		2021-04-24	2021-04-24	BATANGAS STATE UNIVERSITY
7571	3604	15089	16.00	TECHNICAL	0		2021-03-24	2021-03-25	PHILIPPINE INSTITUTE ON CERTIFIED PUBLIC ACCOUNTANTS- SOUTHERN TAGALOG
7572	3604	15054	21.00	TECHNICAL	0		2021-08-17	2021-08-19	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY
7573	3604	15090	24.00	TECHNICAL	0		2021-03-19	2021-03-21	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY
7574	3604	15091	8.00	TECHNICAL	0		2020-10-16	2020-10-16	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY
7575	3604	15092	24.00	TECHNICAL	0		2020-09-03	2020-09-05	PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS- SOUTHERN TAGALOG
7576	3604	15093	16.00	TECHNICAL	0		2020-07-13	2020-07-15	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY
7577	3604	15094	16.00	TECHNICAL	0		2020-02-13	2020-02-14	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY
7578	3604	15059	16.00	TECHNICAL	0		2019-12-12	2019-12-13	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY
7579	3604	15062	16.00	TECHNICAL	0		2019-07-30	2019-07-31	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY
7580	3602	15044	8.00	TECHNICAL	0		2023-11-22	2023-11-22	SCHOOLS DIVISION OF BATANGAS CITY
7581	3602	15079	24.00	TECHNICAL	0		2023-09-11	2023-09-13	SCHOOLS DIVISION OF BATANGAS CITY
7582	3602	15047	8.00	TECHNICAL	0		2023-03-30	2023-03-30	SCHOOLS DIVISION OF BATANGAS CITY
7583	3602	15097	162.00	TECHNICAL	0		2013-08-05	2013-08-30	TECHNICAL EDUCATION AND SKILLS DEVELOPMENT AUTHORITY 
7584	3602	15098	402.00	TECHNICAL	0		2014-09-17	2014-10-15	TECHNICAL EDUCATION AND SKILLS DEVELOPMENT AUTHORITY 
7585	3602	15100	160.00	TECHNICAL	0		2017-09-08	2017-10-10	TECHNICAL EDUCATION AND SKILLS DEVELOPMENT AUTHORITY/ MALAMPAYA FOUNDATION 
7586	3603	15096	8.00	TECHNICAL 	0		2023-01-11	2023-01-11	AIM HIGH FIRING RANGE & GUN CLUB INC
7587	3603	15045	24.00	TECHNICAL 	0		2023-09-11	2023-09-13	DEPED - DIVISION OF BATANGAS CITY 
7588	3603	15101	8.00	TECHNICAL 	0		2023-03-30	2023-03-30	DEPED - DIVISION OF BATANGAS CITY 
7589	3603	15102	56.00	TECHNICAL 	0		2023-01-04	2023-01-11	KADRE  SECURITY TRAINING INSTITUTE INC
7590	3603	15103	56.00	TECHNICAL 	0		2023-01-04	2023-01-06	KADRE SECURITY TRAINING INSTITUTE INC
7591	3603	15104	56.00	TECHNICAL 	0		2020-03-04	2020-03-11	B.L.C SECURITY TRAINING INCORPORATED
7592	3603	15105	24.00	TECHNICAL 	0		2020-03-02	2020-03-04	B.L.C SECURITY TRAINING INCORPORATED
7593	3603	14972	8.00	TECHNICAL 	0		2020-03-04	2020-03-04	COMMANDER SHOOTING RANGE AND  SPORT CLUB, INC
7594	3605	15107	8.00	TECHNICAL	0		2023-11-23	2023-11-23	DEPED SDO BATANGAS CITY 
7595	3605	15108	16.00	TECHNICAL	0		2023-11-12	2023-12-12	DEPED SDO BATANGAGS CITY
7596	3605	15109	8.00	SUPERVISORY	0		2023-07-12	2023-07-12	DEPED SDO BATANGAS CITY
7597	3605	15110	16.00	SUPERVISORY	0		2023-04-12	2025-05-12	DEPED SDO BATANGAS CITY
7598	3605	15111	8.00	SUPERVISORY	0		2023-01-12	2023-01-12	DEPED SDO BATANGAS CITY 
7600	3609	15045	24.00	TECHNICAL 	0		2023-09-11	2023-09-13	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY 
7601	3609	15114	4.00	TECHNICAL 	0		2023-02-20	2023-02-20	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY 
7602	3609	15048	8.00	TECHNICAL 	0		2023-01-17	2023-01-17	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY
7603	3609	15116	24.00	TECHNICAL 	0		2022-11-16	2022-11-18	DEPARTMENT OF EDUCATION - REGIONAL OFFICE
7604	3609	15117	4.00	TECHNICAL 	0		2020-05-18	2004-08-18	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY
7605	3609	15119	8.00	TECHNICAL 	0		2020-09-17	2020-09-17	DEVELOPMENT ACADEMY OF THE PHILIPPINES 
7606	3609	15120	24.00	TECHNICAL 	0		2020-09-03	2020-09-05	PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS, INC
7607	3610	15118	24.00	TECHNICAL 	0		2024-01-16	2024-01-18	DEPARTMENT OF EDUCATION REGION IV-A CALABARZON
7608	3610	15113	24.00	TECHNICAL	0		2023-09-09	2023-09-13	DEPARTMENT OF EDUCATION BATANGAS CITY 
7609	3610	15046	24.00	TECHNICAL	0		2023-05-15	2023-05-17	DEPARTMENT OF EDUCATION BATANGAS CITY
7610	3610	15101	8.00	TECHNICAL	0		2023-03-30	2023-03-30	DEPARTMENT OF EDUCATION BATANGAS CITY
7611	3610	15122	8.00	TECHNICAL	0		2023-01-17	2023-01-17	DEPARTMENT OF EDUCATION BATANGAS CITY
7612	3610	15124	24.00	TECHNICAL	0		2022-11-16	2022-11-18	DEPARTMENT OF EDUCATION REGION IV-A CALABARZON
7613	3610	15085	24.00	TECHNICAL	0		2022-01-12	2022-01-14	DEPARTMENT OF EDUCATION BATANGAS CITY
7614	3610	15126	24.00	TECHNICAL	0		2020-09-03	2020-09-05	PICPA
7615	3610	15127	8.00	TECHNICAL	0		2020-07-17	2020-07-18	TRENDSTATIC
7616	3610	15059	16.00	TECHNICAL	0		2019-12-12	2019-12-13	DEPARTMENT OF EDUCATION BATANGAS CITY
7617	3610	15062	16.00	TECHNICAL	0		2019-07-30	2019-07-31	DEPARTMENT OF EDUCATION BATANGAS CITY
7618	3610	15130	8.00	TECHNICAL	0		2017-12-09	2017-12-09	CRISTO REY INSTITUTE FOR CAREER DEVELOPMENT
7619	3609	15121	16.00	TECHNICAL 	0		2020-02-13	2020-02-14	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY 
7620	3609	15123	40.00	TECHNICAL 	0		2020-01-20	2020-01-24	DEPARTMENT OF EDUCATION - REGIONAL OFFICE 
7621	3609	15095	16.00	TECHNICAL 	0		2019-12-12	2019-12-13	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY 
7622	3609	15061	16.00	TECHNICAL 	0		2019-09-03	2019-09-04	DEPARTMENT OF EDUCATION - REGIONAL OFFICE 
7623	3609	15129	16.00	TECHNICAL 	0		2019-07-30	2019-07-31	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY 
7624	3609	15063	32.00	TECHNICAL 	0		2019-07-09	2019-07-12	DEPARTMENT OF EDUCATION - REGIONAL OFFICE 
7625	3609	15132	16.00	TECHNICAL 	0		2019-05-23	2019-05-24	JBDC OCCUPATIONAL HEALTH, SAFETY AND ENVIRONMENT CONSULTANCY 
7626	3609	15133	32.00	TECHNICAL 	0		2018-12-27	2019-02-12	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY 
7627	3609	15134	32.00	TECHNICAL 	0		2019-01-15	2019-01-18	DEPARTMENT OF EDUCATION - REGIONAL OFFICE 
7628	3609	15135	24.00	TECHNICAL 	0		2018-11-20	2018-11-22	DEPARTMENT OF EDUCATION - CENTRAL OFFICE 
7629	3609	15136	24.00	TECHNICAL 	0		2018-11-11	2018-11-13	DEPARTMENT OF EDUCATION - CENTRAL OFFICE
7630	3609	15137	16.00	TECHNICAL 	0		2018-04-18	2018-04-19	JCDC OCCUPATIONAL HEALTH, SAFETY AND ENVIRONMENT CONSULTANCY 
7631	3609	15138	16.00	TECHNICAL 	0		2018-03-22	2018-03-22	JCDC OCCUPATIONAL HEALTH, SAFETY AND ENVIRONMENT CONSULTANCY
7632	3609	15139	32.00	TECHNICAL 	0		2018-01-16	2018-01-19	DEPARTMENT OF EDUCATION - REGIONAL OFFICE 
7633	3611	15046	24.00	TECHNICAL	0		2023-05-15	2023-03-17	DIVISION OFFICE
7634	3611	15048	8.00	TECHNICAL	0		2023-01-17	2023-01-17	DIVISION OFFICE
7635	3611	15144	8.00	TECHNICAL	0		2022-04-18	2022-04-18	DIVISION OFFICE
7636	3611	15090	24.00	TECHNICAL	0		2021-03-19	2021-03-21	DIVISION OFFICE
7637	3611	15054	24.00	TECHNICAL	0		2021-08-17	2022-08-19	DIVISION OFFICE
7638	3611	15092	24.00	TECHNICAL	0		2023-09-03	2023-09-05	NATIONAL
7639	3611	15147	8.00	TECHNICAL	0		2020-03-06	2020-03-06	DIVISION OFFICE
7599	3605	15112	8.00	SUPERVISORY	0		2023-11-21	2023-11-24	DEPED CENTRAL OFFICE
7640	3605	15140	16.00	TECHNICAL	0		2023-09-25	2023-09-06	DEPED SDO BATANGAS CITY
7641	3605	15045	8.00	TECNICAL	0		2023-09-13	2023-09-13	DEPED SDO BATANGAS CITY
7642	3605	15142	8.00	SUPERVISORY	0		2023-08-23	2023-08-23	DEPED SDO BATANGAS CITY
7643	3605	15143	8.00	SUPERVISORY	0		2023-02-08	2023-02-08	DEPED SDO BATANGAS CITY
7644	3605	15145	8.00	TECHNICAL	0		2023-05-17	2023-05-17	DEPED SDO BATANGAS CITY
7645	3605	15146	16.00	SUPERVISORY	0		2023-04-27	2023-04-28	DEPED SDO BATANGAS CITY
7646	3605	15101	8.00	TECHNICAL	0		2023-03-20	2023-03-20	DEPED SDO BATANGAS CITY
7647	3605	15149	8.00	TECHNICAL	0		2023-03-29	2023-03-29	DEPED SDO BATANGAS CITY
7648	3605	15150	24.00	TECHNICAL	0		2023-03-21	2023-03-23	DEPED SDO BATANGAS CITY
7649	3605	15152	24.00	TECHNICAL	0		2023-03-17	2023-03-17	DEPED SDO BATANGAS CITY
7650	3605	15153	24.00	TECHNICAL	0		2023-02-21	2023-02-23	DEPED SDO BATANGAS CITY 
7651	3605	15114	8.00	TECHNICAL	0		2023-02-20	2023-02-20	DEPED CENTRAL OFFICE
7652	3605	15154	8.00	TECHNICAL 	0		2022-07-11	2022-07-11	DEPED SDO BATANGAS CITY
7653	3612	15155	32.00	TECHNICAL	0		2024-01-16	2024-01-19	DEPARTMENT OF EDUCATION
7654	3612	15044	8.00	TECHNICAL	0		2023-11-22	2023-11-22	DEPARTMENT OF EDUCATION
7655	3612	15113	24.00	TECHNICAL	0		2023-09-11	2023-09-13	DEPARTMENT OF EDUCATION
7656	3612	15156	8.00	TECHNICAL	0		2023-08-25	2023-08-25	GOVERNMENT SERVICE INSURANCE SYSTEM
7657	3612	15145	24.00	TECHNICAL	0		2023-05-15	2023-05-17	DEPARTMENT OF EDUCATION
7658	3612	15047	8.00	TECHNICAL	0		2023-05-30	2023-05-30	DEPARTMENT OF EDUCATION
7659	3612	15048	8.00	TECHNICAL	0		2023-01-17	2023-01-17	DEPARTMENT OF EDUCATION
7660	3612	15157	8.00	TECHNICAL	0		2022-06-30	2022-06-30	DEPARTMENT OF EDUCATION
7661	3612	15158	24.00	TECHNICAL	0		2020-09-03	2020-09-05	PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS- SOUTHERN TAGALOG REGION
7662	3614	15118	24.00	TECHNICAL	0		2024-01-16	2024-01-18	DEPARTMENT OF EDUCATION REGION IV-A CALABARZON
7663	3614	15141	24.00	TECHNICAL	0		2023-09-11	2023-09-13	DEPARTMENT OF EDUCATION- SCHOOL DIVISION OF BATANGAS CITY
7664	3614	15046	24.00	TECHNICAL	0		2023-05-15	2023-05-17	DEPARTMENT OF EDUCATION- SCHOOL DIVISION OF BATANGAS CITY
7665	3614	15101	8.00	TECHNICAL	0		2023-03-30	2023-03-30	DEPARTMENT OF EDUCATION- SCHOOL DIVISION OF BATANGAS CITY
7666	3614	15122	8.00	TECHNICAL	0		2023-01-17	2023-01-17	DEPARTMENT OF EDUCATION- SCHOOL DIVISION OF BATANGAS CITY
7667	3614	15124	24.00	TECHNICAL	0		2022-11-16	2022-11-18	DEPARTMENT OF EDUCATION REGION IV-A CALABARZON
7668	3614	15126	24.00	TECHNICAL	0		2020-09-03	2020-09-05	PICPA
7669	3614	15127	8.00	TECHNICAL	0		2020-07-17	2020-07-18	TRENDSTATIC
7670	3614	15095	16.00	TECHNICAL	0		2019-12-12	2019-12-13	DEPARTMENT OF EDUCATION- SCHOOL DIVISION OF BATANGAS CITY
7671	3614	15129	16.00	TECHNICAL	0		2019-07-30	2019-07-31	DEPARTMENT OF EDUCATION- SCHOOL DIVISION OF BATANGAS CITY
7672	3614	15130	8.00	TECHNICAL	0		2017-12-09	2017-12-09	CRISTO REY INSTITUTE FOR CAREER DEVELOPMENT
7673	3614	15160	16.00	TECHNICAL	0		2018-12-27	2018-12-28	DEPARTMENT OF EDUCATION- SCHOOLS DIVISION OF BATANGAS CITY
7674	3614	15160	24.00	TECHNICAL	0		2019-02-12	2019-02-14	DEPARTMENT OF EDUCATION- SCHOOLS DIVISION OF BATANGAS CITY
7675	3615	15161	16.00	TECHNICAL	0		2023-10-26	2023-10-27	UNIVERSITA COMMERICIALE LUIGI BOCCONIVIALE BLIGNY MILAN, ITALY
7676	3615	15113	24.00	TECHNICAL	0		2023-09-11	2023-09-13	SCHOOLS DIVISION OF BATANGAS CITY
7677	3615	15162	4.00	TECHNICAL	0		2023-11-08	2023-11-08	SCHOOLS DIVISION OF BATANGAS CITY
7678	3615	15046	24.00	TECHNICAL	0		2023-05-15	2023-05-17	SCHOOLS DIVISION OF BATANGAS CITY
7679	3615	15101	8.00	TECHNICAL	0		2023-03-30	2023-03-30	SCHOOLS DIVISION OF BATANGAS CITY
7680	3615	15114	3.00	TECHNICAL	0		2023-02-20	2023-02-20	SCHOOLS DIVISION OF BATANGAS CITY
7681	3615	15054	24.00	TECHNICAL	0		2021-08-17	2021-08-19	SCHOOLS DIVISION OF BATANGAS CITY
7682	3615	15164	24.00	TECHNICAL	0		2020-11-23	2020-11-25	DEVELOPMENT ACADEMY OF THE PHILIPPINES
7683	3615	15165	24.00	TECHNICAL	0		2020-10-21	2020-10-23	SCHOOLS DIVISION OF BATANGAS CITY
7684	3615	15120	24.00	TECHNICAL	0		2020-09-03	2020-09-05	PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS INC.
7685	3615	15167	16.00	TECHNICAL	0		2020-07-18	2020-07-19	KENNESAW STATE UNIVERSITY- UNIVERSITY SYSTEM GEORGIA- GEORGIA, USA
7686	3613	15118	36.00	TECHNICAL	0		2024-01-16	2024-01-18	DEPED REGIONAL OFFICE
7687	3613	15044	4.00	TECHNICAL	0		2023-11-22	2023-11-22	SDO BATANGAS CITY
7688	3613	15045	24.00	TECHNICAL	0		2023-09-11	2023-09-13	SDO BATANGAS CITY
7689	3613	15169	4.00	TECHNICAL	0		2018-02-22	2018-02-22	BUREAU OF INTERNAL REVENUE
7690	3613	15170	6.00	TECHNICAL	0		2017-11-07	2017-11-07	BUREAU OF INTERNAL REVENEU
7691	3613	15171	8.00	TECHNICAL	0		2012-01-28	2018-01-28	ST. JAMES VOCATIONAL AND TRAINING SCHOOL 
7692	3616	15044	8.00	TECHNICAL	0		2023-11-22	2023-11-22	DEPARTMENT OF EDUCATION BATANGAS CITY
7693	3616	15113	24.00	TECHNICAL	0		2023-09-11	2023-09-13	DEPARTMENT OF EDUCATION BATANGAS CITY
7694	3616	15143	8.00	TECHNICAL	0		2023-08-02	2023-08-02	DEPARTMENT OF EDUCATION BATANGAS CITY
7695	3616	15173	16.00	TECHNICAL	0		2023-05-10	2023-05-11	DEPARTMENT OF EDUCATION BATANGAS CITY
7696	3616	15101	8.00	TECHNICAL	0		2023-03-30	2023-03-30	DEPARTMENT OF EDUCATION BATANGAS CITY
7697	3616	15114	8.00	TECHNICAL	0		2023-02-20	2023-02-20	DEPARTMENT OF EDUCATION BATANGAS CITY
7698	3616	15174	8.00	TECHNICAL	0		2022-09-07	2022-09-07	DEPARTMENT OF EDUCATION BATANGAS CITY
7699	3616	15060	16.00	TECHNICAL	0		2019-12-12	2019-12-13	DEPARTMENT OF EDUCATION BATANGAS CITY
7700	3616	15176	24.00	TECHNICAL	0		2023-09-11	2023-09-13	DEPARTMENT OF EDUCATION BATANGAS CITY
7701	3616	15177	24.00	SUPERVISORY	0		2023-07-23	2023-07-25	DEPARTMENT OF EDUCATION BATANGAS CITY
7702	3617	15044	8.00	TECHNICAL 	0		2023-11-22	2023-11-22	DEPARTMENT OF EDUCATION BATANGAS CITY 
7703	3617	15079	24.00	TECHNICAL 	0		2023-11-09	2023-09-13	DEPARTMENT OF EDUCATION BATANGAS CITY 
7704	3617	15101	8.00	TECHNICAL 	0		2023-03-30	2023-03-30	DEPARTMENT OF EDUCATION BATANGAS CITY 
7705	3617	15179	16.00	TECHNICAL 	0		2012-09-04	2012-07-04	BATANGAS CITY GIRL SCOUT COUNCIL 
7706	3618	15180	16.00	TECHNICAL	0		2023-12-11	2023-12-12	SCHOOLS DIVISION OF BATANGAS CITY
7707	3618	15044	8.00	TECHNICAL	0		2023-11-22	2023-11-22	SCHOOLS DIVISION OF BATANGAS CITY
7708	3618	15113	24.00	TECHNICAL	0		2023-09-11	2023-09-13	SCHOOLS DIVISION OF BATANGAS CITY
7709	3618	15181	8.00	TECHNICAL	0		2023-08-24	2023-08-24	BATANGAS CITY INTEGRATED HIGH SCHOOL
7710	3618	15182	4.00	TECHNICAL	0		2023-07-05	2023-07-05	SCHOOLS DIVISION OF BATANGAS CITY
7711	3619	15183	8.00	TECHNICAL 	0		2023-03-30	2023-03-30	DEPED
7712	3619	15045	20.00	TECHNICAL	0		2023-09-11	2023-09-13	DEPED
7713	3619	15184	8.00	TECHNICAL	0		2023-11-22	2023-11-22	DEPED
7714	3621	15185	4.00	TECHNICAL	0		2023-07-27	2023-07-27	BUREAU OF INTERNAL REVENUE- 058
7715	3621	15186	8.00	TECHNICAL	0		2023-03-03	2023-03-03	BUREAU OF INTERNAL REVENUE- 058
7716	3621	15187	4.00	TECHNICAL	0		2022-03-03	2022-03-03	PICPA
7717	3621	15188	4.00	TECHNICAL	0		2022-11-22	2022-11-22	BANKO SENTRAL NG PILIPINAS
7718	3621	15089	16.00	TECHNICAL	0		2021-03-24	2021-03-25	PICPA
7719	3621	15189	3.00	TECHNICAL	0		2021-04-12	2021-04-12	BUREAU OF TREASURY- LUZON CLUSTER
7720	3621	15120	24.00	TECHNICAL	0		2020-09-03	2020-09-05	PICPA- SOUTHERN TAGALOG
7721	3620	15190	8.00	TECHNICAL 	0		2023-12-07	2023-12-07	GOVERNMENT SERVICE INSURANCE SYSTEM 
7722	3620	15044	8.00	TECHNICAL	0		2023-11-22	2023-11-22	DEPARTMENT OF EDUCATION ( SCHOOLS DIVISION OF BATANGAS)
7723	3620	15141	24.00	TECHNICAL 	0		2023-09-11	2023-09-11	DEPARTMENT OF EDUCATION ( SCHOOLS DIVISION OF BATANGAS)
7724	3620	15191	8.00	TECHNICAL 	0		2023-06-24	2023-06-24	GREAT LEARNING ACADEMY
7725	3620	15192	8.00	TECHNICAL	0		2023-06-17	2023-06-17	GREAT LEARNING ACADEMY
7726	3620	15193	8.00	TECHNICAL	0		2023-02-11	2023-02-11	TECHNICAL  EDUCATION AND SKILLS DEVELOPMENT AUTHORITY
7727	3620	15194	8.00	TECHNICAL	0		2023-02-09	2023-02-09	TECHNICAL  EDUCATION AND SKILLS DEVELOPMENT AUTHORITY
7728	3620	15195	8.00	TECHNICAL 	0		2023-01-09	2023-01-09	TECHNICAL EDUCATION AND SKILLS DEVELOPMENT AUTHORITY
8012	3644	15372	24.00	TECHNICAL 	0		2019-02-12	2019-02-14	DIVISION OFFICE 
7729	3622	15196	8.00	PROFESSIONAL DEVELOPMENT	0		2023-02-16	2023-02-16	ST. BRIDGET COLLEGE
7730	3622	15197	8.00	PROFESSIONAL DEVELOPMENT	0		2023-02-17	2023-02-17	ST. BRIDGET COLLEGE
7731	3622	15198	8.00	PROFESSIONAL DEVELOPMENT	0		2023-02-20	2023-02-20	ST, BRIDGET COLLEGE
7732	3622	15199	4.00	PROFESSIONAL DEVELOPMENT	0		2023-02-21	2023-02-21	ST. BRIDGET COLLEGE
7733	3622	15200	4.00	PROFESSIONAL DEVELOPMENT	0		2023-02-21	2023-02-21	ST. BRIDGET COLLEGE
7734	3622	15201	2.00	PROFESSIONAL DEVELOPMENT	0		2023-02-27	2023-02-27	ST. BRIDGET COLLEGE
7735	3622	15202	3.00	PROFESSIONAL DEVELOPMENT	0		2023-02-27	2023-02-27	ST. BRIDGET COLLEGE
7736	3622	15203	3.00	PROFESSIONAL DEVELOPMENT	0		2023-02-27	2023-02-27	ST. BRIDGET COLLEGE
7737	3622	15204	36.00	TECHNICAL	0		2012-01-01	2015-01-01	NATIONAL OIWELL VARCO GRANT PRIDECO
7738	3622	15205	16.00	TECHNICAL	0		2012-01-01	2012-01-02	NATIONAL OIWELL VARCO GRANT PRIDECO
7739	3624	15206	50.00	TECHNICAL	0		2023-10-13	2023-11-05	UDEMY/SIMON SEZ
7740	3624	15207	3.00	TECHNICAL	0		2023-10-07	2023-10-07	PSYCHOLOGICAL ASSOCIATION OF THE PHILIPPINES
7741	3624	15113	24.00	TECHNICAL	0		2023-09-11	2023-09-13	SCHOOL DIVISION OFFICE OF BATANGAS CITY
7742	3624	15101	8.00	TECHNICAL	0		2023-03-30	2023-03-30	SCHOOL DIVISION OFFICE OF BATANGAS CITY
7743	3624	15208	24.00	TECHNICAL	0		2023-03-18	2023-03-25	CENTER FOR HUMAN RESEARCH AND DEVELOPMENT FOUNDATION, INC.
7744	3624	15114	3.00	TECHNICAL	0		2023-02-20	2023-02-20	SCHOOL DIVISION OFFICE OF BATANGAS CITY
7745	3623	15141	24.00	TECHNICAL 	0		2023-09-11	2023-09-13	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OFFICE BATANGAS CITY 
7746	3623	15209	24.00	TECHNICAL 	0		2023-05-23	2023-05-25	DEPARTMENT OF EDUCATION CENTRAL OFFICE 
7747	3623	15047	8.00	TECHNICAL 	0		2023-03-30	2023-03-30	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OFFICE OF BATANGAS  CITY 
7748	3623	15210	8.00	TECHNICAL 	0		2022-06-05	2022-06-05	TECHNICAL EDUCATION AND SKILLS DEVELOPMENT AUTHORITY 
7749	3623	15211	4.00	TECHNICAL 	0		2020-09-02	2020-09-02	BATANGAS STATE UNIVERSITY
7750	3623	15212	16.00	TECHNICAL 	0		2019-07-18	2019-07-19	BATANGAS STATE UNIVERSITY
7751	3623	15213	24.00	TECHNICAL 	0		2018-08-01	2018-08-03	BATANGAS STATE UNIVERSITY
7752	3623	15214	16.00	TECHNICAL 	0		2018-05-29	2018-05-30	BATANGAS STATE UNIVERSITY 
7753	3623	15215	8.00	TECHNICAL 	0		2018-05-24	2018-05-24	BATANGAS STATE UNIVERSITY 
7754	3623	15216	4.00	TECHNICAL 	0		2018-02-14	2018-02-14	BATANGAS STATE UNIVERSITY 
7755	3626	15217	16.00	TECHNICAL	0		2023-12-11	2023-12-12	SCHOOLS DIVISION OF BATANGAS CITY
7756	3626	15044	8.00	TECHNICAL	0		2023-11-22	2023-11-22	BULWAGANG ALA-EH, SCHOOLS DIVISION OF BATANGAS CITY
7757	3626	15113	24.00	TECHNICAL	0		2023-09-11	2023-09-13	SCHOOLS DIVISION OF BATANGAS CITY
7758	3626	15218	8.00	TECHNICAL 	0		2023-08-24	2023-08-24	BATANGAS CITY INTEGRATED HIGH SCHOOL
7759	3626	15182	4.00	TECHNICAL	0		2023-07-05	2023-07-05	SCHOOLS DIVISION OF BATANGAS CITY
7760	3626	15101	8.00	TECHNICAL	0		2023-03-30	2023-03-30	SCHOOLS DIVISION OF BATANGAS CITY
7761	3626	15050	8.00	TECHNICAL	0		2022-06-30	2022-06-30	SCHOOLS DIVISION OF BATANGAS CITY
7762	3626	15220	8.00	TECHNICAL	0		2022-03-31	2022-03-31	BOY SCOUT OF THE PHILIPPINES
7763	3626	15059	16.00	TECHNICAL	0		2019-12-12	2019-12-13	SCHOOLS DIVISION OF BATANGAS CITY
7764	3626	15160	16.00	TECHNICAL	0		2018-12-27	2019-02-14	SCHOOLS DIVISION OF BATANGAS CITY
7765	3627	15221	8.00	TECHNICAL	0		2023-03-13	2023-03-13	DEPARTMENT OF EDUCATION BATANGAS CITY
7766	3627	15101	8.00	TECHNICAL	0		2023-03-30	2023-03-30	DEPARTMENT OF EDUCATION BATANGAS CITY
7767	3627	15222	8.00	TECHNICAL	0		2023-08-24	2023-08-24	DEPARTMENT OF EDUCATION BATANGAS CITY
7768	3627	15113	24.00	TECHNICAL	0		2023-09-11	2023-09-13	DEPARTMENT OF EDUCATION BATANGAS CITY
7769	3627	15044	8.00	TECHNICAL	0		2023-11-22	2023-11-22	DEPARTMENT OF EDUCATION BATANGAS CITY
7770	3628	15180	16.00	TECHNICAL	0		2023-12-11	2023-12-12	SCHOOLS DIVISION OF BATANGAS CITY
7771	3628	15044	8.00	TECHNICAL	0		2023-11-22	2023-11-22	BULWAGANG ALA-EH, SCHOOL DIVISION OF BATANGAS CITY
7772	3628	15113	24.00	TECHNICAL	0		2023-09-11	2023-09-13	SCHOOLS DIVISION OF BATANGAS CITY
7773	3628	15218	8.00	TECHNICAL	0		2023-08-24	2023-08-24	BATANGAS CITY INTEGRATED HIGH SCHOOL
7774	3628	15182	4.00	TECHNICAL	0		2023-07-05	2023-07-05	SCHOOLS DIVISION OF BATANGAS CITY
7775	3628	15101	8.00	TECHNICAL	0		2023-03-30	2023-03-30	SCHOOLS DIVISION OF BATANGAS CITY
7776	3625	15044	8.00	TECHNICAL	0		2023-11-22	2023-11-22	BULWAGANG ALA EH,SCHOOLS DIVISION OF BATANGAS CITY
7777	3625	15141	24.00	TECHNICAL	0		2023-09-11	2023-09-13	SCHOOLS DIVISION OF BATANGAS CITY
7778	3625	15223	8.00	TECHNICAL	0		2023-08-24	2023-08-24	BATANGAS CITY INTEGRATED HIGH SCHOOL
7779	3625	15180	16.00	TECHNICAL	0		2023-12-11	2023-12-12	SCHOOLS DIVISION OF BATANGAS CITY
7780	3625	15182	4.00	TECHNICAL	0		2023-07-05	2023-07-05	SCHOOLS DIVISION OF BATANGAS CITY
7781	3625	15047	8.00	TECHNICAL	0		2023-03-30	2023-03-30	SCHOOLS DIVISION OF BATANGAS CITY
7782	3625	15225	8.00	TECHNICAL	0		2022-06-30	2022-06-30	SCHOOLS DIVISION OF BATANGAS CITY
7783	3625	15220	8.00	TECHNICAL	0		2022-03-31	2022-03-31	BOY SCOUT OF THE PHILIPPINES 
7784	3625	15059	16.00	TECHNICAL	0		2019-12-12	2019-12-13	SCHOOLS DIVISION OF BATANGAS CITY
7785	3625	15228	16.00	TECHNICAL	0		2018-12-27	2019-02-14	SCHOOLS DIVISION OF BATANGAS CITY
7786	3629	15044	8.00	TECHNICAL 	0		2023-11-22	2023-11-22	BULWAGANG ALA EH, SCHOOLS DIVISION OF BATANGAS CITY 
7787	3629	15141	24.00	TECHNICAL 	0		2023-09-11	2023-09-13	SCHOOLS DIVISION OF BATANGAS CITY 
7788	3629	15223	8.00	TECHNICAL 	0		2023-08-24	2023-08-24	BATANGAS CITY INTEGRATED HIGH SCHOOL 
7789	3629	15182	4.00	TECHNICAL 	0		2023-07-05	2023-07-05	SCHOOLS DIVISION OF BATANGAS CITY 
7790	3629	15047	8.00	TECHNICAL 	0		2023-03-30	2023-03-30	SCHOOLS DIVISION OF BATANGAS CITY 
7791	3629	15225	8.00	TECHNICAL 	0		2022-06-30	2022-06-30	SCHOOLS DIVISION OF BATANGAS CITY 
7792	3629	15220	8.00	TECHNICAL 	0		2022-03-31	2022-03-31	BOY SCOUTS OF THE PHILIPPINES 
7793	3629	15227	16.00	TECHNICAL 	0		2019-12-12	2019-12-13	SCHOOLS DIVISION OF BATANGAS CITY 
7794	3629	15228	16.00	TECHNICAL 	0		2018-12-27	2019-02-14	SCHOOLS DIVISION OF BATANGAS CITY 
7795	3630	15044	8.00	TECHNICAL 	0		2023-11-22	2023-11-22	DEPARTMENT OF EDUCATION- SCHOOLS DIVISION OF BATANGAS CITY 
7796	3630	15229	24.00	TECHNICAL 	0		2023-09-11	2023-09-13	DEPARTMENT OF EDUCATION- SCHOOLS DIVISION OF BATANGAS CITY 
7797	3630	15101	8.00	TECHNICAL 	0		2023-03-30	2023-03-30	DEPARTMENT OF EDUCATION- SCHOOLS DIVISION OF BATANGAS CITY 
7798	3630	15114	8.00	TECHNICAL 	0		2023-02-20	2023-02-20	DEPARTMENT OF EDUCATION- SCHOOLS DIVISION OF BATANGAS CITY 
7799	3630	15230	8.00	TECHNICAL 	0		2022-12-14	2022-12-14	DEPARTMENT OF EDUCATION- SCHOOLS DIVISION OF BATANGAS CITY 
7800	3630	15225	8.00	TECHNICAL	0		2022-06-30	2022-06-30	DEPARTMENT OF EDUCATION- SCHOOLS DIVISION OF BATANGAS CITY 
7801	3631	15113	24.00	TECHNICAL	0		2023-09-11	2023-09-13	SCHOOLS DIVISION OFFICE BATANGAS CITY
7802	3631	15101	8.00	TECHNICAL	0		2023-03-30	2023-03-30	SCHOOLS DIVISION OFFICE BATANGAS CITY
7803	3632	15044	8.00	TECHNICAL	0		2023-11-12	2023-11-12	DEPED DIVISION OF BATANGAS CITY
7804	3632	15045	24.00	TECHNICAL	0		2023-09-11	2023-09-11	DEPED DIVISION OF BATANGAS CITY
7805	3632	15234	8.00	TECHNICAL	0		2023-03-30	2023-03-30	DEPED DIVISION OF BATANGAS CITY
7806	3632	15114	3.00	TECHNICAL	0		2023-02-20	2023-02-20	DEPED DIVISION OF BATANGAS CITY
7807	3633	15232	16.00	TECHNICAL	0		2024-01-11	2024-01-12	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY
7808	3633	15233	16.00	TECHNICAL	0		2023-09-19	2023-09-20	DEPARTMENT OF EDUCATION (REGIONAL OFFICE)
7809	3633	15113	24.00	TECHNICAL	0		2023-09-11	2023-09-13	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY
7810	3633	15080	24.00	TECHNICAL	0		2023-05-23	2023-05-25	DEPARTMENT OF EDUCATION (CENTRAL OFFICE)
7811	3633	15235	56.00	TECHNICAL	0		2022-08-12	2022-08-22	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY
7812	3633	15236	24.00	TECHNICAL	0		2022-03-09	2022-03-11	DEPARTMENT OF EDUCATION (REGIONAL OFFICE)
7813	3633	15238	16.00	TECHNICAL	0		2019-11-05	2019-11-06	DEPARTMENT OF EDUCATION ( CENTRAL OFFICE)
7814	3633	15064	16.00	TECHNICAL	0		2019-05-23	2019-05-24	JBDC OCCUPATIONAL HEALTH, SAFETY AND ENVIRONMENT CONSULTANCY
7815	3633	15241	24.00	TECHNICAL	0		2019-02-05	2019-02-08	DEPARTMENT OF EDUCATION (REGIONAL OFFICE)
7816	3632	15237	7.00	TECHNICAL	0		2022-08-11	2022-08-11	UDEMY
7817	3632	15225	8.00	TECHNICAL	0		2023-06-30	2023-06-30	DEPED DIVISION OF BATANGAS CITY
7818	3632	15240	3.00	TECHNICAL	0		2022-06-28	2022-06-28	UDEMY
7819	3632	15242	3.00	TECHNICAL	0		2022-06-22	2022-06-22	UDEMY
7820	3632	15243	1.00	TECHNICAL	0		2023-06-22	2023-06-22	UDEMY
7821	3632	15244	7.00	TECHNICAL	0		2022-05-18	2022-05-18	UDEMY
7822	3632	15245	1.00	TECHNICAL	0		2022-03-21	2022-03-21	UDEMY
7823	3632	15246	18.00	TECHNICAL	0		2022-02-28	2022-03-01	UDEMY
7824	3632	15247	24.00	TECHNICAL 	0		2022-01-12	2022-01-14	DEPED DIVISION OF BATANGAS CITY
7825	3632	15248	12.00	TECHNICAL	0		2022-01-21	2022-01-22	DEPED REGION IV - A CALABARZON 
7826	3632	15249	16.00	TECHNICAL	0		2022-02-13	2022-02-14	DEPED DIVISION OF BATANGAS CITY
7827	3632	15059	16.00	TECHNICAL	0		2019-12-12	2019-12-13	DEPED DIVISION OF BATANGAS CITY
7828	3632	15250	16.00	TECHNICAL	0		2019-11-18	2019-11-19	DEPED DIVISION OF BATANGAS CITY
7829	3632	15128	16.00	TECHNICAL	0		2019-08-29	2019-08-30	DEPED REGION IV - A CALABARZON 
7830	3635	15113	24.00	TECHNICAL	0		2023-09-11	2023-09-13	SCHOOLS DIVISION OFFICE BATANGAS CITY 
7831	3635	15101	8.00	TECHNICAL	0		2023-03-30	2023-03-30	SCHOOLS DIVISION OFFICE BATANGAS CITY 
7832	3635	15252	16.00	TECHNICAL	0		2022-02-14	2022-02-18	CIVIL SERVICE COMMISSION REGIONAL OFFICE IV
7833	3635	15253	40.00	TECHNICAL	0		2021-01-11	2021-01-11	CIVIL SERVICE COMMISSION REGIONAL OFFICE IV
7834	3635	15254	2.00	TECHNICAL	0		2020-08-27	2020-08-27	DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY
7835	3635	15255	2.00	TECHNICAL	0		2020-08-26	2020-08-26	DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY
7836	3635	15256	2.00	TECHNICAL	0		2020-08-20	2020-08-20	DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY
7837	3635	15257	2.00	TECHNICAL	0		2020-07-29	2020-07-29	DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY
7838	3636	15044	8.00	PARTICIPANT	0		2023-11-22	2023-11-22	SCHOOLS DIVISION OF BATANGAS CITY
7839	3637	15267	20.00	TECHNICAL	0		2023-10-23	2023-10-27	DICT REGION IV-A CALABARZON
7842	3638	15265	8.00	AWARD	0		2023-12-11	2023-12-11	SCHOOL DIVISION OF BATANGAS CITY
7843	3638	15266	8.00	TECHNICAL	0		2023-11-30	2023-11-30	SCHOOL DIVISION OF BATANGAS CITY
7844	3638	15044	8.00	TECHNICAL	0		2023-11-22	2023-11-22	SCHOOL DIVISION OF BATANGAS CITY
7845	3638	15113	24.00	TECHNICAL	0		2023-09-11	2023-09-13	SCHOOL DIVISION OF BATANGAS CITY
7846	3638	15268	8.00	TECHNICAL	0		2023-08-24	2023-08-24	SCHOOL DIVISION OF BATANGAS CITY
7847	3638	15101	16.00	TECHNICAL	0		2023-03-30	2023-03-30	SCHOOLS DIVISION OF BATANGAS CITY
7848	3638	15270	80.00	PARTICIPANTS	0		2023-01-11	2023-01-22	UPLAND, POBLACION, DANAO CITY, CEBU 6004
7849	3638	15231	8.00	PARTICIPANTS	0		2022-06-30	2022-06-30	SCHOOLS DIVISION OF BATANGAS CITY
7850	3638	15195	8.00	PARTICIPANTS	0		2022-12-30	2022-12-30	TECHNICAL EDUCATION AND SKILLS DEVELOPMENT AUTHORITY
7851	3638	15275	8.00	PARTICIPANTS	0		2022-12-30	2022-12-30	TECHNICAL EDUCATION AND SKILLS DEVELOPMENT AUTHORITY
7852	3638	15194	8.00	PARTICIPANTS	0		2022-12-30	2022-12-30	TECHNICAL EDUCATION AND SKILLS DEVELOPMENT AUTHORITY
7853	3638	15220	8.00	PARTICIPANTS	0		2022-04-30	2022-04-30	SCHOOLS DIVISION OF BATANGAS CITY
7854	3634	15263	16.00	TECHNICAL 	0		2015-04-03	2015-05-03	DEPARTMENT OF EDUCATION BATANGAS CITY 
7855	3634	15264	16.00	TECHNICAL 	0		2017-04-25	2017-04-26	DEPARTMENT OF EDUCATION BATANGAS CITY 
7856	3634	15271	16.00	TECHNICAL 	0		2017-04-27	2017-04-28	DEPARTMENT OF EDUCATION BATANGAS CITY 
7857	3634	15272	56.00	TECHNICAL 	0		2018-01-03	2018-07-03	RAZVILL DRIVING ACADEMY 
7858	3634	15274	8.00	TECHNICAL 	0		2018-03-21	2018-03-21	DEPARTMENT OF EDUCATION BATANGAS CITY 
7859	3634	15278	8.00	TECHNICAL 	0		2018-02-04	2018-02-04	DEPARTMENT  OF EDUCATION BATANGAS CITY 
7860	3634	15280	8.00	TECHNICAL 	0		2018-10-29	2018-10-29	DEPARTMENT OF EDUCATION BATANGAS CITY 
7861	3634	15160	40.00	TECHNICAL 	0		2018-12-27	2018-12-28	DEPARTMENT OF EDUCATION BATANGAS CITY 
7862	3634	15160	40.00	TECHNICAL 	0		2019-12-02	2019-02-14	DEPARTMENT OF EDUCATION BATANGAS CITY 
7863	3634	15284	8.00	TECHNICAL 	0		2020-12-15	2020-12-15	DEPARTMENT OF EDUCATION BATANGAS CITY  
7864	3634	15114	8.00	TECHNICAL 	0		2023-02-20	2023-02-20	DEPARTMENT OF EDUCATION BATANGAS CITY 
7865	3634	15047	8.00	TECHNICAL 	0		2023-03-30	2023-03-30	DEPARTMENT OF EDUCATION BATANGAS CITY 
7866	3634	15168	24.00	TECHNICAL 	0		2023-09-11	2023-09-13	DEPARTMENT OF EDUCATION BATANGAS CITY 
7867	3634	15044	8.00	TECHNICAL 	0		2023-11-22	2023-11-22	DEPARTMENT OF EDUCATION BATANGAS CITY 
7910	3640	15044	8.00	TECHNICAL 	0		2023-11-22	2023-11-22	DEPARTMENT OF EDUCATION OF BATANGAS CITY 
7911	3640	15303	8.00	TECHNICAL 	0		2023-11-20	2023-11-20	DEPARTMENT OF EDUCATION OF BATANGAS CITY
7873	3637	15286	16.00	TECHNICAL 	0		2022-10-02	2022-10-03	UDEMY - SDO BATANGAS CITY
7878	3637	15246	21.00	TECHNICAL	0		2022-08-14	2022-08-16	UDEMY - SDO BATANGAS CITY
7880	3637	15085	24.00	TECHNICAL	0		2022-01-12	2022-01-14	SDO BATANGAS CITY
7881	3639	15045	24.00	TECHNICAL	0		2023-09-11	2023-09-13	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
7882	3639	15046	24.00	TECHNICAL	0		2023-05-15	2023-05-17	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
7883	3639	15101	8.00	TECHNICAL	0		2023-03-30	2023-03-30	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
7884	3639	15048	24.00	TECHNICAL	0		2023-01-17	2023-01-17	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
7885	3639	15294	24.00	TECHNICAL	0		2023-01-09	2023-01-13	DEPARTMENT OF EDUCATION REGION IV-A CALABARZON
7886	3639	15296	29.00	TECHNICAL	0		2022-07-25	2022-10-04	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
7887	3639	15219	8.00	TECHNICAL	0		2022-06-30	2022-06-30	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
7888	3639	15085	24.00	TECHNICAL	0		2022-01-12	2022-01-14	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
7889	3639	15054	24.00	TECHNICAL	0		2021-08-17	2021-08-19	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
7890	3639	15299	24.00	TECHNICAL	0		2020-01-29	2020-01-31	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
7891	3636	15113	24.00	PARTICIPANT	0		2023-09-11	2023-09-13	SCHOOLS DIVISION OF BATANAGS CITY
7892	3636	15101	8.00	PARTICIPANT	0		2023-03-30	2023-03-30	SCHOOLS DIVISION OF BATANAGS CITY
7893	3636	15153	6.00	PARTCIPANT 	0		2023-02-21	2023-02-21	SCHOOLS DIVISION OF BATANAGS CITY
7894	3636	15289	8.00	PARTICIPANT	0		2022-03-06	2022-06-03	SCHOOLS DIVISION OF BATANAGS CITY
7895	3636	15258	12.00	PARTCIPANT	0		2022-03-04	2022-03-07	SCHOOLS DIVISION OF BATANAGS CITY
7896	3636	15054	24.00	PARTICIPANT	0		2021-08-17	2021-08-19	SCHOOLS DIVISION OF BATANAGS CITY
7897	3636	15259	24.00	PARTICIPANT	0		2021-04-19	2021-04-21	SCHOOLS DIVISION OF BATANAGS CITY
7898	3636	15260	13.00	PARTICIPANT	0		2021-03-24	2021-03-25	PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS
7899	3636	15120	21.00	PARTICIPANT	0		2020-09-06	2020-09-05	PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS
7900	3636	15293	16.00	PARTICIPANT	0		2020-02-13	2020-02-14	SCHOOLS DIVISION OF BATANGAS CITY
7901	3636	15059	16.00	PARTICIPANT	0		2019-12-12	2019-12-13	SCHOOLS DIVISION OF BATANGAS CITY
7902	3636	15261	8.00	PARTICIPANT	0		2019-11-26	2016-11-26	SCHOOLS DIVISION OF BATANGAS CITY
7903	3636	3859	600.00	CLERICAL	0		2019-01-14	2019-10-05	BATANGAS STATE UNIVERSITY
7904	3639	15175	16.00	TECHNICAL	0		2019-12-12	2019-12-12	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
7905	3639	15228	24.00	TECHNICAL	0		2019-02-12	2019-02-14	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
7906	3639	15160	16.00	TECHNICAL	0		2018-12-27	2018-12-28	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
7907	3639	15301	16.00	TECHNICAL	0		2018-08-07	2018-08-08	COOPERATIVE UNION OF BATANGAS
7840	3637	15269	2.00	TECHNICAL 	0		2023-10-26	2023-10-26	DICT REGION IV-A CALABARZON
7841	3637	15273	3.00	TECHNICAL 	0		2023-10-20	2023-10-20	DICT REGION IV-A CALABARZON
7868	3637	15276	2.00	TECHNICAL	0		2023-10-19	2023-10-19	DICT REGION V-A CAMARINES SUR
7869	3637	15279	3.00	TECHNICAL	0		2023-10-19	2023-10-19	DICT REGION IV-A CALABARZON
7870	3637	15281	7.00	TECHNICAL	0		2023-06-23	2023-06-23	DICT REGION IV-A CALABARZON/IV-B MIMAROPA
7871	3637	15283	8.00	TECHNICAL	0		2023-03-30	2023-03-30	SDO BATANGAS CITY
7872	3637	15285	3.00	TECHNICAL	0		2023-02-20	2023-02-20	SDO BATANGAS CITY
7874	3637	15287	2.00	TECHNICAL	0		2022-08-23	2022-08-23	UDEMY - SDO BATANGAS CITY
7875	3637	15288	1.00	TECHNICAL	0		2022-08-22	2022-08-22	UDEMY - SDO BATANGAS CITY
7876	3637	15290	1.00	TECHNICAL	0		2022-08-22	2022-08-22	UDEMY - SDO BATANGAS CITY
7877	3637	15291	7.00	TECHNICAL	0		2022-08-19	2022-08-19	UDEMY - SDO BATANGAS CITY
7879	3637	15297	2.00	TECHNICAL 	0		2022-07-17	2022-07-17	UDEMY - SDO BATANGAS CITY
7908	3637	15300	24.00	TECHNICAL	0		2021-10-13	2021-10-15	DEPED LEGAL AFFAIRS (NATIONAL)
7909	3637	15304	8.00	TECHNICAL	0		2020-02-11	2020-02-11	COOPERATIVE UNION OF BATANGAS
7928	3642	15044	8.00	PARTICIPANT	0		2023-11-22	2023-11-22	DEPARTMENT IF EDUCATION BATANGAS CITY
7929	3642	15045	24.00	PARTICIPANT	0		2023-09-11	2023-09-13	DEPARTMENT OF EDUCATION BATANGAS CITY
7930	3643	15044	8.00	TECHNICAL	0		2023-11-22	2023-11-22	DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY
7931	3643	15233	16.00	TECHNICAL	0		2023-09-19	2023-09-20	DEPARTMENT OF EDUCATION- REGIONAL OFFICE
7932	3643	15113	24.00	TECHNICAL	0		2023-09-11	2023-09-13	DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY
7933	3643	15101	8.00	TECHNICAL	0		2023-03-30	2023-03-30	DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY
7934	3643	15306	8.00	TECHNICAL	0		2022-07-27	2022-07-27	DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY
7935	3643	15219	8.00	TECHNICAL	0		2022-06-30	2022-06-30	DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY
7936	3643	15284	8.00	TECHNICAL	0		2020-12-15	2020-12-15	DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY
7937	3643	15117	4.00	TECHNICAL	0		2020-05-18	2020-05-18	DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY
7938	3643	15309	8.00	TECHNICAL	0		2019-09-02	2019-09-02	DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY
7939	3643	15312	8.00	TECHNICAL 	0		2019-08-30	2019-08-30	DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY
7927	3642	15323	16.00	PARTICIPANT 	0		2024-01-24	2024-01-26	BUREAU OF HUMAN RESOURCE ORGANIZATION DIVISION
8013	3644	15375	16.00	TECHNICAL 	0		2018-07-05	2018-07-06	DIVISION OFFICE 
8014	3644	15138	8.00	TECHNICAL 	0		2018-03-22	2018-03-22	DIVISION OFFICE 
8015	3644	15380	16.00	TECHNICAL 	0		2017-12-10	2017-12-11	DIVISION OFFICE 
8016	3644	15382	40.00	TECHNICAL 	0		2016-11-07	2016-11-11	REGIONAL 
8017	3644	15384	8.00	TECHNICAL 	0		2013-04-27	2013-04-27	REGIONAL 
8018	3644	15386	24.00	TECHNICAL 	0		2012-10-20	2012-10-22	PICPA
8561	3676	15113	24.00	MANAGERIAL	0		2023-09-11	2023-09-13	SDO BATANGAS CITY
8562	3676	15574	40.00	MANAGERIAL	0		2023-08-14	2023-08-18	SDO BATANGAS CITY
8563	3676	15534	24.00	SUPERVISORY	0		2023-08-11	2023-08-11	SDO BATANGAS CITY
8564	3676	15308	8.00	MANAGERIAL	0		2023-07-21	2023-07-22	SDO BATANGAS CITY
8565	3676	15539	8.00	SUPERVISORY	0		2023-07-07	2023-07-07	SDO BATANGAS CITY
7912	3640	15303	8.00	TECHNICAL 	0		2023-11-17	2023-11-17	DEPARTMENT OF EDUCATION OF BATANGAS CITY
7913	3640	15305	16.00	TECHNICAL 	0		2023-10-19	2023-10-20	DEPARTMENT OF EDUCATION OF BATANGAS CITY
7914	3640	15307	8.00	TECHNICAL 	0		2023-09-22	2023-09-22	DEPARTMENT OF EDUCATION OF BATANGAS CITY
7915	3640	15168	24.00	TECHNICAL 	0		2023-09-11	2023-09-13	DEPARTMENT OF EDUCATION OF BATANGAS CITY
7916	3640	15308	16.00	TECHNICAL 	0		2023-07-21	2023-07-22	DEPARTMENT OF EDUCATION OF BATANGAS CITY
7917	3640	15310	8.00	TECHNICAL 	0		2020-09-09	2020-09-09	SMART 
7918	3640	15311	8.00	TECHNICAL 	0		2020-07-31	2020-07-31	DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY 
7919	3640	15313	8.00	TECHNICAL 	0		2020-09-06	2020-09-06	ERYUTECH
7920	3640	15315	8.00	TECHNICAL 	0		2020-04-24	2020-04-24	DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY 
7921	3640	15317	8.00	TECHNICAL 	0		2022-10-21	2022-10-21	GOOGLE
7922	3640	15318	80.00	TECHNICAL 	0		2014-07-14	2014-08-14	AIMEDA FOUNDATION 
7923	3640	15319	8.00	TECHNICAL 	0		2013-04-09	2013-04-09	GLOBE BATANGAS CITY 
7924	3640	15320	8.00	TECHNICAL 	0		2011-08-23	2011-08-23	BATANGAS STATE UNIVERSITY 
7925	3640	15321	8.00	TECHNICAL 	0		2011-08-16	2011-08-16	BATANGAS STATE UNIVERSITY 
7926	3640	15322	1000.00	TECHNICAL 	0		2009-10-01	2010-10-31	BATANGAS STATE UNIVERSITY 
7940	3643	15314	64.00	TECHNICAL	0		2019-08-06	2019-08-23	DIVISION TRAINING WORKSHOP ON UPDATING LEARNERS AND SCHOOLS' PROFILE IN THE LEARNER INFORMATION SYSTEM AND ENHANCED BASIC EDUCATION
7941	3643	15316	16.00	TECHNICAL	0		2019-08-08	2019-08-09	DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY
7942	3641	15324	16.00	TECHNICAL	0		2019-07-30	2019-07-31	DIVISION OF BATANGAS CITY
7943	3641	15060	16.00	TECHNICAL 	0		2019-12-12	2019-12-13	DIVISION OF BATANGAS CITY
7944	3641	15293	16.00	TECHNICAL	0		2020-02-13	2020-02-14	DIVISION OF BATANGAS CITY
7945	3641	15093	16.00	TECHNICAL	0		2020-07-13	2020-07-15	DIVISION OF BATANGAS CITY
7946	3641	15334	23.00	TECHNICAL	0		2020-09-03	2020-09-05	PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS -SIUTHERN TAGALOG REGION
7947	3641	15054	21.00	TECHNICAL	0		2021-08-17	2021-08-19	DIVISION OF BATANGAS CITY
7948	3641	15341	2900.00	TECHNICAL	0		2021-10-08	2022-10-04	DEPED REGION IV -A / DEPED SERVICE PROVIDER /NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES /ASEA METRICS HR SOLUTIONS. INC.
7949	3641	15050	8.00	TECHNICAL	0		2022-06-30	2022-06-22	DIVISION OF BATANGAS CITY
7950	3641	15047	8.00	TECHNICAL	0		2022-03-30	2022-03-30	DIVISION OF BATANGAS CITY
7951	3641	15046	24.00	TECHNICAL	0		2023-05-15	2023-05-17	DIVISION OF BATANGAS CITY
7952	3641	15079	24.00	TECHNICAL	0		2023-09-11	2023-09-13	DIVISION OF BATANGAS CITY
7953	3641	15044	8.00	TECHNICAL	0		2022-11-22	2022-11-22	DIVISION OF BATANGAS CITY
7954	3642	15345	8.00	PARTICIPANT	0		2023-03-29	2023-03-29	DEPARTMENT OF EDUCATION BATANGAS CITY
7955	3642	15153	6.00	PARTCIPANT	0		2023-02-21	2023-02-21	DEPARTMENT OF EDUCATION BATANGAS CITY
7956	3642	15326	40.00	PARTICIPANT	0		2023-01-30	2023-02-03	DEPARTMENT OF EDUCATION INFORMATION AND COMMUNICATION TECHNOLOGY SERVICE
7957	3642	15328	11.00	PARTICIPANT	0		2022-10-04	2022-10-04	UDEMY 
7958	3642	15329	31.00	PARTICIPANT	0		2022-10-01	2022-10-04	UDEMY
7959	3642	15330	4.00	PARTICIPANT	0		2022-08-01	2022-08-01	UDEMY 
7960	3642	15331	4.00	PARTICIPANT	0		2022-07-26	2022-07-26	UDEMY 
7961	3642	15332	3.00	PARTICIPANT	0		2022-07-26	2022-07-26	UDEMY 
7962	3642	15333	4.00	PARTICIPANT 	0		2022-07-22	2022-07-22	UDEMY 
7963	3642	15335	13.00	PARTICIPANT	0		2022-07-20	2022-07-20	UDEMY 
7964	3642	15338	12.00	PARTICIPANT	0		2022-07-15	2022-07-15	UDEMY 
7965	3642	15339	8.00	PARTICIPANT	0		2022-05-27	2022-05-27	DEPARTMENT OF EDUCATION BATANGAS CITY 
7966	3642	15340	32.00	PARTICIPANT	0		2019-10-13	2019-10-16	DEPARTMENT OF EDUCATION BATANGAS CITY
7967	3642	15342	40.00	PARTICIPANT	0		2019-09-30	2019-10-04	INFORMATION AND COMMUNICATION TECHNOLOGY SERVICE TECHNOLOGY INFRASTRACTURE DIVISION
7968	3642	15343	16.00	PARTICIPANT	0		2019-08-01	2019-08-02	DEPARTMENT OF EDUCATION REGION IV-A
7969	3642	15344	24.00	PARTICIPANT	0		2019-06-26	2019-06-28	DEPARTMENT OF EDUCATION- INFORMATION AND COMMUNICATION TECHNOLOGY SERVICE
7970	3645	15118	24.00	TECHNICAL	0		2024-01-16	2024-01-18	DEPARTMENT OF EDUCATION REGION IV-A CALABARZON
7971	3645	15044	8.00	TECHNICAL	0		2023-11-22	2023-11-22	DEPARTMENT OF EDUCATION SDO BATANGAS CITY
7972	3645	15124	24.00	TECHNICAL	0		2023-11-16	2023-11-18	DEPARTMENT OF EDUCATION REGION IV-A CALABARZON
7973	3645	15346	8.00	MANAGERIAL	0		2023-11-11	2023-11-11	GOLDEN GATE COLLEGES/ GRADUATE SCHOOL DEPARTMENT
7974	3645	15347	8.00	MANAGERIAL	0		2021-10-25	2021-10-29	GOLDEN GATE COLLEGES/ GRADUATE SCHOOL DEPARTMENT
7975	3645	15113	24.00	TECHNICAL 	0		2023-09-11	2023-09-13	DEPARTMENT OF EDUCATION SDO BATANGAS CITY
7976	3645	15209	24.00	TECHNICAL	0		2023-05-23	2023-05-25	DEPARTMENT OF EDUCATION CENTRAL OFFICE
7977	3645	15046	24.00	TECHNICAL	0		2023-05-15	2023-05-17	DEPARTMENT OF EDUCATION SDO BATANGAS CITY
7978	3645	15101	8.00	TECHNICAL	0		2023-03-30	2023-03-30	DEPARTMENT OF EDUCATION SDO BATANGAS CITY
7979	3645	15153	18.00	TECHNICAL	0		2023-02-21	2023-02-23	DEPARTMENT OF EDUCATION SDO BATANGAS CITY
7980	3645	15048	8.00	TECHNICAL	0		2023-01-17	2023-01-17	DEPARTMENT OF EDUCATION SDO BATANGAS CITY
7981	3645	15082	24.00	TECHNICAL	0		2022-11-09	2022-11-11	DEPARTMENT OF EDUCATION REGION IV-A CALABARZON
7982	3645	15348	7.00	TECHNICAL	0		2022-08-22	2022-08-22	UDEMY
7983	3645	15219	8.00	TECHNICAL	0		2022-06-30	2022-06-30	DEPARTMENT OF EDUCATION SDO BATANGAS CITY
7984	3645	15349	7.00	TECHNICAL	0		2022-06-02	2022-06-02	UDEMY
7985	3645	15350	8.00	TECHNICAL	0		2022-04-18	2022-04-18	DEPARTMENT OF EDUCATION SDO BATANGAS CITY
7986	3645	15192	6.00	TECHNICAL	0		2022-04-12	2022-04-12	UDEMY
7987	3645	15236	24.00	TECHNICAL	0		2022-03-09	2022-03-11	DEPARTMENT OF EDUCATION REGION IV-A CALABARZON
7988	3645	15351	12.00	TECHNICAL	0		2022-03-04	2022-03-07	DEPARTMENT OF EDUCATION SDO BATANGAS CITY
7989	3645	15352	8.00	TECHNICAL	0		2022-02-02	2022-02-02	DEPARTMENT OF EDUCATION REGIONAL IV-A CALABARZON
7990	3645	15052	24.00	TECHNICAL	0		2022-01-10	2022-01-14	DEPARTMENT OF EDUCATION REGION IV-A
7991	3646	15047	8.00	TECHNICAL	0		2023-03-30	2023-03-30	SCHOOLS DIVISION OV BATANGAS CITY
7992	3646	15353	80.00	TECHNICAL	0		2023-07-15	2023-07-24	CPDCFT TRAINING CENTER
7993	3646	15354	80.00	TECHNICAL	0		2023-08-01	2023-08-10	CPDCFT TRAINING CENTER
7994	3646	15355	80.00	TECHNICAL 	0		2023-08-15	2023-08-24	CPDCFT TRAINING CENTER
7995	3646	15356	2.00	TECHNICAL 	0		2023-09-13	2023-09-13	EMPLOYEES COMPENSATION COMMISSION
7996	3646	15358	24.00	TECHNICAL 	0		2023-09-19	2023-09-21	SOUTHEAST ASIAN INSTITUTE OF EDUCATIONAL TRAINING, INC.
7997	3646	15360	6.00	TECHNICAL	0		2023-09-23	2023-09-23	UDEMY 
7998	3646	15361	2.00	TECHNICAL	0		2023-09-23	2023-09-23	HR CALABARZON GROUP 
7999	3644	15079	24.00	TECHNICAL 	0		2023-09-11	2023-09-13	DIVISION OFFICE 
8000	3644	15209	24.00	TECHNICAL 	0		2023-05-23	2023-05-25	NATIONAL 
8001	3644	15081	24.00	TECHNICAL 	0		2023-05-15	2023-05-17	DIVISION OFFICE 
8002	3644	15048	8.00	TECHNICAL 	0		2023-01-17	2023-01-17	DIVISION OFFICE 
8003	3644	15366	8.00	TECHNICAL 	0		2022-04-18	2022-04-18	DIVISION OFFICE 
8004	3644	15369	16.00	TECHNICAL 	0		2019-11-18	2019-11-19	REGIONAL 
8005	3644	15370	16.00	TECHNICAL 	0		2019-09-26	2019-09-27	NATIONAL 
8006	3645	15053	40.00	TECHNICAL	0		2021-11-15	2021-11-19	DEPARTMENT OF EDUCATION REGION IV-A CALABARZON
8007	3645	15357	40.00	TECHNICAL	0		2021-10-25	2021-10-29	DEPARTMENT OF EDUCATION REGION IV-A CALABARZON
8008	3645	15359	24.00	TECHNICAL	0		2021-07-28	2021-07-31	DEPARTMENT OF EDUCATION REGION IV-A CALABARZON
8009	3645	15055	24.00	TECHNICAL	0		2021-07-12	2021-07-16	DEPARTMENT OF EDUCATION REGION IV-A CALABARZON
8010	3645	15362	40.00	TECHNICAL	0		2021-05-31	2021-06-04	DEPARTMENT OF EDUCATION REGION IV-A CALABARZON
8011	3645	15364	16.00	TECHNICAL	0		2020-07-27	2020-07-28	DEPARTMENT OF EDUCATION SDO BATANGAS CITY
8031	3647	15044	8.00	TECHNICAL	0		2023-11-22	2023-11-22	DEPARTMENT OF EDUCATION SDO BATANGAS
8032	3647	15346	8.00	TECHNICAL	0		2023-11-11	2023-11-11	GOLDEN GATE COLLEGES- GRADUATE SCHOOL
8033	3647	15347	8.00	TECHNICAL	0		2023-10-28	2023-10-28	GOLDEN GATE COLLEGES- GRADUATE SCHOOL
8034	3647	15113	8.00	TECHNICAL	0		2023-09-11	2023-09-13	DEPARTMENT OF EDUCATION-SDO BATANGAS
8035	3647	15046	24.00	TECHNICAL	0		2023-05-15	2023-05-17	DEPARTMENT OF EDUCATION-SDO BATANGAS
8036	3647	15101	8.00	TECHNICAL	0		2023-03-30	2023-03-30	DEPARTMENT OF EDUCATION-SDO BATANGAS
8037	3647	15048	8.00	TECHNICAL	0		2023-01-17	2023-01-14	DEPARTMENT OF EDUCATION-SDO BATANGAS
8038	3647	15083	8.00	TECHNICAL	0		2022-06-20	2022-06-20	DEPARTMENT OF EDUCATION-SDO BATANGAS
8039	3647	15388	8.00	TECHNICAL	0		2022-06-12	2022-06-12	BATANGAS CITY PLANNING AND DEVELOPMENTAL OFFICE
8040	3647	15144	8.00	TECHNICAL	0		2022-04-18	2022-04-18	DEPARTMENT OF EDUCATION-SDO BATANGAS
8041	3647	15391	40.00	TECHNICAL	0		2021-08-18	2021-08-22	ACE IT UP CENTER FOR LEARNING AND DEVELOPMENT (UNDER SELF-DIRECTED TRACK)
8019	3646	15363	16.00	TECHNICAL	0		2023-09-25	2023-09-26	DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY- ICT LITERACY AND COMPETENCY DEVELOPMENT BUREAU- REGION 2
8020	3646	15367	2.00	TECHNICAL	0		2023-09-27	2023-09-27	EMPLOYEES COMPENSATION COMMISSION
8021	3646	15368	4.00	TECHNICAL	0		2023-09-28	2023-09-28	DEPARTMENT OF TRADE AND INDUSTRY NATIONAL CAPITAL REGIONAL OFFICE
8022	3646	15371	4.00	TECHNICAL	0		2023-10-04	2023-10-04	TECHNICAL EDUCATION AND SKILLS DEVELOPMENT AUTHORITY- ONLINE PROGRAM
8023	3646	15373	2.00	TECHNICAL	0		2023-10-05	2023-10-05	DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY REGION IV-A CYBERSECURITY BUREAU
8024	3646	15374	6.00	TECHNICAL	0		2023-10-07	2023-10-07	DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY-  ICT LITERACY AND COMPETENCY DEVELOPMENT BUREAU
8025	3646	15376	6.00	TECHNICAL	0		2023-10-09	2023-10-09	DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY- ICT LITERACY AND COMPETENCY DEVELOPMENT BUREAU
8026	3646	15377	4.00	TECHNICAL	0		2023-10-10	2023-10-10	TECHNICAL EDUCATION SKILLS DEVELOPMENT AUTHORITY- ONLINE PROGRAM
8027	3646	15379	8.00	TECHNICAL	0		2023-10-12	2023-10-12	DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY-  ICT LITERACY AND COMPETENCY DEVELOPMENT BUREAU
8028	3646	15381	2.00	TECHNICAL 	0		2023-10-14	2023-10-14	PHILIPPINE ASSOCIATION FOR TEACHERS AND EDUCATORS (PAFTE) INC. 
8029	3646	15383	2.00	TECHNICAL 	0		2023-10-14	2023-10-14	PHILIPPINE ASSOCIATION FOR TEACHERS AND EDUCATORS (PAFTE) INC. 
8030	3646	15385	8.00	TECHNICAL	0		2023-10-15	2023-10-15	DEPARTMENT OF IFORMATION AND COMMUNICATIONS TECHNOLOGY -ICT LITERACY AND COMPETENCY DEVELOPMENT BUREAU
8042	3648	15389	40.00	TECHNICAL	0		2023-01-16	2023-01-20	DEPARTMENT OF EDUCATION IV -A CALABARZON
8043	3648	15392	24.00	TECHNICAL	0		2021-12-03	2021-12-05	SUPREME COURT OF THE PHILIPPINES - MCLE OFFICE
8044	3648	15393	24.00	TECHNICAL	0		2021-05-19	2021-05-21	DEPARTMENT OF EDUCATION REGION IV - A CALABARZON
8045	3648	15394	40.00	TECHNICAL 	0		2019-12-09	2019-12-13	DEPARTMENT OF EDUCATION REGION IV - A CALABARZON
8046	3648	15396	24.00	TECHNICAL	0		2019-10-01	2019-10-03	DEPARTMENT OF EDUCATION 
8047	3648	15398	24.00	TECHNICAL	0		2019-01-22	2019-01-24	DEPARTMENT OF EDUCATION REGION IV - A CALABARZON
8048	3648	15400	24.00	TECHNICAL	0		2018-06-19	2018-06-21	DEPARTMENT OF EDUCATION REGION IV - A CALABARZON
8049	3648	15132	16.00	TECHNICAL	0		2019-05-23	2019-05-24	JBDC OCCUPATIONAL HEALTH, SAFETY AND ENVIRONMENT CONSULTANCY
8050	3648	15407	16.00	TECHNICAL	0		2018-04-18	2018-04-18	JBDC OCCUPATIONAL HEALTH, SAFETY AND ENVIRONMENT CONSULTANCY
8051	3648	15409	8.00	TECHNICAL	0		2018-03-22	2018-03-22	JBDC OCCUPATIONAL HEALTH, SAFETY AND ENVIRONMENT CONSULTANCY
8052	3648	15411	8.00	TECHNICAL 	0		2018-03-21	2018-03-21	JBDC OCCUPATIONAL HEALTH, SAFETY AND ENVIRONMENT CONSULTANCY
8053	3648	15415	40.00	TECHNICAL 	0		2017-01-23	2017-01-27	JBDC OCCUPATIONAL HEALTH, SAFETY AND ENVIRONMENT CONSULTANCY
8054	3647	15395	32.00	TECHNICAL	0		2021-08-06	2021-08-09	FILIPINO VIRTUAL BOOKKEEPERS (VIA ZOOM)
8055	3647	15120	24.00	TECHNICAL	0		2020-09-03	2020-09-05	PICPA, SOUTHERN TAGALOG (VIA ZOOM)
8056	3647	15397	24.00	TECHNICAL	0		2016-04-11	2016-04-13	BANK COMMERCE- MAIN OFFICE
8057	3647	15399	8.00	TECHNICAL	0		2009-05-09	2009-05-09	BANK OF COMMERCE- MAIN OFFICE
8058	3647	15401	8.00	TECHNICAL	0		2009-04-25	2009-04-25	BANK OF COMMERCE- MAIN OFFICE
8059	3647	15402	8.00	TECHNICAL	0		2009-02-03	2009-02-03	BANK OF COMMERCE- BATANGAS P. BURGOS BRANCH
8060	3647	15405	24.00	TECHNICAL	0		2008-10-10	2008-10-11	BATANGAS STATE UNIVERSITY- OFFICE OF THE ADMINISTRATION SERVICES TRAINING AND DEVELOPMENT OFFICE
8061	3647	15408	8.00		0		2008-02-08	2008-02-08	AME ASSOCIATION OF MARKETING EDUCATORS OF THE PHILIPPINES, INC.
8062	3647	14811	8.00		0		2007-04-28	2007-04-28	JCI JUNIOR CHAMBER INTERNATIONAL PHILIPPINES
8063	3647	14928	600.00	OJT	0		2006-11-06	2007-03-09	COMMISSION ON AUDIT (COA)- GOVERNMENT SERVICE INSURANCE SYSTEM (GSIS) BATANGAS BRANCH OFFICE
8064	3647	3859	600.00	OJT	0		2006-11-06	2007-03-09	GOVERNMENT SERVICE INSURANCE SYSTEM, (GSIS) BATANGAS BRANCH OFFICE 
8065	3647	15416	8.00		0		2006-08-24	2006-08-24	JUNIOR PHILIPPINES INSTITUTE OF ACCOUNTANTS
8066	3649	15045	24.00	TECHNICAL	0		2023-09-11	2023-09-13	SCHOOLS DIVISION OF BATANGAS CITY
8067	3649	15101	8.00	TECHNICAL	0		2023-03-30	2023-03-30	SCHOOLS DIVISION OF BATANGAS CITY 
8068	3649	15404	24.00	TECHNICAL 	0		2014-12-10	2014-12-10	DEPARTMENT OF EDUCATION REGION IV-A 
8069	3649	15406	24.00	TECHNICAL	0		2014-11-26	2014-11-28	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY
8070	3649	15410	16.00	TECHNICAL	0		2014-10-08	2014-10-09	DEPARTMENT OF EDUCATION BATANGAS CITY
8071	3649	15412	16.00	TECHNICAL	0		2013-12-05	2013-12-06	DEPARTMENT OF EDUCATION REGION IV-A
8072	3649	15414	8.00	TECHNICAL	0		2013-06-28	2013-06-28	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY
8073	3653	15417	8.00	TECHNICAL	0		2023-09-12	2023-09-12	THE ONLY PLACE RESTAURANT
8074	3653	15418	16.00	PARTICIPANT	0		2023-11-12	2023-12-12	CITY TRAVEL HOTEL KISAD ROAD, BAGUIO CITY
8075	3653	15107	8.00	TECHNICAL	0		2023-11-23	2023-11-23	BATANGAS CITY SPORTS COLISEUM
8076	3653	15044	8.00	TECHNICAL	0		2023-11-22	2023-11-22	BULWAGANG ALA EH, SDO BATANGAS CITY
8077	3653	15113	24.00	PARTICIPANT	0		2023-09-11	2023-09-13	M.I. SEVILLA'S RESORT, LUCENA CITY
8078	3653	15308	16.00	TECHNICAL	0		2023-07-21	2023-07-22	BULWAGANG ALA EH, SDO BATANGAS CITY
8079	3653	15420	8.00	TECHNICAL	0		2023-07-06	2023-07-06	BULWAGANG ALA EH, SDO BATANGAS CITY
8080	3653	15421	8.00	TECHNICAL	0		2023-05-19	2023-05-19	SDO BATANGAS CITY, LIBRARY HUB
8081	3653	15101	8.00	TECHNICAL	0		2023-03-30	2023-03-30	BATIS ARAMIN, RESORT AND HOTEL, LUCBAN QUEZON
8082	3650	15419	16.00	TECHNICAL 	0		2023-09-25	2023-09-26	DEPED SDO BATANGAS CITY 
8083	3650	15045	24.00	TECHNICAL 	0		2023-09-11	2023-09-13	DEPED SDO BATANGAS CITY 
8084	3650	15044	8.00	TECHNICAL 	0		2023-11-22	2023-11-22	DEPED SDO BATANGAS CITY 
8085	3650	15373	2.00	TECHNICAL 	0		2023-10-05	2023-10-05	DEPARTMENT OF INFORMATION AND  COMMUNICATIONS TECHNOLOGY REGION IV-A CALABARZON 
8086	3650	15423	8.00	TECHNICAL 	0		2023-04-21	2023-04-21	ASOSASYON NG AKLATAN AT SINUPAN NG DILIMAN, INC. 
8087	3650	15047	8.00	TECHNICAL 	0		2023-03-30	2023-03-30	DEPED SDO BATANGAS CITY 
8088	3650	15424	8.00	TECHNICAL 	0		2023-03-29	2023-03-29	DEPED SDO BATANGAS CITY 
8089	3650	15425	8.00	TECHNICAL 	0		2023-03-17	2023-03-17	DEPED SDO BATANGAS CITY 
8090	3650	15153	6.00	TECHNICAL 	0		2023-02-21	2023-02-21	DEPED SDO BATANGAS CITY 
8091	3650	15114	3.00	TECHNICAL 	0		2023-02-20	2023-02-20	DEPED SDO BATANGAS CITY 
8092	3650	15426	1.00	TECHNICAL 	0		2022-10-03	2022-10-03	DEPED REGION IV-A CALABARZON 
8093	3650	15427	7.00	TECHNICAL 	0		2022-10-03	2022-10-03	DEPED REGION IV-A CALABARZON 
8094	3650	15428	2.00	TECHNICAL 	0		2022-09-20	2022-09-20	DEPED REGION IV-A CALABARZON 
8095	3650	15174	8.00	TECHNICAL 	0		2022-09-07	2022-09-07	DEPED SDO BATANGAS CITY 
8096	3650	15429	8.00	TECHNICAL 	0		2022-08-11	2022-08-11	DEPED SDO BATANGAS CITY 
8097	3650	15231	8.00	TECHNICAL 	0		2022-06-30	2022-06-30	DEPED SDO BATANGAS CITY 
8098	3650	15430	4.00	TECHNICAL 	0		2022-05-30	2022-05-30	DEPED REGION IV-A CALABARZON 
8099	3650	15431	7.00	TECHNICAL 	0		2022-05-25	2022-05-25	DEPED REGION IV-A CALABARZON 
8100	3650	15432	2.00	TECHINCAL 	0		2022-04-09	2022-04-09	DEPED REGION IV-A CALABARZON 
8101	3650	15258	5.00	TECHNICAL 	0		2022-03-07	2022-03-07	DEPED SDO BATANGAS CITY 
8102	3650	15435	1.00	TECHNICAL 	0		2022-02-26	2022-02-26	DEPED REGION IV-A CALABARZON 
8112	3650	15436	16.00	TECHNICAL 	0		2022-02-23	2022-02-24	DEPED REGION IV-A CALABARZON 
8113	3650	15438	8.00	TECHNICAL 	0		2022-02-23	2022-02-23	DEPED REGION IV-A CALABARZON 
8114	3650	15440	8.00	TECHNICAL 	0		2022-02-02	2022-02-02	DEPED REGION IV-A CALABARZON 
8115	3650	15298	24.00	TECHNICAL 	0		2022-01-12	2022-01-14	DEPED SDO BATANGAS CITY 
8116	3650	15442	4.00	TECHNICAL 	0		2021-11-25	2021-11-25	DEPED SDO BATANGAS CITY 
8117	3650	15444	16.00	TECHNICAL 	0		2021-11-04	2021-11-05	DEPED CENTRAL OFFICE AND NATIONAL ARCHIVES OF THE PHILIPPINES 
8118	3650	15446	16.00	TECHNICAL 	0		2021-11-11	2021-11-11	DEPED CENTRAL OFFICE AND NATIONAL ARCHIVES OF THE PHILIPPINES
8119	3650	15449	24.00	TECHNICAL 	0		2021-10-13	2021-10-15	DEPED CENTRAL OFFICE- LEGAL AFFAIRS 
8120	3650	15450	8.00	TECHNICAL 	0		2021-09-10	2021-09-10	DEPED REGION IV-A CALABARZON 
8121	3650	15364	16.00	TECHNICAL 	0		2020-07-27	2020-07-28	DEPED SDO BATANGAS CITY 
8122	3650	15117	3.00	TECHNICAL 	0		2020-05-18	2020-05-18	DEPED SDO BATANGAS CITY
8123	3650	15060	16.00	TECHNICAL 	0		2019-12-12	2019-12-13	DEPED SDO BATANGAS CITY 
8124	3650	15454	24.00	TECHNICAL 	0		2019-11-26	2019-11-28	DEPED  CENTRAL OFFICE 
8125	3650	15455	24.00	TECHNICAL 	0		2019-11-12	2019-11-14	DEPED CENTRAL OFFICE 
8126	3650	15457	8.00	TECHNICAL 	0		2019-08-02	2019-08-02	GSIS- SOUTH LUZON OPERATIONS GROUP 
8127	3650	15459	8.00	TECHNICAL 	0		2019-03-18	2019-03-18	DEPED SDO BATANGAS CITY 
8140	3650	15280	8.00	TECHNICAL 	0		2018-10-29	2018-10-29	DEPED SDO BATANGAS CITY 
8141	3650	15463	24.00	TECHNICAL 	0		2018-06-19	2018-06-21	DEPED REGION IV- A CALABARZON 
8142	3650	15407	16.00	TECHNICAL 	0		2018-04-18	2018-04-19	JBDC OCCUPATIONAL HEALTH, SAFETY AND ENVIRONMENT CONSULTANCY 
8143	3650	15466	8.00	TECHNICAL 	0		2018-04-02	2018-04-02	JBDC OCCUPATIONAL HEALTH, SAFETY AND ENVIRONMENT CONSULTANCY
8144	3650	15469	8.00	TECHNICAL 	0		2018-03-22	2018-03-22	JBDC OCCUPATIONAL HEALTH, SAFETY AND ENVIRONMENT CONSULTANCY
8145	3650	15411	8.00	TECHNICAL 	0		2018-03-21	2018-03-21	JBDC OCCUPATIONAL HEALTH, SAFETY AND ENVIRONMENT CONSULTANCY
8146	3650	15475	24.00	TECHNICAL 	0		2017-12-06	2017-12-08	DEPED CENTRAL OFFICE 
8147	3650	15477	8.00	TECHNICAL 	0		2017-12-05	2017-12-05	DEPED BATANGAS CITY DIVISION 
8148	3650	15479	48.00	TECHNICAL 	0		2017-11-12	2017-11-12	DEPED BATANGAS CITY DIVISION 
8149	3650	15481	8.00	TECHNICAL 	0		2017-10-25	2017-10-25	DEPED REGION IV- A CALABARZON 
8150	3650	15483	24.00	TECHNICAL 	0		2017-10-11	2017-10-11	DEPED REGION IV A- CALABARZON 
8151	3650	15486	8.00	TECHNICAL 	0		2017-09-11	2017-09-11	GSIS BATANGAS REGIONAL OFFICE 
8152	3650	15487	24.00	TECHNICAL 	0		2017-05-31	2018-05-31	PHILIPPINE ASSOCIATION OF RECORDS OFFICERS AND ARCHIVISTS ( PAROA) 
8153	3650	15488	24.00	TECHNICAL 	0		2017-03-16	2017-03-18	DEPED REGION IV- A CALABARZON 
8154	3650	15486	8.00	TECHNICAL 	0		2017-03-21	2017-03-21	GSIS BATANGAS REGIONAL OFFICE 
8155	3650	15489	8.00	TECHNICAL 	0		2017-02-23	2017-02-23	DEPED REGION IV-A CALABARZON 
8156	3650	15490	8.00	TECHNICAL 	0		2016-11-07	2016-11-07	GSIS BATANGAS REGIONAL OFFICE 
8157	3650	15491	8.00	TECHNICAL 	0		2016-03-14	2016-03-14	GSIS CENTRAL OFFICE 
8103	3652	15434	32.00	TECHNICAL	0		2009-12-05	2009-12-18	DEPARTMENT OF EDUCATION CENTRAL OFFICE
8104	3652	15437	24.00	TECHNICAL	0		2010-01-20	2010-01-22	DEPARTMENT OF EDUCATION CENTRAL OFFICE
8105	3652	15441	24.00	TECHNICAL	0		2011-01-19	2011-01-21	DEPARTMENT OF EDUCATION CENTRAL OFFICE
8106	3652	15443	24.00	TECHNICAL	0		2011-12-01	2011-12-03	DEPARTMENT OF EDUCATION CENTRAL OFFICE
8107	3652	15445	16.00	TECHNICAL	0		2012-12-01	2012-12-03	DEPARTMENT OF EDUCATION CENTRAL OFFICE
8108	3652	15448	16.00	TECHNICAL	0		2012-02-28	2012-02-29	DEPARTMENT OF EDUCATION CENTRAL OFFICE
8109	3652	15451	16.00	TECHNICAL	0		2012-08-29	2012-08-30	DEPARTMENT OF EDUCATION CENTRAL OFFICE
8110	3652	15452	24.00	TECHNICAL	0		2013-01-17	2013-01-19	DEPARTMENT OF EDUCATION CENTRAL OFFICE
8111	3652	15453	16.00	TECHNICAL	0		2013-03-04	2013-03-05	DEPARTMENT OF EDUCATION CENTRAL OFFICE
8128	3652	15456	24.00	TECHNICAL 	0		2013-03-11	2013-03-13	DEPARTMENT OF EDUCATION CENTRAL OFFICE
8129	3652	15458	8.00	TECHNICAL	0		2014-01-07	2014-01-07	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY
8130	3652	15460	24.00	TECHNICAL 	0		2014-01-15	2014-01-17	DEPARTMENT OF EDUCATION CENTRAL OFFICE
8131	3654	15462	16.00	SUPERVISORY	0		2024-01-29	2024-01-30	SCHOOLS DIVISION OFFICE OF BATANGAS CITY
8132	3654	15465	24.00	SUPERVISORY	0		2023-08-15	2023-08-17	SCHOOLS DIVISION OFFICE OF BATANGAS CITY
8133	3654	15113	24.00	SUPERVISORY	0		2023-11-09	2023-09-13	SCHOOLS DIVISION OFFICE OF BATANGAS CITY
8134	3654	15470	32.00	SUPERVISORY	0		2023-07-23	2023-07-28	DEPARTMENT OF EDUCATION- CENTRAL OFFICE
8135	3654	15472	8.00	SUPERVISORY	0		2022-08-12	2022-08-12	SCHOOLS DIVISION OFFICE OF BATANGAS CITY
8136	3654	15478	24.00	SUPERVISORY	0		2022-05-04	2022-05-06	SCHOOLS DIVISION OFFICE OF BATANGAS CITY
8137	3654	15478	16.00	SUPERVISORY	0		2022-05-25	2022-05-26	SCHOOLS DIVISION OFFICE OF BATANGAS CITY
8138	3654	15482	24.00	SUPERVISORY	0		2022-01-14	2022-01-16	SCHOOLS DIVISION OFFICE OF BATANGAS CITY
8139	3654	15484	16.00	SUPERVISORY	0		2021-07-20	2021-07-21	DEPARTMENT OF EDUCATION REGION IV-A CALABARZON
8158	3650	15492	8.00	TECHNICAL 	0		2016-02-29	2016-02-29	GSIS  BATANGAS REGIONAL OFFICE 
8159	3650	15493	8.00	TECHNICAL 	0		2015-06-18	2018-06-18	DEPED BATANGAS CITY DIVISION 
8160	3650	15494	16.00	TECHNICAL 	0		2015-03-04	2015-03-05	DEPED BATANGAS CITY DIVISION 
8161	3650	15495	24.00	TECHNICAL 	0		2014-12-10	2014-12-12	DEPED BATANGAS CITY DIVISION 
8162	3652	15464	16.00	TECHNICAL	0		2014-05-22	2014-05-23	DEPARTMENT OF EDUCATION CENTRAL OFFICE
8163	3652	15467	16.00	TECHNICAL	0		2014-09-01	2014-09-02	DEPARTMENT OF EDUCATION OF DIVISION BATANGAS CITY
8164	3652	15471	32.00	TECHNICAL	0		2015-03-17	2015-03-20	DEPARTMENT OF EDUCATION CENTRAL OFFICE
8165	3652	15474	8.00	TECHNICAL	0		2015-04-07	2015-07-07	DEPARTMENT OF EDUCATION OF DIVISION BATANGAS CITY
8166	3650	15406	24.00	TECHNICAL 	0		2014-11-26	2014-11-28	DEPED BATANGAS CITY DIVISION 
8167	3650	15496	16.00	TECHNICAL 	0		2014-09-01	2014-09-02	DEPED BATANGAS CITY DIVISION 
8168	3650	15497	8.00	TECHNICAL 	0		2014-09-01	2014-09-01	GSIS CENTRAL OFFICE 
8169	3650	15498	24.00	TECHNICAL 	0		2014-06-18	2014-06-20	DEPED BATANGAS CITY
8170	3650	15499	16.00	TECHNICAL 	0		2014-03-26	2024-03-27	DEPED CENTRAL OFFICE 
8171	3650	15500	8.00	TECHNICAL 	0		2014-03-20	2014-03-20	DEPED REGION IV-A CALABARZON 
8172	3650	15501	16.00	TECHNICAL 	0		2014-02-20	2014-02-21	DEPED REGION IV -A / DEPARTMENT OF BUDGET AND MANAGEMENT 
8173	3650	15502	8.00	TECHNICAL 	0		2013-06-28	2013-06-28	DEPED BATANGAS CITY DIVISION 
8174	3650	15503	8.00	TECHNICAL 	0		2012-03-09	2012-03-09	GSIS BATANGAS REGIONAL OFFICE 
8175	3650	15504	8.00	TECHNICAL 	0		2008-07-25	2008-07-25	PHILIPPINE HEALTH INSURANCE CORPORATION 
8176	3650	15505	16.00	TECHNICAL 	0		2000-07-08	2000-07-09	LANDBANK OF THE PHILIPPINES - BATANGAS CITY BRANCH 
8177	3650	15506	8.00	TECHNICAL 	0		2000-03-11	2000-03-11	LANDBANK OF THE PHILIPPINES- CALAMBA BRANCH
8178	3650	15507	8.00	TECHNICAL 	0		1998-11-07	1998-11-07	LANDBANK OF THE PHILIPPINES 
8179	3650	15508	16.00	TECHNICAL 	0		1998-11-21	1998-11-22	LANDBANK OF THE PHILIPPPINES- BATANGAS CITY BRANCH
8180	3652	15511	40.00	TECHNICAL	0		2015-05-12	2015-05-13	DEPARTMENT OF EDUCATION OF DIVISION BATANGAS CITY
8181	3652	15514	8.00	TECHNICAL	0		2015-05-28	2015-05-28	DEPARTMENT OF EDUCATION REGIONAL OFFICE
8182	3652	15516	8.00	TECHNICAL	0		2015-06-18	2015-06-18	DEPARTMENT OF EDUCATION OF DIVISION BATANGAS CITY
8183	3652	15518	16.00	TECHNICAL	0		2016-01-19	2016-01-20	DEPARTMENT OF EDUCATION REGIONAL OFFICE
8184	3652	15520	16.00	TECHNICAL	0		2016-02-18	2016-02-19	DEPARTMENT OF EDUCATION OF DIVISION BATANGAS CITY
8185	3655	15509	24.00	TECHNICAL	0		2023-11-28	2023-11-30	DEPARTRMENT OF EDUCATION- CENTRAL OFIFCE
8186	3655	15510	8.00	TECHNICAL	0		2023-11-20	2023-11-20	DEPARTRMENT OF EDUCATION- BATANGAS CITY 
8187	3655	15512	32.00	MANAGERIAL	0		2023-09-26	2023-09-29	DEPARTRMENT OF EDUCATION- BATANGAS CITY 
8188	3655	15307	8.00	TECHNICAL	0		2023-09-22	2023-09-22	DEPARTRMENT OF EDUCATION- BATANGAS CITY 
8189	3655	15513	40.00	TECHNICAL	0		2023-08-14	2023-08-18	DEPARTRMENT OF EDUCATION- BATANGAS CITY 
8190	3655	15515	40.00	SUPERVISORY	0		2023-07-24	2023-07-28	DEPARTRMENT OF EDUCATION- BATANGAS CITY 
8191	3655	15517	40.00	MANAGERIAL	0		2023-02-20	2023-02-24	SEAETI
8192	3655	15519	64.00	SUPERVISORY	0		2021-05-17	2021-05-26	DEPARTRMENT OF EDUCATION- REGION IV A
8193	3655	15523	64.00	SUPERVISORY	0		2021-02-14	2021-02-26	DEPARTRMENT OF EDUCATION- REGION 4 A
8194	3656	15522	24.00	SUPERVISORY	0		2024-01-16	2024-01-19	DEPARTMENT OF EDUCATION COMPLEX, MERALCO AVENUE, PASIG CITY
8195	3656	15524	8.00	TECHNICAL	0		2023-12-11	2023-12-11	SCHOOLS DIVISION OF BATANGAS CITY
8196	3656	15525	16.00	SUPERVISORY	0		2023-12-04	2023-12-05	SCHOOLS DIVISION OF BATANGAS CITY
8197	3656	15526	16.00	MANAGERIAL	0		2023-12-04	2023-12-05	SCHOOLS DIVISION OF BATANGAS CITY
8198	3656	15528	24.00	MANAGERIAL	0		2023-11-29	2023-12-01	DEPARTMENT OF EDUCATION COMPLEX, MERALCO AVENUE, PASIG CITY
8199	3656	15044	8.00	SUPERVISORY	0		2023-01-22	2023-11-22	SCHOOLS DIVISION OF BATANGAS CITY
8200	3656	15529	8.00	MANAGERIAL	0		2023-10-02	2023-10-02	SCHOOLS DIVISION OF BATANGAS CITY
8201	3656	15530	24.00	TECHNICAL 	0		2023-10-02	2023-10-04	DEPARTMENT OF EDUCATION COMPLEX, MERALCO AVENUE, PASIG CITY
8202	3656	15531	32.00	SUPERVISORY	0		2023-09-26	2023-09-29	SCHOOLS DIVISION OF BATANGAS CITY
8203	3656	15532	32.00	SUPERVISORY	0		2023-09-20	2023-09-23	SCHOOLS DIVISION OF BATANGAS CITY
8204	3656	15533	24.00	TECHNICAL	0		2023-08-20	2023-08-22	ASSOCIATION OF DEPED DIRECTORS (ADD), INC.
8205	3656	15534	24.00	MANAGERIAL	0		2023-08-09	2023-08-11	SCHOOLS DIVISION OF BATANGAS CITY
8206	3656	15535	8.00	SUPERVISORY	0		2023-08-08	2023-08-08	SCHOOLS DIVISION OF BATANGAS CITY
8207	3656	15536	8.00	TECHNICAL	0		2023-08-01	2023-08-01	SCHOOLS DIVISION OF BATANGAS CITY
8208	3656	15308	16.00	MANAGERIAL	0		2023-07-21	2023-07-22	SCHOOLS DIVISION OF BATANGAS CITY
8209	3656	15539	8.00	TECHNICAL	0		2023-07-07	2023-07-07	SCHOOLS DIVISION OF BATANGAS CITY
8210	3656	15541	8.00	TECHNICAL	0		2023-07-06	2023-07-06	SCHOOLS DIVISION OF BATANGAS CITY
8211	3656	15543	8.00	SUPERVISORY	0		2023-07-05	2023-07-05	DEPARTMENT OF EDUCATION COMPLEX, MERALCO AVENUE, PASIG CITY
8212	3656	15546	24.00	MANAGERIAL	0		2023-07-19	2023-07-21	DEPARTMENT OF EDUCATION COMPLEX, MERALCO AVENUE, PASIG CITY
8213	3656	15548	24.00	SUPERVISORY	0		2022-12-05	2022-12-07	REGION IV-A CALABARZON GATE 2 KARANGALAN VILLAGE, CAINTA RIZAL
8214	3656	15551	24.00	TECHNICAL	0		2022-02-21	2022-02-23	REGION IV-A CALABARZON GATE 2 KARANGALAN VILLAGE, CAINTA RIZAL
8215	3655	15527	320.00	TECHNICAL	0		2020-08-06	2021-09-30	DEPARTMENT OF EDUCATION- REGION IV A
8216	3655	15537	16.00	TECHNICAL	0		2018-05-17	2018-08-18	DEPARTMENT OF EDUCATION-BATANGAS CITY
8217	3655	15540	24.00	TECHNICAL	0		2018-03-01	2018-03-02	DEPARTMENT OF EDUCATION-BATANGAS CITY
8218	3655	15544	24.00	TECHNICAL	0		2017-12-04	2017-12-06	DEPARTMENT OF EDUCATION-REGION IV A
8219	3655	15550	24.00	SUPERVISORY	0		2017-07-23	2017-07-25	DEPARTMENT OF EDUCATION- REGION IV A
8220	3655	15552	24.00	SUPERVISORY	0		2017-06-26	2017-06-28	DEPARTMENT OF EDUCATION- REGION IV A
8221	3655	15264	16.00	TECHNICAL	0		2017-04-25	2017-04-26	DEPARTMENT OF EDUCATION-BATANGAS CITY
8222	3655	15554	48.00	SUPERVISORY	0		2016-11-10	2016-12-17	DEPARTMENT OF EDUCATION-BATANGAS CITY
8223	3655	15556	4.00	TECHNICAL	0		2016-10-28	2016-10-28	DEPARTMENT OF EDUCATION-BATANGAS CITY
8224	3655	15557	4.00	TECHNICAL	0		2016-12-13	2016-12-13	CONDE LABAC NATIONAL HIGH SCHOOL
8225	3655	15559	32.00	TECHNICAL	0		2016-06-09	2016-06-09	DEPARTMENT OF EDUCATION-REGION IV A
8226	3655	15561	144.00	TECHNICAL	0		2016-05-23	2016-06-09	DEPARTMENT OF EDUCATION-REGION IV A
8227	3651	15232	16.00	TECHNICAL 	0		2024-01-11	2024-01-12	DEPARTMENT OF EDUCATION SDO BATANGAS CITY 
8228	3651	15044	8.00	MANAGERIAL 	0		2023-11-22	2023-11-22	DEPARTMENT OF EDUCATION SDO BATANGAS CITY
8229	3651	15538	16.00	TECHNICAL 	0		2023-11-21	2023-11-22	DEPARTMENT OF EDUCATION REGION IV A CALABARZON 
8230	3651	15542	8.00	MANAGERIAL 	0		2023-11-11	2023-11-11	GOLDEN GATE COLLEGES 
8231	3651	15545	24.00	MANAGERIAL 	0		2023-10-11	2023-10-11	DEPARTMENT OF EDUCATION REGION IV A CALABARZON 
8232	3651	15547	8.00	MANAGERIAL 	0		2023-10-28	2023-10-28	GOLDEN GATE COLLEGES 
8233	3651	15549	16.00	TECHNICAL 	0		2023-05-29	2023-05-30	DEPARTMENT OF EDUCATION REGION IV A CALABARZON 
8234	3651	15046	24.00	TECHNICAL 	0		2023-05-15	2023-05-17	DEPARTMENT OF EDUCATION SDO BATANGAS CITY 
8235	3651	15047	8.00	TECHNICAL 	0		2023-03-30	2023-03-30	DEPARTMENT OF EDUCATION SDO BATANGAS CITY 
8236	3651	15553	8.00	TECHNICAL 	0		2023-03-29	2023-03-29	DEPARTMENT OF EDUCATION SDO BATANGAS CITY 
8237	3651	15151	24.00	TECHNICAL 	0		2023-03-21	2023-03-23	DEPARTMENT OF EDUCATION SDO BATANGAS CITY 
8238	3651	15114	3.00	TECHNICAL 	0		2023-02-20	2023-02-20	DEPARTMENT OF EDUCATION SDO BATANGAS CITY 
8239	3651	15558	8.00	TECHNICAL 	0		2023-01-24	2023-01-24	DEPARTMENT OF EDUCATION SDO BATANGAS CITY 
8240	3651	15560	8.00	TECHNICAL 	0		2023-01-17	2023-01-17	DEPARTMENT OF EDUCATION SDO BATANGAS CITY 
8241	3651	15124	24.00	TECHNICAL 	0		2022-11-16	2022-11-18	DEPARTMENT OF EDUCATION REGION IV A CALABARZON  
8242	3651	15562	24.00	MANAGERIAL 	0		2022-10-12	2022-10-14	DEPARTMENT OF EDUCATION REGION IV A CALABARZON  
8243	3651	15563	8.00	MANAGERIAL 	0		2022-08-11	2022-08-11	DEPARTMENT OF EDUCATION SDO BATANGAS CITY
8244	3651	15231	8.00	MANAGERIAL 	0		2022-06-30	2022-06-30	DEPARTMENT OF EDUCATION SDO BATANGAS CITY
8245	3651	15236	24.00	MANAGERIAL 	0		2022-03-09	2022-03-11	DEPARTMENT OF EDUCATION REGION IV A CALABARZON 
8246	3651	15258	12.00	MANAGERIAL 	0		2022-03-04	2022-03-07	DEPARTMENT OF EDUCATION SDO BATANGAS CITY 
8247	3651	15566	8.00	TECHNICAL  	0		2022-02-21	2022-02-21	DEPARTMENT OF EDUCATION REGION IV A CALABARZON 
8248	3651	15567	8.00	MANAGERIAL 	0		2022-02-07	2022-02-07	DEPARTMENT OF EDUCATION REGION IV A CALABARZON 
8249	3651	15568	4.00	TECHNICAL 	0		2021-11-15	2021-11-25	DEPARTMENT OF EDUCATION SDO BATANGAS CITY 
8250	3651	15053	40.00	MANAGERIAL 	0		2021-11-15	2021-11-19	DEPARTMENT OF EDUCATION REGION IV A CALABARZON 
8251	3651	15562	16.00	MANAGERIAL 	0		2021-10-07	2021-10-08	DEPARTMENT OF EDUCATION REGION IV A CALABARZON
8252	3651	15054	24.00	MANAGERIAL 	0		2021-08-17	2021-08-19	DEPARTMENT OF EDUCATION SDO BATANGAS CITY
8253	3651	15359	24.00	MANAGERIAL 	0		2021-07-28	2021-07-30	DEPARTMENT OF EDUCATION CENTRAL OFFICE 
8254	3651	15571	8.00	TECHNICAL 	0		2021-06-04	2021-06-04	DEPARTMENT OF EDUCATION CENTRAL OFFICE
8255	3651	15572	8.00	TECHNICAL 	0		2021-04-30	2021-04-30	DEPARTMENT OF EDUCATION CENTRAL OFFICE
8256	3651	15573	24.00	TECHNICAL 	0		2021-01-20	2021-01-22	DEPARTMENT OF EDUCATION REGION IV A CALABARZON 
8257	3651	15120	24.00	TECHNICAL 	0		2020-09-03	2020-09-05	PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS 
8270	3659	15044	8.00	TECHNICAL 	0		2023-11-22	2023-11-22	SCHOOLS DIVISION OFFICE OF BATANGAS CITY 
8271	3659	15113	24.00	TECHNICAL 	0		2023-09-11	2023-09-13	SCHOOLS DIVISION OFFICE OF BATANGAS CITY 
8272	3659	15101	8.00	TECHNICAL 	0		2023-03-30	2023-03-30	SCHOOLS DIVISION OFFICE OF BATANGAS CITY 
8273	3659	15582	40.00	TECHNICAL 	0		2023-01-26	2023-03-03	DEPARTMENT OF INFORMATION AND COMMUNICATION TECHNOLOGY 
8274	3659	15047	8.00	TECHNICAL 	0		2023-03-30	2023-03-30	SCHOOLS DIVISION OFFICE OF BATANGAS CITY 
8275	3659	15584	40.00	TECHNICAL 	0		2022-10-24	2022-10-28	CHILD PROTECTION UNIT 
8276	3659	15584	40.00	TECHNICAL 	0		2022-10-17	2022-10-21	CHILD PROTECTION UNIT 
8277	3659	15586	40.00	TECHNICAL 	0		2021-11-22	2021-11-27	BUREAU OF LEARNING DELIVERY 
8278	3659	15587	40.00	TECHNICAL 	0		2021-12-06	2021-12-11	BUREAU OF LEARNING DELIVERY 
8279	3659	15589	40.00	TECHNICAL 	0		2021-12-13	2021-12-18	BUREAU OF LEARNING DELIVERY 
8280	3659	15590	5.00	TECHNICAL 	0		2022-11-29	2022-11-29	DEPARTMENT OF INFORMATION AND COMMUNICATION TECHNOLOGY 
8281	3659	15592	5.00	TECHNICAL 	0		2022-11-28	2022-11-28	DEPARTMENT OF INFORMATION AND COMMUNICATION TECHNOLOGY
8282	3659	15593	25.00	TECHNICAL 	0		2022-09-26	2022-09-30	DEPARTMENT OF INFORMATION AND COMMUNICATION TECHNOLOGY
8283	3659	15594	14.00	TECHNICAL 	0		2022-04-12	2022-04-13	CYBERSECURITY AND INFRASTRUCTURE SECURITY AGENCY 
8284	3659	15225	8.00	TECHNICAL 	0		2022-06-30	2022-06-30	SCHOOLS DIVISION OF BATANGAS CITY 
8258	3658	15044	8.00	TECHNICAL 	0		2023-11-22	2023-11-22	DEPARTMENT OF EDUCATION SDO BATANGAS CITY
8259	3658	15303	8.00	TECHNICAL	0		2023-11-17	2023-11-17	DEPARTMENT OF EDUCATION SDO BATANGAS CITY
8260	3658	15113	24.00	TECHNICAL	0		2023-09-11	2023-09-13	DEPARTMENT OF EDUCATION SDO BATANGAS CITY
8261	3658	15531	32.00	SUPERVISORY	0		2023-09-26	2023-09-26	DEPARTMENT OF EDUCATION SDO BATANGAS CITY
8262	3658	15574	40.00	SUPERVISORY	0		2023-08-14	2023-08-18	DEPARTMENT OF EDUCATION SDO BATANGAS CITY
8263	3658	15575	8.00	SUPERVISORY	0		2023-03-10	2023-03-10	DEPARTMENT OF EDUCATION SDO BATANGAS CITY
8264	3658	15576	24.00	MANAGERIAL	0		2023-01-24	2023-01-26	PUBLIC SCHOOLS DISTRICT SUPERVISORS ASSOCIATION INC.
8265	3658	15577	40.00	SUPERVISORY	0		2022-03-28	2022-04-05	DEPARTMENT OF EDUCATION SDO BATANGAS CITY
8266	3658	15219	8.00	TECHNICAL	0		2022-06-30	2022-06-30	DEPARTMENT OF EDUCATION SDO BATANGAS CITY
8267	3658	15578	16.00	TECHNICAL	0		2022-06-09	2022-06-10	DEPARTMENT OF EDUCATION SDO BATANGAS CITY
8268	3658	15298	24.00	MANAGERIAL 	0		2022-01-12	2022-01-14	DEPARTMENT OF EDUCATION SDO BATANGAS CITY
8269	3658	15579	32.00	SUPERVISORY 	0		2021-10-05	2021-10-08	DEPARTMENT OF EDUCATION R4-A CALABARZON
8285	3660	15417	8.00	TECHNICAL	0		2023-09-12	2023-09-12	THE ONLY PLACES RESTAURANT 
8286	3660	15217	16.00	PARTICIPANT	0		2023-11-12	2023-12-12	CITY TRAVEL HOTEL KISAD ROAD, BATANGAS CITY
8287	3660	15107	8.00	TECHNICAL	0		2023-11-23	2023-11-23	BATANGAS CITY SPORTS COLISEUM
8288	3660	15044	8.00	TECHNICAL	0		2023-11-22	2023-11-22	BULWAGANG ALA-EH, SDO BATANGAS CITY
8289	3660	15079	24.00	PARTICIPANT	0		2023-09-11	2023-09-13	M.I SEVILLA'S RESORT, LUCENA CITY
8290	3660	15308	16.00	TECHNICAL	0		2023-07-21	2023-07-21	BULWAGANG ALA-EH, SDO BATANGAS CITY 
8291	3660	15420	8.00	TECHNICAL	0		2023-07-06	2023-07-06	BULWAGANG ALA-EH, SDO BATANGAS CITY
8292	3660	15421	8.00	TECHNICAL	0		2023-05-19	2023-05-19	SDO BATANGAS CITY, LIBRARY HUB
8293	3660	15047	8.00	TECHNICAL 	0		2023-03-30	2023-03-30	BATIS ARAMIN, RESORT AND HOTEL, LUCBAN QUEZON
8294	3657	15580	16.00	TECHNICAL	0		2024-01-11	2024-01-12	SDO BATANGAS CITY
8295	3657	15113	24.00	TECHNICAL	0		2023-09-11	2023-09-13	SDO BATANGAS CITY
8296	3657	15581	32.00	SUPERVISORY	0		2023-09-27	2023-09-29	SDO BATANGAS CITY
8297	3657	15583	8.00	SUPERVISORY	0		2023-08-11	2023-08-11	SDO BATANGAS CITY
8298	3657	15585	32.00	TECHNICAL	0		2022-07-26	2022-07-29	DEPARTMENT OF EDUCATION- REGION IV A
8299	3657	15588	16.00	SUPERVISORY/ TECHNICAL	0		2022-04-23	2022-05-07	SDO BATANGAS CITY
8300	3657	15588	16.00	SUPERVISORY/TECHNICAL	0		2022-04-30	2022-05-14	SDO BATANGAS CITY
8301	3657	15591	56.00	SUPERVISORY/TECHNICAL	0		2022-08-03	2022-08-11	SDO BATANGAS CITY
8302	3657	15595	32.00	TECHNICAL	0		2022-09-26	2022-09-30	DEPARTMENT OF EDUCATION, BUREAU OF LEARNING RESOURCES
8303	3657	15289	8.00	MANAGERIAL	0		2022-06-30	2022-06-30	SDO BATANGAS CITY
8304	3657	15596	20.00	TECHNICAL	0		2021-03-01	2021-03-05	DEPARTMENT OF EDUCATION- REGION IV A
8305	3657	15597	32.00	SUPERVISORY	0		2021-02-22	2022-02-25	COUNCIL FOR THE RESTORATION OF FILIPINO VALUES
8306	3657	15598	8.00	SUPERVISORY	0		2021-11-04	2021-11-04	SDO BATANGAS CITY
8307	3657	15599	32.00	SUPERVISORY	0		2021-10-18	2021-10-29	THAMES INTERNATIONAL
8308	3657	15600	4.00	SUPERVISORY	0		2021-10-01	2021-10-01	DEPARTMENT OF EDUCATION, BUREAU OF CURRICULUM DEVELOMENT
8309	3657	15601	8.00	SUPERVISORY	0		2021-09-03	2021-09-23	DEPARTMENT OF EDUCATION- REGION IV A
8310	3657	15602	12.00	TECHNICAL	0		2021-03-24	2021-03-26	DEPARTMENT OF EDUCATION- REGION IV A
8311	3663	15417	8.00	TECHNICAL	0		2023-09-12	2023-09-12	THE PLACE RESTAURANT
8312	3663	15217	16.00	PARTICIPANT	0		2023-11-12	2023-12-12	CITY TRAVEL HOTEL KISAD ROAD , BAGUIO CITY
8313	3663	15107	8.00	TECHNICAL	0		2023-11-23	2023-11-23	BATANGAS CITY SPORTS COLLISEUM
8314	3663	15178	8.00	TECHNICAL	0		2023-11-22	2023-11-22	BULWAGANG ALA EH , SDO BATANGAS CITY
8315	3663	15079	24.00	PARTICIPANT	0		2023-11-09	2023-11-09	M.I. SEVILLA'S RESORT ,LUCENA CITY
8316	3663	15308	16.00	TECHNICAL	0		2023-07-21	2023-07-22	BULWAGANG ALA EH , SDO BATANGAS CITY
8317	3663	15420	8.00	TECHNICAL	0		2023-06-07	2023-06-07	BULWAGANG ALA EH, SDO BATANGAS CITY
8318	3663	15421	8.00	TECHNICAL	0		2023-05-19	2023-05-19	SDO BATANGAS CITY, LIBRARY HUB
8319	3663	15101	8.00	TECHNICAL	0		2023-03-30	2023-03-30	BATIS ARAMIN ,RESORT AND ,HOTEL , LUCBAN QUEZON
8320	3662	15604	24.00	MANAGERIAL	0		2024-01-29	2024-01-31	DEPARTMENT OF EDUCATION BATANGAS CITY
8321	3662	15605	32.00	MANAGERIAL	0		2024-01-24	2024-01-27	DEPARTMENT OF EDUCATION BATANGAS CITY
8322	3662	15606	16.00	TECHNICAL	0		2023-12-04	2023-12-05	DEPARTMENT OF EDUCATION BATANGAS CITY
8323	3662	15044	8.00	TECHNICAL	0		2023-11-22	2023-11-22	DEPARTMENT OF EDUCATION BATANGAS CITY
8324	3662	15529	8.00	TECHNICAL	0		2023-10-02	2023-10-02	DEPARTMENT OF EDUCATION BATANGAS CITY
8325	3662	15607	8.00	TECHNICAL	0		2023-11-17	2023-11-17	DEPARTMENT OF EDUCATION BATANGAS CITY
8326	3662	15113	24.00	TECHNICAL	0		2023-09-11	2023-09-13	DEPARTMENT OF EDUCATION BATANGAS CITY
8327	3662	15531	32.00	TECHNICAL	0		2023-09-26	2023-09-29	DEPARTMENT OF EDUCATION BATANGAS CITY
8328	3662	15608	8.00	MANAGERIAL	0		2023-07-06	2023-07-06	DEPARTMENT OF EDUCATION BATANGAS CITY
8329	3662	15609	24.00	MANAGERIAL	0		2023-07-18	2023-07-20	DEPARTMENT OF EDUCATION BATANGAS CITY
8330	3662	15610	16.00	MANAGERIAL	0		2023-07-21	2023-07-22	DEPARTMENT OF EDUCATION BATANGAS CITY
8331	3662	15515	40.00	TECHNICAL	0		2023-07-24	2023-07-28	DEPARTMENT OF EDUCATION BATANGAS CITY
8332	3662	15465	24.00	TECHNICAL	0		2023-08-15	2023-08-17	DEPARTMENT OF EDUCATION BATANGAS CITY
8333	3662	15534	24.00	TECHNICAL 	0		2023-08-09	2023-09-11	DEPARTMENT OF EDUCATION BATANGAS CITY
8334	3662	15546	24.00	PARTICIPANT 	0		2023-06-19	2023-06-21	DEPARTMENT OF EDUCATION
8335	3662	15611	40.00	PARTICIPANT 	0		2023-06-28	2023-07-01	DEPARTMENT OF EDUCATION 
8336	3662	15612	40.00	TECHNICAL	0		2023-03-13	2023-03-17	DEPARTMENT OF EDUCATION BATANGAS CITY
8337	3662	15591	24.00	TECHNICAL	0		2023-08-03	2023-08-05	DEPARTMENT OF EDUCATION BATANGAS CITY
8338	3662	15101	8.00	TECHNICAL 	0		2023-03-30	2023-03-30	DEPARTMENT OF EDUCATION BATANGAS CITY
8339	3662	15614	16.00	TECHNICAL	0		2023-05-08	2023-05-09	DEPARTMENT OF EDUCATION BATANGAS CITY
8340	3665	15168	24.00	SUPERVISORY	0		2023-09-11	2023-09-13	DEPARTMENT OF EDUCATION
8341	3665	15617	24.00	SUPERVISORY	0		2023-07-18	2023-07-20	DEPARTMENT OF EDUCATION
8342	3665	15421	8.00	SUPERVISORY	0		2023-05-19	2023-05-19	DEPARTMENT OF EDUCATION
8343	3665	15046	24.00	SUPERVISORY	0		2023-05-15	2023-05-17	DEPARTMENT OF EDUCATION
8344	3665	15619	16.00	SUPERVISORY	0		2023-05-08	2023-05-09	DEPARTMENT OF EDUCATION
8345	3665	15621	40.00	SUPERVISORY	0		2023-03-20	2023-03-24	DEPARTMENT OF EDUCATION
8346	3665	15623	40.00	SUPERVISORY 	0		2022-03-28	2022-04-05	DEPARTMENT OF EDUCATION
8390	3667	15641	16.00	SUPERVISORY 	0		2024-01-29	2024-01-30	SDO BATANGAS CITY 
8391	3667	15643	32.00	SUPERVISORY 	0		2024-01-24	2024-01-27	SDO BATANGAS CITY 
8392	3667	15580	16.00	TECHNICAL  	0		2024-01-11	2024-01-12	SDO BATANGAS CITY 
8393	3667	15638	16.00	SUPERVISORY 	0		2023-12-04	2023-12-05	SDO BATANGAS CITY 
8394	3667	15645	60.00	SUPERVISORY 	0		2023-11-06	2023-11-10	DEPED REGION OFFICE 
8395	3667	15646	32.00	SUERVISORY 	0		2023-11-14	2023-11-17	DEPED CENTRAL OFFICE 
8396	3667	15647	16.00	SUPERVISORY 	0		2023-11-23	2023-11-24	DEPED REGION OFFICE 
8397	3667	15168	24.00	TECHNICAL 	0		2023-09-11	2023-09-13	SDO BATANGAS CITY 
8398	3667	15649	8.00	TECHNICAL 	0		2023-10-12	2023-10-12	SDO BATANGAS CITY 
8399	3667	15651	16.00	TECHNICAL 	0		2023-09-25	2023-09-26	SDO BATANGAS CITY 
8400	3667	15652	32.00	SUPERVISORY 	0		2023-09-27	2023-09-29	SDO BATANGAS CITY 
8402	3667	15657	32.00	TECHNICAL 	0		2023-08-15	2023-08-17	SDO BATANGAS CITY 
8403	3667	15658	8.00	SUPERVISORY 	0		2023-08-11	2023-08-11	SDO BATANGAS CITY 
8404	3667	15659	60.00	SUPERVISORY 	0		2023-07-24	2023-07-28	DEPED CENTRAL OFFICE 
8347	3664	15604	24.00	SUPERVISORY	0		2024-01-29	2024-01-31	DEPARTMENT OF EDUCATION- BATANGAS CITY
8348	3664	15044	8.00	MANAGERIAL	0		2023-11-22	2023-11-22	DEPARTMENT OF EDUCATION- BATANGAS CITY
8349	3664	15113	24.00	TECHNICAL 	0		2023-09-11	2023-09-13	DEPARTMENT OF EDUCATION- BATANGAS CITY
8350	3664	15531	24.00	SUPERVISORY	0		2023-09-26	2023-09-29	DEPARTMENT OF EDUCATION- BATANGAS CITY
8351	3664	15534	24.00	SUPERVISORY	0		2023-08-09	2023-08-11	DEPARTMENT OF EDUCATION- BATANGAS CITY
8352	3664	15574	40.00	SUPERVISORY 	0		2023-08-14	2023-08-18	DEPARTMENT OF EDUCATION- BATANGAS CITY
8353	3664	15617	24.00	SUPERVISORY	0		2023-07-18	2023-07-20	DEPARTMENT OF EDUCATION- BATANGAS CITY
8354	3664	15515	40.00	SUPERVISORY	0		2023-07-24	2023-07-28	DEPARTMENT OF EDUCATION- BATANGAS CITY
8355	3664	15101	8.00	TECHNICAL 	0		2023-03-30	2023-03-30	DEPARTMENT OF EDUCATION- BATANGAS CITY
8356	3664	15555	24.00	SUPERVISORY	0		2023-03-21	2023-03-23	DEPARTMENT OF EDUCATION- BATANGAS CITY
8357	3664	15631	32.00	MANAGERIAL	0		2023-02-21	2023-02-24	DEPARTMENT OF EDUCATION- CALABARZON
8358	3664	15114	3.00	TECHNICAL	0		2023-02-20	2023-02-20	DEPARTMENT OF EDUCATION- BATANGAS CITY
8359	3664	15612	40.00	SUPERVISORY	0		2023-03-13	2023-03-17	DEPARTMENT OF EDUCATION- BATANGAS CITY
8360	3664	15633	24.00	SUPERVISORY	0		2023-08-03	2023-08-05	ENHANCING THE CAPACITY OF SCHOOL HEADSAND TEACHERS IN THE IMPLMENTATION OF PROFESSIONAL VIA SCHOOL LEARNING ACTION CELL-CLUSTER
8361	3666	15618	32.00	SUPERVISION 	0		2024-01-24	2024-01-27	DEPARTMENT OF EDUCATION BATANGAS CITY
8362	3666	15620	32.00	SUPERVISION	0		2023-09-26	2023-09-26	DEPARTMENT OF EDUCATION BATANGAS CITY
8363	3666	15620	32.00	SUPERVISION 	0		2023-09-20	2023-09-20	DEPARTMENT OF EDUCATION BATANGAS CITY
8364	3666	15624	24.00	SUPERVISION	0		2023-08-15	2023-08-17	DEPARTMENT OF EDUCATION BATANGAS CITY
8365	3666	15626	16.00	SUPERVISION	0		2023-07-21	2023-07-22	DEPARTMENT OF EDUCATION BATANGAS CITY
8366	3666	15609	16.00	SUPERVISION	0		2023-07-18	2023-07-20	DEPARTMENT OF EDUCATION BATANGAS CITY
8367	3666	15546	24.00	SUPERVISION	0		2023-06-19	2023-06-21	DEPARTMENT OF EDUCATION
8368	3666	15627	8.00	MANAGERIAL	0		2023-06-10	2023-06-10	DEPARTMENT OF EDUCATION BATANGAS CITY
8369	3666	15628	24.00	SUPERVISION	0		2023-06-01	2023-06-03	DEPARTMENT OF EDUCATION
8370	3666	15629	40.00	SUPERVISION	0		2023-03-20	2023-03-24	DEPARTMENT OF EDUCATION REGION IV-A CALABARZON
8371	3666	15632	40.00	TECHNICAL	0		2022-11-21	2022-11-25	DEPARTMENT OF EDUCATION REGION IV-A CALABARZON
8372	3666	15174	8.00	SUPERVISION	0		2022-09-07	2022-09-07	DEPARTMENT OF EDUCATION REGION IV-A CALABARZON
8373	3666	15578	16.00	TECHNICAL 	0		2022-06-09	2022-06-10	DEPARTMENT OF EDUCATION BATANGAS CITY
8374	3666	15634	24.00	SUPERVISION	0		2022-06-08	2023-06-10	DEPARTMENT OF EDUCATION BATANGAS CITY
8375	3666	15478	24.00	SUPERVISION	0		2022-05-04	2022-05-06	DEPARTMENT OF EDUCATION BATANGAS CITY
8376	3666	15567	8.00	MANAGERIAL	0		2022-02-07	2022-02-07	DEPARTMENT OF EDUCATION REGION IV-A CALABARZON
8377	3666	15635	56.00	MANAGERIAL	0		2021-12-08	2021-12-19	DEPARTMENT OF EDUCATION 
8378	3666	15636	48.00	SUPERVISION 	0		2021-11-03	2021-11-08	DEPARTMENT OF EDUCATION BATANGAS CITY
8379	3666	15637	96.00	SUPERVISION	0		2021-10-18	2021-10-29	DEPARTMENT OF EDUCATION
8380	3666	15638	24.00	SUPERVISION	0		2021-10-12	2021-10-14	DEPARTMENT OF EDUCATION BATANGAS CITY
8381	3666	15639	24.00	SUPERVISION	0		2021-10-06	2021-10-08	DEPARTMENT OF EDUCATION REGION IV-A CALABARZON
8382	3666	15640	8.00	MANAGERIAL	0		2021-10-20	2021-10-20	DEPARTMENT OF EDUCATION BATANGAS CITY
8383	3666	15642	8.00	MANAGERIAL	0		2021-09-23	2021-09-23	DEPARTMENT OF EDUCATION REGION IV-A CALABARZON 
8384	3666	15644	32.00	MANAGERIAL	0		2021-09-17	2021-09-20	BATANGAS STATE UNIVERSITY
8385	3666	15054	24.00	MANAGERIAL	0		2021-08-17	2021-08-19	DEPARTMENT OF EDUCATION REGION IV-A CALABARZON 
8386	3666	15648	4.00	MANAGERIAL	0		2021-05-20	2021-05-20	DEPARTMENT OF EDUCATION REGION IV-A CALABARZON
8387	3666	15650	16.00	TECHNICAL	0		2021-02-18	2021-02-19	DEPARTMENT OF EDUCATION BATANGAS CITY
8388	3666	15653	8.00	MANAGERIAL	0		2021-02-09	2021-02-09	DEPARTMENT OF EDUCATION REGION IV-A CALABARZON
8389	3666	15656	16.00	TECHNICAL	0		2021-02-01	2021-02-04	COOPERATIVE UNION OF BATANGAS
8405	3669	15232	16.00	PARTICIPANT 	0		2024-01-11	2024-01-11	SDO BATANGAS CITY 
8406	3669	15114	8.00	PARTICIPANT 	0		2023-02-20	2023-02-20	SDO BATANGAS CITY 
8407	3669	15101	8.00	PARTICIPANT 	0		2023-03-30	2023-03-30	SDO BATANGAS CITY 
8408	3669	15421	8.00	PARTICIPANT 	0		2023-05-19	2023-05-19	SDO BATANGAS CITY 
8409	3669	15660	16.00	PARTICIPANT	0		2023-04-24	2023-04-25	SDO BATANGAS CITY 
8410	3669	15299	8.00	PARTICIPANT 	0		2023-07-06	2023-07-06	SDO BATANGAS CITY 
8411	3669	15574	45.00	PARTICIPANT 	0		2023-08-14	2023-08-18	SDO BATANGAS CITY 
8412	3669	15662	64.00	PARTICIPANT 	0		2022-03-28	2022-04-05	SDO BATANGAS CITY 
8413	3669	15663	16.00	PARTICIPANT 	0		2022-04-11	2022-04-12	SDO BATANGAS CITY 
8414	3669	15664	8.00	PARTICIPANT 	0		2022-05-20	2022-05-20	SDO BATANGAS CITY 
8415	3669	15478	40.00	PARTICIPANT 	0		2022-05-04	2022-05-26	SDO BATANGAS CITY 
8416	3669	15174	8.00	PARTICIPANT 	0		2022-09-07	2022-09-07	SDO BATANGAS CITY 
8417	3669	15665	40.00	TECHNICAL	0		2022-11-02	2022-11-06	SDO BATANGAS CITY 
8418	3670	15667	8.00	MANAGERIAL 	0		2024-02-01	2024-02-01	SDO BATANGAS CITY 
8419	3670	15668	8.00	LEADERSHIP 	0		2024-04-01	2024-04-01	REGIONAL OFFICE ( IV-A) DEPARTMENT OF EDUCATION 
8420	3670	15232	16.00	MANAGERIAL 	0		2024-01-11	2024-01-12	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8421	3670	15670	8.00	LEADERSHIP 	0		2023-11-17	2023-11-17	REGIONAL OFFICE ( IV-A) DEPARTMENT OF EDUCATION 
8422	3670	15671	8.00	INSTRUCTIONAL 	0		2023-10-12	2023-10-12	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8423	3670	15512	24.00	INSTRUCTIONAL 	0		2023-09-26	2023-09-29	REGIONAL OFFICE ( IV-A) DEPARTMENT OF EDUCATION, NEAR MALVAR 
8424	3670	15141	24.00	SUPERVISORY 	0		2023-09-11	2023-09-13	DEPARTMENT OF EDUCATION, BATANGAS CITY  
8425	3670	15673	8.00	LEADERSHIP 	0		2023-09-08	2023-09-08	REGIONAL OFFICE ( IV-A) DEPARTMENT OF EDUCATION
8426	3670	15675	16.00	INSTRUCTIONAL 	0		2023-08-24	2023-08-25	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8427	3670	15676	8.00	TECHNICAL 	0		2023-08-23	2023-08-23	DEPARTMENT OF EDUCATION, BATANGAS CITY
8428	3670	15679	40.00	SUPERVISORY	0		2023-08-14	2023-08-18	DEPARTMENT OF EDUCATION, BATANGAS CITY
8429	3670	15682	24.00	LEADERSHIP 	0		2023-08-09	2023-08-11	DEPARTMENT OF EDUCATION, BATANGAS CITY
8430	3670	15683	40.00	SUPERVISORY 	0		2023-07-24	2023-07-28	DEPARTMENT OF EDUCATION, BATANGAS CITY
8431	3670	15685	24.00	INSTRUCTIONAL 	0		2023-07-18	2023-07-20	DEPARTMENT OF EDUCATION, BATANGAS CITY
8432	3670	15046	24.00	LEADERSHIP 	0		2023-05-15	2023-05-17	SDO BATANGAS CITY 
8433	3670	15686	40.00	INSTRUCTIONAL 	0		2023-04-11	2023-04-15	SDO BATANGAS CITY 
8434	3670	15101	8.00	SUPERVISORY 	0		2023-03-30	2023-03-30	SDO BATANGAS CITY 
8435	3670	15689	24.00	SUPERVISORY 	0		2023-03-21	2023-03-23	SDO BATANGAS CITY 
8436	3670	15690	8.00	SUPERVISORY 	0		2023-03-01	2023-03-01	SDO BATANGAS CITY 
8437	3670	15692	40.00	INSTRUCTIONAL 	0		2022-07-25	2022-07-29	SDO BATANGAS CITY 
8438	3668	15666	32.00	TECHNICAL	0		2023-12-12	2023-12-15	DEPARTMENT OF EDUCATION, REGION IV A 
8439	3668	15669	32.00	MANAGEMENT	0		2023-11-14	2023-11-17	DEPARTMENT OF EDUCATION, REGION IV A
8440	3668	15672	24.00	MANAGEMENT 	0		2023-11-22	2023-11-24	DEPARTMENT OF EDUCATION, BATANGAS CITY
8441	3668	15674	48.00	MANAGEMENT	0		2023-11-27	2023-12-02	DEPARTMENT OF EDUCATION, CENTRAL OFFICE
8442	3668	15677	32.00	MANAGEMENT	0		2023-10-03	2023-10-06	DEPARTMENT OF EDUCATION, REGION IV A
8443	3668	15113	16.00	MANAGEMENT	0		2023-09-11	2023-09-12	DEPARTMENT OF EDUCATION, REGION IV A
8444	3668	15680	24.00	MANAGEMENT	0		2023-09-13	2023-09-15	DEPARTMENT OF EDUCATION, BATANGAS CITY
8445	3668	15681	32.00	SUPERVISORY	0		2023-09-26	2023-09-29	DEPARTMENT OF EDUCATION, BATANGAS CITY
8446	3668	15684	24.00	MANAGEMENT	0		2023-08-01	2023-08-03	DEPARTMENT OF EDUCATION, BATANGAS CITY
8447	3668	15574	24.00	MANAGEMENT	0		2023-08-14	2023-08-16	DEPARTMENT OF EDUCATION, REGION IV A
8448	3668	15687	8.00	TECHNICAL	0		2023-07-28	2023-07-28	DEPARTMENT OF EDUCATION, BATANGAS CITY
8449	3668	15688	16.00	TECHNICAL	0		2023-05-08	2023-05-09	DEPARTMENT OF EDUCATION, BATANGAS CITY
8450	3668	15691	24.00	TECHNICAL	0		2023-05-26	2023-05-28	DEPARTMENT OF EDUCATION, BATANGAS CITY
8451	3668	15693	24.00	TECHNICAL	0		2023-04-12	2023-04-14	DEPARTMENT OF EDUCATION, REGION IV A
8452	3668	15555	24.00	MANAGEMENT	0		2023-03-21	2023-03-23	DEPARTMENT OF EDUCATION, CENTRAL OFFICE
8453	3668	15101	8.00	MANAGEMENT	0		2023-03-30	2023-03-30	DEPARTMENT OF EDUCATION, REGION IV A
8454	3668	15697	24.00	TECHNICAL	0		2022-10-06	2022-10-08	DEPARTMENT OF EDUCATION, CENTRAL OFFICE
8455	3668	15699	16.00	MANAGEMENT	0		2022-08-04	2022-08-05	DEPARTMENT OF EDUCATION, REGION IV A
8456	3668	15701	40.00	MANAGEMENT 	0		2022-07-11	2022-07-15	DEPARTMENT OF EDUCATION, REGION IV A
8457	3668	15702	56.00	MANAGEMENT	0		2022-07-25	2022-08-01	DEPARTMENT OF EDUCATION, REGION IV A
8458	3668	15703	24.00	MANAGEMENT	0		2022-05-04	2022-05-06	DEPARTMENT OF EDUCATION, BATANGAS CITY
8501	3673	15232	16.00	SUPERVISORY	0		2024-01-11	2024-01-12	DEPARTMENT OF EDUCATION, BATANGAS CITY
8502	3673	15670	8.00	LEADERSHIP	0		2023-11-17	2023-11-17	DEPARTMENT OF EDUCATION, REGION IV A
8503	3673	15694	8.00	LEADERSHIP	0		2023-10-02	2023-10-02	DEPARTMENT OF EDUCATION, REGION IV A
8504	3673	15671	8.00	INSTRUCTIONAL	0		2023-10-12	2023-10-12	DEPARTMENT OF EDUCATION, BATANGAS CITY
8505	3673	15531	24.00	INSTRUCTIONAL	0		2023-09-26	2023-09-29	DEPARTMENT OF EDUCATION, REGIONAL OFFICE (IV A) NEAR MALVAR
8506	3673	15045	24.00	INSTRUCTIONAL	0		2023-09-11	2023-09-13	DEPARTMENT OF EDUCATION, BATANGAS CITY
8507	3673	15673	8.00	LEADERSHIP 	0		2023-09-08	2023-09-08	DEPARTMENT OF EDUCATION, REGION IV A
8508	3673	15675	16.00	INSTRUCTIONAL 	0		2023-08-24	2023-08-25	DEPARTMENT OF EDUCATION, BATANGAS CITY
8509	3673	15723	8.00	TECHNICAL	0		2023-08-23	2023-08-23	DEPARTMENT OF EDUCATION, BATANGAS CITY
8510	3673	15679	40.00	SUPERVISORY	0		2023-08-14	2023-08-18	DEPARTMENT OF EDUCATION, BATANGAS CITY
8511	3673	15698	24.00	LEADERSHIP	0		2023-08-09	2023-08-11	DEPARTMENT OF EDUCATION, BATANGAS CITY
8512	3673	15683	40.00	SUPERVISORY	0		2023-07-24	2023-07-28	DEPARTMENT OF EDUCATION, BATANGAS CITY
8513	3673	15685	24.00	INSTRUCTIONAL	0		2023-07-18	2023-07-20	DEPARTMENT OF EDUCATION, BATANGAS CITY
8514	3673	15700	8.00	INSTRUCTIONAL	0		2023-05-23	2023-05-23	DEPARTMENT OF EDUCATION, BATANGAS CITY
8515	3673	15046	24.00	INSTRUCTIONAL	0		2023-05-15	2023-05-17	DEPARTMENT OF EDUCATION, BATANGAS CITY
8516	3673	15686	40.00	INSTRUCTIONAL	0		2023-04-11	2023-04-15	DEPARTMENT OF EDUCATION, BATANGAS CITY
8517	3673	15101	8.00	INSTRUCTIONAL	0		2023-03-30	2023-03-30	DEPARTMENT OF EDUCATION, BATANGAS CITY
8518	3673	15689	24.00	INSTRUCTIONAL	0		2023-03-21	2023-03-23	DEPARTMENT OF EDUCATION, BATANGAS CITY
8519	3673	15704	40.00	INSTRUCTIONAL	0		2022-07-25	2022-07-29	DEPARTMENT OF EDUCATION, BATANGAS CITY
8459	3671	15232	16.00	SUPERVISORY 	0		2024-01-11	2024-01-12	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8460	3671	15670	8.00	LEADERSHIP 	0		2023-11-17	2023-11-17	REGIONAL OFFICE (IV-A) DEPARTMENT OF EDUCATION
8461	3671	15694	8.00	LEADERSHIP	0		2023-10-02	2023-10-02	REGIONAL OFFICE (IV-A) DEPARTMENT OF EDUCATION
8462	3671	15671	8.00	INSTRUCTIONAL 	0		2023-10-12	2023-10-12	DEPARTMENT OF EDUCATION, BATANGAS CITY
8463	3671	15531	24.00	INSTRUCTIONAL 	0		2023-09-26	2023-09-29	REGIONAL OFFICE (IV-A) DEPARTMENT OF EDUCATION, NEAP MALVAR
8464	3671	15113	24.00	INSTRUCTIONAL 	0		2023-09-11	2023-09-13	DEPARTMENT OF EDUCATION, BATANGAS CITY
8465	3671	15673	8.00	LEADERSHIP	0		2023-09-08	2023-09-08	REGIONAL OFFICE (IV-A) DEPARTMENT OF EDUCATION 
8466	3671	15675	16.00	INSTRUCTIONAL	0		2023-08-24	2023-08-25	DEPARTMENT OF EDUCATION, BATANGAS CITY
8467	3671	15676	8.00	TECHNICAL 	0		2023-08-23	2023-08-23	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8468	3671	15679	40.00	SUPERVISORY 	0		2023-08-14	2023-08-18	 DEPARTMENT OF EDUCATION, BATANGAS CITY 
8469	3671	15698	24.00	LEADERSHIP	0		2023-08-09	2023-08-11	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8470	3671	15683	40.00	SUPERVISORY	0		2023-07-24	2023-07-28	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8471	3671	15685	24.00	INSTRUCTIONAL 	0		2023-07-18	2023-07-20	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8472	3671	15700	8.00	INSTRUCTIONAL 	0		2023-05-23	2023-05-23	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8473	3671	15046	24.00	INSTRUCTIONAL 	0		2023-05-15	2023-05-17	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8474	3671	15686	40.00	INSTRUCTIONAL 	0		2023-04-11	2023-04-15	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8475	3671	15101	8.00	INSTRUCTIONAL 	0		2023-03-30	2023-03-30	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8476	3671	15689	24.00	INSTRUCTIONAL 	0		2023-03-21	2023-03-23	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8477	3671	15690	8.00	INSTRUCTIONAL 	0		2023-03-01	2023-03-01	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8478	3671	15692	40.00	INSTRUCTIONAL 	0		2022-07-25	2022-07-29	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8479	3671	15705	40.00	INSTRUCTIONAL 	0		2022-07-09	2022-07-11	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8480	3672	15706	32.00	NON-SUPERVISORY	0		2023-11-21	2023-11-24	PHILIPPINE LIBRARIANS ASSOCIATIONS.INC. 
8481	3672	15707	24.00	SUPERVISORY	0		2023-10-02	2023-10-04	DEPARTMENT OF EDUCATION , CURRICULUM DEVELOPMENT,LEARNING RESOURCES, AND LEARNING DELIVERY
8482	3672	15307	8.00	NON-SUPERVISORY	0		2023-09-22	2023-09-22	DEPARTMENT OF EDUCATION SCHOLS DIVISION OF BATANGAS CITY LEARNING RESOURCE MANAGEMENT SECTION
8483	3672	15708	40.00	NON-SUPERVISORY	0		2023-07-24	2023-07-28	DEPARTMENT OF EDUCATION SCHOLS DIVISION OF BATANGAS CITY LEARNING RESOURCE MANAGEMENT SECTION
8484	3672	15709	24.00	NON-SUPERVISORY	0		2023-06-19	2023-06-21	DEPARTMENT OF EDUCATION REGION IV-A CALABARZON ,CURRICULUM AND LEARNING MANAGEMENT DIVISION 
8485	3672	15710	8.00	SUPERVISORY	0		2023-03-23	2023-03-23	DEPARTMENT OF EDUCATION SCHOLS DIVISION OF BATANGAS CITY LEARNING RESOURCE MANAGEMENT SECTION
8486	3672	15711	1.00	NON-SUPERVISORY	0		2023-01-24	2023-01-24	BATANGAS STATE UNIVESITY COLLEGE OF INFORMATICS AND COMPUTING SCIENCES
8487	3672	15712	24.00	NON-SUPERVISORY	0		2022-11-23	2022-11-25	DPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY LEARNING RESOURCE MANAGEMENT SECTION
8488	3672	15174	8.00	NON-SUPERVISORY	0		2022-09-07	2022-09-07	DPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
8489	3672	15225	8.00	NON-SUPERVISORY	0		2022-06-30	2022-06-30	QMS TRAINING AND ADVOCACY TEAM AND HUMAN RESOURCE  AND DEVELOPMENT 
8490	3672	15713	8.00	NON-SUPERVISORY	0		2022-05-20	2022-05-20	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY
8491	3672	15478	24.00	SUPERVISORY	0		2022-05-04	2022-05-06	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY
8492	3672	15478	16.00	SUPERVISORY	0		2022-05-25	2022-05-26	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY
8493	3672	15715	16.00	SUPERVISORY	0		2022-04-07	2022-04-08	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY
8494	3672	15716	3.00	TECHNICAL	0		2020-09-26	2020-09-26	AURORA BOULEVARD CONSORTIUM LIBRARIES , INC.
8495	3672	15717	3.00	TECHNICAL	0		2020-09-11	2020-09-11	PHILIPPINE LIBRARRIAN ASSOCIATION INC.(PLAI)
8496	3672	15718	2.00	SUPERVISORY	0		2020-04-27	2020-04-27	PHILIPPINE LIBRARRIAN ASSOCIATION INC.(PLAI)
8497	3672	15719	32.00	SUPERVISORY	0		2019-05-20	2019-05-24	UNIVERSITY OF BATANGAS
8498	3672	15720	20.00	TECHNICAL	0		2019-04-25	2019-04-27	LIBRARIANS TRAINING,INFORMATION & DEVELOPMENT SYSTEMS,INC.
8499	3672	15721	8.00	RESEARCH	0		2018-08-02	2018-08-02	UNIVERSITY OF BATANGAS
8500	3672	15722	16.00	SPERVISORY	0		2018-07-04	2018-07-06	PNU LIBRARY AND INFORMATION SCIENCE ASSOCIATION
8520	3674	15232	16.00	MANAGERIAL	0		2024-11-11	2024-01-12	DEPARTMENT OF EDUCATION, BATANGAS CITY
8521	3674	15670	8.00	LEADERSHIP	0		2023-11-17	2023-11-17	REGIONAL OFFICE (IV-A) DEPARTMENT OF EDUCATION
8522	3674	15694	8.00	LEADERSHIP	0		2023-12-02	2023-12-02	REGIONAL OFFICE (IV-A) DEPARTMENT OF EDUCATION
8523	3674	15724	8.00	INSTRUCTIONAL	0		2023-10-12	2023-10-12	DEPARTMENT OF EDUCATION, BATANGAS CITY
8524	3674	15531	24.00	INSTRUCTIONAL 	0		2023-09-26	2023-09-29	REGIONAL OFFICE (IV-A) DEPARTMENT OF EDUCATION, NEAP MALVAR
8525	3674	15045	24.00	SUPERVISORY	0		2023-09-11	2023-09-13	DEPARTMENT OF EDUCATION, BATANGAS CITY
8526	3674	15673	8.00	LEADERSHIP	0		2023-09-08	2023-09-08	REGIONAL OFFICE (IV-A) DEPARTMENT OF EDUCATION
8527	3674	15675	16.00	INSTRUCTIONAL	0		2023-08-24	2023-08-25	DEPARTMENT OF EDUCATION, BATANGAS CITY
8528	3674	15676	8.00	TECHNICAL	0		2023-08-23	2023-08-20	DEPARTMENT OF EDUCAQTION, BATANGAS CITY
8529	3674	15679	40.00	SUPERVISORY	0		2023-08-14	2023-08-18	DEPARTMENT OF EDUCATION, BATANGAS CITY
8530	3674	15698	24.00	LEADERSHIP	0		2023-08-09	2023-08-08	DEPARTMENT OF EDUCATION, BATANGAS CITY
8531	3674	15683	40.00	SUPERVISORY	0		2023-07-27	2023-07-28	DEPARTMENT OF EDUCATION, BATANGAS CITY
8532	3674	15685	24.00	INSTRUCTIONAL	0		2023-07-18	2023-07-20	DEPARTMENT OF EDUCATION, BATANGAS CITY
8533	3674	15700	8.00	INSTRUCTIONAL	0		2023-05-23	2023-05-23	DEAPRTMENT OF EDUCATION, BATANGAS CITY
8534	3674	15145	24.00	SUPERVISORY	0		2023-05-15	2023-05-17	DEPARTMENT OF EDUCATION, BATANGAS CITY
8535	3674	15686	40.00	INSTRUCTIONAL	0		2023-04-11	2023-04-15	DEPARTMENT OF EDUCATION, BATANGAS CITY
8536	3674	15725	8.00	INSTRUCTIONAL	0		2023-03-30	2023-03-30	DEPARTMENT OF EDUCATION, BATANGAS CITY
8537	3674	15689	24.00	INSTRUCTIONAL 	0		2023-03-21	2023-03-23	DEPARTMENT OF EDUCATION, BATANGAS CITY
8538	3674	15690	8.00	SUPERVISORY	0		2023-03-01	2023-03-01	DEPARTMENT OF EDUCATION, BATANGAS CITY
8539	3674	15726	40.00	LEADERSHIP	0		2023-01-23	2023-01-26	DEPARTMENT OF EDUCATION
8540	3674	15727	40.00	INSTRUCTIONAL	0		2023-06-28	2023-06-30	DEPARTMENT OF EDUCATION
8541	3675	15728	24.00	SUPERVISORY 	0		2023-12-13	2023-12-15	DEPARTMENT OF EDUCATION, CENTRAL 
8542	3675	15729	16.00	SUPERVISORY 	0		2023-11-11	2023-12-11	DEPARTMENT OF EDUCATION, CENTRAL & UNIOTED STATES AGENCY INTERNATIONAL DEVELOPMENT 
8543	3675	15730	40.00	SUPERVISORY 	0		2023-06-11	2023-10-11	DEPARTMENT OF EDUCATION, CALABARZON 
8544	3675	15731	40.00	SUPERVISORY 	0		2023-09-10	2023-10-13	DEPARTMENT OF EDUCATION, CALABARZON
8545	3675	15733	32.00	SUPERVISORY 	0		2023-09-19	2023-09-22	DEPARTMENT OF EDUCATION, CENTRAL & UNITED STATES AGENCY INTERNATIONAL DEVELOPMENT 
8546	3675	15734	40.00	SUPERVISORY 	0		2023-08-05	2023-12-05	DEPARTMENT OF EDUCATION, CALABARZON
8547	3675	15735	8.00	SUPERVISORY 	0		2023-02-17	2023-03-17	DEPARTMENT OF EDUCATION, CALABARZON
8548	3675	15736	24.00	SUPERVISORY 	0		2022-02-05	2022-04-05	DEPARTMENT OF EDUCATION, CALABARZON
8549	3675	15737	40.00	SUPERVISORY 	0		2022-11-07	2022-07-15	DEPARTMENT OF EDUCATION, CENTRAL 
8550	3675	15738	24.00	SUPERVISORY 	0		2022-03-11	2022-05-11	DEPARTMENT OF EDUCATION, CALABARZON
8551	3675	15739	18.00	SUPERVISORY 	0		2022-08-15	2022-08-20	PHILIPPINE NORMAL UNIVERSITY 
8552	3675	15740	18.00	SUPERVISORY 	0		2022-08-08	2022-08-13	PHILIPPINE NORMAL UNIVERSITY 
8553	3675	15741	18.00	SUPERVISORY 	0		2022-07-25	2022-07-30	PHILIPPINE NORMAL UNIVERSITY 
8554	3675	15742	18.00	SUPERVISORY 	0		2022-07-18	2022-07-23	PHILIPPINE NORMAL UNIVERSITY 
8555	3675	15743	18.00	SUPERVISORY 	0		2022-11-07	2022-07-16	PHILIPPINE NORMAL UNIVERSITY 
8556	3675	15744	18.00	SUPERVISORY 	0		2022-04-07	2022-09-07	PHILIPPINE NORMAL UNIVERSITY 
8557	3675	15745	40.00	SUPERVISORY 	0		2022-03-28	2022-05-04	DEPARTMENT OF EDUCATION, CENTRAL 
8558	3675	15746	40.00	SUPERVISORY 	0		2022-07-11	2022-07-15	BUREAU OF LEARNING DELIVERY- STUDENT  INCLUSION DIVISION ( BLD-SID) 
8559	3675	15747	24.00	SUPERVISORY  	0		2022-11-03	2022-11-05	DEPARTMENT OF EDUCATION, CALABARZON 
8560	3676	15307	8.00	MANAGERIAL	0		2023-09-22	2023-09-22	SDO BATANGAS CITY
8566	3676	15420	8.00	MANAGERIAL	0		2023-06-07	2023-06-07	SDO BATANGAS CITY
8567	3676	15421	8.00	TECHNICAL	0		2023-05-19	2023-05-19	SDO BATANGAS CITY
8568	3676	15101	8.00	MANAGERIAL	0		2023-03-30	2023-03-30	SDO BATANGAS CITY
8569	3676	15351	5.00	TECHNICAL	0		2023-04-03	2023-04-03	SDO BATANGAS CITY
8570	3676	15153	5.00	TECHNICAL	0		2023-02-21	2023-02-21	SDO BATANGAS CITY
8571	3676	15748	8.00	TECHNICAL	0		2023-09-02	2023-09-02	SDO BATANGAS CITY
8572	3676	15114	3.00	MANAGERIAL	0		2023-02-20	2023-02-20	SDO BATANGAS CITY
8573	3676	15749	42.00	MANAGERIAL	0	42 MINUTES	2022-09-25	2022-09-25	UDEMY
8574	3676	15750	3.00	TECHNICAL	0		2022-09-25	2022-09-25	UDEMY
8575	3676	15174	8.00	MANAGERIAL/TECHNICAL	0		2022-07-09	2022-07-09	SDO BATANGAS CITY
8576	3676	15235	56.00	MANAGERIAL	0		2023-08-12	2023-08-22	SDO BATANGAS CITY
8577	3676	15292	21.00	TECHNICAL 	0		2022-08-11	2022-08-11	UDEMY
8578	3676	15751	8.00	MANAGERIAL	0		2022-06-30	2022-06-30	WASTECON INC.
8579	3676	15752	24.00	TECHNICAL	0		2022-09-05	2022-09-05	AGONCILLO, BATANGAS 
8580	3676	15753	8.00	MANAGERIAL	0		2022-03-25	2022-03-25	SDO BATANGAS CITY
8581	3676	15754	8.00	TECHNICAL	0		2022-03-16	2022-03-16	DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHGNOLOGY
8582	3676	15351	6.00	TECHNICAL	0		2022-04-03	2022-04-03	SDO BATANGAS CITY
8583	3676	15125	24.00	MANAGERIAL	0		2022-01-12	2022-01-14	SDO BATANGAS CITY
8584	3678	15604	24.00	MANAGERIAL	0		2024-01-29	2024-01-31	DEPED- BUREAU CURRICULUM DELIVERY 
8585	3678	15763	36.00	MANAGERIAL	0		2024-01-24	2024-01-27	DEPED- BUREAU CURRICULUM DELIVERY
8586	3678	15764	16.00	TECHNICAL	0		2023-04-12	2023-05-12	DEPED- BUREAU CURRICULUM DELIVERY
8587	3678	15766	40.00	TECHNICAL	0		2023-01-12	2023-11-27	DEPED- BUREAU CURRICULUM DELIVERY
8588	3678	15768	40.00	TECHNICAL	0		2023-11-20	2023-11-24	DEPED- BUREAU CURRICULUM DELIVERY
8589	3678	15769	40.00	MANAGERIAL	0		2023-08-11	2023-10-11	SDO BATANGAS CITY
8590	3678	15770	40.00	MANAGERIAL	0		2023-10-26	2023-10-28	SDO BATANGAS CITY
8591	3678	15620	40.00	TECHNICAL	0		2023-09-26	2023-09-29	SDO BATANGAS CITY
8592	3678	15113	24.00	MANAGERIAL	0		2023-09-13	2023-11-09	SDO BATANGAS CITY
8593	3678	15574	40.00	MANAGERIAL	0		2023-08-14	2023-08-18	SDO BATANGAS CITY
8594	3678	15774	40.00	SUPERVISORY	0		2023-04-08	2023-07-31	AHA LEARNING CENTER AND GOKONGWEI BROS.FOUNDATION
8595	3678	15515	40.00	TECHNICAL	0		2023-07-24	2023-07-28	DEPED- BUREAU OF LEARNING RESOURCES
8596	3678	15776	40.00	TECHNICAL	0		2023-07-14	2023-10-07	DEPED- BUREAU OF LEARNING RESOURCES
8597	3678	15778	40.00	TECHNICAL	0		2023-03-07	2023-07-07	DEPED- BUREAU OF LEARNING RESOURCES
8598	3678	15628	24.00	TECHICAL	0		2023-01-06	2023-03-06	DEPED- BUREAU OF LEARNING RESOURCES
8599	3678	15781	16.00	MANEGERIAL	0		2022-10-05	2022-11-05	REGION IV-A CALABARZON
8600	3678	15782	40.00	MANAGERIAL	0		2023-03-20	2023-03-24	REGION IV-A CALABARZON
8601	3678	15783	56.00	TECHNICAL	0		2022-12-12	2022-12-18	REGION IV-A CALABARZON
8602	3678	15784	40.00	MANAGEMENT	0		2022-07-11	2022-11-11	DEPED- BUREAU CURRICULUM DELIVERY 
8603	3678	15785	24.00	TECHNICAL	0		2022-08-22	2022-08-24	SDO BATANGAS CITY 
8604	3678	15787	36.00	SUPERVISORY	0		2022-08-22	2022-12-08	SDO BATANGAS CITY 
8605	3678	15788	40.00	SUPERVISORY	0		2022-04-07	2022-08-07	SDO BATANGAS CITY 
8606	3678	15789	16.00	TECHNICAL	0		2022-05-19	2022-05-20	SDO BATANGAS CITY 
8607	3678	15791	24.00	TECHNICAL	0		2021-03-11	2021-10-11	SDO BATANGAS CITY 
8608	3678	15599	32.00	MANAGERIAL	0		2021-10-18	2021-10-29	THAMES INTERNATIONAL
8609	3677	15604	24.00	TECHNICAL 	0		2024-01-29	2024-01-31	SDO - BATANGAS CITY
8610	3677	15755	24.00	CHAR - LOGISTICS	0		2023-11-27	2023-12-02	SDO - BATANGAS CITY
8611	3677	15756	16.00	FACILITATOR	0		2023-12-04	2023-12-05	SDO - BATANGAS CITY
8612	3677	15767	48.00	PARTICIPANT	0		2023-09-26	2023-12-01	DepEd CO
8613	3677	15178	8.00	PARTICIPANT	0		2023-12-22	2023-11-22	SDO - BATANGAS CITY
8614	3677	15670	8.00	PARTICIPANT	0		2023-11-17	2023-11-17	SDO - BATANGAS CITY
8615	3677	15771	32.00	TECHNICAL	0		2023-11-14	2023-11-17	RO - CALABARZON
8616	3677	15759	40.00	TECH / PARTICIPANT	0		2023-10-23	2023-10-27	DEPED CO
8617	3677	15760	8.00	TECHNICAL	0		2023-10-02	2023-10-02	SDO - BATANGAS CITY 
8618	3677	15307	8.00	PARTICIPANT / JUDGE	0		2023-09-22	2023-09-22	SDO - BATANGAS CITY
8619	3677	15045	24.00	PARTICIPANT	0		2023-09-11	2023-09-18	SDO - BATANGAS CITY
8620	3677	15574	40.00	TECHNICAL / PARTICIPANT 	0		2023-08-14	2023-08-14	SDO - BATANGAS CITY
8621	3677	15534	24.00	TECHNICAL / RESOURCE SPEAKER 	0		2023-08-08	2023-08-11	SDO - BATANGAS CITY
8622	3677	15775	192.00	FOCAL PERSON	0		2023-07-24	2023-08-25	SDO - BATANGAS CITY
8623	3677	15777	8.00	CHAIRPERSON	0		2023-07-31	2023-07-31	SDO - BATANGAS CITY
8624	3677	15779	24.00	TECHNICAL	0		2023-07-26	2023-07-28	SDO - BATANGAS CITY
8625	3677	15515	40.00	VALIDATOR / CHAIRMAN	0		2023-07-24	2023-07-28	SDO - BATANGAS CITY
8626	3677	15786	8.00	EVALUATOR / FACILITATOR	0		2023-07-19	2023-07-19	SDO - BATANGAS CITY
8627	3677	15539	8.00	PARTICIPANT	0		2023-07-07	2023-07-07	SDO - BATANGAS CITY
8628	3677	15420	8.00	PARTICIPANT	0		2023-07-06	2023-07-06	SDO - BATANGAS CITY
8629	3677	15790	8.00	CHAIRMAN	0		2023-06-10	2023-06-01	SDO - BATANGAS CITY
8630	3677	15101	8.00	PARTICIPANT	0		2023-03-30	2023-03-30	SDO - BATANGAS CITY
8631	3677	15792	24.00	PARTICIPANT	0		2023-03-21	2023-03-23	SDO - BATANGAS CITY
8632	3677	15748	8.00	PARTICIPANT	0		2023-03-07	2023-03-07	SDO - BATANGAS CITY
8633	3677	15793	8.00	EVALUATOR / VALIDATOR 	0		2022-12-07	2022-12-07	SDO - BATANGAS CITY
8634	3677	15794	8.00	TRAINING PROPONENT / VICE - CHAIR 	0		2022-12-02	2022-12-02	SDO - BATANGAS CITY
8635	3677	15796	40.00	MEMBER	0		2022-11-06	2022-11-06	DepEd CO
8636	3677	15174	8.00	PARTICIPANT 	0		2022-09-07	2022-09-07	SDO - BATANGAS CITY
8637	3677	15785	16.00	CO - TRAINING PROPONENT 	0		2022-08-24	2022-08-26	SDO - BATANGAS CITY 
8638	3677	15797	56.00	RESOURCE SPEAKER 	0		2022-08-12	2022-08-22	SDO - BATANGAS CITY 
8639	3677	15798	24.00	MEMBER 	0		2022-08-03	2022-08-05	RO - CALABARZON
8640	3677	15797	53.00	REACTOR 	0		2022-08-03	2022-08-11	SDO - BATANGAS CITY 
8641	3677	15799	16.00	MEMBER	0		2022-08-03	2022-08-04	SDO - BATANGAS CITY 
8642	3677	15797	56.00	REACTOR 	0		2022-07-25	2022-08-02	SDO - BATANGAS CITY 
8643	3677	15800	8.00	EVALUATOR / VALIDATOR 	0		2022-07-14	2022-07-14	SDO - BATANGAS CITY 
8644	3677	15219	8.00	PARTICIPANT 	0		2022-06-30	2022-06-30	SDO - BATANGAS CITY 
8645	3677	15801	32.00	EVALUATOR / VALIDATOR 	0		2022-04-23	2022-05-14	SDO - BATANGAS CITY 
8646	3677	15802	24.00	PARTICIPANT 	0		2022-04-27	2022-04-29	RO - CALABARZON
8647	3677	15803	8.00	TAGAPANAYAM 	0		2021-07-11	2021-12-11	SDO - BATANGAS CITY 
8648	3677	15804	8.00	PARTICIPANT	0		2021-10-17	2021-10-17	BATANGAS STATE UNIVERSITY 
8649	3677	15805	40.00	CHAIRMAN 	0		2021-02-08	2021-02-12	SDO - BATANGAS CITY 
8650	3681	15604	24.00	MANAGERIAL	0		2024-01-29	2024-01-31	DEPARTMENT OF EDUCATION, BATANGAS CITY
8651	3681	15605	32.00	MANAGERIAL	0		2024-01-24	2024-01-27	DEPARTMENT OF EDUCATION, BATANGAS CITY
8652	3681	15606	16.00	TECHNICAL	0		2023-12-04	2023-12-05	DEPARTMENT OF EDUCATION, BATANGAS CITY
8653	3681	15758	32.00	TECHNICAL	0		2023-11-14	2023-11-17	DEPARTMENT OF EDUCATION, BATANGAS CITY
8654	3681	15044	8.00	TECHNICAL	0		2023-11-22	2023-11-22	DEPARTMENT OF EDUCATION, BATANGAS CITY
8655	3681	15529	8.00	TECHNICAL	0		2023-10-02	2023-10-02	DEPARTMENT OF EDUCATION, BATANGAS CITY
8656	3681	15607	8.00	TECHNICAL	0		2023-11-17	2023-11-17	DEPARTMENT OF EDUCATION, BATANGAS CITY
8657	3681	15113	24.00	TECHNICAL	0		2023-09-11	2023-09-13	DEPARTMENT OF EDUCATION, BATANGAS CITY
8658	3681	15531	32.00	TECHNICAL	0		2023-09-26	2023-09-29	DEPARTMENT OF EDUCATION, BATANGAS CITY
8659	3681	15806	16.00	TECHNICAL 	0		2023-09-11	2023-09-12	DEPARTMENT OF EDUCATION, BATANGAS CITY
8660	3681	15574	40.00	TECHNICAL	0		2023-08-14	2023-08-18	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8661	3681	15661	8.00	TECHNICAL	0		2023-07-06	2023-07-06	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8662	3681	15807	24.00	TECHNICAL	0		2023-07-18	2023-07-20	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8663	3681	15515	40.00	TECHNICAL	0		2323-07-24	2023-07-28	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8664	3681	15809	24.00	TECHNICAL	0		2023-08-15	2023-08-17	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8665	3681	15534	24.00	TECHNICAL	0		2023-08-09	2023-09-11	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8666	3681	15612	40.00	TECHNICAL	0		2023-03-13	2023-03-17	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8667	3681	15633	24.00	TECHNICAL	0		2023-08-03	2023-08-05	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8698	3679	15604	16.00	TECHNICAL 	0		2024-01-29	2024-01-31	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OFFICE BATANGAS CITY 
8699	3679	15829	40.00	TECHNICAL 	0		2023-12-04	2023-12-08	DEPARTMENT OF EDUCATION - BUREAU OF LEARNING RESOURCES
8700	3679	15834	24.00	TECHNICAL 	0		2023-11-21	2023-11-23	DEPARTMENT OF EDUCATION - BUREAU OF LEARNING RESOURCES 
8701	3679	15303	32.00	TECHNICAL	0		2023-11-13	2023-11-20	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
8702	3679	15840	40.00	TECHNICAL	0		2023-11-13	2023-11-17	DEPARTMENT OF EDUCATION - IVA CALABARZON
8722	3682	15858	40.00	SUPERVISORY	0		2023-08-15	2023-08-19	DEPARTMENT OF EDUCATION, REGION IV-A
8723	3682	15859	8.00	MANAGERIAL	0		2023-07-06	2023-07-06	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8724	3682	15860	16.00	MANAGERIAL	0		2023-05-08	2023-05-09	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8725	3682	15861	8.00	MANAGERIAL	0		2023-04-20	2023-04-20	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8726	3682	15862	8.00	SUPERVISORY	0		2023-03-29	2023-03-29	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8727	3682	15863	24.00	SUPERVISORY	0		2023-03-21	2024-03-23	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8728	3682	15867	6.00	SUPERVISORY	0		2023-02-22	2023-02-22	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8668	3680	15808	8.00	TECHNICAL 	0		2024-01-30	2024-01-30	DEPARTMENT OF EDUCATION- BATANGAS CITY 
8669	3680	15810	8.00	TECHNICAL 	0		2024-01-26	2024-01-26	DEPARTMENT OF EDUCATION- BATANGAS CITY 
8670	3680	15811	8.00	TECHNICAL 	0		2023-10-26	2023-10-26	DEPARTMENT OF EDUCATION- BATANGAS CITY 
8671	3680	15044	8.00	OPERATION 	0		2023-11-22	2023-11-22	DEPARTMENT OF EDUCATION- BATANGAS CITY 
8672	3680	15812	8.00	INNOVATION 	0		2023-05-06	2023-05-06	DEPARTMENT OF EDUCATION- BATANGAS CITY 
8673	3680	15813	16.00	RESEARCH 	0		2023-12-04	2023-12-05	DEPARTMENT OF EDUCATION- BATANGAS CITY 
8674	3680	15814	64.00	INNOVATION 	0		2023-08-01	2023-10-01	DEPARTMENT OF EDUCATION- CENTRAL OFFICE 
8675	3680	15815	24.00	RESEARCH 	0		2022-10-04	2022-10-06	DEPARTMENT OF EDUCATION REGION IV A CALABARZON 
8676	3680	15816	40.00	TECHNICAL 	0		2022-09-19	2022-09-23	DEPARTMENT OF EDUCATION REGION IV A CALABARZON
8677	3680	15817	16.00	RESEARCH 	0		2022-03-02	2022-03-03	DEPARTMENT OF EDUCATION REGION IV A CALABARZON
8678	3680	15818	8.00	OPERATION 	0		2022-02-07	2022-02-07	DEPARTMENT OF EDUCATION REGION IV A CALABARZON
8679	3680	15819	8.00	OPERATION 	0		2022-02-02	2022-02-02	DEPARTMENT OF EDUCATION - BATANGAS CITY 
8680	3680	15820	16.00	TECHNICAL 	0		2022-01-17	2022-01-20	BATANGAS STATE UNIVERSITY 
8681	3680	15125	8.00	OPERATION 	0		2022-01-14	2022-01-14	DEPARTMENT OF EDUCATION- BATANGAS CITY 
8682	3680	15821	24.00	RESEARCH 	0		2021-11-23	2021-11-25	DEPARTMENT OF EDUCATION REGION IV A CALABARZON
8683	3680	15822	8.00	TECHNICAL 	0		2021-07-29	2021-07-29	BATANGAS STATE UNIVERSITY- ALANGILAN CAMPUS 
8684	3680	15823	8.00	RESEARCH 	0		2021-06-17	2021-06-17	DEPARTMENT OF EDUCATION REGION IV A CALABARZON
8685	3680	15824	8.00	TECHNICAL 	0		2021-05-28	2021-05-28	BATANGAS STATE UNIVERSITY- MAIN CAMPUS/ COLLEGE OF TEACHER EDUCATION- GRADUATE SCHOOL   
8686	3680	15825	8.00	TECHNICAL 	0		2021-05-14	2021-05-14	PAFTE- REGION 4 A 
8687	3680	15826	16.00	TECHNICAL 	0		2021-05-04	2021-05-05	MATHWORKS CO 
8688	3680	15827	16.00	RESEARCH 	0		2021-04-28	2021-04-29	SEAMEO THAILAND 
8689	3680	15828	8.00	RESEARCH 	0		2021-04-21	2021-04-21	GULOD GULOD SENIOR HIGH SCHOOL 
8690	3680	15830	8.00	TECHNICAL 	0		2021-04-14	2021-04-14	DEPARTMENT OF EDUCATION CENTRAL OFFICE 
8691	3680	15831	8.00	PLANNING 	0		2020-04-18	2020-04-18	DEPARTMENT OF EDUCATION REGION IV A CALABARZON
8692	3680	15832	16.00	TECHNICAL 	0		2020-04-30	2020-05-30	UNIVERSITY OF PHILIPPINES 
8693	3680	15833	16.00	TECHNICAL 	0		2020-04-30	2020-05-30	UNIVERSITY OF THE PHILIPPINES 
8694	3680	15835	16.00	TECHNICAL 	0		2020-05-01	2020-05-30	E-TESDA 
8695	3680	15836	16.00	TECHNICAL 	0		2020-04-28	2020-05-28	E-TESDA 
8696	3680	15838	8.00	TECHNICAL 	0		2019-12-09	2019-12-09	DEPARTMENT OF EDUCATION- BATANGAS CITY 
8697	3680	15839	24.00	RESEARCH 	0		2019-10-29	2019-10-31	DEPARTMENT OF EDUCATION REGION IV A CALABARZON
8703	3680	15853	8.00	RESEARCH 	0		2019-06-30	2019-06-30	UNIVERSITY OF BATANGAS- GRADUATE SCHOOL 
8704	3680	15855	8.00	RESEARCH 	0		2019-06-13	2019-06-13	DELA SALLE MANILA 
8705	3680	15856	16.00	OPERATION 	0		2019-05-23	2019-05-24	DEPARTMENT OF EDUCATION- BATANGAS CITY 
8706	3680	15857	8.00	RESEARCH 	0		2019-02-28	2019-02-28	RACE ASCENDENS ASIA LTD. 
8707	3679	15842	40.00	TECHNICAL 	0		2023-09-25	2023-09-29	DEPARTMENT OF EDUCATION - BUREAU OF LEARNING RESOURCES
8708	3679	15843	8.00	TECHNICAL 	0		2023-09-22	2023-09-22	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION BATANGAS CITY 
8709	3679	15844	24.00	TECHNICAL	0		2023-09-11	2023-09-13	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION BATANGAS CITY 
8710	3679	15845	40.00	TECHNICAL 	0		2023-08-01	2023-10-31	DEPARTMENT OF EDUCATION - BUREAU OF LEARNING RESOURCES
8711	3679	15846	40.00	TECHNICAL 	0		2023-08-28	2023-09-01	DEPARTMENT OF EDUCATION - IVA CALABARZON
8712	3679	15534	24.00	TECHNICAL 	0		2023-08-09	2023-08-11	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION BATANGAS CITY 
8713	3679	15684	24.00	TECHNICAL	0		2023-08-01	2023-08-03	DEPARTMENT OF EDUCATION - IVA CALABARZON
8714	3679	15515	40.00	TECHNICAL 	0		2023-07-24	2023-07-28	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY 
8715	3679	15616	24.00	TECHNICAL 	0		2023-07-18	2023-07-20	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY
8716	3679	15847	24.00	TECHNICAL	0		2023-06-19	2023-12-21	DEPARTMENT OF EDUCATION - IVA CALABARZON
8717	3679	15848	8.00	FOUNDATION	0		2023-06-10	2023-06-10	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION BATANGAS
8718	3679	15849	24.00	TECHNICAL	0		2023-06-07	2023-06-09	DEPARTMENT OF EDUCATION - IVA CALABARZON
8719	3679	15850	32.00	TECHNICAL 	0		2024-05-23	2023-06-02	DEPARTMENT OF EDUCATYION BUREAU
8720	3679	15851	24.00	TECHNICAL	0		2023-04-08	2023-04-22	DEPARTMENT OF EDUCATION - IVA CALABARZON
8721	3679	15854	8.00	TECHNICAL	0		2023-03-20	2023-03-30	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
8729	3683	15044	8.00	TECHNICAL 	0		2023-11-22	2023-11-22	DEPARTMENT OF EDUCATION SDO BATANGAS CITY
8730	3683	15771	32.00	SUPERVISORY 	0		2023-11-14	2023-11-17	DEPARTMENT OF EDUCATION R4 A- CALABARZON 
8731	3683	15303	8.00	TECHNICAL 	0		2023-11-17	2023-11-17	DEPARTMENT OF EDUCATION SDO BATANGAS CITY
8732	3683	15045	24.00	TECHNICAL 	0		2023-09-11	2023-09-13	DEPARTMENT OF EDUCATION SDO BATANGAS CITY
8733	3683	15531	32.00	SUPERVISORY 	0		2023-09-26	2023-09-29	DEPARTMENT OF EDUCATION SDO BATANGAS CITY
8734	3683	15574	40.00	SUPERVISORY 	0		2023-04-18	2023-08-14	DEPARTMENT OF EDUCATION SDO BATANGAS CITY
8735	3683	15575	8.00	SUPERVISORY 	0		2023-03-10	2023-03-10	DEPARTMENT OF EDUCATION SDO BATANGAS CITY
8736	3683	15576	24.00	MANAGERIAL 	0		2023-01-24	2023-01-26	PUBLIC SCHOOLS DISTRICT SUPERVISORS' ASSOCIATION INC. 
8737	3683	15577	56.00	SUPERVISORY 	0		2022-03-28	2022-04-05	DEPARTMENT OF EDUCATION SDO BATANGAS CITY
8738	3683	15875	18.00	MANAGERIAL 	0		2022-08-15	2022-08-20	PHILIPPINE NORMAL UNIVERSITY 
8739	3683	15740	18.00	MANAGERIAL 	0		2022-08-08	2022-08-13	PHILIPPINE NORMAL UNIVERSITY
8740	3683	15741	18.00	MANAGERIAL 	0		2022-07-25	2022-07-30	PHILIPPINE NORMAL UNIVERSITY
8741	3683	15742	18.00	MANAGERIAL 	0		2022-07-18	2023-07-23	PHILIPPINE NORMAL UNIVERSITY
8742	3683	15743	18.00	MANAGERIAL 	0		2022-07-11	2022-07-16	PHILIPPINE NORMAL UNIVERSITY
8743	3683	15744	18.00	MANAGERIAL 	0		2022-07-04	2022-07-09	PHILIPPINE NORMAL UNIVERSITY
8744	3683	15879	24.00	SUPERVISORY 	0		2022-07-12	2022-07-14	DEPARTMENT OF EDUCATION R4- A CALABARZON 
8745	3683	15225	8.00	TECHNICAL 	0		2022-06-30	2022-06-30	DEPARTMENT OF EDUCATION SDO BATANGAS CITY 
8746	3683	15578	16.00	TECHNICAL 	0		2022-06-09	2022-06-10	DEPARTMENT OF EDUCATION SDO BATANGAS CITY 
8747	3683	15085	24.00	MANAGERIAL 	0		2022-01-12	2022-01-14	DEPARTMENT OF EDUCATION SDO BATANGAS CITY
8748	3683	15883	32.00	SUPERVISORY 	0		2021-10-05	2021-10-08	DEPARTMENT OF EDUCATION R4-A CALABARZON 
8749	3684	15864	8.00	TECHNICAL	0		2022-02-07	2022-02-07	TECHNICAL EDUCATIOPN AND SKILLS DEVELOPMENT AUTHORITY
8750	3684	15865	8.00	TECHNICAL	0		2021-06-04	2021-06-04	DEPARTMENT OF EDUCATION
8751	3684	15866	8.00	TECHNICAL	0		2020-09-08	2020-09-08	DEPARTMENT OF EDUCATION
8752	3684	15868	8.00	TECHNICAL	0		2020-10-13	2020-10-13	TECHNICAL
8753	3684	15868	8.00	TECHNICAL	0		2020-10-20	2020-10-20	DEPARTMENT OF EDUCATION
8754	3684	15868	8.00	TECHNICAL	0		2020-10-27	2020-10-27	DEPARTMENT OF EDUCATION
8755	3684	15868	8.00	TECHNICAL	0		2020-11-17	2020-11-17	DEPARTMENT OF EDUCATION
8756	3684	15874	20.00	TECHNICAL	0		2015-10-07	2015-10-11	ENERTECH QATAR
8757	3684	15876	24.00	TECHNICAL	0		2013-08-05	2013-08-07	RODECH TRAINING SERVICES
8758	3684	15878	40.00	TECHNICAL	0		2013-08-08	2013-08-12	RODECH TRAINING SERVICES
8759	3684	15880	80.00	TECHNICAL	0		2013-08-13	2013-08-22	RODECH TRAINING SERVICES
8760	3684	15881	8.00	TECHNICAL	0		2013-08-26	2013-08-26	RODECH TRAINING SERVICES
8761	3684	3640	40.00	TECHNICAL	0		2011-10-26	2011-10-30	SAFELINE CONSULTANCY
8762	3682	15114	4.00	MANAGERIAL	0		2023-01-20	2023-02-20	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8763	3682	15871	14.00	MANAGERIAL	0		2022-09-29	2022-09-30	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8764	3682	15872	8.00	SUPERVISORY 	0		2022-07-15	2022-07-15	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8765	3682	15873	80.00	MANAGERIAL	0		2022-05-30	2022-06-08	NATIONAL ASSOCIATION OF PUBLIC SECONDARY SCHOOL PRINCIPLES OF THE PHILIPPINES (NAPSSPHIL) INC.
8766	3682	15350	8.00	TECHNICAL	0		2022-04-18	2022-04-18	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8767	3682	15577	72.00	SUPERVISORY	0		2022-03-28	2022-04-05	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8768	3682	15877	32.00	MANAGERIAL 	0		2022-02-22	2022-02-25	COUNCIL FOR THE RESTORATION OF FILIPINO VALUES
8769	3682	15599	32.00	SUPERVISORY	0		2021-10-18	2021-10-29	THAMES INTERNATIONAL
8770	3682	15479	32.00	MANAGERIAL	0		2021-12-02	2021-12-09	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8771	3682	15601	8.00	MANAGERIAL	0		2021-09-23	2021-09-23	DEPARTMENT OF EDUCATION, REGION IV A
8772	3682	15884	400.00	SUPERVISORY/ TECHNICAL	0		2021-03-22	2021-05-06	DEPARTMENT OF EDUCATION RELCN AND US EMBASSY IN THE PHILIPPINES 
8773	3682	15886	8.00	MANAGERIAL / SUPERVISORY	0		2020-09-01	2020-09-01	DEPARTMENT OF EDUCATION, REGION IV A
8774	3682	15887	8.00	MANAGERIAL / SUPERVISORY	0		2020-07-10	2020-07-10	DEPARTMENT OF EDUCATION, REGION IV A
8775	3682	15888	16.00	MANAGERIAL	0		2020-08-13	2020-08-14	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8776	3682	15889	16.00	MANAGERIAL	0		2020-01-30	2020-01-31	DEPARTMENT OF EDUCATION, REGION IV-A
8777	3683	15891	16.00	SUPERVISORY	0		2021-10-26	2021-10-28	DIVISION OF BATANGAS CITY
8778	3683	15892	8.00	SUPERVISORY	0		2021-10-18	2021-10-18	DIVISION OF BATANGAS CITY
8779	3683	15893	2.00	TECHNICAL	0		2021-09-21	2021-09-21	PHILIPPINE NORMAL UNIVERSITY
8780	3683	15894	8.00	SUPERVISORY	0		2021-09-23	2021-09-23	REGION IV-A CALABARZON 
8781	3683	15895	4.00	TECHNICAL	0		2021-10-26	2021-10-26	PHILIPPINE NORMAL UNIVERSITY
8782	3683	15896	16.00	SUPERVISORY	0		2021-06-16	2021-06-17	GABAY - RESOURCES FOR THE BLIND, INC.
8783	3683	15897	8.00	MANAGERIAL	0		2021-06-15	2021-06-15	GABAY - RESOURCES FOR THE BLIND, INC
8784	3683	15898	16.00	TECHNICAL	0		2021-05-18	2021-05-19	GABAY - RESOURCES FOR THE BLIND, INC
8785	3683	15899	8.00	MANAGERIAL	0		2021-04-28	2021-04-28	FORTUNE LIFE & MARY LINDBERT INTERNATIONAL
8786	3685	15900	16.00	SUPERVISORY	0		2023-08-16	2023-08-17	DEPARTMENT OF EDUCATION
8787	3685	15901	8.00	TECHNICAL	0		2023-04-20	2023-04-20	DEPARTMENT OF EDUCATION
8788	3683	15902	40.00	MANAGERIAL	0		2021-03-22	2021-03-26	DIVISION OF BATANGAS CITY
8789	3683	15903	16.00	SUPERVISORY	0		2021-03-30	2021-03-31	DIVISION OF BATANGAS CITY
8790	3683	15906	40.00	MANAGERIAL	0		2021-03-22	2021-03-26	DIVISION OF BATANGAS CITY
8791	3685	15861	8.00	TECHNICAL	0		2023-04-20	2023-04-20	DEPARTMENT OF EDUCATION
8792	3685	15905	16.00	SUPERVISORY	0		2017-04-18	2017-04-19	DEPARTMENT OF EDUCATION
8793	3685	15907	24.00	TECHNICAL	0		2017-03-07	2017-03-09	DEPARTMENT OF EDUCATION
8794	3683	15908	3.00	TECHNICAL	0		2021-03-19	2021-03-19	DIVISION OF BATANGAS CITY
8795	3683	15909	3.00	TECHNICAL	0		2021-03-19	2021-03-19	DIVISION OF BATANGAS CITY
8796	3683	15910	3.00	TECHNICAL	0		2021-03-19	2021-03-19	DIVISION OF BATANGAS CITY
8797	3683	15912	8.00	TECHNICAL	0		2021-03-18	2021-03-18	DIVISION OF BATANGAS CITY
8798	3683	15913	4.00	TECHNICAL	0		2021-03-17	2021-03-17	DIVISION OF BATANGAS CITY
8799	3685	15911	24.00	TECHNICAL	0		2016-11-14	2016-11-19	DEPARTMENT OF EDUCATION 
8800	3685	8348	8.00	TECHNICAL	0		2016-09-29	2016-09-29	DEPARTMENT OF HEALTH
8801	3685	15914	24.00	TECHNICAL	0		2016-09-20	2016-09-22	DEPARTMENT OF HEALTH
8802	3683	15915	4.00	TECHNICAL	0		2021-03-17	2021-03-17	DIVISION OF BATANGAS CITY
8803	3683	15916	4.00	TECHNICAL	0		2021-03-16	2021-03-16	DIVISION OF BATANGAS CITY
8804	3683	15918	4.00	TECHNICAL	0		2021-03-16	2021-03-16	DIVISION OF BATANGAS CITY
8805	3685	15917	16.00	TECHNICAL	0		2016-08-17	2016-08-18	DEPARTMENT OF HEALTH
8806	3685	15919	8.00	TECHNICAL	0		2016-08-19	2016-08-19	DEPARTMENT OF HEALTH
8807	3683	15920	8.00	TECHNICAL	0		2015-03-15	2015-03-15	DIVISION OF BATANGAS CITY
8808	3686	15931	24.00	TECHNICAL 	0		2023-08-23	2023-08-25	DEPARTMENT OF HEALTH
8809	3686	15933	16.00	TECHNICAL 	0		2022-10-25	2022-10-26	DEPARTMENT OF HEALTH
8810	3686	15936	16.00	TECHNICAL 	0		2022-08-16	2022-08-17	DEPARTMENT OF HEALTH
8811	3686	15937	8.00	TECHNICAL 	0		2022-05-12	2022-05-12	DEPARTMENT OF HEALTH
8812	3683	15921	8.00	MANAGERIAL 	0		2021-03-11	2021-03-11	DIVISION OF BATANGAS CITY 
8813	3683	15922	40.00	TECHNICAL 	0		2021-03-01	2021-03-05	DEPED REGION IV A CALABARZON 
8814	3683	15923	16.00	TECHNICAL 	0		2021-02-24	2021-02-26	DIVISION OF BATANGAS CITY 
8815	3683	15924	8.00	TECHNICAL 	0		2021-02-19	2021-02-19	ASOSASYON NG AKLATAN AT SINUPAN NG DILIMAN, INC. ( AASDI) 
8816	3683	15925	40.00	MANAGERIAL 	0		2021-02-08	2021-04-16	SEAMEO INNOTECH,  DEPED, GERMAN CO
8817	3683	15926	24.00	MANAGERIAL 	0		2021-02-01	2021-02-03	DEPARTMENT OF EDUCATION  
8818	3683	15927	8.00	SUPERVISORY 	0		2020-12-10	2020-12-10	DEPARTMENT OF EDUCATION 
8819	3683	15928	16.00	SUPERVISORY 	0		2020-12-08	2020-12-09	DEPARTMENT OF EDUCATION 
8820	3683	15929	8.00	MANAGERIAL 	0		2020-10-23	2020-10-23	DEPARTMENT OF EDUCATION 
8821	3683	15927	20.00	SUPERVISORY 	0		2020-09-28	2020-10-02	DEPARTMENT OF EDUCATION 
8822	3683	15930	1.00	SUPERVISORY 	0		2020-10-27	2020-11-06	GABAY & PERKINS INTERNATIONAL, USA 
8823	3683	15932	40.00	SUPERVISORY 	0		2020-09-14	2020-09-18	DIVISION OF BATANGAS CITY 
8824	3683	15935	8.00	TECHNICAL 	0		2020-08-11	2020-08-11	JCI CABALLERO 
8825	3683	15364	16.00	TECHNICAL 	0		2020-07-28	2020-07-29	DIVISION OF BATANGAS CITY 
8826	3683	15938	8.00	TECHNICAL 	0		2020-07-17	2020-07-17	DEPARTMENT OF EDUCATION 
8827	3683	15940	8.00	TECHNICAL 	0		2020-07-07	2020-07-07	DISTRICT II- BATANGAS CITY 
8828	3683	15942	8.00	TECHNICAL 	0		2020-07-10	2020-07-10	DEPARTMENT OF EDUCATION - NEAP 
8829	3683	15944	4.00	TECHNICAL 	0		2020-06-26	2020-06-26	VIBAL GROUP 
8830	3683	15889	16.00	MANAGERIAL 	0		2020-01-30	2020-01-31	DEPD REGION IV-A-  CALABARZON 
8831	3683	15948	16.00	SUPERVISORY 	0		2021-08-26	2021-08-27	DIVISION OF BATANGAS CITY 
8832	3687	15934	8.00	TECHNICAL	0		2023-08-01	2023-08-01	DEPARTMENT OF EDUCATION
8833	3687	15861	8.00	TECHNICAL	0		2023-04-20	2023-04-20	DEPARTMENT OF EDUCATION
8834	3687	15153	8.00	TECHNICAL	0		2023-02-22	2023-02-22	DEPARTMENT OF EDUCATION
8835	3687	15114	8.00	TECHNICAL	0		2023-02-20	2023-02-20	DEPARTMENT OF EDUCATION
8836	3687	15900	16.00	TECHNICAL	0		2022-08-16	2022-08-17	DEPARTMENT OF EDUCATION
8837	3687	15939	3.00	MANAGERIAL	0		2022-07-20	2022-07-20	DEPARTMENT OF EDUCATION
8838	3687	15941	8.00	TECHNICAL	0		2022-07-15	2022-07-15	DEPARTMENT OF EDUCATION
8839	3687	15943	6.00	TECHNICAL	0		2022-07-13	2022-07-13	DEPARTMENT OF EDUCATION
8840	3687	15288	5.00	TECHNICAL	0		2022-07-12	2022-07-12	DEPARTMENT OF EDUCATION
8841	3687	15945	8.00	TECHNICAL	0		2022-07-11	2022-07-11	DEPARTMENT OF EDUCATION
8842	3687	15946	8.00	TECHNICAL	0		2022-07-08	2022-07-07	DEPARTMENT OF EDUCATION
8843	3687	15947	10.00	TECHNICAL	0		2022-07-04	2022-07-04	DEPARTMENT OF EDUCATION
8844	3683	15949	4.00	TECHNICAL	0		2020-06-26	2020-06-26	DEPARTMENT OF EDUCATION 
8845	3683	15950	8.00	TECHNICAL	0		2020-06-25	2020-06-25	VIBAL GROUP 
8846	3683	15951	8.00	TECHNICAL	0		2020-06-24	2020-06-24	VIBAL GROUP
8847	3683	15952	8.00	TECHNICAL	0		2020-06-23	2020-06-23	VIBAL GROUP
8848	3683	15953	1.00	TECHNICAL	0		2020-06-23	2020-06-23	REX ACADEMY 
8849	3683	15954	8.00	MANAGERIAL	0		2020-06-22	2020-06-22	VIBAL GROUP
8850	3683	15955	1.00	MANAGERIAL	0		2020-06-19	2020-06-19	ABIVA PUBLISHING HOUSE, INC.
8851	3683	15956	8.00	MANAGERIAL	0		2020-06-15	2020-06-15	VIBAL GROUP
8852	3683	15957	8.00	MANAGERIAL	0		2020-06-18	2020-06-18	VIBAL GROUP
8853	3683	15958	4.00	TECHNICAL	0		2020-06-12	2020-06-12	VIBAL GROUP
8854	3683	15959	4.00	TECHNICAL	0		2020-06-12	2020-06-12	VIBAL GROUP
8855	3683	15960	4.00	MANAGERIAL 	0		2020-06-10	2020-06-10	CAREER EXECUTIVE SERVICE BOARD 
8856	3683	15961	4.00	SUPERVISORY	0		2020-06-10	2020-06-10	REX ACADEMY
8857	3683	15962	4.00	MANAGERIAL	0		2020-06-08	2020-06-08	VIBAL GROUP
8858	3683	15964	4.00	MANAGERIAL	0		2020-06-08	2020-06-08	VIBAL GROUP
8859	3683	15966	4.00	TECHNICAL	0		2020-06-08	2020-06-08	ABIVA PUBLISHING HOUSE, INC.
8860	3683	15968	4.00	MANAGERIAL	0		2020-06-05	2020-06-05	VIBAL GROUP
8861	3683	15969	4.00	TECHNICAL	0		2020-06-05	2020-06-05	ABIVA PUBLISHING HOUSE,INC.
8862	3683	15970	4.00	TECHNICAL	0		2020-06-04	2020-06-04	ABIVA PUBLISHING HOUSE,INC.
8863	3683	15971	4.00	TECHNICAL	0		2020-06-03	2020-06-03	ABIVA PUBLISHING HOUSE,INC.
8864	3683	15973	4.00	TECHNICAL 	0		2020-06-02	2020-06-02	VIVAL GROUP
8875	3683	15974	4.00	TECHNICAL 	0		2020-06-02	2020-06-02	VIBAL GROUP 
8876	3683	15975	4.00	TECHNICAL 	0		2020-06-02	2020-06-02	VIBAL GROUP 
8877	3683	15976	8.00	TECHNICAL 	0		2020-05-29	2020-05-29	VIBAL GROUP 
8878	3683	15978	4.00	TECHNICAL 	0		2020-05-28	2020-05-28	VIBAL GROUP 
8879	3683	15979	4.00	TECHNICAL 	0		2020-05-28	2020-05-28	VIBAL GROUP 
8880	3683	15981	8.00	TECHNICAL 	0		2020-05-27	2020-05-27	VIBAL GROUP 
8881	3683	15983	4.00	TECHNICAL 	0		2020-05-26	2020-05-26	VIBAL GROUP 
8882	3683	15985	4.00	TECHNICAL 	0		2020-05-26	2020-05-26	VIBAL GROUP 
8883	3683	15986	4.00	TECHNICAL 	0		2020-05-25	2020-05-25	VIBAL GROUP 
8884	3683	15987	4.00	TECHNICAL 	0		2020-05-25	2020-05-25	VIBAL GROUP 
8885	3683	15988	8.00	MANAGERIAL 	0		2020-05-22	2020-05-22	VIBAL GROUP 
8886	3683	15989	8.00	MANAGERIAL 	0		2020-05-21	2020-05-21	VIBAL GROUP 
8887	3683	15990	8.00	SUPERVISORY 	0		2020-05-16	2020-05-16	VIBAL GROUP 
8888	3683	15991	8.00	TECHNICAL 	0		2020-05-14	2020-05-14	QUIPPER PH& BOUNCE BACK PH
8889	3683	15992	8.00	SUPERVISORY 	0		2020-05-13	2020-05-13	VIBAL GROUP 
8890	3683	15993	4.00	TECHNICAL 	0		2020-05-06	2020-05-06	BOUNCE BACK PH MOVEMENT 
8891	3683	15994	4.00	MANAGERIAL 	0		2020-05-06	2020-05-06	VIBAL GROUP 
8892	3683	15995	4.00	MANAGERIAL 	0		2020-05-05	2020-05-05	VIBAL GROUP 
8893	3683	15996	4.00	SUPERVISORY 	0		2020-05-04	2020-05-04	VIBAL GROUP 
8894	3683	15997	4.00	MANAGERIAL 	0		2020-04-30	2020-04-30	BOUNCE BACK PH MOVEMENT 
8895	3683	15999	4.00	TECHNICAL 	0		2020-04-30	2020-04-30	VIBAL GROUP 
8896	3690	15998	8.00	TECHNICAL	0		2023-12-18	2023-12-18	DEPARTMENT OF EDUCATION
8897	3690	15673	8.00	TECHNICAL 	0		2023-09-08	2023-09-08	DEPARTMENT OF EDUCATION 
8898	3690	16000	8.00	TECHNICAL	0		2023-04-01	2023-04-01	DEPARTMENT OF EDUCATION
8899	3690	16003	16.00	TECHNICAL 	0		2023-03-13	2023-03-17	DEPARTMENT OF EDUCATION
8900	3690	16005	8.00	TECHNICAL	0		2023-03-01	2023-03-01	DEPARTMENT OF EDUCATION
8901	3690	15230	8.00	TECHNICAL	0		2022-12-14	2022-12-14	DEPARTMENT OF EDUCATION
8902	3690	16007	24.00	TECHNICAL	0		2022-10-04	2022-10-07	DEPARTMENT OF EDUCATION
8903	3690	15871	16.00	TECHNICAL	0		2022-09-29	2022-09-03	DEPARTMENT OF EDUCATION
8920	3683	16001	4.00	TECHNICAL	0		2020-04-25	2020-04-25	VIBAL GROUP
8921	3683	16002	4.00	TECHNICAL	0		2020-04-24	2024-04-24	VIBAL GROUP 
8922	3683	16004	4.00	TECHNICAL	0		2020-04-22	2020-04-22	VIBAL GROUP 
8923	3683	16006	4.00	TECHNICAL	0		2020-04-16	2020-04-16	VIBAL GROUP 
8924	3683	16008	8.00	TECHNICAL	0		2020-07-25	2020-07-25	DIVISION OF BATANGAS CITY
8925	3683	16011	4.00	TECHNICAL	0		2020-06-09	2020-06-09	DIVISION OF BATANGAS CITY
8926	3683	16012	4.00	TECHNICAL	0		2020-05-19	2020-05-19	DIVISION OF BATANGAS CITY
9213	3706	16274	40.00		0		2024-01-22	2024-01-26	DEPARTMENT OF EDUCATION (DRRMS)
8865	3688	15178	8.00	TECHNICAL	0		2023-11-22	2023-11-22	SDO - BATANGAS CITY
8866	3688	15045	24.00	TECHNICAL	0		2023-09-11	2023-09-13	SDO - BATANGAS CITY
8867	3688	15963	8.00	TECHNICAL	0		2023-08-18	2023-08-18	SDO - BATANGAS CITY
8868	3688	15967	32.00	TECHNICAL	0		2023-07-25	2023-07-25	DEPED CENTRAL OFFICE 
8869	3688	15965	40.00	TECHNICAL	0		2022-10-17	2022-10-21	DEPED CENTRAL OFFICE
8870	3688	15977	24.00	TECHNICAL	0		2023-06-20	2023-06-22	TECHNICAL
8871	3688	15972	40.00	TECHNICAL	0		2022-08-17	2022-10-21	DEPED CENTRAL OFFICE
8872	3688	15703	40.00	TECHNICAL	0		2022-05-04	2022-05-26	SDO - BATANGAS CITY
8873	3688	15982	40.00	TECHNICAL	0		2020-05-04	2020-05-08	DEPED CENTRAL OFFICE
8874	3688	15984	40.00	TECHNICAL	0		2020-04-27	2020-04-30	DEPED CENTRAL OFFICE
8904	3689	16010	24.00	MANAGERIAL 	0		2024-01-24	2024-01-26	BATANGAS CITY GOVERNMENT 
8905	3689	15825	16.00	MANAGERIAL 	0		2021-05-13	2021-05-14	PAFTE REGION IV-A 
8906	3689	16014	2.00	TECHNICAL 	0		2021-03-30	2021-03-30	DEPARTMENT OF EDUCATION 
8907	3689	16016	40.00	TECHNICAL 	0		2021-03-15	2021-03-19	DEPARTMENT OF EDUCATION- REGION IV A 
8908	3689	16017	16.00	TECHNICAL 	0		2020-11-14	2020-11-21	LIONS QUEST PHILIPPINES 
8909	3689	16019	24.00	TECHNICAL 	0		2020-08-18	2020-08-20	DEPARTMENT OF EDUCATION 
8910	3689	16021	36.00	TECHNICAL 	0		2019-06-12	2019-08-12	ASIAN CENTER OF EDUCATION RESEARCH AND TRAINING FOR INNOVATION 
8911	3689	16022	40.00	MANAGERIAL 	0		2019-08-12	2019-08-16	DEPARTMENT OF EDUCATION 
8912	3689	16024	32.00	TECHNICAL 	0		2019-05-14	2019-05-18	ALS TASK FORCE, DEPARTMENT OF EDUCATION 
8913	3689	16025	72.00	TECHNICAL 	0		2019-03-18	2019-03-27	ALS TASK FORCE, DEPARTMENT OF EDUCATION 
8914	3689	16027	40.00	TECHNICAL 	0		2019-01-21	2019-01-25	USAID EDUCATION DEVELOPMENT CENTER
8915	3689	16029	40.00	MANAGERIAL 	0		2018-09-10	2018-09-14	USAID EDUCATION DEVELOPMENT CENTER
8916	3689	16030	16.00	MANAGERIAL 	0		2018-07-20	2018-07-21	DEPED BATANGAS CITY 
8917	3689	16031	16.00	MANAGERIAL 	0		2018-06-06	2018-06-07	DEPED- BUREAU OF LEARNING DELIVERY 
8918	3689	16035	24.00	TECHNICAL 	0		2018-03-20	2018-03-22	DEPED- BUREAU OF LEARNING DELIVERY
8919	3689	16036	16.00	TECHNICAL 	0		2018-01-30	2018-01-31	DEPED REGION IV- A CALABARZON 
8958	3692	16058	24.00	TECHNICAL 	0		2023-10-24	2023-10-26	PHILIPPINE NURSES ASSOCIATION 
8959	3692	16059	16.00	TECHNICAL 	0		2023-10-17	2023-10-18	SHARE INC/ BREAK THE SILENCE LLOCAL NETWORK- WESTERN BATANGAS 
8960	3692	16061	8.00	TECHNICAL 	0		2023-08-31	2023-08-31	PSWDO, BATANGAS 
8961	3692	16062	16.00	TECHNICAL 	0		2023-04-25	2023-04-26	CHD 4A
8962	3692	16064	9.00	TECHNICAL 	0		2023-04-26	2023-04-26	DOH ACADEMY 
8963	3692	15861	8.00	TECHNICAL 	0		2023-04-20	2023-04-20	SCHOOLS DIVISION OF BATANGAS CITY 
8964	3692	16067	40.00	TECHNICAL 	0		2023-04-15	2023-11-04	DEPED CENTRAL OFFICE 
8965	3692	15299	16.00	TECHNICAL 	0		2023-01-25	2023-01-26	SCHOOLS DIVISION OF BATANGAS CITY 
8966	3692	16069	24.00	TECHNICAL 	0		2022-12-31	2022-12-15	POPULATION COMMISSION REGIONAL OFFICE/ BATANGAS CITY HEALTH OFFICE 
8967	3692	16070	16.00	TECHNICAL 	0		2022-08-16	2022-08-17	
8968	3692	16072	8.00	TECHNICAL 	0		2022-02-10	2022-02-10	UDEMY 
8969	3692	16073	1.00	TECHNICAL 	0		2022-09-26	2022-09-26	UDEMY 
8970	3692	16074	1.00	TECHNICAL 	0		2022-09-22	2022-09-22	UDEMY 
8971	3692	16075	1.00	TECHNICAL 	0		2022-09-20	2022-09-20	UDEMY 
8972	3692	16076	7.00	TECHNICAL 	0		2022-09-21	2022-09-21	UDEMY 
8973	3692	16077	3.00	TECHNICAL 	0		2022-09-18	2022-09-18	UDEMY 
8974	3692	16078	7.00	TECHNICAL 	0		2022-08-10	2022-12-08	UDEMY 
8975	3692	16079	8.00		0		2022-07-30	2022-07-30	
8976	3692	16081	8.00		0		2022-07-22	2022-07-22	
8977	3692	16082	32.00		0		2022-05-17	2022-05-20	
8984	3685	16087	8.00	TECHNICAL 	0		2016-08-19	2016-08-19	DEPARTMENT OF HEALTH 
8985	3685	16088	8.00	TECHNICAL 	0		2016-06-24	2016-06-24	DEPARTMENT OF HEALTH 
8986	3685	16090	8.00	TECHNICAL 	0		2016-06-09	2016-06-09	PROVINCIAL HEALTH OFFICE 
8987	3685	16092	16.00	TECHNICAL 	0		2016-03-17	2016-03-18	DEPARTMENT OF HEALTH 
8988	3685	16094	8.00	TECHNICAL 	0		2016-03-02	2016-03-02	DEPARTMENT OF HEALTH 
8989	3685	16095	8.00	TECHNICAL 	0		2016-09-15	2016-09-15	DEPARTMENT OF HEALTH 
8990	3685	16097	8.00	TECHNICAL 	0		2015-09-03	2015-09-03	DEPARTMENT OF HEALTH 
8991	3685	16099	24.00	TECHNICAL 	0		2015-07-22	2015-07-24	DEPARTMENT OF HEALTH 
8992	3685	16101	8.00	TECHNICAL 	0		2015-06-18	2015-06-18	DEPARTMENT OF HEALTH 
8993	3685	16102	24.00	TECHNICAL 	0		2015-04-13	2015-04-15	DEPARTMENT OF HEALTH 
8994	3685	15495	24.00	TECHNICAL 	0		2014-10-12	2014-12-12	DEPARTMENT OF EDUCATION 
8927	3683	16015	16.00	MANAGERIAL	0		2020-02-13	2020-02-14	DIVISION OF BATANGAS CITY
8928	3683	16018	4.00	TECHNICAL	0		2020-06-17	2020-06-17	ABIVA PUBLISHING HOUSE, INC.
8929	3683	16026	8.00	TECHNICAL	0		2020-06-11	2020-06-11	DIVISIONS OF BATANGAS CITY- DISTRICT II
8930	3683	16028	16.00	MANAGERIAL	0		2019-11-28	2019-11-29	DIVISION OF BATANGAS CITY
8931	3683	16032	24.00	SUPERVISORY	0		2019-11-25	2019-11-27	DIVISION OF BATANGAS CITY
8932	3683	16034	24.00	TECHNICAL	0		2019-11-13	2019-11-15	DIVISION OF BATANGAS CITY
8933	3683	16037	8.00	MANAGERIAL	0		2019-10-18	2019-10-18	DIVISION OF BATANGAS CITY
8934	3683	16038	8.00	TECHNICAL	0		2019-08-30	2019-08-30	DIVISION OF BATANGAS CITY
8935	3683	15324	16.00	MANAGERIAL	0		2019-07-30	2019-07-31	DIVISION OF BATANGAS CITY
8936	3683	16039	8.00	TECHNICAL	0		2020-03-30	2020-03-30	DIVISION OF BATANGAS CITY
8937	3683	16040	8.00	MANAGERIAL 	0		2019-06-19	2019-06-19	DIVISION OF BATANGAS CITY
8938	3683	15062	16.00	TECHNICAL 	0		2019-07-30	2019-07-31	DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY
8939	3683	16042	8.00	MANAGERIAL	0		2019-07-25	2019-07-25	DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY
8940	3683	16043	8.00	MANAGERIAL	0		2019-07-22	2019-07-22	DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY
8941	3683	16044	8.00	SUPERVISORY	0		2019-07-18	2019-07-18	DEPARTMENT OF EDUCATION-BHROD
8942	3683	16045	16.00	TECHNICAL	0		2019-06-18	2019-06-19	DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY
8943	3683	16046	16.00	MANAGERIAL	0		2019-06-03	2019-07-03	REGION IV-A CALABARZON
8944	3683	16047	8.00	TECHNICAL	0		2019-02-28	2019-02-28	ASCEDENS ASIA 
8945	3683	16048	8.00	SUPERVISORY	0		2018-12-13	2018-12-13	DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY
8946	3683	16049	24.00	TECHNICAL	0		2018-11-27	2018-11-29	REGION IV-A CALABARZON
8947	3683	16050	8.00	SUPERVISORY	0		2018-11-08	2018-11-08	DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY
8948	3683	16051	72.00	MANAGERIAL	0		2018-10-19	2018-10-28	REGION IV-A CALABARZON
8949	3683	16052	8.00	MANAGERIAL	0		2018-10-12	2018-10-12	DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY
8950	3683	16053	72.00	MANAGERIAL	0		2018-10-17	2018-10-19	REGION IV-A CALABARZON/TEACHER'S GALLERY
8951	3683	16054	16.00	TECHNICAL	0		2018-10-16	2018-10-17	DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY
8952	3683	16055	48.00	TECHNICAL	0		2018-10-01	2018-10-06	REGIONAL IV-A CALABARZON
8953	3683	16056	8.00	SUPERVISORY	0		2018-08-14	2018-08-14	DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY
8954	3683	16057	8.00	SUPERVISORY	0		2018-04-26	2018-04-26	DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY
8955	3683	16060	16.00	TECHNICAL	0		2018-01-23	2018-03-05	ALANGILAN CENTRAL ES
8956	3683	16063	24.00	TECHNICAL	0		2018-02-20	2022-02-22	DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY
8957	3683	16065	32.00	TECHNICAL	0		2018-02-05	2018-02-08	DEPARTMENT OF EDUCATION-DIVISION OF BATANGAS CITY
8978	3691	15113	24.00	TECHNICAL	0		2023-09-11	2023-09-13	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8979	3691	16091	8.00	TECHNICAL	0		2023-08-01	2023-08-01	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8980	3691	15861	8.00	TECHNICAL	0		2023-04-20	2023-04-20	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8981	3691	15153	24.00	TECHNICAL	0		2024-02-20	2003-02-22	DEPARTMENT OF EDUCATION, BATANGAS CITY 
8982	3691	16098	24.00	TECHNICAL	0		2022-10-04	2022-10-07	DEPARTMENT OF EDUCATION, BATANGAS CITY
8983	3691	15900	16.00	TECHNICAL	0		2022-08-16	2022-08-17	DEPARTMENT OF EDUCATION, BATANGAS CITY
8995	3694	16080	16.00	TECHNICAL	0		2023-12-04	2023-12-05	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
8996	3694	15107	4.00	TECHNICAL	0		2023-11-23	2023-11-23	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
8997	3694	15044	8.00	TECHNICAL	0		2023-11-22	2023-11-22	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
8998	3694	15529	8.00	TECHNICAL	0		2023-10-02	2023-10-02	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
8999	3694	16083	32.00	TECHNICAL	0		2023-09-20	2023-09-23	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9000	3694	15045	24.00	TECHNICAL	0		2023-09-11	2023-09-13	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9001	3694	16084	8.00	TECHNICAL	0		2023-09-08	2023-09-08	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9002	3694	16085	8.00	TECHNICAL	0		2023-08-24	2023-08-24	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9003	3694	15148	8.00	TECHNICAL	0		2023-03-20	2023-03-20	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9004	3694	15221	8.00	TECHNICAL	0		2023-03-20	2023-03-20	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9005	3694	16005	8.00	TECHNICAL 	0		2023-03-01	2023-03-01	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9006	3694	16089	8.00	TECHNICAL	0		2023-02-23	2023-03-23	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9007	3694	16093	4.00	TECHNICAL	0		2022-12-21	2022-12-21	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9008	3694	15230	8.00	TECHNICAL 	0		2022-12-14	2022-12-14	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9009	3694	16096	8.00	TECHNICAL	0		2022-11-21	2022-11-21	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9010	3694	15871	14.00	TECHNICAL 	0		2022-09-29	2022-09-30	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9011	3694	15751	8.00	TECHNICAL	0		2022-06-30	2022-06-30	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9012	3694	15339	4.00	TECHNICAL	0		2022-05-27	2022-05-27	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9013	3694	15568	4.00	TECHNICAL 	0		2021-11-25	2021-11-25	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9014	3694	8752	16.00	TECHNICAL	0		2019-08-15	2019-08-16	BATANGAS CITY DISASTER RISK REDUCTION AND MANAGEMENT COUNCIL
9015	3693	16105	16.00	TECHNICAL	0		2023-12-06	2023-12-07	REGION IV-A (CALABARZON)- FTAD
9016	3693	16106	24.00	TECHNICAL	0		2023-11-06	2023-11-08	BUREAU OF EDUCATION ASSESSMENT (BEA)
9017	3693	16107	16.00	TECHNICAL 	0		2023-09-25	2023-09-26	SDO BATANGAS CITY
9018	3693	16109	40.00	TECHNICAL 	0		2023-06-19	2023-06-23	BHROB-CENTRAL OFFICE
9019	3693	16110	16.00	TECHNICAL	0		2022-12-06	2022-12-07	HUMAN RESOURCE AND ORGANIZATIONAL DEVELOPMENT, NEAP, MARIKINA 
9020	3693	16111	24.00	TECHNICAL	0		2022-11-08	2022-11-10	REGION IV-A (CALABARZON) - QAD
9021	3693	16112	16.00	TECHNICAL	0		2022-10-25	2022-10-27	REGION IV-A (CALABARZON) QAD
9022	3693	16113	32.00	TECHNICAL	0		2022-10-11	2022-10-14	REGION IV-A (CALABARZON) QAD
9023	3693	16115	8.00	TECHNICAL	0		2022-10-05	2022-10-05	TESDA
9024	3693	16116	24.00	TECHNICAL	0		2022-09-19	2022-09-21	REGION IV-A (CALABARZON) QAD
9025	3693	15799	16.00	TECHNICAL	0		2022-08-03	2022-08-04	SDO BATANGAS CITY
9026	3693	15751	8.00	TECHNICAL	0		2022-06-30	2022-06-30	DEPARTMENT OF EDUCATION
9027	3693	16119	16.00	TECHNICAL	0		2022-06-16	2022-06-17	REGION IV-A (CALABARZON) QAD
9028	3693	16121	8.00	TECHNICAL	0		2022-03-31	2022-03-31	BOYSCOUT OF THE PHILIPPINES
9029	3696	16114	8.00	SUPERVISORY	0		2023-12-12	2023-12-12	DEPED CENTRAL OFFICE
9030	3696	15178	8.00	TECHNICAL 	0		2023-11-22	2023-11-22	SDO - BATANGAS CITY 
9031	3696	15303	8.00	TEHCNICAL	0		2023-11-17	2023-11-17	SDO - BATANGAS CITY 
9032	3696	16117	8.00	TECHNICAL	0		2023-11-19	2023-11-19	SDO - BATANGAS CITY 
9033	3696	15045	24.00	TECHNICAL	0		2023-09-11	2023-09-13	SDO - BATANGAS CITY 
9034	3696	15725	8.00	TECHNICAL	0		2023-03-30	2023-03-30	SDO - BATANGAS CITY 
9035	3696	16120	24.00	TECHNICAL	0		2023-03-22	2023-03-24	DEPED REGION IV-A 
9036	3696	16122	24.00	TECHNICAL	0		2023-03-21	2023-03-24	SDO - BATANGAS CITY 
9037	3695	15232	24.00	SUPERVISORY 	0		2024-01-11	2024-01-12	SCHOOLS DIVISION OFFICE OF BATANGAS CITY 
9038	3695	16123	24.00	SUPERVISORY 	0		2023-11-28	2023-11-30	REGION IV A CALABARZON 
9039	3695	16123	24.00	SUPERVISORY 	0		2023-11-28	2023-11-28	REGION IV A CALABARZON 
9040	3695	16067	40.00	SUPERVISORY 	0		2023-04-11	2023-04-15	DEPARTMENT OF EDUCATION- CENTRAL OFFICE
9041	3695	15114	8.00	SUPERVISORY 	0		2023-02-20	2023-02-20	DEPARTMENT OF EDUCATION- CENTRAL OFFICE 
9042	3695	16126	32.00	SUPERVISORY 	0		2023-06-27	2023-06-30	DEPARTMENT OF EDUCATION- CENTRAL OFFICE 
9043	3696	16005	8.00	TECHNICAL	0		2023-03-01	2023-03-01	SDO - BATANGAS CITY 
9044	3696	15114	8.00	TECHNICAL	0		2023-02-20	2023-02-20	SDO - BATANGAS CITY 
9045	3696	16124	16.00	SUPERVISORY	0		2022-10-20	2022-10-21	DEPED REGION IV-A
9046	3696	16125	16.00	TECHNICAL	0		2022-10-24	2022-10-25	DEPED REGION IV-A
9047	3696	15699	16.00	SUPERVISORY	0		2022-08-04	2022-08-05	DEPED REGION IV-A
9048	3696	16119	16.00	TECHNICAL	0		2022-06-27	2022-06-28	DEPED REGION IV-A
9049	3695	16127	24.00	SUPERVISORY 	0		2023-07-11	2023-07-13	REGION IV A CALABARZON 
9050	3695	16129	32.00	SUPERVISORY	0		2023-09-26	2023-09-29	REGION IV A CALABARZON 
9051	3695	16130	16.00	SUPERVISORY 	0		2023-09-14	2023-09-15	REGION IV A CALABARZON 
9052	3695	16131	32.00	SUPERVISORY 	0		2023-05-16	2023-05-19	DEPARTMENT OF EDUCATION- CENTRAL OFFICE 
9053	3696	15054	16.00	TECHNICAL 	0		2021-08-17	2021-08-19	SDO - BATANGAS CITY
9054	3696	15158	24.00	TECHNICAL	0		2021-04-19	2021-04-21	SDO - BATANGAS CITY
9055	3695	16133	24.00	SUPERVISORY 	0		2023-01-26	2023-01-27	DEPARTMENT OF EDUCATION- CENTRAL OFFICE
9056	3695	16134	8.00	SUPERVISORY 	0		2022-10-19	2022-10-19	REGION IV A CALABARZON 
9057	3695	16135	24.00	SUPERVISORY 	0		2022-09-21	2022-09-23	REGION IV A CALABARZON 
9058	3695	16137	24.00	SUPERVISORY 	0		2021-09-17	2021-09-17	ALOYSIAN PULICATIONS ( PHILIPPINES) IN COOPERATION WITH BETMA ENGLISH ( VIETNAM )
9059	3696	16136	40.00	TECHNICAL	0		2019-10-07	2019-10-11	DEPED REGION IV-A
9060	3696	16138	40.00	SUPERVISORY	0		2019-11-13	2019-11-15	SDO - BATANGAS CITY
9061	3696	16139	22.00	SUPERVISORY	0		2018-11-19	2018-11-22	DEPED REGION IV-A
9062	3696	16140	40.00	SUPERVISORY	0		2018-12-03	2018-12-07	DEPED REGION IV-A
9063	3695	15599	32.00	SUPERVISORY 	0		2021-10-18	2021-10-29	THAMES INTERNATIONAL 
9064	3695	16141	20.00	SUPERVISORY 	0		2021-05-24	2021-05-26	REGION IV A CALABARZON 
9065	3695	16142	42.00	SUPERVISORY 	0		2020-05-25	2020-06-02	TECHNICAL EDDUCATION AND SKILLS DEVELOPMENT AUTHORITY ( TESDA) 
9066	3695	15371	42.00	SUPERVISORY 	0		2020-06-02	2020-06-08	TECHNICAL EDDUCATION AND SKILLS DEVELOPMENT AUTHORITY ( TESDA)
9067	3695	16143	42.00	SUPERVISORY 	0		2020-06-08	2020-06-16	TECHNICAL EDDUCATION AND SKILLS DEVELOPMENT AUTHORITY ( TESDA)
9068	3698	16145	28.00	TECHNICAL 	0		2023-10-16	2023-10-20	DEPARTMENT OF EDUCATION 
9069	3698	16148	40.00	TECHNICAL 	0		2023-01-09	2023-01-13	DEPARTMENT OF EDUCATION 
9070	3698	16149	40.00	TECHNICAL 	0		2023-10-10	2023-10-14	DEPARTMENT OF EDUCATION 
9071	3698	16151	24.00	TECHNICAL 	0		2023-03-07	2023-03-09	DEPARTMENT OF EDUCATION 
9072	3698	15685	24.00	TECHNICAL 	0		2023-07-18	2023-07-20	DEPARTMENT OF EDUCATION 
9073	3698	16156	32.00	TECHNICAL 	0		2023-06-14	2023-06-17	DEPARTMENT OF EDUCATION 
9074	3698	16157	24.00	TECHNICAL 	0		2023-08-03	2023-08-05	DEPARTMENT OF EDUCATION 
9075	3698	16159	24.00	TECHNICAL 	0		2022-11-16	2022-11-18	DEPARTMENT OF EDUCATION 
9076	3698	16160	24.00	TECHNICAL 	0		2022-11-08	2022-11-10	DEPARTMENT OF EDUCATION 
9077	3698	16162	24.00	TECHNICAL 	0		2022-10-25	2022-10-27	DEPARTMENT OF EDUCATION 
9078	3698	16164	24.00	TECHNICAL 	0		2022-02-21	2022-02-23	DEPARTMENT OF EDUCATION 
9079	3698	16165	24.00	TECHNICAL 	0		2022-05-25	2022-05-27	DEPARTMENT OF EDUCATION 
9080	3698	16166	24.00	TECHNICAL 	0		2021-10-27	2021-10-29	DEPARTMENT OF EDUCATION 
9081	3698	16167	40.00	TECHNICAL 	0		2021-10-04	2021-10-04	DEPARTMENT OF EDUCATION 
9082	3698	16168	24.00	TECHNICAL 	0		2021-05-11	2021-05-14	DEPARTMENT OF EDUCATION 
9083	3698	16169	24.00	TECHNICAL 	0		2021-04-20	2021-04-22	DEPARTMENT OF EDUCATION 
9084	3698	16170	32.00	TECHNICAL 	0		2021-04-17	2021-04-20	DEPARTMENT OF EDUCATION 
9085	3700	16144	32.00	TECHNICAL	0		2023-09-19	2023-09-22	DEPED CENTRAL OFFICE - BLSS SCHOOL HEALTH DIVISION
9086	3700	16147	16.00	TECHNICAL 	0		2023-09-14	2023-09-15	DEPED CALABARZON - ESSD REGIONAL OFFICE
9087	3700	16150	24.00	TECHNICAL	0		2023-08-23	2023-08-25	DEPARMENT OF HEALTH - CALABARZON
9088	3700	16154	24.00	TECHNICAL 	0		2023-02-15	2023-02-17	PHILIPPINES SOCIETY OF HYPERTENSION PHILIPPINE LIPID AND ATHERIOSCIEROSIS
9089	3700	16173	4.00	TECHNICAL 	0		2022-02-21	2022-02-22	MAKATI MEDICAL CENTER SECTION OF CARDIOLOGY
9090	3700	16174	8.00	TECHNICAL	0		2023-03-01	2023-03-02	PHILIPPINE AMBULATORY PEDIATRIC ASSOCIATION, INC.
9091	3700	16177	24.00	TECHNICAL	0		2023-03-09	2023-03-11	PSPGHAN, INC.
9092	3700	16178	4.00	TECHNICAL	0		2023-04-01	2023-04-01	XAVIER UNIVERSITY COLLEGE OF MEDICINE
9093	3697	15113	24.00	MANAGERIAL	0		2023-09-12	2023-09-13	DEPARTMENT OF EDUCATION
9094	3697	16152	40.00	TECHNICAL	0		2023-07-29	2023-08-03	DEPARTMENT OF EDUCATION
9095	3697	15101	8.00	TECHNICAL	0		2023-03-30	2023-03-30	DEPARTMENT OF EDUCATION
9096	3697	16161	16.00	TECHNICAL	0		2019-12-05	2019-12-06	DEPARTMENT OF EDUCATION
9097	3697	16163	24.00	TECHNICAL	0		2019-12-02	2019-12-04	DEPARTMENT OF EDUCATION
9098	3697	16172	40.00	TECHNICAL	0		2019-11-03	2019-11-07	DEPARTMENT OF EDUCATION
9099	3697	16176	40.00	MANAGERIAL	0		2019-10-07	2019-10-11	DEPARTMENT OF EDUCATION
9100	3697	16179	8.00	TECHNICAL	0		2019-09-06	2019-09-06	DEPARTMENT OF LABOR AND EMPLOYMENT REGION IV-A & ADVOCATES FOR CAREER AND EDUCATION SUPPPORT, INC. (ACESI)
9101	3697	536	32.00	TECHNICAL	0		2019-07-09	2019-07-12	DEPARTMENT OF EDUCATION
9102	3697	16183	8.00	TECHNICAL	0		2019-03-30	2019-03-30	 DEPARTMENT OF EDUCATION
9103	3701	16195	24.00	TECHNICAL 	0		2023-11-06	2023-11-08	REGION IV A CALABARZON 
9104	3701	15813	16.00	TECHNICAL 	0		2023-11-04	2023-11-05	SCHOOLS DIVISION OF BATANGAS CITY 
9105	3701	16197	24.00	MANAGERIAL 	0		2023-10-11	2023-10-13	REGION IV A CALABARZON 
9106	3701	16198	32.00	SUPERVISORY 	0		2023-09-26	2023-09-29	REGION IV A CALABARZON 
9107	3701	16200	16.00	MANAGERIAL 	0		2023-09-21	2023-09-22	REGION IV A CALABARZON 
9108	3701	15045	24.00	MANAGERIAL 	0		2023-09-11	2023-09-13	SCHOOLS DIVISION OF BATANGAS CITY 
9109	3701	16201	16.00	TECHNICAL 	0		2023-03-20	2023-03-21	REGION IV A CALABARZON 
9110	3701	16202	24.00	TECHNICAL 	0		2023-02-22	2023-02-20	REGION IV A CALABARZON 
9111	3701	15153	6.00	SUPERVISORY 	0		2023-02-21	2023-02-21	SCHOOLS DIVISION OF BATANGAS CITY 
9112	3701	16204	24.00	TECHNICAL 	0		2022-11-22	2022-11-24	REGION IV A CALABARZON 
9113	3699	16171	8.00	TECHNICAL	0		2023-02-21	2023-02-21	DEPARTMENT OF EDUCATIONSCHOOLS DIVISION OFFICE OF BATANGAS CITY 
9114	3699	16175	16.00	TECHNICAL	0		2023-02-16	2023-02-17	DEPARTMENT OF EDUCATION REGIONAL OFFICE
9115	3699	16180	24.00	TECHNICAL	0		2023-02-07	2023-02-09	SCHOOL INFRASTRACTURE AND FACILITIES,DEPARTMENT OF EDUCATION CENTRAL OFFICE 
9116	3699	16181	32.00	TECHNICAL	0		2022-12-13	2022-12-16	DEPARTMENT OF EDUCATIONSCHOOLS DIVISION OFFICE OF BATANGAS CITY 
9117	3699	16184	16.00	TECHNICAL	0		2022-10-24	2022-10-25	DEPARTMENT OF SCIENCE AND TECHNOLOGY , PROVINCIAL SCIENCE AND TECHNOLOGYOFFICE - BATANGAS
9118	3699	16185	32.00	TECHNICAL	0		2022-11-07	2022-11-11	WHITE CLIFF HEALTH AND SAFETY SERVICES
9119	3699	16186	14.00	TECHNICAL	0		2022-09-29	2022-09-30	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OFFICE ODF BATANGAS CITY
9120	3699	16187	8.00	TECHNICAL	0		2022-09-07	2022-09-07	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OFFICE ODF BATANGAS CITY
9121	3699	16188	32.00	TECHNICAL	0		2022-09-04	2022-09-26	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OFFICE ODF BATANGAS CITY
9122	3699	16190	10.00	TECHNICAL	0		2021-06-08	2021-06-09	ASPREC-MANALO OCCUPATIONAL SAFETY & HEALTH DEPARTMENT OF LABOR AND EMPLOYMENT
9123	3699	16191	8.00	TECHNICAL	0		2021-05-30	2021-05-31	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OFFICE OF BATANGAS CITY
9124	3699	16193	8.00	TECHNICAL	0		2021-05-28	2021-05-28	ASPREC-MANALO OCCUPATIONAL SAFETY & HEALTH DEPARTMENT OF LABOR AND EMPLOYMENT 
9125	3699	16194	8.00	TECHNICAL	0		2021-05-27	2021-05-27	DEPED CALABARZON REGIONAL OFFICE
9126	3699	16196	40.00	TECHNICAL	0		2021-01-25	2021-03-19	DEPED CALABARZON REGIONAL OFFICE
9127	3699	16199	4.00	TECHNICAL	0		2020-10-14	2020-10-15	EDUCATION SUPPORT SERVICES DIVISION, ESSDWITH HUMAN RESOURCES DEVELOPMENT DIVISION ,HRRD ,DEPARTMENT OF EDUCATION CALABARZON REGIONAL OFFICE
9128	3699	16203	16.00	TECHNICAL	0		2020-07-28	2020-07-31	EDUCATION SUPPORT SERVICES DIVISION, ESSDWITH HUMAN RESOURCES DEVELOPMENT DIVISION ,HRRD ,DEPARTMENT OF EDUCATION CALABARZON REGIONAL OFFICE
9129	3699	16205	8.00	TECHNICAL	0		2020-07-27	2020-07-28	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9130	3699	16207	4.00	TECHNICAL	0		2020-07-20	2020-07-20	DEPED CALABARZON REGINAL OFFICE,(ESSD WITH FTAD AND HRDD)
9131	3699	16209	8.00	TECHNICAL	0		2020-02-21	2020-02-21	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9132	3701	15577	48.00	SUPERVISORY 	0		2022-08-03	2022-08-05	SCHOOLS DIVISION OF BATANGAS CITY 
9133	3701	15577	48.00	SUPERVISORY 	0		2022-08-08	2022-08-11	SCHOOLS DIVISION OF BATANGAS CITY 
9134	3701	16206	48.00	MANAGERIAL 	0		2022-08-13	2022-08-13	REGION IV A CALABARZON 
9135	3701	15799	16.00	TECHNICAL 	0		2022-08-03	2022-08-04	SCHOOLS DIVISION OF BATANGAS CITY 
9136	3701	16208	48.00	TECHNICAL 	0		2022-07-26	2022-07-29	REGION IV A CALABARZON 
9137	3701	15289	8.00	MANAGERIAL 	0		2022-06-30	2022-06-30	SCHOOLS DIVISION OF BATANGAS CITY 
9138	3701	16210	24.00	MANAGERIAL 	0		2022-05-17	2022-05-19	ALS TASK FORCE, DIVISION OF BATANGAS CITY 
9139	3701	16210	24.00	MANAGERIAL 	0		2022-05-17	2022-05-17	ALS TASK FORCE, DIVISION OF BATANGAS CITY
9140	3699	16211	16.00	TECHNICAL	0		2024-01-11	2024-01-12	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9141	3699	16212	27.00	TECHNICAL 	0		2023-12-11	2023-12-15	SCHOOL INFRASTRUCTUTRE AND FACILITIES,DEPARTMENT OF EDUCATION CENTRAL OFFICE
9142	3699	16213	8.00	TECHNICAL	0		2023-11-22	2023-11-22	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OFFICE OF BATANGAS CITY
9143	3699	16214	16.00	TECHNICAL	0		2023-09-25	2023-09-26	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OFFICE OF BATANGAS CITY
9144	3699	16216	24.00	TECHNICAL	0		2023-09-11	2023-09-13	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9145	3699	16217	8.00	TECHNICAL	0		2023-03-30	2023-03-30	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OFFICE OF BATANGAS CITY
9146	3699	16219	8.00	TECHNICAL	0		2023-03-29	2023-03-29	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9147	3699	16221	8.00	TECHNICAL	0		2023-03-17	2023-03-17	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9148	3699	16226	4.00	TECHNICAL	0		2023-02-20	2023-02-20	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9149	3699	16229	24.00	TECHINAL	0		2023-02-07	2023-02-09	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9150	3699	16234	8.00	TECHNICAL	0		2023-03-29	2023-03-29	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9151	3699	16180	8.00	TECHNICAL	0		2023-03-17	2023-03-17	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9152	3703	15044	8.00	TECHNICAL	0		2023-11-22	2023-11-22	SDO BATANGAS CITY
9153	3703	15725	8.00	TECHNICAL	0		2023-03-30	2023-03-30	SDO BATANGAS CITY
9154	3703	16227	24.00	TECHNICAL	0		2023-02-07	2023-02-09	BATANGAS CITY INTEGRATED HIGH SCHOOL
9155	3703	16230	24.00	TECHNICAL	0		2022-08-17	2022-08-19	BATANGAS CITY INTEGRATED HIGH SCHOOL
9156	3703	16232	24.00	TECHNICAL	0		2022-04-25	2022-04-27	DEPARTMENT OF EDUCATION
9174	3703	16237	24.00	TECHNICAL 	0		2021-08-11	2021-08-13	BATANGAS NATIONAL HIGH SCHOOL
9175	3703	16238	16.00	TECHNICAL	0		2021-06-01	2021-06-02	DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY- LUZON
9176	3703	16243	16.00	TECHNICAL	0		2021-05-05	2021-05-06	DEPARTMENT OF EDUCATION- SDO BATANGAS CITY
9177	3703	16245	8.00	TECHNICAL	0		2021-03-04	2021-03-04	SOUTH EAST ASIA MINISTERS OF EDUCATION ORGANIZATION- INDONESIA 
9178	3703	16248	24.00	TECHNICAL	0		2020-12-16	2020-12-18	BATANGAS NATIONAL HIGH SCHOOL
9179	3703	16250	24.00	TECHNICAL	0		2020-12-14	2020-12-16	BATANGAS NATIONAL HIGH SCHOOL
9180	3703	16251	16.00	TECHNICAL	0		2020-11-26	2020-11-27	DEPARTMENT OF EDUCATION- SDO BATANGAS CITY
9181	3703	16258	24.00	TECHNICAL	0		2020-07-13	2020-07-15	DEPARTMENT OF EDUCATION
9157	3702	16215	24.00	SUPERVISORY/TECHNICAL	0		2023-12-13	2023-12-15	DEPARTMENT OF EDUCATION - CENTRAL OFFICE
9158	3702	15140	16.00	SUPERVISORY/TECHNICAL	0		2023-09-25	2023-09-26	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION BATANGAS CITY
9159	3702	16122	24.00	SUPERVISORY/TECHNICAL	0		2023-03-21	2023-03-23	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9160	3702	16218	16.00	SUPERVISORY/TECHNICAL	0		2023-02-16	2023-02-17	DEPARTMENT OF EDUCATION - REGIONAL IV A - CALABARZON
9161	3702	16220	32.00	SUPERVISORY/TECHNICAL	0		2023-02-06	2023-02-10	DEPARTMENT OF EDUCATION - CENTRAL OFFICE
9162	3702	15114	4.00	SUPERVISORY/TECHNICAL	0		2023-02-20	2023-02-20	DEPARTMENT OF EDUCATION - SCHOOLS OF DIVISION BATANGAS CITY
9163	3702	16223	8.00	SUPERVISORY/TECHNICAL	0		2022-12-20	2022-12-20	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9164	3702	16224	24.00	SUPERVISORY/TECHNICAL 	0		2022-11-15	2022-11-17	DEPARTMENT OF EDUCATION - CENTRAL OFFICE
9165	3702	16225	32.00	SUPERVISORY/TECHNICAL	0		2022-11-08	2022-11-11	DEPARTMENT OF EDUCATION - CENTRAL OFFICE
9166	3702	16124	16.00	SUPERVISORY/TECHNICAL	0		2022-10-20	2022-10-21	DEPARTMENT OF EDUCATION - REGIONAL IV A - CALABARZON
9167	3702	16228	24.00	SUPERVISORY/TECHNICAL	0		2022-10-12	2022-10-14	DEPARTMENT OF EDUCATION - REGIONAL IV A- CALABARZON
9168	3702	16231	8.00	SUPERVISORY/TECHNICAL	0		2022-06-10	2022-06-10	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9169	3702	16233	24.00	SUPERVISORY/TECHNICAL	0		2022-06-06	2022-06-08	DEPARTMENT OF EDUCATION - CENTRAL OFFICE
9170	3702	15703	40.00	SUPERVISORY/TECHNICAL	0		2022-05-04	2022-05-26	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9171	3702	16235	16.00	SUPERVISORY/TECHNICAL 	0		2022-04-26	2022-04-27	DEPARTMENT OF EDUCATION - REGIONAL IV A - CALABARZON
9172	3702	15220	8.00	SUPERVISORY/TECHNICAL	0		2022-03-31	2022-03-31	BOY SCOUT OF THE PHILIPPINES, BATANGAS CITY COUNCIL
9173	3702	16236	24.00	SUPERVISORY/TECHNICAL	0		2024-02-16	2022-02-18	DEPARTMENT OF EDUCATION - REGIONAL IV A-CALABARZON
9234	3707	16288	8.00	TECHNICAL 	0		2023-04-18	2023-04-18	DEPARTMENT OF EDUCATION- SDO BATANGAS CITY
9235	3707	16289	8.00	TECHNICAL 	0		2023-04-01	2023-04-01	 DEPARTMENT OF EDUCATION-SDO BATANGAS CITY
9236	3707	16290	8.00	MANAGEMENT	0		2023-02-21	2023-02-21	 DEPARTMENT OF EDUCATION-SDO BATANGAS CITY
9237	3707	15114	8.00	MANAGEMENT 	0		2023-02-20	2023-02-20	 DEPARTMENT OF EDUCATION-SDO BATANGAS CITY
9238	3707	15101	8.00	TECHNICAL 	0		2023-03-30	2023-03-30	 DEPARTMENT OF EDUCATION-SDO BATANGAS CITY
9239	3707	15153	8.00	MANAGEMENT 	0		2023-02-21	2023-02-21	 DEPARTMENT OF EDUCATION-SDO BATANGAS CITY
9240	3707	16291	16.00	MANAGEMENT 	0		2023-10-13	2023-10-14	 DEPARTMENT OF EDUCATION- CENTRAL OFFICE 
9241	3707	16292	16.00	TECHNICAL 	0		2023-09-28	2023-09-29	 DEPARTMENT OF EDUCATION-SDO BATANGAS CITY
9242	3707	16293	8.00	TECHNICAL 	0		2023-09-15	2023-09-15	 DEPARTMENT OF EDUCATION-SDO BATANGAS CITY
9243	3707	15174	8.00	MANAGEMENT 	0		2023-09-07	2023-09-07	 DEPARTMENT OF EDUCATION-SDO BATANGAS CITY
9244	3707	16294	16.00	MANAGEMENT 	0		2023-07-07	2023-07-07	 DEPARTMENT OF EDUCATION-SDO BATANGAS CITY
9245	3707	16128	16.00	TECHNICAL 	0		2023-06-27	2023-06-28	 DEPARTMENT OF EDUCATION-SDO BATANGAS CITY
9246	3707	15339	8.00	TECHNICAL 	0		2023-05-27	2023-05-27	 DEPARTMENT OF EDUCATION-SDO BATANGAS CITY
9182	3703	16259	16.00	TECHNICAL	0		2019-11-29	2019-11-29	BATANGAS NATIONAL HIGH SCHOOL
9183	3703	16262	24.00	TECHNICAL	0		2019-11-21	2019-11-23	DEPARTMENT OF EDUCATION 
9184	3703	15839	24.00	TECHNICAL	0		2019-10-29	2019-10-31	DEPARTMENT OF EDUCATION
9185	3703	16264	24.00	TECHNICAL	0		2019-10-23	2019-10-25	BATANGAS NATIONAL HIGH SCHOOL
9186	3703	16265	8.00	TECHNICAL	0		2019-08-14	2019-08-14	BATANGAS NATIONAL HIGH SCHOOL
9187	3703	16267	8.00	TECHNICAL	0		2019-08-11	2019-08-11	BATANGAS NATIONAL HIGH SCHOOL
9188	3703	16269	8.00	TECHNICAL	0		2019-06-12	2019-06-12	DEPARTMENT OF EDUCATION 
9189	3704	16198	32.00	SUPERVISORY 	0		2023-09-26	2023-09-29	DEPED REGION IV - CALABARZON 
9190	3704	16061	8.00	TECHNICAL 	0		2023-08-31	2023-08-31	PSWDO BATANGAS 
9191	3704	16241	32.00	TECHNICAL 	0		2023-08-22	2023-08-22	PSWDO BATANGAS 
9192	3704	16242	32.00	TECHNICAL 	0		2023-06-20	2023-06-23	DEPARTMENT OF EDUCATION 
9193	3704	16244	8.00	TECHNICAL 	0		2023-09-09	2023-09-09	DEPARTMENT OF LOCAL GOVERNMENT 
9194	3704	16246	8.00	TECHNICAL 	0		2023-05-23	2023-05-23	SDO BATANGAS CITY 
9195	3704	16247	24.00	SUPERVISORY 	0		2023-05-17	2023-05-19	DEPED REGION IV A CALABARZON 
9196	3704	15101	8.00	TECHNICAL 	0		2023-03-30	2023-03-30	DEPED REGION IV A CALABARZON 
9197	3704	16249	16.00	TECHNICAL 	0		2023-02-03	2023-03-03	BATANGAS CITY PLANING & DEVELOPMENT OFFICE 
9198	3704	15114	8.00	TECHNICAL 	0		2023-02-20	2023-02-20	SDO BATANGAS CITY 
9199	3704	16252	16.00	TECHNICAL 	0		2023-01-19	2023-01-20	INTERNATIONAL INSTITUTE OF RURAL RECONSTRUCTION 
9200	3704	16254	24.00	TECHNICAL 	0		2022-06-15	2022-06-17	DEPARTMENT OF EDUCATION 
9201	3704	16255	51.00	SUPERVISORY/ TECHNICAL 	0		2022-06-17	2022-06-10	ASEAMETRIC W/ UDEMY E-LEARNING SOLUTION 
9202	3704	16256	16.00	TECHNICAL 	0		2022-05-10	2022-06-10	PHILIPPINE PSYCHOLOGICAL CORPORATION 
9203	3704	16257	24.00	TECHNICAL 	0		2022-05-17	2022-05-20	DEPARTMENT OF EDUCATION 
9204	3704	16260	16.00	TECHNICAL 	0		2022-07-26	2022-07-27	DEPARTMENT OF EDUCATION 
9205	3704	16261	16.00	TECHNICAL 	0		2022-04-01	2022-04-01	DEPARTMENT OF EDUCATION 
9206	3704	16263	8.00	TECHNICAL 	0		2021-06-04	2021-06-04	DEPED REGION IV A CALABARZON 
9207	3704	16266	12.00	TECHNICAL 	0		2021-02-04	2021-02-05	DEPED REGION IV A CALABARZON 
9208	3704	16268	12.00	TECHNICAL 	0		2021-01-21	2021-01-22	DEPED REGION IV A CALABARZON 
9209	3704	16270	8.00	TECHNICAL 	0		2020-03-05	2020-03-05	PHILIPPINE GUIDANCE AND COUNSELING ASSOCIATION 
9210	3704	16271	24.00	TECHNICAL 	0		2019-08-28	2019-08-30	SDO BATANGAS PROVINCE 
9211	3704	16272	24.00	TECHNICAL 	0		2019-07-15	2019-07-17	SDO BATANGAS PROVINCE 
9212	3704	16273	24.00	TECHNICAL 	0		2019-06-13	2019-06-15	SDO BATANGAS PROVINCE 
9214	3706	16275	40.00		0		2023-10-02	2023-10-06	DEPARTMENT OF EDUCATION (DRRMS)
9215	3706	15162	8.00		0		2023-08-11	2023-08-11	DIVISION OF BATANGAS CITY (DEPED)
9216	3706	15963	8.00		0		2023-08-18	2023-08-18	ROTARY CLUB BATANGAS CITY
9217	3706	15534	24.00		0		2023-08-09	2023-09-11	DEPED (BATANGAS CITY)
9218	3706	16276	16.00		0		2023-07-27	2023-07-28	PDRRMO
9219	3706	16277	24.00		0		2023-05-24	2023-05-26	DEPARTMENT OF EDUCATION (RO)
9220	3706	16278	24.00		0		2023-09-11	2023-09-13	DIVISION OF BATANGAS CITY (DEPED)
9221	3706	15725	8.00		0		2023-03-30	2023-03-30	DIVISION OF BATANGAS CITY (DEPED)
9222	3706	16279	16.00		0		2023-01-23	2023-01-23	DEPARTMENT OF EDUCATION (RO)
9223	3706	16280	16.00		0		2023-10-24	2023-10-25	DOST
9224	3706	16281	32.00		0		2023-06-27	2023-06-30	DEPARTMENT OF EDUCATION (DRRMS)
9225	3706	15714	8.00		0		2022-05-04	2022-05-26	DIVISION OF BATANGAS CITY (DEPED)
9226	3706	15871	40.00		0		2023-10-27	2023-10-27	DIVISION OF BATANGAS CITY (DEPED)
9227	3706	16284	40.00		0		2023-12-03	2023-12-28	CITY DISASTER RISK REDUCTION AND MANAGEMENT OFFICE
9228	3706	16223	8.00		0		2022-12-20	2022-12-20	DIVISION OF BATANGAS CITY (DEPED)
9229	3706	16186	16.00		0		2022-09-29	2022-09-30	DIVISION OF BATANGAS CITY (DEPED)
9230	3706	16285	24.00		0		2023-05-03	2023-05-05	CDRRMO - LGU
9231	3706	16286	40.00		0		2023-03-06	2023-03-10	DEPARTMENT OF EDUCATION (DRRMS)
9232	3706	15114	8.00		0		2023-02-20	2023-12-20	DIVISION OF BATANGAS CITY (DEPED)
9233	3706	16287	16.00		0		2023-02-10	2023-02-11	PRIVATE STAKEHOLDER
9247	3705	16295	32.00	TECHNICAL	0		2023-11-07	2023-11-10	DEPARTMENT OF EDUCATION
9248	3705	16296	16.00	TECHNICAL	0		2023-11-16	2023-11-17	DEPARTMENT OF EDUCATION
9249	3705	16297	16.00	TECHNICAL	0		2023-10-05	2023-10-06	CITY HEALTH OFFICE
9250	3705	16298	40.00	TECHNICAL	0		2023-09-11	2023-09-15	DEPARTMENT OF EDUCATION
9251	3705	15901	8.00	TECHNICAL	0		2023-08-01	2023-08-01	DEPARTMENT OF EDUCATION
9252	3705	16299	32.00	TECHNICAL	0		2023-07-04	2023-07-07	DEPARTMENT OF EDUCATION
9253	3705	16300	32.00	TECHNICAL	0		2023-05-29	2023-06-02	DEPARTMENT OF EDUCATION
9254	3705	16246	8.00	TECHNICAL	0		2023-05-23	2023-05-23	DEPARTMENT OF EDUCATION
9255	3705	16301	8.00	TECHNICAL	0		2023-03-12	2023-03-12	DEPARTMENT OF EDUCATION
9256	3705	16302	32.00	TECHNICAL	0		2023-04-11	2023-04-14	DEPARTMENT OF EDUCATION
9257	3705	16303	16.00	TECHNICAL	0		2023-03-29	2023-03-30	DEPARTMENT OF EDUCATION
9258	3705	15861	8.00	TECHNICAL	0		2023-04-20	2023-04-20	DEPARTMENT OF EDUCATION
9259	3705	16304	6.00	TECHNICAL	0		2023-02-21	2023-02-21	DEPARTMENT OF EDUCATION
9260	3705	15114	4.00	TECHNICAL	0		2023-02-20	2023-02-20	DEPARTMENT OF EDUCATION
9261	3705	16305	24.00	TECHNICAL	0		2022-08-10	2022-08-12	DEPARTMENT OF EDUCATION
9262	3705	15174	8.00	TECHNICAL	0		2022-09-07	2022-09-07	DEPARTMENT OF EDUCATION
9263	3705	15751	8.00	TECHNICAL	0		2022-06-30	2022-06-30	DEPARTMENT OF EDUCATION
9264	3705	16306	32.00	TECHNICAL	0		2022-05-02	2022-05-05	DEPARTMENT OF EDUCATION
9265	3705	16308	8.00	TECHNICAL	0		2022-03-18	2022-03-18	DEPARTMENT OF EDUCATION
9266	3705	15220	5.00	TECHNICAL	0		2022-03-31	2022-03-31	BOYSCOUT OF THE PHILIPPINES
9267	3705	15258	16.00	TECHNICAL	0		2022-03-04	2022-03-07	DEPARTMENT OF EDUCATION
9268	3707	16307	8.00	TECHNICAL 	0		2023-05-26	2023-05-26	DEPARTMENT OF EDUCATION- SDO BATANGAS CITY 
9269	3707	15703	40.00	TECHNICAL 	0		2023-05-04	2023-05-26	DEPARTMENT OF EDUCATION-SDO BATANGAS CITY 
9270	3707	16309	24.00	TECHNICAL 	0		2022-04-07	2022-04-09	DEPARTMENT OF EDUCATION- SDO BATANGAS CITY 
9271	3707	15220	8.00	TECHNICAL 	0		2022-03-31	2023-03-31	DEPARTMENT OF EDUCATION-SDO BATANGAS CITY 
9272	3707	16310	40.00	TECHNICAL 	0		2019-10-21	2020-02-25	US EMBASSY- PHILIPPINES
9273	3707	16311	40.00	TECHNICAL 	0		2020-01-20	2020-02-24	US EMBASSY-PHILIPPINES
9274	3707	16312	16.00	MANAGEMENT 	0		2018-07-20	2018-07-21	DEPARTMENT OF EDUCATION- SDO BATANGAS CITY 
9275	3709	16313	8.00		0		2024-12-02	2024-12-02	DEPARTMENT OF EDUCATION
9276	3709	16314	32.00		0		2024-11-04	2024-11-08	DEPARTMENT OF EDUCATION, SDO BATANGAS CITY
9277	3709	16315	16.00		0		2024-12-02	2024-12-04	DEPARTMENT OF EDUCATION, SDO BATANGAS CITY
9278	3710	16316	24.00		0		2024-11-18	2024-11-20	DIVISION OF BATANGAS CITY
9279	3710	15143	8.00		0		2023-08-02	2023-08-02	DIVISION OF BATANGAS CITY
9280	3710	16317	8.00		0		2022-08-16	2022-08-16	DIVISION OF BATANGAS CITY
9281	3712	16318	8.00		0		2024-12-19	2024-12-19	JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL
9282	3712	16319	40.00		0		2024-11-25	2024-11-29	NATIONAL EDUCATORS OF THE PHILIPPINES
9283	3712	16320	8.00		0		2024-11-12	2024-11-12	JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL
9284	3709	16321	24.00		0		2024-10-10	2024-10-11	DEPARTMENT OF EDUCATION, SDO BATANGAS CITY
9285	3709	16323	24.00		0		2024-09-30	2024-02-10	DEPARTMENT OF EDUCATION, SDO BATANGAS CITY
9286	3711	15963	4.00		0		2023-08-18	2023-08-18	ROTARY CLUB OF DOWNTOWN BATANGAS CITY
9287	3711	16244	4.00		0		2023-08-09	2023-08-09	COUNCIL FOR THE WELFARE OF THE CHILDREN
9288	3711	16322	8.00		0		2023-08-02	2023-08-02	DEPARTMENT OF EDUCATION - BATANGAS CITY
9289	3711	15797	4.00		0		2022-08-03	2022-08-09	DEPARTMENT OF EDUCATION - BATANGAS CITY
9290	3711	16324	4.00		0		2022-02-02	2022-02-02	DEPARTMENT OF EDUCATION - BATANGAS CITY
9293	3712	16323	8.00		0		2024-09-18	2024-09-18	DEPARTMENT OF EDUCATION, SDO BATANGAS CITY
9294	3712	6663	8.00		0		2024-07-16	2024-07-16	DEPARTMENT OF EDUCATION, SDO BATANGAS CITY
9295	3713	16330	16.00		0		2024-12-09	2024-12-10	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OFFICE OF BATANGAS CITY
9296	3713	16331	24.00		0		2024-12-05	2024-12-07	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OFFICE OF BATANGAS CITY
9297	3713	16332	24.00		0		2024-12-02	2024-12-04	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OFFICE OF BATANGAS CITY
9299	3713	16321	16.00		0		2024-10-10	2024-10-11	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OFFICE OF BATANGAS CITY
9298	3713	16333	8.00		0		2024-11-11	2024-11-11	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OFFICE OF BATANGAS CITY
9300	3714	16335	24.00		0		2022-08-03	2022-08-05	REGION IV-CALABARZON
9301	3714	16318	8.00		0		2024-12-19	2024-12-19	
9302	3714	16334	8.00		0		2023-10-14	2023-10-14	BATANGAS CULTURE AND ARTS COUNCIL
9303	3714	16336	8.00		0		2022-08-24	2021-09-03	OFFICE OF THE UNDERSECRETARY FOR ADMINISTRATION
9304	3714	16337	8.00		0		2021-08-30	2021-09-03	OFFICE OF THE UNDERSECRETARY FOR ADMINISTRATION
9305	3715	16338	15.00		0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9306	3715	16339	15.00		0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9307	3715	16340	3.00		0		2024-11-29	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9308	3715	16341	32.00		0		2024-01-24	2024-01-27	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY
9309	3715	15308	16.00		0		2023-07-21	2023-07-22	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9310	3715	16342	20.00		0		2021-03-01	2021-03-05	DEPARTMENT OF EDUCATION - REGION IV-A CALABARZON
9311	3715	15579	32.00		0		2021-10-05	2021-10-08	DEPARTMENT OF EDUCATION - REGION IV-A CALABARZON
9312	3711	16321	16.00		0		2024-10-10	2024-10-11	DEPARTMENT OF EDUCATION - BATANGAS CITY
9313	3716	16318	8.00		0		2024-12-19	2024-12-19	JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL
9314	3716	16319	40.00		0		2024-11-25	2024-11-29	NATIONAL EDUCATORS OF THE PHILIPPINES
9315	3716	16320	8.00		0		2024-11-12	2024-11-12	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL
9316	3716	16327	8.00		0		2024-09-18	2024-09-18	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL
9317	3716	16328	16.00		0		2024-07-01	2024-07-02	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL
9318	3717	16315	24.00		0		2024-12-02	2024-12-04	DEPARTMENT OF EDUCATION - SDO BATANGAS CITY
9319	3717	16343	8.00		0		2024-11-29	2024-11-29	DEPARTMENT OF EDUCATION  - SDO BATANGAS CITY - DISTRICT IV
9320	3717	16314	40.00		0		2024-11-04	2024-11-08	DEPARTMENT OF EDUCATION - SDO BATANGAS CITY
9321	3717	16344	8.00		0		2024-10-29	2024-10-29	DEPARTMENT OF EDUCATION - SDO BATANGAS CITY
9322	3717	16345	8.00		0		2024-02-16	2024-02-16	DEPARTMENT OF EDUCATION - SDO BATANGAS CITY
9323	3717	16346	8.00		0		2024-01-25	2024-01-25	DEPARTMENT OF EDUCATION - SDO BATANGAS CITY
9324	3718	16347	40.00		0		2024-07-15	2024-07-19	SCHOOLS DIVISION OF BATANGAS CITY
9325	3718	16348	40.00		0		2025-01-21	2025-01-30	PARANG ELEMENTARY SCHOOL
9326	3718	16350	40.00		0		2024-08-14	2024-08-18	SCHOOLS DIVISION OF BATANGAS CITY
9327	3718	16351	32.00		0		2023-03-06	2023-03-10	PARANG ELEMENTARY SCHOOL
9328	3718	16352	40.00		0		2023-07-20	2023-09-30	SOUTHEAST ASIAN MINISTERS OF EDUCATION ORGANIZATION REGIONAL CENTER FOR EDUCATIONAL INNOVATION AND TECHNOLOGY
9329	3719	16353	8.00		0		2024-11-29	2024-11-29	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OFFICE - BATANGAS CITY
9330	3719	16354	8.00		0		2024-11-21	2024-11-21	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OFFICE - BATANGAS CITY
9331	3719	16355	24.00		0		2024-11-08	2024-11-10	BOY SCOUT OF THE PHILIPPINES - BATANGAS CITY COUNCIL
9332	3719	16356	8.00		0		2024-11-04	2024-11-04	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OFFICE - BATANGAS CITY
9333	3719	16321	16.00		0		2024-10-10	2024-10-11	DEPARTMENT OF EDUCATION  SCHOOLS DIVISION OFFICE BATANGAS CITY
9334	3720	16319	20.00		0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9335	3720	16357	40.00		0		2024-07-15	2024-07-19	DEPARTMENT OF EDUCATION - SDO BATANGAS CITY
9336	3720	15574	40.00		0		2023-08-14	2023-08-18	DEPARTMENT OF EDUCATION - SDO BATANGAS CITY
9337	3720	16358	8.00		0		2022-08-19	2022-08-19	DEPARTMENT OF EDUCATION - SDO BATANGAS CITY
9338	3720	15577	56.00		0		2022-03-28	2022-04-05	DEPARTMENT OF EDUCATION - SDO BATANGAS CITY
9339	3721	16359	16.00		0		2024-11-27	2024-11-28	SCHOOLS DIVISION OF BATANGAS CITY
9340	3721	16360	8.00		0		2024-09-24	2024-09-24	MALITAM NATIONAL HIGH SCHOOL
9341	3721	16347	40.00		0		2024-07-15	2024-07-19	SCHOOLS DIVISION OF BATANGAS CITY
9342	3721	16348	40.00		0		2024-01-26	2024-01-30	MALITAM NATIONAL HIGH SCHOOL
9343	3721	15143	8.00		0		2023-08-02	2023-08-02	SCHOOLS DIVISION OF BATANGAS CITY
9344	3722	16362	24.00		0		2024-11-27	2024-11-29	SDO BATANGAS CITY
9345	3722	16363	20.00		0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9346	3722	16364	8.00		0		2024-11-11	2024-11-11	SDO BATANGAS CITY
9347	3722	16365	4.00		0		2024-10-31	2024-10-31	MALITAM NATIONAL HIGH SCHOOL
9348	3722	16367	4.00		0		2024-10-31	2024-10-31	MALITAM NATIONAL HIGH SCHOOL
9349	3723	16368	40.00		0		2022-04-25	2022-04-26	DEPARTMENT OF INFORMATION AND COMMUNICATIONS TEACHNOLOGY - LUZON
9350	3723	991	90.00		0		2023-11-13	2023-11-29	CLASSNOVATIONS SKILLS LEARNING CENTER
9351	3723	16369	24.00		0		2024-05-13	2024-06-30	STAIRWAY FOUNDATION INCORPORATION
9352	3723	16370	9.00		0		2024-08-17	2024-08-31	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9353	3723	16343	8.00		0		2024-11-29	2024-11-29	SCHOOL DIVISION OF BATANGAS CITY
9354	3725	16353	8.00		0		2024-11-29	2024-11-29	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OFFICE - BATANGAS CITY
9355	3725	16373	4.00		0		2024-10-31	2024-10-31	BOY SCOUT OF THE PHILIPPINES - BATANGAS CITY COUNCIL
9356	3725	16374	8.00		0		2024-09-27	2024-09-29	BOY SCOUT OF THE PHILIPPINES - BATANGAS CITY COUNCIL
9357	3725	16360	24.00		0		2024-09-24	2024-09-24	MALITAM NATIONAL HIGH SCHOOL
9358	3725	16376	8.00		0		2024-09-20	2024-09-20	OFFICE OF THE CITY HEALTH OFFICER POPULATION PROGRAM DIVISION BATANGAS CITY
9359	3724	16371	8.00		0		2025-02-13	2025-02-13	DEPARTMENT OF EDUCATION DIVISION OFFICE
9360	3724	16372	40.00		0		2024-11-25	2024-11-29	DEPARTMENT OF EDUCATION DIVISION OFFICE
9361	3724	16375	24.00		0		2024-11-18	2024-11-20	DEPARTMENT OF EDUCATION DIVISION OFFICE
9362	3724	16377	16.00		0		2024-11-14	2024-11-15	DEPARTMENT OF EDUCATION DIVISION OFFICE
9363	3724	16378	24.00		0		2024-09-05	2024-09-12	DEPARTMENT OF EDUCATION DIVISION OFFICE
9364	3726	16359	16.00		0		2024-11-27	2024-11-28	SCHOOLS DIVISION OF BATANGAS CITY
9365	3726	16348	40.00		0		2024-01-26	2024-01-30	MALITAM NATIONAL HIGH SCHOOL
9366	3726	15609	24.00		0		2023-07-17	2023-07-20	SCHOOLS DIVISION OF BATANGAS CITY
9367	3726	16379	8.00		0		2022-04-10	2022-04-10	BATANGAS STATE UNIVERSITY - PABLO BORBON
9368	3726	16380	8.00		0		2022-07-26	2022-07-26	BATANGAS STATE UNIVERSITY - PABLO BORBON
9369	3727	15574	40.00		0		2023-08-14	2023-08-18	DEPARTMENT OF EDUCATION
9370	3727	16358	8.00		0		2022-08-19	2022-08-19	DEPARTMENT OF EDUCATION
9371	3727	16381	24.00		0		2022-08-03	2022-08-05	DEPARTMENT OF EDUCATION REGION 4A - CALABARZON
9372	3727	16382	8.00		0		2021-10-28	2021-10-28	DEPARTMENT OF EDUCATION
9373	3727	16383	24.00		0		2021-10-12	2021-10-14	DEPARTMENT OF EDUCATION
9374	3728	16363	20.00		0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHIIPPINES
9375	3728	16365	4.00		0		2024-10-31	2024-10-31	MALITAM NATIONAL HIGH SCHOOL
9376	3728	16367	4.00		0		2024-10-31	2024-10-31	MALITAM NATIONAL HIGH SCHOOL
9377	3728	16384	8.00		0		2024-10-03	2024-10-03	SDO BATANGAS CITY
9378	3728	16357	40.00		0		2024-07-15	2024-07-19	SDO BATANGAS CITY
9384	3730	16390	4.00		0		2024-05-24	2024-05-24	MALITAM NATIONAL HIGH SCHOOL
9385	3730	16391	4.00		0		2024-05-24	2024-05-24	MALITAM NATIONAL HIGH SCHOOL
9386	3730	16392	4.00		0		2024-03-27	2024-03-27	MALITAM NATIONAL HIGH SCHOOL
9387	3730	16393	4.00		0		2024-02-29	2024-02-29	MALITAM NATIONAL HIGH SCHOOL
9388	3730	16346	8.00		0		2024-01-25	2024-01-25	MALITAM NATIONAL HIGH SCHOOL
9389	3732	16394	40.00		0		2024-07-15	2024-07-19	DEPARTMENT OF EDUCATION
9390	3732	16395	32.00		0		2024-11-25	2024-11-29	DEPARTMENT OF EDUCATION
9391	3732	16396	72.00		0		2021-01-15	2022-05-12	DEPARTMENT OF EDUCATION
9392	3732	16397	40.00		0		2022-03-28	2022-06-05	DEPARTMENT OF EDUCATION
9393	3732	16398	8.00		0		2022-08-19	2022-08-19	DEPARTMENT OF EDUCATION
9395	3733	16400	40.00		0		2024-11-25	2024-11-29	NATIONAL DEPARTMENT OF EDUCATION
9396	3733	16320	8.00		0		2024-12-11	2024-12-11	SCHOOLS DIVISION OF BATANGAS CITY - DISTRICT II
9397	3733	16401	8.00		0		2024-01-24	2024-01-24	SCHOOLS DIVISION OF BATANGAS CITY - DISTRICT VI
9398	3733	15303	8.00		0		2023-11-20	2023-11-20	DIVISION OF BATANGAS CITY
9399	3733	16402	8.00		0		2023-04-22	2023-04-22	DIVISION OF BATANGAS CITY
9400	3733	15574	40.00		0		2023-08-14	2023-08-18	DIVISION OF BATANGAS CITY
9401	3735	16403	8.00		0		2024-11-12	2024-11-12	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY - DISTRICT 2
9402	3735	16404	40.00		0		2024-01-24	2024-01-30	SDO BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL
9403	3735	16405	40.00		0		2023-03-24	2023-04-19	SDO BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL
9404	3735	16406	8.00		0		2023-03-04	2023-03-04	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY - DISTRICT 2
9405	3735	16407	40.00		0		2023-02-06	2023-02-10	SDO BATANGAS CITY 
9379	3729	16385	8.00		0		2024-08-30	2024-08-30	SCHOOLS DIVISION OF BATANGAS CITY
9380	3729	16386	32.00		0		2024-01-24	2024-01-27	SCHOOLS DIVISION OF BATANGAS CITY
9381	3729	16387	24.00		0		2023-08-15	2023-08-17	SCHOOLS DIVISION OF BATANGAS CITY
9382	3729	16388	32.00		0		2022-08-12	2022-08-15	SCHOOLS DIVISION OF BATANGAS CITY
9383	3729	16389	16.00		0		2022-02-25	2022-02-26	REGION IV-A CALABARZON
9394	3731	16399	24.00		0		2024-12-05	2024-12-07	SDO BATANGAS CITY
9406	3734	16408	8.00		0		2022-02-02	2022-02-02	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9407	3734	16397	56.00		0		2022-07-25	2022-08-02	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9408	3734	16409	40.00		0		2021-08-30	2021-09-03	DEPARTMENT OF EDUCATION CENTRAL OFFICE
9409	3734	16410	8.00		0		2021-09-23	2021-09-23	DEPARTMENT OF EDUCATION SCHOOL HEALTH DIVISION
9410	3734	16411	8.00		0		2021-08-26	2021-08-26	DEPARTMENT OF EDUCATION SCHOOL HEALTH DIVISION
9411	3736	16338	40.00		0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9412	3736	16412	32.00		0		2024-07-22	2024-07-26	SDO BATANGAS CITY
9413	3736	16357	40.00		0		2024-07-15	2024-07-19	SDO BATANGAS CITY
9414	3736	16413	8.00		0		2023-10-27	2023-10-27	SDO BATANGAS CITY
9415	3736	16007	24.00		0		2022-04-10	2022-07-10	SDO BATANGAS CITY
9416	3738	16414	24.00		0		2024-12-05	2024-12-07	SCHOOL DIVISION OF BATANGAS CITY
9417	3738	16416	24.00		0		2024-11-25	2024-11-29	SCHOOL DIVISION OF BATANGAS CITY
9418	3738	16417	8.00		0		2024-04-22	2024-04-22	OPEN ARMS ORGANIZATION
9419	3738	16369	112.00		0		2024-05-13	2024-06-30	STAIRWAY CHILD E-LEARNING PLATFORM
9420	3738	16419	1.00		0		2023-07-25	2023-07-25	SPED SUMMIT
9421	3737	16319	40.00		0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9422	3737	15773	40.00		0		2023-08-14	2023-08-18	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY
9423	3737	16415	56.00		0		2022-07-25	2022-08-01	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY
9424	3737	15882	16.00		0		2022-09-06	2022-10-06	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY
9425	3737	16420	24.00		0		2021-10-12	2021-10-14	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY
9426	3739	16394	40.00		0		2024-07-15	2024-07-19	DEPARTMENT OF EDUCATION REGIONAL OFFICE
9427	3739	16395	32.00		0		2024-11-25	2024-11-29	DEPARTMENT OF EDUCATION REGIONAL OFFICE
9428	3739	15821	24.00		0		2021-11-23	2021-11-25	DEPARTMENT OF EDUCATION
9429	3739	16383	16.00		0		2021-10-12	2021-10-13	DEPARTMENT OF EDUCATION
9430	3740	16318	8.00		0		2024-12-19	2024-12-19	JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL
9431	3740	16319	40.00		0		2024-11-25	2024-11-29	NATIONAL EDUCATORS OF THE PHILIPPINES
9432	3740	16320	8.00		0		2024-11-12	2024-11-12	JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL
9433	3740	16327	8.00		0		2024-09-18	2024-09-18	JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL
9434	3740	16328	16.00		0		2024-07-01	2024-07-02	DIVISION OF BATANGAS CITY
9435	3741	16400	40.00		0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9436	3741	15773	40.00		0		2023-08-14	2023-08-18	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY
9437	3741	16415	56.00		0		3023-07-25	2023-08-02	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY 
9438	3741	15882	16.00		0		2022-06-09	2022-06-10	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY
9439	3741	16420	24.00		0		2021-10-12	2021-10-14	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY
9440	3742	16422	40.00		0		2024-01-24	2024-01-30	DEPARTMENT OF EDUCATION DIVISION OFFICE
9442	3742	16424	40.00		0		2022-01-31	2022-02-04	DEPARTMENT OF EDUCATION DIVISION OFFICE
9441	3742	16423	8.00		0		2023-08-01	2023-08-01	DEPARTMENT OF EDUCATION DIVISION OFFICE
9443	3742	16406	8.00		0		2023-03-23	2023-03-23	DEPARTMENT OF EDUCATION DISTRICT OFFICE
9444	3742	16425	24.00		0		2021-11-23	2021-11-25	DEPARTMENT OF EDUCATION REGIONAL OFFICE
9445	3743	16319	40.00		0		2024-11-25	2024-11-29	DEPARTMENT OF EDUCATION - NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9446	3743	16426	16.00		0		2024-07-10	2024-07-12	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9447	3743	16422	40.00		0		2024-01-24	2024-01-30	DEPED BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL
9448	3743	16422	40.00		0		2023-03-24	2023-04-19	DEPED BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL
9449	3743	16415	56.00		0		2022-07-25	2022-08-02	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9450	3744	16428	24.00		0		2024-11-18	2024-11-20	DEPARTMENT OF EDUCATION
9451	3744	16429	40.00		0		2024-09-29	2024-11-25	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9452	3744	16430	24.00		0		2025-01-15	2025-01-17	DEPARTMENT OF EDUCATION
9453	3744	16431	8.00		0		2022-10-28	2022-10-28	DEPARTMENT OF SCIENCE AND TECHNOLOGY - SCIENCE EDUCATION INSTITUTE
9454	3744	15577	60.00		0		2022-07-25	2022-08-02	DEPARTMENT OF EDUCATION
9455	3745	16404	40.00		0		2024-01-24	2024-01-30	DEPARTMENT OF EDUCATION REGION IV-A DIVISION OF BATANGAS CITY
9456	3745	16432	8.00		0		2024-03-04	2024-03-04	DEPARTMENT OF EDUCATION REGION IV-A DIVISION OF BATANGAS CITY
9457	3745	16433	8.00		0		2024-02-22	2024-02-22	DEPARTMENT OF EDUCATION REGION IV-A DIVISION OF BATANGAS CITY
9458	3745	16407	40.00		0		2023-02-06	2023-02-10	DEPARTMENT OF EDUCATION REGION IV-A DIVISION OF BATANGAS CITY
9459	3745	16434	8.00		0		2022-08-18	2022-08-18	DEPARTMENT OF EDUCATION REGION IV-A DIVISION OF BATANGAS CITY
9460	3746	16435	80.00		0		2024-04-03	2024-04-12	EDTECH TEACHER TRAINING CENTER
9461	3746	15997	2.00		0		2020-07-02	2020-07-02	DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY
9462	3746	16437	2.00		0		2020-07-02	2020-07-02	DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY
9463	3746	16438	2.00		0		2020-06-08	2020-06-08	DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY
9464	3746	16439	2.00		0		2020-06-08	2020-06-08	PHILIPPINE ASSOCIATIONN FOR TEACHERS & EDUCATORS
9465	3748	16440	32.00	TECHNICAL	0		2024-01-24	2024-01-29	DEPARTMENT OF EDUCATION
9466	3749	16441	8.00		0		2024-11-22	2024-11-22	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL
9467	3749	16442	8.00		0		2024-09-19	2024-09-19	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY - BUCAL EAST ELEMENTARY SCHOOL
9468	3749	16443	8.00		0		2024-08-16	2024-08-16	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9469	3749	15046	24.00		0		2023-05-15	2023-05-17	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9470	3749	15054	24.00		0		2021-08-17	2021-08-19	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9471	3747	16444	32.00		0		2024-11-24	2024-11-29	DEPARTMENT OF EDUCATION
9472	3747	16394	40.00		0		2024-07-15	2024-07-19	DEPARTMENT OF EDUCATION
9473	3747	16445	8.00		0		2020-08-29	2020-08-29	DEPARTMENT OF EDUCATION
9474	3747	16447	40.00		0		2021-03-01	2021-03-05	DEPARTMENT OF EDUCATION
9475	3747	15821	24.00		0		2021-11-23	2021-11-25	DEPARTMENT OF EDUCATION
9476	3750	16340	3.00		0		2024-11-29	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9477	3750	16451	24.00		0		2024-11-25	2024-11-28	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9478	3750	16429	40.00		0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9479	3750	16441	8.00		0		2024-11-22	2024-11-22	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9480	3750	16453	24.00		0		2024-01-24	2024-01-26	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9481	3751	16331	24.00		0		2024-12-05	2024-12-07	DEPARTMENT OF EDUCATION - REGION IV-A CALABARZON
9482	3751	16450	40.00		0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9483	3751	15797	56.00		0		2022-07-25	2022-01-08	DEPARTMENT OF EDUCATION - REGION IV-A CALABARZON
9484	3751	16454	24.00		0		2021-11-17	2021-11-19	DEPARTMENT OF EDUCATION - SDO BATANGAS CITY
9485	3751	16409	40.00		0		2021-08-03	2021-03-09	DEPARTMENT OF EDUCATION - CENTRAL OFFICE
9486	3748	16448	8.00	TECHNICAL	0		2023-10-27	2023-10-27	DEPARTMENT OF EDUCATION
9487	3748	16449	8.00	MANAGERIAL	0		2023-09-06	2023-09-06	DEPARTMENT OF EDUCATION
9488	3748	16452	8.00	MANAGERIAL	0		2023-08-01	2023-08-01	DEPARTMENT OF EDUCATION
9489	3748	16455	8.00	MANAGERIAL	0		2023-07-31	2023-07-31	DEPARTMENT OF EDUCATION
9490	3748	15046	24.00	MANAGERIAL	0		2023-05-15	2023-05-17	DEPARTMENT OF EDUCATION
9491	3748	15860	16.00	MANAGERIAL	0		3023-05-10	2023-05-11	DEPSRTMENT OF EDUCATION
9492	3748	15862	8.00	MANAGERIAL	0		2023-03-29	2023-03-29	DEPARTMENT OF EDUCATION
9493	3748	16015	16.00	TECHNICAL	0		2020-02-13	2020-04-14	DEPARTMENT OF EDUCATION
9494	3752	16456	24.00		0		2024-11-26	2024-11-28	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9495	3752	16457	40.00		0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9496	3752	16441	8.00		0		2024-11-22	2024-11-22	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9497	3752	16453	24.00		0		2024-01-24	2024-01-26	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9498	3752	16458	24.00		0		2023-03-08	2023-03-10	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9499	3753	16357	40.00		0		2024-07-15	2024-07-19	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9500	3753	16459	24.00		0		2024-01-24	2024-01-26	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9501	3753	16452	8.00		0		2023-08-01	2023-08-01	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9502	3753	16460	16.00		0		2023-05-26	2023-05-27	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9503	3753	16461	24.00		0		2023-02-07	2023-02-09	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9504	3754	16462	40.00	TECHNICAL	0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9505	3754	16463	24.00	TECHNICAL	0		2024-07-08	2024-07-10	BATANGAS CITY INTEGRATED HIG SCHOOL
9506	3754	16465	24.00	TECHNICAL	0		2024-01-26	2024-01-30	DEPARTMENT OF EDUCATION
9507	3754	16468	16.00	TECHNICAL	0		2024-01-24	2024-01-25	SCHOOL DIVISION OFFICE BATANGAS CITY
9508	3754	16467	8.00	TECHNICAL	0		2023-08-24	2023-08-24	SCHOOL DIVISION OFFICE BATANGAS CITY
9509	3757	16456	24.00		0		2024-11-26	2024-11-28	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9510	3757	16361	40.00		0		2024-07-15	2024-07-19	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9511	3757	16459	24.00		0		2024-01-24	2024-01-26	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9512	3757	16461	24.00		0		2023-02-07	2023-02-09	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9513	3757	16469	16.00		0		2022-02-03	2022-02-04	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9514	3756	16340	3.00		0		2024-11-29	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9515	3756	16456	24.00		0		2024-11-26	2024-11-28	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9516	3756	16338	40.00		0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9517	3756	16441	8.00		0		2024-11-22	2024-11-22	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9518	3756	16442	8.00		0		2024-09-19	2024-09-19	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9519	3758	16470	40.00	TECHNICAL	0		2024-01-24	2024-01-30	DEPARTMENT OF EDUCATION - NATIONAL
9520	3758	16465	8.00	TECHNICAL	0		2024-01-30	2024-01-30	DEPARTMENT OF EDUCATION
9521	3758	16472	8.00	TECHNICAL	0		2024-01-29	2024-01-29	DEPARTMENT OF EDUCATION
9522	3758	16471	8.00	TECHNICAL	0		2024-01-26	2024-01-26	DEPARTMENT OF EDUCATION
9523	3758	16472	24.00	TECHNICAL	0		2024-01-24	2024-01-25	DEPARTMENT OF EDUCATION
9524	3760	16426	24.00		0		2024-07-11	2024-07-13	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9525	3760	16456	24.00		0		2024-11-26	2024-11-28	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9526	3760	16473	40.00		0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9527	3760	16459	24.00		0		2024-01-24	2024-01-26	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9528	3760	16474	40.00		0		2022-06-20	2022-08-20	SOUTHEAST ASIAN MINISTERS OF EDUCATION ORGANIZATION
9529	3759	16361	40.00		0		2024-07-15	2024-07-19	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9530	3759	16475	8.00		0		2024-01-24	2024-01-24	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9531	3759	16476	32.00		0		2022-08-12	2022-08-22	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9532	3759	16477	48.00		0		2022-07-22	2022-07-27	PHILIPPINE NORMAL UNIVERSITY
9533	3759	16478	160.00		0		2022-04-30	2022-05-27	SOUTHEAST ASIAN INSTITUTE OF EDUCATIONAL TRAINING INC
9534	3762	16456	24.00		0		2024-11-26	2024-11-28	DEPARTMENT OF EDUCATION - BATANGAS CITY
9535	3762	16457	40.00		0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9536	3762	16441	8.00		0		2024-11-22	2024-11-22	DEPARTMENT OF EDUCATION - BATANGAS CITY
9537	3762	16479	24.00		0		2024-11-18	2024-11-20	DEPARTMENT OF EDUCATION - BATANGAS CITY
9538	3762	16321	16.00		0		2024-10-10	2024-10-11	DEPARTMENT OF EDUCATION - BATANGAS CITY
9539	3761	16331	24.00		0		2024-12-05	2024-12-07	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9540	3761	16456	24.00		0		2024-11-26	2024-11-28	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9541	3761	16480	40.00		0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9542	3761	16442	8.00		0		2024-09-19	2024-09-19	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9543	3761	16481	8.00		0		2024-09-14	2024-09-14	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9544	3765	16340	3.00		0		2024-11-29	2024-11-29	NATIONAL EDUCATORS OF THE PHILIPPINES
9545	3765	16482	40.00		0		2024-11-25	2024-11-29	NATIONAL EDUCATORS OF THE PHILIPPINES
9546	3765	16441	8.00		0		2024-11-22	2024-11-22	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9547	3765	16347	40.00		0		2024-07-15	2024-07-19	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9548	3765	16459	24.00		0		2024-01-24	2024-01-26	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9549	3764	16451	32.00		0		2024-11-25	2024-11-28	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9550	3764	16441	8.00		0		2024-11-22	2024-11-22	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9551	3764	16483	8.00		0		2014-08-09	2024-08-09	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9552	3764	16483	24.00		0		2024-07-08	2024-07-10	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9553	3764	16459	24.00		0		2024-01-24	2024-01-26	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9554	3768	16485	2.00		0		2020-07-17	2020-07-17	TECH O'CLOCK BYTE SIZED SERIES
9555	3768	16486	2.00		0		2020-02-07	2020-02-07	RESOURCE FOR EDUCATORS AND ACADEMIC PROFESSIONALS
9556	3768	16487	2.00		0		2020-06-19	2020-06-19	RESOURCE FOR EDUCATORS AND ACADEMIC PROFESSIONALS
9557	3768	16489	2.00		0		2020-06-19	2020-06-19	RESOURCE FOR EDUCATORS AND ACADEMIC PROFESSIONALS
9558	3768	16018	1.00		0		2020-06-17	2020-06-17	ABIVA PUBLISHING HOUSE, INCORPORATION
9559	3766	16484	24.00	TECHNICAL	0		2024-11-12	2024-11-14	DEPARTMENT OF EDUCATION-REGIONAL
9560	3766	15046	24.00	TECHNICAL	0		2023-05-15	2023-05-17	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9561	3766	16488	24.00	TECHNICAL	0		2021-06-02	2021-06-05	DEPARTMENT OF EDUCATION CENTRAL OFFICE
9562	3766	15393	24.00	TECHNICAL 	0		2021-05-19	2021-05-21	DEPARTMENT OF EDUCATION REGION IV-A CALABARZON
9563	3766	16490	24.00	TECHNICAL 	0		2020-02-03	2020-02-07	BUREAU OF LEARNERS SUPPORT SERVICES-YOUTH FORMATION DIVISION
9564	3767	16491	8.00		0		2024-12-17	2024-12-17	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9565	3767	16456	24.00		0		2024-11-27	2024-11-29	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9566	3767	16492	8.00		0		2024-08-09	2024-08-09	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9567	3767	15579	32.00		0		2024-01-24	2024-01-26	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF ANTIPOLO CITY
9568	3767	15303	4.00		0		2023-11-17	2023-11-17	DEPARTMENT OF EDUCATION CENTRAL OFFICE
9569	3769	16385	16.00	TECHNICAL	0		2024-08-30	2024-08-31	DEPARTMENT OF EDUCATION BATANGAS CITY
9571	3772	16494	16.00		0		2024-04-18	2024-04-19	CPDCFT TRAINING CENTER
9572	3772	16495	16.00		0		2024-03-30	2024-03-24	CPDCFT TRAINING CENTER
9573	3772	16496	16.00		0		2024-03-23	2024-03-24	CPDCFT TRAINING CENTER
9574	3772	16497	16.00		0		2024-03-09	2024-03-10	CPDCFT TRAINING CENTER
9575	3772	16409	40.00		0		2021-08-30	2021-09-03	 NEAP REGION IV-A CALABARZON
9570	3769	16493	32.00	TECHNICAL	0		2024-01-24	2024-01-27	DEPARTMENT OF EDUCATION BATANGAS CITY
9576	3769	16498	24.00	TECHNICAL	0		2023-08-15	2023-08-17	DEPARTMENT OF EDUCATION
9577	3774	16500	24.00		0		2024-07-10	2024-07-12	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY
9578	3774	16501	24.00		0		2024-01-29	2024-01-31	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY
9579	3774	15172	8.00		0		2023-02-08	2023-02-08	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY
9580	3774	16502	8.00		0		2022-08-27	2022-08-27	PHILIPPINE ACADEMY OF TEACHERS, ADMINISTRATORS AND PRACTITIONERS IN EDUCATION (PATAPE)
9581	3774	15770	24.00		0		2021-10-28	2021-10-03	BICOL UNIVERSITY
9582	3769	16499	16.00	TECHNICAL	0		2022-11-28	2022-11-29	DEPARTMENT OF EDUCATION
9583	3769	16504	16.00	TECHNICAL	0		2022-07-28	2022-07-29	DEPARTMENT OF EDUCATION
9584	3775	16457	40.00		0		2024-11-25	2024-11-29	DEPARTMENT OF EDUCATION - BATANGAS CITY
9585	3775	16505	40.00		0		2024-07-15	2024-07-19	DEPARTMENT OF EDUCATION - BATANGAS CITY
9586	3775	16506	8.00		0		2024-04-26	2024-04-26	DEPARTMENT OF EDUCATION - BATANGAS CITY
9587	3775	15605	32.00		0		2023-09-20	2023-09-23	DEPARTMENT OF EDUCATION - BATANGAS CITY
9588	3775	15617	24.00		0		2023-07-18	2023-07-20	DEPARTMENT OF EDUCATION - BATANGAS CITY
9589	3776	16508	8.00	TECHNICAL	0		2025-02-07	2025-02-07	BANABA WEST ELEMENTARY SCHOOL
9590	3776	16332	48.00	TECHNICAL	0		2024-12-02	2024-12-07	SCHOOL DIVISION BATANGAS CITY
9591	3776	16361	40.00	TECHNICAL	0		2024-07-15	2024-07-19	SCHOOL DIVISION OF BATANGAS CITY
9592	3776	16510	8.00	TECHNICAL	0		2024-05-03	2024-05-03	BANABA WEST ELEMENTARY SCHOOL
9593	3776	16511	40.00	TECHNICAL	0		2024-01-25	2024-01-30	DISTRICT VII AND BANABA WEST ELEMENTARY SCHOOL
9594	3777	16512	24.00		0		2024-12-05	2024-12-07	DEPARTMENT OF EDUCATION - BATANGAS CITY
9595	3777	16340	10.00		0		2024-11-25	2024-11-29	DEPARTMENT OF EDUCATION - BATANGAS CITY
9596	3777	16513	24.00		0		2024-11-27	2024-11-29	DEPARTMENT OF EDUCATION - BATANGAS CITY
9597	3777	16355	30.00		0		2024-11-08	2024-11-10	DEPARTMENT OF EDUCATION - BATANGAS CITY
9598	3777	16347	40.00		0		2024-07-15	2024-07-19	DEPARTMENT OF EDUCATION - BATANGAS CITY
9599	3778	16514	32.00	TECHNICAL	0		2021-10-04	2021-10-08	DEPARTMENT OF EDUCATION-BATANGAS CITY
9600	3778	16515	40.00	TECHNICAL	0		2021-08-30	2021-09-03	DEPARTMENT OF EDUCATION-BATANGAS CITY
9601	3778	16516	40.00	TECHNICAL	0		2021-03-15	2021-03-19	DEPARTMENT OF EDUCATION-BATANGAS CITY
9602	3778	16517	12.00	TECHNICAL	0		2020-07-13	2020-07-15	DEPARTMENT OF EDUCATION-BATANGAS CITY
9603	3771	16347	40.00		0		2024-07-15	2024-07-17	DEPED BATANGAS CITY
9604	3771	16518	40.00		0		2024-11-25	2024-11-29	NEAP REGION -V-A CALABARZON
9605	3771	16519	24.00		0		2024-07-01	2024-07-03	DEPED BATANGAS CITY
9606	3771	16506	8.00		0		2024-04-26	2024-04-26	DEPED BATANGAS CITY
9607	3771	16397	56.00		0		2022-07-25	2022-08-02	NEAP REGION IV-A CALABARZON
9608	3779	16494	16.00		0		2024-04-18	2024-04-19	CPDCFT TRAINING CENTER
9609	3779	16495	16.00		0		2024-03-30	2024-03-31	CPDCFT TRAINING CENTER
9610	3779	16496	16.00		0		2024-03-23	2024-03-24	CPDCFT TRAINING CENTER
9611	3779	16497	16.00		0		2024-03-09	2024-03-10	CPDCFT TRAINING CENTER
9612	3779	16409	40.00		0		2021-08-30	2021-09-03	NEAP REGION IV-A CALABARZON
9613	3770	16470	40.00		0		2024-07-15	2024-07-19	DEPED BATANGAS CITY
9614	3770	16506	8.00		0		2024-04-26	2024-04-26	DEPED BATANGAS CITY
9615	3770	16341	32.00		0		2024-01-24	2024-01-27	DEPED BATANGAS CITY
9616	3770	15617	24.00		0		2023-07-18	2023-07-20	DEPED BATANGAS CITY
9617	3770	16524	56.00		0		2022-07-25	2022-08-02	DEPED BATANGAS CITY
9623	3773	16482	40.00		0		2024-11-25	2024-11-29	DEPARTMENT OF EDUCATION, BATANGAS CITY
9624	3773	16505	40.00		0		2024-07-15	2024-01-19	DEPARTMENT OF EDUCATION, BATANGAS CITY
9625	3773	16506	8.00		0		2024-04-26	2024-04-26	DEPARTMENT OF EDUCATION,  BATANGAS CITY
9626	3773	16525	8.00		0		2023-10-13	2023-10-13	DEPARTMENT OF EDUCATION, BATANGAS CITY
9627	3773	16507	32.00		0		2023-09-20	2023-09-23	DEPARTMENT OF EDUCATION, BATANGAS CITY
9633	3782	16528	25.00		0		2024-06-21	2024-06-23	CENTER FOR THE PROFESIONAL ADVANCEMENT OF EDUCATORS
9634	3782	16529	24.00		0		2024-05-31	2024-06-02	CENTER FOR THE PROFESSIONAL ADVANCEMENT OF EDUCATORS
9635	3782	16531	24.00		0		2024-05-24	2024-05-26	CENTER FOR THE PROFESSIONAL ADVANCEMENT OF EDUCATORS
9641	3784	16536	8.00		0		2024-11-29	2024-11-29	STA. CLARA ELEMENTARY SCHOOL
9642	3784	16537	8.00		0		2024-09-10	2024-09-10	STA. CLARA ELEMENTARY SCHOOL
9643	3784	16539	40.00		0		2024-01-24	2024-01-30	STA.C LARA ELEMENTARY SCHOOL
9644	3784	16540	12.00		0		2021-08-17	2021-09-19	DEPARTMENT OF ECUCATION
9645	3784	15560	8.00		0		2023-01-17	2023-01-17	DEPARTMENT OF EDUCATION
9646	3786	16532	8.00		0		2024-11-29	2024-11-29	SCHOOLS DIVISION OF BATANGAS CITY
9647	3786	16544	20.00		0		2024-11-08	2024-11-10	BOYSCOUT OF THE PHILIPPINES - BATANGAS CITY COUNCIL
9648	3786	16545	8.00		0		2024-09-14	2024-09-14	SCHOOLS DIVISION OF BATANGAS CITY
9649	3786	16347	40.00		0		2024-07-15	2024-07-19	SCHOOLS DIVISION OF BATANGAS CITY
9650	3786	15574	45.00		0		2023-08-14	2023-08-18	SCHOOLS DIVISION OF BATANGAS CITY
9656	3788	16550	8.00		0		2024-10-31	2024-10-31	DEPARTMENT OF EDUCATION
9657	3788	16551	8.00		0		2024-01-25	2024-01-25	DEPARTMENT OF EDUCATION
9658	3788	16552	40.00		0		2024-01-24	2024-01-28	DEPARTMENT OF EDUCATION
9659	3788	15773	40.00		0		2023-08-14	2024-08-18	DEPARTMENT OF EDUCATION
9660	3788	16554	8.00		0		2023-09-29	2023-09-29	DEPARTMENT OF EDUCATION
9666	3790	16457	20.00		0		2024-11-25	2024-11-29	DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY
9667	3790	16470	40.00		0		2024-07-15	2024-07-19	DEPARTMENT OF EDUCATION
9668	3790	16346	8.00		0		2024-01-25	2024-01-25	DEPARTMENT OF EDUCATION
9669	3790	15172	8.00		0		2023-02-08	2023-02-08	DEPARTMENT OF EDUCATION
9670	3790	16557	18.00		0		2023-02-06	2023-02-08	DEPARTMENT OF EDUCATION
9681	3792	12977	8.00		0		2024-11-29	2024-11-29	DEPARTMENT OF EDUCATION
9682	3792	16508	24.00		0		2024-10-07	2024-10-10	DEPARTMENT OF EDUCATION
9683	3792	16483	16.00		0		2024-07-03	2024-07-03	DEPARTMENT OF EDUCATION
9684	3792	16471	40.00		0		2024-01-24	2024-01-30	DEPARTMENT OF EDUCATION
9685	3792	16556	40.00		0		2022-08-30	2022-09-03	DEPARTMENT OF EDUCATION
9696	3794	16457	20.00		0		2024-11-25	2024-11-29	DEPARTMENT OF EDUCATION
9697	3794	16470	40.00		0		2024-07-15	2024-07-19	DEPARTMENT OF EDUCATION
9698	3794	16346	8.00		0		2024-01-25	2024-01-25	DEPARTMENT OF EDUCATION
9699	3794	15172	8.00		0		2023-02-08	2023-02-08	DEPARTMENT OF EDUCATION
9700	3794	16557	18.00		0		2023-02-06	2023-02-08	DEPARTMENT OF EDUCATION
9701	3797	16340	3.00		0		2024-11-29	2024-11-29	DEPARTMENT OF EDUCATION - NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9702	3797	16400	32.00		0		2024-11-25	2024-11-29	DEPARTMENT OF EDUCATION - NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9703	3797	16567	9.00		0		2024-10-07	2024-10-09	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
9704	3797	16566	4.00		0		2024-06-15	2024-06-15	DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY
9705	3797	16566	4.00		0		2024-06-08	2024-06-08	DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY
9618	3780	16520	24.00	TECHNICAL	0		2024-11-18	2024-11-20	SCHOOLS DIVISION OFFICE OF BATANGAS CITY
9619	3780	16521	8.00	TECHNICAL	0		2024-09-17	2024-09-17	SCHOOLS DIVISION OFFICE OF BATANGAS CITY- DISTRICT VIII
9620	3780	16522	8.00	TECHNICAL	0		2024-05-31	2024-05-31	BANABA WEST ELEMENTARY SCHOOL
9621	3780	16523	8.00	TECHNICAL	0		2024-05-03	2024-05-03	BANABA WEST ELEMENTRAY SCHOOL
9622	3780	16404	24.00	TECHNICAL	0		2024-01-26	2024-01-30	BANABA WEST ELEMENTARY SCHOOL
9628	3781	16508	8.00	TECHNICAL	0		2025-02-07	2025-02-07	SCHOOLS DIVISION OFFICE BATANGAS CITY
9629	3781	16526	40.00	TECHNICAL	0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9630	3781	16479	24.00	TECHNICAL	0		2024-11-18	2024-11-20	DEPARTMENT OF EDUCATION
9631	3781	16527	24.00	TECHNICAL	0		2024-11-08	2024-11-10	BOY SCOUT OF THE PHILIPPINES BATANGAS CITY COUNCIL
9632	3781	16530	16.00	TECHNICAL	0		2024-10-05	2024-10-06	DEPARTMENT OF EDUCATION BASKETBALL REFEREES ASSOCIATION
9636	3783	16532	8.00		0		2024-11-29	2024-11-29	SCHOOLS DIVISION OF BATANGAS CITY - DISTRICT IV
9637	3783	16533	20.00		0		2024-01-08	2024-11-10	BOYSCOUT OF THE PHILIPPINES - BATANGAS CITY COUNCIL
9638	3783	15194	8.00		0		2024-04-05	2024-04-06	TECHNICAL EDUCATION AND SKILLS DEVELOPMENT AND AUTHORITY (TESDA)
9639	3783	16534	4.00		0		2021-10-22	2021-10-22	PHOENIX PUBLISHING HOUSE
9640	3783	16535	4.00		0		2021-10-22	2021-10-22	PHOOENIX PUBLISHING HOUSE
9651	3787	16541	8.00		0		2024-11-29	2024-11-29	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9652	3787	16543	15.00		0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9653	3787	16546	20.00		0		2024-11-08	2024-11-20	BOY SCOUT OF THE PHILIPPINES - BATANGAS CITY COUNCIL
9654	3787	16547	4.00		0		2024-10-09	2024-10-09	GOKONGWEI BROTHER FOUNDATION
9655	3787	16548	120.00		0		2024-04-24	2024-05-07	TEACHING ENGLISH AS A FOREIGN LANGUAGE - PROFESSIONAL INSTITUTE - TEACHER RECORD
9661	3789	16480	40.00		0		2024-11-25	2024-11-29	DEPARTMENT OF EDUCATION - NATONAL
9662	3789	16479	24.00		0		2024-11-18	2024-11-19	DEPARTMENT OF EDUCATION - NATONAL
9663	3789	16555	8.00		0		2024-09-13	2024-09-13	DEPARTMENT OF EDUCATION - NATONAL
9664	3789	16357	40.00		0		2024-07-15	2024-07-19	DEPARTMENT OF EDUCATION - NATONAL
9665	3789	16515	40.00		0		2022-08-30	2022-09-03	DEPARTMENT OF EDUCATION - NATONAL
9671	3785	16549	8.00	TECHNICAL	0		2023-01-04	2023-01-04	DEPED BATANGAS CITY
9672	3785	16454	12.00	TECHNICAL	0		2021-11-17	2021-11-19	DEPED BATANGAS CITY 
9673	3785	16553	24.00	TECHNICAL	0		2021-11-13	2021-11-27	PAMBANSANG SAMAHAN NG MGA TAGAPAGTAGUYOD SA FILIPINO
9674	3785	16558	24.00	TECHNICAL	0		2021-10-31	2021-11-02	DEPARTMENT OF EDUCATION BATANGAS CITY
9675	3785	16409	40.00	TECHNICAL	0		2021-08-30	2021-09-03	DEPARTMENT OF EDUCATION CENTRAL
9676	3791	16559	24.00		0		2024-08-21	2024-08-24	SCHOOLS DIVISION OF BATANGAS CITY
9677	3791	16560	5.00		0		2024-02-14	2024-02-14	FIRST GEN CORPORATION
9678	3791	16561	40.00		0		2024-01-24	2024-01-30	SCHOOLS DIVISION OF BATANGAS CITY - DISTRICT IV
9679	3791	16346	8.00		0		2024-01-25	2024-01-25	SCHOOLS DIVISION OF BATANGAS CITY
9680	3791	16562	45.00		0		2024-08-14	2024-08-18	SCHOOLS DIVISION OF BATANGAS CITY
9686	3793	16400	40.00	TECHNICAL	0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9687	3793	16471	24.00	TECHNICAL	0		2024-01-26	2024-01-30	BANABA WEST ELEMENTARY SCHOOL
9688	3793	16468	16.00	TECHNICAL	0		2024-01-24	2024-01-25	SCHOOLS DIVISION OF BATANGAS CITY
9689	3793	16563	8.00	TECHNICAL	0		2022-05-13	2022-05-20	REX ACADEMY 
9690	3793	16564	8.00	TECHNICAL 	0		2022-01-04	2022-01-04	C&E PUBLISHING INCORPORATION
9691	3795	16340	3.00		0		2024-11-29	2024-11-29	DEPARTMENT OF EDUCATION - NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9692	3795	16400	32.00		0		2024-11-25	2024-11-29	DEPARTMENT OF EDUCATION - NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9693	3795	16547	9.00		0		2024-10-07	2024-10-09	SCHOOLS DIVISION OF BATANGS CITY - STA. CLARA ELEMENTARY SCHOOL
9694	3795	16565	16.00		0		2024-09-13	2024-09-14	GOKONGWEI BROTHERS FOUNDATION
9695	3795	16566	4.00		0		2024-06-15	2024-06-15	DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY
9706	3796	16508	8.00	TECHNICAL	0		2025-02-07	2025-02-07	SCHOOLS DIVISION OFFICE BATANGAS CITY BANABA WEST ELEMENTARY
9707	3796	16357	32.00	TECHNICAL	0		2024-07-15	2024-07-19	DEPARTMENT OF EDUCATION  SCHOOLS DIVISION OFFICE BATANGAS CITY
9708	3796	16342	20.00	TECHNICAL	0		2021-03-01	2021-03-05	DEPARTMENT OF EDUCATION REGION 4A CALABARZON
9709	3796	16568	8.00	TECHNICAL	0		2021-12-11	2021-12-11	DEPARTMENT OF EDUCATION REGION 4-A CALABARZON  
9710	3796	16570	40.00	TECHNICAL 	0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADAMEY OF THE PHILIPPINES
9711	3800	16457	20.00		0		2024-11-25	2024-11-29	DEPARTMENT OF EDUCATION
9712	3800	16470	40.00		0		2024-07-15	2024-07-19	DEPARTMENT OF EDUCATION
9713	3800	16571	8.00		0		2023-04-01	2023-04-01	SCHOOLS DIVISION OF BATANGAS CITY - DISTRICT IV
9714	3800	16381	24.00		0		2022-08-03	2022-08-05	DEPARTMENT OF EDUCATION
9715	3800	16573	8.00		0		2021-11-27	2021-11-27	DEPARTMENT OF EDUCATION
9716	3798	16572	8.00		0		2024-11-29	2024-11-29	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / DISTRICT IV
9717	3798	16470	40.00		0		2024-07-15	2024-01-19	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY
9718	3798	16346	8.00		0		2024-01-25	2024-01-25	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / DISTRICT IV
9719	3798	16552	40.00		0		2024-01-24	2024-01-30	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY
9720	3798	16575	18.00		0		2023-02-06	2023-02-08	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY
9721	3799	16332	24.00		0		2024-12-02	2024-12-04	SCHOOLS DIVISION OF BATANGAS CITY
9722	3799	16536	8.00		0		2024-11-29	2024-11-29	SCHOOLS DIVISION OF BATANGAS CITY
9723	3799	16576	24.00		0		2024-10-07	2024-10-09	GOKONGWEI BROTHERS FOUNDATION
9724	3799	16470	40.00		0		2024-07-15	2024-07-19	SCHOOLS DIVISION OF BATANGAS CITY
9725	3799	16577	24.00		0		2024-05-24	2024-05-24	INTERNATIONAL WEBINAR-TRAINING IN ENGLISH
9726	3801	16508	8.00	TECHNICAL	0		2025-02-07	2025-02-07	BANABA WEST ELEMENTARY SCHOOL
9727	3801	16457	40.00	TECHNICAL 	0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9728	3801	16347	40.00	TECHNICAL	0		2024-07-15	2024-07-19	SCHOOLS DIVISION OFFICE BATANGAS CITY
9729	3801	16404	40.00	TECHNICAL 	0		2024-01-24	2024-01-30	DEPARTMENT OF EDUCATION DISTRICT-VIII
9730	3801	16516	40.00	TECHNICAL 	0		2022-08-08	2022-08-11	OFFICE OF THE UNDERSECRETARY FOR ADMINISTRATION 
9731	3803	16579	16.00	TECHNICAL 	0		2024-01-24	2024-01-25	DEPARTMENT OF EDUCATION 
9732	3803	16580	24.00	TECHNICAL 	0		2024-01-26	2024-01-30	DEPARTMENT OF EDUCATION 
9733	3803	16581	32.00	TECHNICAL 	0		2022-01-31	2022-02-04	DEPARTMENT OF EDUCATION 
9734	3803	16573	24.00	TECHNICAL 	0		2021-11-27	2021-11-27	DEPARTMENT OF EDUCATION 
9735	3803	16516	40.00	TECHNICAL 	0		2021-08-30	2021-09-03	NATIONAL
9736	3805	16462	40.00	TECHNICAL	0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9737	3805	16582	24.00	TECHNICAL	0		2024-09-25	2024-09-27	SCHOOLS DIVISION OFFICE-BATANGAS CITY
9738	3805	16361	40.00	TECHNICAL	0		2024-07-15	2024-07-19	SCHOOLS DIVISION OFFICE-BATANGAS CITY
9739	3805	16468	40.00	TECHNICAL	0		2024-01-24	2024-01-30	SCHOOLS DIVISION OFFICE-BATANGAS CITY
9740	3805	16583	8.00	TECHNICAL	0		2023-03-11	2023-03-15	SCHOOLS DIVISION OFFICE-BATANGAS CITY
9741	3804	16557	24.00		0		2023-02-06	2023-02-08	DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY/STA.CLARA ELEMENTARY SCHOOL
9742	3804	16381	24.00		0		2022-08-03	2022-08-05	DEPARTMENT OF EDUCATION/REGION IV-A
9743	3804	16584	8.00		0		2022-07-20	2022-07-20	DEPARTMENT OF EDUCATION/REGION IV-A
9744	3804	16585	24.00		0		2022-02-02	2022-02-04	DEPARTMENT OF EDUCATION/REGION IV-A
9745	3804	15393	24.00		0		2021-05-19	2021-05-21	DEPARTMENT OF EDUCATION/REGION IV-A
9746	3804	16586	128.00		0		2021-03-03	2021-03-16	DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY
9747	3807	16508	8.00	TECHNICAL	0		2025-02-07	2025-02-07	SCHOOLS DIVISION OFFICE-BATANGAS CITY-BANABA WEST ELEMENTARY SCHOOL
9748	3807	16319	40.00	TECHNICAL	0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9749	3807	16590	24.00	TECHNICAL	0		2024-11-18	2024-11-20	DEPARTMENT OF EDUCATION/REGION IV-A CALABARZON OFFICE
9750	3802	16536	8.00		0		2024-11-29	2024-11-29	STA. CLARA ELEMENTARY SCHOOL
9751	3802	16537	8.00		0		2024-09-10	2024-09-10	STA. CLARA ELEMENTARY SCHOOL
9752	3802	16587	24.00		0		2024-09-04	2024-09-06	COMMISSION ON AUDIT REGIONAL OFFICE NO. IV-A
9753	3802	16589	8.00		0		2024-01-28	2024-01-28	DEPED SCHOOLS DIVISION OF BATANGAS CITY
9754	3802	16561	40.00		0		2024-01-24	2024-01-30	STA. CLARA ELEMENTARY SCHOOL
9755	3807	16591	8.00	TECHNICAL	0		2024-09-13	2024-09-13	DEPARTMENT OF EDUCATION/ SCHOOLS DIVISION OFFICE OF BATANGAS CITY
9756	3807	16347	32.00	TECHNICAL	0		2024-07-15	2024-07-19	DEPARTMENT OF EDUCATION/ SCHOOLS DIVISION OFFICE OF BATANGAS CITY
9757	3808	16319	32.00		0		2024-11-25	2024-11-29	DEPARTMENT OF EDUCATION
9758	3808	16321	16.00		0		2024-10-10	2024-10-11	DEPARTMENT OF EDUCATION
9759	3808	16592	40.00		0		2023-07-31	2023-08-04	DEPARTMENT OF EDUCATION
9760	3808	16556	40.00		0		2022-08-30	2022-09-03	DEPARTMENT OF EDUCATION
9761	3808	16516	40.00		0		2021-03-15	2021-03-19	DEPARTMENT OF EDUCATION
9762	3809	16593	8.00		0		2024-11-29	2024-11-29	DEPARTMENT OF EDUCATION/DISTRICT IV
9763	3809	16457	40.00		0		2024-11-25	2024-11-29	DEPARTMENT OF EDUCATION/NATIONAL
9764	3809	16470	40.00		0		2024-07-15	2024-07-19	DEPARTMENT OF EDUCATION/NATIONAL
9765	3809	16594	8.00		0		2022-10-07	2022-10-07	DEPARTMENT OF EDUCATION/DISTRICT IV
9766	3809	16584	8.00		0		2022-07-20	2022-07-20	DEPARTMENT OF EDUCATION/DISTRICT IV
9767	3812	16482	15.00		0		2024-11-25	2024-11-29	DEPARTMNE TOF EDUCATION
9768	3812	16595	40.00		0		2024-07-15	2024-07-19	DEPARTMENT OF EDUCATION
9769	3812	16596	8.00		0		2024-01-25	2024-01-25	SCHOOLS DIVISION OF BATANGAS CITY - DISTRICT IV
9770	3812	15172	8.00		0		2023-08-02	2023-08-02	SCHOOLS DIVISION OF BATANGAS CITY - DISTRICT IV
9771	3812	16598	8.00		0		2023-04-01	2023-04-01	SCHOOLS DIVISION OF BATANGS CITY - DISTRICT IV
9772	3813	16470	40.00	TECHNICAL	0		2024-01-24	2024-01-30	DEPARTMENT OF EDUCATION-NARIONAL LEVEL
9773	3813	16422	40.00	TECHNICAL	0		2024-01-24	2024-01-30	DEPARTMENT OF EDUCATION-BANABA WEST ELEMENTARY SCHOOL
9774	3813	16599	8.00	TECHNICAL	0		2023-09-12	2023-09-12	DEPARTMENT OF EDUCATION- DISTRICT VIII STA. RITA
9775	3813	16581	32.00	TECHNICAL	0		2022-01-31	2024-04-02	DEPARTMENT OF EDUCATION-BANABA WEST ELEMENTARY SCHOOL
9776	3813	16568	8.00	TECHNICAL	0		2021-12-11	2021-12-11	DEPARTMENT OF EDUCATION REGION IV A
9777	3810	16551	8.00		0		2024-01-25	2024-01-25	SCHOOLS DIVISION OF BATANGAS CITY - DISTRICT IV
9778	3810	16600	8.00		0		2023-10-06	2023-10-06	DEPARTMENT OF EDUCATION
9779	3810	16601	24.00		0		2023-07-20	2023-07-22	DEPARTMENT OF EDUCATION
9780	3810	16556	40.00		0		2022-08-30	2022-09-03	DEPARTMENT OF EDUCATION
9781	3810	16602	16.00		0		2022-06-09	2022-06-10	DEPARTMENT OF EDUCATION
9782	3815	16482	15.00		0		2024-11-25	2024-11-28	DEPARTMENT OF EDUCATION
9783	3815	16595	40.00		0		2024-07-15	2024-07-19	DEPARTMENT OF EDUCATION
9784	3815	16597	8.00		0		2023-08-02	2023-08-02	DEPARTMENT OF EDUCATION
9785	3815	16557	8.00		0		2023-04-01	2023-04-01	DEPARTMENT OF EDUCATION
9786	3815	16381	18.00		0		2023-02-06	2023-02-08	DEPARTMENT OF EDUCATION
9787	3811	16603	16.00		0		2024-03-22	2024-03-23	DEPARTMENT OF EDUCATION REGION IV-A CALABARZON
9788	3811	16603	8.00		0		2024-03-13	2024-03-13	DEPARTMENT OF EDUCATION REGION IV-A CALABARZON
9789	3811	16346	8.00		0		2024-01-25	2024-01-25	DEPARTMENT OF EDUCATION DISTRICT 4
9790	3811	16594	8.00		0		2022-10-07	2022-10-07	DEPARTMENT OF EDUCATION STA. CLARA ELEMENTARY SCHOOL
9791	3811	16604	8.00		0		2022-07-20	2022-07-20	DEPARTMENT OF EDUCATION STA CLARA ELEMENTARY SCHOOL
9792	3814	16362	24.00	TECHNICAL	0		2024-11-27	2024-11-29	SCHOOLS DIVISION OFFICE
9793	3814	16588	20.00	TECHNICAL	0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9794	3814	16605	24.00	TECHNICAL	0		2024-05-24	2024-05-26	SAMAHAN NG MGA GURO NG INTELEKTUWALISASYON NG PILIPINO
9795	3814	16606	40.00	TECHNICAL	0		2024-01-24	2024-01-30	LIBJO ELEMENTARY SCHOOL
9796	3814	16607	8.00	TECHNICAL	0		2023-11-29	2023-11-29	LIBJO ELEMENTARY SCHOOL
9797	3816	16353	8.00		0		2024-11-29	2024-11-29	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL
9798	3816	16552	40.00		0		2024-01-24	2024-01-30	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL
9799	3816	16448	8.00		0		2023-10-27	2023-10-27	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY
9800	3816	16608	8.00		0		2023-06-14	2023-06-14	GAKKEN PHILIPPINES, INC.
9801	3816	15046	24.00		0		2023-05-15	2023-05-17	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY 
9802	3817	16338	40.00		0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9803	3817	16400	40.00		0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9804	3817	16550	8.00		0		2024-10-31	2024-10-31	DEPARTMENT OF EDUCATION/STA. CLARA ELEMENTARY SCHOOL
9805	3817	16547	24.00		0		2024-10-07	2024-10-09	DEPARTMENT OF EDUCATION/STA. CLARA ELEMENTARY SCHOOL
9806	3817	16610	16.00		0		2024-08-29	2024-08-30	DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY
9817	3818	16601	24.00		0		2023-07-20	2023-07-22	DEPARTMENT OF EDUCATION
9818	3818	16516	40.00		0		2022-08-30	2022-09-03	DEPARTMENT OF EDUCATION
9807	3822	16471	40.00	TECHNICAL	0		2024-01-24	2024-01-30	LIBJO ELEMENTARY SCHOOL
9808	3822	16609	24.00	TECHNICAL	0		2023-10-25	2023-10-27	DEPARTMENT OF EDUCATION NATIONAL EMPLOYEES UNION
9809	3822	15046	24.00	TECHNICAL	0		2023-05-15	2023-05-17	DEPARTMENT OF EDUCATION-SCHOOLS DIVISION OFFICE OF BATANGAS CITY
9810	3822	15860	16.00	TECHNICAL	0		2023-05-10	2023-05-11	DEPARTMETNT OF EDUCATION-SCHOOLS DIVISION OFFICE OF BATANGAS
9811	3822	16422	40.00	TECHNICAL	0		2021-08-30	2021-09-03	DEPARTMENT OF EDUCATION
9819	3824	16400	32.00	TECHNICAL	0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9820	3824	16347	40.00	TECHNICAL	0		2024-07-15	2024-07-19	DEPARTMENT OF EDUCATION-SCHOOLS DIVISION OF BATANGAS CITY
9821	3824	16612	24.00	TECHNICAL	0		2024-05-24	2024-05-26	SAMAHAN NG MGA GURO SA INTELEKTUWALISASYON NG FILIPINO (SAGIF)
9822	3824	16613	3.00	TECHNICAL	0		2023-11-29	2023-11-29	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS-LIBJO ELEMENTARY SCHOOL
9823	3824	16614	3.00	TECHNICAL	0		2023-09-29	2023-09-29	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS-LIBJO ELEMENTARY SCHOOL
9812	3823	11543	8.00		0		2024-11-29	2024-11-29	DEPARTMENT OF EDUCATION - DISTRICT IV
9813	3823	16482	40.00		0		2024-11-25	2024-11-29	DEPARTMENT OF EDUCATION - NATIONAL
9814	3823	16611	40.00		0		2024-07-15	2024-07-19	DEPARTMENT OF EDUCATION - NATIONAL
9815	3823	16556	40.00		0		2022-08-30	2022-09-03	DEPARTMENT OF EDUCATION - NATIONAL
9816	3823	16516	40.00		0		2021-03-15	2021-03-19	DEPARTMENT OF EDUCATION - NATIONAL
9824	3819	16593	8.00		0		2024-11-29	2024-11-29	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9825	3819	16457	40.00		0		2024-11-25	2024-11-29	DEPARTMENT OF EDUCATION-NATIONAL
9826	3819	16547	24.00		0		2024-10-07	2024-10-09	DEPARTMENT OF EDUCATION-NATIONAL
9827	3819	16615	8.00		0		2024-09-30	2024-09-30	DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY
9828	3819	16565	16.00		0		2024-09-13	2024-09-14	GOKONGWEI BROTHERS FOUNDATION
9829	3820	16412	32.00		0		2024-07-22	2024-08-09	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9830	3820	15605	32.00		0		2024-07-24	2024-01-27	DEPARTMENT OF EDUCATION SCHOOLS DIVIISON OF BATANGAS CITY
9831	3820	16498	32.00		0		2023-08-15	2023-08-17	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9832	3820	16608	8.00		0		2023-06-14	2023-06-14	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9833	3820	16389	16.00		0		2022-07-11	2022-07-12	DEPARTMENT OF EDUCATION REGION IV-A CALABARZON
9834	3821	16343	8.00		0		2024-11-29	2024-11-29	DISTRICT IV DEPARTMENT OF EDUCATION
9835	3821	16550	8.00		0		2024-10-31	2024-10-31	STA. CLARA ELEMENTARY SCHOOL
9836	3821	16617	32.00		0		2024-08-21	2024-08-24	SCHOOLS DIVISION OF BATANGAS CITY
9837	3821	16561	32.00		0		2024-01-24	2024-01-30	STA. CLARA ELEMENTARY SCHOOL
9838	3821	16592	40.00		0		2023-07-31	2023-08-04	GOKONGWEI BROTHERS FOUNDATION
9839	3825	16331	24.00		0		2024-12-05	2024-12-07	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY 
9840	3825	11543	8.00		0		2024-11-29	2024-11-29	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY DISTRICT IV
9841	3825	16482	40.00		0		2024-11-25	2024-11-29	DEPARTMENT OF EDUCATION 
9842	3825	16357	40.00		0		2024-07-15	2024-07-19	DEPARTMENT OF EDUCATION 
9843	3825	16346	8.00		0		2024-01-25	2024-01-25	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY DISTRICT IV
9844	3826	16557	24.00		0		2023-02-06	2023-02-08	DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS ICTY/STA. CLARA ELEMENTARY SCHOOL
9845	3826	16584	8.00		0		2022-07-20	2022-07-20	DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY/STA. CLARA ELEMENTARY SCHOOL
9846	3826	16585	12.00		0		2022-02-02	2022-02-04	DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY
9847	3826	15393	24.00		0		2021-05-19	2021-05-21	DEPARTMENT OF EDUCATION - REGION IV-A
9848	3826	16516	40.00		0		2021-03-15	2021-03-19	DEPARTMENT OF EDUCATION - NATIONAL
9849	3829	16400	32.00		0		2024-11-25	2024-11-29	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL
9850	3829	16618	8.00		0		2024-10-31	2024-10-31	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL
9851	3829	16346	8.00		0		2024-01-25	2024-01-25	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL
9852	3829	16557	24.00		0		2023-02-06	2023-02-08	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL
9853	3829	16619	8.00		0		2023-01-04	2023-01-04	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL
9854	3827	16400	32.00		0		2024-11-25	2024-11-29	DEPARTMENT OF EDUCATION/NATIONAL EDUCATORS OF THE PHILIPPINES
9855	3827	16618	8.00		0		2024-10-31	2024-10-31	DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY/STA. CLARA ELEMENTARY SCHOOL
9856	3827	16598	8.00		0		2023-04-01	2023-04-01	DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY
9857	3827	16557	24.00		0		2023-02-06	2023-02-08	DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY/STA. CLARA ELEMENTARY SCHOOL
9858	3827	16594	8.00		0		2022-07-20	2022-07-20	DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY/STA. CLARA ELEMENTARY SCHOOL
9859	3831	16593	8.00		0		2024-11-29	2024-11-29	DEPARTMENT OF EDUCATION
9860	3831	16620	40.00		0		2024-11-25	2024-11-29	DEPARTMENT OF EDUCATION
9861	3831	16621	24.00		0		2024-11-18	2024-11-20	DEPARTMENT OF EDUCATION
9862	3831	16611	40.00		0		2024-07-15	2024-07-19	DEPARTMENT OF EDUCATION
9863	3831	16346	8.00		0		2023-01-25	2023-01-25	DEPARTMENT OF EDUCATION
9864	3828	16622	8.00		0		2024-11-29	2024-11-29	DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY
9865	3828	16340	4.00		0		2024-11-29	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9866	3828	16319	20.00		0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9867	3828	16375	24.00		0		2024-11-18	2024-11-20	DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY
9868	3828	16615	8.00		0		2024-09-30	2024-09-30	DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY
9869	3832	16623	24.00		0		2024-11-25	2024-11-27	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY
9870	3832	16314	40.00		0		2024-11-04	2024-11-08	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY
9871	3832	16344	8.00		0		2024-10-29	2024-10-29	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY
9872	3832	16321	16.00		0		2024-10-10	2024-10-11	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY
9873	3832	16624	8.00		0		2024-05-25	2024-05-25	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY
9874	3830	16362	24.00		0		2024-11-27	2024-11-29	DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY
9875	3830	16482	20.00		0		2024-11-25	2024-11-29	DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY
9876	3830	16615	8.00		0		2024-09-30	2024-09-30	DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY
9877	3830	16565	16.00		0		2024-09-13	2024-09-14	GOKONGWEI BROTHERS FOUNDATION
9878	3830	16625	8.00		0		2024-09-08	2024-09-08	DEPARTMENT OF EDUCATION/SCHOOLS DIVISION OF BATANGAS CITY
9879	3833	16626	8.00		0		2025-02-07	2025-02-07	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL
9880	3833	16627	8.00		0		2025-01-31	2025-01-31	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL
9881	3833	16628	8.00		0		2024-10-31	2024-10-31	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL
9882	3833	16629	8.00		0		2024-09-10	2024-09-10	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BATANGAS CITY INTEGRATED HIGH SCHOOL
9883	3833	16404	32.00		0		2024-01-26	2024-01-26	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL
9884	3837	16470	40.00		0		2024-07-15	2024-07-19	DEPARTMENT OF EDUCATION
9885	3837	16630	144.00		0		2023-10-13	2023-11-09	MC TECH TRAINING AND ASSESSMENT CENTER, INC
9886	3837	16631	356.00		0		2021-07-19	2021-08-31	TECHNICAL EDUCATION AND SKILLS DEVELOPMENT AUTHORITY BATANGAS CITY
9887	3834	16541	8.00		0		2024-11-29	2024-11-29	SCHOOLS DIVISION OF BATANGAS CITY - DISTRICT IV
9888	3834	16547	9.00		0		2024-10-09	2024-10-09	DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY
9889	3834	16566	4.00		0		2024-06-15	2024-06-15	DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY
9890	3834	16566	4.00		0		2024-06-08	2024-06-08	DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY
9891	3834	16566	4.00		0		2024-06-01	2024-06-01	DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY
9892	3839	16513	24.00		0		2024-11-27	2024-11-29	APPLEVILLE-BISTRO, ARCE ROAD, KUMINTANG IBABA, BATANGAS CITY
9893	3839	16633	24.00		0		2024-11-08	2024-11-10	JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL
9894	3839	16481	8.00		0		2024-09-14	2024-09-14	SCHOOLS DIVISION OF BATANGAS CITY
9895	3839	16634	8.00		0		2024-08-09	2024-08-09	ISLA VERDE BATANGAS CITY
9896	3839	16635	56.00		0		2017-10-01	2017-10-08	BOLBOK BATANGAS CITY
9897	3840	16591	8.00		0		2024-09-13	2024-09-13	SCHOOLS DIVISION OF BATANGAS CITY
9898	3840	15604	24.00		0		2024-01-29	2024-01-31	SCHOOLS DIVISION OF BATANGAS CITY
9899	3840	16636	88.00		0		2020-03-02	2020-03-11	BACULI COMPUTER AND PRINTING SERVICES
9900	3840	16637	100.00		0		2021-06-07	2021-07-19	TECHNICAL EDUCATION AND SKILLS DEVELOPMENT AUTHORITY
9901	3840	16638	24.00		0		2021-03-12	2021-03-14	ACE IT UP CENTER FOR LEARNING AND DEVELOPMENT
9902	3838	16372	40.00		0		2024-11-25	2024-11-29	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9903	3838	16470	40.00		0		2024-07-15	2024-07-19	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9904	3838	16083	24.00		0		2023-09-20	2023-09-23	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9905	3838	15143	8.00		0		2023-08-02	2023-08-02	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9906	3838	15617	24.00		0		2023-07-18	2023-07-20	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9907	3841	15882	16.00		0		2022-06-09	2022-06-10	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY 
9908	3841	16640	24.00		0		2022-04-29	2022-05-01	GIRL SCOUT OF THE PHILIPPINES, SOUTHERN LUZON REGION
9909	3841	16641	24.00		0		2022-01-07	2022-01-09	GIRL SCOUT OF THE PHILIPPINES, SOUTHERN LUZON REGION
9910	3841	16642	40.00		0		2021-08-30	2021-09-03	DEPARTMENT OF EDUCATION
9911	3841	16642	40.00		0		2021-03-15	2021-03-19	DEPARTMENT OF EDUCATION 
9912	3842	16644	3.00	TECHNICAL 	0		2024-12-12	2024-12-12	LIBJO ELEMENTARY SCHOOL 
9913	3842	16645	3.00	TECHNICAL 	0		2024-10-18	2024-10-18	LIBJO ELEMENTARY SCHOOL 
9914	3842	16646	3.00	TECHNICAL 	0		2003-03-10	2003-03-10	LIBJO ELEMENTARY SCHOOL 
9915	3842	16606	40.00	TECHNICAL 	0		2023-02-06	2023-02-06	LIBJO ELEMENTARY SCHOOL 
9916	3842	15577	56.00	TECHNICAL 	0		2022-08-12	2022-08-22	DEPARTMENT OF EDUCATION 
9917	3836	16341	32.00		0		2024-04-24	2024-01-27	DEPARTMENT OF EDUCATION
9918	3836	16501	24.00		0		2023-07-18	2023-07-20	DEPARTMENT OF EDUCATION
9919	3836	16516	40.00		0		2021-03-15	2021-03-19	DEPARTMENT OF EDUCATION
9920	3836	16648	8.00		0		2019-01-18	2019-01-18	DEPARTMENT OF EDUCATION
9921	3836	16649	48.00		0		2018-11-30	2018-12-02	DEPARTMENT OF EDUCATION
9922	3835	16470	40.00		0		2024-07-15	2024-07-19	DEPARTMENT OF EDUCATION
9923	3835	16083	24.00		0		2023-09-20	2023-09-23	DEPARTMENT OF EDUCATION
9924	3835	15963	8.00		0		2023-08-18	2023-08-18	DEPARTMENT OF EDUCATION
9925	3835	15609	24.00		0		2023-07-18	2023-07-20	DEPARTMENT OF EDUCATION
9926	3835	15308	16.00		0		2023-07-21	2023-07-22	DEPARTMENT OF EDUCATION
9927	3843	16650	8.00		0		2024-11-29	2024-11-29	SCHOOLS DIVISION OF BATANGAS CITY 
9928	3843	16457	40.00		0		2024-11-25	2024-11-29	DEPARTMENT OF EDUCATION 
9929	3843	16598	8.00		0		2023-04-01	2023-04-01	DEPARTMENT OF EDUCATION
9930	3843	16557	24.00		0		2023-02-06	2023-02-08	DEPARTMENT OF EDUCATION
9931	3843	16651	8.00		0		2021-11-26	2021-11-26	DEPARTMENT OF EDUCATION 
9932	3846	16482	32.00		0		2024-11-25	2024-11-28	DEPED CENTRAL
9933	3846	16506	8.00		0		2024-04-26	2024-04-26	DISTRICT
9934	3846	16422	40.00		0		2024-01-24	2024-01-30	SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL
9935	3846	16553	24.00		0		2021-11-13	2021-11-27	PAMBANSANG SAMAHAN NG MGA TAGAMASID AT TAGAPAGTAGUYOD SA FILIPINO
9936	3846	16409	40.00		0		2021-03-09	2024-03-14	DEPARTMENT OF EDUCATION
9937	3845	15540	24.00		0		2024-11-18	2024-11-20	DEPARTMENT OF EDUCATION - SDO BATANGAS CITY 
9938	3845	16654	8.00		0		2024-11-11	2024-11-11	DEPARTMENT OF EDUCATION - SDO BATANGAS CITY
9939	3845	16655	8.00		0		2024-09-30	2024-09-30	DEPARTMENT OF EDUCATION - SDO BATANGAS CITY
9940	3845	16656	8.00		0		2024-05-03	2024-05-03	DEPARTMENT OF EDUCATION - SDO BATANGAS CITY
9941	3845	16658	24.00		0		2023-07-20	2023-07-22	KNOWLEDGE CHANNEL FOUNDATION WITH FIRST GEN CORPORATION
9942	3850	16400	20.00	TECHNICAL	0		2024-11-25	2024-11-29	DEPARTMENT OF EDUCATION
9943	3850	15143	3.00	TECHNICAL	0		2023-08-02	2023-08-02	DEPARTMENT OF EDUCATION
9944	3850	16657	3.00	ALOYSIAN	0		2023-04-21	2023-04-21	ALOYSIAN PUBLICATION 
9945	3850	16659	24.00	TECHNICAL	0		2023-02-09	2023-02-11	DEPARTMENT OF EDUCATION
9946	3850	16660	56.00	TECHNICAL	0		2022-08-12	2022-08-22	DEPARTMENT OF EDUCATION
9947	3848	16661	8.00		0		2024-11-29	2024-11-29	NEAP PROFESSIONAL DEVELOPMENT PROGRAM
9948	3848	16662	32.00		0		2024-11-25	2024-11-29	NEAP PROFESSIONAL DEVELOPMENT PROGRAM
9949	3848	16479	24.00		0		2024-11-18	2024-11-20	SCHOOLS DIVISION OF BATANGAS CITY
9950	3848	16663	8.00		0		2024-11-30	2024-11-30	DEPARTMENT OF EDUCATION
9951	3848	16617	32.00		0		2024-08-21	2024-08-24	SCHOOLS DIVISION OF BATANGAS CITY
9952	3844	16347	40.00	TECHNICAL 	0		2024-07-15	2024-07-19	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
9953	3844	16319	32.00	DEPARTMENT OF EDUCATION 	0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES 
9954	3844	16612	24.00	DEPARTMENT OF EDUCATION 	0		2024-05-24	2024-05-26	SAMAHAN NG MGA GURO SA INTELEKTUWALISASYON NG FILIPINO (SAGIF)
9955	3844	15235	56.00	DEPARTMENT OF EDUCATION 	0		2022-09-12	2022-09-15	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OFFICE OF BATANGAS CITY 
9956	3844	16664	8.00	DEPARTMENT OF EDUCATION 	0		2024-01-29	2024-01-29	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OFFICE OF BATANGAS CITY 
9957	3851	16665	3.00	TECHNICAL	0		2024-12-12	2024-12-12	LIBKO ELEMENTARY SCHOOL
9958	3851	16666	3.00	TECHNICAL	0		2024-08-29	2024-08-29	LIBJO ELEMENTARY SCHOOL
9959	3851	16347	40.00	TECHNICAL	0		2024-07-15	2024-07-19	DEPARTMENT OF EDUCATION
9960	3851	16483	24.00	TECHNICAL	0		2024-07-04	2024-07-06	DEPARTMENT OF EDUCATION
9961	3851	16612	40.00	TECHNICAL	0		2024-05-24	2024-05-25	DEPARTMENT OF EDUCATION
9962	3847	16482	15.00		0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9963	3847	16470	40.00		0		2024-07-15	2024-07-19	DIVISION OF BATANGAS CITY
9964	3847	16483	24.00		0		2024-07-04	2024-07-06	DIVISION OF BATANGAS CITY
9965	3847	11451	108.00		0		2023-04-18	2023-05-05	MC TECH TRAINING CENTER
9966	3847	16409	40.00		0		2021-08-30	2021-09-03	DEPARTMENT OF EDUCATION
9967	3852	16346	8.00		0		2024-01-25	2024-01-25	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / DISTRICT IV 
9968	3852	16571	8.00		0		2023-04-01	2023-04-01	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / DISTRICT IV
9969	3852	16557	24.00		0		2023-02-06	2023-02-08	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL
9970	3852	16651	8.00		0		2021-11-26	2021-11-26	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL
9971	3852	15598	8.00		0		2021-11-04	2021-11-04	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY 
9972	3854	16667	3.00	TECHNICAL	0		2024-08-29	2024-08-29	LIBJO ELEMENTARY SCHOOL
9973	3854	16668	3.00	TECHNICAL	0		2024-04-25	2024-04-25	LIBJO ELEMENTARY SCHOOL
9974	3854	16606	40.00	TECHNICAL	0		2024-01-24	2024-01-30	LIBJO ELEMENTARY SCHOOL
9975	3854	16669	3.00	TECHNICAL	0		2023-11-29	2023-11-29	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS
9976	3854	16670	3.00	TECHNICAL	0		2023-09-20	2023-10-20	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS
9977	3849	16671	8.00		0		2024-11-29	2024-11-29	DEPED CENTRAL
9978	3849	16482	32.00		0		2024-11-25	2024-11-28	DEPED CENTRAL
9979	3849	16672	24.00		0		2024-11-18	2024-11-20	DIVISION OF BATANGAS CITY
9980	3849	16559	32.00		0		2024-08-21	2024-08-24	DIVISION OF BATANGAS CITY
9981	3849	16422	40.00		0		2024-01-24	2024-01-30	SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL
9982	3858	16655	8.00		0		2024-09-30	2024-09-30	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY
9983	3858	16673	40.00		0		2022-04-01	2022-04-05	DEPARTMENT OF EDUCATION - REGION IV-A
9984	3858	15598	8.00		0		2021-11-04	2021-11-04	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY
9985	3858	15883	32.00		0		2021-10-05	2021-10-08	DEPARTMENT OF EDUCATION - REGION IV-A
9986	3858	16674	32.00		0		2021-07-21	2021-07-27	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY
9987	3856	16508	4.00		0		2025-02-13	2025-02-13	SAN AGAPITO ELEMENTARY SCHOOL
9988	3856	16457	40.00		0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9989	3856	16677	24.00		0		2024-11-18	2024-11-20	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9990	3856	16678	8.00		0		2024-09-14	2024-09-14	DIVISION OF BATANGAS CITY
9991	3856	16470	40.00		0		2024-07-15	2024-07-19	DIVISION OF BATANGAS CITY
9992	3860	16470	40.00		0		2024-05-15	2024-07-19	DEPARTMENT OF EDUCATION
9993	3860	16679	8.00		0		2024-11-15	2024-11-15	DEPARTMENT OF EDUCATION
9994	3860	15963	8.00		0		2023-08-18	2023-08-18	DEPARTMENT OF EDUCATION
9995	3860	16516	40.00		0		2021-08-30	2021-09-03	DEPARTMENT OF EDUCATION
9996	3860	16680	8.00		0		2021-05-06	2021-05-06	DEPARTMENT OF EDUCATION
9997	3859	16508	8.00		0		2025-02-13	2025-02-13	SAN AGAPITO ELEMENTARY SCHOOL
9998	3859	16400	40.00		0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
9999	3859	16681	8.00		0		2024-09-30	2024-09-30	SAN AGAPITO ELEMENTARY SCHOOL
10000	3859	16591	8.00		0		2024-09-13	2024-09-13	SCHOOLS DIVISION OF BATANGAS CITY
10001	3859	16617	36.00		0		2024-08-21	2024-08-24	SCHOOLS DIVISION OF BATANGAS CITY
10002	3861	16348	32.00		0		2022-02-02	2022-02-05	PARANG ELEMENTARY SCHOOL
10003	3861	15877	32.00		0		2022-02-22	2022-02-25	COUNCIL FOR THE RESTORATION OF FILIPINO VALUE
10004	3861	15298	24.00		0		2022-01-02	2022-01-14	SCHOOLS DIVISION OF BATANGAS CITY
10005	3861	15579	32.00		0		2021-10-05	2021-10-08	REGION IV-A CALABARZON - HRDD-NEAP
10006	3861	16409	16.00		0		2021-08-30	2021-08-31	DEPED CENTRAL OFFICE
10007	3855	16682	4.00	TECHNICAL	0		2025-01-24	2025-01-24	DEPARTMENT OF EDUCATION-LIBJO ELEMENTARY SCHOOL
10008	3855	16512	24.00	TECHNICAL	0		2024-12-05	2024-12-07	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY DISTRICT VII
10009	3855	16683	4.00	TECHNICAL	0		2024-10-31	2024-10-31	DEPARTMENT OF EDUCATION LIBJO ELEMENTARY SCHOOL
10010	3855	16684	4.00	TECHNICAL	0		2024-03-21	2024-03-21	DEPARTMENT OF EDUCATION LIBJO ELEMENTARY SCHOOL
10011	3855	16685	4.00	TECHNICAL	0		2024-02-22	2024-02-22	DEPARTMENT OF EDUCATION LIBJO ELEMENTARY SCHOOL
10012	3867	16686	8.00	TECHNICAL	0		2025-01-24	2025-01-24	DEPARTMENT OF EDUCATION LIBJO ELEMENTARY SCHOOL
10013	3867	16331	24.00	TECHNICAL	0		2024-12-05	2024-12-07	DEPARTMENT OF EDUCATION LIBJO ELEMENTARY SCHOOL
10014	3867	16687	8.00	TECHNICAL	0		2024-11-16	2024-11-16	DEPARTMENT OF EDUCATION LIBJO ELEMENTARY SCHOOL
10015	3867	16688	24.00	TECHNICAL	0		2024-09-30	2024-10-02	DEPARTMENT OF EDUCATION LIBJO ELEMENTARY SCHOOL
10016	3867	16689	8.00	TECHNICAL	0		2024-10-31	2024-10-31	DEPARTMENT OF EDUCATION LIBJO ELEMENTARY SCHOOL
10017	3866	16690	32.00		0		2024-08-01	2024-08-01	DEPARTMENT OF EDUCATION
10018	3866	16617	32.00		0		2024-08-21	2024-08-24	DEPARTMENT OF EDUCATION
10019	3866	16470	40.00		0		2024-07-15	2024-07-19	DEPARTMENT OF EDUCATION
10020	3866	16341	32.00		0		2024-01-24	2024-01-27	DEPARTMENT OF EDUCATION
10021	3866	16155	24.00		0		2023-07-18	2023-07-20	DEPARTMENT OF EDUCATION
10022	3868	16682	3.00	TECHNICAL	0		2025-01-24	2025-01-24	LIBJO ELEMENTARY SCHOOL
10023	3868	16644	3.00	TECHNICAL	0		2024-12-12	2024-12-12	LIBJO ELEMENTARY SCHOOL
10024	3868	16691	3.00	TECHNICAL	0		2024-11-16	2024-11-16	LIBJO ELEMENTARY SCHOOL
10025	3868	16692	24.00	TECHNICAL	0		2024-11-11	2024-11-13	LIBJO ELEMENTARY SCHOOL
10026	3868	16683	3.00	TECHNICAL	0		2024-10-31	2024-10-31	LIBJO ELEMENTARY SCHOOL
10027	3864	16693	40.00		0		2024-09-23	2024-09-27	SCHOOLS DIVISION OF BATANGAS CITY
10028	3864	16348	40.00		0		2024-01-24	2024-01-30	PARANG ELEMENTARY SCHOOL
10029	3864	15172	8.00		0		2023-08-02	2023-08-02	SCHOOLS DIVISION OF BATANGAS CITY
10030	3864	16695	8.00		0		2023-08-02	2023-08-02	SCHOOLS DIVISION OF BATANGAS CITY
10031	3864	16673	8.00		0		2022-04-12	2022-04-12	THE PHILIPPINES AND DEPED REGION IV-A CALABARZON
10032	3869	16339	40.00		0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
10033	3869	16697	80.00		0		2024-02-01	2024-02-10	CONTINUING PROFESSIONAL DEVELOPMENT CENTER FOR TEACHERS TRAINING CENTER
10034	3869	16698	80.00		0		2024-01-15	2024-01-24	CONTINUING PROFESSIONAL DEVELOPMENT CENTER FOR TEACHERS TRAINING CENTER
10035	3869	16495	80.00		0		2024-01-01	2024-01-01	CONTINUING PROFESSIONAL DEVELOPMENT CENTER FOR TEACHERS TRAINING CENTER
10036	3862	16506	8.00		0		2024-04-26	2024-04-26	SCHOOLS DIVISION OF BATANGAS CITY
10037	3862	16348	40.00		0		2024-01-24	2024-01-30	PARANG ELEMENTARY SCHOOL
10038	3862	16701	8.00		0		2023-10-13	2023-10-13	SCHOOLS DIVISION OF BATANGAS CITY
10039	3862	16703	40.00		0		2022-08-08	2022-08-11	OFFICE OF THE UNDERSECRETARY FOR ADMINISTRATION (OUA) INFORMATION AND COMMUNICATIONS TECHNOLOGY SERVICE-EDUCATION TECHNOLOGY UNIT (ICTS-EDTECH)
10040	3862	16706	8.00		0		2022-04-07	2022-04-07	SCHOOLS DIVISION OF BATANGAS CITY
10041	3871	16331	24.00		0		2024-12-05	2024-12-07	SCHOOLS DIVISION OF BATANGAS CITY
10042	3871	16700	40.00		0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
10043	3871	16702	8.00		0		2023-08-31	2023-08-31	BATANGAS STATE UNIVERSITY
10044	3871	16705	8.00		0		2022-06-06	2022-06-06	UNIVERSTIY OF THE PHILIPPINES DILIMAN
10045	3871	16707	8.00		0		2022-08-19	2022-08-19	BATANGAS STATE UNIVERSITY
10046	3870	16699	8.00	TECHNICAL	0		2024-08-16	2024-08-16	DEPARTMENT OF EDUCATION
10047	3870	16613	3.00	TECHNICAL	0		2023-11-29	2023-11-29	DEPARTMENT OF EDUCATION
10048	3870	16704	3.00	TECHNICAL	0		2023-05-31	2023-05-31	DEPARTMENT OF EDUCATION
10049	3870	16646	3.00	TECHNICAL	0		2023-03-10	2023-03-10	DEPARTMENT OF EDUCATION
10050	3870	15560	8.00	TECHNICAL	0		2023-01-17	2023-01-17	DEPARTMENT OF EDUCATION
10051	3865	16512	24.00		0		2024-12-05	2024-12-07	OFFICE OF UNDERSECRETARY OF ADMINISTRATION
10052	3865	16708	40.00		0		2023-02-06	2023-02-10	OFFICE OF UNDERSECRETARY OF ADMINISTRATION
10053	3872	16339	40.00		0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
10054	3872	16709	24.00		0		2023-07-19	2023-01-21	GOLDEN GATE COLLEGES GRADUATE SCHOOL
10055	3872	16710	24.00		0		2022-07-21	2022-07-23	GOLDEN GATE COLLEGES GRADUATE SCHOOL
10056	3872	16711	6.00		0		2022-04-25	2022-04-26	DEPARTMENT OF INFORMATION AND COMMUNICATION TECHNOLOGY (DICT)
10057	3872	16712	24.00		0		2021-07-05	2021-07-07	PROVATE EDUCATION ASSISTANCE COMMITEE (PAEC)
10058	3873	16713	8.00	TECHNICAL	0		2023-11-29	2023-11-29	DEPARTMENT OF EDUCATION LIBJO ELEMENTARY SCHOOL
10059	3873	16714	8.00	TECHNICAL	0		2022-12-04	2022-12-04	DEPARTMENT OF EDUCATION LIBJO ELEMENTARY SCHOOL
10060	3873	16715	40.00	TECHNICAL	0		2021-03-15	2021-03-19	DEPARTMENT OF EDUCATION EDUCATIONAL TECHNOLOGY UNIT
10061	3873	16716	8.00	TECHNICAL	0		2020-01-12	2020-01-12	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
10062	3873	16397	56.00	TECHNICAL	0		2022-08-12	2022-08-22	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
10063	3874	16372	40.00		0		2024-11-25	2024-11-29	DEPARTMENT OF EDUCATION BATANGAS CITY
10064	3874	16355	24.00		0		2024-11-08	2024-11-10	DEPARTMENT OF EDUCATION BATANGAS CITY
10065	3874	16347	40.00		0		2024-07-15	2024-07-19	DEPARTMENT OF EDUCATION BATANGAS CITY
10066	3874	16717	8.00		0		2024-05-27	2024-05-27	DEPARTMENT OF EDUCATION BATANGAS CITY
10067	3874	16718	8.00		0		2024-04-26	2024-04-26	DEPARTMENT OF EDUCATION BATANGAS CITY
10068	3875	16482	40.00		0		2024-11-25	2024-11-29	NATIONAL EDUCATOR ACADEMY OF THE PHILIPPINES
10069	3875	16414	24.00		0		2024-12-05	2024-12-07	DIVISION OF BATANGAS CITY
10070	3875	16470	40.00		0		2024-07-15	2024-07-19	DIVISION OF BATANGAS CITY
10071	3875	16426	24.00		0		2024-07-10	2024-07-12	DIVISION OF BATANGAS CITY
10072	3875	16483	24.00		0		2024-07-04	2024-07-06	DIVISION OF BATANGAS CITY
10073	3876	16331	24.00		0		2024-12-05	2024-12-07	SCHOOLS DIVISION OF BATANGAS CITY
10074	3876	16720	32.00		0		2024-11-25	2024-11-28	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
10075	3876	16321	16.00		0		2024-10-10	2024-10-11	SCHOOLS DIVISION OF BATANGAS CITY
10076	3876	16357	40.00		0		2024-07-15	2024-07-19	SCHOOLS DIVISION OF BATANGAS CITY
10077	3876	16721	40.00		0		2024-01-24	2024-01-30	SCHOOLS DIVISION OF BATANGAS CITY
10078	3877	16400	32.00	TECHNICAL	0		2024-11-25	2024-11-29	NATIONAL EDUCATORS' ACADEMY OF THE PHILIPPINES (SCHOOLS DIVISION OF BATANGAS CITY)
10079	3877	15172	3.00	TECHNICAL	0		2023-08-02	2023-08-02	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
10080	3877	16660	56.00	TECHNICAL	0		2022-08-12	2022-08-22	NATIONAL EDUCATORS' ACADEMY OF THE PHILIPPINES (SCHOOLS DIVISION OF BATANGAS CITY)
10081	3877	16722	8.00	TECHNICAL	0		2022-08-19	2022-08-19	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY DISTRICT VII
10082	3877	16723	8.00	TECHNICAL	0		2022-04-12	2022-04-12	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY
10083	3878	16724	40.00		0		2024-11-25	2024-11-29	DIVISION OF BATANGAS CITY
10084	3878	16725	40.00		0		2024-11-25	2024-11-29	DIVISION OF BATANGAS CITY
10085	3878	16617	32.00		0		2024-08-21	2024-08-24	DIVISION OF BATANGAS CITY
10086	3878	16428	24.00		0		2024-11-18	2024-11-20	DIVISION OF BATANGAS CITY
10087	3878	16483	16.00		0		2024-07-02	2024-07-03	DIVISION OF BATANGAS CITY
10088	3881	16671	8.00		0		2024-11-29	2024-11-29	NEAP PROFESSIONAL DEVELOPMENT PROGRAMS
10089	3881	16720	32.00		0		2024-11-25	2024-11-28	NEAP PROFESSIONAL DEVELOPMENT PROGRAMS
10090	3881	16726	8.00		0		2023-10-03	2023-10-03	SCHOOLS DIVISION OF BATANGAS CITY
10091	3881	16727	40.00		0		2021-12-07	2021-12-10	SCHOOLS DIVISION OF BATANGAS CITY
10092	3881	16728	8.00		0		2021-11-20	2021-09-03	SCHOOLS DIVISION OF BATANGAS CITY
10093	3882	16338	20.00	TECHNICAL	0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
10094	3882	16339	20.00	TECHNICAL	0		2024-11-25	2025-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
10095	3882	16729	12.00	TECHNICAL	0		2024-06-10	2024-06-11	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
10096	3882	16605	24.00	TECHNICAL	0		2024-05-24	2024-05-26	SAMAHAN NG MGA GURO SA INTELEKTUWALISASYON SA FILIPINO KATUWANG
10097	3882	16730	12.00	TECHNICAL	0		2024-05-18	2024-06-15	DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY-LUZON
10098	3883	16400	32.00	TECHNICAL	0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
10099	3883	16340	8.00	TECHNICAL	0		2024-11-29	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
10100	3883	16731	40.00	TECHNICAL	0		2023-08-14	2023-08-18	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY
10101	3883	16732	40.00	TECHNICAL	0		2023-02-06	2023-02-10	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY
10102	3883	16733	8.00	TECHNICAL	0		2022-11-25	2022-11-25	LIBJO ELEMENTARY SCHOOL
10103	3916	16734	24.00		0		2024-12-02	2024-12-04	DEPARTMENT OF EDUCATION
10104	3916	16735	24.00		0		2024-11-25	2024-11-27	DEPARTMENT OF EDUCATION
10105	3916	16314	40.00		0		2024-11-04	2024-11-08	DEPARTMENT OF EDUCATION
10106	3916	16736	8.00		0		2024-10-29	2024-10-29	DEPARTMENT OF EDUCATION
10107	3916	16589	8.00		0		2024-02-29	2024-02-29	DEPARTMENT OF EDUCATION
10108	3918	16737	8.00		0		2024-11-29	2024-11-29	NEAP PROFESSIONAL DEVELOPMENT PROGRAMS
10109	3918	16738	32.00		0		2024-11-25	2024-11-28	NEAP PROFESSIONAL DEVELOPMENT PROGRAMS
10110	3918	16672	24.00		0		2024-11-18	2024-11-20	SCHOOLS DIVISION OF BATANGAS CITY
10111	3918	16470	40.00		0		2024-07-15	2024-07-19	SCHOOLS DIVISION OF BATANGAS CITY
10112	3918	16426	24.00		0		2024-07-10	2024-07-12	SCHOOLS DIVISION OF BATANGAS CITY
10113	3917	16686	3.00	TECHNICAL	0		2025-01-24	2025-01-24	LIBJO ELEMENTARY SCHOOL
10114	3917	16739	3.00	TECHNICAL	0		2024-12-12	2024-12-12	LIBJO ELEMENTARY SCHOOL
10115	3917	16689	3.00	TECHNICAL	0		2024-10-31	2024-10-31	LIBJO ELEMENTARY SCHOOL
10116	3917	16740	3.00	TECHNICAL	0		2024-08-29	2024-08-29	LIBJO ELEMENTARY SCHOOL
10117	3917	16741	24.00	TECHNICAL	0		2024-05-24	2024-05-26	SAMAHAN NG MGA GURO SA INTELEKTUWALISASYONG FILIPINO
10118	3919	16742	8.00		0		2024-04-26	2024-04-26	SCHOOLS DIVISION OF BATANGAS CITY - DISTRICT X
10119	3919	16701	8.00		0		2023-10-13	2023-10-13	SCHOOLS DIVISION OF BATANGAS CITY - DISTRICT X
10120	3919	15230	8.00		0		2022-12-14	2022-12-14	SCHOOLS DIVISION OF BATANGAS CITY
10121	3920	16400	32.00	TECHNICAL	0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
10122	3920	16743	24.00	TECHNICAL	0		2024-11-18	2024-11-20	DEPARTMENT OF EDUCATION - REGION IV-A CALABARZON
10123	3920	16744	40.00	TECHNICAL	0		2023-08-14	2023-08-18	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY
10124	3921	16745	8.00		0		2024-08-09	2024-08-09	SCHOOLS DIVISION OF BATANGAS CITY DISTRICT X VERDE ISLAND
10125	3921	16778	40.00		0		2024-01-24	2024-01-30	PARANG ELEMENTARY SCHOOL
10126	3921	16779	8.00		0		2023-08-01	2023-08-01	SCHOOLS DIVISION OF BATANGAS CITY
10127	3921	15172	8.00		0		2023-08-02	2023-08-02	SCHOOLS DIVISION OF BATANGAS CITY
10128	3921	16780	8.00		0		2023-03-10	2023-03-10	SCHOOLS DIVISION OF BATANGAS CITY DISTRICT X VERDE ISLAND
10129	3922	16321	16.00		0		2024-10-10	2024-10-11	SCHOOLS DIVISION OF BATANGAS CITY
10130	3922	16778	40.00		0		2024-01-24	2024-01-30	PARANG ELEMENTARY SCHOOL
10131	3922	16781	8.00		0		2023-08-02	2023-08-02	SCHOOLS DIVISION OF BATANGAS CITY
10132	3922	16780	8.00		0		2023-03-10	2023-03-10	SCHOOLS DIVISION OF BATANGAS CITY DISTRICT X-VERDE ISLAND
10133	3922	16552	32.00		0		2022-02-02	2022-02-05	PARANG ELEMENTARY SCHOOL
10134	3879	16319	40.00		0		2024-11-25	2024-11-29	DEPARTMENT OF EDUCATION BATANGAS CITY
10135	3879	15617	24.00		0		2024-09-25	2024-09-27	DEPARTMENT OF EDUCATION BATANGAS CITY
10136	3879	16481	8.00		0		2024-09-14	2024-09-14	DEPARTMENT OF EDUCATION BATANGAS CITY
10137	3879	16634	8.00		0		2024-08-09	2024-08-09	PARANG CUEVA ELEMENTARY SCHOOL
10138	3879	16783	40.00		0		2024-01-24	2024-01-30	PARANG CUEVA ELEMENTARY SCHOOL
10139	3880	16338	40.00		0		2024-11-25	2024-11-29	SCHOOLS DIVISION OF BATANGAS CITY
10140	3880	16325	40.00		0		2024-05-20	2024-05-24	SCHOOLS DIVISION OF BATANGAS CITY
10141	3880	16784	8.00		0		2024-05-08	2024-05-08	SCHOOLS DIVISION OF BATANGAS CITY
10142	3880	16506	8.00		0		2024-04-26	2024-04-26	DISTRICT
10143	3880	16326	40.00		0		2024-03-18	2024-03-22	SCHOOLS DIVISION OF BATANGAS CITY
10144	3925	16734	24.00		0		2024-12-02	2024-12-04	SCHOOLS DIVISION OFFICE, BATANGAS CITY
10145	3925	16623	24.00		0		2024-11-25	2024-11-27	SCHOOLS DIVISION OF BATANGAS CITY
10146	3925	16314	40.00		0		2024-11-04	2024-11-08	SCHOOLS DIVISION OFFICE, BATANGAS CITY
10147	3925	16321	16.00		0		2024-10-10	2024-10-11	SCHOOLS DIVISION OFFICE, BATANGAS CITY
10148	3925	16326	40.00		0		2024-03-18	2024-03-22	SCHOOLS DIVISION OFFICE, BATANGAS CITY
10149	3924	16623	24.00		0		2024-11-25	2024-11-12	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY
10150	3924	16785	40.00		0		2024-11-04	2024-11-08	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY
10151	3924	16786	40.00		0		2024-07-15	2024-07-19	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY
10152	3924	16787	24.00		0		2024-06-26	2024-06-28	DEPARTMENT OF EDUCATION -NATIONAL LEVEL
10153	3924	16788	40.00		0		2024-05-20	2024-05-24	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY
10154	3958	16789	4.00		0		2024-08-24	2024-08-24	PHILIPPINE ASSOCIATION FOR TEACHERS AND EDUCATORS
10155	3961	16508	4.00		0		2025-02-03	2025-02-03	SAN AGAPITO ELEMENTARY SCHOOL
10156	3961	16790	40.00		0		2024-11-25	2024-11-29	NEAP
10157	3961	16737	1.00		0		2024-11-25	2024-11-29	NEAP
10158	3961	16791	8.00		0		2024-11-08	2024-11-10	BSP BATANGAS CITY
10159	3961	16681	8.00		0		2024-09-30	2024-09-30	SAN AGAPITO ELEMENTARY SCHOOL
10160	3959	16340	8.00		0		2024-11-29	2024-11-29	SCHOOLS DIVISION OFFICE, BATANGAS CITY
10161	3959	16693	24.00		0		2024-09-25	2024-09-27	SCHOOLS DIVISION OFFICE, BATANGAS CITY
10162	3959	16792	40.00		0		2024-07-22	2024-07-26	SCHOOLS DIVISION OFFICE, BATANGAS CITY
10163	3959	16718	8.00		0		2024-04-26	2024-04-26	SCHOOLS DIVISION OFFICE, BATANGAS CITY
10164	3959	16793	8.00		0		2024-01-24	2024-01-30	SCHOOLS DIVISION OFFICE, BATANGAS CITY
10165	3962	16561	40.00		0		2024-01-24	2024-01-30	SAN AGAPITO ELEMENTARY SCHOOL
10166	3962	16794	8.00		0		2023-10-13	2023-10-13	SAN AGUSTIN INTEGRATED SCHOOL
10167	3962	15773	8.00		0		2023-08-14	2023-08-14	ALANGILAN CENTRAL ELEMENTARY SCHOOL
10168	3962	16597	8.00		0		2023-08-02	2023-08-02	BATANGAS CITY SPORTS COLISEUM, BATANGAS CITY
10169	3962	16780	8.00		0		2023-03-10	2023-03-10	PARANG CUEVA ELEMENTARY SCHOOL
10170	3963	16319	40.00		0		2024-11-25	2024-11-29	NATIONAL EDUCATORS ACADEMY OF THE PHILIPPINES
10171	3963	16593	8.00		0		2024-11-20	2024-11-20	DEPARTMENT OF EDUCATION DISTRICT II
10172	3963	16797	8.00		0		2024-09-21	2024-09-21	BOY SCOUT OF THE PHILIPPINES BATANGAS CITY CHAPTER
10173	3963	16798	40.00		0		2024-07-01	2024-07-19	DEPARTMENT OF EDUCATION
\.


--
-- TOC entry 4585 (class 0 OID 0)
-- Dependencies: 255
-- Name: EmployeeTrainings_EmployeeTrainingId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"EmployeeTrainings_EmployeeTrainingId_seq"', 10173, true);


--
-- TOC entry 3878 (class 0 OID 16800)
-- Dependencies: 256
-- Data for Name: EmployeeViolations; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "EmployeeViolations" ("EmployeeViolationId", "EmployeeId", "ViolationId", "StartDateOfViolation", "SuspensionDays", "Fine", "IsDismissed", "EndDateOfViolation") FROM stdin;
\.


--
-- TOC entry 4586 (class 0 OID 0)
-- Dependencies: 257
-- Name: EmployeeViolations_EmployeeViolationId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"EmployeeViolations_EmployeeViolationId_seq"', 1, true);


--
-- TOC entry 3880 (class 0 OID 16805)
-- Dependencies: 258
-- Data for Name: EmployeeWeeklySchedules; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "EmployeeWeeklySchedules" ("EmployeeWeeklyScheduleId", "ScheduleTemplateId", "DayOfWeek", "StartTime", "EndTime", "NextDayOut", "IsOtDay") FROM stdin;
\.


--
-- TOC entry 4587 (class 0 OID 0)
-- Dependencies: 260
-- Name: EmployeeWeeklySchedulesMember_EmployeeWeeklySchedulesMember_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"EmployeeWeeklySchedulesMember_EmployeeWeeklySchedulesMember_seq"', 7181, true);


--
-- TOC entry 3881 (class 0 OID 16812)
-- Dependencies: 259
-- Data for Name: EmployeeWeeklySchedulesMembers; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "EmployeeWeeklySchedulesMembers" ("EmployeeWeeklySchedulesMemberId", "EmployeeId", "ScheduleTemplateId") FROM stdin;
\.


--
-- TOC entry 4588 (class 0 OID 0)
-- Dependencies: 261
-- Name: EmployeeWeeklySchedules_EmployeeWeeklyScheduleId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"EmployeeWeeklySchedules_EmployeeWeeklyScheduleId_seq"', 1718, true);


--
-- TOC entry 3884 (class 0 OID 16819)
-- Dependencies: 262
-- Data for Name: EmployeeWithholdingTaxes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "EmployeeWithholdingTaxes" ("EmployeeWithholdingTaxId", "EmployeeId", "EffectivityDate", "TaxAmount", "IsCancelled", "Percentage") FROM stdin;
\.


--
-- TOC entry 4589 (class 0 OID 0)
-- Dependencies: 263
-- Name: EmployeeWithholdingTaxes_EmployeeWithholdingTaxId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"EmployeeWithholdingTaxes_EmployeeWithholdingTaxId_seq"', 2295, true);


--
-- TOC entry 4590 (class 0 OID 0)
-- Dependencies: 264
-- Name: EmployeeWithholdingTaxes_EmployeeWithholdingTaxId_seq1; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"EmployeeWithholdingTaxes_EmployeeWithholdingTaxId_seq1"', 293, true);


--
-- TOC entry 3887 (class 0 OID 16827)
-- Dependencies: 265
-- Data for Name: Employees; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Employees" ("BasicInformationId", "EmployeeNumber", "EmployeeId", "BiometricId", "FingerprintDataString", "BiometricIdString", "FingerprintTemplateFilePath", "FingerprintBytes", "FingerprintDataKiosk") FROM stdin;
1	03010055	1	0	AwFLHwAAAAAAAAAA4ALgAuAC4ALgAvAC8ALwAvAC8Ab4Dv4e/j7//gAAAAAAAAAAAAAAAAAAAAB1BNj2EoXA/kMVGP5UmOs+ZJ1VXjknAp5aq5V+OrSAvlWUlz9eNpQ/VLnqP0c0l31IvRddNJSBukAd2foyl8MbPyIa0kY5LHIbBkAZSouYWUSOgJMulBo5OqCC00u41fA/jgFsLIaWrzoHls03jkJKVwYAyW+M1AddD1XmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=	0		\N	AwFLHwAAAAAAAAAA4ALgAuAC4ALgAvAC8ALwAvAC8Ab4Dv4e/j7//gAAAAAAAAAAAAAAAAAAAAB1BNj2EoXA/kMVGP5UmOs+ZJ1VXjknAp5aq5V+OrSAvlWUlz9eNpQ/VLnqP0c0l31IvRddNJSBukAd2foyl8MbPyIa0kY5LHIbBkAZSouYWUSOgJMulBo5OqCC00u41fA/jgFsLIaWrzoHls03jkJKVwYAyW+M1AddD1XmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
3599	10000001	2745	0				\N	\N
3600	10000002	2746	0				\N	\N
3634	10000003	2747	0				\N	\N
3601	10000004	2748	0				\N	\N
\.


--
-- TOC entry 4591 (class 0 OID 0)
-- Dependencies: 266
-- Name: Employees_EmployeeId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Employees_EmployeeId_seq"', 2748, true);


--
-- TOC entry 4592 (class 0 OID 0)
-- Dependencies: 267
-- Name: Employees_EmployeeSequence_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Employees_EmployeeSequence_seq"', 1937, true);


--
-- TOC entry 4593 (class 0 OID 0)
-- Dependencies: 268
-- Name: Employees_SeqId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Employees_SeqId_seq"', 1937, true);


--
-- TOC entry 3891 (class 0 OID 16844)
-- Dependencies: 269
-- Data for Name: EmploymentStatus; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "EmploymentStatus" ("EmploymentStatusId", "EmploymentStatusName", "Remarks", "IsRegular", "IsPlantilla", "WithBenefits", "IsUsingSalaryGrade", "IsUsingWitholdingTax", "TaxAmountPercentage") FROM stdin;
27	Emergency		f	f	f	f	t	0.00
1	Permanent		t	t	t	t	t	0.00
4	Substitute		f	t	t	t	f	0.00
5	Temporary		f	t	t	t	f	0.00
8	Probationary		f	t	f	f	f	0.00
10	Contract of Service	Based on contract	f	f	f	f	f	0.00
26	Volunteer		f	f	f	f	f	0.00
25	Contractual		f	f	f	f	f	0.00
6	Casual		t	t	t	t	t	0.00
3	Job Order		f	f	f	f	t	0.00
\.


--
-- TOC entry 3892 (class 0 OID 16850)
-- Dependencies: 270
-- Data for Name: EmploymentStatusPolicies; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "EmploymentStatusPolicies" ("EmploymentStatusPolicyId", "EmploymentStatus", "IsEnabled", "WithBenefits") FROM stdin;
7	Co-Terminous	f	f
1	Permanent	t	t
2	Contractual	t	f
8	Probationary	t	t
3	Job Order	t	f
5	Temporary	t	f
6	Casual	t	f
4	Substitute	f	f
\.


--
-- TOC entry 4594 (class 0 OID 0)
-- Dependencies: 271
-- Name: EmploymentStatusPolicies_EmploymentStatusPolicyId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"EmploymentStatusPolicies_EmploymentStatusPolicyId_seq"', 8, true);


--
-- TOC entry 4595 (class 0 OID 0)
-- Dependencies: 272
-- Name: EmploymentStatus_EmploymentStatusId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"EmploymentStatus_EmploymentStatusId_seq"', 28, true);


--
-- TOC entry 3895 (class 0 OID 16860)
-- Dependencies: 273
-- Data for Name: EvaluationAnswers; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "EvaluationAnswers" ("EvaluationAnswerId", "EvaluationId", "EvaluationQuestionId", "EmployeeId", "ActualAccomplishments", "QualityRate", "EfficiencyRate", "TimelinessRate", "Remarks") FROM stdin;
\.


--
-- TOC entry 4596 (class 0 OID 0)
-- Dependencies: 274
-- Name: EvaluationAnswers_EvaluationAnswerId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"EvaluationAnswers_EvaluationAnswerId_seq"', 244, true);


--
-- TOC entry 3897 (class 0 OID 16876)
-- Dependencies: 275
-- Data for Name: EvaluationDepartments; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "EvaluationDepartments" ("EvaluationDepartmentId", "DepartmentId", "EvaluationId") FROM stdin;
\.


--
-- TOC entry 4597 (class 0 OID 0)
-- Dependencies: 276
-- Name: EvaluationDepartments_EvaluationDepartmentId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"EvaluationDepartments_EvaluationDepartmentId_seq"', 1, false);


--
-- TOC entry 3899 (class 0 OID 16881)
-- Dependencies: 277
-- Data for Name: EvaluationEmployees; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "EvaluationEmployees" ("EvaluationEmployeeId", "EvaluationId", "EmployeeId", "Remarks", "NumericalRating", "SpecificQuarter") FROM stdin;
\.


--
-- TOC entry 4598 (class 0 OID 0)
-- Dependencies: 278
-- Name: EvaluationEmployees_EvaluationEmployeeId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"EvaluationEmployees_EvaluationEmployeeId_seq"', 112, true);


--
-- TOC entry 3901 (class 0 OID 16893)
-- Dependencies: 279
-- Data for Name: EvaluationIpcrItems; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "EvaluationIpcrItems" ("EvaluationIpcrItemId", "EvaluationQuestionId", "QuestionTypeId", "IpcrCode", "Question", "SuccessIndicator", "RateByQuality", "RateByEfficiency", "RateByTimeliness", "EmployeeId", "SpecificQuarter", "ActualAccomplishments", "QualityRate", "EfficiencyRate", "TimelinessRate", "Remarks", "QualityScore1", "QualityScore2", "QualityScore3", "QualityScore4", "QualityScore5", "EfficiencyScore1", "EfficiencyScore2", "EfficiencyScore3", "EfficiencyScore4", "EfficiencyScore5", "TimelinessScore1", "TimelinessScore2", "TimelinessScore3", "TimelinessScore4", "TimelinessScore5", "AverageRate") FROM stdin;
\.


--
-- TOC entry 4599 (class 0 OID 0)
-- Dependencies: 280
-- Name: EvaluationIpcrItems_EvaluationIpcrItemId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"EvaluationIpcrItems_EvaluationIpcrItemId_seq"', 1, false);


--
-- TOC entry 3903 (class 0 OID 16901)
-- Dependencies: 281
-- Data for Name: EvaluationOverallAnswers; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "EvaluationOverallAnswers" ("EvaluationOverallAnswerId", "EvaluationId", "EvaluationQuestionId", "AllottedBudget", "ActualAccomplishments", "QualityRate", "EfficiencyRate", "TimelinessRate", "Remarks") FROM stdin;
\.


--
-- TOC entry 4600 (class 0 OID 0)
-- Dependencies: 282
-- Name: EvaluationOverallAnswers_EvaluationOverallAnswerId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"EvaluationOverallAnswers_EvaluationOverallAnswerId_seq"', 1, false);


--
-- TOC entry 3905 (class 0 OID 16917)
-- Dependencies: 283
-- Data for Name: EvaluationQuestionTypes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "EvaluationQuestionTypes" ("Description", "Percentage", "EffectivityDate", "QuestionTypeId", "Title", "EvaluationDepartmentId") FROM stdin;
Strategic Priority	0.35	2016-09-01	1		0
Core Functions	0.50	2016-09-01	2		0
Support Functions	0.15	2016-09-01	3		0
\.


--
-- TOC entry 4601 (class 0 OID 0)
-- Dependencies: 284
-- Name: EvaluationQuestionTypes_QuestionTypeId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"EvaluationQuestionTypes_QuestionTypeId_seq"', 3, true);


--
-- TOC entry 3907 (class 0 OID 16927)
-- Dependencies: 285
-- Data for Name: EvaluationQuestions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "EvaluationQuestions" ("EvaluationQuestionId", "Question", "SuccessIndicator", "QuestionTypeId", "RateByQuality", "RateByEfficiency", "RateByTimeliness", "DpcrCode", "EmployeeId", "SpecificQuarter", "ActualAccomplishments", "QualityRate", "EfficiencyRate", "TimelinessRate", "Remarks", "EvaluationDepartmentId", "QualityScore1", "QualityScore2", "QualityScore3", "QualityScore4", "QualityScore5", "EfficiencyScore1", "EfficiencyScore2", "EfficiencyScore3", "EfficiencyScore4", "EfficiencyScore5", "TimelinessScore1", "TimelinessScore2", "TimelinessScore3", "TimelinessScore4", "TimelinessScore5", "AverageRate") FROM stdin;
\.


--
-- TOC entry 4602 (class 0 OID 0)
-- Dependencies: 286
-- Name: EvaluationQuestions_EvaluationQuestionId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"EvaluationQuestions_EvaluationQuestionId_seq"', 16, true);


--
-- TOC entry 3909 (class 0 OID 16946)
-- Dependencies: 287
-- Data for Name: EvaluationRateTypes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "EvaluationRateTypes" ("RateName", "RateNumber", "MinimumRate", "MaximumRate") FROM stdin;
Poor	1	0.00	1.49
Unsatisfactory	2	1.50	2.49
Satisfactory	3	2.50	3.49
Very Satisfactory	4	3.50	4.49
Outstanding	5	4.50	5.00
\.


--
-- TOC entry 3910 (class 0 OID 16954)
-- Dependencies: 288
-- Data for Name: EvaluationRatings; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "EvaluationRatings" ("RatingId", "EmployeeId", "EvaluatorPosition", "EvaluationId", "QualityRate", "EfficiencyRate", "TimeRate", "Remarks", "GroupNumber") FROM stdin;
\.


--
-- TOC entry 4603 (class 0 OID 0)
-- Dependencies: 289
-- Name: EvaluationRatings_RatingId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"EvaluationRatings_RatingId_seq"', 22, true);


--
-- TOC entry 3912 (class 0 OID 16962)
-- Dependencies: 290
-- Data for Name: Evaluations; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Evaluations" ("EvaluationId", "DateFrom", "DateTo", "EvaluationDate", "DepartmentId", "ReviewerEmployeeId", "ReviewerPositionId", "DateReviewed", "ApproverEmployeeId", "ApproverPositionId", "DateApproved", "AssessorEmployeeId", "AssessorPositionId", "DateAssessed", "ReassessedEmployeeId", "ReassessedPositionId", "DateReassessed", "FinalEmployeeId", "FinalPositionId", "DateFinalRated", "DateCalibrated", "Remarks", "DateCreated") FROM stdin;
\.


--
-- TOC entry 4604 (class 0 OID 0)
-- Dependencies: 291
-- Name: Evaluations_EvaluationId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Evaluations_EvaluationId_seq"', 34, true);


--
-- TOC entry 3914 (class 0 OID 16988)
-- Dependencies: 292
-- Data for Name: Events; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Events" ("EventId", "Title", "Date") FROM stdin;
\.


--
-- TOC entry 4605 (class 0 OID 0)
-- Dependencies: 293
-- Name: Events_EventId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Events_EventId_seq"', 11, true);


--
-- TOC entry 3916 (class 0 OID 16996)
-- Dependencies: 294
-- Data for Name: Expenses; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Expenses" ("ExpenseId", "ApprovedTripId", "GasOil", "Meal", "TollFee", "CPLoad", "LtoTmg") FROM stdin;
\.


--
-- TOC entry 4606 (class 0 OID 0)
-- Dependencies: 295
-- Name: Expenses_ExpenseId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Expenses_ExpenseId_seq"', 166, true);


--
-- TOC entry 3918 (class 0 OID 17001)
-- Dependencies: 296
-- Data for Name: Experiences; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Experiences" ("ExperienceId", "CompanyInstitution", "PositionHeld", "ReasonOfLeaving", "Status", "BasicInformationId", "FromDate", "ToDate", "MonthlySalary", "SalaryGradeAndStepIncrement", "IsGovernmentService", "AnnualSalary", "Remarks", "RateTypeName") FROM stdin;
9970	Accenture, Inc.	Accounts Receivable Analyst	Personal	Permanent	3598	2019-08-23	2022-03-30	0.00		f	0.00		Annual
9971	Batangas State University - Pablo Borbon Campus	Administrative Aide VI	Promotion	Job Order	3598	2022-04-18	2023-12-30	0.00		t	0.00		Annual
9972	ACCENTURE, INC.	ACCOUNTS RECEIVABLE ANALYST	PERSONAL	Permanent	3600	2019-08-23	2022-03-30	0.00		f	0.00		Annual
9973	BATANGAS STATE UNIVERSITY PABLO BORBON CAMPUS	ADMINISTRATIVE AIDE VI	PROMOTION	Job Order	3600	2022-04-18	2023-12-30	0.00		t	0.00		Annual
9974	DEPARTMENT OF EDUCATION 	ADMINISTRATIVE AIDE I		Permanent	3602	2024-01-01	2024-07-01	13,000.00	01-1	t	0.00		Monthly
9975	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3602	2023-01-01	2023-12-31	13,000.00	01-1	t	0.00		Monthly
9976	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3602	2022-01-01	2022-12-31	12,517.00	01-1	t	0.00		Monthly
9977	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3602	2021-08-16	2021-12-31	12,034.00	01-1	t	0.00		Monthly
9978	MS RACING MOTORCYCLE SHOP	PRIVATE DRIVER		Contractual	3602	2021-01-13	2021-08-16	10,400.00		f	0.00		Monthly
9982	DEPARTMNENT OF EDUCATION- DIVISION OF BATANGAS CITY	SECURITY GUARD I 		Permanent	3603	2023-03-01	2024-07-01	14,678.00	3-1	f	0.00		Monthly
9983	WORLD CUP SECURITY SERVICES INC.	SECURITY GUARD 		Contractual	3603	2018-11-08	2023-01-31	16,800.00		f	0.00		Monthly
9984	LEON FORCE SECURITY AND INVESTIGATION AGENCY	SECURITY GUARD		Contractual	3603	2016-11-08	2017-07-18	7,500.00		f	0.00		Monthly
9985	DEPARTMENT OF EDUCATION BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3604	2024-01-01	2024-07-01	21,388.00	09-2	t	0.00		Monthly
9986	DEPARTMENT OF EDUCATION BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3604	2023-01-01	2023-12-31	21,388.00	09-2	t	0.00		Monthly
9987	DEPARTMENT OF EDUCATION BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3604	2022-06-03	2022-12-31	20,572.00	09-2	t	0.00		Monthly
9988	DEPARTMENT OF EDUCATION BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3604	2022-01-01	2022-06-02	20,402.00	09-1	t	0.00		Monthly
9989	DEPARTMENT OF EDUCATION BATANGAS CITY	ADMINISTRATIVE ASSSITANT III		Permanent	3604	2021-01-01	2021-12-31	19,593.00	09-1	t	0.00		Monthly
9990	DEPARTMENT OF EDUCATION BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3604	2020-01-01	2020-12-31	18,784.00	09-1	t	0.00		Monthly
9991	DEPARTMENT OF EDUCATION BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3604	2019-06-03	2019-12-31	17,975.00	09-1	t	0.00		Monthly
9992	CASTORAMA MANINVEST SERVICES SPECIALISTS, INC.	AUDIT AND FINANCE ASSOCIATE		Permanent	3604	2018-01-29	2019-01-06	11,000.00		f	0.00		Monthly
9993	ASIAN MARINE TRANSPORT CORP.	HUMAN RESOURCE ASSISTANT		Casual	3604	2017-10-24	2018-01-28	8,500.00		f	0.00		Monthly
9994	DE TORRES ACCOUNTING SERVICES	CASHIER/BOOKKEEPER/BUSINESS CONSULTANT		Permanent	3604	2016-02-06	2017-10-21	10,000.00		f	0.00		Monthly
9995	CARMEL SCHOOL OF BATANGAS, INC.	ACCOUNTING OFFICER IN CHARGE		Permanent	3604	2010-08-16	2016-05-31	19,850.00		f	0.00		Monthly
9996	CARMEL SCHOOL OF BATANGAS, INC.	ACTING HUMAN RESOURCE OFFICER		Permanent	3604	2012-01-06	2016-05-31	19,850.00		f	0.00		Monthly
9997	ASIAN TERMINALS, INC.	ACCOUNTING ASSISTANT (JUNIOR BOOK KEEPER)		Permanent	3604	2010-04-16	2010-08-13	10,000.00		f	0.00		Monthly
9998	CARMEL SCHOOL OF BATANGAS, INC.	ACCOUNTING ASSISTANT		Permanent	3604	2009-01-09	2010-04-15	8,500.00		f	0.00		Monthly
9999	SAN ISIDRO VILLAGE HOME OWNERS ASSOCIATION, INC.	BOOKKEEPER		Casual	3604	2008-12-15	2009-08-31	10,000.00		f	0.00		Monthly
10000	PEREZ, CABRAL, VALENCIA & CO.	ACCOUNTING STAFF		Probationary	3604	2008-10-15	2008-12-14	8,000.00		f	0.00		Monthly
10001	PABULUM CREDIT ENTERPRISES	ACCOUNTING CLERK PROMOTED TO BOOKKEEPER/LEGAL SECRETARY		Permanent	3604	1997-05-11	2008-10-14	7,500.00		f	0.00		Monthly
10002	ACCOUNTING UNIT/ DEPARTMENT OF EDUCATION BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3607	2023-07-06	2024-07-01	21,211.00	09-1	t	0.00		Monthly
10003	ACCOUNTING DEPARTMENT/ BATANGAS STATE UNIVERSITY ALANGILAN CAMPUS	ADMINISTRATIVE AIDE VI		Job Order	3607	2023-01-03	2023-06-28	20,252.32	06-1	t	0.00		Monthly
10004	ACCOUNTING DEPARTMENT/ BATANGAS STATE UNIVERSITY ALANGILAN CAMPUS	ADMINISTRATIVE AIDE VI		Job Order	3607	2022-06-09	2022-12-31	20,252.32	06-1	t	0.00		Monthly
10005	ACCOUNTING DEPARTMENT/ BATANGAS STATE UNIVERSITY ALANGILAN	ADMINISTRATIVE AIDE VI		Job Order	3607	2022-01-03	2022-06-03	20,252.32	06-1	t	0.00		Monthly
10006	ACCOUNTING DEPARTMENT/ BATANGAS STATE UNIVERSITY ALANGILAN CAMPUS	ADMINISTRATIVE AIDE VI		Job Order	3607	2021-08-24	2021-12-31	19,439.20	06-1	t	0.00		Monthly
10007	ACCOUNTING DEPARTMENT/ BATANGAS STATE UNIVERSITY ALANGILAN CAMPUS	ADMINISTRATIVE AIDE VI		Job Order	3607	2021-03-16	2021-08-16	19,439.20	06-1	t	0.00		Monthly
10008	BUSINESS DEVELOPMENT DEPARTMENT/ MONTENEGRO SHIPPING LINES, INC.	FINANCE SUPERVISOR		Permanent	3607	2020-02-01	2020-10-23	16,000.00		f	0.00		Monthly
10009	ACCOUNTING DEPARTMENT / MONTENEGRO SHIPPING LINES, INC. 	ACCOUNTING CLERK		Permanent	3607	2017-10-12	2022-01-01	12,000.00		f	0.00		Monthly
10010	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3608	2021-07-07	2024-07-01	19,757.00	09-2	t	0.00		Monthly
10011	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3608	2018-07-07	2021-07-06	18,784.00	09-1	t	0.00		Monthly
10012	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY	ADMINISTRATIVE ASSISTANT II		Permanent	3608	2017-02-15	2018-07-06	15,818.00	08-1	t	0.00		Monthly
10013	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY	ADMINISTRATIVE AIDE IV		Job Order	3608	2014-06-04	2016-02-14	10,582.00		f	0.00		Monthly
10014	AMA COMPUTER LEARNING CENTER- BATANGAS CAMPUS	ASSISTANT INSTRUCTOR I		Contractual	3608	2010-12-04	2014-03-27	10,000.00		f	0.00		Monthly
10015	SDO BATANGAS CITY 	PROJECT DEVELOPMENT OFFICER I 		Permanent	3609	2024-01-01	2024-07-01	27,000.00	11-1	t	0.00		Monthly
10016	SDO BATANGAS CITY 	ADMINISTRATIVE ASSISTANT II 		Permanent	3609	2023-01-01	2024-01-07	21,567.00	9-3	t	0.00		Monthly
10017	SDO BATANGAS  CITY 	ADMINISTRATIVE ASSISTANT III 		Permanent	3609	2022-12-01	2022-12-31	20,745.00	9-3	t	0.00		Monthly
10018	SDO BATANGAS CITY 	ADMINISTRATIVE ASSISTANT III 		Permanent	3609	2022-01-01	2022-11-30	20,572.00	9-2	t	0.00		Monthly
10019	SDO BATANGAS CITY 	ADMINISTRATIVE ASSISTANT III		Permanent	3609	2021-01-01	2021-12-31	19,757.00	9-2	t	0.00		Monthly
10020	SDO BATANGAS CITY 	ADMINISTRATIVE ASSISTANT III 		Permanent	3609	2020-01-01	2020-12-31	18,941.00	9-2	t	0.00		Monthly
10021	SDO BATANGAS CITY 	ADMINISTRATIVE ASSISTANT III 		Permanent	3609	2019-12-01	2019-12-31	18,125.00	9-2	t	0.00		Monthly
10022	SDO BATANGAS CITY 	ADMINISTRATIVE ASSISTANT III		Permanent	3609	2019-01-01	2019-12-31	17,975.00	9-1	t	0.00		Monthly
10023	SDO BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3609	2018-01-01	2018-12-31	17,473.00	9-1	t	0.00		Monthly
10024	SDO BATANGAS CITY 	ADMINISTRATIVE ASSISTANT III		Permanent	3609	2017-01-01	2017-12-31	16,986.00	9-1	t	0.00		Monthly
10025	SDO BATANGAS CITY 	ADMINISTRATIVE ASSISTANT III		Permanent	3609	2016-12-01	2016-12-31	16,512.00	9-1	t	0.00		Monthly
10026	SDO BATANGAS CITY	ADMINISTRATIVE ASSISTANT II		Permanent	3609	2016-01-01	2016-11-30	15,368.00	8-1	t	0.00		Monthly
10027	SDO BATANGAS CITY 	ADMINISTRATIVE ASSISTANT II 		Permanent	3609	2015-06-01	2015-12-31	14,931.00	8-1	t	0.00		Monthly
10028	GOLDEN BAY GRAIN TERMINAL CORP 	ACCOUNTING ASSISTANT  		Casual	3609	2013-09-16	2015-05-31	17,000.00		f	0.00		Monthly
10029	CITIMART GROUP OF COMPANIES 	SENIOR ACCOUNTANT		Casual	3609	2008-10-04	2023-12-09	12,000.00		f	0.00		Monthly
10030	DEPARTMENT OF EDUCATION BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3610	2020-10-21	2024-07-02	0.00	09-1	t	0.00		Monthly
10031	DEPARTMENT OF EDUCATION BATANGAS CITY	ADMINISTRATIVE ASSISTANT II		Permanent	3610	2019-03-18	2022-10-20	0.00	08-1	t	0.00		Monthly
10032	PHILIPPINE HEALTH INSURANCE CORPORATION	DATA CONTROLLER II		Job Order	3610	2018-09-17	2019-08-03	0.00	08-1	t	0.00		Monthly
10033	STO. ROSARIO HOSPITAL	ASSISTANT CASHIER		Permanent	3610	2018-02-14	2018-09-15	9,000.00		f	0.00		Monthly
10034	SHALOM MEDICAL DIAGNOSTIC LABORATORY	ACCOUNTING CLERK		Permanent	3610	2017-08-15	2017-09-12	6,000.00		f	0.00		Monthly
10035	SDO-BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3611	2024-01-01	2024-07-02	21,388.00		t	0.00		Monthly
10036	SDO-BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3611	2023-01-01	2023-12-31	20,572.00		t	0.00		Monthly
10037	SDO-BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3611	2022-01-01	2022-12-31	19,757.00		t	0.00		Monthly
10038	SDO-BATANGAS CITY	ADMINISTRATIVE ASSISTSNAT III		Permanent	3611	2021-01-01	2021-12-31	19,757.00		t	0.00		Monthly
10039	SDO-BATANGAS PROVINCE	ADMINISTRATIVE ASSISTANT III		Permanent	3611	2020-11-03	2020-12-31	18,941.00		t	0.00		Monthly
10040	SDO-BATANGAS PROVINCE	ADMINISTRATIVE ASSISTANT III		Permanent	3611	2020-01-01	2020-11-02	18,941.00		t	0.00		Monthly
10041	SDO-BATANGAS PROVINCE	ADMINISTRATIVE ASSISTANT III		Permanent	3611	2019-01-01	2019-12-31	18,125.00		t	0.00		Monthly
10042	SDO-BATANGAS PROVINCE	ADIMISTRATIVE ASSISTANT III		Permanent	3611	2018-01-01	2018-12-31	17,627.00		t	0.00		Monthly
10043	SDO-BATANGAS PROVINCE	ADMINISTRATIVE ASSISTANT III		Permanent	3611	2017-01-01	2017-12-31	17,145.00		t	0.00		Monthly
10044	SDO-BATANGAS PROVINCE	ADMINISTRATIVE ASSISTANT III		Permanent	3611	2014-09-10	2016-12-30	16,512.00		t	0.00		Monthly
10045	SDO-BATANGAS PROVINCE	ADMINISTRATIVE AIDE IV		Permanent	3611	2013-01-01	2014-09-09	11,405.00		t	0.00		Monthly
10046	SDO-BATANGAS PROVINCE	ADMINISTRATIVE AIDE IV		Permanent	3611	2012-06-01	2012-12-31	11,405.00		t	0.00		Monthly
10047	SDO-BATANGAS PROVINCE	ADMINISTRATIVE AIDE IV		Permanent	3611	2011-06-01	2012-05-31	10,626.00		t	0.00		Monthly
10048	SDO-BATANGAS PROVINCE	CLERK II		Permanent	3611	2010-06-24	2011-05-31	9,848.00		t	0.00		Monthly
10049	SDO-BATANGAS PROVINCE	CLERK II		Permanent	3611	2009-07-01	2010-06-23	9,069.00		t	0.00		Monthly
10050	SDO-BATANGAS PROVINCE	CLERK II		Permanent	3611	2008-07-01	2009-06-30	8,290.00		t	0.00		Monthly
10051	SDO-BATANGAS PROVINCE	CLERK II		Permanent	3611	2007-07-01	2008-06-30	7,536.00		t	0.00		Monthly
10052	SDO-BATANGAS PROVINCE	CLERK II		Permanent	3611	2006-03-01	2007-06-30	6,851.00		t	0.00		Monthly
10053	SDO-BATANGAS PROVINCE	CLERK II		Permanent	3611	2003-09-01	2006-02-28	6,684.00		t	0.00		Monthly
10054	SDO-BATANGAS PROVINCE	CLERK II		Permanent	3611	2001-07-01	2003-08-31	6,522.00		t	0.00		Monthly
10055	SDO-BATANGAS PROVINCE	CLERK II		Permanent	3611	2000-01-01	2001-06-30	6,211.00		t	0.00		Monthly
10056	SDO-BATANGAS PROVINCE	CLERK II		Permanent	3611	1999-12-10	1999-12-31	5,646.00		t	0.00		Monthly
10057	DEPARTMENT OF EDUCATION	ADMINISTRATIVE ASSISTANT II		Permanent	3612	2022-10-21	2024-07-02	19,744.00	08-1	t	0.00		Monthly
10058	DEPARTMENT OF EDUCATION	JOB ORDER		Contractual	3612	2021-11-08	2022-10-20	12,790.00		t	0.00		Monthly
10059	WATSONS	STORE INVENTORY CLERK		Contractual	3612	2021-06-02	2021-11-07	9,698.00		f	0.00		Monthly
10060	SALESFORCE ONE MARKETING	WAREHOUSE PICKER		Contractual	3612	2020-12-19	2021-03-08	9,698.00		f	0.00		Monthly
10061	KALAYAAN ENGINEERING COMPANY, INCORPORATED	HELPER/ PIPEFITTER		Contractual	3612	2018-04-11	2018-12-30	13,312.00		f	0.00		Monthly
10064	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3614	2020-10-27	2024-07-02	0.00	09-1	t	0.00		Monthly
10065	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY	ADMINISTRATIVE AIDE VI		Permanent	3614	2018-12-03	2020-10-26	0.00	06-1	t	0.00		Monthly
10066	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY	CONTRACT OF SERVICE (OFFICE CLERK)		Contractual	3614	2018-09-01	2018-11-30	0.00		t	0.00		Monthly
10067	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY	JOB ORDER (OFFICE CLERK)		Job Order	3614	2017-11-13	2018-08-31	0.00		t	0.00		Monthly
10068	CITY GOVERNMENT OF BATANGAS	ADMINISTRATIVE AIDE III		Job Order	3614	2017-07-03	2017-11-10	0.00		t	0.00		Monthly
10069	DEPARTMENT OF EDUCATION -SDO BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3613	2023-07-06	2024-07-02	21,211.00		t	0.00		Monthly
10070	ROSALINA IRINEO ,CPA ACCOUNTING OFFICE 	SENIOR ACCOUNTING ASSOCIATE 		Permanent	3613	2014-06-01	2023-05-30	19,000.00		f	0.00		Monthly
10071	ORIX METRO LEASING AND FINANCE CORP.	POOL SALES ADMIN		Permanent	3613	2013-02-06	2013-12-31	12,200.00		f	0.00		Monthly
10062	DEPARTMENT OF EDUCATION, SDO BATANGAS CITY	ACCOUNTANT III 		Permanent	3606	2015-05-25	2024-07-02	52,847.00	19-3	t	0.00		Monthly
10063	DEPARTMENT OF EDUCATION, SDO BATANGAS CITY	ACCOUNTANT II 		Casual	3606	1999-05-14	2024-07-02	0.00		t	0.00		Annual
10072	SCHOOLS DIVISION OF BATANGAS CITY	PROJECT DEVELOPMENT OFFICER I		Permanent	3615	2023-08-01	2024-07-02	27,000.00	11-1	t	0.00		Monthly
10073	SCHOOLS DIVISION OF BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3615	2023-01-01	2023-07-01	21,388.00	9-2	t	0.00		Monthly
10074	SCHOOLS DIVISION OF BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3615	2022-03-25	2022-12-31	22,072.00	9-2	t	0.00		Monthly
10075	SCHOOLS DIVISION OF BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3615	2022-01-01	2022-03-24	20,402.00	9-1	t	0.00		Monthly
10076	SCHOOLS DIVISION OF BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3615	2021-01-01	2021-12-31	19,593.00	9-1	t	0.00		Monthly
10077	SCHOOLS DIVISION OF BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3615	2020-01-01	2020-12-31	18,784.00	9-1	t	0.00		Monthly
10078	SCHOOLS DIVISION OF BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3615	2019-03-25	2019-12-31	17,975.00	9-1	t	0.00		Monthly
10083	ROSALINA IRINEO, CPA ACCOUNTING OFFICE 	ACCOUNTING ASSOCIATE		Permanent	3613	2012-05-01	2013-01-31	7,500.00		f	0.00		Monthly
10079	AMA COMPUTER COLLEGE- BATANGAS CITY	CASHIER		Permanent	3615	2019-03-22	2021-10-27	9,000.00		f	0.00		Monthly
10080	KHORKALBA MARINE SERVICES	ACCOUNTS ASSISTANT GENERAL		Permanent	3615	2012-03-14	2016-12-21	42,000.00		f	0.00		Monthly
10081	MBC PAWNSHOP	ACCOUNTING STAFF		Probationary	3615	2011-01-08	2012-02-28	8,000.00		f	0.00		Monthly
10082	STAFF ALLIANCE INC. - BDO UNIBANK	MARKETING STAFF		Contractual	3615	2011-08-07	2011-09-02	8,000.00		f	0.00		Monthly
10084	SDO BATANGAS CITY	ADMINISTRATIVE ASSISTANT I		Permanent	3616	2015-05-25	2024-07-02	18,907.00	07-2	t	0.00		Monthly
10085	SDO BATANGAS CITY	ADMINISTRATIVE AIDE IV		Permanent	3616	2004-03-01	2015-05-24	11,635.00	06-4	t	0.00		Monthly
10086	SDO BATANGAS CITY	CLERK II		Permanent	3616	2001-06-13	2004-02-29	6,582.00		t	0.00		Monthly
10087	SDO BATANGAS CITY	CLERK I		Permanent	3616	1994-07-04	2001-06-12	5,751.00		t	0.00		Monthly
10088	SDO BATANGAS CITY	UTILITY WORKER		Permanent	3616	1987-04-01	1994-07-03	2,000.00		t	0.00		Monthly
10089	SDO BATANGAS CITY	LABORER		Permanent	3616	1986-10-20	1987-03-03	489.72		t	0.00		Monthly
10090	DEPARTMENT OF EDUCATION 	ADMINISTRATIVE AIDE I 		Permanent	3617	2023-01-03	2024-07-02	13,000.00	0-1	t	0.00		Monthly
10091	BATANGAS CITY GIRL SCOUT COUNCIL 	JANITOR / MESSENGER 		Contractual	3617	2009-10-10	2023-02-28	9,000.00		f	0.00		Monthly
10092	BATANGAS CITY EAST ELEMENTARY SCHOOL 	JANITOR 		Contractual	3617	2009-01-06	2009-10-10	4,000.00		f	0.00		Monthly
10093	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3618	2024-01-01	2024-07-02	13,000.00	1-1	t	0.00		Monthly
10094	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE 1		Permanent	3618	2023-06-03	2023-12-31	13,000.00	1-1	t	0.00		Monthly
10095	DEPED 	ADMINISTRATIVE AIDE I		Permanent	3619	2022-03-21	2024-07-02	13,000.00		t	0.00		Monthly
10096	CITY MAYOR'S OFFICE	ADMININISTRATIVE AIDE III		Contractual	3619	2022-01-17	2022-03-19	8,000.00		t	0.00		Monthly
10097	ACE INTERNATIONAL CONSULTING ENGINEERS (UAE) 	OFFICE BOY		Contractual	3619	2015-08-18	2021-03-16	30,000.00		f	0.00		Monthly
10098	CITY MAYOR'S OFFICE 	BOOKBINDER I		Job Order	3619	2011-01-05	2013-12-31	7,000.00		t	0.00		Annual
10099	CITY MAYOR'S OFFICE	BOOKBINDER I		Job Order	3619	2010-01-18	2010-12-31	5,000.00		t	0.00		Monthly
10100	DEPARTMENT OF EDUCATION BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3621	2024-01-01	2024-07-03	21,388.00	09-2	t	0.00		Monthly
10101	DEPARTMENT OF EDUCATION BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3621	2023-01-01	2023-12-31	21,388.00	09-2	t	0.00		Monthly
10102	DEPARTMENT OF EDUCATION BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3621	2022-06-03	2022-12-31	20,572.00	09-2	t	0.00		Monthly
10103	DEPARTMENT OF EDUCATION BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3621	2022-01-01	2022-06-02	20,402.00	09-1	t	0.00		Monthly
10104	DEPARTMENT OF EDUCATION BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3621	2021-01-01	2021-12-31	19,593.00	09-1	t	0.00		Monthly
10105	DEPARTMENT OF EDUCATION BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3621	2020-01-01	2020-12-31	18,784.00	09-1	t	0.00		Monthly
10106	DEPARTMENT OF EDUCATION BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3621	2019-06-03	2019-12-31	17,975.00	09-1	t	0.00		Monthly
10107	DEPARTMENT OF EDUCATION III	JOB ORDER		Job Order	3621	2017-07-01	2019-05-01	7,700.00		t	0.00		Monthly
10108	DEPARTMENT OF EDUCATION ( SCHOOLS DIVISION OF BATANGAS CITY) 	ADMINISTRATIVE AIDE IV		Permanent	3620	2023-08-14	2024-07-03	17,553.00	6-	t	0.00		Monthly
10109	BATANGAS CITY INTEGRATED HIGH SCHOOL 	ADMINISTRATIVE AIDE III		Job Order	3620	2023-04-03	2023-08-13	14,678.00	3-	t	0.00		Monthly
10110	MAPTAN CONSTRUCTION AND LOGISTICS INC	MONITORING CLERK		Permanent	3620	2012-09-06	2023-04-28	11,154.00		t	0.00		Monthly
10111	DEPARTMENT OF EDUCATION BATANGAS CITY	JOB ORDER		Contractual	3622	2024-01-17	2024-07-03	0.00		t	0.00		Monthly
10112	NATIONAL OIWELL VARCO GRANT PRIDECO-ABU DHABI UAE	WELDLINE OPERATOR, CNC LATHE OPERATOR, STRESS RELLIEF OPERATOR, AUSTENIZING		Contractual	3622	2012-01-01	2016-12-31	0.00		f	0.00		Monthly
10113	JAYHAWK SECURITY AGENCY- TRITAN, JAM TERMINAL	SECURITY OFFICER		Contractual	3622	2009-01-01	2009-12-31	0.00		f	0.00		Monthly
10114	DEPARTMENT OF EDUCATION BATANGAS CITY 	ADMINISTRATIVE OFFICER II 		Permanent	3623	2024-01-08	2024-07-03	27,000.00	11-1	t	0.00		Monthly
10115	PERSONNEL UNIT / DEPARTMENT OF EDUCATION BATANGAS CITY 	ADMINISTRATIVE ASSISTANT III		Permanent	3623	2024-01-01	2024-01-07	21,211.00	9-1	t	0.00		Monthly
10116	PERSONNEL UNIT / DEPARTMENT OF EDUCATION BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3623	2023-01-01	2023-12-31	21,211.00	9-1	t	0.00		Monthly
10117	PERSONNEL UNIT / DEPARTMENT OF EDUCATION BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3623	2022-01-01	2022-12-31	20,402.00	9-1	t	0.00		Monthly
10118	PERSONNEL UNIT / DEPARTMENT OF EDUCATION BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3623	2021-11-23	2021-12-31	19,593.00	9-1	t	0.00		Monthly
10119	ACCOUNTING / BATANGAS STATE UNIVERSITY 	ADMINISTRATIVE ASSISTANT II		Job Order	3623	2021-08-01	2021-11-19	21,901.00	8-1	t	0.00		Monthly
10120	ACCOUNTING / BATANGAS STATE UNIVERSITY	ADMINISTRATIVE AIDE VI		Job Order	3623	2021-01-04	2021-07-31	19,439.00	6-1	t	0.00		Monthly
10121	ACCOUNTING / BATANGAS STATE UNIVERSITY	ADMINISTRATIVE AIDE VI 		Job Order	3623	2020-01-02	2020-12-31	18,629.00	6-1	t	0.00		Monthly
10122	ACCOUNTING / BATANGAS STATE UNIVERSITY	ADMINISTRATIVE AIDE VI 		Job Order	3623	2019-01-03	2019-12-31	17,816.00	6-1	t	0.00		Monthly
10123	ACCOUNTING / BATANGAS STATE UNIVERSITY	ADMINISTRATIVE AIDE VI 		Job Order	3623	2018-01-01	2018-12-31	14,340.00	6-1	t	0.00		Monthly
10124	ACCOUNTING / BATANGAS STATE UNIVERSITY	ADMINISTRATIVE AIDE VI 		Job Order	3623	2017-01-01	2017-12-31	14,000.00	6-1	t	0.00		Monthly
10125	ACCOUNTING / BATANGAS STATE UNIVERSITY	ADMINISTRATIVE AIDE VI 		Job Order	3623	2016-01-01	2016-12-31	13,000.00	6-1	t	0.00		Monthly
10126	ACCOUNTING / BATANGAS STATE UNIVERSITY	ADMINISTRATIVE AIDE VI 		Job Order	3623	2015-05-27	2015-12-31	12,000.00	6-1	t	0.00		Monthly
10127	ALANGILAN CENTRAL ELEMENTARY SCHOOL	PROJECT DEVELOPMENT OFFICER I		Permanent	3624	2024-01-08	2024-07-03	27,000.00	11-1	t	0.00		Monthly
10128	DEPARTMENT OF EDUCATION BATANGAS CITY	ADMINISTRATIVE AIDE VI		Permanent	3624	2020-12-05	2024-01-07	17,553.00	6-1	t	0.00		Monthly
10129	BATANGAS CITY INTEGRATED HIGH SCHOOL	ADMINISTRATIVE AIDE III		Permanent	3624	2021-02-08	2022-12-04	13,572.00	3-1	t	0.00		Monthly
10130	BATANGAS MEDICAL CENTER/PROCUREMENT SECTION	ADMINISTRATIVE ASSSISTANT II		Contractual	3624	2021-01-01	2021-01-31	17,505.00	8-1	t	0.00		Monthly
10131	BATANGAS MEDICAL CENTER/ PROCUREMENT SECTION	ADMINISTRATIVE ASSISTANT II		Contractual	3624	2020-12-01	2020-12-21	17,505.00	8-1	t	0.00		Monthly
10132	BATANGAS MEDICAL CENTER/ PROCUREMENT SECTION	ADMINISTRATIVE ASSISTANT II		Contractual	3624	2020-09-01	2020-11-30	17,505.00	8-1	t	0.00		Monthly
10133	BATANGAS MEDICAL CENTER/ PROCUREMENT SECTION	ADMINISTRATIVE AIDE IV		Contractual	3624	2020-06-01	2020-08-31	13,807.00	4-1	t	0.00		Monthly
10134	CASTORAMA MANINVEST SERVICES SPECIALIST INCORPORATED	HUMAN RESOURCE ASSISTANT		Permanent	3624	2019-05-06	2020-01-31	12,000.00		f	0.00		Monthly
10135	CASTORAMA MANINVEST SERVICES SPECIALIST INCORPORATED	HUMAN RESOURCE STAFF		Probationary	3624	2019-02-06	2019-05-06	10,000.00		f	0.00		Monthly
10136	DEPARTMENT OF EDUCATION- BATANGAS CITY	ADMINISTRATIVE AIDE I		Permanent	3626	2023-03-01	2024-07-03	13,000.00	1-1	t	0.00		Monthly
10137	DEPARTMENT OF EDUCATION- BATANGAS CITY	ADMINISTRTAIVE AIDE I		Job Order	3626	2023-01-01	2023-02-28	12,034.00		f	0.00		Monthly
10138	DEPARTMENT OF EDUCATION- BATANGAS CITY	ADMINISTRATIVE AIDE I		Job Order	3626	2022-01-01	2022-12-31	12,034.00		f	0.00		Monthly
10139	DEPARTMENT OF EDUCATION- BATANGAS CITY	ADMINISTRATIVE AIDE I		Job Order	3626	2021-01-01	2021-12-31	12,034.00		f	0.00		Monthly
10140	DEPARTMENT OF EDUCATION- BATANGAS CITY	ADMINISTRATIVE AIDE		Job Order	3626	2020-01-01	2020-12-31	450.00		f	0.00		Daily
10141	DEPARTMENT OF EDUCATION- BATANGAS CITY	ADMINISTRATIVE AIDE I		Job Order	3626	2019-01-01	2019-12-31	450.00		f	0.00		Daily
10142	DEPARTMENT OF EDUCATION- BATANGAS CITY	ADMINISTRATIVE AIDE I		Job Order	3626	2018-01-01	2018-12-31	350.00		f	0.00		Daily
10143	DEPARTMENT OF EDUCATION- BATANGAS CITY	ADMINISTRATIVE AIDE I		Job Order	3626	2017-01-01	2017-12-31	350.00		f	0.00		Daily
10144	DEPARTMENT OF EDUCATION- BATANGAS CITY	ADMINISTRATIVE AIDE I		Job Order	3626	2016-01-11	2016-12-31	350.00		f	0.00		Daily
10145	DEPARTMENT OF EDUCATION BATANGAS CITY	ADMINISTRATIVE AIDE I		Permanent	3627	2024-01-01	2024-07-03	13,000.00	1-1	t	0.00		Monthly
10146	DEPARTMENT OF EDUCATION BATANGAS CITY	ADMINITRATIVE AIDE 1		Permanent	3627	2023-03-01	2023-12-31	13,000.00	1-1	t	0.00		Monthly
10147	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3625	2024-01-01	2024-07-03	13,000.00	1-1	t	0.00		Monthly
10148	DEPARMNT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3625	2023-01-01	2023-02-28	13,000.00	1-1	t	0.00		Monthly
10149	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Job Order	3625	2022-01-01	2022-12-31	12,034.00		t	0.00		Monthly
10150	DEPARMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Job Order	3625	2021-01-31	2021-12-31	12,034.00		t	0.00		Monthly
10151	DEPARMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Job Order	3625	2020-01-01	2020-12-31	450.00		t	0.00		Daily
10152	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Job Order	3625	2020-01-01	2020-12-31	450.00		t	0.00		Daily
10153	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Job Order	3625	2019-01-01	2019-12-31	450.00		t	0.00		Daily
10154	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Job Order	3625	2018-01-01	2018-12-31	350.00		t	0.00		Daily
10155	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Job Order	3625	2017-01-01	2017-12-31	350.00		t	0.00		Daily
10156	DEPARTMENT OF EDUCATION 	ADMINISTRATIVE AIDE I		Job Order	3625	2016-01-11	2016-12-31	350.00		t	0.00		Daily
10157	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Job Order	3625	2015-03-15	2015-12-31	350.00		t	0.00		Daily
10158	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE 1		Permanent	3628	2024-01-01	2024-07-03	13,000.00	1-1	t	0.00		Monthly
10159	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3628	2023-03-20	2023-12-31	13,000.00	1-1	t	0.00		Monthly
10160	TINGA ITAAS RURAL WATERWORKS AND SANITATION ASSOCIATION	MAINTENANCE		Contractual	3628	2006-05-02	2023-02-28	4,000.00		f	0.00		Monthly
10161	DEPARTMENT OF EDUCATION 	ADMINISTRATIVE AIDE I 		Permanent	3629	2024-01-01	2024-07-03	13,000.00	1-1	t	0.00		Monthly
10162	DEPARTMENT OF EDUCATION 	ADMINISTRATIVE AIDE I 		Permanent	3629	2023-03-01	2023-12-31	13,000.00	1-1	t	0.00		Monthly
10163	DEPARTMENT OF EDUCATION 	ADMINISTRATIVE AIDE I 		Job Order	3629	2023-01-01	2023-02-28	12,034.00		t	0.00		Monthly
10164	DEPARTMENT OF EDUCATION 	ADMINISTRATIVE AIDE I 		Job Order	3629	2022-01-01	2022-12-31	12,034.00		t	0.00		Monthly
10165	DEPARTMENT OF EDUCATION 	ADMINISTRATIVE AIDE I 		Job Order	3629	2021-01-01	2021-12-31	12,034.00		t	0.00		Monthly
10166	DEPARTMENT OF EDUCATION 	ADMINISTRATIVE AIDE I 		Job Order	3629	2020-01-01	2020-12-31	450.00		t	0.00		Daily
10167	DEPARTMENT OF EDUCATION 	ADMINISTRATIVE AIDE I 		Job Order	3629	2019-01-01	2019-12-31	450.00		t	0.00		Daily
10168	DEPARTMENT OF EDUCATION 	ADMINISTRATIVE AIDE I 		Job Order	3629	2018-01-01	2018-12-31	350.00		t	0.00		Daily
10169	DEPARTMENT OF EDUCATION 	ADMINISTRATIVE AIDE I 		Job Order	3629	2017-01-01	2017-12-31	350.00		t	0.00		Monthly
10170	DEPARTMENT OF EDUCATION 	ADMINISTRATIVE AIDE I 		Job Order	3629	2016-01-01	2016-12-31	350.00		t	0.00		Daily
10171	DEPARTMENT OF EDUCATION 	ADMINISTRATIVE AIDE I 		Job Order	3629	2015-03-15	2015-12-31	350.00		t	0.00		Daily
10172	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY 	ADMINISTRATIVE AIDE I		Permanent	3630	2023-01-01	2024-07-04	13,780.00	1-8	t	0.00		Monthly
10173	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY	ADMINISTRATIVE AIDE I 		Permanent	3630	2022-02-01	2022-12-31	13,268.00	1-8	t	0.00		Monthly
10174	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY	ADMINISTRATIVE AIDE I 		Permanent	3630	2021-02-01	2022-01-31	12,756.00	1-7	t	0.00		Monthly
10175	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY	ADMINISTRATIVE AIDE I 		Permanent	3630	2020-03-01	2021-01-31	12,244.00	1-7	t	0.00		Monthly
10176	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY	ADMINISTRATIVE AIDE I 		Permanent	3630	2019-12-01	2020-02-29	11,732.00	1-7	t	0.00		Monthly
10177	DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT 	ADMINISTRATIVE AIDE I		Permanent	3630	2019-05-01	2019-11-30	11,635.00	1-7	t	0.00		Monthly
10178	DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT	ADMINISTRATIVE AIDE I 		Permanent	3630	2019-01-01	2019-04-30	11,076.00	1-7	t	0.00		Monthly
10179	DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT	ADMINISTRATIVE AIDE I 		Permanent	3630	2018-01-01	2018-12-31	11,076.00	1-7	t	0.00		Monthly
10180	DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT	ADMINISTRATIVE AIDE I 		Permanent	3630	2017-01-01	2017-12-31	10,543.00	1-7	t	0.00		Monthly
10181	DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT	ADMINISTRATIVE AIDE I		Permanent	3630	2016-03-01	2016-12-31	9,949.00	1-6	t	0.00		Monthly
10182	DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT	ADMINISTRATIVE AIDE I		Permanent	3630	2014-01-01	2016-02-29	9,459.00	1-6	t	0.00		Monthly
10183	DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT	ADMINISTRATIVE AIDE I		Permanent	3630	2012-06-01	2013-12-31	9,365.00	1-5	t	0.00		Monthly
10184	DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT	ADMINISTRATIVE AIDE I		Permanent	3630	2011-06-01	2012-05-31	8,721.00	1-5	t	0.00		Monthly
10185	DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT	ADMINISTRATIVE AIDE I		Permanent	3630	2010-12-02	2011-05-31	8,077.00	1-5	t	0.00		Monthly
10186	DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT	ADMINISTRATIVE AIDE I		Permanent	3630	2010-04-24	2010-12-01	7,947.00	1-4	t	0.00		Monthly
10187	DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT	ADMINISTRATIVE AIDE I		Permanent	3630	2009-07-01	2010-06-23	7,285.00	1-4	t	0.00		Monthly
10188	DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT	ADMINISTRATIVE AIDE I		Permanent	3630	2008-07-01	2009-06-30	6,622.00	1-4	t	0.00		Monthly
10189	DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT	UTILITY WORKER I 		Permanent	3630	2008-01-01	2008-06-30	6,020.00	1-4	t	0.00		Monthly
10190	DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT	UTILITY WORKER I 		Permanent	3630	2007-07-01	2007-12-31	5,873.00	1-3	t	0.00		Monthly
10191	DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT	UTILITY WORKER I 		Permanent	3630	2005-01-01	2007-06-30	5,339.00	1-3	t	0.00		Monthly
10192	DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT	UTILITY WORKER I 		Permanent	3630	2004-03-01	2004-12-31	5,209.00	1-2	t	0.00		Monthly
10193	DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT	UTILITY WORKER I 		Permanent	3630	2002-01-01	2004-02-29	5,209.00	1-2	t	0.00		Monthly
10194	DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT	UTILITY WORKER I 		Permanent	3630	2001-07-01	2001-12-31	5,082.00	1-1	t	0.00		Monthly
10195	DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT	UTILITY WORKER I 		Permanent	3630	2000-01-01	2001-06-30	4,840.00	1-1	t	0.00		Monthly
10196	DEPARTMENT OF EDUCATION, BATANGAS CITY SOUTH DISTRICT	UTILITY WORKER I 		Permanent	3630	1998-12-01	1999-12-31	4,400.00	1-1	t	0.00		Monthly
10197	DEPARTMENT OF EDUCATION- BATANGAS CITY	ADMINISTRATIVE AIDE I		Permanent	3631	2023-03-01	2024-07-04	13,000.00	1-	t	0.00		Monthly
10198	AGP SALES & BUILDING SERVICES INCORPORATION 	HOUSEKEEPER		Contractual	3631	2022-09-01	2023-02-28	373.00		f	0.00		Daily
10199	DEPED - DIVISION OF BATANGAS CITY 	ADMINISTRATIVE ASSISTANT III		Permanent	3632	2019-03-25	2024-07-04	21,388.00		t	0.00		Monthly
10200	SANTIS DELICATESSEN	ACCOUNTING STAFF		Casual	3632	2015-02-03	2019-03-28	20,889.16		f	0.00		Monthly
10201	BNC MACHINERY CORPORATION	SALES COORDINATOR		Probationary	3632	2014-08-04	2015-01-26	18,000.00		f	0.00		Monthly
10202	AUSX SERVICES (PHIL) LIMITED COMPANY	ACCOUNTING ADMINISTRATOR		Casual	3632	2012-11-12	2014-07-15	20,000.00		f	0.00		Monthly
10203	DEPARTMENT OF EDUCATION- BATANGAS CITY	ADMINISTRATIVE OFFICER II		Permanent	3633	2023-02-03	2024-07-04	27,000.00	11-2	t	0.00		Monthly
10204	DEPARTMENT OF EDUCATION- BATANGAS CITY	ADMINISTRATIVE OFFICER II		Permanent	3633	2020-02-03	2023-02-02	25,439.00	11-1	t	0.00		Monthly
10205	DEPARTMENT OF EDUCATION- BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3633	2016-12-01	2020-02-02	18,128.00	09-2	t	0.00		Monthly
10206	DEPARTMENT OF EDUCATION- BATANGAS CITY	ADMINISTRATIVE ASSISTANT II		Permanent	3633	2015-06-01	2016-11-30	15,368.00	08-1	t	0.00		Monthly
10207	GRANDIOSE FOOD SERVICES INC.	ADMINISTRATIVE ACCOUNTANT 		Permanent	3633	2013-07-25	2015-05-29	12,000.00		f	0.00		Monthly
10208	CDO, FOODSPHERE INC.	PAYROLL STAFF		Permanent	3633	2011-01-06	2013-07-24	9,000.00		f	0.00		Monthly
10209	PASCAR CREDIT CORPORATION	BOOKKEEPER		Contractual	3633	2009-07-15	2010-10-15	6,534.00		f	0.00		Monthly
10210	MADISON SHOPPING PLAZA, INC.	CASHIER		Contractual	3633	2009-04-13	2009-07-09	6,996.00		f	0.00		Monthly
10211	DEPARTMENT OF EDUCATION- BATANGAS CITY	ADMINISTRTAIVE AIDE VI		Permanent	3635	2023-03-20	2024-07-04	17,553.00	6-	t	0.00		Monthly
10212	PROVINCIAL HUMAN RESOURCE MANAGEMENT OFFICE- DETAILED IN CIVIL SERVICE COMMISSION FIELD OFFICE BATANGAS	ADMINISTRATIVE AIDE IV (BOOKBINDER II) 		Casual	3635	2022-07-01	2023-03-19	681.50	4-	t	0.00		Daily
10213	PROVINCIAL HUMAN RESOURCE MANAGEMENT OFFICE- DETAILED IN CIVIL SERVICE COMMISSION FIELD OFFICE BATANGAS	ADMINISTRATIVE AIDE IV (BOOKBINDER II)		Casual	3635	2022-01-03	2023-06-30	681.50	4-	t	0.00		Daily
10214	PROVINCIAL HUMAN RESOURCE MANAGEMENT OFFICE- DETAILED IN CIVIL SERVICE COMMISSION FIELD OFFICE BATANGAS	ADMINISTRATIVE AIDE IV (BOOKBINDER II)		Casual	3635	2021-11-16	2021-12-31	654.00	4-	t	0.00		Daily
10215	BATANGAS STATE UNIVERSITY	ADMINISTRATIVE AIDE VI		Job Order	3635	2017-09-28	2021-11-15	17,816.40	6-	f	0.00		Monthly
10216	AMA COMPUTER LEARNING CENTER- BATANGAS CITY	INSTRUCTOR		Contractual	3635	2016-06-13	2017-04-04	100.00		f	0.00		Hourly
10217	SUPER SHOPPING MARKET, INC. (SM) HYPERMARKET- BATANGAS CITY	CASHIER		Contractual	3635	2013-02-06	2013-06-09	335.00		f	0.00		Daily
10218	SDO- BATANGAS CITY 	ADMINISTRATIVE AIDE IV 		Permanent	3634	2024-01-01	2024-07-04	15,586.00	4-1	t	0.00		Monthly
10219	SDO- BATANGAS CITY 	ADMINISTRATIVE AIDE IV 		Permanent	3634	2023-01-01	2023-12-31	15,586.00	4-1	t	0.00		Monthly
10220	SDO- BATANGAS CITY 	ADMINISTRATIVE AIDE IV 		Permanent	3634	2022-01-01	2022-12-31	14,993.00	4-1	t	0.00		Monthly
10221	SDO- BATANGAS CITY 	ADMINISTRATIVE AIDE IV 		Permanent	3634	2021-05-18	2021-12-31	14,400.00	4-1	t	0.00		Monthly
10222	BATANGAS NATIONAL HIGH SCHOOL 	ADMINISTRATIVE AIDE I 		Permanent	3634	2021-01-01	2021-05-17	12,236.00	1-3	t	0.00		Monthly
10223	BATANGAS NATIONAL HIGH SCHOOL 	ADMINISTRATIVE AIDE I 		Permanent	3634	2020-01-01	2021-05-17	11,647.00	1-2	t	0.00		Monthly
10224	BATANGAS NATIONAL HIGH SCHOOL 	ADMINISTRATIVE AIDE I		Permanent	3634	2019-01-01	2019-12-31	11,160.00	1-2	t	0.00		Monthly
10225	BATANGAS NATIONAL HIGH SCHOOL 	ADMINISTRATIVE AIDE I 		Permanent	3634	2018-01-01	2018-12-31	10,602.00	1-2	t	0.00		Monthly
10226	BATANGAS NATIONAL HIGH SCHOOL 	ADMINISTRATIVE AIDE I 		Permanent	3634	2017-01-01	2017-12-31	9,981.00	1-	t	0.00		Monthly
10227	BATANGAS NATIONAL HIGH SCHOOL 	ADMINISTRATIVE AIDE I 		Permanent	3634	2016-01-01	2016-12-31	9,478.00	1-	t	0.00		Monthly
10228	BATANGAS NATIONAL HIGH SCHOOL 	ADMINISTRATIVE AIDE I 		Permanent	3634	2015-01-21	2015-12-31	9,000.00	1-	t	0.00		Monthly
10229	SCHOOLS DIVISION OF BATANGAS CITY- BIDS AND AWARD COMMITTEE 	ADMINISTRATIVE ASSISTANT II		Permanent	3636	2024-01-08	2024-07-04	19,923.00	8-2	t	0.00		Monthly
10230	SCHOOLS DIVISION OF BATANGAS CITY- CASH UNIT 	ADMINISTRATIVE ASSISTANT II		Permanent	3636	2021-08-11	2024-05-01	19,923.00	8-2	t	0.00		Monthly
10231	TINGGA SOROSORO INTEGRATED SCHOOL	ADMINISTRATIVE ASSISTANT II		Permanent	3636	2020-10-27	2021-05-11	18,251.00	8-1	t	0.00		Monthly
10232	SCHOOLS DIVISION OF BATANGAS CITY- SUPPLY UNIT	JOB ORDER		Contractual	3636	2019-01-07	2020-10-26	12,000.00		t	0.00		Monthly
10233	DEPARTMENT OF EDUCATION- BATANGAS CITY 	JOB ORDER 		Contractual	3634	2014-01-15	2015-01-20	7,000.00		t	0.00		Monthly
10234	DEPARTMENT OF EDUCATION - BATANGAS PROVINCE  	JOB ORDER 		Contractual	3634	2010-12-23	2014-01-14	7,500.00		t	0.00		Monthly
10235	DEPARTMENT OF EDUCATION- PUERTO PRINCESA CITY	JOB ORDER 		Contractual	3634	2010-06-15	2010-12-22	5,500.00		t	0.00		Monthly
10236	JOSE J. LEIDO JR MNHS	JOB ORDER 		Contractual	3634	2006-05-09	2010-06-14	3,500.00		t	0.00		Monthly
10237	KFC	RESTAURANT TEAM MEMBER 		Contractual	3634	2005-06-15	2006-06-15	9,000.00		t	0.00		Monthly
10238	JOLLIBEE	SERVICE CREW		Contractual	3634	2005-03-16	2005-05-16	9,000.00		f	0.00		Monthly
10239	DEPED BATANGAS CITY 	ADMINISTRATIVE AIDE VI 		Permanent	3637	2024-01-01	2024-07-04	17,688.00	6-2	t	0.00		Monthly
10240	DEPED BATANGAS CITY	ADMINISTRATIVE AIDE VI		Permanent	3637	2023-10-21	2023-12-31	17,688.00	6-2	t	0.00		Monthly
10241	DEPED CITY BATANGAS 	ADMINISTRATIVE VI		Permanent	3637	2023-01-01	2023-10-20	17,553.00	6-1	t	0.00		Monthly
10242	DEPED BATANGAS CITY	ADMINISTRATIVE VI		Permanent	3637	2022-01-01	2022-12-31	16,877.00	6-1	t	0.00		Monthly
10243	DEPED BATANGAS CITY 	ADMINISTRATIVE VI		Permanent	3637	2021-01-01	2021-12-31	16,200.00	6-1	t	0.00		Monthly
10244	DEPED BATANGAS CITY	ADMINISTRATIVE VI		Permanent	3637	2020-01-01	2020-12-31	15,578.00	6-1	f	0.00		Monthly
10245	PEDRO S. TOLENTINO MEMORIAL INTEGRATEDL  SCHOOL	ADMINISTRATIVE AIDE I		Job Order	3637	2020-01-01	2020-06-30	8,200.00		t	0.00		Monthly
10246	PEDRO S. TOLENTINO MEMORIAL INTEGRATEDL  SCHOOL	ADMINISTATIVE AIDE I		Job Order	3637	2019-01-01	2019-12-31	8,000.00		t	0.00		Annual
10247	PEDRO S. TOLENTINO MEMORIAL INTEGRATEDL  SCHOO	ADMINISTRATIVE AIDE I		Job Order	3637	2018-01-01	2018-12-31	7,000.00		t	0.00		Monthly
10248	PEDRO S. TOLENTINO MEMORIAL INTEGRATEDL  SCHOO	ADMINISTRATIVE AIDE I		Job Order	3637	2017-01-01	2017-12-31	7,000.00		t	0.00		Monthly
10249	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE 		Permanent	3638	2023-04-01	2024-07-04	547.00		t	0.00		Daily
10250	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE 		Job Order	3638	2016-07-01	2023-03-28	13,000.00		t	0.00		Monthly
10251	OFFICE OF THE SCHOOLS DIVISION SUPERINTENDENT- FINANCE ACCOUNTING	ADMINISTRATIVE ASSISTANT III		Permanent	3639	2023-01-01	2024-07-04	21,211.00	09-1	t	0.00		Monthly
10252	OFFICE OF THE SCHOOLS DIVISION SUPERINTENDENT- FINANCE ACCOUNTING	ADMINISTRATIVE ASSISTANT III		Permanent	3639	2022-10-03	2023-12-21	20,402.00	09-1	t	0.00		Monthly
10253	OFFICE OF THE SCHOOLS DIVISION SUPERINTENDENT- FINANCE ACCOUNTING	ADMINISTRATIVE ASSISTANT II		Permanent	3639	2022-01-01	2022-10-02	18,998.00	08-1	t	0.00		Monthly
10254	OFFICE OF THE SCHOOLS DIVISION SUPERINTENDENT- FINANCE (ACCOUNTING)	ADMINISTRATIVE ASSISTANT II		Permanent	3639	2021-01-01	2021-01-31	18,251.00	08-1	t	0.00		Monthly
10255	OFFICE OF THE SCHOOLS DIVISION SUPERINTENDENT- FINANCE ACCOUNTING	ADMINISTRATIVE ASSISTANT II		Permanent	3639	2020-10-21	2020-12-31	17,505.00	08-1	t	0.00		Monthly
10256	CURRICULUM IMPLEMENTATION DIVISION- DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY	ADMINISTRATIVE AIDE VI		Permanent	3639	2020-01-01	2020-10-20	15,524.00	06-1	t	0.00		Monthly
10257	CURRICULUM IMPLEMENTATION DIVISION- DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY	ADMINISTRATIVE AIDE VI		Permanent	3639	2019-01-01	2019-12-31	14,847.00	06-1	t	0.00		Monthly
10258	CURRICULUM IMPLEMENTATION DIVISION- DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY	ADMINISTRATIVE AIDE VI		Permanent	3639	2018-12-31	2019-12-03	14,340.00	06-1	t	0.00		Annual
10259	CURRICULUM IMPLEMENTATION DIVISION- DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY	ADMINISTRATIVE AIDE I		Job Order	3639	2017-07-05	2018-12-02	9,134.00		f	0.00		Monthly
10260	JPT CENTRAL CORPORATE HOLDINGS AND MANAGEMENT CORPORATION	GENERAL ACCOUNTING BOOKKEEPER		Contractual	3639	2002-10-15	2003-01-02	7,000.00		f	0.00		Monthly
10261	SOUTH SUPERMARKET ALABANG 	CASHIER		Contractual	3639	2001-03-10	2001-08-19	6,000.00		f	0.00		Monthly
10262	DEPARTMENT OF EDUCATION 	ADMINISTRATIVE AIDE I 		Permanent	3640	2023-03-07	2024-07-04	13,000.00	1-	t	0.00		Monthly
10263	SEABRIDGE PORT AGENCIES CORP. 	OPERATIONS ASSISTANT 		Permanent	3640	2021-11-22	2023-06-30	14,800.00		f	0.00		Monthly
10264	SOROSORO IBABA DEEVELOPMENT COOPERATIVE 	FIBER TV TEAM LEAD TECHNICIAN 		Permanent	3640	2017-05-06	2021-11-11	9,900.00		f	0.00		Monthly
10265	ATLATIC GULF & PACIFIC ( AG&P / ICHTHYS PROJECT )  	ELECTRICIAN 		Contractual	3640	2015-11-26	2016-04-30	15,000.00		f	0.00		Monthly
10266	ATLATIC GULF & PACIFIC ( AG&P / ICHTHYS PROJECT )  	ELECTRICIAN 		Contractual	3640	2015-07-08	2015-11-23	15,000.00		f	0.00		Monthly
10267	ASIAN MARINE TRANSPORT ( SUPER SHUTTLE ) 	CHECKER 		Permanent	3640	2014-11-08	2015-01-06	9,800.00		f	0.00		Monthly
10268	ARKITEL TRADING & SERVICES ( GLOBE ACCREDITEDI CONTRACTOR ) 	TELECOM TECHNICIAN 		Contractual	3640	2013-08-15	2013-12-20	9,000.00		f	0.00		Monthly
10269	GINAZEL HOTEL RESTAURANT AND CATERING SERVICES 	COMPANY MESSENGER		Permanent	3640	2012-01-08	2013-07-08	9,500.00		f	0.00		Monthly
10270	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY	ADMINISTRATIVE ASSISTANT II		Permanent	3641	2019-06-18	2024-07-04	19,923.00	8-2	t	0.00		Monthly
10271	UNIVESITY OF BATANGAS	CLERK II/ TELLER II 		Permanent	3641	2014-04-25	2019-06-17	14,124.14		f	0.00		Monthly
10272	METROPOLITAN BANK AND TRUST COMPANY	TELLER		Casual	3641	2010-01-16	2012-10-05	13,000.00		f	0.00		Monthly
10273	DEPARTMENT OF EDUCATION- BATANGAS CITY	INFORMATION TECHNOLOGY OFFICER I		Permanent	3642	2016-06-16	2024-07-04	52,847.00	19-3	t	0.00		Monthly
10274	SAN ANTONIO NATIONAL HIGH SCHOOL	SECONDARY SCHOOL TEACHER III		Permanent	3642	2016-01-01	2016-06-15	22,564.00	13-4	t	0.00		Monthly
10275	SAN ANTONIO NATIONAL HIGH SCHOOL	SECONDARY SCHOOL TEACHER IIII		Permanent	3642	2014-08-22	2015-12-31	21,650.00	13-1	t	0.00		Monthly
10276	SAN ANTONIO NATIONAL HIGH SCHOOL	SECONDARY SCHOOL TEACHER III		Permanent	3642	2012-06-01	2014-08-21	21,436.00	13-1	t	0.00		Monthly
10277	SAN ANTONIO NATIONAL HIGH SCHOOL	SECONDARY SCHOOL TEACHER III		Permanent	3642	2011-08-22	2012-05-31	19,658.00	13-1	t	0.00		Monthly
10278	SAN ANTONIO NATIONAL HIGH SCHOOL	SECONDARY SCHOOL TEACHER I		Permanent	3642	2011-06-01	2011-08-21	17,540.00	11-	t	0.00		Monthly
10279	SAN ANTONIO NATIONAL HIGH SCHOOL	SECONDARY SCHOOL TEACHER I		Permanent	3642	2010-06-24	2011-05-31	16,157.00	11-	t	0.00		Monthly
10280	SAN ANTONIO NATIONAL HIGH SCHOOL	SECONDARY SCHOOL TEACHER I		Permanent	3642	2009-07-01	2010-06-23	14,198.00	11-	t	0.00		Monthly
10281	SAN ANTONIO NATIONAL HIGH SCHOOL	SECONDARY SCHOOL TEACHER I		Permanent	3642	2008-07-01	2009-06-30	12,026.00	11-	t	0.00		Monthly
10282	SAN ANTONIO NATIONAL HIGH SCHOOL	SECONDARY SCHOOL TEACHER I		Permanent	3642	2007-07-01	2008-06-30	10,933.00	11-	t	0.00		Monthly
10283	SAN ANTONIO NATIONAL HIGH SCHOOL	SECONDARY SCHOOL TEACHER I		Permanent	3642	2006-02-01	2007-06-30	9,939.00	11-	t	0.00		Monthly
10284	SAN ANTONIO NATIONAL HIGH SCHOOL	SECONDARY SCHOOL TEACHER I 		Permanent	3642	2001-07-02	2006-01-31	9,939.00	11-	t	0.00		Monthly
10285	DEPARTMENT OF EDUCATION- BATANGAS CITY	ADMINISTRATIVE ASSISTANTT III		Permanent	3643	2024-01-01	2024-07-04	21,211.00	9-2	t	0.00		Monthly
10286	DEPARTMENT OF EDUCATION- BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3643	2023-01-01	2023-12-31	21,211.00	9-2	t	0.00		Monthly
10287	DEPARTMENT OF EDUCATION- BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3643	2022-03-25	2022-12-31	20,572.00	9-2	t	0.00		Monthly
10288	DEPARTMENT OF EDUCATION- BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3643	2022-01-01	2022-03-24	20,402.00	9-1	t	0.00		Monthly
10289	DEPARTMENT OF EDUCATION- BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3643	2021-01-01	2021-12-31	19,593.00	9-1	t	0.00		Monthly
10290	DEPARTMENT OF EDUCATION- BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3643	2020-01-01	2020-12-31	18,784.00	9-1	t	0.00		Monthly
10291	DEPARTMENT OF EDUCATION- BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3643	2019-03-25	2019-12-21	17,975.00	9-1	t	0.00		Monthly
10292	ACCENTURE	TRANSACTION PROCESSING NEW ASSOCIATE		Permanent	3643	2017-08-25	2019-03-14	17,116.00		f	0.00		Monthly
10293	SDO- BATANGAS CITY 	ADMINISTRATIVE ASSISTANT II 		Permanent	3644	2023-05-02	2024-07-04	20,104.00	8-3	t	0.00		Monthly
10295	SDO- BATANGAS CITY 	ADMINISTRATIVE ASSISTANT II 		Permanent	3644	2022-01-01	2022-12-31	19,171.00	8-2	t	0.00		Annual
10296	SDO- BATANGAS CITY 	ADMINISTRATIVE ASSISTANT II 		Permanent	3644	2021-01-01	2021-12-31	18,417.00	8-2	t	0.00		Monthly
10297	DEPARTMENT OF EDUCATION 	 ADMINISTRATIVE ASSISTANT III		Permanent	3645	2023-01-01	2024-07-05	21,388.00	09-2	t	0.00		Monthly
10298	DEPARTMENT OF EDUCATION 	 ADMINISTRATIVE ASSISTANT III		Permanent	3645	2022-10-24	2022-12-31	20,572.00	09-2	t	0.00		Monthly
10299	DEPARTMENT OF EDUCATION 	 ADMINISTRATIVE ASSISTANT III		Permanent	3645	2022-01-01	2022-10-23	20,402.00	09-1	t	0.00		Monthly
10300	DEPARTMENT OF EDUCATION	 ADMINISTRATIVE ASSISTANT III		Permanent	3645	2021-01-01	2021-12-31	19,593.00	09-1	t	0.00		Monthly
10301	DEPARTMENT OF EDUCATION 	ADMINISTRATIVE ASSISTANT III		Permanent	3645	2020-01-01	2020-12-31	18,784.00	09-1	t	0.00		Monthly
10302	DEPARTMENT OF EDUCATION 	 ADMINISTRATIVE ASSISTANT III		Permanent	3645	2019-07-10	2019-12-31	17,975.00	09-1	t	0.00		Monthly
10303	DEPARTMENT OF EDUCATION 	 ADMINISTRATIVE ASSISTANT III		Permanent	3645	2019-01-01	2019-07-09	16,910.00	08-2	t	0.00		Monthly
10304	DEPARTMENT OF EDUCATION 	 ADMINISTRATIVE ASSISTANT III		Permanent	3645	2018-01-01	2018-12-31	16,433.00	08-2	t	0.00		Monthly
10305	DEPARTMENT OF EDUCATION 	ADMINISTRATIVE ASSISTANT III		Permanent	3645	2017-07-01	2017-12-31	15,969.00	08-2	t	0.00		Monthly
10306	DEPARTMENT OF EDUCATION 	 ADMINISTRATIVE ASSISTANT III		Permanent	3645	2017-01-01	2017-06-30	15,818.00	08-1	t	0.00		Monthly
10307	DEPARTMENT OF EDUCATION 	ADMINISTRATIVE ASSISTANT III		Permanent	3645	2016-01-01	2016-12-31	15,368.00	08-1	t	0.00		Monthly
10308	DEPARTMENT OF EDUCATION 	ADMINISTRATIVE ASSISTANT III		Permanent	3645	2014-07-01	2015-12-31	14,931.00	08-1	t	0.00		Monthly
10309	ARABIAN EXCHANGE CO. WLL, DOHA- QATAR	OFFICE ASSISTANT CUM TELLER		Permanent	3645	2005-08-09	2011-01-03	36,000.00		f	0.00		Monthly
10310	PILIPINAS MAKRO, INC., BATANGAS BRANCH	SENIOR CUSTOMER RELATION ASSISTANT		Permanent	3645	2003-06-29	2005-06-23	6,200.00		f	0.00		Monthly
10294	SDO- BATANGAS CITY 	ADMINISTRATIVE ASSISTANT II 		Permanent	3644	2023-01-01	2023-05-01	19,923.00	8-2	t	0.00		Monthly
10311	SDO - BATANGAS CITY 	ADMINISTRATIVE ASSISTANT II 		Permanent	3644	2020-12-04	2020-12-31	17,663.00	8-2	t	0.00		Monthly
10312	SDO- BATANGAS CITY 	ADMINISTRATIVE ASSISTANT II 		Permanent	3644	2020-01-01	2020-12-03	17,505.00	8-1	t	0.00		Monthly
10313	SDO- BATANGAS CITY 	ADMINISTRATIVE ASSISTANT II 		Permanent	3644	2019-01-01	2019-12-31	16,758.00	8-1	t	0.00		Monthly
10314	SDO- BATANGAS CITY 	ADMINISTRATIVE ASSISTANT II 		Permanent	3644	2018-01-01	2018-12-31	16,282.00	8-1	t	0.00		Monthly
10315	SDO- BATANGAS CITY 	ADMINISTRATIVE ASSISTANT II 		Permanent	3644	2017-12-04	2017-12-31	15,818.00	8-1	t	0.00		Monthly
10316	CONDE LABAC NATIONAL HIGH SCHOOL 	ADMINISTRATIVE ASSISTANT II 		Permanent	3644	2017-01-01	2017-12-31	15,818.00	8-1	t	0.00		Monthly
10317	CONDE LABAC NATIONAL HIGH SCHOOL 	ADMINISTRATIVE ASSISTANT II 		Permanent	3644	2016-09-15	2016-12-31	15,368.00	8-1	t	0.00		Monthly
10318	LYCEUM OF THE PHILIPPINES UNIVERSITY- BATANGAS HIGH SCHOOL DEPARTMENT 	LPU HIGH SCHOOL LIAISON OFFICER 		Contractual	3644	2016-08-01	2016-08-15	12,000.00		f	0.00		Monthly
10319	LYCEUM OF THE PHILIPPINES UNIVERSITY- BATANGAS HIGH SCHOOL DEPARTMENT	INTERNAL AND EXTERNAL COORDINATOR 		Contractual	3644	2016-07-01	2016-07-31	12,000.00		f	0.00		Monthly
10320	LYCEUM OF THE PHILIPPINES UNIVERSITY- BATANGAS HIGH SCHOOL DEPARTMENT	QUALITY ASSURANCE COORDINATOR 		Contractual	3644	2016-06-01	2016-06-30	12,000.00		f	0.00		Monthly
10321	LYCEUM OF THE PHILIPPINES UNIVERSITY- BATANGAS HIGH SCHOOL DEPARTMENT	DEPED AND PEAC COORDINATOR 		Contractual	3644	2016-04-01	2016-05-31	12,000.00		f	0.00		Monthly
10322	LYCEUM OF THE PHILIPPINES UNIVERSITY- BATANGAS HIGH SCHOOL DEPARTMENT	SENIOR HIGH AND JUNIOR HIGH SCHOOL COORDINATOR 		Contractual	3644	2016-02-01	2016-03-31	12,000.00		f	0.00		Monthly
10323	LYCEUM OF THE PHILIPPINES UNIVERSITY- BATANGAS HIGH SCHOOL DEPARTMENT	REGISTRAR 		Contractual	3644	2015-03-30	2016-01-31	11,000.00		f	0.00		Monthly
10324	LYCEUM OF THE PHILIPPINES UNIVERSITY- BATANGAS HIGH SCHOOL DEPARTMENT	SECRETARY 		Permanent	3644	2015-03-30	2016-01-31	10,000.00		f	0.00		Monthly
10325	SDO- BATANGAS CITY 	ACCOUNTING CLERK 		Casual	3644	2009-01-30	2013-12-31	12,000.00		t	0.00		Monthly
10326	DEPARTMENT OF EDUCATION- SCHOOLS DIVISION OF BATANGAS CITY	ADMINISTRATIVE OFFICER II		Permanent	3646	2024-01-08	2024-07-05	27,000.00	11-1	t	0.00		Monthly
10327	DEPARTMENT OF EDUCATION- SCHOOLS DIVISION OF BATANGAS CITY	ADMINISTRATIVE ASSISTANT II		Permanent	3646	2022-12-05	2024-01-07	18,998.00	08-1	t	0.00		Monthly
10328	DEPARTMENT OF EDUCATION- SCHOOLS DIVISION OF BATANGAS CITY	ADMINISTRATIVE AIDE VI		Permanent	3646	2016-12-01	2022-12-04	17,007.00	06-2	t	0.00		Monthly
10329	CIVIL SERVICE COMMISSION- BATANGAS FIELD OFFICE	JOB ORDER		Casual	3646	2015-04-06	2016-11-30	10,582.00		f	0.00		Monthly
10330	DEPARTMENT OF EDUCATION	ADMINISTRATIVE ASSISTANT III		Permanent	3647	2021-10-08	2024-07-05	23,211.00	9-1	f	0.00		Monthly
10331	AMBULONG RURAL WATERWORKS AND SANITARY ASSOCIATION	CHAIRMAN, COMMITTEE ON AUDIT		Casual	3647	2020-03-15	2023-03-31	4,000.00		f	0.00		Monthly
10332	BANK OF COMMERCE	BRANCH CONTROL ASSISTANT VI		Permanent	3647	2009-02-03	2017-03-28	26,000.00	13-3	f	0.00		Monthly
10333	COMMISSION ON AUDIT- BATANGAS STATE UNIVERSITY	ADMINISTRATIVE AIDE III/ AUDIT STAFF		Job Order	3647	2008-08-19	2009-01-30	7,500.00	1-1	t	0.00		Monthly
10334	BANK OF COMMERCE 	ACCOUNT UTILIZATION STAFF		Contractual	3647	2008-05-12	2008-08-17	9,200.00	1-1	f	0.00		Monthly
10335	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	ADMINISTRATIVE ASSITANT III		Permanent	3649	2024-01-01	2024-07-05	21,567.00	9-3	t	0.00		Monthly
10336	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	ADMINISTRATIVE ASSITANT III		Permanent	3649	2023-01-01	2023-12-31	21,567.00	9-3	t	0.00		Monthly
10337	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3649	2022-01-01	2022-12-31	20,745.00	9-3	t	0.00		Monthly
10338	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3649	2021-05-25	2021-12-31	19,922.00	9-2	t	0.00		Monthly
10339	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3649	2021-01-01	2021-05-24	19,757.00	9-2	t	0.00		Monthly
10340	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3649	2020-01-01	2020-12-31	18,941.00	9-2	t	0.00		Monthly
10341	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3649	2019-01-01	2019-12-31	18,125.00	9-2	t	0.00		Monthly
10342	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3649	2018-05-25	2018-12-31	17,627.00	9-1	t	0.00		Monthly
10343	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3649	2018-01-01	2018-05-24	17,473.00	9-1	t	0.00		Monthly
10344	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3649	2017-01-01	2017-12-31	16,986.00	9-1	t	0.00		Monthly
10345	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3649	2016-01-01	2016-12-31	16,512.00	9-1	t	0.00		Monthly
10346	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	ADMINISTRATIVE ASSISTANT III		Permanent	3649	2015-05-25	2015-12-31	16,051.00	9-1	t	0.00		Monthly
10347	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY	ATTORNEY III		Casual	3648	2015-06-04	2024-07-05	0.00	21-2	t	0.00		Monthly
10348	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	ADMINISTRATIVE AIDE IV		Permanent	3649	2014-09-02	2015-05-24	11,987.00	4-8	t	0.00		Monthly
10349	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	ADMINISTRATIVE AIDE IV		Permanent	3649	2012-06-01	2014-09-01	11,869.00	4-7	t	0.00		Monthly
10350	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	ADMINISTRATIVE AIDE IV		Permanent	3649	2011-09-02	2012-05-31	11,189.00	4-7	t	0.00		Monthly
10351	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	ADMINISTRATIVE AIDE IV		Permanent	3649	2011-06-01	2011-09-01	11,045.00	4-6	t	0.00		Monthly
10352	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	ADMINISTRATIVE AIDE IV		Permanent	3649	2010-06-24	2011-05-31	10,339.00	4-6	t	0.00		Monthly
10353	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	ADMINISTRATIVE AIDE IV		Permanent	3649	2009-07-01	2010-06-23	9,634.00	4-6	t	0.00		Monthly
10354	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	ADMINISTRATIVE AIDE IV		Permanent	3649	2008-09-02	2009-06-30	8,928.00	4-6	t	0.00		Monthly
10355	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	ADMINISTRATIVE AIDE IV		Permanent	3649	2008-07-01	2008-09-01	8,710.00	4-5	t	0.00		Monthly
10356	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	ADMINISTRATIVE AIDE IV		Permanent	3649	2006-06-30	2007-07-01	7,918.00	4-5	t	0.00		Monthly
10357	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	ADMINISTRATIVE AIDE IV		Permanent	3649	2006-01-01	2007-06-30	7,198.00	4-5	t	0.00		Monthly
10358	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	CLERK II		Permanent	3649	2004-03-01	2005-12-31	7,022.00	4-4	t	0.00		Monthly
10359	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	CLERK II 		Permanent	3649	2003-01-01	2004-02-29	7,022.00	4-4	t	0.00		Monthly
10360	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	CLERK II		Permanent	3649	2002-01-01	2002-12-31	6,851.00	4-3	t	0.00		Monthly
10361	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	CLERK II		Permanent	3649	2001-07-07	2001-12-31	6,522.00	4-1	t	0.00		Monthly
10362	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	CLERK II		Permanent	3649	2000-01-01	2001-06-30	6,211.00	4-1	t	0.00		Monthly
10363	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	CLERK II		Permanent	3649	1999-01-01	1999-12-31	5,656.00	4-1	t	0.00		Monthly
10364	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	CLERK II		Permanent	3649	1998-01-01	1998-12-31	5,646.00	4-1	t	0.00		Monthly
10365	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	CLERK II		Permanent	3649	1997-11-01	1997-12-31	5,646.00	4-1	t	0.00		Monthly
10366	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	CLERK II		Permanent	3649	1997-01-01	1997-10-31	5,646.00	4-1	t	0.00		Monthly
10367	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	CLERK II		Permanent	3649	1996-01-01	1996-12-31	5,050.00	4-1	t	0.00		Monthly
10368	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	CLERK II		Permanent	3649	1995-01-01	1995-12-31	4,050.00	4-1	t	0.00		Monthly
10369	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	CLERK II		Permanent	3649	1994-01-01	1994-12-31	3,050.00	4-1	t	0.00		Monthly
10370	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	CLERK II		Permanent	3649	1993-09-01	1993-12-31	2,250.00	4-1	t	0.00		Monthly
10371	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	CLERK I		Permanent	3649	1989-07-05	1993-08-31	2,156.00	4-1	t	0.00		Monthly
10372	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	CLERICAL AIDE 		Permanent	3649	1989-07-01	1989-07-04	2,156.00	4-1	t	0.00		Monthly
10373	 DEPARTMENT OF EDUCATION- SDO BATANGAS CITY 	ADMINISTRATIVE OFFICER IV 		Permanent	3650	2023-01-01	2024-07-05	37,380.00	15-3	t	0.00		Monthly
10374	DEPARTMENT OF EDUCATION - SDO BATANGAS CITY 	ADMINISTRATIVE OFFICER  IV 		Permanent	3650	2022-01-01	2022-12-31	35,858.00	15-3	t	0.00		Monthly
10375	DEPARTMENT OF EDUCATION - SDO BATANGAS CITY	ADMINISTRATIVE OFFICER IV 		Permanent	3650	2021-05-25	2021-12-31	34,336.00	15-3	t	0.00		Monthly
10376	DEPARTMENT OF EDUCATION - SDO BATANGAS CITY	ADMINISTRATIVE OFFICER IV 		Permanent	3650	2021-01-01	2021-05-24	33,953.00	15-2	t	0.00		Monthly
10377	DEPARTMENT OF EDUCATION - SDO BATANGAS CITY	ADMINISTRATIVE OFFICER IV 		Permanent	3650	2020-01-01	2020-12-31	32,431.00	15-2	t	0.00		Monthly
10378	DEPARTMENT OF EDUCATION - SDO BATANGAS CITY	ADMINISTRATIVE OFFICER IV 		Permanent	3650	2019-01-01	2019-12-31	30,909.00	16-2	t	0.00		Monthly
10379	DEPARTMENT OF EDUCATION - SDO BATANGAS CITY	ADMINISTRATIVE OFFICER IV 		Permanent	3650	2018-05-25	2018-12-31	29,359.00	15-2	t	0.00		Monthly
10380	DEPARTMENT OF EDUCATION - SDO BATANGAS CITY	ADMINSTRATIVE OFFICER IV 		Permanent	3650	2018-01-01	2018-05-24	29,010.00	15-1	t	0.00		Monthly
10381	DEPARTMENT OF EDUCATION - SDO BATANGAS CITY	ADMINISTRATIVE OFFICER IV 		Permanent	3650	2017-01-01	2017-12-31	27,566.00	15-1	t	0.00		Monthly
10382	DEPARTMENT OF EDUCATION - SDO BATANGAS CITY 	ADMINISTRATIVE OFFICER IV 		Permanent	3650	2016-01-01	2016-12-31	26,192.00	15-1	t	0.00		Monthly
10383	DEPARTMENT OF EDUCATION - SDO BATANGAS CITY	ADMINISTRATIVE OFFICER IV 		Permanent	3650	2015-05-25	2015-12-31	24,887.00	15-1	t	0.00		Monthly
10384	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY 	CLERK I 		Permanent	3650	2013-07-03	2015-05-24	10,716.00	3-4	t	0.00		Monthly
10385	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY	CLERK I 		Permanent	3650	2012-06-01	2013-07-02	10,610.00	3-3	t	0.00		Monthly
10386	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY	CLERK I 		Permanent	3650	2010-07-03	2011-05-31	9,142.00	3-3	t	0.00		Monthly
10387	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY	CLERK I 		Permanent	3650	2011-06-01	2012-05-31	9,876.00	3-3	t	0.00		Monthly
10388	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY	CLERK I		Permanent	3650	2010-06-24	2010-07-02	8,997.00	3-2	t	0.00		Monthly
10389	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY	CLERK I 		Permanent	3650	2009-07-01	2010-06-23	8,243.00	3-2	t	0.00		Monthly
10390	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY	CLERK I 		Permanent	3650	2008-07-01	2009-06-30	7,489.00	3-2	t	0.00		Monthly
10391	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY	CLERK I 		Permanent	3650	2008-01-01	2008-06-30	6,808.00	3-2	t	0.00		Monthly
10392	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY	CLERK I 		Permanent	3650	2007-07-01	2007-12-31	6,643.00	3-1	t	0.00		Monthly
10393	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY	CLERK I 		Permanent	3650	2004-07-02	2007-06-30	6,039.00	3-1	t	0.00		Monthly
10394	PERFECT PLUS, INC. ( DUNKIN DONUTS) 	ACCOUNTING STAFF 		Permanent	3650	2002-03-08	2004-05-05	5,520.00		f	0.00		Monthly
10395	LANDBANK OF THE PHILIPPINES 	BOOKKEEPER 		Permanent	3650	2000-01-01	2001-01-31	9,500.00		t	0.00		Monthly
10396	LANDBANK OF THE PHILIPPINES	BOOKKEEPER 		Permanent	3650	1999-07-16	1999-12-31	8,500.00		t	0.00		Daily
10397	LANDBANK OF THE PHILIPPINES ( DBPSC) 	NEW ACCOUNTS CLERK 		Contractual	3650	1997-02-20	1999-07-15	5,650.00		f	0.00		Monthly
10398	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY	SENIOR BOOKEEPER		Permanent	3652	2023-04-07	2024-07-05	21,929.00	09-4	t	0.00		Monthly
10399	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY	SENIOR BOOKEEPER		Permanent	3652	2023-01-01	2023-04-06	21,747.00	09-4	t	0.00		Monthly
10400	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY	SENIOR BOOKEEPER		Permanent	3652	2022-01-01	2022-12-31	20,918.00	09-4	t	0.00		Monthly
10401	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY	SENIOR BOOKEEPER		Permanent	3652	2021-01-02	2021-12-31	20,089.00	09-4	t	0.00		Monthly
10402	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY	SENIOR BOOKEEPER		Permanent	3652	2021-01-01	2021-01-01	19,922.00	09-4	t	0.00		Monthly
10403	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY	SENIOR BOOKEEPING		Permanent	3652	2020-07-01	2020-12-31	19,100.00	09-3	t	0.00		Monthly
10404	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY	SENIOR BOOKEEPING		Permanent	3652	2020-01-01	2020-06-30	18,941.00	09-3	t	0.00		Monthly
10405	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY	SENIOR BOOKEEPING		Permanent	3652	2019-01-01	2019-12-31	18,125.00	09-3	t	0.00		Monthly
10406	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY	SENIOR BOOKEEPING		Permanent	3652	2018-01-01	2018-12-31	17,627.00	09-3	t	0.00		Monthly
10407	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY	SENIOR BOOKEEPING		Permanent	3652	2017-07-01	2017-12-31	17,142.00	09-3	t	0.00		Monthly
10408	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY	SENIOR BOOKEPING		Permanent	3652	2017-01-01	2017-06-30	16,986.00	09-2	t	0.00		Monthly
10409	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY	SENIOR BOOKEEPING		Permanent	3652	2016-01-01	2016-12-31	16,512.00	09-2	t	0.00		Monthly
10411	SCHOOLS DIVISION OF BATANGAS CITY 	ADMINISTRATIVE AIDE I		Permanent	3653	2023-03-01	2024-07-05	13,000.00		t	0.00		Monthly
10410	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY	SENIOR BOOKEEPING		Permanent	3652	2014-07-01	2015-12-31	16,051.00	09-2	t	0.00		Monthly
10412	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY	SENIOR BOOKEEPING		Permanent	3652	2012-06-01	2012-06-30	16,051.00	09-1	t	0.00		Monthly
10413	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY	SENIOR BOOKEEPING		Permanent	3652	2011-06-01	0001-01-01	14,857.00	09-1	t	0.00		Monthly
10414	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY	SENIOR BOOKEEPING		Permanent	3652	2011-04-07	2011-05-31	13,663.00	09-1	t	0.00		Monthly
10415	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY	ADMINISTRATIVE AIDE VI		Contractual	3652	2009-08-17	2011-01-30	8,712.00	09-1	t	0.00		Monthly
10416	CITIMART GROUP OF COMPANIES 	AUDIT STAFF		Contractual	3652	2008-11-08	2009-08-15	8,060.00		f	0.00		Monthly
10417	SM APPLIANCE CENTER	CASHIER		Contractual	3652	2007-04-03	2007-09-22	7,280.00		f	0.00		Monthly
10418	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY	ADMISRATIVE AIDE VI		Contractual	3652	2007-10-02	2008-10-08	8,000.00	4-1	t	0.00		Monthly
10443	DIVISION OF BATANGAS CITY	EDUCATION SUPERVISOR		Permanent	3655	2023-03-20	2024-07-05	71,511.00	22-	t	0.00		Monthly
10444	 ASHS- DIVISION OF BATANGAS CITY	MASTER TEACHER II 		Permanent	3655	2023-01-01	2023-03-19	52,847.00	19-3	t	0.00		Monthly
10445	ASHS- DIVISION OF BATANGAS CITY	MASTER TEACHER II 		Permanent	3655	2022-06-13	2022-12-31	51,325.00	19-3	t	0.00		Monthly
10446	 ASHS- DIVISION OF BATANGAS CITY	MASTER TEACHER II 		Permanent	3655	2022-01-01	2022-06-12	49,835.00	19-2	t	0.00		Monthly
10447	 ASHS- DIVISION OF BATANGAS CITY	MASTER TEACHER II 		Permanent	3655	2021-01-01	2021-12-31	48,313.00	19-2	t	0.00		Monthly
10448	 ASHS- DIVISION OF BATANGAS CITY	MASTER TEACHER II 		Permanent	3655	2020-01-01	2020-12-31	47,530.00	19-2	t	0.00		Monthly
10449	 ASHS- DIVISION OF BATANGAS CITY	MASTER TEACHER II 		Permanent	3655	2019-06-13	2019-12-31	46,008.00	19-1	t	0.00		Monthly
10450	ASHS- DIVISION OF BATANGAS CITY	MASTER TEACHER II		Permanent	3655	2019-01-01	2019-06-12	45,269.00	19-1	t	0.00		Monthly
10451	ASHS- DIVISION OF BATANGAS CITY	MASTER TEACHER II 		Permanent	3655	2018-01-01	2018-12-31	42,099.00	19-1	t	0.00		Monthly
10452	ASHS- DIVISION OF BATANGAS CITY	MASTER TEACHER II 		Permanent	3655	2017-01-01	2017-12-31	39,151.00	19-1	t	0.00		Monthly
10453	PSTMIS- DIVISION OF BATANGAS CITY	MASTER TEACHER II 		Permanent	3655	2016-06-12	2016-12-31	36,341.00	19-2	t	0.00		Monthly
10454	LYCEUM OF THE PHILIPPINES UNIVERSITY 	COLLEGE PROFESSOR 		Permanent	3655	1994-06-20	2016-03-30	45,000.00		f	0.00		Monthly
10455	EULOGIO "AMANG" RODRIGUEZ INSTITUTE OF TECHNOLOGY	ONLINE TEACHER		Contractual	3655	1994-02-05	1994-06-19	2,000.00		t	0.00		Monthly
10456	LYCEUM OF THE PHILIPPINES UNIVERSITY	OFFICE CLERK		Contractual	3655	1994-05-02	1994-06-19	3,000.00		f	0.00		Monthly
10457	DEPARTMNET OF EDUCATION/ DIVISION OF BATANGAS CITY/ FINANCE UNIT 	ADMINISTRATIVE OFFICER V 		Permanent	3651	2015-07-01	2024-07-08	41,140.00	18-3	t	0.00		Monthly
10458	OFFICE OF THE PRESIDENT  	PRESIDENTIAL STAFF OFFICER III		Permanent	3651	2009-05-04	2015-06-30	27,473.00	16-3	t	0.00		Monthly
10459	OFFICE OF THE PRESIDENT 	PRESIDENTIAL STAFF OFFICER III		Permanent	3651	2007-02-15	2009-05-03	14,323.00	13-1	t	0.00		Monthly
10460	PEOPLE SUPPORT PHILS, INC. 	CUSTOMER SERIVCE REPRESENTATIVE		Casual	3651	2006-07-11	2007-02-28	13,500.00		f	0.00		Monthly
10461	GOOD SEPHERD SCHOOL 	SECRETARY 		Casual	3651	2005-09-01	2006-05-31	4,000.00		f	0.00		Monthly
10462	AMBASSADOR'S TAILORING, MILITARY SUPPLY AND COMPUTER SHOP 	ENCODER 		Casual	3651	2005-02-22	2005-06-07	2,500.00		f	0.00		Monthly
10463	SCHOOLS DIVISION OF BATANGAS CITY	CHIEF EDUCATION SUPERVISOR		Permanent	3656	2023-01-01	2024-07-08	93,049.00	24-3	t	0.00		Monthly
10464	SCHOOLS DIVISION OF BATANGAS CITY	CHIEF EDUCATION SUPERVISOR		Permanent	3656	2021-05-25	2022-12-31	89,597.00	24-2	t	0.00		Monthly
10465	SCHOOLS DIVISION OF BATANGAS CITY	CHIEF EDUCATION SUPERVISOR		Permanent	3656	2021-01-01	2021-05-24	88,158.00	24-2	t	0.00		Monthly
10466	SCHOOLS DIVISION OF BATANGAS CITY	CHIEF EDUCATION SUPERVISOR		Permanent	3656	2020-01-01	2020-12-31	86,462.00	24-2	t	0.00		Monthly
10467	SCHOOLS DIVISION OF BATANGAS CITY	CHIEF EDUCATION SUPERVISOR		Permanent	3656	2019-01-01	2019-12-31	84,767.00	24-2	t	0.00		Monthly
10468	SCHOOLS DIVISION OF BATANGAS CITY	CHIEF EDUCATION SUPERVISOR		Permanent	3656	2018-05-25	2018-12-31	74,397.00	24-2	t	0.00		Monthly
10469	SCHOOLS DIVISION OF BATANGAS CITY	CHIEF EDUCATION SUPERVISOR		Permanent	3656	2018-01-01	2018-05-24	73,299.00	24-2	t	0.00		Monthly
10470	SCHOOLS DIVISION OF BATANGAS CITY	CHIEF EDUCATION SUPERVISOR		Permanent	3656	2017-01-01	2017-12-31	64,416.00	24-1	t	0.00		Monthly
10471	SCHOOLS DIVISION OF BATANGAS CITY	CHIEF EDUCATION SUPERVISOR		Permanent	3656	2016-01-01	2016-12-31	56,610.00	24-1	t	0.00		Monthly
10472	SCHOOLS DIVISION OF BATANGAS CITY	CHIEF EDUCATION SUPERVISOR		Permanent	3656	2015-05-25	2015-12-31	49,750.00	24-1	t	0.00		Monthly
10473	SCHOOLS DIVISION OF BATANGAS CITY	EDUCATION SUPERVISOR I		Permanent	3656	2013-06-15	2015-05-24	43,121.00	22-2	t	0.00		Monthly
10474	SCHOOLS DIVISION OF BATANGAS CITY	EDUCATION SUPERVISOR I		Permanent	3656	2012-06-01	2013-06-14	42,652.00	22-2	t	0.00		Monthly
10475	SCHOOLS DIVISION OF BATANGAS CITY	EDUCATION SUPERVISOR I		Permanent	3656	2011-06-01	2012-05-31	37,812.00	22-2	t	0.00		Monthly
10476	SCHOOLS DIVISION OF BATANGAS CITY	EDUCATION SUPERVISOR I 		Permanent	3656	2010-06-24	2011-05-31	32,973.00	22-1	t	0.00		Monthly
10477	SCHOOLS DIVISION OF BATANGAS CITY	EDUCATION SUPERVISOR I		Permanent	3656	2010-06-15	2010-06-23	28,134.00	22-1	t	0.00		Monthly
10478	SAN AGAPITO NATIONAL HIGH SCHOOL	PRINCIPAL II		Permanent	3656	2009-07-01	2010-06-14	28,295.00	20-1	t	0.00		Monthly
10479	SAN AGAPITO NATIONAL HIGH SCHOOL	PRINCIPAL II		Permanent	3656	2008-07-01	2009-06-30	20,318.00	20-1	t	0.00		Monthly
10480	SAN AGAPITO NATIONAL HIGH SCHOOL	PRINCIPAL II		Permanent	3656	2008-06-10	2008-06-30	18,471.00	20-1	t	0.00		Monthly
10481	SAN AGAPITO NATIONAL HIGH SCHOOL	PRINCIPAL I		Permanent	3656	2007-07-01	2008-06-09	17,425.00	19-1	t	0.00		Monthly
10482	SAN AGAPITO NATIONAL HIGH SCHOOL	PRINCIPAL I		Permanent	3656	2006-08-22	2007-06-30	15,841.00	19-1	t	0.00		Monthly
10483	TALUMPOK	SECONDARY TEACHER III		Permanent	3656	2003-09-01	2006-08-21	11,446.00	13-2	t	0.00		Monthly
10484	TALUMPOK	SECONDARY TEACHER III		Permanent	3656	2001-07-01	2003-08-31	11,167.00	13-1	t	0.00		Monthly
10485	TALUMPOK	SECONDARY TEACHER III		Permanent	3656	2000-01-01	2001-06-30	10,635.00	13-1	t	0.00		Monthly
10486	TALUMPOK	SECONDARY TEACHER III		Permanent	3656	1998-03-16	1999-12-31	9,668.00	13-1	t	0.00		Monthly
10487	TALUMPOK	SECONDARY TEACHER I		Permanent	3656	1997-11-01	1998-03-15	8,605.00	13-1	t	0.00		Monthly
10488	TALUMPOK	SECONDARY TEACHER I		Permanent	3656	1997-01-01	1997-10-31	7,310.00	11-1	t	0.00		Monthly
10489	TALUMPOK	SECONDARY TEACHER I		Permanent	3656	1996-01-01	1996-12-31	6,013.00	11-1	t	0.00		Monthly
10490	TALUMPOK	SECONDARY TEACHER I		Permanent	3656	1995-01-01	1995-12-31	4,902.00		t	0.00		Monthly
10491	SAN AGUSTIN	SECONDARY TEACHER I		Permanent	3656	1994-01-01	1994-12-31	3,921.00		t	0.00		Monthly
10492	SAN AGUSTIN	SECONDARY TEACHER I		Permanent	3656	1989-07-01	1993-12-31	3,102.00		t	0.00		Monthly
10493	SAN AGUSTIN	SECONDARY TEACHER I		Permanent	3656	1988-08-01	1989-06-30	1,764.00		t	0.00		Monthly
10494	CONDE LABAC	SECONDARY TEACHER I		Substitute	3656	1988-02-16	1988-04-02	1,604.00		t	0.00		Monthly
10495	PEDRO S. TOLENTINO MEMORIAL HIGH SCHOOL	SECONDARY TEACHER I		Substitute	3656	1987-09-07	1987-10-30	1,604.00		t	0.00		Monthly
10496	TALUMPOK	SECONDARY TEACHER I		Substitute	3656	1987-06-22	1987-08-20	1,604.00		t	0.00		Monthly
10419	SCHOOLS DIVISION OF BATANGAS CITY 	EDUCATION PROGRAM SPECIALIST II		Permanent	3654	2023-01-01	2024-07-05	486,108.00	16-3	t	0.00		Annual
10420	SCHOOLS DIVISION OF BATANGAS CITY 	 EDUCATION PROGRAM SPECIALIST II		Permanent	3654	2022-01-01	2022-12-31	467,844.00	16-3	t	0.00		Annual
10421	SCHOOLS DIVISION OF BATANGAS CITY 	 EDUCATION PROGRAM SPECIALIST II		Permanent	3654	2021-05-25	2021-12-31	449,580.00	16-2	t	0.00		Annual
10422	SCHOOLS DIVISION OF BATANGAS CITY  	 EDUCATION PROGRAM SPECIALIST II		Permanent	3654	2021-01-01	2021-05-24	444,528.00	16-2	t	0.00		Annual
10423	SCHOOLS DIVISION OF BATANGAS CITY 	EDUCATION PROGRAM SPECIALIST II		Permanent	3654	2020-01-01	2020-12-31	422,624.00	16-2	t	0.00		Annual
10424	SCHOOLS DIVISION OF BATANGAS CITY 	 EDUCATION PROGRAM SPECIALIST II		Permanent	3654	2019-01-01	2019-12-31	408,000.00	16-2	t	0.00		Annual
10425	SCHOOLS DIVISION OF BATANGAS CITY 	 EDUCATION PROGRAM SPECIALIST II		Permanent	3654	2018-05-25	2018-12-31	385,764.00	16-1	t	0.00		Annual
10426	SCHOOLS DIVISION OF BATANGAS CITY 	EDUCATION PROGRAM SPECIALIST II		Permanent	3654	2018-01-01	2018-05-24	381,180.00	16-1	t	0.00		Annual
10427	SCHOOLS DIVISION OF BATANGAS CITY	EDUCATION PROGRAM SPECIALIST II		Permanent	3654	2017-01-01	2017-12-31	360,528.00	16-1	t	0.00		Annual
10428	SCHOOLS DIVISION OF BATANGAS CITY 	EDUCATION PROGRAM SPECIALIST II		Permanent	3654	2016-01-01	2016-12-31	341,004.00	16-1	t	0.00		Annual
10429	SCHOOLS DIVISION OF BATANGAS CITY 	 EDUCATION PROGRAM SPECIALIST II		Permanent	3654	2015-05-25	2015-12-31	322,536.00	16-1	t	0.00		Annual
10430	SCHOOLS DIVISION OF BATANGAS CITY 	 TEACHER III		Permanent	3654	2012-07-18	2015-05-24	262,404.00	13-3	t	0.00		Annual
10431	SCHOOLS DIVISION OF BATANGAS CITY 	 TEACHER III		Permanent	3654	2012-01-06	2012-07-17	259,800.00	13-2	t	0.00		Annual
10432	SCHOOLS DIVISION OF BATANGAS CITY 	 TEACHER III		Job Order	3654	2011-01-06	2012-05-31	238,896.00	13-2	t	0.00		Annual
10433	SCHOOLS DIVISION OF BATANGAS CITY	TEACHER III		Permanent	3654	2010-06-24	2011-05-31	217,992.00	13-2	t	0.00		Annual
10434	SCHOOLS DIVISION OF BATANGAS CITY	 TEACHER III		Permanent	3654	2009-07-18	2010-06-23	197,088.00	13-2	t	0.00		Annual
10435	SCHOOLS DIVISION OF BATANGAS CITY 	TEACHER III		Permanent	3654	2009-01-07	2009-07-17	193,212.00	13-1	t	0.00		Annual
10436	SCHOOLS DIVISION OF BATANGAS CITY	 TEACHER III		Permanent	3654	2008-01-07	2010-06-30	162,144.00	12-1	t	0.00		Annual
10437	SCHOOLS DIVISION OF BATANGAS CITY 	TEACHER III		Permanent	3654	2007-01-07	2008-06-30	147,408.00	12-1	t	0.00		Annual
10438	SCHOOLS DIVISION OF BATANGAS CITY	TEACHER III		Permanent	3654	2006-07-17	2007-06-30	134,004.00	12-1	t	0.00		Annual
10439	SCHOOLS DIVISION OF BATANGAS CITY 	TEACHER II		Permanent	3654	2003-06-16	2006-07-16	126,420.00	11-1	t	0.00		Annual
10440	SCHOOLS DIVISION OF BATANGAS CITY 	 TEACHER I		Permanent	3654	2001-01-07	2003-06-15	119,268.00	10-1	t	0.00		Annual
10441	SCHOOLS DIVISION OF BATANGAS CITY	 TEACHER I		Permanent	3654	2000-01-01	2001-06-30	113,592.00	10-1	t	0.00		Annual
10442	SCHOOLS DIVISION OF BATANGAS CITY 	TEACHER I		Permanent	3654	1998-05-01	1999-12-31	103,260.00	10-1	t	0.00		Annual
10497	DEPARTMENT OF EDUCATION - BATANGAS CITY 	 EDUCATION PROGRAM SUPERVISOR I		Permanent	3657	2023-12-15	2024-07-08	770,019.00	22-	t	0.00		Monthly
10498	DEPARTMENT OF EDUCATION - BATANGAS CITY  	DEPARTMENT OF EDUCATION - BATANGAS CITY  EDUCATION PROGRAM SUPERVISOR I		Permanent	3657	2023-01-01	2023-12-14	75,881.00	22-	t	0.00		Monthly
10499	DEPARTMENT OF EDUCATION - BATANGAS CITY  	 EDUCATION PROGRAM SUPERVISOR I		Permanent	3657	2022-01-01	2022-12-13	74,333.00	22-	t	0.00		Monthly
10500	DEPARTMENT OF EDUCATION - BATANGAS CITY  	 EDUCATION PROGRAM SUPERVISOR I		Permanent	3657	2021-01-01	2021-12-31	72,785.00	22-	t	0.00		Monthly
10501	DEPARTMENT OF EDUCATION - BATANGAS CITY 	 EDUCATION PROGRAM SUPERVISOR I		Permanent	3657	2020-12-15	2020-12-31	71,237.00	22-	t	0.00		Monthly
10502	DEPARTMENT OF EDUCATION - BATANGAS CITY	EDUCATION PROGRAM SUPERVISOR I		Permanent	3657	2020-01-01	2020-12-14	70,118.00	22-	t	0.00		Monthly
10503	DEPARTMENT OF EDUCATION - BATANGAS CITY  	EDUCATION PROGRAM SUPERVISOR I		Permanent	3657	2019-01-01	2019-12-31	68,570.00	22-	t	0.00		Monthly
10504	DEPARTMENT OF EDUCATION - BATANGAS CITY	EDUCATION PROGRAM SUPERVISOR I		Permanent	3657	2018-01-01	2018-12-31	61,397.00	22-	t	0.00		Monthly
10505	DEPARTMENT OF EDUCATION - BATANGAS CITY  	 EDUCATION PROGRAM SUPERVISOR I		Permanent	3657	2017-12-16	2017-12-31	54,975.00	22-	t	0.00		Monthly
10506	DEPARTMENT OF EDUCATION - BATANGAS CITY  	EDUCATION PROGRAM SUPERVISOR I		Permanent	3657	2017-01-01	2017-12-15	54,234.00	22-	t	0.00		Monthly
10507	DEPARTMENT OF EDUCATION - BATANGAS CITY 	 EDUCATION PROGRAM SUPERVISOR I		Permanent	3657	2016-01-01	2016-12-31	48,625.00	22-	t	0.00		Monthly
10508	DEPARTMENT OF EDUCATION - BATANGAS CITY  	EDUCATION PROGRAM SUPERVISOR I		Permanent	3657	2014-12-16	2016-12-31	43,596.00	22-	t	0.00		Monthly
10509	DEPARTMENT OF EDUCATION - BATANGAS CITY  	 EDUCATION PROGRAM SUPERVISOR I		Permanent	3657	2012-06-01	2014-12-15	43,121.00	22-	t	0.00		Monthly
10510	DEPARTMENT OF EDUCATION - BATANGAS CITY  	 EDUCATION PROGRAM SUPERVISOR I		Permanent	3657	2011-12-16	2012-05-31	38,310.00	22-	t	0.00		Monthly
10511	DEPARTMENT OF EDUCATION - BATANGAS CITY  	EDUCATION PROGRAM SUPERVISOR I		Permanent	3657	2011-06-01	2011-12-15	37,812.00	22-	t	0.00		Monthly
10512	DEPARTMENT OF EDUCATION - BATANGAS CITY  	EDUCATION PROGRAM SUPERVISOR I		Permanent	3657	2010-06-24	2011-05-31	31,973.00	22-	t	0.00		Monthly
10513	DEPARTMENT OF EDUCATION - BATANGAS CITY  	 EDUCATION PROGRAM SUPERVISOR I		Permanent	3657	2008-12-15	2009-06-30	22,397.00	22-	t	0.00		Monthly
10514	BATANGAS NATIONAL HIGH SCHOOL 	TEACHER I		Permanent	3657	2008-07-01	2008-12-14	12,635.00	11-	t	0.00		Monthly
10515	BATANGAS NATIONAL HIGH SCHOOL	TEACHER I		Permanent	3657	2008-01-01	2008-06-30	11,486.00	11-	t	0.00		Monthly
10516	BATANGAS NATIONAL HIGH SCHOOL 	TEACHER I		Permanent	3657	2007-07-01	2007-12-31	11,207.00	11-	t	0.00		Monthly
10517	BATANGAS NATIONAL HIGH SCHOOL 	 TEACHER I		Permanent	3657	2005-01-01	2007-06-30	10,188.00	11-	t	0.00		Monthly
10518	BATANGAS NATIONAL HIGH SCHOOL 	TEACHER I		Permanent	3657	2001-07-01	2004-12-31	9,939.00	11-	t	0.00		Monthly
10519	BATANGAS NATIONAL HIGH SCHOOL	TEACHER I		Permanent	3657	2000-07-19	2001-06-30	9,466.00	11-	t	0.00		Monthly
10520	DIVINE CHILD ACADEMY	TEACHER		Contractual	3657	1999-01-06	2000-01-03	5,800.00		f	0.00		Monthly
10521	DEPARTMENT OF EDUCATION BATANGAS CITY	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3658	2023-01-01	2024-07-08	73,661.00	22-2	t	0.00		Monthly
10522	DEPARTMENT OF EDUCATION BATANGAS CITY	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3658	2022-01-01	2022-12-31	72,113.00	22-2	t	0.00		Monthly
10523	DEPARTMENT OF EDUCATION BATANGAS CITY	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3658	2021-01-01	2021-12-31	67,933.00	22-2	t	0.00		Monthly
10524	DEPARTMENT OF EDUCATION BATANGAS CITY	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3658	2020-08-03	2020-12-31	67,993.00	22-1	t	0.00		Monthly
10525	DEPARTMENT OF EDUCATION BATANGAS CITY	PRINCIPAL IV		Permanent	3658	2020-01-01	2020-08-02	66,385.00	22-1	t	0.00		Monthly
10526	DEPARTMENT OF EDUCATION BATANGAS CITY	PRINCIPAL IV		Permanent	3658	2019-01-01	2019-12-31	66,385.00	22-1	t	0.00		Monthly
10527	DEPARTMENT OF EDUCATION BATANGAS CITY	PRINCIPAL IV		Permanent	3658	2015-05-25	2018-12-31	59,597.00	22-1	t	0.00		Monthly
10528	DEPARTMENT OF EDUCATION BATANGAS CITY	PRINCIPAL III		Permanent	3658	2011-12-20	2015-05-24	58,717.00	21-1	t	0.00		Monthly
10529	DEPARTMENT OF EDUCATION BATANGAS CITY	PRINCIPAL II		Permanent	3658	2010-02-01	2011-12-19	32,810.00	20-1	t	0.00		Monthly
10530	DEPARTMENT OF EDUCATION BATANGAS CITY	PRINCIPAL I 		Permanent	3658	2005-08-08	2010-01-31	15,841.00	19-1	t	0.00		Monthly
10531	DEPARTMENT OF EDUCATION BATANGAS CITY	MASTER TEACHER I 		Permanent	3658	2001-01-18	2005-08-07	14,450.00	18-1	t	0.00		Monthly
10532	DEPARTMENT OF EDUCATION BATANGAS CITY	ELEM GRADE TEACHER III		Permanent	3658	1998-07-01	2001-01-17	10,635.00	12-1	t	0.00		Monthly
10533	DEPARTMENT OF EDUCATION BATANGAS CITY	ELEM GRADE TEACHER I		Permanent	3658	1998-01-01	1998-01-04	8,821.00	10-2	t	0.00		Monthly
10534	DEPARTMENT OF EDUCATION BATANGAS CITY	ELEM GRADE TEACHER I 		Permanent	3658	1997-11-01	1997-12-31	8,821.00	10-2	t	0.00		Monthly
10535	DEPARTMENT OF EDUCATION BATANGAS CITY	ELEM GRADE TEACHER I 		Permanent	3658	1997-01-01	1997-10-31	7,433.00	10-1	t	0.00		Monthly
10536	DEPARTMENT OF EDUCATION BATANGAS CITY	ELEM GRADE TEACHER I		Permanent	3658	1996-01-01	1996-12-31	6,044.00	10-1	t	0.00		Monthly
10537	DEPARTMENT OF EDUCATION BATANGAS CITY	ELEM GRADE TEACHER I		Permanent	3658	1995-01-01	1995-12-31	4,933.00	10-1	t	0.00		Monthly
10538	DEPARTMENT OF EDUCATION BATANGAS CITY	ELEM GRADE TEACHER I		Permanent	3658	1994-01-01	1994-12-31	3,933.00	10-1	t	0.00		Monthly
10539	DEPARTMENT OF EDUCATION BATANGAS CITY	ELEM GRADE TEACHER I 		Permanent	3658	1993-01-01	1993-12-31	3,133.00	10-1	t	0.00		Monthly
10540	DEPARTMENT OF EDUCATION BATANGAS CITY	ELEM GRADE TEACHER I		Permanent	3658	1989-08-09	1992-12-31	3,102.00	10-1	t	0.00		Monthly
10541	CITY GOVERNMENT OF BATANGAS 	TEACHER I ( ICT STAFF) 		Probationary	3659	2022-07-01	2024-07-08	27,000.00	11-1	t	0.00		Monthly
10542	SCHOOLS DIVISION OFFICE- BATANGAS CITY	JOB ORDER ( ICT STAFF)		Probationary	3659	2022-06-01	2022-06-30	12,034.00		t	0.00		Monthly
10543	CITY GOVERNMENT OF BATANGAS 	TEACHER I ( ICT STAFF) 		Probationary	3659	2021-05-12	2022-05-30	25,439.00	11-1	t	0.00		Monthly
10544	SCHOOLS DIVISION OFFICE- BATANGAS CITY 	JOB ORDER ( ICT STAFF) 		Probationary	3659	2020-08-03	2021-05-12	12,034.00		t	0.00		Monthly
10545	KAIFA PHILIPPINES INC. 	TEST TECHNICIAN 		Casual	3659	2019-04-09	2020-01-10	13,000.00		f	0.00		Monthly
10546	INTEGRATED- MICROELECTRONICS INC. 	PROCESS TECHNICIAN 		Casual	3659	2018-03-19	2018-08-30	13,000.00		f	0.00		Monthly
10547	SCHOOLS DIVISION OF BATANGAS CITY	ADMINISTRATIVE AIDE I		Permanent	3660	1995-07-10	2024-07-08	13,000.00		t	0.00		Annual
10548	AGP SALES AND BUILDING SERVICES 	HOUSEKEEPING 		Contractual	3661	2021-11-12	2023-02-28	373.00		f	0.00		Daily
10549	SCHOOLS DIVISION OF BATANGAS CITY 	ADMINISTRATIVE AIDE I		Permanent	3663	2023-03-01	2024-07-08	13,000.00		t	0.00		Monthly
10550	WORLD CUP AGENCY	SECURITY GUARD		Casual	3663	2018-07-17	2023-02-01	20,000.00		f	0.00		Monthly
10551	UNITED ARAB EMIRATES	OVERSEAS WORKER		Casual	3663	2013-07-15	2015-08-25	20,000.00		f	0.00		Monthly
10606	DEPARTMENT OF EDUCATION	PUBLIC SCHOOLS  DISTRICT SUPERVISOR		Permanent	3665	2024-01-01	2024-07-08	74,762.00	22-4	t	0.00		Monthly
10607	DEPARTMENT OF EDUCATION	PUBLIC SCHOOLS  DISTRICT SUPERVISOR		Permanent	3665	2023-01-01	2023-12-31	74,762.00	22-4	t	0.00		Monthly
10608	DEPARTMENT OF EDUCATION	PUBLIC SCHOOLS  DISTRICT SUPERVISOR		Permanent	3665	2022-01-01	2022-12-31	73,661.00	22-3	t	0.00		Monthly
10609	DEPARTMENT OF EDUCATION	PUBLIC SCHOOLS  DISTRICT SUPERVISOR		Permanent	3665	2021-05-25	2021-12-31	73,661.00	22-	t	0.00		Monthly
10610	DEPARTMENT OF EDUCATION	PUBLIC SCHOOLS  DISTRICT SUPERVISOR		Permanent	3665	2021-01-01	2021-05-24	67,933.00	22-	t	0.00		Monthly
10611	DEPARTMENT OF EDUCATION	PUBLIC SCHOOLS  DISTRICT SUPERVISOR		Permanent	3665	2020-01-01	2020-12-31	67,933.00	22-	t	0.00		Monthly
10612	DEPARTMENT OF EDUCATION	PUBLIC SCHOOLS  DISTRICT SUPERVISOR		Permanent	3665	2019-01-01	2019-12-31	66,385.00	22-	t	0.00		Monthly
10613	DEPARTMENT OF EDUCATION	PUBLIC SCHOOLS  DISTRICT SUPERVISOR		Permanent	3665	2018-01-01	2018-05-24	59,597.00	22-	t	0.00		Monthly
10614	DEPARTMENT OF EDUCATION	PUBLIC SCHOOLS  DISTRICT SUPERVISOR		Permanent	3665	2018-05-25	2018-12-31	66,385.00	22-	t	0.00		Monthly
10615	DEPARTMENT OF EDUCATION	PUBLIC SCHOOLS  DISTRICT SUPERVISOR		Permanent	3665	2017-01-01	2017-12-31	59,597.00	22-	t	0.00		Monthly
10616	DEPARTMENT OF EDUCATION	PUBLIC SCHOOLS  DISTRICT SUPERVISOR		Permanent	3665	2016-01-01	2016-12-31	47,448.00	22-	t	0.00		Monthly
10617	DEPARTMENT OF EDUCATION	PUBLIC SCHOOLS  DISTRICT SUPERVISOR		Permanent	3665	2015-05-25	2015-12-31	42,652.00	22-	t	0.00		Monthly
10618	DEPARTMENT OF EDUCATION	PRINCIPAL IV		Permanent	3665	2013-01-04	2015-05-24	42,652.00	22-	t	0.00		Monthly
10619	DEPARTMENT OF EDUCATION	PRINCIPAL III		Permanent	3665	2012-06-01	2013-01-03	39,493.00	21-	t	0.00		Monthly
10552	SDO BATANGAS CITY	EDUCATION PROGRAM SUPERVISOR		Permanent	3662	2023-01-01	2024-07-08	73,661.00	22-	t	0.00		Monthly
10553	SDO BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR		Permanent	3662	2022-01-01	2022-12-31	72,113.00	22-	t	0.00		Monthly
10554	SDO BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR		Permanent	3662	2021-01-06	2021-12-31	70,565.00	22-	t	0.00		Monthly
10555	SDO BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR		Permanent	3662	2021-01-01	2021-05-31	69,481.00	22-	t	0.00		Monthly
10556	SDO BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR		Permanent	3662	2020-01-01	2020-12-31	67,933.00	22-	t	0.00		Monthly
10557	SDO BATANGAS CITY	EDUCATION PROGRAM SUPERVISOR		Permanent	3662	2019-01-01	2019-12-01	66,385.00	22-	t	0.00		Monthly
10558	SDO BATANGAS CITY	EDUCATION PROGRAM SUPERVISOR		Permanent	3662	2018-01-06	2018-12-31	59,597.00	22-	t	0.00		Monthly
10559	SDO BATANGAS CITY	EDUCATION PROGRAM SUPERVISOR		Permanent	3662	2018-01-01	2018-05-31	58,717.00	22-	t	0.00		Monthly
10560	SDO BATANGAS CITY	EDUCATION PROGRAM SUPERVISOR		Permanent	3662	2017-01-01	2017-12-31	52,783.00	22-	t	0.00		Monthly
10561	SDO BATANGAS CITY	EDUCATION PROGRAM SUPERVISOR		Permanent	3662	2016-01-01	2016-12-31	47,488.00	22-	t	0.00		Monthly
10562	SDO BATANGAS CITY	EDUCATION PROGRAM SUPERVISOR		Permanent	3662	2015-01-06	2015-12-31	42,652.00	22-	t	0.00		Monthly
10563	MAABUD NATIONAL HIGH SCHOOL	PRINCIPAL II		Permanent	3662	2014-06-11	2015-05-31	36,567.00	20-	t	0.00		Monthly
10564	CORAL NA MUNTI NATIONAL HIGH SCHOOL	PRINCIPAL I		Permanent	3662	2013-01-01	2014-05-11	33,859.00	19-	t	0.00		Monthly
10565	CORAL NA MUNTI NATIONAL HIGH SCHOOL	PRINCIPAL I		Permanent	3662	2012-05-31	2012-12-31	27,088.00	19-	t	0.00		Monthly
10566	MATABUNGKAY NATIONAL HIGH SCHOOL	PRINCIPAL I		Permanent	3662	2012-01-01	2012-05-30	27,088.00	19-	t	0.00		Monthly
10567	GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL	PRINCIPAL I		Permanent	3662	2011-06-06	2011-12-31	27,088.00	19-	t	0.00		Monthly
10568	GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL	MASTER TEACHER I		Permanent	3662	2010-06-24	2011-05-06	25,259.00	18-	t	0.00		Monthly
10569	GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL	MASTER TEACHER I 		Permanent	3662	2009-01-07	2010-06-23	22,214.00	18-	t	0.00		Monthly
10570	GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL	MASTER TEACHER I 		Permanent	3662	2009-05-25	2009-06-30	17,059.00	18-	t	0.00		Monthly
10571	GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL	SST III		Permanent	3662	2008-01-07	2009-05-24	13,850.00	13-	t	0.00		Monthly
10572	GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL	SST III		Permanent	3662	2008-01-06	2008-06-30	12,592.00	13-	t	0.00		Monthly
10573	GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL	SST III		Permanent	3662	2007-01-07	2008-05-31	12,284.00	13-	t	0.00		Monthly
10574	GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL	SST III		Permanent	3662	2005-01-03	2005-06-30	11,167.00	13-	t	0.00		Monthly
10575	GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL	SST I		Permanent	3662	2005-01-01	2005-02-28	10,971.00	11-	t	0.00		Monthly
10576	GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL	SST I		Permanent	3662	2002-01-01	2004-12-31	10,704.00	11-	t	0.00		Monthly
10577	GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL	SST I		Permanent	3662	2001-01-07	2001-12-31	10,442.00	11-	t	0.00		Monthly
10578	GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL	SST I		Permanent	3662	2000-01-01	2001-06-30	9,945.00	11-	t	0.00		Monthly
10579	GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL	SST I		Permanent	3662	1999-01-01	1999-12-31	9,041.00	11-	t	0.00		Monthly
10580	GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL	SECONDARY SCHOOL TEACHER I		Permanent	3662	1997-01-11	1998-11-30	8,605.00	11-	t	0.00		Monthly
10581	GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL	SECONDARY SCHOOL TEACHER  I		Permanent	3662	1997-01-01	1997-10-31	7,309.00	11-	t	0.00		Monthly
10582	GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL	SECONDARY SCHOOL TEACHER I 		Permanent	3662	1996-01-01	1996-12-31	6,013.00	11-	t	0.00		Monthly
10583	GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL	SECONDARY SCHOOL TEACHER 		Permanent	3662	1995-01-01	1995-12-31	4,902.00	11-	t	0.00		Monthly
10584	GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL 	SECONDARY SCHOOL TEACHER I 		Permanent	3662	1994-01-01	1994-12-31	3,902.00	11-	t	0.00		Monthly
10585	GOVERNOR FELICIANO LEVISTE MEMORIAL NATIONAL HIGH SCHOOL	SECONDARY SCHOOL TEACHER I		Permanent	3662	1991-02-09	1993-12-31	3,102.00	11-	t	0.00		Monthly
10586	DEPARTMENT OF EDUCATION 	 EDUCATION PROGRAM SUPERVISOR		Permanent	3664	2023-10-01	2024-07-08	72,577.00	1-	t	0.00		Monthly
10587	DEPARTMENT OF EDUCATION 	 EDUCATION PROGRAM SUPERVISOR		Permanent	3664	2023-01-01	2023-09-30	71,511.00	1-	t	0.00		Monthly
10588	DEPARTMENT OF EDUCATION 	 EDUCATION PROGRAM SUPERVISOR		Permanent	3664	2022-01-01	2022-12-31	69,963.00	1-	t	0.00		Monthly
10589	DEPARTMENT OF EDUCATION 	EDUCATION PROGRAM SUPERVISOR		Permanent	3664	2021-07-01	2021-12-31	68,415.00	1-	t	0.00		Monthly
10590	DEPARTMENT OF EDUCATION 	PRINCIPAL IV		Permanent	3664	2021-01-01	2021-06-30	68,415.00	1-	t	0.00		Monthly
10591	DEPARTMENT OF EDUCATION 	PRINCIPAL IV		Permanent	3664	2020-01-01	2020-12-31	66,867.00	1-	t	0.00		Monthly
10592	DEPARTMENT OF EDUCATION	PRINCIPAL IV		Permanent	3664	2019-10-01	2019-12-31	65,319.00	1-	t	0.00		Monthly
10593	DEPARTMENT OF EDUCATION 	PRINCIPAL III		Permanent	3664	2019-01-01	2019-09-30	57,805.00	1-	t	0.00		Monthly
10594	DEPARTMENT OF EDUCATION 	PRINCIPAL III		Permanent	3664	2018-01-01	2018-12-31	52,554.00	1-	t	0.00		Monthly
10595	DEPARTMENT OF EDUCATION 	PRINCIPAL III		Permanent	3664	2017-02-01	2017-12-31	44,779.00	1-	t	0.00		Monthly
10596	DEPARTMENT OF EDUCATION 	PRINCIPAL II		Permanent	3664	2017-01-01	2017-01-31	43,841.00	1-	t	0.00		Monthly
10597	DEPARTMENT OF EDUCATION PRINCIPAL II	PRINCIPAL II		Permanent	3664	2016-01-01	2016-12-31	40,259.00	1-	t	0.00		Monthly
10598	DEPARTMENT OF EDUCATION	PRINCIPAL II		Permanent	3664	2014-12-21	2015-12-31	36,970.00	1-	f	0.00		Monthly
10599	DEPARTMENT OF EDUCATION	PRINCIPAL II		Permanent	3664	2012-06-01	2014-12-20	36,567.00	1-	t	0.00		Monthly
10600	DEPARTMENT OF EDUCATION 	PRINCIPAL II		Permanent	3664	2011-12-20	2012-05-31	32,810.00	1-	t	0.00		Monthly
10601	DEPARTMENT OF EDUCATION 	PRINCIPAL I		Permanent	3664	2011-06-01	2011-12-19	30,474.00	1-	t	0.00		Monthly
10602	DEPARTMENT OF EDUCATION 	 PRINCIPAL I		Permanent	3664	2010-06-24	2011-05-31	27,088.00	1-	f	0.00		Monthly
10603	DEPARTMENT OF EDUCATION	PRINCIPAL I		Permanent	3664	2009-09-08	2010-06-23	23,703.00	1-	t	0.00		Monthly
10604	DEPARTMENT OF EDUCATION 	HEAD TEACHER III		Permanent	3664	2009-07-01	2009-09-07	19,514.00	1-	t	0.00		Monthly
10605	DEPARTMENT OF EDUCATION 	HEAD TEACHER III		Permanent	3664	2008-07-01	2009-06-30	16,093.00	1-	t	0.00		Monthly
10620	DEPARTMENT OF EDUCATION, BATANGAS CITY	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3666	2024-01-01	2024-07-08	74,759.00	22-4	t	0.00		Monthly
10733	DEPARTMENT OF EDUCATION 	TEACHER I		Permanent	3668	1995-01-01	1995-09-10	4,933.00	11-3	t	0.00		Monthly
10621	DEPARTMENT OF EDUCATION, BATANGAS CITY 	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3666	2023-01-01	2023-12-31	73,214.00	22-4	t	0.00		Monthly
10622	DEPARTMENT OF EDUCATION, BATANGAS CITY	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3666	2022-01-01	2022-12-31	71,666.00	22-4	t	0.00		Monthly
10623	DEPARTMENT OF EDUCATION, BATANGAS CITY 	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3666	2021-01-01	2021-12-31	70,565.00	22-3	t	0.00		Monthly
10624	DEPARTMENT OF EDUCATION, BATANGAS CITY	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3666	2020-01-01	2020-12-31	69,017.00	22-3	t	0.00		Monthly
10625	DEPARTMENT OF EDUCATION, BATANGAS CITY 	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3666	2019-01-01	2019-12-31	67,469.00	22-3	t	0.00		Monthly
10626	DEPARTMENT OF EDUCATION, BATANGAS CITY 	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3666	2018-01-01	2018-12-31	53,503.00	22-2	t	0.00		Monthly
10627	DEPARTMENT OF EDUCATION, BATANGAS CITY	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3666	2017-01-01	2017-12-31	53,503.00	22-2	t	0.00		Monthly
10628	DEPARTMENT OF EDUCATION, BATANGAS CITY	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3666	2017-01-01	2017-12-31	53,503.00	22-2	t	0.00		Monthly
10629	DEPARTMENT OF EDUCATION, BATANGAS CITY	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3666	2016-01-01	2016-12-31	48,032.00	22-2	t	0.00		Monthly
10630	DEPARTMENT OF EDUCATION, BATANGAS CITY	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3666	2015-09-04	2015-12-21	43,121.00	22-2	t	0.00		Monthly
10631	DEPARTMENT OF EDUCATION, BATANGAS CITY 	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3666	2012-09-04	2015-09-03	42,652.00	22-	t	0.00		Monthly
10632	DEPARTMENT OF EDUCATION, BATANGAS CITY 	 PRINCIPAL III		Permanent	3666	2012-06-01	2012-09-03	39,493.00	21-	t	0.00		Monthly
10633	DEPARTMENT OF EDUCATION, BATANGAS CITY	 PRINCIPAL III		Permanent	3666	2011-08-22	2012-05-31	35,219.00	21-	t	0.00		Monthly
10634	DEPARTMENT OF EDUCATION, BATANGAS CITY 	PRINCIPAL II		Permanent	3666	2011-06-17	2011-08-21	33,246.00	20-	t	0.00		Monthly
10635	DEPARTMENT OF EDUCATION, BATANGAS CITY 	PRINCIPAL II		Permanent	3666	2011-06-01	2011-06-16	32,810.00	20-	t	0.00		Monthly
10636	DEPARTMENT OF EDUCATION, BATANGAS CITY	PRINCIPAL II		Permanent	3666	2010-06-24	2011-05-31	29,052.00	20-	t	0.00		Monthly
10637	DEPARTMENT OF EDUCATION, BATANGAS CITY	PRINCIPAL II		Permanent	3666	2009-07-01	2010-06-23	25,295.00	20-	t	0.00		Monthly
10638	DEPARTMENT OF EDUCATION, BATANGAS CITY 	PRINCIPAL II		Permanent	3666	2008-07-01	2009-06-30	28,318.00	20-	t	0.00		Monthly
10639	DEPARTMENT OF EDUCATION, BATANGAS CITY	PRINCIPAL I		Permanent	3666	2008-06-16	2008-06-30	18,471.00	19-	t	0.00		Monthly
10640	DEPARTMENT OF EDUCATION, BATANGAS CITY	PRINCIPAL I		Permanent	3666	2007-07-01	2008-06-15	17,425.00	19-	t	0.00		Monthly
10641	DEPARTMENT OF EDUCATION, BATANGAS CITY	PRINCIPAL I		Permanent	3666	2006-01-16	2007-06-30	15,841.00	19-	t	0.00		Monthly
10642	DEPARTMENT OF EDUCATION, BATANGAS CITY	ES HEAD TEACHER III		Permanent	3666	2004-08-03	2006-01-15	13,300.00	16-	t	0.00		Monthly
10643	DEPARTMENT OF EDUCATION, BATANGAS CITY	TEACHER III		Permanent	3666	2003-01-21	2004-08-02	11,167.00	12-	t	0.00		Monthly
10644	DEPARTMENT OF EDUCATION, BATANGAS CITY	TEACHER II		Permanent	3666	2001-12-26	2003-01-20	10,353.00	11-	t	0.00		Monthly
10645	DEPARTMENT OF EDUCATION, BATANGAS CITY	TEACHER I		Permanent	3666	2001-07-01	2001-12-25	9,939.00	10-	t	0.00		Monthly
10646	DEPARTMENT OF EDUCATION, BATANGAS CITY 	TEACHER I 		Permanent	3666	2000-01-01	2001-06-30	9,466.00	10-	t	0.00		Monthly
10647	DEPARTMENT OF EDUCATION, BATANGAS CITY	TEACHER I		Permanent	3666	1997-11-01	1999-12-31	8,605.00	10-	t	0.00		Monthly
10648	DEPARTMENT OF EDUCATION, BATANGAS CITY	TEACHER I		Permanent	3666	1997-01-01	1997-10-31	7,309.00	10-	t	0.00		Monthly
10649	DEPARTMENT OF EDUCATION, BATANGAS CITY	TEACHER I		Permanent	3666	1996-01-01	1996-10-31	6,013.00	10-	t	0.00		Monthly
10650	DEPARTMENT OF EDUCATION, BATANGAS CITY	TEACHER 1 		Permanent	3666	1995-01-01	1995-10-31	4,902.00	10-	t	0.00		Monthly
10651	DEPARTMENT OF EDUCATION, BATANGAS CITY	TEACHER 1 		Permanent	3666	1994-01-01	1994-12-31	3,902.00	10-	t	0.00		Monthly
10652	DEPARTMENT OF EDUCATION, BATANGAS CITY	TEACHER I		Permanent	3666	1993-09-10	1993-12-31	3,102.00	10-	t	0.00		Monthly
10653	DEPARTMENT OF EDUCATION 	HEAD TEACHER III		Permanent	3664	2007-07-01	2008-06-30	14,630.00	1-	t	0.00		Monthly
10654	DEPARTMENT OF EDUCATION 	 HEAD TEACHER III		Permanent	3664	2007-06-01	2007-07-08	13,300.00	1-	t	0.00		Monthly
10655	DEPARTMENT OF EDUCATION 	TEACHER III		Permanent	3664	2007-01-01	2007-05-31	11,446.00	1-	t	0.00		Monthly
10656	DEPARTMENT OF EDUCATION 	TEACHER III		Permanent	3664	2003-02-03	2006-12-31	11,167.00	1-	t	0.00		Monthly
10657	DEPARTMENT OF EDUCATION 	TEACHER II		Permanent	3664	2001-07-01	2003-02-02	10,535.00	2-	t	0.00		Monthly
10658	DEPARTMENT OF EDUCATION 	TEACHER II		Permanent	3664	2000-01-01	2001-06-30	10,033.00	1-	t	0.00		Monthly
10659	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3664	1999-11-22	1999-12-31	9,121.00	1-	t	0.00		Monthly
10660	DEPARTMENT OF EDUCATION 	ELEMENTARY GRADE TEACHER		Permanent	3664	1997-11-01	1999-11-21	8,605.00	1-	t	0.00		Monthly
10661	DEPARTMENT OF EDUCATION 	ELEMENTARY GRADE TEACHER		Permanent	3664	1997-01-01	1997-10-31	7,309.00	1-	t	0.00		Monthly
10662	DEPARTMENT OF EDUCATION 	ELEMENTARY GRADE TEACHER		Permanent	3664	1996-01-01	1996-12-31	6,013.00	1-	t	0.00		Monthly
10663	DEPARTMENT OF EDUCATION 	ELEMENTARY GRADE TEACHER		Permanent	3664	1995-06-05	1995-12-31	4,902.00	1-	t	0.00		Monthly
10664	SDO- BATANGAS CITY 	EDUCATION PROGRAM SPECIALIST II - ALS 		Permanent	3667	2023-04-03	2024-07-08	39,672.00	16-	t	0.00		Monthly
10665	ST. BRIDGET COLLEGE- COLLEGE DEPARTMENT 	COLLEGE EDUCATION PROGRAM CHAIRPERSON 		Permanent	3667	2022-06-01	2023-04-30	41,000.00		t	0.00		Monthly
10666	ST. BRIDGET COLLEGE- INTEGRATED BASIC EDUCATION DEPARTMENT 	ELEMENTARY & JHS PRINCIPAL 		Permanent	3667	2016-06-01	2022-05-31	41,000.00		t	0.00		Monthly
10667	ST. BRIDGET COLLEGE- ELEMENTARY DEPARTMENT	ELEMENTARY PRINCIPAL 		Permanent	3667	2013-06-01	2016-05-31	40,000.00		t	0.00		Monthly
10668	ST. BRIDGET COLLEGE- ELEMENTARY DEPARTMENT	SUBJECT AREA COORDINATOR 		Permanent	3667	2007-06-01	2013-05-31	25,000.00		t	0.00		Monthly
10669	ST. BRIDGET COLLEGE- ELEMENTARY DEPARTMENT	ELEMENTARY CLASSROOM TEACHER 		Permanent	3667	1998-06-01	2007-05-31	16,000.00		t	0.00		Monthly
10670	DEPARTMENT OF EDUCATION	 EDUCATION PROGRAM SUPERVISOR I		Permanent	3668	2023-01-01	2024-07-09	78,881.00	22-	t	0.00		Monthly
10671	DEPARTMENT OF EDUCATION 	EDUCATION PROGRAM SUPERVISOR I		Permanent	3668	2022-06-15	2022-12-31	74,333.00	22-	t	0.00		Monthly
10672	DEPARTMENT OF EDUCATION 	EDUCATION PROGRAM SUPERVISOR I		Permanent	3668	2022-01-01	2022-06-14	73,214.00	22-4	t	0.00		Monthly
10673	DEPARTMENT OF EDUCATION 	EDUCATION PROGRAM SUPERVISOR I		Permanent	3668	2021-01-01	2021-12-31	71,666.00	22-4	t	0.00		Monthly
10674	DEPARTMENT OF EDUCATION 	EDUCATION PROGRAM SUPERVISOR I		Permanent	3668	2020-01-01	2020-12-31	70,118.00	22-4	t	0.00		Monthly
10675	DEPARTMENT OF EDUCATION 	EDUCATION PROGRAM SUPERVISOR I		Permanent	3668	2019-06-15	2019-12-31	68,570.00	22-3	t	0.00		Monthly
10676	DEPARTMENT OF EDUCATION 	EDUCATION PROGRAM SUPERVISOR I		Permanent	3668	2019-01-01	2019-06-14	67,469.00	22-3	t	0.00		Monthly
10677	DIVISION OFFICE BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR I		Permanent	3669	2023-01-01	2024-07-09	75,881.00	22-5	t	0.00		Monthly
10678	DIVISION OFFICE BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR I		Permanent	3669	2022-01-01	2022-12-31	74,333.00	22-	t	0.00		Monthly
10679	DIVISION OFFICE BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR I		Permanent	3669	2021-11-11	2021-12-31	72,785.00	22-	t	0.00		Annual
10680	DIVISION OFFICE BATANGAS CITY	EDUCATION PROGRAM SUPERVISOR I		Permanent	3669	2021-01-01	2021-11-10	71,666.00	22-	t	0.00		Monthly
10681	DIVISION OFFICE BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR I		Permanent	3669	2020-01-01	2020-12-31	70,118.00	22-	t	0.00		Monthly
10682	DIVISION OFFICE BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR I		Permanent	3669	2019-01-01	2019-12-31	68,570.00	22-	t	0.00		Monthly
10683	DIVISION OFFICE BATANGAS CITY	EDUCATION PROGRAM SUPERVISOR I		Permanent	3669	2018-01-01	2018-12-31	60,491.00	22-	t	0.00		Monthly
10684	DIVISION OFFICE BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR I		Permanent	3669	2017-01-01	2017-12-31	54,234.00	22-	t	0.00		Monthly
10685	DIVISION OFFICE BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR I		Permanent	3669	2016-01-01	2016-12-31	48,625.00	22-	t	0.00		Monthly
10686	DIVISION OFFICE BATANGAS CITY	EDUCATION PROGRAM SUPERVISOR I		Permanent	3669	2015-11-11	2015-12-31	45,539.00	22-	t	0.00		Monthly
10687	DIVISION OFFICE BATANGAS CITY	EDUCATION PROGRAM SUPERVISOR I		Permanent	3669	2012-11-12	2015-11-10	43,121.00	22-	t	0.00		Monthly
10688	DIVISION OFFICE BATANGAS CITY	EDUCATION PROGRAM SUPERVISOR I		Permanent	3669	2012-06-01	2012-11-11	42,652.00	22-	t	0.00		Monthly
10689	DIVISION OFFICE BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR I		Permanent	3669	2011-06-01	2012-05-31	37,812.00	22-	t	0.00		Monthly
10690	DIVISION OFFICE BATANGAS CITY	EDUCATION PROGRAM SUPERVISOR I		Permanent	3669	2010-06-24	2011-05-31	32,973.00	22-	t	0.00		Monthly
10691	DIVISION OFFICE BATANGAS CITY	EDUCATION PROGRAM SUPERVISOR I		Permanent	3669	2009-11-11	2010-06-23	28,134.00	22-	t	0.00		Monthly
10694	DEPARTMENT OF EDUCATION 	EDUCATION PROGRAM SUPERVISOR I		Permanent	3668	2018-01-01	2018-12-31	60,491.00	22-3	t	0.00		Monthly
10695	DEPARTMENT OF EDUCATION 	EDUCATION PROGRAM SUPERVISOR I		Permanent	3668	2017-01-01	2017-12-31	54,234.00	22-3	t	0.00		Monthly
10696	DEPARTMENT OF EDUCATION 	EDUCATION PROGRAM SUPERVISOR I		Permanent	3668	2016-06-15	2016-12-31	48,625.00	22-2	t	0.00		Monthly
10697	DEPARTMENT OF EDUCATION	 EDUCATION PROGRAM SUPERVISOR I		Permanent	3668	2016-01-01	2016-06-14	48,032.00	22-2	t	0.00		Monthly
10698	DEPARTMENT OF EDUCATION 	EDUCATION PROGRAM SUPERVISOR I		Permanent	3668	2013-06-15	2015-12-31	43,121.00	22-2	t	0.00		Monthly
10699	DEPARTMENT OF EDUCATION	EDUCATION PROGRAM SUPERVISOR I		Permanent	3668	2012-01-06	2013-06-14	42,652.00	22-1	t	0.00		Monthly
10700	DEPARTMENT OF EDUCATION 	EDUCATION PROGRAM SUPERVISOR I		Permanent	3668	2011-01-06	2012-05-31	37,812.00	22-1	t	0.00		Monthly
10701	DEPARTMENT OF EDUCATION 	EDUCATION PROGRAM SUPERVISOR I		Permanent	3668	2010-05-24	2011-05-31	32,973.00	22-1	t	0.00		Monthly
10702	DEPARTMENT OF EDUCATION 	EDUCATION PROGRAM SUPERVISOR I		Permanent	3668	2010-06-15	2010-06-23	28,134.00	22-1	t	0.00		Monthly
10703	DEPARTMENT OF EDUCATION 	PUBLIC SCHOOLS DISTRICT SUPERVISOR 		Permanent	3670	2023-01-01	2024-07-09	73,661.00	22-2	t	0.00		Monthly
10704	DEPARTMENT OF EDUCATION 	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3670	2022-01-01	2022-12-31	72,113.00	22-2	t	0.00		Monthly
10705	DEPARTMENT OF EDUCATION 	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3670	2021-05-05	2021-12-31	70,565.00	22-1	t	0.00		Monthly
10706	DEPARTMENT OF EDUCATION 	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3670	2021-01-01	2021-05-24	69,481.00	22-1	t	0.00		Monthly
10707	DEPARTMENT OF EDUCATION 	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3670	2020-01-01	2020-12-31	67,933.00	22-1	t	0.00		Monthly
10708	DEPARTMENT OF EDUCATION  	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3670	2019-01-01	2019-12-31	66,385.00	22-1	t	0.00		Monthly
10709	DEPARTMENT OF EDUCATION 	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3670	2018-05-25	2018-12-31	59,597.00	22-1	t	0.00		Monthly
10710	DEPARTMENT OF EDUCATION 	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3670	2018-01-01	2018-05-24	58,717.00	22-1	t	0.00		Monthly
10711	DEPARTMENT OF EDUCATION 	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3670	2017-01-01	2017-12-31	52,783.00	22-1	t	0.00		Monthly
10712	DEPARTMENT OF EDUCATION 	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3670	2016-01-01	2016-12-31	47,448.00	22-1	t	0.00		Monthly
10713	DEPARTMENT OF EDUCATION 	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3670	2015-05-25	2015-12-31	42,652.00	22-1	t	0.00		Monthly
10714	DEPARTMENT OF EDUCATION 	PRINCIPAL III 		Permanent	3670	2013-06-13	2015-05-24	39,493.00	21-	t	0.00		Monthly
10715	DEPARTMENT OF EDUCATION 	PRINCIPAL II 		Permanent	3670	2012-06-01	2013-06-12	36,567.00	20-	t	0.00		Monthly
10716	DEPARTMENT OF EDUCATION 	PRINCIPAL II 		Permanent	3670	2011-08-22	2012-05-31	32,810.00	20-	t	0.00		Monthly
10717	DEPARTMENT OF EDUCATION 	PRINCIPAL II 		Permanent	3670	2011-07-17	2011-08-21	30,880.00	20-	t	0.00		Monthly
10718	DEPARTMENT OF EDUCATION PRINCIPAL I	PRINCIPAL I		Permanent	3668	2009-01-07	2010-06-14	23,703.00	19-2	t	0.00		Monthly
10719	DEPARTMENT OF EDUCATION	PRINCIPAL I		Permanent	3668	2008-01-07	2009-06-30	19,168.00	19-1	t	0.00		Monthly
10720	DEPARTMENT OF EDUCATION 	PRINCIPAL I		Permanent	3668	2007-01-07	2007-06-30	17,425.00	19-1	t	0.00		Monthly
10721	DEPARTMENT OF EDUCATION 	PRINCIPAL I		Permanent	3668	2006-03-07	2007-06-30	15,841.00	19-1	t	0.00		Monthly
10722	DEPARTMENT OF EDUCATION 	MASTER TEACHER II 		Permanent	3668	2005-01-01	2006-02-07	15,317.00	19-2	t	0.00		Monthly
10723	DEPARTMENT OF EDUCATION 	MASTER TEACHER II 		Permanent	3668	2001-11-14	2004-12-31	14,944.00	19-1	t	0.00		Monthly
10724	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3668	2001-01-07	2001-11-13	14,098.00	18-1	t	0.00		Monthly
10725	DEPARTMENT OF EDUCATION 	MASTER TEACHER I		Permanent	3668	2000-01-01	2001-06-30	13,427.00	18-1	t	0.00		Monthly
10726	DEPARTMENT OF EDUCATION 	MASTER TEACHER I		Permanent	3668	1999-08-30	1999-12-31	12,206.00	18-1	t	0.00		Monthly
10727	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3668	1999-01-01	1999-08-29	9,121.00	12-2	t	0.00		Monthly
10728	DEPARTMENT OF EDUCATION 	TEACHER II		Permanent	3668	1998-01-01	1998-12-31	9,121.00	12-2	t	0.00		Monthly
10729	DEPARTMENT OF EDUCATION 	TEACHER II		Permanent	3668	1997-01-11	1997-12-31	9,121.00	12-1	t	0.00		Monthly
10730	DEPARTMENT OF EDUCATION 	TEACHER II		Permanent	3668	1997-01-01	1997-10-31	7,682.00	12-1	t	0.00		Monthly
10731	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3668	1996-01-01	1996-12-31	6,243.00	12-1	t	0.00		Monthly
10732	DEPARTMENT OF EDUCATION 	TEACHER II		Permanent	3668	1995-10-10	1995-12-31	5,009.00	12-1	t	0.00		Monthly
10734	DEPARTMENT OF EDUCATION 	TEACHER I		Permanent	3668	1994-01-01	1994-12-31	3,933.00	11-3	t	0.00		Monthly
10735	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3668	1993-01-01	1993-12-31	3,133.00	11-2	t	0.00		Monthly
10736	DEPARTMENT OF EDUCATION 	TEACHER I		Permanent	3668	1989-01-07	1992-12-31	3,102.00	11-2	t	0.00		Monthly
10737	DEPARTMENT OF EDUCATION 	TEACHER I		Permanent	3668	1988-06-20	1989-06-30	1,764.00	11-1	t	0.00		Monthly
10738	DEPARTMENT OF EDUCATION 	PRINICIPAL I 		Permanent	3670	2011-06-01	2011-07-16	30,474.00	19-	t	0.00		Monthly
10739	DEPARTMENT OF EDUCATION 	PRINCIPAL I 		Permanent	3670	2010-06-24	2011-05-31	27,088.00	19-	t	0.00		Monthly
10740	DEPARTMENT OF EDUCATION 	PRINCIPAL I 		Permanent	3670	2009-07-01	2010-06-23	23,700.00	19-	t	0.00		Monthly
10741	DEPARTMENT OF EDUCATION 	PRINCIPAL I 		Permanent	3670	2008-07-16	2009-06-30	19,168.00	19-	t	0.00		Monthly
10742	DEPARTMENT OF EDUCATION 	MASTER TEACHER II 		Permanent	3670	2008-07-01	2008-07-15	18,082.00	18-	t	0.00		Monthly
10743	DEPARTMENT OF EDUCATION 	MASTER TEACHER II 		Permanent	3670	2007-07-20	2008-06-30	16,438.00	18-	t	0.00		Monthly
10692	DIVISION OFFICE BATANGAS CITY	ELEMENTARY HEAD TEACHER		Permanent	3669	2009-07-01	2009-11-10	19,906.00	16-	t	0.00		Monthly
10693	DIVISION OFFICE BATANGAS CITY 	ELEMENTARY HEAD TEACHER		Permanent	3669	2008-07-01	2009-06-30	16,494.00	15-	t	0.00		Monthly
10744	DIVISION OFFICE BATANGAS CITY 	ELEMENTARY HEAD TEACHER		Permanent	3669	2007-07-01	2008-06-30	14,995.00	15-	t	0.00		Monthly
10745	DIVISION OFFICE BATANGAS CITY 	ELEMENTARY HEAD TEACHER		Permanent	3669	2007-01-01	2007-06-01	13,632.00	15-	t	0.00		Monthly
10746	DIVISION OFFICE BATANGAS CITY 	ELEMENTARY HEAD TEACHER		Permanent	3669	2003-02-28	2006-12-31	13,300.00	15-	t	0.00		Monthly
10747	DIVISION OFFICE BATANGAS CITY 	TEACHER III		Permanent	3669	2002-11-25	2003-02-27	11,167.00	13-	t	0.00		Monthly
10748	DIVISION OFFICE BATANGAS CITY 	TEACHER II		Permanent	3669	2001-09-12	2002-11-24	10,535.00	12-	t	0.00		Monthly
10749	DIVISION OFFICE BATANGAS CITY 	ELEMENTARY GRADE TEACHER		Permanent	3669	2001-07-01	2001-09-11	9,939.00	11-	t	0.00		Monthly
10750	DIVISION OFFICE BATANGAS CITY 	ELEMENTARY GRADE TEACHER		Permanent	3669	2000-01-01	2001-06-30	9,466.00	11-	t	0.00		Monthly
10751	DIVISION OFFICE BATANGAS CITY	ELEMENTARY GRADE TEACHER		Permanent	3669	1997-01-01	1999-12-31	8,605.00	11-	t	0.00		Monthly
10752	DIVISION OFFICE BATANGAS CITY 	ELEMENTARY GRADE TEACHER		Permanent	3669	1997-01-01	1997-10-31	7,309.00	11-	t	0.00		Monthly
10753	DIVISION OFFICE BATANGAS CITY 	ELEMENTARY GRADE TEACHER		Permanent	3669	1996-01-01	1996-12-31	6,013.00	11-	t	0.00		Monthly
10754	DIVISION OFFICE BATANGAS CITY	ELEMENTARY GRADE TEACHER		Permanent	3669	1995-01-01	1995-12-31	4,902.00	11-	t	0.00		Monthly
10755	DIVISION OFFICE BATANGAS CITY 	ELEMENTARY GRADE TEACHER		Permanent	3669	1994-01-01	1994-12-31	3,902.00	11-	t	0.00		Monthly
10756	DIVISION OFFICE BATANGAS CITY 	REAPPOINTMENT 		Permanent	3669	1993-11-10	1993-12-31	3,102.00	11-	t	0.00		Monthly
10757	DIVISION OFFICE BATANGAS CITY	ELEMENTARY GRADE TEACHER		Permanent	3669	1991-06-18	1993-11-09	3,102.00	11-	t	0.00		Monthly
10758	DEPARTMENT OF EDUCATION 	MASTER TEACHER I 		Permanent	3670	2000-01-03	2004-07-19	14,098.00	16-	t	0.00		Monthly
10759	DEPARTMENT OF EDUCATION 	TEACHER III 		Permanent	3670	2000-01-01	2000-01-02	10,635.00	13-	t	0.00		Monthly
10760	DEPARTMENT OF EDUCATION 	TEACHER III		Permanent	3670	1997-11-01	1999-12-31	9,668.00	13-	t	0.00		Monthly
10761	DEPARTMENT OF EDUCATION 	TEACHER III		Permanent	3670	1995-06-07	1997-10-31	8,118.00	13-	t	0.00		Monthly
10762	DEPARTMENT OF EDUCATION 	TEACHER I 		Permanent	3670	1995-01-01	1995-06-06	4,683.00	11-	t	0.00		Monthly
10763	DEPARTMENT OF EDUCATION 	TEACHER I 		Permanent	3670	1993-01-01	1994-12-31	3,933.00	11-	t	0.00		Monthly
10764	DEPARTMENT OF EDUCATION 	TEACHER I 		Permanent	3670	1988-08-19	1993-12-31	3,102.00	11-	t	0.00		Monthly
10765	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY 	PUBLIC SCHOOL DISTRICT SUPERVISOR		Permanent	3671	2023-01-01	2024-07-09	73,661.00	22-3	t	0.00		Monthly
10766	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	PUBLIC SCHOOL DISTRICT SUPERVISOR		Permanent	3671	2022-01-01	2022-12-31	72,113.00	22-3	t	0.00		Monthly
10767	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY 	PUBLIC SCHOOL DISTRICT SUPERVISOR		Permanent	3671	2021-12-21	2022-05-25	70,565.00	22-3	t	0.00		Monthly
10768	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	PUBLIC SCHOOL DISTRICT SUPERVISOR		Permanent	3671	2021-01-01	2021-05-24	69,481.00	22-3	t	0.00		Monthly
10769	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	PUBLIC SCHOOL DISTRICT SUPERVISOR		Permanent	3671	2020-01-01	2020-12-31	67,933.00	22-2	t	0.00		Monthly
10770	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	PUBLIC SCHOOL DISTRICT SUPERVISOR		Permanent	3671	2019-01-01	2019-12-31	66,785.00	22-2	t	0.00		Monthly
10771	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	PUBLIC SCHOOL DISTRICT SUPERVISOR		Permanent	3671	2018-05-25	2018-12-31	59,597.00	22-2	t	0.00		Monthly
10772	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	PUBLIC SCHOOL DISTRICT SUPERVISOR		Permanent	3671	2018-01-25	2018-05-24	57,717.00	22-1	t	0.00		Monthly
10773	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY 	PUBLIC SCHOOL DISTRICT SUPERVISOR		Permanent	3671	2017-01-01	2017-12-31	52,783.00	22-1	t	0.00		Monthly
10774	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY 	PUBLIC SCHOOL DISTRICT SUPERVISOR		Permanent	3671	2016-01-01	2016-12-31	47,488.00	22-1	t	0.00		Annual
10775	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY 	PUBLIC SCHOOL DISTRICT SUPERVISOR		Permanent	3671	2015-05-25	2015-12-31	42,652.00	22-1	t	0.00		Monthly
10776	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY 	PRINCIPAL III		Permanent	3671	2014-12-21	2015-05-24	39,927.00	21-2	t	0.00		Monthly
10777	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY 	PRINCIPAL III		Permanent	3671	2012-06-01	2014-12-30	39,493.00	21-1	t	0.00		Monthly
10778	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY 	PRINCIPAL III		Permanent	3671	2011-12-20	2012-05-31	35,291.00	21-1	t	0.00		Monthly
10779	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	PRINCIPAL II		Permanent	3671	2010-01-02	2011-12-19	32,810.00	20-1	t	0.00		Monthly
10780	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY 	PRINCIPAL I		Permanent	3671	2003-01-28	2010-01-31	24,611.00	18-2	t	0.00		Monthly
10781	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	ELEMENTARY SCHOOL HEAD TEACHER III		Permanent	3671	2002-02-21	2003-01-27	13,300.00	15-1	t	0.00		Monthly
10782	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	TEACHER III		Permanent	3671	1993-10-07	2002-02-20	11,167.00	12-1	t	0.00		Monthly
10783	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	TEACHER I		Permanent	3671	1988-07-25	1993-10-06	3,133.00	10-1	t	0.00		Monthly
10784	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	ELEMENTARY GRADE TEACHER I		Substitute	3671	1987-08-12	1987-09-09	1,604.00	10-1	t	0.00		Monthly
10785	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OFFICE , BATANGAS CITY - LIBRARY HUB	LIBRARIAN II		Permanent	3672	2020-08-17	2024-07-09	36,977.00	15-2	t	0.00		Monthly
10786	UNIVERSITY OF BATANGAS/LEARNING RESOURCE CENTER	UNIT LIBRARIAN		Permanent	3672	2005-04-11	2020-08-06	33,000.00		f	0.00		Monthly
10787	DATAMINE CORPORATION	PRODUCTION ASSOCIATE		Contractual	3672	2004-09-01	2005-02-28	0.00		f	0.00		Monthly
10788	CONTENT SCIENCE	CONTENT TRANSCRIBER		Contractual	3672	2001-09-17	2002-03-07	0.00		f	0.00		Monthly
10789	GOLDEN BELL CONSTRUCTION & GENERAL SERVICES	PRODUCTION OPERATOR		Contractual	3672	1999-09-16	2000-06-30	0.00		f	0.00		Monthly
10790	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	PUBLIC SCHOOL DISTRICT SUPERVISOR		Permanent	3674	2023-01-01	2024-07-09	73,661.00	22-3	t	0.00		Monthly
10791	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	PUBLIC SCHOOL DISTRICT SUPERVISOR		Permanent	3674	2022-01-01	2022-12-31	72,113.00	22-3	t	0.00		Monthly
10792	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	PUBLIC SCHOOL DISTRICT SUPERVISOR		Permanent	3674	2021-12-21	2022-05-25	70,565.00	22-2	t	0.00		Monthly
10793	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	PUBLIC SCHOOL DISTRICT SUPERVISOR		Permanent	3674	2021-01-01	2021-05-24	69,481.00	22-2	t	0.00		Monthly
10794	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY 	PUBLIC SCHOOL DISTRICT SUPERVISOR		Permanent	3674	2020-01-01	2020-12-31	67,933.00	22-2	t	0.00		Monthly
10795	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	PUBLIC SCHOOL DISTRICT SUPERVISOR		Permanent	3674	2019-01-01	2019-12-31	66,785.00	22-2	t	0.00		Monthly
10796	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	PUBLIC SCHOOL DISTRICT SUPERVISOR		Permanent	3674	2018-05-25	2018-12-31	59,597.00	22-2	t	0.00		Monthly
10797	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	PUBLIC SCHOOL DISTRICT SUPERVISOR		Permanent	3674	2018-01-25	2018-05-24	57,717.00	22-1	t	0.00		Monthly
10798	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	PUBLIC SCHOOL DISTRICT SUPERVISOR		Permanent	3674	2017-01-01	2017-12-31	52,783.00	22-1	t	0.00		Monthly
10799	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY 	PUBLIC SCHOOLS DISTRICT SUPERVISOR 		Permanent	3675	2024-01-01	2024-07-09	74,762.00	22-4	t	0.00		Monthly
10800	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	PUBLIC SCHOOLS DISTRICT SUPERVISOR 		Permanent	3675	2023-01-01	2023-12-31	74,762.00	22-4	t	0.00		Monthly
10801	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	PUBLIC SCHOOLS DISTRICT SUPERVISOR 		Permanent	3675	2022-01-03	2022-12-31	73,214.00	22-4	t	0.00		Monthly
10802	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	PUBLIC SCHOOLS DISTRICT SUPERVISOR 		Permanent	3675	2022-01-01	2022-02-01	72,113.00	22-3	t	0.00		Monthly
10803	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3675	2021-01-01	2021-12-31	70,565.00	22-3	t	0.00		Monthly
10804	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	PUBLIC SCHOOLS DISTRICT SUPERVISOR 		Permanent	3675	2022-01-03	2022-12-31	67,469.00	22-2	t	0.00		Monthly
10806	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	PUBLIC SCHOOLS DISTRICT SUPERVISOR 		Permanent	3675	2018-01-01	2018-12-31	59,597.00	22-2	t	0.00		Monthly
10807	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	PUBLIC SCHOOLS DISTRICT SUPERVISOR 		Permanent	3675	2017-01-01	2017-12-31	53,503.00	22-2	t	0.00		Monthly
10808	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	PUBLIC SCHOOLS DISTRICT SUPERVISOR 		Permanent	3675	2016-01-03	2016-12-31	48,032.00	22-1	t	0.00		Monthly
10809	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	PUBLIC SCHOOLS DISTRICT SUPERVISOR 		Permanent	3675	2016-01-01	2016-01-02	47,448.00	22-1	t	0.00		Monthly
10810	DEPARTMENT OF EDUCATION 	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3673	2023-01-01	2024-07-09	72,577.00	22-2	t	0.00		Monthly
10811	DEPARTMENT OF EDUCATION 	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3673	2022-09-18	2022-12-31	71,029.00	22-	t	0.00		Monthly
10812	DEPARTMENT OF EDUCATION 	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3673	2022-01-01	2022-09-17	69,963.00	22-	t	0.00		Monthly
10813	DEPARTMENT OF EDUCATION 	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3673	2021-01-11	2021-12-31	68,415.00	22-	t	0.00		Monthly
10814	DEPARTMENT OF EDUCATION 	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3673	2020-01-01	2020-12-31	66,867.00	22-	t	0.00		Monthly
10815	DEPARTMENT OF EDUCATION 	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3673	2019-09-18	2019-12-13	65,319.00	22-	t	0.00		Monthly
10816	DEPARTMENT OF EDUCATION	PRINCIPAL IV		Permanent	3673	2019-01-01	2019-09-17	65,152.00	22-	t	0.00		Monthly
10817	DEPARTMENT OF EDUCATION 	PRINCIPAL IV		Permanent	3673	2018-02-19	2018-12-31	58,717.00	22-	t	0.00		Monthly
10818	DEPARTMENT OF EDUCATION 	PRINCIPAL III		Permanent	3673	2018-01-11	2018-12-18	52,554.00	21-	t	0.00		Monthly
10819	DEPARTMENT OF EDUCATION	PRINCIPAL III		Permanent	3673	2017-01-01	2017-12-31	47,779.00	21-	t	0.00		Monthly
10820	DEPARTMENT OF EDUCATION 	PRINCIPAL III		Permanent	3673	2016-01-11	2016-12-31	43,439.00	21-	t	0.00		Monthly
10821	DEPARTMENT OF EDUCATION 	PRINCIPAL III		Permanent	3673	2016-01-11	2016-12-13	43,439.00	21-	t	0.00		Monthly
10822	DEPARTMENT OF EDUCATION 	PRINCIPAL II		Permanent	3673	2012-06-01	2015-05-24	36,567.00	20-	t	0.00		Monthly
10823	DEPARTMENT OF EDUCATION	PRINCIPAL II		Permanent	3673	2012-05-09	2012-05-31	32,810.00	20-	t	0.00		Monthly
10824	DEPARTMENT OF EDUCATION 	PRINCIPAL I		Permanent	3673	2011-06-11	2012-05-06	30,474.00	19-	t	0.00		Monthly
10825	DEPARTMENT OF EDUCATION 	PRINCIPAL I		Permanent	3673	2011-04-11	2011-05-31	21,135.67	19-	t	0.00		Monthly
10826	DEPARTMENT OF EDUCATION 	HEAD TEACHER III		Permanent	3673	2010-06-24	2011-04-10	21,969.00	16-	t	0.00		Monthly
10827	DEPARTMENT OF EDUCATION 	HEAD TEACHER III		Permanent	3673	2008-07-24	2009-06-30	16,093.00	16-	t	0.00		Monthly
10828	DEPARTMENT OF EDUCATION 	TEACHER III		Permanent	3673	2008-07-01	2008-07-28	13,512.00	13-	t	0.00		Monthly
10829	DEPARTMENT OF EDUCATION 	TEACHER III		Permanent	3673	2002-07-17	2007-06-30	11,167.00	13-	t	0.00		Monthly
10830	DEPARTMENT OF EDUCATION 	TEACHER II		Permanent	3673	2001-07-01	2002-07-16	10,535.00	12-	t	0.00		Monthly
10831	DEPARTMENT OF EDUCATION 	TEACHER II		Permanent	3673	2000-01-01	2001-06-30	10,033.00	12-	t	0.00		Monthly
10832	DEPARTMENT OF EDUCATION 	TEACHER II		Permanent	3673	1998-01-01	1998-12-31	9,121.00	12-	t	0.00		Monthly
10833	DEPARTMENT OF EDUCATION 	TEACHER II		Permanent	3673	1997-12-15	1997-12-31	9,121.00	12-	t	0.00		Monthly
10834	DEPARTMENT OF EDUCATION 	ELEMENTARY GRADE TEACHER		Permanent	3673	1997-11-01	1997-12-14	9,121.00	11-	t	0.00		Monthly
10835	DEPARTMENT OF EDUCATION	ELEMENTARY GRADE TEACHER 		Permanent	3673	1997-01-01	1997-10-31	8,605.00	11-	t	0.00		Monthly
10836	DEPARTMENT OF EDUCATION 	ELEMENTARY GRADE TEACHER 		Permanent	3673	1996-01-01	1996-12-31	7,309.00	11-	t	0.00		Monthly
10837	DEPARTMENT OF EDUCATION 	ELEMENTARY GRADE TEACHER 		Permanent	3673	1995-01-01	1995-12-31	6,179.67	11-	t	0.00		Monthly
10838	DEPARTMENT OF EDUCATION 	ELEMENTARY GRADE TEACHER 		Permanent	3673	1989-11-10	1993-12-31	3,102.00	11-	t	0.00		Monthly
10873	SCHOOL DIVISION OF BATANGAS CITY	PROJECT DEVELOPMENT OFFICER I		Permanent	3676	2024-01-08	2024-07-09	27,000.00	11-	t	0.00		Monthly
11021	DEPARTMENT OF EDUCATION	NURSE II		Permanent	3685	2014-11-09	2015-12-31	25,161.00	15-2	t	0.00		Monthly
10839	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY 	PUBLIC SCHOOLS DISTRICT SUPERVISOR 		Permanent	3675	2013-01-03	2013-12-31	42,652.00	22-1	t	0.00		Monthly
10840	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	PRINCIPAL IV 		Permanent	3675	2012-06-01	2013-01-02	42,652.00	22-	t	0.00		Monthly
10841	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	PRINCIPAL IV 		Permanent	3675	2011-08-22	2012-05-31	37,812.00	22-	t	0.00		Monthly
10842	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	PRINCIPAL III 		Permanent	3675	2011-06-01	2011-08-21	35,219.00	21-	t	0.00		Monthly
10843	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	PRINCIPAL III 		Permanent	3675	2010-06-24	2011-05-31	30,945.00	21-	t	0.00		Monthly
10844	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	PRINCIPAL III 		Permanent	3675	2008-07-01	2010-06-23	26,671.00	21-	t	0.00		Monthly
10845	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	PRINCIPAL III 		Permanent	3675	2008-07-01	2009-06-30	21,537.00	21-	t	0.00		Monthly
10846	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	PRINCIPAL III 		Permanent	3675	2008-06-03	2008-06-04	19,579.00	21-	t	0.00		Monthly
10847	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	PRINCIPAL II 		Permanent	3675	2007-07-01	2008-06-03	18,471.00	20-	t	0.00		Monthly
10848	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	PRINCIPAL II 		Permanent	3675	2006-01-25	2007-06-30	16,792.00	20-	t	0.00		Monthly
10849	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	PRINCIPAL I 		Permanent	3675	2005-07-01	2006-01-24	16,237.00	19-1	t	0.00		Monthly
10850	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	PRINCIPAL I 		Permanent	3675	2001-07-01	2005-06-30	15,841.00	19-1	t	0.00		Monthly
10851	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	PRINCIPAL I 		Permanent	3675	2001-02-08	2001-06-30	15,087.00	19-	t	0.00		Monthly
10852	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	HEAD TEACHER III 		Permanent	3675	2000-01-01	2001-02-07	12,667.00	16-	t	0.00		Monthly
10853	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	HEAD TEACHER III 		Permanent	3675	1999-11-18	1999-12-31	11,515.00	16-	t	0.00		Monthly
10854	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	TEACHER III 		Permanent	3675	1999-01-01	1999-11-17	9,668.00	13-	t	0.00		Monthly
10855	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	TEACHER III 		Permanent	3675	1988-01-01	1998-12-31	9,668.00	13-	t	0.00		Monthly
10856	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	TEACHER III 		Permanent	3675	1997-11-01	1997-12-31	9,668.00	13-	t	0.00		Monthly
10857	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	TEACHER III 		Permanent	3675	1997-01-01	1997-10-31	8,118.00	13-	t	0.00		Monthly
10858	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY 	TEACHER III 		Permanent	3675	1996-01-01	1996-12-31	6,568.00	13-	t	0.00		Monthly
10860	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	TEACHER III 		Permanent	3675	1994-01-01	1994-12-31	4,240.00	13-	t	0.00		Monthly
10861	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	TEACHER III 		Permanent	3675	1993-10-07	1993-12-31	3,540.00	13-	t	0.00		Monthly
10862	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	ELEMENTARY GRADE TEACHER 		Permanent	3675	1989-07-01	1993-10-06	3,102.00	11-	t	0.00		Monthly
10863	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	ELEMENTARY GRADE TEACHER 		Permanent	3675	1989-06-13	1989-06-30	1,764.00	11-	t	0.00		Monthly
10805	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	PUBLIC SCHOOLS DISTRICT SUPERVISOR 		Permanent	3675	2019-01-01	2019-02-01	66,385.00	22-2	t	0.00		Monthly
10859	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	TEACHER III 		Permanent	3675	1995-01-01	1995-12-31	5,240.00	13-	t	0.00		Monthly
10903	SDO BATANGAS CITY	EDUCATION PROGRAM SUPERVISOR		Permanent	3678	2023-01-01	2024-07-09	72,755.00	2-	t	0.00		Monthly
10904	SDO BATANGAS CITY	EDUCATION PROGRAM SUERVISOR		Permanent	3678	2019-09-25	2022-12-31	71,029.00	1-	t	0.00		Monthly
10905	BANABA WEST NATIONAL HIGH SCHOOL	MASTER TEACHER II		Permanent	3678	2016-06-13	2019-09-24	39,150.00		t	0.00		Monthly
10864	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	PUBLIC SCHOOL DISTRICT SUPERVISOR		Permanent	3674	2016-01-01	2016-12-12	47,448.00	22-1	t	0.00		Monthly
10865	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	PRINCIPAL III 		Permanent	3674	2014-05-25	2015-03-12	43,439.00	22-1	t	0.00		Monthly
10866	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	PRINCIPAL III		Permanent	3674	2012-06-01	2014-11-12	39,493.00	21-1	t	0.00		Monthly
10867	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	PRINCIPAL II		Permanent	3674	2011-12-12	2012-05-31	36,970.00	20-1	t	0.00		Monthly
10868	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	PRINCIPAL II		Permanent	3674	2010-02-01	2011-12-19	36,567.00	20-1	t	0.00		Monthly
10869	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	PRINCIPAL I		Permanent	3674	2002-02-02	2003-01-27	30,880.00	19-1	t	0.00		Monthly
10870	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	PRINCIPAL I		Permanent	3674	1993-10-07	2002-02-20	30,474.00	19-	t	0.00		Monthly
10871	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	PRINCIPAL I 		Permanent	3674	1987-07-07	1987-08-12	270,880.00	19-	t	0.00		Monthly
10872	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	PRINCIPAL I		Casual	3674	1987-08-12	1987-09-09	23,703.00	19-	t	0.00		Monthly
10879	DEPED - BATANGAS VITY	EDUCATION PROGRAM SUPERVISOR		Permanent	3677	2023-01-06	2024-07-09	72,577.00	22-2	t	0.00		Monthly
10880	DEPED - BATANGAS CITY	EDUCATION PROGRAM SUPERVISOR		Permanent	3677	2023-01-01	2023-01-05	71,511.00	22-1	t	0.00		Monthly
10881	DEPED - BATANGAS CITY	EDUCATION PROGRAM SUPERVISOR		Permanent	3677	2022-01-01	2022-12-31	699,630.00	22-1	t	0.00		Monthly
10882	DEPED - BATANGAS CITY	EDUCATION PROGRAM SUPERVISOR		Permanent	3677	2021-01-01	2021-12-31	684,150.00	22-1	t	0.00		Monthly
10883	DEPED - BATANGAS CITY	EDUCATION PROGRAM SUPERVISOR		Permanent	3677	2020-01-06	2020-12-31	66,867.00	22-1	t	0.00		Monthly
10884	DEPED - BATANGAS CITY	EDUCATION PROGRAM SUPERVISOR		Permanent	3677	2020-01-06	2020-12-31	66,867.00	22-1	t	0.00		Monthly
10885	DEPED - BATANGAS CITY	MASTER TEACHER II		Permanent	3677	2020-01-01	2020-01-05	47,430.00	19-2	t	0.00		Monthly
10886	DEPED - BATANGAS CITY	MASTER TEACHER II		Permanent	3677	2019-06-13	2019-12-31	46,008.00	19-2	t	0.00		Monthly
10887	DEPED - BATANGAS CITY	MASTER TEACHER II		Permanent	3677	2019-01-01	2019-06-12	45,269.00	19-1	t	0.00		Monthly
10888	DEPED - BATANGAS CITY	MASTER TEACHER II		Permanent	3677	2018-01-01	2018-12-31	42,099.00	19-1	t	0.00		Monthly
10889	DEPED - BATANGAS CITY	MASTER TEACHER II		Permanent	3677	2017-01-01	2017-12-31	39,151.00	19-1	t	0.00		Monthly
10890	DEPED - BATANGAS CITY 	MASTER TEACHER II		Permanent	3677	2016-06-13	2016-12-31	36,409.00	19-1	t	0.00		Monthly
10891	GOLDEN GATE COLLEGES	PROFESSOR C		Contractual	3677	2004-06-14	2005-06-12	10,800.00		f	0.00		Monthly
10892	BATANGAS STATE UNIVERSITY	INSTRUCTOR I 		Contractual	3677	2003-06-09	2003-10-17	10,160.00		t	0.00		Monthly
10893	BATANGAS STATE UNIVERSITY	INSTRUCTOR I 		Contractual	3677	2003-01-02	2003-12-28	10,160.00		t	0.00		Monthly
10894	BATANGAS STATE UNIVERSITY	INSTRUCTOR I 		Contractual	3677	2002-11-04	2002-12-20	10,160.00		t	0.00		Monthly
10895	BATANGAS STATE UNIVERSITY	INSTRUCTOR I 		Contractual	3677	2002-06-17	2024-07-09	10,160.00		t	0.00		Monthly
10896	BATANGAS STATE UNIVERSITY 	INSTRUCTOR I 		Contractual	3677	2002-04-10	2002-05-31	10,160.00		t	0.00		Monthly
10897	BATANGAS STATE UNIVERSITY 	INSTRUCTOR I 		Contractual	3677	2002-01-02	2002-03-26	10,160.00		t	0.00		Monthly
10898	BATANGAS STATE UNIVERSITY 	INSTRUCTOR I 		Contractual	3677	2001-09-17	2001-12-21	10,160.00		t	0.00		Monthly
10899	BATANGAS STATE INIVERSITY	INSTRUCTOR I 		Contractual	3677	2001-07-01	2002-09-01	9,662.00		t	0.00		Monthly
10900	BATANGAS STATE UNIVERSITY	INSTRUCTOR I 		Contractual	3677	2001-06-07	2001-06-13	9,662.00		f	0.00		Monthly
10901	PABLO BORBON  MEMORIAL INSTITUTE 	INSTRUCTOR I 		Contractual	3677	2000-06-05	2001-03-30	9,662.80		t	0.00		Monthly
10902	PABLO BORBON MEMORIAL INSTITUTE OF TECHNOLOGY	INSTRUCTOR I		Contractual	3677	1999-09-07	2000-03-31	8,788.00		t	0.00		Monthly
10874	SCHOOL DIVISION OF BATANGAS CITY	ADMINISTRATIVE AIDE VI		Permanent	3676	2022-01-05	2024-01-07	17,553.00	6-	t	0.00		Monthly
10875	MME JJ TCM TRANSPORT CORPORATION	HR/ADMIN OFFICER		Permanent	3676	2019-03-02	2021-10-15	9,698.00		f	0.00		Monthly
10876	AGONCILLO COLLEGE INC	JUNIOR HIGH SCHOOL TEACHER		Contractual	3676	2015-01-06	2016-05-01	6,593.00		f	0.00		Monthly
10877	TOSHIBA INFORMATION EQUIPMENT (PHILS.) INC.	PRODUCTION OPERATOR		Permanent	3676	2002-08-05	2014-06-24	11,050.00		f	0.00		Monthly
10878	DITA ELEMENTARY SCHOOL UNDER AGENCY	ELEMENTARY COMPUTER TEACHER 		Contractual	3676	2001-04-06	2002-04-15	4,590.00		f	0.00		Monthly
10906	BATANGAS NATIONAL HIGH SCHOOL	TEACHER I		Permanent	3678	2014-06-01	2016-06-12	18,100.00	1-	t	0.00		Monthly
10907	STA TERESA COLLEGE	COLLEGE TEACHER 		Permanent	3678	2013-06-01	2014-04-10	31,893.00	11-	f	0.00		Monthly
10908	STA TERESA COLLEGE	ENGLISH DEPARTMENT HEAD		Permanent	3678	2012-06-01	2013-05-31	27,000.00	8-	f	0.00		Monthly
10909	STA TERESA COLLEGE	COLLEGE TEACHER		Permanent	3678	2011-06-01	2012-05-31	27,000.00	6-	f	0.00		Monthly
10910	STA TERESA COLLEGE	HIGH SCHOOL TEACHER		Permanent	3678	2010-06-01	2011-05-31	25,000.00	6-	f	0.00		Monthly
10911	STA TERESA COLLEGE	ENGLISH DEPARTMENT HEAD		Permanent	3678	2006-06-01	2010-05-31	16,000.00		f	0.00		Monthly
10912	STA TERESA COLLEGE	TEACHER		Permanent	3678	2004-06-01	2006-05-31	15,000.00		f	0.00		Monthly
10913	BATANGAS SCIENCE HIGH SCHOOL	TEACHER		Permanent	3678	2002-06-01	2004-03-31	9,000.00		f	0.00		Monthly
10914	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR I		Permanent	3681	2023-01-01	2024-07-10	74,762.00	22-4	t	0.00		Monthly
10915	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR I		Permanent	3681	2022-01-01	2022-12-31	73,124.00	22-4	t	0.00		Monthly
10916	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR I		Permanent	3681	2021-05-09	2023-01-01	71,666.00	22-4	t	0.00		Monthly
10917	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR I		Permanent	3681	2021-01-01	2021-05-08	70,655.00	22-3	t	0.00		Monthly
10918	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	 EDUCATION PROGRAM SUPERVISOR I		Probationary	3681	2020-01-01	2020-12-31	69,017.00	22-3	t	0.00		Monthly
10919	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY 	 EDUCATION PROGRAM SUPERVISOR I		Permanent	3681	2019-01-01	2019-12-31	67,469.00	22-3	t	0.00		Monthly
10920	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY	EDUCATION PROGRAM SUPERVISOR I		Permanent	3681	2018-05-09	2018-12-31	60,491.00	22-2	t	0.00		Monthly
10921	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR I		Permanent	3681	2018-01-01	2018-05-08	59,597.00	22-2	t	0.00		Monthly
10922	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR I		Permanent	3681	2017-01-01	2017-12-31	53,503.00	22-2	t	0.00		Monthly
10923	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR I		Permanent	3681	2016-01-01	2016-12-31	48,032.00	22-1	t	0.00		Monthly
10924	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR I		Permanent	3681	2015-05-09	2015-12-31	43,121.00	22-1	t	0.00		Monthly
10925	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR I		Permanent	3681	2012-06-01	2015-05-08	42,652.00	22-1	t	0.00		Monthly
10926	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR I		Permanent	3681	2012-05-09	2012-05-31	37,812.00	22-1	t	0.00		Monthly
10927	NORTH DISTRICT 	PRINCIPAL II		Permanent	3681	2011-08-22	2012-05-08	32,810.00	20-1	t	0.00		Monthly
10928	NORTH DISTRICT 	PRINCIPAL I		Permanent	3681	2011-06-01	2011-08-21	30,830.00	19-1	t	0.00		Monthly
10929	NORTH DISTRICT 	PRINCIPAL I		Permanent	3681	2010-06-24	2011-05-31	27,528.00	19-1	t	0.00		Monthly
10930	NORTH DISTRICT 	PRINCIPAL I		Permanent	3681	2009-08-23	2010-06-23	24,177.00	19-1	t	0.00		Monthly
10931	NORTH DISTRICT 	PRINCIPAL I		Permanent	3681	2009-07-01	2009-08-22	23,703.00	19-1	t	0.00		Monthly
10932	NORTH DISTRICT 	PRINCIPAL I		Permanent	3681	2008-07-01	2009-06-30	19,168.00	19-1	t	0.00		Monthly
10933	NORTH DISTRICT 	PRINCIPAL I		Permanent	3681	2007-07-01	2008-06-30	19,168.00	19-1	t	0.00		Monthly
10934	NORTH DISTRICT 	PRINCIPAL I		Permanent	3681	2006-08-22	2007-06-30	17,425.00	19-1	t	0.00		Monthly
10935	NORTH DISTRICT 	TEACHER III		Permanent	3681	2003-06-16	2006-08-21	11,167.00	13-1	t	0.00		Monthly
10936	NORTH DISTRICT 	TEACHER I		Permanent	3681	2001-08-06	2003-06-15	10,033.00	11-1	t	0.00		Monthly
10937	NORTH DISTRICT 	ELEMENTARY GRADE TEACHER		Permanent	3681	2001-07-01	2001-08-05	9,939.00	11-1	t	0.00		Monthly
10938	NORTH DISTRICT	ELEMENTARY GRADE TEACHER		Permanent	3681	2000-01-01	2001-06-30	9,466.00	11-1	t	0.00		Monthly
10939	NORTH DISTRICT 	ELEMENTARY GRADE TEACHER		Permanent	3681	1999-01-01	1999-12-31	8,605.00	11-1	t	0.00		Monthly
10940	BATANGAS CITY 	ELEMENTARY GRADE TEACHER		Permanent	3681	1998-01-01	1998-12-31	8,605.00	11-1	t	0.00		Monthly
10941	BATANGAS CITY	ELEMENTARY GRADE TEACHER		Permanent	3681	1997-11-01	1997-12-31	8,605.00	11-1	t	0.00		Monthly
10942	BATANGAS CITY 	ELEMENTARY GRADE TEACHER		Permanent	3681	1996-06-03	1996-12-31	6,013.00	10-1	t	0.00		Monthly
10943	STA. TERESA COLLEGE	SUBJECT TEACHER		Probationary	3681	1994-06-01	1996-04-11	5,000.00		f	0.00		Monthly
10944	STO. NINO FORMATION AND SCIENCE SCHOOL	CLASSROOM TEACHER		Probationary	3681	1991-06-01	1994-03-31	3,100.00		f	0.00		Monthly
10945	DEPARTMENT OF EDUCATION- BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR 		Permanent	3680	2022-12-05	2024-07-10	71,511.00	22-1	t	0.00		Monthly
10946	DEPARTMENT OF EDUCATION- BATANGAS CITY 	SENIOR EDUCATION PROGRAM SPECIALIST- PLANNING & RESEARCH 		Permanent	3680	2016-07-25	2024-07-10	51,325.00	19-3	t	0.00		Monthly
10947	BATANGAS STATE UNIVERSITY- COLLEGE OF INFORMATION & COMPUTING SCIENCES ( CICS) 	GUEST LECTURER/ PART- TIMER 		Contract of Service	3680	2016-01-06	2024-07-10	296.00	17-	t	0.00		Hourly
10948	BATANGAS STATE UNIVERSITY- COLLEGE OF INFORMATION & COMPUTING SCIENCES ( CICS) 	RESEARCH COORDINATOR/ INSTRUCTOR  		Contractual	3680	2010-07-02	2016-05-20	19,940.00		t	0.00		Monthly
10949	ST. ANTHONY COLLEGE- CALAPAN CITY 	DEPARTMENT/ HEAD TEACHER & ITE INSTRUCTOR		Casual	3680	2004-06-13	2010-03-03	22,000.00		f	0.00		Monthly
10950	SYSTEM TECHNOLOGY INSTITUTE ( STI) CALAPAN CITY 	IT/ MATH / SCIENCE INSTRUCTOR 		Casual	3680	2000-06-15	2004-03-31	18,000.00		f	0.00		Monthly
10951	AMATELEC COMMUNICATION ( AMATEL ) CALAPAN CITY 	HARDWARE INSTRUCTOR 		Probationary	3680	1998-06-15	2000-03-31	16,000.00		f	0.00		Monthly
10952	SCHOOLS DIVISION OF BATANGAS CITY 	PROJECT DEVELOPMENT OFFICER 2		Permanent	3679	2023-10-01	2024-07-10	36,997.00	15-2	t	0.00		Monthly
10953	SCHOOLS DIVISION OF BATANGAS CITY 	PROJECT DEVELOPMENT OFFICER 2		Permanent	3679	2023-01-01	2023-09-30	36,619.00	15-	t	0.00		Monthly
10954	SCHOOLS DIVISION OF BATANGAS CITY 	PROJECT DEVELOPMENT OFFICER 2		Permanent	3679	2022-01-01	2022-12-31	35,097.00	15-	t	0.00		Monthly
10955	SCHOOLS DIVISION OF BATANGAS CITY 	PROJECT DEVELOPMENT OFFICER 2		Permanent	3679	2021-01-01	2021-12-31	335,750.00	15-	t	0.00		Monthly
10956	SCHOOLS DIVISION OF BATANGAS CITY 	PROJWECT DEVELOPMENT OFFICER 2		Permanent	3679	2020-06-01	2021-01-31	32,053.00	15-1	t	0.00		Monthly
10957	BATANGAS NATIONAL HIGH SCHOOL 	TEACHER I		Permanent	3679	2020-01-01	2020-05-31	22,889.00	11-	t	0.00		Monthly
10958	BATANGAS NATIONAL HIGH SCHOOL 	TEACHER I 		Permanent	3679	2019-06-02	2019-12-31	21,327.00		t	0.00		Monthly
10959	BATANGAS NATIONAL HIGH SCHOOL 	TEACHER I 		Permanent	3679	2018-01-01	2018-12-31	20,437.00	11-	t	0.00		Monthly
10960	BATANGAS NATIONAL HIGH SCHOOL 	TEACHER I 		Permanent	3679	2017-01-01	2019-12-31	21,327.00	11-2	t	0.00		Monthly
10961	BATANGAS NATIONAL HIGH SCHOOL 	TEACHER I		Permanent	3679	2019-01-01	2019-06-02	21,038.00	11-	t	0.00		Monthly
10962	BATANGAS NATIONAL HIGH SCHOOL 	TEACHER I		Permanent	3679	2018-01-01	2018-12-31	20,427.00	11-	t	0.00		Monthly
10963	BATANGAS NATIONAL HIGH SCHOOL 	TEACHER I 		Permanent	3679	2017-01-01	2017-12-31	19,853.00	11-	t	0.00		Monthly
10964	BATANGAS NATIONAL HIGH SCHOOL 	TEACHER I 		Permanent	3679	2016-06-03	2016-12-31	19,286.00	11-1	t	0.00		Monthly
10965	BATANGAS NATIONAL HIGH SCHOOL 	TEACHER I 		Permanent	3679	2016-01-01	2016-06-02	19,077.00	11-	t	0.00		Monthly
10966	BATANGAS NATIONAL HIGH SCHOOL 	TEACHER I		Permanent	3679	2013-06-03	2015-12-31	18,549.00	11-	t	0.00		Monthly
10967	SDO BATANGAS CITY 	PUBLIC SCHOOL DISTRICT SUPERVISOR		Permanent	3682	2023-08-18	2024-07-10	73,511.00	22-1	t	0.00		Monthly
10968	PINAMUKAN NATIONAL HIGH SCHOOL	SECONDARY SCHOOL PRINCIPAL III		Permanent	3682	2023-01-01	2023-08-17	63,977.00	21-1	t	0.00		Monthly
10969	PINAMUKAN NATIONAL HIGH SCHOOL	SECONDARY SCHOOL PRINCIPAL III		Permanent	3682	2022-01-07	2022-12-31	62,449.00	21-1	t	0.00		Monthly
10970	TALAHIB PANDAYAN NATIONAL HIGH SCHOOL 	SECONDARY SCHOOL PRINCIPAL III		Permanent	3682	2022-01-01	2022-01-06	62,449.00	21-1	t	0.00		Monthly
10971	TALAHIB PANDAYAN NATIONAL HIGH SCHOOL 	SECONDARY SCHOOL PRINCIPAL III		Permanent	3682	2021-01-15	2021-12-31	60,901.00	21-1	t	0.00		Monthly
10972	STA. RITA NATIONAL HIGH SCHOOL 	SECONDARY SCHOOL PRINCIPAL II		Permanent	3682	2021-01-01	2021-01-14	54,251.00	20-1	t	0.00		Monthly
10973	STA. RITA NATIONAL HIGH SCHOOL 	SECONDARY SCHOOL PRINCIPAL II		Permanent	3682	2020-01-01	2020-12-31	52,703.00	20-1	t	0.00		Monthly
10974	STA. RITA NATIONAL HIGH SCHOOL 	SECONDARY SCHOOL PRINCIPAL II		Permanent	3682	2019-10-01	2019-12-31	51,155.00	20-1	t	0.00		Monthly
10975	STA. RITA NATIONAL HIGH SCHOOL 	SECONDARY SCHOOL PRINCIPAL I		Permanent	3682	2019-01-01	2019-09-30	45,269.00	19-5	t	0.00		Monthly
10976	STA. RITA NATIONAL HIGH SCHOOL 	SECONDARY SCHOOL PRINCIPAL III		Permanent	3682	2018-07-02	2018-12-31	42,099.00	19-1	t	0.00		Monthly
10977	TABANGAO NATIONAL HIGH SCHOOL 	SECONDARY SCHOOL TEACHER III		Permanent	3682	2018-01-01	2018-07-01	24,799.00	13-3	t	0.00		Monthly
10978	TABANGAO NATIONAL HIGH SCHOOL	SECONDARY SCHOOL TEACHER III		Permanent	3682	2017-01-01	2017-12-31	23,780.00	13-3	t	0.00		Monthly
10979	TABANGAO NATIONAL HIGH SCHOOL 	SECONDARY SCHOOL TEACHER III		Permanent	3682	2016-01-01	2016-12-31	22,804.00	13-3	t	0.00		Monthly
10980	TABANGAO NATIONAL HIGH SCHOOL 	SECONDARY SCHOOL TEACHER III		Permanent	3682	2015-10-01	2015-12-31	21,867.00	13-3	t	0.00		Monthly
10981	TABANGAO NATIONAL HIGH SCHOOL 	SECONDARY SCHOOL TEACHER III		Permanent	3682	2015-10-01	2015-12-31	21,867.00	13-3	t	0.00		Monthly
10982	TABANGAO NATIONAL HIGH SCHOOL 	SECONDARY SCHOOL TEACHER III		Permanent	3682	2013-06-01	2015-09-30	21,650.00	13-2	t	0.00		Monthly
10983	TABANGAO NATIONAL HIGH SCHOOL	SECONDARY SCHOOL TEACHER III		Permanent	3682	2012-01-01	2012-05-31	21,650.00	13-2	t	0.00		Monthly
10984	TABANGAO NATIONAL HIGH SCHOOL 	SECONDARY SCHOOL TEACHER III		Permanent	3682	2012-01-01	2012-05-31	19,908.00	13-2	t	0.00		Monthly
10986	TABANGAO NATIONAL HIGH SCHOOL 	SECONDARY SCHOOL TEACHER III		Permanent	3682	2010-06-24	2011-05-31	17,880.00	13-1	t	0.00		Monthly
10985	TABANGAO NATIONAL HIGH SCHOOL 	SECONDARY SCHOOL TEACHER III		Permanent	3682	2011-06-01	2011-12-31	19,658.00	13-1	t	0.00		Monthly
10987	TABANGAO NATIONAL HIGH SCHOOL 	SECONDARY SCHOOL TEACHER III		Permanent	3682	2009-10-01	2010-06-23	16,101.00	13-1	t	0.00		Monthly
10988	TABANGAO NATIONAL HIGH SCHOOL 	SECONDARY SCHOOL TEACHER II		Permanent	3682	2009-07-01	2009-09-30	15,733.00	13-1	t	0.00		Monthly
10989	TABANGAO NATIONAL HIGH SCHOOL  	SECONDARY SCHOOL TEACHER II		Permanent	3682	2008-07-21	2009-06-30	13,392.00	12-1	t	0.00		Monthly
10990	TABANGAO NATIONAL HIGH SCHOOL 	SECONDARY SCHOOL TEACHER I		Permanent	3682	2008-07-01	2008-07-20	13,275.00	11-6	t	0.00		Monthly
10991	TABANGAO NATIONAL HIGH SCHOOL 	 SECONDARY SCHOOL TEACHER I		Permanent	3682	2007-07-01	2008-06-30	12,068.00	11-6	t	0.00		Monthly
10992	TABANGAO NATIONAL HIGH SCHOOL 	SECONDARY SCHOOL TEACHER I		Permanent	3682	2007-01-01	2007-06-30	10,971.00	11-5	t	0.00		Monthly
10993	TABANGAO NATIONAL HIGH SCHOOL 	SECONDARY SCHOOL TEACHER I		Permanent	3682	2003-06-23	2006-12-31	10,442.00	11-4	t	0.00		Monthly
10994	PEDRO S. TOLENTINO MEMORIAL HIGH SCHOOL 	SECONDARY SCHOOL TEACHER I		Permanent	3682	2002-10-01	2003-06-22	10,442.00	11-4	t	0.00		Monthly
10995	PEDRO S. TOLENTINO MEMORIAL HIGH SCHOOL 	SECONDARY SCHOOL TEACHER I		Permanent	3682	2001-07-01	2002-09-30	9,939.00	11-3	t	0.00		Monthly
10996	PEDRO S. TOLENTINO MEMORIAL HIGH SCHOOL 	SECONDARY SCHOOL TEACHER I		Permanent	3682	2000-01-01	2001-06-30	9,466.00	11-3	t	0.00		Monthly
10997	PEDRO S. TOLENTINO MEMORIAL HIGH SCHOOL 	SECONDARY SCHOOL TEACHER I		Permanent	3682	1997-11-01	1999-12-31	8,605.00	11-2	t	0.00		Monthly
10998	PEDRO S. TOLENTINO MEMORIAL HIGH SCHOOL	SECONDARY SCHOOL TEACHER I		Permanent	3682	1997-01-01	1997-10-31	7,309.00	11-2	t	0.00		Monthly
10999	PEDRO S. TOLENTINO MEMORIAL HIGH SCHOOL 	SECONDARY SCHOOL TEACHER I		Permanent	3682	1996-01-01	1996-12-31	6,013.00	11-2	t	0.00		Monthly
11000	PEDRO S. TOLENTINO MEMORIAL HIGH SCHOOL 	SECONDARY SCHOOL TEACHER I		Permanent	3682	1995-01-01	1995-12-31	4,902.00	11-1	t	0.00		Monthly
11001	PEDRO S. TOLENTINO MEMORIAL HIGH SCHOOL 	SECONDARY SCHOOL TEACHER I		Permanent	3682	1994-01-01	1994-12-31	3,902.00	11-1	t	0.00		Monthly
11002	PEDRO S. TOLENTINO MEMORIAL HIGH SCHOOL 	SECONDARY SCHOOL TEACHER I		Permanent	3682	1993-06-14	1993-12-31	3,102.00	11-1	t	0.00		Monthly
11003	DEPARTMENT OF EDUCATION BATANGAS CITY	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3683	2022-02-16	2024-07-10	73,661.00	22-3	t	0.00		Monthly
11004	DEPARTMENT OF EDUCATION BATANGAS CITY	PUBLIC SCHOOLS DISTRICT SUPERVISOR		Permanent	3683	2022-02-15	2022-03-01	72,113.00	22-3	t	0.00		Monthly
11005	DEPARTMENT OF EDUCATION BATANGAS CITY	PRINCIPAL IV		Permanent	3683	2013-06-12	2016-02-16	69,481.00	22-2	t	0.00		Monthly
11006	DEPARTMENT OF EDUCATION BATANGAS CITY	PRINCIPAL III		Permanent	3683	2013-06-13	2016-02-15	39,493.00	21-1	t	0.00		Monthly
11007	DEPARTMENT OF EDUCATION BATANGAS CITY	PRINCIPAL II		Permanent	3683	2011-08-22	2013-06-12	36,567.00	20-1	t	0.00		Monthly
11008	DEPARTMENT OF EDUCATION BATANGAS CITYP	PRINCIPAL I		Permanent	3683	2006-07-03	2011-08-21	30,880.00	19-1	t	0.00		Monthly
11009	DEPARTMENT OF EDUCATION BATANGAS CITY	MASTER TEACHER I		Permanent	3683	2003-12-11	2006-07-02	14,098.00	16-1	t	0.00		Monthly
11010	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER III		Permanent	3683	2001-08-10	2003-12-10	11,167.00	13-1	t	0.00		Monthly
11011	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER II		Permanent	3683	1998-10-05	2001-08-09	10,535.00	12-1	t	0.00		Monthly
11012	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER I		Permanent	3683	1994-06-06	1998-10-04	8,605.00	11-1	t	0.00		Monthly
11013	DEPARTMENT OF EDUCATION - SCHOOLS DIVISION OF BATANGAS CITY	NURSE II		Permanent	3684	2017-04-03	2024-07-10	405,090.00	16-3	t	0.00		Monthly
11014	DOHA CABLES	COMPANY NURSE/SAFETY OFFICER		Contractual	3684	2016-02-03	2016-07-27	30,804.00		f	0.00		Monthly
11015	GAD BUILDERS AND INTERPRISES INCORPORATED	COMPANY NURSE/SAFETY OFFICER		Contractual	3684	2013-04-01	2015-08-01	18,000.00		f	0.00		Monthly
11016	MONOLOTH CONSTRUCTION AND DEVELOPMENT CORPORATION	COMPANY NURSE/SAFETY OFFICER		Contractual	3684	2012-09-01	2013-03-02	12,000.00		f	0.00		Monthly
11017	GAD BUILDERS AND ENTERPRISES INCORPORATED 	COMPANY NURSE/SAFETY OFFICER		Contractual	3684	2012-01-02	2012-07-01	12,000.00		f	0.00		Monthly
11018	RSP LIM CONSTRUCTION COMPANY 	COMPANY NURSE/SAFETY OFFICER		Contractual	3684	2010-05-02	2011-12-01	10,000.00		t	0.00		Monthly
11019	DEPARTMENT OF EDUCATION	NURSE II		Permanent	3685	2017-01-01	2024-07-10	41,367.00	16-5	t	0.00		Monthly
11020	DEPARTMENT OF EDUCATION	NURSE II		Permanent	3685	2016-01-01	2016-12-31	26,489.00	15-2	t	0.00		Monthly
11022	DEPARTMENT OF EDUCATION	NURSE II		Permanent	3685	2012-06-01	2014-11-08	24,887.00	15-1	t	0.00		Monthly
11023	DEPARTMENT OF EDUCATION`	NURSE II		Permanent	3685	2011-11-08	2012-05-31	22,688.00	15-1	t	0.00		Monthly
11024	DEPARTMENT OF EDUCATION 	NURSE II		Permanent	3686	2023-01-01	2024-07-11	42,694.00	16-8	t	0.00		Monthly
11025	DEPARTMENT OF EDUCATION 	NURSE II		Permanent	3686	2022-08-13	2022-12-31	41,172.00	16-8	t	0.00		Monthly
11026	DEPARTMENT OF EDUCATION	NURSE II		Permanent	3686	2022-01-01	2022-08-12	40,725.00	16-7	t	0.00		Monthly
11027	DEPARTMENT OF EDUCATION	NURSE II		Permanent	3686	2021-06-01	2021-12-31	35,915.00	15-7	t	0.00		Monthly
11028	DEPARTMENT OF EDUCATION	NURSE II		Permanent	3686	2021-01-01	2021-05-31	34,393.00	15-7	t	0.00		Monthly
11029	DEPARTMENT OF EDUCATION	NURSE II		Permanent	3686	2020-01-01	2020-12-31	33,391.00	15-6	t	0.00		Monthly
11030	DEPARTMENT OF EDUCATION	NURSE II		Permanent	3686	2019-08-13	2019-12-31	32,469.00	15-6	t	0.00		Monthly
11031	DEPARTMENT OF EDUCATION	NURSE II		Permanent	3686	2019-01-01	2019-08-12	32,053.00	15-6	t	0.00		Monthly
11032	DEPARTMENT OF EDUCATION	NURSE II		Permanent	3686	2018-01-01	2018-12-31	30,799.00	15-6	t	0.00		Monthly
11033	DEPARTMENT OF EDUCATION 	NURSE II		Permanent	3686	2017-01-01	2017-12-31	29,214.00	15-6	t	0.00		Monthly
11034	DEPARTMENT OF EDUCATION	NURSE II		Permanent	3686	2016-08-13	2016-12-31	27,712.00	15-6	t	0.00		Monthly
11035	DEPARTMENT OF EDUCATION	NURSE II		Permanent	3686	2016-01-01	2016-08-12	27,401.00	15-6	t	0.00		Monthly
11036	DEPARTMENT OF EDUCATION	NURSE II		Permanent	3686	2016-01-01	2016-08-12	27,401.00	15-5	t	0.00		Monthly
11037	DEPARTMENT OF EDUCATION	NURSE II		Permanent	3686	2013-08-14	2015-12-31	26,000.00	15-5	t	0.00		Monthly
11038	DEPARTMENT OF EDUCATION	NURSE II		Permanent	3686	2012-06-01	2013-08-13	25,718.00	15-4	t	0.00		Monthly
11039	DEPARTMENT OF EDUCATION 	NURSE II		Permanent	3686	2011-06-01	2012-05-31	23,621.00	15-4	t	0.00		Monthly
11040	DEPARTMENT OF EDUCATION	NURSE II		Permanent	3686	2010-08-14	2011-05-31	21,523.00	15-4	t	0.00		Monthly
11041	DEPARTMENT OF EDUCATION	NURSE II		Permanent	3686	2010-06-24	2010-08-13	21,172.00	15-3	t	0.00		Monthly
11042	DEPARTMENT OF EDUCATION	PUBLIC HEALTH NURSE I		Permanent	3686	2009-07-01	2010-06-23	19,040.00	15-3	t	0.00		Monthly
11043	DEPARTMENT OF EDUCATION 	PUBLIC HEALTH NURSE I		Permanent	3686	2006-07-01	2009-06-30	14,197.00	12-3	t	0.00		Monthly
11044	DEPARTMENT OF EDUCATION	PUBLIC HEALTH NURSE I		Permanent	3686	2008-01-01	2008-06-30	12,906.00	12-3	t	0.00		Monthly
11045	DEPARTMENT OF EDUCATION	PUBLIC HEALTH NURSE I		Permanent	3686	2007-07-01	2007-12-31	12,591.00	12-2	t	0.00		Monthly
11046	DEPARTMENT OF EDUCATION	DEPARTMENT OF EDUCATION PUBLIC HEALTH NURSE I		Permanent	3686	2005-01-01	2007-06-30	11,446.00	12-2	t	0.00		Monthly
11047	DEPARTMENT OF EDUCATION	PUBLIC HEALTH NURSE I		Permanent	3686	2001-08-13	2004-12-31	11,167.00	12-1	t	0.00		Monthly
11048	MARY MEDIATRIX MEDICAL CENTER	STAFF NURSE		Contractual	3686	2001-05-17	2001-07-31	6,000.00		f	0.00		Monthly
11049	MARY MEDIATRIX MEDICAL NURSE 	NURSE TRAINEE		Temporary	3686	2001-02-16	2001-05-16	2,000.00		f	0.00		Monthly
11050	BATANGAS REGIONAL HOSPITAL 	NURSE TRAINEE		Volunteer	3686	1996-09-23	1997-04-11	0.00		t	0.00		Monthly
11051	DEPARTMENT OF EDUCATION 	NURSE II		Permanent	3687	2016-09-01	2024-07-11	40,509.00	16-	t	0.00		Monthly
11052	DEPARTMENT OF EDUCATION 	ADMINISTRATIVE AIDE VI		Permanent	3687	2015-06-01	2015-08-31	13,378.00	6-	t	0.00		Monthly
11053	LIPA MEDIX MEDICAL CENTER 	NEOTAL WARD NURSE		Permanent	3687	2012-10-05	2013-04-08	12,000.00		f	0.00		Monthly
11054	BEIS PINCHOS & FRADEL LODGE AGUDAS ISRAEL HOUSING ASSOCIATION	HEALTH CARE ASSISTANT 		Permanent	3687	2010-03-08	2012-01-04	140,000.00		f	0.00		Monthly
11055	LIPA MEDIX MEDICAL CENTER	NEONATAL INTENSIVE CARE UNIT NURSE		Permanent	3687	2007-09-08	2024-12-08	9,000.00		t	0.00		Monthly
11056	LIPA MEDIX MEDICAL CENTER	VOLUNTEER NURSE		Volunteer	3687	2007-07-01	2007-08-01	0.00		f	0.00		Monthly
11057	SGOD - SDO BATANGAS CITY	EDUCATION PROGRAM SPECIALIST II		Permanent	3688	2018-08-01	2024-07-11	40,800.00	16-	t	0.00		Monthly
11058	ALANGILAN SENIOR HIGH SCHOOL	TEACHER I		Permanent	3688	2016-06-13	2018-07-31	19,000.00	13-	t	0.00		Monthly
11059	BATANGAS NATIONAL HIGH SCHOOL	TEACHER I		Permanent	3688	2013-06-13	2016-05-31	10,000.00	13-	t	0.00		Monthly
11060	ST. BRIDGET'S COLLEGE	CLASSROOM TEACHER		Permanent	3688	1992-01-08	1997-01-06	8,000.00		f	0.00		Monthly
11061	DEPARTMENT OF EDUCATION	SENIOR EDUCATION PROGRAM SPECIALIST 		Permanent	3689	2023-02-20	2024-07-11	51,357.00	1-	t	0.00		Monthly
11062	DEPARTMENT OF EDUCATION	OIC- EDUCATION PROGRAM SUPERVISOR- ESP/HGP/CGP/ALS 		Permanent	3689	2020-10-05	2021-06-30	37,465.00	2-	t	0.00		Monthly
11063	DEPARTMENT OF EDUCATION	OIC- EDUCATION PROGRAM SUPERVISOR- ENGLISH 		Permanent	3689	2019-07-01	2019-09-25	34,000.00	2-	t	0.00		Monthly
11064	DEPARTMENT OF EDUCATION	EDUCATION PROGRAM SPECIALIST II 		Permanent	3689	2015-05-25	2023-02-20	37,465.00	2-	t	0.00		Monthly
11065	DEPARTMENT OF EDUCATION	TEACHER III 		Permanent	3689	2013-11-04	2015-05-24	21,436.00	1-	t	0.00		Monthly
11066	DEPARTMENT OF EDUCATION	TEACHER II 		Permanent	3689	2011-07-01	2013-11-03	19,940.00	1-	t	0.00		Monthly
11067	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3689	2008-06-10	2011-06-30	17,099.00	1-	t	0.00		Monthly
11068	UNIVERSITY OF BATANGAS 	TEACHER 		Probationary	3689	2007-07-01	2008-03-31	12,224.00		t	0.00		Monthly
11069	SAINT FRANCIS SCHOOL	TEACHER 		Probationary	3689	2006-06-06	2007-03-31	7,770.00		t	0.00		Monthly
11070	REGIS BENEDICTINE ACADEMY 	TEACHER 		Probationary	3689	2005-11-06	2006-03-31	4,800.00		t	0.00		Monthly
11071	DEPARTMENT OF EDUCATION 	ADMINISTRATIVE AIDE I		Permanent	3690	2023-03-01	2024-07-11	13,000.00	1-	t	0.00		Monthly
11072	DEPARTMENT OF EDUCATION	JOB ORDER OFFICE CLERK 		Job Order	3690	2021-10-01	2023-02-28	12,790.00		t	0.00		Monthly
11073	ST. PETER D'ROCK SCHOOL	ADMINISTRATIVE ASSISTANT		Casual	3690	2018-01-03	2019-12-15	0.00		f	0.00		Monthly
11074	LIBJO CENTRAL, BATANGAS CITY	ADMINISTRATIVE ASSISTANT 		Contractual	3690	2016-03-02	2017-03-15	10,000.00		f	0.00		Monthly
11075	SM BATANGAS CITY	CASHIER /CHECKER		Contractual	3690	2017-04-14	2017-10-15	10,000.00		t	0.00		Monthly
11076	PSA BATANGAS PROVINCIAL OFFICE	INTERVIEWER		Contractual	3690	2016-01-11	2016-02-04	6,000.00		t	0.00		Monthly
11077	PSA BATANGAS PROVINCIAL OFFICE	DATA ENCODER		Contractual	3690	2015-11-02	2015-12-29	6,000.00		t	0.00		Monthly
11078	PSA BATANGAS PROVINCIAL OFFICE	TEAM SUPERVISOR		Contractual	3690	2015-08-10	2015-09-06	8,000.00		t	0.00		Monthly
11079	24/7 SUPPORT SERVICES	NON-VOICE AGENT		Contractual	3690	2015-03-23	2015-07-31	6,000.00		f	0.00		Monthly
11080	PSA BATANGAS PROVINCIAL OFFICE	MANUAL PROCESSOR/EDITOR		Contractual	3690	2013-06-03	2013-09-15	7,000.00		t	0.00		Monthly
11081	PSA BATANGAS PROVINCIAL OFFICE	ENUMERATOR		Contractual	3690	2013-03-04	2013-05-17	6,000.00		t	0.00		Monthly
11087	DEPARTMENT OF EDUCATION 	NURSE II 		Permanent	3692	2023-01-01	2024-07-11	39,672.00	16-1	t	0.00		Monthly
11082	PSA BATANGAS PROVINCIAL OFFICE	STATISTICAL RESEARCHER		Contractual	3690	2013-01-07	2013-02-15	7,000.00		t	0.00		Monthly
11083	PSA BATANGAS PROVINCIAL OFFICE	ENUMERATOR		Contractual	3690	2012-09-24	2012-12-14	6,000.00		t	0.00		Monthly
11084	PSA BATANGAS PROVINCIAL OFFICE	MAP DATA COLLECTOR (EN)		Contractual	3690	2012-06-04	2012-08-31	8,000.00		t	0.00		Monthly
11085	IBIDEN PHILIPPINES INC.	PRODUCTION OPERATOR 		Contractual	3690	2011-01-25	2011-06-24	10,000.00		f	0.00		Monthly
11086	LAMCOR	PRODUCTION OPERATOR		Contractual	3690	2010-04-19	2010-09-04	8,000.00		f	0.00		Monthly
11088	DEPARTMENT OF EDUCATION 	NURSE II 		Permanent	3692	2022-01-01	2022-12-31	38,150.00	16-1	t	0.00		Monthly
11089	DEPARTMENT OF EDUCATION 	NURSE II 		Permanent	3692	2021-01-01	2021-12-31	33,575.00	15-1	t	0.00		Monthly
11090	DEPARTMENT OF EDUCATION 	NURSE II 		Permanent	3692	2020-01-01	2020-12-31	32,053.00	15-1	t	0.00		Monthly
11091	DEPARTMENT OF EDUCATION 	NURSE II 		Permanent	3692	2019-01-01	2019-12-31	32,053.00	15-1	t	0.00		Monthly
11092	DEPARTMENT OF EDUCATION 	NURSE II 		Permanent	3692	2018-01-01	2018-12-31	32,053.00	15-1	t	0.00		Monthly
11093	MUNICIPAL GOVERNMENT OF TAYSAN - OFFICE OF THE MUNICIPAL HEALTH OFFICER 	NURSE I 		Permanent	3692	2018-01-01	2018-09-30	18,008.80	11-1	t	0.00		Monthly
11094	MUNICIPAL GOVERNMENT OF TAYSAN - OFFICE OF THE MUNICIPAL HEALTH OFFICER565	NURSE I 		Permanent	3692	2016-01-07	2017-12-31	17,296.00	11-1	t	0.00		Monthly
11095	MUNICIPAL GOVERNMENT OF TAYSAN - OFFICE OF THE MUNICIPAL HEALTH OFFICER	NURSE I 		Permanent	3692	2015-01-01	2016-06-30	17,099.00	11-1	t	0.00		Monthly
11096	MUNICIPAL GOVERNMENT OF TAYSAN - OFFICE OF THE MUNICIPAL HEALTH OFFICER	NURSE I 		Permanent	3692	2012-01-01	2014-12-31	15,649.00	10-1	t	0.00		Monthly
11097	MUNICIPAL GOVERNMENT OF TAYSAN - OFFICE OF THE MUNICIPAL HEALTH OFFICER	NURSE I 		Permanent	3692	2011-01-01	2011-12-31	14,923.00	10-1	t	0.00		Monthly
11098	MUNICIPAL GOVERNMENT OF TAYSAN - OFFICE OF THE MUNICIPAL HEALTH OFFICER	NURSE I 		Permanent	3692	2010-01-01	2010-12-31	14,198.00	10-1	t	0.00		Monthly
11099	MUNICIPAL GOVERNMENT OF TAYSAN - OFFICE OF THE MUNICIPAL HEALTH OFFICER	NURSE I 		Permanent	3692	2008-01-07	2009-12-31	12,026.00	10-1	t	0.00		Monthly
11100	MUNICIPAL GOVERNMENT OF TAYSAN - OFFICE OF THE MUNICIPAL HEALTH OFFICER	NURSE I 		Permanent	3692	2007-01-07	2008-06-30	10,933.00	10-1	t	0.00		Monthly
11101	MUNICIPAL GOVERNMENT OF TAYSAN - OFFICE OF THE MUNICIPAL HEALTH OFFICER	NURSE I 		Permanent	3692	2004-07-28	2007-06-30	9,939.00	10-1	t	0.00		Monthly
11102	MUNICIPAL GOVERNMENT OF TAYSAN - OFFICE OF THE MUNICIPAL HEALTH OFFICER	REVENUE COLLECTION CLERK I 		Permanent	3692	2002-08-01	2004-07-27	5,635.00	51-	t	0.00		Monthly
11103	MUNICIPAL GOVERNMENT OF TAYSAN - OFFICE OF THE MUNICIPAL HEALTH OFFICER	ACCOUNTING CLERK I 		Permanent	3692	2002-01-01	2002-07-01	5,283.00	4-1	t	0.00		Monthly
11104	MUNICIPAL GOVERNMENT OF TAYSAN - OFFICE OF THE MUNICIPAL HEALTH OFFICER	ACCOUNTING CLERK I 		Permanent	3692	2001-01-07	2001-12-31	5,013.00	41-	t	0.00		Monthly
11105	MUNICIPAL GOVERNMENT OF TAYSAN - OFFICE OF THE MUNICIPAL HEALTH OFFICER	ACCOUNTING CLERK I 		Permanent	3692	2000-01-01	2001-06-30	4,775.00	41-	t	0.00		Monthly
11106	MUNICIPAL GOVERNMENT OF TAYSAN - OFFICE OF THE MUNICIPAL HEALTH OFFICER	ACCOUNTING CLERK I 		Permanent	3692	1997-01-01	1998-12-31	4,235.00	41-	t	0.00		Monthly
11107	MUNICIPAL GOVERNMENT OF TAYSAN - OFFICE OF THE MUNICIPAL HEALTH OFFICER	ACCOUNTING CLERK I 		Permanent	3692	1996-01-01	1996-12-31	3,788.00	4-1	t	0.00		Monthly
11108	MUNICIPAL GOVERNMENT OF TAYSAN - OFFICE OF THE MUNICIPAL HEALTH OFFICER	ACCOUNTING CLERK I 		Permanent	3692	1995-12-20	1995-12-31	3,488.00	41-	t	0.00		Monthly
11109	MUNICIPAL GOVERNMENT OF TAYSAN - OFFICE OF THE MUNICIPAL HEALTH OFFICER	ACCOUNTING CLERK I 		Temporary	3692	1995-01-08	1995-12-19	2,488.00	4-1	t	0.00		Monthly
11110	ASSOCIATED WIRE CORPORATION OF THE PHILIPPINES 	COMPANY NURSE 		Casual	3692	1991-10-25	1993-12-31	0.00		f	0.00		Monthly
11111	DEPARTMENT OF EDUCATION, BATANGAS CITY	NURSE 2		Permanent	3691	2017-04-03	2024-07-11	40,509.00	16-3	t	0.00		Monthly
11112	DEPARTMENT OF EDUCATION, BATANGAS CITY	ADMINISTRATIVE AIDE VI (DEMO I)		Permanent	3691	2017-01-01	2024-07-11	13,851.00	6-1	t	0.00		Monthly
11113	DEPARTMENT OF EDUCATION, BATANGAS CITY 	ADMINISTRATIVE AIDE VI (DEMO I)		Permanent	3691	2016-01-01	2016-12-31	13,378.00	06-1	t	0.00		Monthly
11114	DEPARTMENT OF EDUCATION, BATANGAS CITY 	ADMINISTRATIVE AIDE VI (DEMO I)		Permanent	3691	2014-05-19	2015-12-31	12,921.00	06-1	t	0.00		Monthly
11115	DEPARTMENT OF EDUCATION, BATANGAS CITY	CLERK I- JOB ORDER		Job Order	3691	2013-01-02	2013-06-30	9,000.00		t	0.00		Monthly
11116	DEPARTMENT OF EDUCATION, BATANGAS CITY 	CLERK I- JOB ORDER		Job Order	3691	2012-07-03	2012-12-31	9,000.00		t	0.00		Monthly
11117	DEPARTMENT OF EDUCATION, BATANGAS CITY 	CLERK I- JOB ORDER		Job Order	3691	2012-01-02	2012-07-02	9,000.00		t	0.00		Monthly
11118	DEPARTMENT OF EDUCATION, BATANGAS CITY 	CLERK I- JOB ORDER		Job Order	3691	2011-11-28	2011-12-31	9,000.00		t	0.00		Monthly
11119	DEPARTMENT OF EDUCATION, BATANGAS CITY 	CLERK I- JOB ORDER		Job Order	3691	2011-08-25	2011-11-25	9,000.00		t	0.00		Monthly
11120	DEPARTMENT OF EDUCATION, BATANGAS CITY 	CLERK I- JOB ORDER		Job Order	3691	2011-05-19	2011-08-19	9,000.00		f	0.00		Monthly
11121	DEPARTMENT OF EDUCATION, BATANGAS CITY 	CLERK I- JOB ORDER		Job Order	3691	2011-02-15	2011-05-15	9,000.00		t	0.00		Monthly
11122	GOLDEN GATE HOSPITAL	VOLUNTEER NURSE		Volunteer	3691	2011-09-16	2011-12-15	0.00		f	0.00		Monthly
11123	GOLDEN GATE GENERAL HOSPITAL	NURSE TRAINEE		Casual	3691	2010-06-01	2010-08-31	0.00		f	0.00		Monthly
11124	ROMULO L. ROSALES MEDICAL/SURGICAL CLININC (GOLDENN GATE GENERAL HOSPITAL)			Contractual	3691	2009-06-01	2010-05-31	4,500.00		f	0.00		Monthly
11125	DEPARTMENT OF EDUCATION,SCHOOLS DIVISION OF BATANGAS CITY 	ADMIN AIDE I		Permanent	3694	2023-03-01	2024-07-11	13,000.00	1-	t	0.00		Monthly
11126	DEPARTMENT OF EDUCATION, SCHOOLS DIVISION OF BATANGAS CITY	OFFICE CLERK		Job Order	3694	2016-06-06	2023-03-01	581.36		t	0.00		Daily
11127	SDO- BATANGAS CITY	SENIOR EDUCATION PROGRAM SPECIALIST		Permanent	3693	2023-11-01	2024-07-11	528,470.00	19-3	t	0.00		Monthly
11128	SDO- BATANGAS CITY 	SENIOR EDUCATION PROGRAM SPECIALIST		Permanent	3693	2020-11-02	2023-11-01	47,530.00	19-2	t	0.00		Monthly
11129	SDO- BATANGAS CITY	SENIOR EDUCATION PROGRAM SPECIALIST		Permanent	3693	2018-11-01	2020-11-01	42,099.00	19-1	t	0.00		Monthly
11130	SDO- BATANGAS CITY 	SENIOR EDUCATION PROGRAM SPECIALIST		Permanent	3693	2017-11-02	2017-12-31	39,151.00	19-1	t	0.00		Monthly
11131	SDO- BATANGAS CITY 	EDUCATION PROGRAM SPECIALIST II		Permanent	3693	2017-06-01	2017-11-01	30,044.00	16-1	t	0.00		Monthly
11132	SDO- BATANGAS CITY 	EDUCATION PROGRAM SPECIALIST II		Permanent	3693	2016-01-01	2016-12-31	28,417.00	16-1	t	0.00		Monthly
11133	SDO- BATANGAS CITY 	EDUCATION PROGRAM SPECIALIST II		Permanent	3693	2015-06-01	2015-12-31	26,878.00	16-1	t	0.00		Monthly
11134	DEPARTMENT OF EDUCATION- SAN ISIDRO ELEMENTARY SCHOOL	 TEACHER III		Permanent	3693	2014-08-26	2015-05-31	21,867.00	13-3	t	0.00		Monthly
11135	DEPARTMENT OF EDUCATION- SAN ISIDRO ELEMENTARY SCHOOL 	 TEACHER III		Permanent	3693	2012-06-01	2014-08-25	21,650.00	13-2	t	0.00		Monthly
11136	DEPARTMENT OF EDUCATION- SAN ISIDRO ELEMENTARY SCHOOL 	TEACHER III		Permanent	3693	2011-08-27	2012-05-31	19,908.00	13-2	t	0.00		Monthly
11137	DEPARTMENT OF EDUCATION- SAN ISIDRO ELEMENTARY SCHOOL	TEACHER III		Permanent	3693	2011-06-01	2011-08-26	19,658.00	13-1	t	0.00		Monthly
11138	DEPARTMENT OF EDUCATION- SAN ISIDRO ELEMENTARY SCHOOL	TEACHER III		Permanent	3693	2010-06-04	2011-05-31	17,880.00	13-1	t	0.00		Monthly
11139	DEPARTMENT OF EDUCATION- SAN ISIDRO ELEMENTARY SCHOOL  	 TEACHER III		Permanent	3693	2009-07-01	2010-06-23	16,101.00	13-1	t	0.00		Monthly
11140	DEPARTMENT OF EDUCATION- SAN ISIDRO ELEMENTARY SCHOOL	TEACHER III		Permanent	3693	2008-08-26	2009-06-30	13,512.00	13-1	t	0.00		Monthly
11141	DEPARTMENT OF EDUCATION- SAN ISIDRO ELEMENTARY SCHOOL  	TEACHER II		Permanent	3693	2008-07-01	2008-08-25	12,748.00	12-1	t	0.00		Monthly
11142	DEPARTMENT OF EDUCATION- SAN ISIDRO ELEMENTARY SCHOOL 	TEACHER II		Permanent	3693	2007-09-10	2008-06-30	11,589.00	12-1	t	0.00		Monthly
11143	DEPARTMENT OF EDUCATION- SAN ISIDRO ELEMENTARY SCHOOL   	TEACHER I		Permanent	3693	2007-07-01	2007-09-09	10,933.00	11-1	t	0.00		Monthly
11144	DEPARTMENT OF EDUCATION- SAN ISIDRO ELEMENTARY SCHOOL  	TEACHER I		Permanent	3693	2006-07-17	2007-06-30	9,939.00	11-1	t	0.00		Monthly
11145	DEPARTMENT OF EDUCATION- JULIAN A. PASTOR ELEMENTARY SCHOOL 	TEACHER I		Permanent	3693	2005-09-19	2006-07-16	9,939.00	11-1	t	0.00		Monthly
11146	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY 	CHIEF EDUCATION SUPERVISOR		Permanent	3695	2023-01-01	2024-07-11	90,078.00	0-0	t	0.00		Monthly
11147	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY 	CHIEF EDUCATION SUPERVISOR 		Permanent	3695	2022-07-04	2024-12-31	88,410.00	0-0	t	0.00		Monthly
11148	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR 		Permanent	3695	2022-01-01	2022-07-03	73,214.00	0-0	t	0.00		Monthly
11149	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR 		Permanent	3695	2021-01-01	2021-12-31	71,666.00	0-0	t	0.00		Monthly
11150	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR 		Permanent	3695	2020-06-08	2020-12-31	70,118.00	0-0	t	0.00		Monthly
11151	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR 		Permanent	3695	2020-01-01	2020-06-07	69,067.00	0-0	t	0.00		Monthly
11152	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR 		Permanent	3695	2019-01-01	2019-12-31	67,469.00	0-0	t	0.00		Monthly
11153	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY 	EDUCATION PROGRAM SPECIALIST 		Permanent	3695	2018-01-01	2018-12-31	60,491.00	0-0	t	0.00		Monthly
11154	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR 		Permanent	3695	2017-06-09	2017-12-31	54,234.00	0-0	t	0.00		Monthly
11155	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR 		Permanent	3695	2017-01-01	2017-12-31	53,503.00	0-0	t	0.00		Monthly
11156	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR 		Permanent	3695	2016-01-01	2016-12-31	48,032.00	0-0	t	0.00		Monthly
11157	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR 		Permanent	3695	2014-06-09	2014-12-31	37,812.00	0-0	t	0.00		Monthly
11158	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR 		Permanent	3695	2012-06-01	2014-06-08	42,652.00	0-0	t	0.00		Monthly
11159	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR 		Permanent	3695	2011-06-08	2012-05-31	37,812.00	0-0	t	0.00		Monthly
11160	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR 		Permanent	3695	2011-06-01	2011-06-07	32,810.00	0-0	t	0.00		Monthly
11161	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY 	PRINCIPAL II 		Permanent	3695	2010-06-24	2011-05-31	29,052.00	0-0	t	0.00		Monthly
11162	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY 	PRINCIPAL II 		Permanent	3695	2009-07-01	2010-06-23	25,295.00	0-0	t	0.00		Monthly
11163	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY 	PRINCIPAL II 		Permanent	3695	2009-01-12	2009-06-30	20,318.00	0-0	t	0.00		Monthly
11164	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY 	PRINCIPAL I 		Permanent	3695	2007-07-01	2008-06-30	17,425.00	0-0	t	0.00		Monthly
11165	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY 	PRINCIPAL I 		Permanent	3695	2006-01-16	2007-06-30	15,841.00	0-0	t	0.00		Monthly
11166	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY 	EHT III 		Permanent	3695	2002-08-07	2006-01-15	13,300.00	0-0	t	0.00		Monthly
11167	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY 	TEACHER III 		Permanent	3695	2001-12-01	2002-08-06	11,167.00	0-0	t	0.00		Monthly
11168	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY 	TEACHER II 		Permanent	3695	2001-07-01	2001-11-30	10,535.00	0-0	t	0.00		Monthly
11169	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY 	TEACHER II 		Permanent	3695	2000-01-01	2001-06-30	10,033.00	0-0	t	0.00		Monthly
11170	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY 	TEACHER II 		Permanent	3695	1999-01-01	1999-12-31	9,121.00	0-0	t	0.00		Monthly
11171	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY 	TEACHER II 		Permanent	3695	1998-12-01	1998-12-31	9,121.00	0-0	t	0.00		Monthly
11172	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY 	TEACHER I 		Permanent	3695	1997-11-01	1998-11-30	8,605.00	0-0	t	0.00		Monthly
11173	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY 	TEACHER I 		Permanent	3695	1997-01-01	1997-10-30	7,309.00	0-0	t	0.00		Monthly
11174	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY 	TEACHER I 		Permanent	3695	1996-01-01	1996-12-31	6,013.00	0-0	t	0.00		Monthly
11175	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY 	TEACHER I 		Permanent	3695	1994-07-25	1995-12-31	4,902.00	0-0	t	0.00		Monthly
11176	DEPARTMENT OF EDUCATION- DIVISION OF BATANGAS CITY 	TEACHER I 		Permanent	3695	1994-02-04	1994-03-05	3,102.00	0-0	t	0.00		Monthly
11177	LPU - BATANGAS	GUIDANCE COUNSELOR 		Casual	3696	2008-04-28	2016-09-15	14,000.00	-	f	0.00		Monthly
11178	DEPED BATANGAS CITY	PROJECT DEVELOPMENT OFFICER		Permanent	3696	2016-09-16	2018-08-12	22,892.00	11-	t	0.00		Monthly
11179	DEPED BATANGAS CITY	EDUCATION PROGRAM SPEACIALIST II		Permanent	3696	2023-08-13	2024-07-11	40,800.00	16-2	t	0.00		Monthly
11180	SDO BATANGAS CITY	PROJECT DEVELOPMENT OFFICER I		Permanent	3697	2019-03-04	2024-07-12	27,284.00	11-	t	0.00		Monthly
11181	PROVINCIAL SOCIAL WELFARE AND DEVELOPMENT OFFICE	SOCIAL WELFARE ASSISTANT		Casual	3697	2018-01-02	2018-06-30	395.86	4-	t	0.00		Daily
11182	PROVINCIAL SOCIAL WELFARE AND DEVELOPMENT OFFICE 	SOCIAL WELFARE ASSISTANT		Casual	3697	2017-01-07	2017-12-31	395.86	4-	t	0.00		Daily
11186	PROVINCIAL SOCIAL WELFARE AND DEVELOPMENT OFFICE	SOCIAL WELFARE ASSISTANT		Casual	3697	2016-01-01	2016-06-30	395.86	4-	t	0.00		Daily
11189	DEPARTMENT OF EDUCATION SDO BATANGAS CITY 	SENIOR EDUCATION PROGRAM SPECIALIST 		Permanent	3698	2023-03-01	2024-07-12	51,357.00	19-1	t	0.00		Monthly
11190	DEPARTMENT OF EDUCATION REGION IV A ( CALABARZON)	EDUCATION PROGRAM SPECIALIST II 		Permanent	3698	2021-01-01	2023-02-28	38,150.00	16-1	t	0.00		Monthly
11191	DEPARTMENT OF EDUCATION REGION IV A ( CALABARZON)	EDUCATION PROGRAM SPECIALIST 		Permanent	3698	2021-04-20	2021-12-31	38,150.00	16-1	t	0.00		Monthly
11192	DEPARTMENT OF EDUCATION MATAAS NA KAHOY SENIOR HIGH SCHOOL 	TEACHER II 		Permanent	3698	2019-06-13	2021-04-19	23,222.00	12-1	t	0.00		Monthly
11193	DEPARTMENT OF EDUCATION MATAAS NA KAHOY SENIOR HIGH SCHOOL	TEACHER II 		Permanent	3698	2019-01-01	2019-06-12	22,938.00	12-1	t	0.00		Monthly
11194	DEPARTMENT OF EDUCATION MATAAS NA KAHOY SENIOR HIGH SCHOOL	TEACHER II 		Permanent	3698	2018-01-01	2018-12-31	22,149.00	12-1	t	0.00		Monthly
11195	DEPARTMENT OF EDUCATION MATAAS NA KAHOY SENIOR HIGH SCHOOL	TEACHER II 		Permanent	3698	2017-01-01	2017-12-31	21,387.00	12-1	t	0.00		Monthly
11408	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3710	2013-01-02	2013-06-30	21,436.00	13-1	t	0.00		Monthly
11409	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3710	2012-01-06	2013-01-31	19,940.00	12-1	t	0.00		Monthly
11410	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3710	2011-06-22	2012-05-31	18,333.00	12-1	t	0.00		Monthly
11412	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3710	2011-01-06	2011-06-15	17,318.00	11-3	t	0.00		Monthly
11413	DEPARTMENT OF EDUCATION	TEACHER I 		Permanent	3710	2010-06-24	2011-05-31	16,157.00	11-3	t	0.00		Monthly
11414	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3710	2009-01-07	2010-06-23	14,775.00	11-3	t	0.00		Monthly
11196	DEPARTMENT OF EDUCATION MATAAS NA KAHOY SENIOR HIGH SCHOOL	TEACHER II 		Permanent	3698	2016-06-13	2016-12-31	20,651.00	12-1	t	0.00		Monthly
11197	DEPARTMENT OF EDUCATION BAYORBOR NATIONAL HIGH SCHOOL 	TEACHER I 		Permanent	3698	2016-01-01	2016-06-12	19,077.00	11-1	t	0.00		Monthly
11198	DEPARTMENT OF EDUCATION BAYORBOR NATIONAL HIGH SCHOOL	TEACHER I 		Permanent	3698	2014-06-03	2015-12-31	18,547.00	11-1	t	0.00		Monthly
11223	DEPED BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR 		Permanent	3701	2024-01-01	2024-07-12	71,511.00	22-	t	0.00		Monthly
11224	DEPED BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR 		Permanent	3701	2023-01-01	2023-12-31	71,511.00	22-	t	0.00		Monthly
11225	DEPED BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR 		Permanent	3701	2022-01-01	2022-12-31	69,963.00	22-	t	0.00		Monthly
11226	DEPED BATANGAS CITY 	EDUCATION PROGRAM SUPERVISOR 		Permanent	3701	2021-07-01	2021-12-31	68,415.00	22-	t	0.00		Monthly
11227	DEPED BATANGAS CITY 	PRINCIPAL II 		Permanent	3701	2021-01-01	2021-06-30	54,251.00	20-	t	0.00		Monthly
11228	DEPED BATANGAS CITY 	PRINCIPAL II 		Permanent	3701	2020-01-01	2020-12-31	52,703.00	20-	t	0.00		Monthly
11229	DEPED BATANGAS CITY 	PRINCIPAL II 		Permanent	3701	2019-09-02	2019-12-31	51,155.00	20-	t	0.00		Monthly
11230	DEPED BATANGAS CITY 	PRINCIPAL I 		Permanent	3701	2019-01-01	2019-09-01	45,269.00	19-	t	0.00		Monthly
11231	DEPED BATANGAS CITY 	PRINCIPAL I 		Permanent	3701	2018-07-02	2018-12-31	42,730.00	19-	t	0.00		Monthly
11232	DEPED BATANGAS CITY 	SENIOR EDUCATION PROGRAM SPECIALIST 		Permanent	3701	2018-01-01	2018-07-01	42,730.00	19-	t	0.00		Monthly
11233	DEPED BATANGAS CITY 	SENIOR EDUCATION PROGRAM SPECIALIST 		Permanent	3701	2017-01-01	2017-12-31	39,685.00	19-	t	0.00		Monthly
11234	DEPED BATANGAS CITY 	SENIOR EDUCATION PROGRAM SPECIALIST 		Permanent	3701	2016-05-25	2016-12-31	36,409.00	19-	t	0.00		Monthly
11235	DEPED BATANGAS CITY 	SENIOE EDUCATION PROGRAM SPECIALIST 		Permanent	3701	2016-01-01	2016-05-24	36,409.00	19-	t	0.00		Monthly
11236	DEPED BATANGAS CITY 	SENIOR EDUCATION PROGRAM SPECIALIST 		Permanent	3701	2015-05-25	2015-12-31	33,856.00	19-2	t	0.00		Monthly
11237	DEPED BATANGAS CITY 	MASTER TEACHER II 		Permanent	3701	2012-06-04	2015-05-24	33,856.00	19-	t	0.00		Monthly
11238	DEPED BATANGAS CITY 	MASTER TEACHER II 		Permanent	3701	2012-06-01	2012-06-03	31,696.00	19-	t	0.00		Monthly
11239	DEPED BATANGAS CITY 	MASTER TEACJER II 		Permanent	3701	2011-06-01	2012-05-31	28,684.00	19-	t	0.00		Monthly
11240	DEPED BATANGAS CITY 	MASTER TEACHER II 		Permanent	3701	2010-06-24	2011-05-31	25,671.00	19-	t	0.00		Monthly
11241	DEPED BATANGAS CITY 	MASTER TEACHER II 		Permanent	3701	2010-02-19	2010-06-23	22,659.00	18-1	t	0.00		Monthly
11242	DEPED BATANGAS CITY 	MASTER TEACHER I 		Permanent	3701	2009-07-01	2010-02-18	22,214.00	18-	t	0.00		Monthly
11243	DEPED BATANGAS CITY 	MASTER TEACHER I 		Permanent	3701	2008-07-01	2009-06-30	17,059.00	18-	t	0.00		Monthly
11244	DEPED BATANGAS CITY 	MASTER TEACHER I 		Permanent	3701	2007-07-01	2008-06-30	15,508.00	18-	t	0.00		Monthly
11245	DEPED BATANGAS CITY 	MASTER TEACHER I 		Permanent	3701	2007-02-19	2007-06-30	14,098.00	18-	t	0.00		Monthly
11246	DEPED BATANGAS CITY 	TEACHER III		Permanent	3701	2003-11-17	2007-02-18	11,167.00	12-	t	0.00		Monthly
11247	DEPED BATANGAS CITY 	TEACHER II 		Permanent	3701	2002-01-01	2003-11-16	10,798.00	12-	t	0.00		Monthly
11248	DEPED BATANGAS CITY 	TEACHER II 		Permanent	3701	2001-07-01	2001-12-31	10,535.00	11-	t	0.00		Monthly
11249	DEPED BATANGAS CITY 	TEACHER II 		Permanent	3701	2000-01-01	2001-06-30	10,033.00	11-	t	0.00		Monthly
11250	DEPED BATANGAS CITY 	TEACHER II 		Permanent	3701	1999-01-01	1999-12-31	9,121.00	11-	t	0.00		Monthly
11251	DEPED BATANGAS CITY 	TEACHER II 		Permanent	3701	1998-01-01	1998-12-31	9,121.00	11-	t	0.00		Monthly
11252	DEPED BATANGAS CITY 	TEACHER II 		Permanent	3701	1997-11-17	1997-12-31	9,121.00	11-	t	0.00		Monthly
11253	DEPED BATANGAS CITY 	TEACHER II 		Permanent	3701	1997-01-01	1997-10-31	7,862.00	11-	t	0.00		Monthly
11254	DEPED BATANGAS CITY 	TEACHER II 		Permanent	3701	1996-09-02	1996-12-31	6,243.00	11-	t	0.00		Monthly
11255	DEPED BATANGAS CITY 	TEACHER I 		Permanent	3701	1996-01-01	1996-09-01	6,013.00	10-	t	0.00		Monthly
11256	DEPED BATANGAS CITY 	TEACHER I 		Permanent	3701	1995-01-01	1995-12-31	4,092.00	10-	t	0.00		Monthly
11257	DEPED BATANGAS CITY 	TEACHER I 		Permanent	3701	1994-07-14	1994-12-31	3,902.00	10-	t	0.00		Monthly
11258	DEPED BATANGAS PROVINCE 	TEACHER I 		Permanent	3701	1994-01-01	1994-07-13	3,902.00	10-	t	0.00		Monthly
11259	DEPED BATANGAS PROVINCE 	TEACHER I 		Permanent	3701	1993-01-19	1993-12-31	3,102.00	10-	t	0.00		Monthly
11183	PROVINCIAL SOCIAL WELFARE AND DEVELOPMENT OFFICE	SOCIAL WELFARE ASSISTANT		Casual	3697	2017-01-01	2017-06-30	395.86	4-	t	0.00		Daily
11184	PROVINCIAL SOCIAL WELFARE AND DEVELOPMENT OFFICE 	SOCIAL WELFARE ASSISTANT		Casual	3697	2016-01-07	2016-12-31	395.86	4-	t	0.00		Daily
11187	PROVINCIAL SOCIAL WELFARE AND DEVELOPMENT OFFICE 	SOCIAL WELFARE ASSISTANT		Casual	3697	2015-01-07	2015-12-31	395.86	4-	t	0.00		Daily
11188	PROVINCIAL SOCIAL WELFARE AND DEVELOPMENT OFFICE 	SOCIAL WELFARE ASSISTANT		Casual	3697	2015-06-15	2015-06-30	395.86	4-	t	0.00		Daily
11199	EMPLOI AGENCY/HYSONIC PHILIPPINES INC. 	HR SUPPORT (EMPLOYEE RELATIONS)		Contractual	3697	2015-09-02	2015-09-05	8,000.00		f	0.00		Monthly
11200	DEPARTMENT OF EDUCATION,SCHOOLS DIVISION OF BATANGAS CITY	ENGINEER III		Permanent	3699	2023-01-01	2024-07-12	52,847.00	19-	t	0.00		Monthly
11201	DEPARTMENT OF EDUCATION,SCHOOLS DIVISION OF BATANGAS CITY	ENGINEER III		Permanent	3699	2022-02-01	2022-12-31	51,325.00	19-	t	0.00		Monthly
11202	DEPARTMENT OF EDUCATION,SCHOOLS DIVISION OF BATANGAS CITY	ENGINEER III		Permanent	3699	2021-09-01	2022-01-31	49,803.00	19-	t	0.00		Monthly
11203	DEPARTMENT OF EDUCATION,SCHOOLS DIVISION OF BATANGAS CITY	ENGINEER III		Permanent	3699	2021-02-01	2021-08-31	49,052.00	19-	t	0.00		Monthly
11204	DEPARTMENT OF EDUCATION,SCHOOLS DIVISION OF BATANGAS CITY	ENGINEER III		Permanent	3699	2020-03-01	2021-01-31	47,530.00	19-	t	0.00		Monthly
11205	DEPARTMENT OF EDUCATION,SCHOOLS DIVISION OF BATANGAS CITY	ENGINEER III		Permanent	3699	2019-05-01	2020-02-29	46,008.00	19-	t	0.00		Monthly
11206	DEPARTMENT OF EDUCATION,SCHOOLS DIVISION OF BATANGAS CITY	ENGINEER III		Permanent	3699	2018-09-01	2019-04-30	42,730.00	19-	t	0.00		Monthly
11207	DEPARTMENT OF EDUCATION,SCHOOLS DIVISION OF BATANGAS CITY	ENGINEER III		Permanent	3699	2018-01-01	2018-08-31	42,099.00	19-	t	0.00		Monthly
11208	DEPARTMENT OF EDUCATION,SCHOOLS DIVISION OF BATANGAS CITY	ENGINEER III		Permanent	3699	2017-01-01	2017-12-31	39,151.00	19-	t	0.00		Monthly
11209	DEPARTMENT OF EDUCATION,SCHOOLS DIVISION OF BATANGAS CITY	ENGINEER III		Permanent	3699	2016-01-01	2016-12-31	38,409.00	19-	t	0.00		Monthly
11210	DEPARTMENT OF EDUCATION,SCHOOLS DIVISION OF BATANGAS CITY	ENGINEER III		Permanent	3699	2015-07-01	2015-12-31	33,859.00	19-	t	0.00		Monthly
11211	DEPARTMENT OF EDUCATION, PHYSICAL FACILITIES AND SCHOOLS ENGINEERING DIVISION (PFSED)	REGIONAL LEAD ENGINEER/ DEPED PROJECT ENGINEER III		Contract of Service	3699	2015-01-01	2015-06-30	32,500.00		t	0.00		Monthly
11212	DEPARTMENT OF EDUCATION, PHYSICAL FACILITIES AND SCHOOLS ENGINEERING DIVISION (PFSED)	REGIONAL LEAD ENGINEER/DEPED PROJECT ENGINEER IV		Contract of Service	3699	2013-07-01	2014-12-31	26,000.00		t	0.00		Annual
11213	DEPARTMENT OF EDUCATION, PHYSICAL FACILITIES AND SCHOOLS ENGINEERING DIVISION (PFSED)	REGIONAL LEAD ENGINEER/ DEPED PROJECT ENGINEER III		Contract of Service	3699	2013-01-01	2013-06-30	23,000.00		t	0.00		Monthly
11214	DEPARTMENT OF EDUCATION, PHYSICAL FACILITIES AND SCHOOLS ENGINEERING DIVISION (PFSED)	REGIONAL LEAD ENGINEER/ DEPED PROJECT ENGINEER III		Contract of Service	3699	2009-01-01	2012-12-31	20,000.00		t	0.00		Monthly
11215	DEPARTMENT OF EDUCATION, PHYSICAL FACILITIES AND SCHOOLS ENGINEERING DIVISION (PFSED)	DEPARTMENT OF EDUCATION- PROJECT ENGINEER II		Contract of Service	3699	2005-01-01	2008-12-31	14,098.00		t	0.00		Monthly
11216	DEPARTMENT OF EDUCATION, TASK FORCE ENGINEERING ASSESMENT AND MONITORING (TFEAM)	TASK FORCE ENGINEERING ASSESMENT AND MONITORING (TFEAM) PROJECT ENGINEER I		Contract of Service	3699	2003-03-01	2004-12-31	11,157.00		t	0.00		Monthly
11217	FIRST ATLAS CONTRACTORS, INC.(FACI)	PROJECT ENGINEER		Contractual	3699	2000-04-01	2003-02-28	6,500.00		f	0.00		Monthly
11218	DEPARTMENT OF EDUCATION - BATANGAS CITY	MNEDICAL OFFIECER III		Permanent	3700	2023-08-14	2024-07-12	63,997.00	21-1	t	0.00		Monthly
11219	BATANGAS STATE UNIVERSITY P	PART TIME PHYSICIAN 		Temporary	3700	2022-06-16	2023-08-10	27,000.00		t	0.00		Monthly
11220	DEPARTMENT OF EDUCATION - CALAPAN CITY	MEDICAL OFFICER III		Permanent	3700	2017-09-22	2021-12-31	61,844.00	21-2	t	0.00		Monthly
11221	DALANGIN CHILD CARE MEDICAL CLINIC	PHYSICIAN		Permanent	3700	2015-05-01	2016-11-30	20,000.00		f	0.00		Monthly
11222	UNITED DOCTORS MEDICAL CENTER	PEDIATRIC RESIDENT PHYSICIAN		Permanent	3700	2012-01-01	2012-12-31	12,000.00		f	0.00		Monthly
11260	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY	PLANNING OFFICER III		Permanent	3702	2023-01-01	2024-07-12	47,738.00	18-3	t	0.00		Monthly
11261	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY	PLANNING OFFICER III		Permanent	3702	2022-01-01	2022-12-31	46,216.00	18-3	t	0.00		Monthly
11262	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY	PLANNING OFFICER III		Permanent	3702	2021-05-25	2021-12-31	44,694.00	18-3	t	0.00		Monthly
11263	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY	PLANNING OFFICER III		Permanent	3702	2021-01-01	2021-05-24	44,184.00	18-3	t	0.00		Monthly
11264	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY	PLANNING OFFICER III		Permanent	3702	2020-01-01	2020-12-31	42,662.00	18-2	t	0.00		Monthly
11265	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY	PLANNING OFFICER III		Permanent	3702	2019-01-01	2019-12-31	41,140.00	18-2	t	0.00		Monthly
11266	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY	PLANNING OFFICER III		Permanent	3702	2018-05-25	2018-12-31	38,543.00	18-2	t	0.00		Monthly
11267	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY	PLANNING OFFICER III		Permanent	3702	2018-01-01	2018-05-24	38,085.00	18-2	t	0.00		Monthly
11268	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY	PLANNING OFFICER III		Permanent	3702	2017-01-01	2017-12-31	35,693.00	18-1	t	0.00		Monthly
11269	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY	PLANNING OFFICER III		Permanent	3702	2016-01-01	2016-12-31	33,452.00	18-1	t	0.00		Monthly
11270	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY	PLANNING OFFICER III		Permanent	3702	2015-05-25	2015-12-31	31,351.00	18-1	t	0.00		Monthly
11271	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY	ADMINISTRATIVE OFFICER I		Permanent	3702	2013-02-12	2015-05-24	17,255.00	10-1	t	0.00		Monthly
11272	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY	STATISTICIAN AIDE		Permanent	3702	2012-06-01	2013-02-11	11,405.00	4-3	t	0.00		Monthly
11273	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY	STATISTICIAN AIDE		Permanent	3702	2011-06-01	2012-05-31	10,626.00	4-3	t	0.00		Monthly
11275	DEPED BATANGAS CITY 	PROJECT DEVELOPMENT OFFICER I 		Permanent	3704	2021-01-12	2024-07-12	27,284.00	11-2	t	0.00		Monthly
11276	DEPED BATANGAS CITY 	ADMINISTRATIVE OFFICER II 		Permanent	3704	2020-11-16	2021-11-30	23,877.00	11-1	t	0.00		Monthly
11277	DEPED BATANGAS PROVINCE 	ADMINISTRATIVE ASSISTANT III 		Permanent	3704	2019-03-01	2020-11-15	18,758.00	91-	t	0.00		Monthly
11278	DEPED BATANGAS PROVINCE	ADMINISTRATIVE ASSISTANT II 		Permanent	3704	2017-04-03	2019-02-28	17,818.00	81-	t	0.00		Monthly
11279	RAYTHEON EBASCO OVERSEAS LTD. 	SECRETARY 		Contractual	3704	1999-12-06	2002-08-31	15,000.00		f	0.00		Monthly
11280	CRISTO REY INSTITUTE FOR CAREER DEVELOPMENT 	ADMINISTRATIVE ASSISTANT 		Contractual	3704	1997-04-01	1997-09-30	4,500.00		f	0.00		Monthly
11281	OFFICE OF THE CITY MAYOR BATANGAS CITY 	CLERK I 		Contractual	3704	1996-11-25	1997-03-31	4,000.00		f	0.00		Monthly
11282	SDO BATANGAS CITY	EDUCATION PROGRAM SPECIALIST		Permanent	3703	2023-03-20	2024-07-12	39,672.00	16-1	t	0.00		Monthly
11283	BATANGAS CITY INTEGRATED HIGH SCHOOL	TEACHER III		Permanent	3703	2023-01-01	2023-03-19	31,320.00	13-2	t	0.00		Monthly
11284	BATANGAS CITY INTEGRATED HIGH SCHOOL 	TEACHER III		Permanent	3703	2022-01-01	2022-12-31	30,111.00	13-2	t	0.00		Monthly
11285	BATANGAS CITY INTEGRATED HIGH SCHOOL	TEACHER III		Permanent	3703	2021-09-03	2021-12-31	28,589.00	13-2	t	0.00		Monthly
11286	BATANGAS NATIONAL HIGH SCHOOL 	TEACHER III		Permanent	3703	2021-01-01	2021-09-02	28,276.00	13-1	t	0.00		Monthly
11287	BATANGAS NATIONAL HIGH SCHOOL	TEACHER III		Permanent	3703	2020-01-01	2020-12-31	26,754.00	13-1	t	0.00		Monthly
11288	BATANGAS NATIONAL HIGH SCHOOL	TEACHER III		Permanent	3703	2019-01-01	2019-12-31	25,232.00	13-1	t	0.00		Monthly
11289	BATANGAS NATIONAL HIGH SCHOOL 	TEACHER III		Permanent	3703	2018-09-03	2018-12-31	24,224.00	13-1	t	0.00		Monthly
11290	BATANGAS NATIONAL HIGH SCHOOL	TEACHER I		Permanent	3703	2018-01-01	2018-09-02	20,437.00	11-2	t	0.00		Monthly
11291	BATANGAS NATIONAL HIGH SCHOOL 	TEACHER I		Permanent	3703	2017-01-01	2017-12-31	19,853.00	11-2	t	0.00		Monthly
11292	BATANGAS NATIONAL HIGH SCHOOL 	TEACHER I		Permanent	3703	2016-06-03	2016-12-31	19,286.00	11-2	t	0.00		Monthly
11293	BATANGAS NATIONAL HIGH SCHOOL 	TEACHER I		Permanent	3703	2016-01-01	2016-06-02	19,077.00	11-1	t	0.00		Monthly
11294	BATANGAS NATIONAL HIGH SCHOOL 	TEACHER I		Permanent	3703	2013-06-03	2015-12-31	18,549.00	11-1	f	0.00		Monthly
11295	UNIVERSITY OF BATANGAS  	TEACHER 		Probationary	3703	2012-09-17	2013-03-22	15,800.00		f	0.00		Monthly
11296	KING'S KIDS CHRISTIAN ACADEMY 	TEACHER 		Contractual	3703	2011-06-15	2012-03-30	7,000.00		f	0.00		Monthly
11274	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY	STATISTICIAN AIDE		Permanent	3702	2010-06-24	2011-05-31	9,848.00	4-3	t	0.00		Monthly
11297	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY	STATISTICIAN AIDE		Permanent	3702	2010-03-01	2010-06-23	9,069.00	4-3	t	0.00		Monthly
11298	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY	STATISTICIAN AIDE		Permanent	3702	2009-07-01	2010-02-28	8,888.00	4-2	t	0.00		Monthly
11299	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY	STATISTICIAN AIDE		Permanent	3702	2008-07-01	2009-06-30	8,087.00	4-2	t	0.00		Monthly
11300	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY	STATISTICIAN AIDE		Permanent	3702	2007-06-01	2008-07-30	7,352.00	4-2	t	0.00		Monthly
11301	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY	STATISTICIAN AIDE		Permanent	3702	2007-01-01	2007-06-30	6,684.00	4-2	t	0.00		Monthly
11302	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY	STATISTICIAN AIDE		Permanent	3702	2004-03-01	2006-12-31	6,522.00	4-1	t	0.00		Monthly
11303	DEPARTMENT OF EDUCATION - DIVISION OF BATANGAS CITY	CLERK I 		Permanent	3702	2003-03-03	2004-02-29	6,039.00	3-1	t	0.00		Monthly
11304	SOUTHPOST BAUAN ELECTRIC	DIBURSEMENT OFFICER 		Casual	3702	2002-07-05	2003-03-02	0.00		f	0.00		Monthly
11305	CITIMART GROUP OF COMPANIES	ACCOUNTING PAYABLES CLERK 		Casual	3702	2001-03-10	2002-07-04	0.00		f	0.00		Monthly
11306	BATANGAS STATE UNIVERSITY 	CLERK (REGISTRAR)		Casual	3702	2001-05-02	2001-07-31	0.00		t	0.00		Monthly
11307	PHILIPPINE DEPOSIT INSURANCE CORPORATION	RETAINED EMPLOYEE		Casual	3702	1998-09-03	1999-02-28	0.00		t	0.00		Monthly
11308	UNIFIED SAVINGS BANK AND LOAN ASSOCIATION, INC.	SR. ACCOUNTING ASSISTANT		Permanent	3702	1996-02-01	1998-09-02	0.00		f	0.00		Monthly
11309	FORTUNE GUARANTEE AND INSURANCE CORPORATION	CREDIT AND COLLECTION CLERK		Casual	3702	1995-08-01	1995-11-30	0.00		f	0.00		Monthly
11310	DEPARTMENT OF EDUCATION	CLERK I		Permanent	3706	1998-05-19	1998-12-31	5,228.00		t	0.00		Monthly
11311	DEPARTMENT OF EDUCATION	CLERK I		Permanent	3706	1999-01-01	1999-12-31	5,288.00		t	0.00		Monthly
11312	DEPARTMENT OF EDUCATION	CLERK I		Permanent	3706	2000-01-01	2001-06-30	5,751.00		t	0.00		Monthly
11313	DEPARTMENT OF EDUCATION	CLERK I		Permanent	3706	2001-07-01	2001-12-31	6,039.00		t	0.00		Monthly
11314	DEPARTMENT OF EDUCATION	CLERK I		Permanent	3706	2002-01-01	2010-05-31	8,409.00		t	0.00		Monthly
11315	DEPARTMENT OF EDUCATION	CLERK I		Permanent	3706	2011-01-01	2015-05-31	10,931.00		t	0.00		Monthly
11316	DEPARTMENT OF EDUCATION	PROJECT DEVELOPMENT OFFICER II 		Permanent	3706	2015-06-01	2015-12-31	24,887.00		t	0.00		Monthly
11317	DEPARTMENT OF EDUCATION	PROJECT DEVELOPMENT OFFICER II		Permanent	3706	2016-01-01	2016-12-31	26,192.00		t	0.00		Monthly
11318	DEPARTMENT OF EDUCATION	PROJECT DEVELOPMENT OFFICER II		Permanent	3706	2017-01-01	2017-12-31	27,565.00		t	0.00		Monthly
11319	DEPARTMENT OF EDUCATION	PROJECT DEVELOPMENT OFFICER II		Permanent	3706	2018-01-01	2018-12-31	29,395.00		t	0.00		Monthly
11320	DEPARTMENT OF EDUCATION	PROJECT DEVELOPMEMENT II		Permanent	3706	2019-01-01	2024-07-12	37,380.00		t	0.00		Monthly
11321	DEPARTMENT OF EDUCATION/ SDO BATANGAS CITY 	SENIOR EDUCATION PROGRAM SPECIALIST 		Permanent	3707	2023-01-01	2024-07-12	616,284.00	19-1	t	0.00		Annual
11322	DEPARTMENT OF EDUCATION/ SDO BATANGAS CITY 	SENIOR EDUCATION PROGRAM SPECIALIST 		Permanent	3707	2022-07-01	2022-12-31	598,020.00	19-1	t	0.00		Annual
11323	 DEPARTMENT OF EDUCATION/ MELECIO ARCEO MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3707	2022-01-01	2022-01-06	356,576.00	13-1	t	0.00		Annual
11324	 DEPARTMENT OF EDUCATION/ MELECIO ARCEO MEMORIAL ELEMENTARY SCHOOL 	TEACHER III		Permanent	3707	2021-01-01	2021-12-31	339,312.00	13-1	t	0.00		Annual
11325	 DEPARTMENT OF EDUCATION/ MELECIO ARCEO MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3707	2020-01-01	2020-12-31	26,754.00	13-1	t	0.00		Monthly
11326	 DEPARTMENT OF EDUCATION/ MELECIO ARCEO MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3707	2019-11-04	2019-12-31	25,232.00	13-1	t	0.00		Monthly
11327	 DEPARTMENT OF EDUCATION/ MELECIO ARCEO MEMORIAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3707	2019-01-01	2019-11-03	23,222.00	12-2	t	0.00		Monthly
11328	 DEPARTMENT OF EDUCATION/ MELECIO ARCEO MEMORIAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3707	2018-01-01	2018-12-31	22,149.00	12-1	t	0.00		Annual
11329	 DEPARTMENT OF EDUCATION/ MELECIO ARCEO MEMORIAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3707	2017-01-01	2017-12-31	21,387.00	12-1	t	0.00		Monthly
11330	 DEPARTMENT OF EDUCATION/ MELECIO ARCEO MEMORIAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3707	2016-01-01	2016-12-31	20,651.00	12-1	t	0.00		Monthly
11331	 DEPARTMENT OF EDUCATION/ MELECIO ARCEO MEMORIAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3707	2015-10-26	2015-12-31	19,940.00	12-1	t	0.00		Monthly
11332	 DEPARTMENT OF EDUCATION/ MELECIO ARCEO MEMORIAL ELEMENTARY SCHOOL 	TEACHER I 		Permanent	3707	2013-01-04	2013-10-25	18,549.00	11-1	t	0.00		Monthly
11333	 DEPARTMENT OF EDUCATION/ MELECIO ARCEO MEMORIAL ELEMENTARY SCHOOL	TEACHER I 		Substitute	3707	2012-10-10	2012-11-06	18,549.00	11-1	t	0.00		Monthly
11334	 DEPARTMENT OF EDUCATION/ MELECIO ARCEO MEMORIAL ELEMENTARY SCHOOL	TEACHER I 		Substitute	3707	2012-09-19	2012-10-09	18,549.00	11-1	t	0.00		Monthly
11335	 DEPARTMENT OF EDUCATION/ MELECIO ARCEO MEMORIAL ELEMENTARY SCHOOL	TEACHER I 		Substitute	3707	2012-06-04	2012-07-23	18,549.00	11-1	t	0.00		Monthly
11336	DEPARTMENT OF EDUCATION, BATANGAS CITY  	NURSE II		Permanent	3705	2023-01-01	2024-07-12	42,694.00	16-8	t	0.00		Monthly
11337	DEPARTMENT OF EDUCATION, BATANGAS CITY  	NURSE II		Permanent	3705	2022-06-25	2022-12-31	41,172.00	16-8	t	0.00		Monthly
11338	DEPARTMENT OF EDUCATION, BATANGAS CITY  	NURSE II		Permanent	3705	2022-01-01	2022-06-24	40,725.00	16-7	t	0.00		Monthly
11339	DEPARTMENT OF EDUCATION, BATANGAS CITY 	NURSE II		Permanent	3705	2021-06-01	2021-12-31	39,203.00	16-7	t	0.00		Monthly
11340	DEPARTMENT OF EDUCATION, BATANGAS CITY  	NURSE II		Permanent	3705	2021-01-01	2021-05-31	35,915.00	15-7	t	0.00		Monthly
11341	DEPARTMENT OF EDUCATION, BATANGAS CITY  	NURSE II		Permanent	3705	2020-01-01	2020-12-31	34,393.00	15-7	t	0.00		Monthly
11342	DEPARTMENT OF EDUCATION, BATANGAS CITY	NURSE II		Permanent	3705	2019-06-25	2019-12-31	32,871.00	15-7	t	0.00		Monthly
11343	DEPARTMENT OF EDUCATION, BATANGAS CITY	NURSE II		Permanent	3705	2019-01-01	2019-06-24	32,469.00	15-6	t	0.00		Monthly
11344	DEPARTMENT OF EDUCATION, BATANGAS CITY  	NURSE II		Permanent	3705	2018-01-01	2018-12-31	30,799.00	15-6	t	0.00		Monthly
11345	DEPARTMENT OF EDUCATION, BATANGAS CITY  	NURSE II		Permanent	3705	2017-01-01	2017-12-31	29,214.00	15-6	t	0.00		Monthly
11346	DEPARTMENT OF EDUCATION, BATANGAS CITY	NURSE II		Permanent	3705	2016-06-25	2016-12-31	27,712.00	15-6	t	0.00		Monthly
11347	DEPARTMENT OF EDUCATION, BATANGAS CITY 	NURSE II		Permanent	3705	2016-01-01	2016-06-24	27,401.00	15-5	t	0.00		Monthly
11348	DEPARTMENT OF EDUCATION, BATANGAS CITY 	 NURSE II		Permanent	3705	2013-06-25	2015-12-31	26,000.00	15-4	t	0.00		Monthly
11349	DEPARTMENT OF EDUCATION, BATANGAS CITY  	NURSE II		Permanent	3705	2012-06-01	2013-06-24	25,718.00	15-4	t	0.00		Monthly
11350	DEPARTMENT OF EDUCATION, BATANGAS CITY	NURSE II		Permanent	3705	2011-06-01	2012-05-31	23,621.00	15-4	t	0.00		Monthly
11351	DEPARTMENT OF EDUCATION, BATANGAS CITY	NURSE II		Permanent	3705	2010-06-26	2011-05-31	21,523.00	15-4	t	0.00		Monthly
11352	DEPARTMENT OF EDUCATION, BATANGAS CITY  	NURSE II		Permanent	3705	2010-06-24	2010-06-25	21,172.00	12-3	t	0.00		Monthly
11353	DEPARTMENT OF EDUCATION, BATANGAS CITY  	NURSE II		Permanent	3705	2009-07-01	2010-06-23	19,040.00	12-3	t	0.00		Monthly
11354	DEPARTMENT OF EDUCATION, BATANGAS CITY	PUBLIC HEALTH NURSE I		Permanent	3705	2008-07-01	2009-06-30	14,197.00	12-3	t	0.00		Monthly
11355	DEPARTMENT OF EDUCATION, BATANGAS CITY	PUBLIC HEALTH NURSE I		Permanent	3705	2008-01-12	2008-06-30	12,906.00	12-3	t	0.00		Monthly
11356	DEPARTMENT OF EDUCATION, BATANGAS CITY 	PUBLIC HEALTH NURSE I		Permanent	3705	2007-01-07	2007-12-31	12,591.00	12-2	t	0.00		Monthly
11357	DEPARTMENT OF EDUCATION, BATANGAS CITY	PUBLIC HEALTH NURSE I		Permanent	3705	2005-01-01	2007-06-30	11,446.00	12-2	t	0.00		Monthly
11358	DEPARTMENT OF EDUCATION, BATANGAS CITY	PUBLIC HEALTH NURSE I		Permanent	3705	2001-07-01	2004-12-31	11,167.00	12-1	t	0.00		Monthly
11359	DEPARTMENT OF EDUCATION, BATANGAS CITY	PUBLIC HEALTH NURSE I		Permanent	3705	2001-06-25	2001-06-30	10,635.00	12-1	t	0.00		Monthly
11360	CAPHEALTH MAINTENANCE ORG. INC	ADMINISTRATIVE CLERK III		Permanent	3705	1996-10-03	2001-06-18	10,000.00		f	0.00		Monthly
11361	COLGATE-PALMOLIVE, INC.	SALES REPRESENTATIVE		Permanent	3708	2004-04-01	2004-04-30	0.00		f	0.00		Annual
11362	OSTREA DENTAL CLINIC	DENTAL ASSISTANT		Permanent	3708	2004-05-01	2004-05-31	0.00		f	0.00		Annual
11363	ERCIA DENTAL CLINIC	DENTAL ASSISTANT		Casual	3708	2005-02-01	2005-02-28	0.00		f	0.00		Annual
11364	DEPARTMENT OF EDUCATION	PRINCIPAL III		Permanent	3709	2025-01-01	2025-03-05	70,013.00	21-1	t	0.00		Monthly
11365	DEPARTMENT OF EDUCATION	PRINCIPAL III		Permanent	3709	2024-01-01	2024-12-31	67,005.00	21-1	t	0.00		Monthly
11366	DEPARTMENT OF EDUCATION	PRINCIPALL III		Permanent	3709	2023-08-01	2023-12-31	63,997.00	21-1	t	0.00		Monthly
11367	DEPARTMENT OF EDUCATION	PRINCIPAL II		Permanent	3709	2023-01-01	2023-07-31	57,347.00	20-1	t	0.00		Monthly
11368	DEPARTMENT OF EDUCATION	PRINCIPAL II		Permanent	3709	2022-01-01	2022-12-31	55,799.00	20-1	t	0.00		Monthly
11369	DEPARTMENT OF EDUCATION	PRINCIPAL II		Permanent	3709	2021-07-01	2021-12-31	54,251.00	20-1	t	0.00		Monthly
11370	DEPARTMENT OF EDUCATION	PRINCIPAL I		Permanent	3709	2021-01-01	2021-06-30	48,313.00	19-1	t	0.00		Monthly
11371	DEPARTMENT OF EDUCATION	PRINCIPAL I W/ SALARY ADJUSTMENT		Permanent	3709	2020-01-01	2020-12-31	46,791.00	19-1	t	0.00		Monthly
11372	DEPARTMENT OF EDUCATION	PRINCIPAL I W/ SALARY ADJUSTMENT		Permanent	3709	2019-01-01	2019-12-31	45,269.00	19-1	t	0.00		Monthly
11373	DEPARTMENT OF EDUCATION	PRINCIPAL I		Permanent	3709	2018-07-02	2018-12-31	42,099.00	19-1	t	0.00		Monthly
11374	DEPARTMENT OF EDUCATION	TEACHER III W/ SALARY ADJ.		Permanent	3709	2018-01-01	2018-07-01	24,799.00	13-3	t	0.00		Monthly
11375	DEPARTMENT OF EDUCATION	TEACHER III W/ SALARY ADJ.		Permanent	3709	2017-01-01	2017-12-31	23,780.00	13-3	t	0.00		Monthly
11376	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3710	2025-01-01	0001-01-01	34,733.00	13-2	t	0.00		Monthly
11378	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3710	2024-01-01	2024-03-10	32,870.00	13-1	t	0.00		Monthly
11379	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3710	2023-01-01	2023-12-31	31,320.00	13-1	t	0.00		Monthly
11380	DEPARTMENT OF EDUCATION	TEACHER III W/ SALARY ADJ.		Permanent	3709	2016-01-01	2016-12-31	22,804.00	13-3	t	0.00		Monthly
11381	DEPARTMENT OF EDUCATION	TEACHER III W/ STEP		Permanent	3709	2015-06-16	2015-12-31	21,867.00	13-3	t	0.00		Monthly
11382	DEPARTMENT OF EDUCATION	TEACHER III W/ STEP		Permanent	3709	2012-06-17	2015-06-15	21,650.00	13-2	t	0.00		Monthly
11377	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3710	2024-04-10	2024-12-31	33,183.00	13-2	t	0.00		Monthly
11384	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3710	2022-01-01	2022-12-31	29,798.00	13-1	t	0.00		Monthly
11385	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3710	2021-04-10	2021-12-31	28,276.00	13-1	t	0.00		Monthly
11386	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3710	2021-01-01	2021-03-10	24,450.00	11-3	t	0.00		Monthly
11387	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3710	2020-01-01	2020-12-31	22,889.00	11-3	t	0.00		Monthly
11389	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3710	2019-01-01	2019-06-30	21,038.00	11-3	t	0.00		Monthly
11390	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3710	2018-01-01	2018-12-31	20,437.00	11-2	t	0.00		Monthly
11391	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3710	2017-01-01	2017-12-31	19,853.00	11-2	t	0.00		Monthly
11383	DEPARTMENT OF EDUCATION	TEACHER III W/ SALARY ADJ.		Permanent	3709	2012-06-01	2012-06-16	21,436.00	13-1	t	0.00		Monthly
11392	DEPARTMENT OF EDUCATION	TEACHER III W/ SALARY ADJ.		Permanent	3709	2011-06-01	2012-05-31	19,658.00	13-1	t	0.00		Monthly
11393	DEPARTMENT OF EDUCATION	TEACHER III W/ SALARY ADJ.		Permanent	3709	2010-06-24	2011-05-31	17,880.00	13-1	t	0.00		Monthly
11394	DEPARTMENT OF EDUCATION	TEACHER III W/ SALARY ADJ.		Permanent	3709	2009-07-01	2010-06-23	16,101.00	13-1	t	0.00		Monthly
11395	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3709	2009-06-16	2009-06-30	13,512.00	12-1	t	0.00		Monthly
11396	DEPARTMENT OF EDUCATION	TEACHER II W/ SALARY ADJ.		Permanent	3709	2008-07-01	2009-06-15	12,748.00	11-1	t	0.00		Monthly
11397	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3709	2007-11-15	2008-06-30	11,589.00	11-1	t	0.00		Monthly
11398	DEPARTMENT OF EDUCATION	TEACHER I W/ SALARY ADJ.		Permanent	3709	2007-07-01	2007-11-14	11,207.00	10-2	t	0.00		Monthly
11399	DEPARTMENT OF EDUCATION	TEACHER I W/ STEP		Permanent	3709	2005-01-01	2007-06-30	10,188.00	10-2	t	0.00		Monthly
11400	DEPARTMENT OF EDUCATION	TEACHER II W/ SALARY ADJ.		Permanent	3709	2008-07-01	2009-06-15	12,748.00	11-1	t	0.00		Monthly
11401	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3709	2007-11-15	2008-06-30	11,589.00	11-1	t	0.00		Monthly
11402	DEPARTMENT OF EDUCATION	TEACHER I W/ SALARY ADJ.		Permanent	3709	2007-07-01	2007-11-14	11,207.00	10-2	t	0.00		Monthly
11403	DEPARTMENT OF EDUCATION	TEACHER I W/ STEP		Permanent	3709	2005-01-01	2007-06-30	10,188.00	10-2	t	0.00		Monthly
11404	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3709	2001-09-04	2004-12-31	9,939.00	10-1	t	0.00		Monthly
11405	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3710	2016-01-07	2016-12-31	19,286.00	11-2	t	0.00		Monthly
11406	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3710	2016-01-01	2016-06-30	19,077.00	11-1	t	0.00		Monthly
11407	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3710	2013-01-07	2015-12-31	18,549.00	11-1	t	0.00		Monthly
11388	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3710	2019-01-07	2019-12-31	21,327.00	11-3	t	0.00		Monthly
11415	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3710	2009-06-23	2009-06-30	12,635.00	11-3	t	0.00		Monthly
11416	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3710	2008-03-11	2009-06-22	12,328.00	11-2	t	0.00		Monthly
11417	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3710	2008-01-07	2008-02-11	12,328.00	11-2	t	0.00		Monthly
11418	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3710	2007-01-07	2008-06-30	11,207.00	11-2	t	0.00		Monthly
11419	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3710	2007-06-23	2007-06-30	10,188.00	11-2	t	0.00		Monthly
11420	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3710	2003-06-23	2007-06-22	9,939.00	11-1	t	0.00		Monthly
11411	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3710	2011-06-16	2012-06-01	18,333.00	12-1	t	0.00		Monthly
11422	DEPARTMENT OF EDUCATION JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3712	2025-01-01	2025-03-06	34,733.00	13-2	t	0.00		Monthly
11423	DEPARTMENT OF EDUCATION JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3712	2024-01-01	2024-12-31	33,183.00	13-2	t	0.00		Monthly
11424	DEPARTMENT OF EDUCATION JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3712	2023-09-01	2023-12-31	32,870.00	13-2	t	0.00		Monthly
11425	DEPARTMENT OF EDUCATION JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3712	2023-01-01	2023-12-31	31,320.00	13-1	t	0.00		Monthly
11426	DEPARTMENT OF EDUCATION JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3712	2022-01-01	2022-12-31	29,798.00	13-1	t	0.00		Monthly
11427	DEPARTMENT OF EDUCATION JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3712	2021-01-09	2021-12-31	28,276.00	13-1	t	0.00		Monthly
11428	DEPARTMENT OF EDUCATION JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3712	2021-01-01	2021-08-31	24,161.00	11-2	t	0.00		Monthly
11429	DEPARTMENT OF EDUCATION JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3712	2020-01-01	2020-12-31	21,038.00	11-2	t	0.00		Monthly
11430	DEPARTMENT OF EDUCATION JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3712	2019-01-07	2019-12-31	21,038.00	11-2	t	0.00		Monthly
11431	DEPARTMENT OF EDUCATION JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3712	2019-01-01	2019-06-30	20,179.00	11-1	t	0.00		Monthly
11432	DEPARTMENT OF EDUCATION JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3712	2018-01-01	2018-12-31	20,179.00	11-1	t	0.00		Monthly
11433	DEPARTMENT OF EDUCATION JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3712	2017-01-01	2017-12-31	19,620.00	11-1	t	0.00		Monthly
11434	DEPARTMENT OF EDUCATION JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3712	2016-07-01	2016-12-31	19,077.00	11-1	t	0.00		Monthly
11452	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3711	2009-07-01	2010-06-23	173,796.00	11-3	t	0.00		Annual
11421	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3711	2023-01-01	0001-01-01	375,840.00	13-1	t	0.00		Annual
11435	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3711	2022-10-03	2022-12-31	357,576.00	13-1	t	0.00		Annual
11436	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3711	2022-09-05	2022-10-02	330,168.00	11-8	t	0.00		Annual
11437	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3711	2022-01-01	2022-09-04	326,460.00	11-8	t	0.00		Annual
11438	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3711	2021-01-01	2021-01-31	307,716.00	11-8	t	0.00		Annual
11439	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3711	2020-01-01	2020-12-31	288,984.00	11-8	t	0.00		Annual
11440	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3711	2019-09-05	2019-12-31	270,240.00	11-7	t	0.00		Annual
11441	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3711	2019-01-01	2019-09-04	266,952.00	11-7	t	0.00		Annual
11442	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3711	2018-01-01	2018-12-31	258,024.00	11-7	t	0.00		Annual
11443	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3711	2017-01-01	2017-12-31	249,732.00	11-7	t	0.00		Annual
11465	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3713	2021-01-01	2021-06-30	28,589.00	13-2	t	0.00		Monthly
11445	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3711	2016-01-01	2016-09-04	239,100.00	11-6	t	0.00		Annual
11446	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3711	2013-09-05	2013-12-30	231,624.00	11-5	t	0.00		Annual
11447	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3711	2012-06-01	2013-09-04	229,332.00	11-5	t	0.00		Annual
11448	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3711	2011-09-05	2012-05-31	213,180.00	11-4	t	0.00		Annual
11449	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3711	2011-06-01	2011-09-04	210,480.00	11-4	t	0.00		Annual
11450	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3711	2010-09-05	2011-05-31	193,884.00	11-3	t	0.00		Annual
11451	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3711	2010-06-24	2010-09-04	190,800.00	11-3	t	0.00		Annual
11453	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3711	2008-07-01	2009-06-30	147,936.00	11-3	t	0.00		Annual
11454	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3711	2007-07-01	2008-06-30	134,484.00	11-3	t	0.00		Annual
11456	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3711	2002-07-27	2004-12-31	119,268.00	11-2	t	0.00		Annual
11457	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3711	2001-09-05	2002-07-26	119,268.00	11-1	t	0.00		Annual
11455	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3711	2005-01-01	2007-06-30	122,256.00	11-2	t	0.00		Annual
11444	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3711	2016-09-05	2016-12-31	241,704.00	11-6	t	0.00		Annual
11458	DEPARTMENT OF EDUCATION	PRINCIPAL I		Permanent	3713	2025-01-03	0001-01-01	56,390.00	19-1	t	0.00		Monthly
11459	DEPARTMENT OF EDUCATION	HEAD TEACHER I		Permanent	3713	2025-01-01	2025-01-02	37,024.00	14-1	t	0.00		Monthly
11461	DEPARTMENT OF EDUCATION	HEAD TEACHER I		Permanent	3713	2023-07-05	2023-12-31	33,843.00	14-1	t	0.00		Monthly
11462	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3713	2023-01-01	2023-07-04	31,949.00	13-3	t	0.00		Monthly
11463	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3713	2022-01-01	2022-12-31	30,427.00	13-3	t	0.00		Monthly
11464	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3713	2021-07-01	2021-12-31	28,905.00	13-3	t	0.00		Monthly
11466	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3713	2020-01-01	2020-12-31	27,067.00	13-2	t	0.00		Monthly
11467	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3713	2019-01-01	2019-12-31	25,545.00	13-2	t	0.00		Monthly
11468	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3713	2018-07-01	2018-12-31	24,510.00	13-2	t	0.00		Monthly
11460	DEPARTMENT OF EDUCATION	HEAD TEACHER I		Permanent	3713	2024-01-01	2024-12-31	35,434.00	14-1	t	0.00		Monthly
11469	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3713	2018-01-01	2018-06-30	24,224.00	13-1	t	0.00		Monthly
11470	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3713	2017-01-01	2017-12-31	23,257.00	13-1	t	0.00		Monthly
11471	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3713	2016-01-01	2016-12-31	22,328.00	13-1	t	0.00		Monthly
11472	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3713	2015-07-01	2015-12-31	21,436.00	13-1	t	0.00		Monthly
11473	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3713	2014-07-08	2015-06-30	18,735.00	11-1	t	0.00		Monthly
11474	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3713	2012-06-01	2014-07-07	18,799.00	11-1	t	0.00		Monthly
11475	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3713	2011-07-08	2012-05-31	17,099.00	11-1	t	0.00		Monthly
11476	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3713	2011-06-09	2011-07-07	17,099.00	11-1	t	0.00		Monthly
11477	JOSE C. PASTOR MES	TEACHER III		Permanent	3714	2025-01-01	2025-03-07	416,796.00	13-2	t	0.00		Annual
11478	JOSE C. PASTOR MES	TEACHER III		Permanent	3714	2024-01-01	2024-12-31	398,196.00	13-2	t	0.00		Annual
11479	JOSE C. PASTOR MES	TEACHER III		Permanent	3714	2023-11-03	2023-12-31	379,596.00	13-2	t	0.00		Annual
11480	JOSE C. PASTOR MES	TEACHER III		Permanent	3714	2023-01-01	2023-11-02	375,840.00	13-2	t	0.00		Annual
11481	JOSE C. PASTOR MES	TEACHER III		Permanent	3714	2022-01-01	2022-12-31	357,576.00	13-2	t	0.00		Annual
11482	SOUTH DISTRICT	TEACHER III		Permanent	3714	2021-01-01	2021-12-31	339,312.00	13-2	t	0.00		Annual
11483	SOUTH DISTRICT	TEACHER III		Permanent	3714	2020-11-03	2020-12-31	321,048.00	13-2	t	0.00		Annual
11484	SOUTH DISTRICT	TEACHER II		Permanent	3714	2020-01-01	2020-11-02	300,804.00	12-2	t	0.00		Annual
11485	SOUTH DISTRICT	TEACHER II		Permanent	3714	2019-01-01	2019-12-31	282,120.00	12-2	t	0.00		Annual
11486	SOUTH DISTRICT	TEACHER II		Permanent	3714	2018-09-16	2018-12-31	268,920.00	12-2	t	0.00		Annual
11487	SOUTH DISTRICT	TEACHER II		Permanent	3714	2018-09-03	2018-09-15	268,920.00	12-2	t	0.00		Annual
11488	SOUTH DISTRICT	TEACHER II		Permanent	3714	2018-01-01	2018-09-02	268,920.00	12-2	t	0.00		Annual
11489	SOUTH DISTRICT	TEACHER II		Permanent	3714	2017-01-01	2017-12-31	259,512.00	12-2	t	0.00		Annual
11490	SOUTH DISTRICT	TEACHER II		Permanent	3714	2016-01-01	2016-12-31	250,440.00	12-2	t	0.00		Annual
11491	SOUTH DISTRICT	TEACHER I		Permanent	3714	2015-01-06	2015-12-31	241,680.00	11-1	t	0.00		Annual
11492	SOUTH DISTRICT	TEACHER I		Permanent	3714	2013-09-24	2015-11-05	239,280.00	11-1	t	0.00		Annual
11493	SOUTH DISTRICT	TEACHER I		Permanent	3714	2013-09-20	2013-09-23	239,280.00	11-1	t	0.00		Annual
11494	SOUTH DISTRICT	TEACHER I		Permanent	3714	2013-08-29	2013-09-19	239,280.00	11-1	t	0.00		Annual
11495	SOUTH DISTRICT	TEACHER I		Permanent	3714	2013-08-28	2013-08-28	239,280.00	11-1	t	0.00		Annual
11496	SOUTH DISTRICT	TEACHER II		Permanent	3714	2012-11-06	2013-08-27	239,280.00	11-1	t	0.00		Annual
11497	SOUTH DISTRICT	TEACHER I		Permanent	3714	2012-06-01	2012-11-05	222,588.00	11-1	t	0.00		Annual
11498	SOUTH DISTRICT	TEACHER I		Permanent	3714	2011-06-01	2012-05-31	205,188.00	11-1	t	0.00		Annual
11499	SOUTH DISTRICT	TEACHER I		Permanent	3714	2010-09-15	2011-05-31	205,188.00	11-1	t	0.00		Annual
11500	SOUTH DISTRICT	TEACHER I		Permanent	3714	2010-08-16	2010-09-14	187,788.00	11-1	t	0.00		Annual
11501	SOUTH DISTRICT	TEACHER I		Permanent	3714	2010-08-01	2010-08-15	187,788.00	11-1	t	0.00		Annual
11502	SOUTH DISTRICT	TEACHER I		Permanent	3714	2010-07-30	2010-07-30	187,788.00	11-1	t	0.00		Annual
11503	SOUTH DISTRICT	TEACHER I		Permanent	3714	2010-06-24	2010-07-29	187,788.00	11-1	t	0.00		Annual
11504	SOUTH DISTRICT	TEACHER I		Permanent	3714	2010-02-11	2010-06-23	170,376.00	11-1	t	0.00		Annual
11505	SOUTH DISTRICT	TEACHER I		Permanent	3714	2010-01-11	2010-02-10	170,376.00	11-1	t	0.00		Annual
11506	SOUTH DISTRICT	TEACHER I		Permanent	3714	2009-01-07	2010-01-11	170,376.00	11-1	t	0.00		Annual
11507	SOUTH DISTRICT	TEACHER I		Permanent	3714	2008-07-01	2009-06-30	144,312.00	11-1	t	0.00		Annual
11508	SOUTH DISTRICT	TEACHER I		Permanent	3714	2007-08-15	2008-06-30	131,196.00	11-1	t	0.00		Annual
11509	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3715	2015-04-06	0001-01-01	35,049.00	13-1	t	0.00		Monthly
11510	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3715	2011-11-21	2013-06-12	18,549.00	12-1	t	0.00		Monthly
11511	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3715	2014-06-02	2015-04-05	18,549.00	11-1	t	0.00		Monthly
11512	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3715	2013-06-13	2014-06-01	18,549.00	11-1	t	0.00		Monthly
11513	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3716	2025-01-01	2025-03-07	34,733.00	13-2	t	0.00		Monthly
11514	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3716	2024-01-01	2024-12-31	33,183.00	13-2	t	0.00		Monthly
11515	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3716	2023-01-01	2023-12-31	31,633.00	13-2	t	0.00		Monthly
11516	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3716	2022-08-05	2022-12-31	30,111.00	13-2	t	0.00		Monthly
11517	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3716	2022-01-01	2022-08-04	29,798.00	13-1	t	0.00		Monthly
11518	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3716	2021-01-01	2021-12-31	28,276.00	13-1	t	0.00		Monthly
11519	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3716	2020-01-01	2020-12-31	26,754.00	13-1	t	0.00		Monthly
11520	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3716	2019-08-05	2019-12-31	25,232.00	13-1	t	0.00		Monthly
11521	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER  II		Permanent	3716	2019-01-01	2019-08-04	22,938.00	12-1	t	0.00		Monthly
11522	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3716	2018-01-01	2018-12-31	22,149.00	12-1	t	0.00		Monthly
11523	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3716	2017-06-05	2017-12-31	21,387.00	12-1	t	0.00		Monthly
11524	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3716	2017-01-01	2017-06-04	20,326.00	11-3	t	0.00		Monthly
11525	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3716	2016-03-26	2016-12-31	19,709.00	11-3	t	0.00		Monthly
11526	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3716	2016-01-01	2016-03-25	19,496.00	11-2	t	0.00		Monthly
11527	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3716	2013-03-26	2015-12-31	18,922.00	11-2	t	0.00		Monthly
11528	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3716	2012-06-01	2013-03-25	18,735.00	11-2	t	0.00		Monthly
11529	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3716	2011-06-01	2012-05-31	17,318.00	11-2	t	0.00		Monthly
11536	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3715	2009-07-27	2011-11-20	14,198.00	11-1	t	0.00		Monthly
11530	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3716	2010-06-24	2011-05-31	15,900.00	11-1	t	0.00		Monthly
11531	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3716	2010-03-26	2010-06-23	14,483.00	10-1	t	0.00		Monthly
11532	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3716	2009-07-01	2010-03-25	14,198.00	10-1	t	0.00		Monthly
11533	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3716	2007-07-01	2008-06-30	10,933.00	10-1	t	0.00		Monthly
11534	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3716	2007-03-26	2007-06-30	9,939.00	10-1	t	0.00		Monthly
11535	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	PRE-ELEM. COORDINATOR AND ELEMENTARY TEACHER		Permanent	3716	2002-04-05	2007-03-25	8,000.00		f	0.00		Monthly
11537	DEPARTMENT OF EDUCATION	HEAD TEACHER II		Permanent	3717	2025-01-01	0001-01-01	40,208.00	15-1	t	0.00		Monthly
11538	DEPARTMENT OF EDUCATION	HEAD TEACHER II		Permanent	3717	2024-04-08	2024-12-31	38,413.00	15-1	t	0.00		Monthly
11539	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3717	2024-01-01	2024-04-07	31,320.00	13-1	t	0.00		Monthly
11540	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3717	2023-01-01	2023-12-31	31,320.00	13-1	t	0.00		Monthly
11541	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3717	2022-01-01	2022-12-31	29,798.00	13-1	t	0.00		Monthly
11544	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3717	2021-06-01	2021-10-04	24,161.00	11-2	t	0.00		Monthly
11545	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3717	2021-01-01	2021-07-31	23,877.00	11-1	t	0.00		Monthly
11546	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3717	2020-06-16	2020-12-31	22,316.00	11-1	t	0.00		Monthly
11547	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3717	2020-01-01	2020-06-15	22,316.00	11-1	t	0.00		Monthly
11548	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3717	2019-01-01	2019-12-31	20,754.00	11-1	t	0.00		Monthly
11549	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3717	2018-08-01	2018-12-31	20,179.00	11-1	t	0.00		Monthly
11550	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3717	2018-01-01	2018-07-31	20,179.00	11-1	t	0.00		Monthly
11551	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3717	2017-01-01	2017-12-31	19,620.00	11-1	t	0.00		Monthly
11552	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3717	2016-01-01	2016-12-31	19,077.00	11-1	t	0.00		Monthly
11553	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3717	2015-07-01	2015-12-31	18,549.00	11-1	t	0.00		Monthly
11543	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3717	2021-10-05	2021-12-31	28,276.00	13-1	t	0.00		Monthly
11554	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3718	2025-01-01	2025-03-07	29,165.00	12-1	t	0.00		Monthly
11555	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, PARANG ELEMENTARY SCHOOL	TEACHER II		Permanent	3718	2024-01-01	2024-12-31	29,165.00	12-1	t	0.00		Monthly
11556	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3718	2023-01-17	2023-12-31	27,284.00	11-2	t	0.00		Monthly
11557	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3718	2023-01-01	2023-01-16	25,723.00	11-2	t	0.00		Monthly
11558	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3718	2022-01-01	2022-12-31	24,161.00	11-2	t	0.00		Monthly
11559	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3718	2021-06-04	2021-12-31	23,877.00	11-1	t	0.00		Monthly
11560	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, PARANG ELEMENTARY SCHOOL	TEAHER I		Permanent	3718	2021-01-01	2021-06-03	22,316.00	11-1	t	0.00		Monthly
11561	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3718	2020-01-01	2020-12-31	20,754.00	11-1	t	0.00		Monthly
11562	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3718	2019-01-01	2019-12-31	20,179.00	11-1	t	0.00		Monthly
11563	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3718	2018-06-04	2018-12-31	19,620.00	11-1	t	0.00		Monthly
11564	DEPARTMENT OF EDUCATION, DIVISION OF BATANGAS CITY, PARANG ELEMENTARY SCHOOL	TEACHER I		Substitute	3718	2017-06-05	2017-08-03	19,620.00	11-1	t	0.00		Monthly
11565	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3719	2025-01-01	0001-01-01	30,024.00	11-1	t	0.00		Monthly
11566	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3719	2024-08-01	2024-12-31	28,512.00	11-1	t	0.00		Monthly
11567	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3719	2024-01-01	2024-07-31	28,512.00	11-1	t	0.00		Monthly
11568	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3719	2023-01-01	2023-12-31	28,512.00	11-1	t	0.00		Monthly
11569	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3719	2022-11-19	2022-12-31	25,723.00	11-1	t	0.00		Monthly
11570	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3719	2022-01-01	2022-11-18	24,161.00	11-1	t	0.00		Monthly
11571	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3719	2021-01-01	2021-12-31	22,316.00	11-1	t	0.00		Monthly
11572	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3719	2020-01-01	2020-12-31	22,316.00	11-1	t	0.00		Monthly
11574	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3719	2018-11-19	2018-12-31	20,179.00	11-1	t	0.00		Monthly
11575	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3719	2018-10-09	2018-11-06	20,179.00	11-1	t	0.00		Monthly
11576	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3719	2018-08-30	2018-11-07	20,179.00	11-1	t	0.00		Monthly
11573	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3719	2019-01-01	2019-12-31	20,754.00	11-1	t	0.00		Monthly
11577	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3720	2024-12-06	2025-03-07	33,183.00	13-2	t	0.00		Monthly
11578	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3720	2024-01-01	2024-12-05	33,183.00	13-2	t	0.00		Monthly
11579	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3720	2023-11-03	2023-12-31	31,320.00	13-1	t	0.00		Monthly
11580	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3720	2023-01-01	2023-11-02	31,320.00	13-1	t	0.00		Monthly
11581	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Casual	3720	2022-01-01	2022-12-31	31,320.00	13-1	t	0.00		Monthly
11582	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3720	2021-01-01	2021-12-31	28,276.00	13-1	t	0.00		Monthly
11583	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3720	2020-11-03	2020-12-31	22,316.00	13-1	t	0.00		Monthly
11584	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3720	2020-01-01	2020-11-02	20,754.00	11-2	t	0.00		Monthly
11585	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3720	2019-01-01	2019-12-31	20,754.00	11-2	t	0.00		Monthly
11586	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3720	2018-06-04	2018-12-31	20,179.00	11-1	t	0.00		Monthly
11587	DEPARTMENT OF EDUCATION-BILOGO ELEMENTARY SCHOOL	TEACHER I		Substitute	3720	2018-01-09	2018-03-22	20,179.00	11-1	t	0.00		Monthly
11588	DEPARTMENT OF EDUCATION-BILOGO ELEMENTARY SCHOOL	TEACHER I		Substitute	3720	2017-11-27	2017-12-21	20,179.00	11-1	t	0.00		Monthly
11589	DEPARTMENT OF EDUCATION-ELIJAN ELEMENTARY SCHOOL	TEACHER I		Substitute	3720	2017-10-10	2017-11-02	20,179.00	11-1	t	0.00		Monthly
11590	DEPARTMENT OF EDUCATION-ELIJAN ELEMENTARY SCHOOL	TEACHER I		Substitute	3720	2017-09-14	2017-10-03	20,179.00	11-1	t	0.00		Monthly
11593	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3721	2025-01-01	0001-01-01	30,024.00	11-1	t	0.00		Monthly
11594	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3721	2024-01-01	2024-12-31	28,512.00	11-1	t	0.00		Monthly
11591	DEPARTMENT OF EDUCATION-BAGONG SILANG ELEMENTARY SCHOOL	TEACHER I		Substitute	3720	2017-06-13	2017-08-11	20,179.00	11-1	t	0.00		Monthly
11592	WALDORF SCHOOL OF BATANGAS	ELEMENTARY TEACHER		Permanent	3720	2015-05-18	2017-04-07	13,000.00	00-0	f	0.00		Monthly
11595	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3721	2023-02-13	2023-12-31	27,000.00	11-1	t	0.00		Monthly
11597	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3722	2025-01-01	0001-01-01	34,421.00	13-1	t	0.00		Monthly
11598	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3722	2024-02-12	2024-02-29	32,870.00	13-1	t	0.00		Monthly
11599	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3722	2024-01-01	2024-02-11	27,000.00	11-1	t	0.00		Monthly
11600	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3722	2023-01-01	2023-12-31	27,000.00	11-1	t	0.00		Monthly
11601	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3722	2022-01-01	2022-12-31	25,439.00	11-1	t	0.00		Monthly
11602	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3722	2021-09-22	2021-12-31	23,877.00	11-1	t	0.00		Monthly
11603	UCCP HOPE CHRISTIAN SCHOOL OF BATANGAS INC.	ELEMENTARY TEACHER		Permanent	3722	2006-06-01	2021-05-31	17,800.00		f	0.00		Monthly
11596	INTEGRATED BASIC EDUCATION DEPARTMENT/SAINT BRIDGET COLLEGE	CLASSROOM TEACHER		Permanent	3721	2018-01-06	2022-05-31	200,250.00		f	0.00		Monthly
11604	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3723	2024-08-16	0001-01-01	28,512.00	11-1	t	0.00		Monthly
11605	UB WALDORF SCHOOL INCORPORATED	TEACHER		Contractual	3723	2024-07-01	2024-08-02	14,500.00		f	0.00		Monthly
11606	DEPARTMENT OF EDUCATION BATANGAS CITY	MASTER TEACHER II		Permanent	3724	2025-01-01	2025-03-10	56,390.00	19-1	t	0.00		Daily
11607	DEPARTMENT OF EDUCATION BATANGAS CITY	MASTER TEACHER II		Permanent	3724	2024-01-01	2024-01-31	53,783.00	19-1	t	0.00		Daily
11608	DEPARTMENT OF EDUCATION BATANGAS CITY	MASTER TEACHER II		Permanent	3724	2023-01-23	2023-12-31	51,357.00	19-1	t	0.00		Monthly
11609	DEPARTMENT OF EDUCATION BATANGAS CITY	MASTER TEACHER I		Permanent	3724	2023-01-01	2023-01-22	46,725.00	18-1	t	0.00		Monthly
11610	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3725	2025-01-01	0001-01-01	30,024.00	11-1	t	0.00		Monthly
11611	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3725	2024-08-01	2024-12-31	28,512.00	11-1	t	0.00		Monthly
11612	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3725	2024-02-05	2024-07-31	28,796.00	11-2	t	0.00		Monthly
11613	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3725	2024-01-01	2024-02-04	28,512.00	11-1	t	0.00		Monthly
11614	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3725	2023-01-01	2023-12-31	27,000.00	11-1	t	0.00		Monthly
11615	DEPARTMENT OF EDUCATION BATANGAS CITY	MASTER TEACHER I		Permanent	3724	2022-01-01	2022-12-31	45,183.00	18-1	t	0.00		Monthly
11616	DEPARTMENT OF EDUCATION BATANGAS CITY	MASTER TEACHER I		Permanent	3724	2021-01-01	2021-12-31	43,681.00	18-1	t	0.00		Monthly
11617	DEPARTMENT OF EDUCATION BATANGAS CITY	MASTER TEACHER I		Permanent	3724	2020-03-02	2020-12-31	42,159.00	18-1	t	0.00		Monthly
11618	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER III		Permanent	3724	2020-01-01	2020-03-01	27,067.00	13-2	t	0.00		Monthly
11619	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER III		Permanent	3724	2019-01-25	2019-12-31	25,545.00	13-2	t	0.00		Monthly
11620	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER III		Permanent	3724	2019-01-01	2019-01-24	25,232.00	13-1	t	0.00		Monthly
11621	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER III		Permanent	3724	2018-01-01	2019-01-03	24,524.00	13-1	t	0.00		Monthly
11622	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER III		Permanent	3724	2017-01-01	2017-12-31	23,257.00	13-1	t	0.00		Monthly
11623	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER III		Permanent	3724	2016-01-25	2016-12-31	22,328.00	13-1	t	0.00		Monthly
11624	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER II		Permanent	3724	2016-01-01	2016-01-24	21,091.00	12-3	t	0.00		Monthly
11625	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER II		Permanent	3724	2015-07-14	2015-12-31	20,341.00	12-3	t	0.00		Monthly
11626	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER II		Permanent	3724	2012-07-15	2015-07-13	20,140.00	12-2	t	0.00		Monthly
11627	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER II		Permanent	3724	2012-06-01	2012-07-14	19,940.00	12-1	t	0.00		Monthly
11628	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER II		Permanent	3724	2011-06-01	2012-05-13	18,333.00	12-1	t	0.00		Monthly
11629	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER II		Permanent	3724	2010-06-24	2011-05-31	16,726.00	12-1	t	0.00		Monthly
11630	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER II		Permanent	3724	2009-07-14	2010-06-23	15,119.00	12-1	t	0.00		Monthly
11631	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER I		Permanent	3724	2009-06-13	2009-07-01	14,483.00	10-2	t	0.00		Monthly
11632	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER I		Permanent	3724	2008-07-01	2009-06-30	12,328.00	10-2	t	0.00		Monthly
11633	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER I		Permanent	3724	2007-07-01	2008-06-30	11,207.00	10-2	t	0.00		Monthly
11634	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER I		Permanent	3724	2006-01-01	2007-06-30	10,188.00	10-2	t	0.00		Monthly
11635	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER I		Permanent	3724	2002-07-01	2005-12-31	9,939.00	10-1	t	0.00		Monthly
11636	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3725	2022-01-01	2022-12-31	25,439.00	11-1	t	0.00		Monthly
11637	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3725	2021-02-05	2021-12-31	23,877.00	11-1	t	0.00		Monthly
11638	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3726	2025-01-02	0001-01-01	30,024.00	11-1	t	0.00		Monthly
11639	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3726	2024-01-01	2024-12-31	28,512.00	11-1	t	0.00		Monthly
11640	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3726	2023-02-02	2023-12-31	27,000.00	11-1	t	0.00		Monthly
11641	BATANGAS STATE UNIVERSITY - PABLO BORBON	LECTURER I		Temporary	3726	2021-08-12	2022-05-20	188.24		f	0.00		Hourly
11642	MARIAN LEARNING CENTER AND SCIENCE HIGH SCHOOL INC.	MATHEMATICS TEACHER/G9 ADVISER		Permanent	3726	2020-08-16	2021-05-20	11,400.00		f	0.00		Monthly
11643	MARIAN LEARNING CENTER AND SCIENCE HIGH SCHOOL INC.	JHS MATHEMATICS TEACHER/SHS SOCIAL SCIENCE TEACHER/G12		Permanent	3726	2019-08-13	2020-05-05	12,200.00		f	0.00		Monthly
11644	MARIAN LEARNING CENTER AND SCIENCE HIGH SCHOOL INC.	JHS MATHEMATICS TEACHER/SHS TEACHER/G11 ADVISER		Probationary	3726	2018-06-01	2019-04-30	11,000.00		f	0.00		Monthly
11645	MARIAN LEARNING CENTER AND SCIENCE HIGH SCHOOL INC.	SHS TEACHER/G11 ADVISER		Probationary	3726	2017-06-01	2018-04-30	11,000.00		f	0.00		Monthly
11646	DEPARTMENT OF EDUCATRION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3727	2025-01-01	2025-03-12	32,245.00	12-1	t	0.00		Monthly
11647	DEPARTMENT OF EDUCATRION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3727	2024-08-12	2024-12-31	30,705.00	12-1	t	0.00		Monthly
11648	DEPARTMENT OF EDUCATRION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3727	2024-01-01	2024-08-11	27,284.00	11-2	t	0.00		Monthly
11649	DEPARTMENT OF EDUCATRION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3727	2023-08-19	2023-12-31	27,284.00	11-2	t	0.00		Monthly
11650	DEPARTMENT OF EDUCATRION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3727	2023-01-01	2023-08-18	27,000.00	11-1	t	0.00		Monthly
11651	DEPARTMENT OF EDUCATRION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3727	2022-01-01	2022-12-31	25,439.00	11-1	t	0.00		Monthly
11652	DEPARTMENT OF EDUCATRION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3727	2021-01-01	2021-12-31	23,877.00	11-1	t	0.00		Monthly
11653	DEPARTMENT OF EDUCATRION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3727	2020-08-19	2020-12-31	22,316.00	11-1	t	0.00		Monthly
11654	DEPARTMENT OF EDUCATRION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Substitute	3727	2019-08-05	2019-09-10	20,754.00	11-1	t	0.00		Monthly
11655	DEPARTMENT OF EDUCATRION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	ELEMENTARY TEACHER		Contractual	3727	2015-05-01	2019-04-01	7,000.00	11-1	f	0.00		Monthly
11666	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / JOSE C. PASTOR MES	TEACHER III		Permanent	3729	2024-09-01	2025-03-12	33,183.00	13-	t	0.00		Monthly
11667	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / JOSE C. PASTOR MES	TEACHER III		Permanent	3729	2024-01-01	2024-08-31	32,870.00	13-2	t	0.00		Monthly
11668	 DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / JOSE C. PASTOR MES	TEACHER III		Permanent	3729	2023-01-01	2023-12-31	31,320.00	13-	t	0.00		Monthly
11669	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / JOSE C. PASTOR MES	TEACHER III		Permanent	3729	2022-01-01	2022-12-31	29,798.00	13-	t	0.00		Monthly
11670	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / JOSE C. PASTOR MES	TEACHER III		Permanent	3729	2021-09-01	2021-12-31	28,276.00	13-	t	0.00		Monthly
11671	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / JOSE C. PASTOR MES	TEACHER I		Permanent	3729	2021-02-20	2021-08-31	24,161.00	11-	t	0.00		Monthly
11672	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / JOSE C. PASTOR MES	TEACHER I		Permanent	3729	2021-01-01	2021-02-28	23,877.00	11-2	t	0.00		Monthly
11673	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / JOSE C. PASTOR MES	TEACHER I		Permanent	3729	2020-01-01	2020-12-31	22,316.00	11-	t	0.00		Monthly
11674	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / JOSE C. PASTOR MES	TEACHER I		Permanent	3729	2019-01-01	2019-12-31	20,754.00	11-	t	0.00		Monthly
11675	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / JOSE C. PASTOR MES	TEACHER I		Permanent	3729	2018-10-05	2018-12-31	20,179.00	11-	t	0.00		Monthly
11676	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / JOSE C. PASTOR MES	TEACHER I		Permanent	3729	2018-02-20	2018-04-10	20,179.00	11-	t	0.00		Monthly
11677	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / JOSE C. PASTOR MES	TEACHER I		Permanent	3729	2018-01-21	2018-09-01	20,179.00	11-	t	0.00		Monthly
11696	SDO BATANGAS CITY / JOSE P. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3731	2025-01-01	2025-03-12	34,733.00	13-2	t	0.00		Monthly
11697	SDO BATANGAS CITY / JOSE P. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3731	2024-12-15	2024-12-31	33,183.00	13-2	t	0.00		Monthly
11698	SDO BATANGAS CITY / JOSE P. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3731	2024-01-01	2024-12-14	32,870.00	13-1	t	0.00		Monthly
11699	SDO BATANGAS CITY / JOSE P. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3731	2023-01-01	2023-12-31	31,320.00	13-1	t	0.00		Monthly
11700	SDO BATANGAS CITY / JOSE P. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3731	2022-01-01	2022-12-31	29,798.00	13-1	t	0.00		Monthly
11701	SDO BATANGAS CITY / JOSE P. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3731	2021-09-01	2021-12-31	28,276.00	13-1	t	0.00		Monthly
11702	SDO BATANGAS CITY / JOSE P. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3731	2021-01-01	2021-08-31	24,161.00	11-2	t	0.00		Monthly
11703	SDO BATANGAS CITY / JOSE P. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3731	2020-01-01	2020-12-31	22,316.00	11-1	t	0.00		Monthly
11704	 SDO BATANGAS CITY / JOSE P. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3731	2019-01-01	2019-12-31	20,754.00	11-1	t	0.00		Monthly
11705	SDO BATANGAS CITY / JOSE P. PASTOR MEMORIAL ELEMENTARY SCHOOL 	TEACHER I		Permanent	3731	2019-01-01	2019-03-31	20,754.00	11-1	t	0.00		Monthly
11706	SDO BATANGAS CITY / JOSE P. PASTOR MEMORIAL ELEMENTARY SCHOOL 	TEACHER I		Permanent	3731	2018-10-01	2018-12-31	20,179.00	11-1	t	0.00		Annual
11707	SDO BATANGAS CITY / JOSE P. PASTOR MEMORIAL ELEMENTARY SCHOOL 	TEACHER I		Permanent	3731	2018-01-01	2018-09-30	20,179.00	11-1	t	0.00		Monthly
11708	SDO BATANGAS CITY / JOSE P. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3731	2017-06-20	2017-12-31	19,620.00	11-1	t	0.00		Monthly
11709	CARMEL SHOOL OF BATANGAS, INC.  	ELEMENTARY TEACHER		Permanent	3731	2013-05-03	2017-05-31	11,200.00	00-0	f	0.00		Monthly
11721	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III W/S AL.ADJ.		Permanent	3734	2025-01-01	2025-03-12	34,733.00	13-2	t	0.00		Monthly
11722	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III W/S AL.ADJ.		Permanent	3734	2024-01-01	2024-12-31	33,183.00	13-2	t	0.00		Monthly
11723	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III W/STEP INCREMENT		Permanent	3734	2023-11-03	2023-12-31	31,633.00	13-2	t	0.00		Monthly
11724	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3734	2023-01-01	2023-11-02	31,320.00	13-1	t	0.00		Monthly
11725	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III W/S AL.ADJ.		Job Order	3734	2022-01-01	2022-12-31	29,798.00	13-1	t	0.00		Monthly
11726	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III W/S AL.ADJ.		Permanent	3734	2021-01-01	2021-12-31	28,276.00	13-1	t	0.00		Monthly
11727	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3734	2020-11-03	2020-12-31	26,754.00	13-1	t	0.00		Monthly
11728	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3734	2020-01-01	2020-11-02	22,889.00	11-3	t	0.00		Monthly
11729	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I W/S AL.ADJ.		Permanent	3734	2019-01-01	2019-07-14	21,038.00	11-3	t	0.00		Monthly
11730	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I W/S. AL.ADJ.		Permanent	3734	2018-01-01	2018-12-31	20,437.00	11-2	t	0.00		Monthly
11731	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I W/S AL.ADJ.		Permanent	3734	2017-01-01	2017-12-31	19,835.00	11-2	t	0.00		Monthly
11732	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I W/S TEP INCREMENT		Permanent	3734	2016-07-15	2016-12-31	19,286.00	11-2	t	0.00		Monthly
11656	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3728	2025-01-01	0001-01-01	34,421.00	13-1	t	0.00		Monthly
11657	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3728	2024-01-01	2024-12-31	32,870.00	13-1	t	0.00		Monthly
11658	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3728	2023-09-06	2023-12-31	31,320.00	13-1	t	0.00		Monthly
11660	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3728	2022-01-01	2022-12-31	25,723.00	11-2	t	0.00		Monthly
11661	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3728	2021-06-06	2021-12-31	24,161.00	11-2	t	0.00		Monthly
11662	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3728	2021-01-01	2021-06-05	23,877.00	11-1	t	0.00		Monthly
11663	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3728	2020-01-01	2020-03-31	22,316.00	11-1	t	0.00		Monthly
11664	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3728	2019-01-01	2019-12-31	20,754.00	11-1	t	0.00		Monthly
11665	DEPARTMENT OF EDUCATION	TEACHER I 		Permanent	3728	2018-06-06	2018-12-31	20,179.00	11-1	t	0.00		Monthly
11659	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3728	2023-01-01	2023-09-05	27,284.00	11-2	t	0.00		Monthly
11678	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3730	2025-01-01	0001-01-01	30,024.00	11-1	t	0.00		Monthly
11679	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3730	2024-01-01	2024-12-31	28,512.00	11-1	t	0.00		Monthly
11680	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3730	2023-01-01	2023-12-31	27,000.00	11-1	t	0.00		Monthly
11681	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3730	2022-08-22	2022-12-31	25,439.00	11-1	t	0.00		Monthly
11683	PHILIPPINE INTERNATIONAL SCHOOL QATAR	JUNIOR HIGH SCHOOL TEACHER		Contractual	3730	2017-06-26	2019-08-14	40,000.00		f	0.00		Monthly
11684	ST. BRIDGET COLLEGE	JUNIOR HIGH SCHOOL TEACHER		Probationary	3730	2014-07-07	2017-04-30	18,000.00		f	0.00		Monthly
11682	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3730	2021-11-15	2021-12-20	23,877.00	11-1	t	0.00		Monthly
11685	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3732	2024-08-21	0001-01-01	32,245.00	12-1	t	0.00		Monthly
11686	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3732	2024-06-08	2024-08-20	30,597.00	11-3	t	0.00		Monthly
11687	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3732	2024-01-01	2024-06-07	27,284.00	11-2	t	0.00		Monthly
11688	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3732	2023-01-01	2023-12-31	27,284.00	11-2	t	0.00		Monthly
11689	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3732	2022-01-01	2022-12-31	25,273.00	11-2	t	0.00		Monthly
11690	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3732	2021-06-08	2021-12-31	24,161.00	11-2	t	0.00		Monthly
11691	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3732	2021-01-01	2021-01-07	23,877.00	11-1	t	0.00		Monthly
11692	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3732	2020-01-01	2020-12-31	22,316.00	11-1	t	0.00		Monthly
11693	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3732	2019-01-01	2019-12-31	20,754.00	11-1	t	0.00		Monthly
11694	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3732	2018-06-08	2018-12-31	20,179.00	11-1	t	0.00		Monthly
11695	GOLDEN GATE COLLEGES - ELEMENTARY DEPARTMENT	PRIMARY TEACHER		Contractual	3732	2016-05-15	2018-05-12	12,000.00		f	0.00		Monthly
11710	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3733	2025-01-01	0001-01-01	30,308.00	11-1	t	0.00		Monthly
11711	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3733	2024-01-01	2024-12-31	28,796.00	11-1	t	0.00		Monthly
11712	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3733	2023-01-01	2023-12-31	27,000.00	11-1	t	0.00		Monthly
11713	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3733	2022-01-01	2022-12-31	25,439.00	11-1	t	0.00		Monthly
11714	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3733	2021-01-06	2021-12-31	23,877.00	11-1	t	0.00		Monthly
11715	51 TALK ONLINE EDUCATION	TEACHER		Temporary	3733	2019-05-12	2020-01-04	20,000.00		f	0.00		Monthly
11716	PRINCETON SCIENCE SCHOOL	TEACHER		Contractual	3733	2016-01-15	2019-04-08	16,000.00		f	0.00		Monthly
11717	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3735	2016-06-13	0001-01-01	30,597.00	11-1	t	0.00		Monthly
11718	GARDNER SCHOOL OF MULTIPLE INTELLIGENCES	TEACHER		Contractual	3735	2014-03-25	2015-04-05	9,500.00		f	0.00		Monthly
11719	ST. THERESE OF THE CHILD JESUS MULTIPLE INTELLIGENCES SCHOOL	KINDER TEACHER		Contractual	3735	2012-06-05	2014-03-24	8,500.00		f	0.00		Monthly
11720	WESTMEAD INTERNATIONAL SCHOOL	INSTRUCTOR		Contractual	3735	2011-04-05	2012-03-05	8,000.00		f	0.00		Monthly
11733	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I W/S AL.ADJ.		Permanent	3734	2016-01-01	2016-07-14	19,077.00	11-2	t	0.00		Monthly
11734	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3734	2013-07-15	2015-12-31	18,549.00	11-2	t	0.00		Monthly
11735	NATIONAL STATISTICS OFFICE	MANUAL PROCESSOR		Casual	3734	2013-05-25	2013-07-12	10,000.00		t	0.00		Monthly
11736	NATIONAL STATISTICS OFFICE	TEAM SUPERVISOR		Casual	3734	2013-02-25	2013-05-23	10,000.00		t	0.00		Annual
11737	DEPARTMENT OF EDUCATION (ALS)	INSTRUCTIONAL MANAGER		Contractual	3734	2013-01-02	2013-10-31	5,000.00		t	0.00		Monthly
11738	DEPARTMENT OF EDUCATION / BATANGAS CITY	TEACHER I		Substitute	3734	2012-06-07	2012-08-02	17,099.00		t	0.00		Monthly
11739	DEPARTMENT OF EDUCATION / BATANGAS CITY	TEACHER I		Substitute	3734	2011-10-17	2011-12-15	17,099.00		t	0.00		Monthly
11740	DEPARTMENT OF EDUCATION / BATANGAS CITY	TEACHER I		Substitute	3734	2011-06-09	2011-08-01	15,649.00		t	0.00		Monthly
11741	MOTHER CHIARA BIAGIOTTI SCHOOL	TEACHER		Contractual	3734	2009-05-16	2011-03-31	8,000.00		f	0.00		Monthly
11742	MOTHER CHIARA BIAGIOTTI SCHOOL	TEACHER		Contractual	3734	2008-11-17	2009-04-15	8,000.00		f	0.00		Monthly
11743	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3736	2025-01-01	0001-01-01	33,183.00	13-2	t	0.00		Monthly
11744	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3736	2024-01-01	2024-12-31	33,183.00	13-2	t	0.00		Monthly
11745	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3736	2023-03-11	2023-12-31	31,633.00	13-2	t	0.00		Monthly
11746	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3736	2023-01-01	2023-02-11	31,320.00	13-2	t	0.00		Monthly
11747	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3736	2022-01-01	2022-12-31	29,798.00	13-1	t	0.00		Monthly
11748	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3736	2021-01-01	2021-12-31	28,276.00	13-1	t	0.00		Monthly
11749	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3736	2020-03-11	2020-12-31	26,754.00	13-1	t	0.00		Monthly
11750	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3736	2020-01-01	2020-02-11	22,889.00	11-3	t	0.00		Monthly
11751	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3736	2019-01-01	2019-12-31	21,327.00	11-3	t	0.00		Monthly
11752	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3736	2018-02-07	2018-12-31	20,698.00	11-3	t	0.00		Monthly
11753	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3736	2018-01-01	2018-01-07	20,437.00	11-2	t	0.00		Monthly
11754	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3736	2017-01-01	2017-12-31	19,853.00	11-2	t	0.00		Monthly
11755	DEPARTMENT OF EDUCATION	TEACHER  I		Permanent	3736	2016-01-01	2016-12-31	19,286.00	11-2	t	0.00		Monthly
11756	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3736	2015-01-07	2015-02-07	18,549.00	11-1	t	0.00		Monthly
11758	IMMACULATE HEART OF MARY LEARNING CENTER AND SCHOOL OF VALUES	ELEMENTARY TEACHER		Contractual	3736	2009-06-01	2011-03-30	12,000.00		f	0.00		Monthly
11757	LOCAL SCHOOL BOARD	TEACHER I		Permanent	3736	2012-01-24	2025-06-30	11,666.00	11-1	t	0.00		Monthly
11759	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3737	2025-01-01	2025-03-12	34,733.00	13-2	t	0.00		Monthly
11760	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3737	2024-09-01	2024-12-31	33,183.00	13-2	t	0.00		Monthly
11761	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3737	2024-01-01	2024-08-31	31,870.00	13-1	t	0.00		Monthly
11762	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3737	2023-01-01	2023-12-31	31,320.00	13-1	t	0.00		Monthly
11763	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3737	2021-01-12	2021-12-31	28,276.00	13-1	t	0.00		Monthly
11764	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3737	2021-04-06	2021-08-31	24,161.00	11-2	t	0.00		Monthly
11765	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3737	2021-01-01	2021-06-03	23,877.00	11-1	t	0.00		Monthly
11766	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3737	2020-01-01	2020-12-31	22,316.00	11-1	t	0.00		Monthly
11767	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3737	2019-01-01	2019-12-31	20,754.00	11-1	t	0.00		Monthly
11768	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3737	2018-04-06	2018-12-31	20,179.00	11-1	t	0.00		Monthly
11769	ST. THERESE OF THE CHILD JESUS MULTIPLE INTELIGENCE SCHOOL	ELEMENTARY TEACHER		Contractual	3737	2015-01-05	2018-01-05	7,000.00		f	0.00		Monthly
11770	DEPARTMENT OF EDUCATION	TEACHER 1		Permanent	3738	2024-08-07	0001-01-01	37,434.00	14-1	t	0.00		Monthly
11771	SUNHILL DEVELOPMENTAL EDUCATION, INC.	SPECIAL EDUCATION TEACHER		Temporary	3738	2024-06-18	2024-07-16	16,000.00		f	0.00		Monthly
11772	SUNHILL DEVELOPMENTAL EDUCATION, INC.	SPECIAL EDUCATION TEACHER		Permanent	3738	2022-09-01	2023-06-15	16,000.00		f	0.00		Monthly
11773	INSTITUTION FOR DEVELOPMENTAL EDUCATION AND ADVANCEMENT	SPECIAL EDUCATION TEACHER		Permanent	3738	2018-09-01	2020-09-07	12,000.00		f	0.00		Monthly
11774	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3739	2025-01-01	0001-01-01	34,733.00	13-1	t	0.00		Monthly
11775	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3739	2024-01-01	2024-01-31	34,733.00	13-1	t	0.00		Monthly
11776	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3739	2023-01-01	2023-12-31	31,320.00	13-1	t	0.00		Monthly
11777	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3739	2022-03-10	2022-12-31	29,798.00	13-1	t	0.00		Monthly
11778	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3739	2022-01-01	2022-10-02	26,012.00	11-2	t	0.00		Monthly
11779	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3739	2021-10-01	2021-12-31	24,450.00	11-2	t	0.00		Monthly
11780	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3739	2021-01-01	2021-09-30	24,161.00	11-2	t	0.00		Monthly
11781	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3739	2020-01-01	2020-12-31	22,600.00	11-2	t	0.00		Monthly
11782	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3739	2019-01-01	2019-12-31	21,038.00	11-2	t	0.00		Monthly
11783	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3739	2018-07-01	2018-12-31	20,437.00	11-2	t	0.00		Monthly
11784	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3739	2018-01-01	2018-06-30	20,179.00	11-1	t	0.00		Monthly
11785	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3739	2017-01-01	2017-12-31	19,620.00	11-1	t	0.00		Monthly
11786	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3739	2016-01-01	2016-12-31	19,077.00	11-1	t	0.00		Monthly
11787	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3739	2015-06-16	2015-12-31	18,549.00	11-1	t	0.00		Monthly
11788	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3739	2014-06-27	2015-06-15	18,549.00	11-1	t	0.00		Monthly
11789	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3739	2011-07-25	2014-06-26	17,099.00	10-1	t	0.00		Monthly
11790	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3740	2025-01-01	0001-01-01	34,733.00	13-2	t	0.00		Monthly
11791	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3740	2024-01-01	2024-12-31	33,183.00	13-2	t	0.00		Monthly
11792	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3740	2023-11-03	2023-12-31	31,633.00	13-2	t	0.00		Monthly
11793	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3740	2023-01-01	2023-11-02	31,320.00	13-2	t	0.00		Monthly
11794	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3740	2022-01-01	2022-12-31	29,798.00	13-1	t	0.00		Monthly
11795	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3740	2021-01-01	2021-12-31	28,276.00	13-1	t	0.00		Monthly
11796	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3740	2020-11-03	2020-12-31	26,754.00	13-1	t	0.00		Monthly
11797	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3740	2020-01-01	2020-11-02	22,600.00	11-2	t	0.00		Monthly
11798	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3740	2019-01-01	2019-12-31	21,038.00	11-2	t	0.00		Monthly
11799	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3740	2018-01-01	2018-12-31	20,437.00	12-1	t	0.00		Monthly
11800	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3740	2017-06-02	2017-12-31	19,853.00	11-2	t	0.00		Monthly
11801	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3740	2017-01-17	2017-06-01	19,620.00	11-1	t	0.00		Monthly
11802	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3740	2016-01-01	2016-12-31	19,077.00	11-1	t	0.00		Monthly
11803	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3740	2014-06-02	2015-12-31	18,549.00	11-1	t	0.00		Monthly
11804	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3740	2012-03-01	2014-05-30	13,333.00	11-1	t	0.00		Monthly
11805	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3740	2011-07-13	2011-08-11	17,099.00	11-1	t	0.00		Monthly
11806	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3740	2010-08-05	2010-10-30	14,198.00	11-1	t	0.00		Monthly
11807	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3741	2025-01-01	2025-03-12	34,421.00	13-1	t	0.00		Monthly
11808	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3741	2024-01-11	2024-12-31	32,870.00	13-1	t	0.00		Monthly
11809	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3741	2023-01-01	2023-12-31	31,320.00	13-1	t	0.00		Monthly
11810	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3741	2022-02-07	2022-03-31	29,798.00	13-1	t	0.00		Monthly
11811	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3741	2022-01-01	2022-02-06	28,766.00	12-3	t	0.00		Monthly
11812	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3741	2021-01-01	2021-12-31	27,210.00	12-3	t	0.00		Monthly
11813	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3741	2020-06-10	2020-12-31	25,653.00	12-2	t	0.00		Monthly
11814	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER  II		Permanent	3741	2020-01-01	2020-06-09	25,358.00	12-2	t	0.00		Monthly
11815	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3741	2018-01-01	2018-12-31	22,942.00	12-2	t	0.00		Monthly
11816	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3741	2017-06-10	2017-12-31	22,113.00	12-2	t	0.00		Monthly
11817	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3741	2016-01-01	2016-12-31	21,091.00	12-2	t	0.00		Monthly
11818	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3741	2015-02-25	2015-03-06	20,341.00	12-2	t	0.00		Monthly
11819	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3741	2012-06-01	2014-06-10	20,140.00	12-2	t	0.00		Monthly
11820	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3741	2010-06-24	2011-05-31	16,726.00	12-2	t	0.00		Monthly
11821	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3741	2009-07-01	2010-06-23	15,119.00	12-2	t	0.00		Monthly
11822	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3741	2007-07-01	2008-06-09	11,207.00	12-2	t	0.00		Monthly
11823	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3741	2004-08-28	2006-12-31	9,939.00	11-1	t	0.00		Monthly
11824	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3741	2003-07-03	2004-07-28	9,939.00	11-1	t	0.00		Monthly
11825	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3742	2025-01-01	0001-01-01	57,165.00	19-2	t	0.00		Monthly
11826	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3742	2024-01-15	2024-12-31	54,649.00	19-2	t	0.00		Monthly
11827	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3742	2024-01-01	2024-01-14	51,357.83	19-1	t	0.00		Monthly
11828	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3742	2023-01-01	2023-12-31	51,357.83	19-1	t	0.00		Monthly
11830	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3742	2021-01-15	2021-12-31	48,313.00	19-1	t	0.00		Monthly
11831	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3742	2021-01-01	2021-01-14	44,694.00	18-3	t	0.00		Monthly
11832	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3742	2020-09-16	2020-12-31	43,172.00	18-3	t	0.00		Monthly
11833	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3742	2020-01-01	2020-09-15	42,662.00	18-2	t	0.00		Monthly
11834	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3742	2018-01-01	2018-12-31	38,543.00	18-2	t	0.00		Monthly
11835	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3742	2017-09-16	2017-12-31	36,111.00	18-2	t	0.00		Monthly
11836	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3742	2017-01-01	2017-09-15	35,693.00	18-1	t	0.00		Monthly
11837	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3742	2016-01-01	2016-12-31	33,452.00	18-1	t	0.00		Monthly
11838	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3742	2014-09-16	2015-12-31	31,351.00	18-1	t	0.00		Monthly
11839	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3742	2012-06-01	2014-09-15	22,529.00	12-6	t	0.00		Monthly
11840	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3742	2011-06-01	2012-05-31	20,948.00	12-6	t	0.00		Monthly
11841	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3742	2010-10-31	2011-05-31	18,333.00	12-6	t	0.00		Monthly
11842	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3742	2010-10-28	2010-10-30	19,367.00	12-5	t	0.00		Monthly
11843	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3742	2010-10-28	2010-10-28	19,367.00	12-5	t	0.00		Monthly
11844	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3742	2010-08-02	2010-10-27	18,755.00	12-5	t	0.00		Monthly
11846	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3742	2010-06-24	2010-08-01	18,755.00	12-5	t	0.00		Monthly
11847	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3742	2009-07-01	2010-06-23	17,089.00	12-4	t	0.00		Monthly
11848	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3742	2008-07-01	2009-06-30	14,552.00	12-4	t	0.00		Monthly
11849	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3742	2007-07-10	2008-06-30	13,229.00	12-4	t	0.00		Monthly
11850	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3742	2005-01-01	2007-06-30	12,026.00	12-4	t	0.00		Monthly
11851	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3742	2002-01-01	2004-12-31	11,733.00	12-3	t	0.00		Monthly
11852	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3742	2001-07-10	2001-12-31	11,167.00	12-3	t	0.00		Monthly
11853	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3742	2000-01-01	2001-06-30	10,635.00	12-3	t	0.00		Monthly
11854	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3742	1999-01-01	1999-12-31	9,668.00	12-2	t	0.00		Monthly
11855	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3742	1998-01-01	1998-12-31	9,668.00	12-2	t	0.00		Monthly
11856	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3742	1997-11-01	1997-12-31	9,668.00	12-2	t	0.00		Monthly
11857	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3742	1997-01-01	1997-10-31	8,118.00	12-2	t	0.00		Monthly
11858	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3742	1996-01-01	1996-12-31	6,558.00	12-1	t	0.00		Monthly
11859	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3742	1995-10-17	1995-12-31	5,240.00	12-1	t	0.00		Monthly
11860	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3742	1995-01-01	1995-10-16	5,009.00	11-1	t	0.00		Monthly
11861	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3742	1994-09-12	1994-12-31	4,009.00	11-1	t	0.00		Monthly
11862	DEPARTMENT OF EDUCATION	ELEMENTARY GRADE TEACHER		Permanent	3742	1991-01-02	1994-09-11	3,102.00	10-1	t	0.00		Monthly
11863	DEPARTMENT OF EDUCATION	ELEMENTARY GRADE TEACHER 		Permanent	3742	1990-11-04	1991-01-01	3,102.00	10-1	t	0.00		Monthly
11864	DEPARTMENT OF EDUCATION	ELEMENTARY GRADE TEACHER 		Permanent	3742	1989-10-25	1990-11-04	3,102.00	10-1	t	0.00		Monthly
11829	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3742	2022-01-01	2022-12-31	49,835.00	19-1	t	0.00		Monthly
11865	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3744	2025-01-01	0001-01-01	35,049.00	13-3	t	0.00		Monthly
11866	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3744	2024-01-01	2024-12-31	33,499.00	13-3	t	0.00		Monthly
11867	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3744	2023-01-01	2023-12-31	31,949.00	13-3	t	0.00		Monthly
11868	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3744	2022-11-16	2022-12-31	30,427.00	13-3	t	0.00		Monthly
11869	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3744	2022-01-01	2022-11-15	30,111.00	13-2	t	0.00		Monthly
11870	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3744	2021-01-01	2021-12-31	28,589.00	13-2	t	0.00		Monthly
11871	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3744	2020-01-01	2020-12-31	27,067.00	13-2	t	0.00		Monthly
11872	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3744	2019-11-15	2019-12-31	25,545.00	13-1	t	0.00		Monthly
11873	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3744	2019-01-01	2019-11-14	25,232.00	13-1	t	0.00		Monthly
11874	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3744	2018-01-01	2018-12-31	24,224.00	13-1	t	0.00		Monthly
11875	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3744	2017-01-01	2017-12-31	23,257.00	13-1	t	0.00		Monthly
11876	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3744	2016-11-15	2016-12-31	22,328.00	13-1	t	0.00		Monthly
11877	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3744	2016-01-01	2016-11-14	21,091.00	12-3	t	0.00		Monthly
11879	DEPED BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3743	2025-01-01	2025-03-13	34,733.00	13-2	t	0.00		Monthly
11880	DEPED BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3743	2024-02-16	2024-12-31	33,183.00	13-2	t	0.00		Monthly
11881	DEPED BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3743	2024-01-01	2024-02-15	32,870.00	13-1	t	0.00		Monthly
11882	DEPED BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3743	2023-01-01	2023-12-31	31,320.00	13-1	t	0.00		Monthly
11883	DEPED BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3743	2022-01-01	2022-12-31	29,798.00	13-1	t	0.00		Monthly
11884	DEPED BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3743	2021-01-01	2021-12-31	28,276.00	13-1	t	0.00		Monthly
11885	DEPED BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3743	2020-11-03	2020-12-31	26,754.00	13-1	t	0.00		Monthly
11886	DEPED BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3743	2020-01-01	2020-11-02	22,600.00	11-2	t	0.00		Monthly
11887	DEPED BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3743	2019-05-01	2019-12-31	21,038.00	11-2	t	0.00		Monthly
11888	DEPED BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3743	2019-01-01	2019-04-30	20,754.00	11-1	t	0.00		Monthly
11889	DEPED BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3743	2018-01-01	2018-03-31	20,179.00	11-1	t	0.00		Monthly
11890	DEPED BATANGAS CITY - TABANGAO ELEMENTARY SCHOOL	TEACHER I		Permanent	3743	2017-01-01	2017-12-31	19,620.00	11-1	t	0.00		Monthly
11891	DEPED BATANGAS CITY - TABANGAO ELEMENTARY SCHOOL	TEACHER I		Permanent	3743	2016-01-01	2016-12-31	19,077.00	11-1	t	0.00		Daily
11892	DEPED BATANGAS CITY - TABANGAO ELEMENTARY SCHOOL	TEACHER I		Permanent	3743	2015-11-24	2015-12-31	18,549.00	11-1	t	0.00		Monthly
11893	DEPED BATANGAS CITY - TALUMPOK SILANGAN ELEMENTARY SCHOOL	TEACHER I		Substitute	3743	2015-02-23	2015-03-27	18,549.00	11-1	t	0.00		Monthly
11894	DEPED BATANGAS CITY - TALUMPOK SILANGAN ELEMENTARY SCHOOL	TEACHER I		Substitute	3743	2014-09-16	2014-10-10	18,549.00	11-1	t	0.00		Monthly
11895	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3744	2012-06-01	2014-07-01	20,140.00	12-2	t	0.00		Monthly
11896	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3744	2011-07-02	2012-05-31	18,568.00	12-2	t	0.00		Monthly
11897	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3744	2011-06-01	2011-07-01	18,333.00	12-1	t	0.00		Monthly
11898	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3744	2010-06-24	2011-05-31	16,726.00	12-1	t	0.00		Monthly
11899	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3744	2009-07-01	2010-06-23	15,119.00	12-1	t	0.00		Monthly
11900	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3744	2008-07-01	2009-06-30	12,748.00	12-1	t	0.00		Monthly
11901	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3744	2007-07-01	2008-06-30	10,933.00	11-1	t	0.00		Monthly
11902	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3744	2006-07-10	2007-06-30	9,939.00	11-1	t	0.00		Monthly
11903	MARIAN LEARNING CENTER	TEACHER		Permanent	3744	1991-06-01	2006-05-31	7,000.00		f	0.00		Monthly
11904	ST. BRIDGET COLLEGE	TEACHER		Contractual	3744	1990-06-01	1991-05-01	3,000.00		f	0.00		Monthly
11878	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3744	2014-07-02	2015-12-31	20,341.00	12-3	t	0.00		Monthly
11905	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3745	2025-01-01	2025-03-13	34,733.00	13-2	t	0.00		Monthly
11906	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3745	2024-01-01	2024-12-31	32,870.00	13-2	t	0.00		Monthly
11907	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3745	2023-01-01	2023-12-31	31,320.00	13-1	t	0.00		Monthly
11908	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3745	2022-10-03	2022-12-31	29,798.00	13-1	t	0.00		Monthly
11909	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3745	2022-01-01	2022-10-02	25,439.00	11-1	t	0.00		Monthly
11910	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3745	2021-01-01	2021-03-31	23,877.00	11-1	t	0.00		Monthly
11911	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3745	2020-08-24	2020-12-31	22,316.00	11-1	t	0.00		Monthly
11912	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO	TEACHER II		Permanent	3745	2020-01-01	2020-08-23	24,486.00	11-1	t	0.00		Monthly
11913	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO	TEACHER II		Permanent	3745	2019-01-01	2019-12-31	22,938.00	11-1	t	0.00		Monthly
11914	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO	TEACHER II		Permanent	3745	2018-10-03	2018-12-31	22,149.00	11-1	t	0.00		Monthly
11915	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO	TEACHER I		Permanent	3745	2018-01-01	2018-10-02	21,231.00	10-6	t	0.00		Monthly
11916	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO	TEACHER I		Permanent	3745	2017-01-01	2017-12-31	20,567.00	10-6	t	0.00		Monthly
11917	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO	TEACHER I		Permanent	3745	2016-01-01	2016-12-31	19,925.00	10-5	t	0.00		Monthly
11931	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3746	2025-02-07	0001-01-01	30,024.00	11-1	t	0.00		Monthly
11918	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO	TEACHER I		Permanent	3745	2015-01-01	2015-12-31	19,111.00	10-5	t	0.00		Monthly
11919	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO	TEACHER I		Permanent	3745	2014-10-05	2014-12-31	20,567.00	10-5	t	0.00		Monthly
11920	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO	TEACHER I		Permanent	3745	2014-08-04	2014-10-04	20,567.00	10-5	t	0.00		Monthly
11921	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO	TEACHER I		Permanent	3745	2013-09-01	2014-08-03	20,567.00	10-5	t	0.00		Monthly
11922	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO	TEACHER I		Permanent	3745	2012-06-01	2013-08-31	18,922.00	10-4	t	0.00		Monthly
11923	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO	TEACHER I		Permanent	3745	2011-06-01	2012-05-31	17,540.00	10-4	t	0.00		Monthly
11924	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO	TEACHER I		Permanent	3745	2010-06-24	2011-05-31	16,157.00	10-3	t	0.00		Monthly
11925	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO	TEACHER I		Permanent	3745	2010-01-01	2010-06-23	14,775.00	10-3	t	0.00		Monthly
11926	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO	TEACHER I		Permanent	3745	2009-07-01	2009-12-31	14,198.00	10-3	t	0.00		Monthly
11927	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO	TEACHER I 		Permanent	3745	2008-09-22	2008-11-20	12,026.00	10-2	t	0.00		Monthly
11928	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO	TEACHER I		Permanent	3745	2008-07-01	2009-06-30	12,026.00	10-2	t	0.00		Monthly
11929	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO	TEACHER I		Permanent	3745	2007-07-01	2008-06-30	10,933.00	10-1	t	0.00		Monthly
11930	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS / LOBO	TEACHER I		Permanent	3745	2003-01-13	2007-06-30	9,939.00	10-1	t	0.00		Monthly
11954	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3747	2025-01-01	2025-03-13	34,733.00	13-2	t	0.00		Monthly
11955	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3747	2024-04-12	2024-12-31	33,183.00	13-2	t	0.00		Monthly
11956	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3747	2024-01-01	2024-04-11	32,870.00	13-2	t	0.00		Monthly
11957	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3747	2023-01-31	2023-12-31	31,320.00	13-1	t	0.00		Monthly
11958	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3747	2021-02-06	2022-12-31	29,798.00	13-1	t	0.00		Monthly
11959	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3747	2021-01-10	2021-02-05	27,210.00	12-3	t	0.00		Monthly
11960	DEPARTMENT OF EDUCATION - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3747	2020-01-01	2020-12-31	25,653.00	12-3	t	0.00		Annual
11961	NEW DISTRICT	TEACHER II		Permanent	3747	2019-01-01	2019-12-31	24,096.00	12-3	t	0.00		Monthly
11962	NEW DISTRICT	TEACHER II		Permanent	3747	2018-02-06	2018-12-31	23,212.00	12-3	t	0.00		Monthly
11963	NEW DISTRICT	TEACHER II		Permanent	3747	2018-01-01	2018-02-05	22,942.00	12-3	t	0.00		Monthly
11964	NEW DISTRICT	TEACHER II		Permanent	3747	2017-01-01	2017-12-31	22,113.00	12-3	t	0.00		Monthly
11965	NEW DISTRICT	TEACHER II		Permanent	3747	2016-01-01	2016-12-31	22,113.00	12-3	t	0.00		Monthly
11966	NEW DISTRICT	TEACHER II		Permanent	3747	2015-02-06	2015-12-31	21,315.00	12-3	t	0.00		Monthly
11967	NEW DISTRICT	TEACHER II		Permanent	3747	2015-02-05	2015-06-01	20,545.00	12-2	t	0.00		Monthly
11968	NEW DISTRICT	TEACHER II		Permanent	3747	2012-06-01	2015-02-05	20,341.00	12-2	t	0.00		Monthly
11969	NEW DISTRICT	TEACHER II		Permanent	3747	2011-06-01	2012-05-31	18,805.00	12-2	t	0.00		Monthly
11970	NEW DISTRICT 	TEACHER II		Permanent	3747	2010-06-24	2011-05-31	17,269.00	12-2	t	0.00		Monthly
11971	NEW DISTRICT	TEACHER II		Permanent	3747	2009-07-01	2010-06-23	15,733.00	12-2	t	0.00		Monthly
11972	VERDE ISLAD DISTRICT	TEACHER II		Permanent	3747	2009-01-02	2009-06-30	13,391.00	12-2	t	0.00		Monthly
11973	VERDE ISLAD DISTRICT	TEACHER II		Permanent	3747	2008-07-01	2009-01-01	13,066.00	12-2	t	0.00		Monthly
11974	NEW DISTRICT	TEACHER II		Permanent	3747	2007-07-01	2008-06-30	11,878.00	12-1	t	0.00		Monthly
11975	WEST DISTRICT	TEACHER II		Permanent	3747	2006-02-01	2007-06-30	10,798.00	12-1	t	0.00		Monthly
11976	WEST DISTRICT	ELEMENTARY GRADE TEACHER		Permanent	3747	2005-01-01	2006-01-31	10,704.00	11-2	t	0.00		Monthly
11977	WEST DISTRICT	ELEMENTARY GRADE TEACHER		Permanent	3747	2002-01-01	2004-12-31	10,422.00	11-2	t	0.00		Monthly
11978	WEST DISTRICT	ELEMENTARY GRADE TEACHER		Permanent	3747	2001-07-01	2001-12-31	9,939.00	11-1	t	0.00		Monthly
11979	WEST DISTRICT	ELEMENTARY GRADE TEACHER		Permanent	3747	2000-01-01	2001-06-01	9,466.00	11-1	t	0.00		Monthly
11980	NEW DISTRICT	ELEMENTARY GRADE TEACHER		Permanent	3747	1999-01-01	1999-12-31	8,605.00	11-1	t	0.00		Monthly
11981	NEW DISTRICT	ELEMENTARY GRADE TEACHER		Permanent	3747	1998-01-01	1998-12-31	8,605.00	11-1	t	0.00		Monthly
11982	NEW DISTRICT	ELEMENTARY GRADE TEACHER		Permanent	3747	1997-11-01	1997-12-31	8,605.00	11-1	t	0.00		Monthly
11983	NEW DISTRICT	ELEMENTARY GRADE TEACHER		Permanent	3747	1997-01-01	1997-03-31	7,309.00	11-1	t	0.00		Monthly
11984	NEW DISTRICT	ELEMENTARY GRADE TEACHER		Permanent	3747	1996-01-01	1996-03-31	6,913.00	11-1	t	0.00		Monthly
12016	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3751	2025-01-01	2025-03-13	32,245.00	12-1	t	0.00		Monthly
12017	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3751	2024-01-01	2024-12-31	30,705.00	12-1	t	0.00		Monthly
12018	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3751	2023-01-01	2023-12-31	29,165.00	12-1	t	0.00		Monthly
12019	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3751	2022-03-10	2022-12-31	27,608.00	12-1	t	0.00		Monthly
12020	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I W/STEP		Permanent	3751	2022-05-27	2022-10-02	26,304.00	11-4	t	0.00		Monthly
12021	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I W/SALARY ADJUSTMENT		Permanent	3751	2022-01-01	2022-05-26	26,012.00	11-3	t	0.00		Monthly
12022	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I W/SALARY ADJUSTMENT		Permanent	3751	2021-01-01	2021-12-31	24,450.00	11-3	t	0.00		Monthly
12023	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I W/SALARY ADJUSTMENT		Permanent	3751	2020-01-01	2020-12-31	22,889.00	11-3	t	0.00		Monthly
12024	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I W/STEP		Permanent	3751	2019-05-20	2019-12-31	21,327.00	11-3	t	0.00		Monthly
12043	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3752	2019-01-01	2019-06-12	20,754.00	11-1	t	0.00		Monthly
11932	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3746	2024-11-06	2024-12-13	28,512.00	11-1	t	0.00		Monthly
11933	GARDNER SCHOOL OF MULTIPLE INTELLIGENCES	TEACHER		Contractual	3746	2021-07-01	2024-05-30	15,000.00		f	0.00		Monthly
11934	CALSR INTERACTIVE	ONLINE ENGLISH TUTOR		Contractual	3746	2020-02-28	2021-03-15	10,000.00		f	0.00		Monthly
11935	DEPARTMENT OF EDUCATION	PRINCIPAL II		Permanent	3748	2020-08-17	2025-01-01	63,841.00	20-2	t	0.00		Monthly
11936	DEPARTMENT OF EDUCATION	PRINCIPAL I		Permanent	3748	2018-07-02	2020-08-16	46,791.00	19-1	t	0.00		Annual
11937	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3748	2016-06-13	2018-07-01	24,224.00	13-1	t	0.00		Monthly
11938	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3748	2013-11-18	2016-06-12	20,651.00	12-1	t	0.00		Monthly
11939	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3748	2007-08-14	2013-11-17	18,735.00	11-1	t	0.00		Monthly
11940	DEPARTMENT OF EDUCATION	ADMINISTRATIVE OFFICER II		Permanent	3749	2025-01-01	0001-01-01	30,308.00	11-2	t	0.00		Monthly
11941	DEPARTMENT OF EDUCATION	ADMINISTRATIVE OFFICER II		Permanent	3749	2024-11-08	2024-12-31	28,796.00	11-2	t	0.00		Monthly
11942	DEPARTMENT OF EDUCATION	ADMINISTRATIVE OFFICER II		Permanent	3749	2024-01-01	2024-11-07	28,512.00	11-1	t	0.00		Monthly
11943	DEPARTMENT OF EDUCATION	ADMINISTRATIVE OFFICER II		Permanent	3749	2023-01-01	2023-12-31	27,000.00	11-1	t	0.00		Monthly
11944	DEPARTMENT OF EDUCATION	ADMINISTRATIVE OFFICER II		Permanent	3749	2022-01-01	2022-12-31	25,439.00	11-1	t	0.00		Monthly
11945	DEPARTMENT OF EDUCATION	ADMINISTRATIVE OFFICER II		Permanent	3749	2021-11-08	2021-12-31	23,877.00	11-1	t	0.00		Monthly
11946	DEPARTMENT OF EDUCATION	ADMINISTRATIVE ASSISTANT III (SENIOR BOOKKEEPER)		Permanent	3749	2021-01-01	2021-11-07	19,757.00	09-2	t	0.00		Monthly
11947	DEPARTMENT OF EDUCATION	ADMINISTRATIVE ASSISTANT III (SENIOR BOOKKEEPER)		Permanent	3749	2020-01-01	2020-12-31	18,784.00	09-1	t	0.00		Monthly
11948	DEPARTMENT OF EDUCATION	ADMINISTRATIVE ASSISTANT III (SENIOR BOOKKEEPER)		Permanent	3749	2019-01-01	2019-12-31	17,975.00	09-1	t	0.00		Monthly
11949	DEPARTMENT OF EDUCATION	ADMINISTRATIVE ASSISTANT III (SENIOR BOOKKEEPER)		Permanent	3749	2018-01-01	2018-12-31	17,473.00	09-1	t	0.00		Monthly
11950	DEPARTMENT OF EDUCATION	ADMINISTRATIVE ASSISTANT III (SENIOR BOOKKEEPER)		Permanent	3749	2017-10-18	2017-12-31	16,986.00	09-1	t	0.00		Monthly
11951	MERCURY GROUP OF COMPANIES INC.	MERCURY GROUP PROVIDENT FUND MANAGER		Permanent	3749	2015-07-01	2016-10-23	33,345.00		f	0.00		Monthly
11952	MERCURY GROUP OF COMPANIES INC.	MERCURY GROUP PROVIDENT FUND SUPERVISOR		Permanent	3749	2010-01-01	2015-06-30	27,614.00		f	0.00		Monthly
11953	MERCURY GROUP OF COMPANIES INC.	MERCURY GROUP PROVIDENT FUND GENERAL CLERK I		Permanent	3749	2007-10-16	2009-12-31	11,319.00		f	0.00		Monthly
11985	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3750	2025-01-01	0001-01-01	36,691.00	13-8	t	0.00		Monthly
11986	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3750	2024-11-03	2024-12-31	35,141.00	13-8	t	0.00		Monthly
11987	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3750	2024-01-01	2024-11-02	34,804.00	13-7	t	0.00		Monthly
11988	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3750	2023-01-01	2023-12-31	33,254.00	13-7	t	0.00		Monthly
11989	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3750	2022-01-02	2022-12-31	31,732.00	13-7	t	0.00		Monthly
11990	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3750	2022-01-01	2022-01-01	31,400.00	13-6	t	0.00		Monthly
11991	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3750	2021-01-01	2021-12-31	29,878.00	13-6	t	0.00		Monthly
11992	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3750	2020-01-01	2020-12-31	28,356.00	13-6	t	0.00		Monthly
11993	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3750	2019-01-01	2019-12-31	26,834.00	13-6	t	0.00		Monthly
11994	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3750	2018-11-04	2018-12-31	25,686.00	13-6	t	0.00		Monthly
11995	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3750	2018-01-01	2018-11-03	25,387.00	13-5	t	0.00		Monthly
11996	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3750	2017-01-01	2017-12-31	24,315.00	13-5	t	0.00		Monthly
11998	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3750	2015-11-01	2015-12-31	22,306.00	13-5	t	0.00		Monthly
11999	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3750	2012-11-04	2015-10-31	22,086.00	13-4	t	0.00		Monthly
12000	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3750	2012-06-01	2012-11-03	21,867.00	13-4	t	0.00		Monthly
12001	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3750	2011-06-01	2012-05-31	20,162.00	13-3	t	0.00		Monthly
12002	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3750	2009-11-04	2010-06-23	16,753.00	13-3	t	0.00		Monthly
12003	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3750	2009-07-01	2009-11-03	16,424.00	13-2	t	0.00		Monthly
12004	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3750	2008-07-01	2009-06-30	13,850.00	12-2	t	0.00		Monthly
12005	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3750	2007-07-01	2008-06-30	12,591.00	12-2	t	0.00		Monthly
12006	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3750	2007-01-01	2007-06-30	11,446.00	12-1	t	0.00		Monthly
12007	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3750	2003-11-03	2006-12-31	11,167.00	12-1	t	0.00		Monthly
12008	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3750	2001-08-23	2003-11-02	10,535.00	11-1	t	0.00		Monthly
12009	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3750	2001-07-01	2001-08-22	9,939.00	10-1	t	0.00		Monthly
12010	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3750	2000-01-01	2001-06-30	9,466.00	10-1	t	0.00		Monthly
12011	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3750	1997-11-01	1999-12-31	8,605.00	10-1	t	0.00		Monthly
12012	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3750	1997-01-01	1997-10-31	7,309.00	10-1	t	0.00		Monthly
12013	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3750	1996-01-01	1996-12-31	6,013.00	10-1	t	0.00		Monthly
12014	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3750	1995-01-01	1995-12-31	4,902.00	10-1	t	0.00		Monthly
12015	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3750	1994-06-06	1994-12-31	3,902.00	10-1	t	0.00		Monthly
11997	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3750	2016-01-01	2016-12-31	23,289.00	13-5	t	0.00		Monthly
12034	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3752	2025-01-01	0001-01-01	34,421.00	13-1	t	0.00		Monthly
12035	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3752	2024-01-01	2024-12-31	32,870.00	13-1	t	0.00		Monthly
12037	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3752	2023-01-01	2023-06-15	29,165.00	12-1	t	0.00		Monthly
12038	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3752	2022-01-01	2022-12-31	27,608.00	12-1	t	0.00		Monthly
12039	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3752	2021-02-10	2021-12-31	26,052.00	12-1	t	0.00		Monthly
12040	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3752	2021-01-01	2021-02-09	23,878.00	11-2	t	0.00		Monthly
12041	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3752	2020-01-01	2020-12-31	22,316.00	11-1	t	0.00		Monthly
12042	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3752	2019-06-13	2019-12-31	21,038.00	11-1	t	0.00		Monthly
12025	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I W/SALARY ADJUSTMENT		Permanent	3751	2019-01-01	2019-05-19	21,038.00	11-2	t	0.00		Monthly
12026	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I W/SALARY ADJUSTMENT		Permanent	3751	2018-01-01	2018-03-31	20,437.00	11-2	t	0.00		Monthly
12027	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I W/SALARY ADJUSTMENT		Permanent	3751	2017-01-01	2017-12-31	19,853.00	11-2	t	0.00		Monthly
12028	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I W/STEP		Permanent	3751	2016-05-20	2016-12-31	19,286.00	11-2	t	0.00		Monthly
12029	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I W/SALARY ADJUSTMENT		Permanent	3751	2016-01-01	2016-05-09	19,077.00	11-1	t	0.00		Monthly
12030	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3751	2015-01-01	2015-12-31	18,549.00	11-1	t	0.00		Monthly
12031	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - JOSE C. PASTOR MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3751	2013-05-27	2014-12-31	18,549.00	11-1	t	0.00		Monthly
12032	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - BATANGAS CITY SOUTH ELEMENTARY SCHOOL	TEACHER I		Substitute	3751	2010-07-12	2010-09-10	14,198.00	11-1	t	0.00		Monthly
12033	DEPARTMENT OF EDUCATION DIVISION OF BATANGAS CITY - LIBJO ELEMENTARY SCHOOL	TEACHER I		Substitute	3751	2004-02-22	2004-12-25	9,939.00	10-1	t	0.00		Monthly
12052	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3753	2025-01-01	2025-03-13	32,870.00	13-1	t	0.00		Monthly
12053	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3753	2024-09-06	2024-12-31	32,870.00	13-1	t	0.00		Monthly
12054	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3753	2024-01-01	2024-09-05	32,870.00	13-1	t	0.00		Monthly
12055	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3753	2023-12-29	2023-12-31	31,320.00	13-1	t	0.00		Monthly
12056	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3753	2023-10-30	2023-12-31	31,320.00	13-1	t	0.00		Monthly
12057	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3753	2023-06-16	2023-10-29	31,320.00	13-1	t	0.00		Monthly
12058	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3753	2023-01-01	2023-06-15	29,165.00	12-1	t	0.00		Annual
12059	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3753	2022-01-01	2022-12-31	27,608.00	12-1	t	0.00		Monthly
12060	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3753	2021-01-01	2021-12-31	26,052.00	12-1	t	0.00		Monthly
12061	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3753	2020-10-01	2020-12-31	24,495.00	12-1	t	0.00		Monthly
12062	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3753	2019-01-01	2020-09-30	19,620.00	11-2	t	0.00		Monthly
12063	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3753	2018-01-01	2019-12-31	20,179.00	11-1	t	0.00		Monthly
12064	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3753	2017-01-01	2017-12-31	19,620.00	11-1	t	0.00		Monthly
12065	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3753	2016-06-13	2016-12-31	19,077.00	11-1	t	0.00		Monthly
12044	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3752	2018-08-19	2018-12-31	20,179.00	11-1	t	0.00		Monthly
12045	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3752	2018-08-01	2018-08-18	20,179.00	11-1	t	0.00		Monthly
12046	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3752	2018-07-08	2018-07-31	20,179.00	11-1	t	0.00		Monthly
12047	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3752	2018-01-01	2018-07-07	20,179.00	11-1	t	0.00		Monthly
12048	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3752	2017-01-01	2017-12-31	19,620.00	11-1	t	0.00		Monthly
12049	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3752	2016-06-13	2016-12-31	19,077.00	11-1	t	0.00		Monthly
12050	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3752	2013-11-26	2013-12-19	18,549.00	11-1	t	0.00		Monthly
12036	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3752	2023-06-16	2023-12-31	31,320.00	13-1	t	0.00		Monthly
12051	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3752	2013-09-23	2013-11-21	18,549.00	11-1	t	0.00		Monthly
12066	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY	TEACHER I		Substitute	3753	2015-11-03	2015-12-18	18,549.00	11-1	t	0.00		Monthly
12067	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY	TEACHER I		Substitute	3753	2015-07-30	2015-08-27	18,549.00	11-1	t	0.00		Monthly
12068	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY	TEACHER I		Substitute	3753	2015-06-29	2015-07-28	18,549.00	11-1	t	0.00		Monthly
12069	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY	TEACHER I		Substitute	3753	2015-02-04	2015-03-04	18,549.00	11-1	t	0.00		Monthly
12070	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY	TEACHER I		Substitute	3753	2014-11-10	2014-12-05	18,549.00	11-1	t	0.00		Monthly
12071	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY	TEACHER I		Substitute	3753	2014-10-09	2014-11-06	18,549.00	11-1	t	0.00		Monthly
12072	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY	TEACHER I		Substitute	3753	2014-09-10	2014-10-07	18,549.00	11-1	t	0.00		Monthly
12073	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY	TEACHER I		Substitute	3753	2014-02-07	2014-03-31	18,549.00	11-1	t	0.00		Monthly
12074	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY	TEACHER I		Substitute	3753	2013-01-07	2013-03-07	18,549.00	11-1	t	0.00		Monthly
12075	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY	TEACHER I		Substitute	3753	2012-11-05	2012-12-04	18,549.00	11-1	t	0.00		Monthly
12076	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY	TEACHER I		Substitute	3753	2012-07-18	2012-08-14	18,549.00	11-1	t	0.00		Monthly
12077	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY	TEACHER I		Substitute	3753	2012-09-21	2012-10-17	18,549.00	11-1	t	0.00		Monthly
12078	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3754	2024-09-09	2025-01-01	32,245.00	12-1	t	0.00		Monthly
12079	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3754	2020-10-12	2024-09-08	28,798.00	11-2	t	0.00		Monthly
12080	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3755	2025-01-01	0001-01-01	51,832.00	18-2	t	0.00		Monthly
12081	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3755	2024-01-01	2024-12-31	49,542.00	18-2	t	0.00		Monthly
12082	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3755	2023-11-03	2023-12-31	47,228.00	18-2	t	0.00		Monthly
12083	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3755	2023-01-01	2023-11-02	46,725.00	18-1	t	0.00		Monthly
12084	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3755	2022-01-01	2022-12-31	45,203.00	18-1	t	0.00		Monthly
12085	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3755	2021-01-01	2021-12-31	43,681.00	18-1	t	0.00		Monthly
12086	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3755	2020-11-03	2020-12-31	42,159.00	18-1	t	0.00		Monthly
12087	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3755	2020-01-01	2020-11-02	26,754.00	13-1	t	0.00		Monthly
12088	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3755	2019-01-01	2019-12-31	25,232.00	13-1	t	0.00		Monthly
12089	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3755	2018-01-01	2018-12-31	24,224.00	13-1	t	0.00		Monthly
12090	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3755	2017-02-01	2017-12-31	23,257.00	13-1	t	0.00		Monthly
12091	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3755	2017-01-01	2017-01-31	21,868.00	12-3	t	0.00		Monthly
12092	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3755	2016-01-01	2016-12-31	21,091.00	12-3	t	0.00		Monthly
12093	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3755	2014-06-11	2015-12-31	20,341.00	12-3	t	0.00		Monthly
12094	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3755	2012-06-01	2014-06-10	20,140.00	12-2	t	0.00		Monthly
12095	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3755	2011-06-11	2012-05-31	20,140.00	12-2	t	0.00		Monthly
12096	DEPARTMENT OF EDUCATION	TETACHER II		Permanent	3755	2011-06-01	2011-06-10	18,333.00	12-1	t	0.00		Monthly
12097	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3755	2010-06-24	2011-05-31	16,726.00	12-1	t	0.00		Monthly
12098	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3755	2009-07-01	2010-06-23	15,119.00	12-1	t	0.00		Monthly
12099	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3755	2008-07-01	2009-06-30	12,748.00	12-1	t	0.00		Monthly
12100	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3755	2008-06-10	2008-06-30	11,589.00	12-1	t	0.00		Monthly
12101	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3755	2007-07-01	2008-06-09	10,933.00	11-1	t	0.00		Monthly
12102	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3755	2006-02-06	2007-06-30	9,939.00	11-1	t	0.00		Monthly
12103	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3756	2025-01-01	2025-03-13	35,049.00	13-3	t	0.00		Monthly
12104	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3756	2024-01-01	2024-12-31	33,499.00	13-3	t	0.00		Monthly
12105	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3756	2023-01-01	2023-12-31	31,949.00	13-3	t	0.00		Monthly
12106	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3756	2022-11-02	2022-12-31	30,427.00	13-3	t	0.00		Monthly
12107	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3756	2022-01-01	2022-11-01	30,111.00	13-2	t	0.00		Monthly
12108	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3756	2021-01-01	2021-12-31	28,589.00	13-2	t	0.00		Monthly
12109	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3756	2020-01-01	2020-12-31	27,067.00	13-2	t	0.00		Monthly
12110	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3756	2019-11-02	2019-12-31	25,545.00	13-2	t	0.00		Monthly
12111	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3756	2019-01-01	2019-11-01	25,232.00	13-1	t	0.00		Monthly
12112	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3756	2018-01-01	2018-12-31	24,224.00	13-1	t	0.00		Monthly
12113	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3756	2017-01-01	2017-12-31	23,257.00	13-1	t	0.00		Monthly
12114	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3756	2016-01-01	2016-11-01	21,091.00	12-3	t	0.00		Monthly
12115	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3756	2015-02-25	2015-12-31	20,341.00	12-3	t	0.00		Monthly
12116	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3756	2012-06-01	2015-02-24	20,140.00	12-2	t	0.00		Monthly
12117	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3756	2012-02-26	2012-05-31	18,568.00	12-2	t	0.00		Monthly
12118	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3756	2011-06-01	2012-02-25	18,333.00	12-1	t	0.00		Monthly
12119	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3756	2010-06-24	2011-05-31	16,726.00	12-1	t	0.00		Monthly
12120	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3756	2009-07-01	2010-06-23	15,119.00	12-1	t	0.00		Monthly
12121	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3756	2009-02-25	2009-06-30	12,748.00	11-1	t	0.00		Monthly
12122	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3756	2008-07-01	2009-02-24	12,026.00	10-2	t	0.00		Monthly
12123	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3756	2007-07-01	2008-06-30	10,933.00	10-1	t	0.00		Monthly
12124	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS	TEACHER I		Permanent	3756	2005-07-12	2007-06-30	9,939.00	10-1	t	0.00		Monthly
12125	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3756	2016-11-02	2016-12-31	22,328.00	13-1	t	0.00		Monthly
12126	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3757	2025-01-05	0001-01-01	32,529.00	12-2	t	0.00		Monthly
12127	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3757	2025-01-01	2025-01-05	32,245.00	12-1	t	0.00		Monthly
12128	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3757	2024-01-01	2024-12-31	30,705.00	12-1	t	0.00		Monthly
12130	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3757	2022-01-05	2022-12-31	27,608.00	12-1	t	0.00		Monthly
12131	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3757	2022-01-01	2022-01-04	26,012.00	12-1	t	0.00		Monthly
12132	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3757	2021-06-15	2021-12-31	24,450.00	11-1	t	0.00		Monthly
12133	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3757	2021-01-01	2021-06-14	24,161.00	11-1	t	0.00		Monthly
12134	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3757	2020-01-01	2020-12-31	22,600.00	11-1	t	0.00		Monthly
12136	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3757	2018-06-15	2018-12-31	20,437.00	11-1	t	0.00		Monthly
12137	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3757	2018-01-01	2018-06-14	20,179.00	11-1	t	0.00		Monthly
12135	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3757	2019-01-01	2019-12-31	21,038.00	11-1	t	0.00		Monthly
12138	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3757	2017-08-19	2017-12-31	19,620.00	11-1	t	0.00		Monthly
12139	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3757	2017-08-18	2017-08-18	19,620.00	11-1	t	0.00		Monthly
12140	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3757	2017-01-01	2017-08-17	19,620.00	11-1	t	0.00		Monthly
12141	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3757	2016-01-01	2016-12-31	19,077.00	11-1	t	0.00		Monthly
12142	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3757	2015-06-15	2015-12-31	18,549.00	11-1	t	0.00		Monthly
12143	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3757	2014-06-02	2015-06-14	14,857.00	11-1	t	0.00		Monthly
12129	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3757	2023-01-01	2023-12-31	29,165.00	12-1	t	0.00		Monthly
12144	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3760	2025-01-01	2025-03-13	34,796.00	13-2	t	0.00		Monthly
12145	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3760	2024-01-01	2024-12-31	33,183.00	13-2	t	0.00		Monthly
12146	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3760	2023-11-03	2023-12-31	31,633.00	13-2	t	0.00		Monthly
12147	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3760	2023-01-01	2023-11-02	31,320.00	13-1	t	0.00		Monthly
12148	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3760	2022-01-01	2022-12-31	29,798.00	13-1	t	0.00		Monthly
12149	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3760	2021-01-01	2021-12-31	28,276.00	13-1	t	0.00		Monthly
12150	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3760	2020-11-03	2020-12-31	26,754.00	13-1	t	0.00		Monthly
12151	DEPARTMENT OF EDUCATION	HEAD TEACHER III		Permanent	3759	2025-03-01	0001-01-01	43,560.00	16-1	t	0.00		Monthly
12152	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3759	2025-01-01	2025-02-01	35,694.00	13-5	t	0.00		Monthly
12153	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3759	2024-06-04	2024-12-31	34,144.00	13-5	t	0.00		Monthly
12154	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3759	2024-01-01	2024-06-03	33,819.00	13-4	t	0.00		Monthly
12155	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3759	2023-01-01	2023-12-31	32,269.00	13-4	t	0.00		Monthly
12156	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3759	2022-01-01	2022-12-31	30,747.00	13-4	t	0.00		Monthly
12157	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3759	2021-06-04	2021-12-31	29,225.00	13-4	t	0.00		Monthly
12158	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3759	2021-01-01	2021-06-03	28,905.00	13-3	t	0.00		Monthly
12159	DEPARTMENT OF EDUCATION - BATANGAS CITY	MASTER TEACHER I		Permanent	3758	2012-07-02	2025-01-01	53,456.00	18-5	t	0.00		Monthly
12160	DEPARTMENT OF EDUCATION - BATANGAS CITY	TEACHER III		Permanent	3758	2001-07-09	2012-07-01	22,086.00	14-4	t	0.00		Monthly
12161	DEPARTMENT OF EDUCATION - BATANGAS CITY	TEACHER II		Permanent	3758	1999-01-01	2001-07-08	10,535.00	12-	t	0.00		Monthly
12162	DEPARTMENT OF EDUCATION - BATANGAS CITY	TEACHER I		Substitute	3758	1990-08-20	1998-12-31	7,309.00	10-	t	0.00		Monthly
12163	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3759	2020-01-01	2020-12-31	27,383.00	13-3	t	0.00		Monthly
12164	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3759	2019-01-01	2019-12-31	25,861.00	13-3	t	0.00		Monthly
12165	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3759	2018-06-04	2018-12-31	24,799.00	13-3	t	0.00		Monthly
12166	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3759	2018-01-01	2018-06-03	24,510.00	13-2	t	0.00		Monthly
12167	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3759	2017-01-01	2017-12-31	23,517.00	13-2	t	0.00		Monthly
12168	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3759	2016-01-01	2016-12-31	22,564.00	13-2	t	0.00		Monthly
12169	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3759	2015-06-04	2015-12-31	21,650.00	13-2	t	0.00		Monthly
12170	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3759	2012-06-04	2015-06-03	21,436.00	13-1	t	0.00		Monthly
12171	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3759	2012-06-01	2012-06-03	20,140.00	12-2	t	0.00		Monthly
12172	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3760	2020-01-01	2020-11-02	24,495.00	12-1	t	0.00		Monthly
12173	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3760	2019-01-01	2019-12-31	22,938.00	12-1	t	0.00		Monthly
12174	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3760	2018-09-03	2018-12-31	22,149.00	12-1	t	0.00		Monthly
12175	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3760	2018-01-21	2018-09-02	20,437.00	11-2	t	0.00		Monthly
12176	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3760	2018-01-01	2018-01-20	20,179.00	11-1	t	0.00		Monthly
12177	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3760	2017-01-01	2017-12-31	19,620.00	11-1	t	0.00		Monthly
12178	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3760	2016-01-01	2016-12-31	19,007.00	11-1	t	0.00		Monthly
12179	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL	TEACHER I		Substitute	3760	2015-01-21	2015-12-31	18,549.00	11-1	t	0.00		Monthly
12180	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL	TEACHER I		Substitute	3760	2014-08-15	2014-10-13	18,549.00	11-1	t	0.00		Monthly
12181	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL	TEACHER I		Substitute	3760	2014-06-17	2014-08-14	18,549.00	11-1	t	0.00		Monthly
12182	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL	TEACHER I		Substitute	3760	2014-02-07	2014-03-07	18,549.00	11-1	t	0.00		Monthly
12183	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL	TEACHER I		Substitute	3760	2013-11-13	2013-12-11	18,549.00	11-1	t	0.00		Monthly
12184	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY - BUCAL ELEMENTARY SCHOOL	TEACHER I		Substitute	3760	2013-07-25	2013-09-17	18,549.00	11-1	t	0.00		Monthly
12193	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3761	2025-01-01	2025-03-13	34,421.00	13-1	t	0.00		Monthly
12185	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3759	2011-11-04	2012-05-31	18,568.00	12-2	t	0.00		Monthly
12186	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3759	2011-06-01	2011-11-03	18,333.00	12-1	t	0.00		Monthly
12187	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3759	2010-06-24	2011-05-31	16,726.00	12-1	t	0.00		Monthly
12188	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3759	2009-07-01	2010-06-23	15,119.00	12-1	t	0.00		Monthly
12189	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3759	2008-11-03	2009-06-30	12,748.00	12-1	t	0.00		Monthly
12190	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3759	2008-07-01	2008-11-02	12,026.00	11-1	t	0.00		Monthly
12191	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3759	2007-07-01	2008-06-30	10,983.00	11-1	t	0.00		Monthly
12192	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3759	2007-02-19	2007-06-30	9,939.00	11-1	t	0.00		Monthly
12194	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3761	2024-01-01	2024-12-31	32,870.00	13-1	t	0.00		Monthly
12195	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3761	2023-11-03	2023-12-31	31,320.00	13-1	t	0.00		Monthly
12196	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3761	2023-07-21	2023-11-02	31,320.00	13-1	t	0.00		Monthly
12197	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3761	2023-01-01	2023-07-20	31,320.00	13-1	t	0.00		Monthly
12198	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3761	2022-03-07	2022-12-31	29,798.00	13-1	t	0.00		Monthly
12199	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3761	2022-01-13	2022-03-06	27,892.00	12-2	t	0.00		Monthly
12200	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3761	2022-01-01	2022-02-28	27,608.00	12-1	t	0.00		Monthly
12201	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3761	2021-01-01	2021-12-31	26,052.00	12-1	t	0.00		Monthly
12202	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3761	2020-01-01	2020-12-31	24,495.00	12-1	t	0.00		Monthly
12203	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER II		Permanent	3761	2019-03-01	2019-12-31	22,938.00	12-1	t	0.00		Monthly
12204	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3761	2019-01-01	2019-02-28	21,038.00	11-2	t	0.00		Monthly
12205	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3761	2018-01-01	2018-12-31	20,437.00	11-2	t	0.00		Monthly
12206	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3761	2017-01-01	2017-12-31	19,853.00	11-2	t	0.00		Monthly
12207	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3761	2016-01-01	2016-12-31	19,286.00	11-2	t	0.00		Monthly
12208	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3761	2014-08-15	2015-12-31	18,735.00	11-2	t	0.00		Monthly
12209	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3761	2014-07-12	2014-08-14	18,735.00	11-2	t	0.00		Monthly
12210	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3761	2014-06-16	2014-07-11	18,549.00	11-1	t	0.00		Monthly
12211	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3761	2012-06-01	2012-06-15	18,549.00	11-1	t	0.00		Monthly
12212	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3761	2011-07-11	2012-05-31	17,099.00	11-1	t	0.00		Monthly
12213	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3762	2025-01-01	0001-01-01	36,354.00	13-7	t	0.00		Monthly
12214	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3762	2024-01-01	2024-12-31	34,804.00	13-7	t	0.00		Monthly
12215	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3762	2023-01-01	2023-12-31	33,254.00	13-7	t	0.00		Monthly
12216	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3762	2022-07-02	2022-12-31	31,732.00	13-7	t	0.00		Monthly
12217	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3762	2022-01-01	2022-07-01	31,400.00	13-6	t	0.00		Monthly
12218	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3762	2021-01-01	2021-12-31	29,878.00	13-6	t	0.00		Monthly
12219	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3762	2020-01-01	2020-12-31	28,356.00	13-6	t	0.00		Monthly
12220	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3762	2019-07-02	2019-12-31	26,834.00	13-6	t	0.00		Monthly
12221	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3762	2019-01-01	2019-07-01	26,506.00	13-5	t	0.00		Monthly
12222	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3762	2018-01-01	2018-12-31	25,387.00	13-5	t	0.00		Monthly
12223	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3762	2017-01-01	2017-12-31	24,315.00	13-5	t	0.00		Monthly
12224	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3762	2016-01-01	2016-07-01	23,045.00	13-4	t	0.00		Monthly
12225	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3762	2013-07-03	2015-12-31	22,086.00	13-4	t	0.00		Monthly
12226	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3762	2012-06-01	2013-07-02	21,867.00	13-4	t	0.00		Monthly
12227	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3762	2011-06-01	2012-05-31	20,162.00	13-3	t	0.00		Monthly
12228	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3762	2010-07-18	2011-05-31	18,457.00	13-3	t	0.00		Monthly
12229	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3762	2010-06-24	2010-07-17	18,166.00	13-2	t	0.00		Monthly
12230	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3762	2009-07-01	2010-06-23	16,424.00	13-2	t	0.00		Monthly
12231	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3762	2008-07-01	2009-06-30	13,850.00	12-2	t	0.00		Monthly
12232	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3762	2008-01-01	2008-06-30	12,591.00	12-2	t	0.00		Monthly
12233	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3762	2007-07-01	2007-12-31	12,284.00	12-1	t	0.00		Monthly
12234	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3762	2004-07-02	2007-06-30	11,167.00	11-3	t	0.00		Monthly
12235	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3762	2002-01-01	2004-01-01	11,068.00	11-2	t	0.00		Monthly
12236	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3762	2001-07-01	2001-12-31	10,535.00	11-1	t	0.00		Monthly
12237	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3762	2000-01-01	2001-06-30	10,033.00	11-1	t	0.00		Monthly
12238	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3762	1999-01-01	1999-12-31	9,121.00	11-1	t	0.00		Monthly
12240	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3762	1997-01-01	1997-10-31	7,682.00	11-1	t	0.00		Monthly
12241	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3762	1996-01-01	1996-12-31	6,243.00	11-1	t	0.00		Monthly
12242	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3762	1995-06-05	1995-12-31	5,009.00	11-1	t	0.00		Monthly
12243	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3762	1995-01-01	1995-06-04	4,902.00	10-1	t	0.00		Monthly
12244	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3762	1994-01-01	1994-12-31	3,902.00	10-1	t	0.00		Monthly
12245	DEPARTMENT OF EDUCATION`	TEACHER I		Permanent	3762	1991-09-18	1993-12-31	3,102.00	10-1	t	0.00		Monthly
12246	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3762	2016-07-02	2016-12-31	23,289.00	13-5	t	0.00		Monthly
12239	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3762	1998-01-01	1998-12-31	9,121.00	11-1	t	0.00		Monthly
12247	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3762	1997-11-01	1997-12-31	9,121.00	11-1	t	0.00		Monthly
12249	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3764	2025-01-01	2025-03-14	36,354.00	13-7	t	0.00		Monthly
12250	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3764	2024-01-01	2024-12-31	34,804.00	13-7	t	0.00		Monthly
12251	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3764	2023-01-01	2023-03-31	33,254.00	13-7	t	0.00		Monthly
12252	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3764	2022-08-09	2022-12-31	31,732.00	13-7	t	0.00		Monthly
12253	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3764	2022-01-01	2022-08-08	31,400.00	13-6	t	0.00		Monthly
12254	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3764	2021-01-01	2021-12-31	29,550.00	13-6	t	0.00		Monthly
12255	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3764	2020-01-02	2020-12-31	28,356.00	13-6	t	0.00		Monthly
12256	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3764	2020-01-01	2020-01-01	28,028.00	13-5	t	0.00		Monthly
12257	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3764	2019-01-01	2019-12-31	26,506.00	13-5	t	0.00		Monthly
12258	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3764	2018-01-01	2018-12-31	25,387.00	13-5	t	0.00		Monthly
12259	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3764	2017-01-01	2017-12-31	24,315.00	13-5	t	0.00		Monthly
12260	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3764	2016-08-09	2016-12-31	23,289.00	13-5	t	0.00		Monthly
12261	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3764	2016-01-01	2016-08-08	23,045.00	13-4	t	0.00		Monthly
12262	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3764	2013-08-10	2015-12-31	22,086.00	13-4	t	0.00		Monthly
12268	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3765	2025-01-01	0001-01-01	36,691.00	13-8	t	0.00		Monthly
12269	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3765	2024-08-25	2024-12-31	35,141.00	13-8	t	0.00		Monthly
12270	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3765	2024-01-01	2024-08-24	34,804.00	13-7	t	0.00		Monthly
12263	DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL	TEACHER III		Permanent	3764	2012-06-01	2013-08-09	21,867.00	13-3	t	0.00		Monthly
12264	DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL	TEACHER III		Permanent	3764	2011-06-01	2012-05-31	20,162.00	13-3	t	0.00		Monthly
12265	DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL	TEACHER III		Permanent	3764	2011-04-10	2011-05-31	18,457.00	13-2	t	0.00		Monthly
12266	DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL	TEACHER III		Permanent	3764	2010-06-24	2011-04-09	18,166.00	13-2	t	0.00		Monthly
12267	DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL	TEACHER III		Permanent	3764	2009-07-01	2010-06-23	16,424.00	13-2	t	0.00		Monthly
12271	DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL	TEACHER III		Permanent	3764	2008-06-01	2008-06-30	13,850.00	13-2	t	0.00		Monthly
12272	DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL	TEACHER III		Permanent	3764	2008-07-01	2009-06-30	13,850.00	13-2	t	0.00		Monthly
12273	DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL	TEACHER III		Permanent	3764	2008-01-01	2008-06-30	12,591.00	13-2	t	0.00		Monthly
12274	DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL	TEACHER III		Permanent	3764	2007-07-01	2007-12-31	12,284.00	13-1	t	0.00		Monthly
12275	DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL	TEACHER III		Permanent	3764	2004-08-09	2007-06-30	11,167.00	13-1	t	0.00		Monthly
12276	DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL	TEACHER II		Permanent	3764	2001-07-12	2004-08-08	10,535.00	12-1	t	0.00		Monthly
12277	DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL	ELEMENTARY GRADE TEACHER 		Permanent	3764	2001-07-01	2001-07-11	9,939.00	12-1	t	0.00		Monthly
12278	DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL	ELEMENTARY GRADE TEACHER		Permanent	3764	2001-02-07	2001-06-30	9,466.00	10-1	t	0.00		Monthly
12279	DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL	ELEMENTARY GRADE TEACHER		Permanent	3764	2001-02-05	2001-02-06	9,466.00	10-1	t	0.00		Monthly
12280	DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL	ELEMENTARY GRADE TEACHER 		Permanent	3764	2000-01-01	2001-02-04	9,466.00	10-1	t	0.00		Monthly
12281	DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL	ELEMENTARY GRADE TEACHER		Permanent	3764	1998-09-08	1999-12-31	8,605.00	10-1	t	0.00		Monthly
12282	DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL	ELEMENTARY GRADE TEACHER 		Permanent	3764	1998-09-07	1998-09-07	8,605.00	10-1	t	0.00		Monthly
12283	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3765	2023-01-01	2023-12-31	33,254.00	13-7	t	0.00		Monthly
12285	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3765	2022-01-01	2022-01-01	31,566.67	13-7	t	0.00		Monthly
12286	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3765	2021-01-01	2021-12-31	29,711.33	13-6	t	0.00		Monthly
12287	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3765	2020-01-01	2020-12-31	28,356.00	13-6	t	0.00		Monthly
12288	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3765	2019-01-01	2019-12-31	26,834.00	13-6	t	0.00		Monthly
12289	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3765	2018-08-27	2018-12-31	25,686.00	13-6	t	0.00		Monthly
12290	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3765	2018-01-01	2018-08-26	25,387.00	13-5	t	0.00		Monthly
12291	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3765	2017-01-01	2017-12-31	24,315.00	13-5	t	0.00		Monthly
12292	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3765	2016-01-01	2016-12-31	23,289.00	13-5	t	0.00		Monthly
12293	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3765	2015-08-25	2015-12-31	22,306.00	13-4	t	0.00		Monthly
12294	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3765	2012-08-26	2015-08-24	22,086.00	13-4	t	0.00		Monthly
12312	DEPARTMENT OF EDUCATION / MAHABANG DAHILIG ELEMENTARY SCHOOL	ELEMENTARY GRADE TEACHER 		Permanent	3764	1998-06-27	1998-09-06	8,605.00	10-1	t	0.00		Monthly
12313	DEPARTMENT OF EDUCATION / CUMBA ELEMENTARY SCHOOL	ELEMENTARY GRADE TEACHER		Permanent	3764	1998-05-04	1998-06-26	8,605.00	10-1	t	0.00		Monthly
12314	DEPARTMENT OF EDUCATION / CUMBA ELEMENTARY SCHOOL	ELEMENTARY GRADE TEACHER		Permanent	3764	1998-01-05	1998-05-03	8,605.00	10-1	t	0.00		Monthly
12315	DEPARTMENT OF EDUCATION BATANGAS CITY	ELEMENTARY GRADE TEACHER		Substitute	3764	1997-10-24	1997-12-19	7,309.00	10-1	t	0.00		Monthly
12316	DEPARTMENT OF EDUCATION BATANGAS CITY	ELEMENTARY GRADE TEACHER		Substitute	3764	1997-08-25	1997-10-23	7,309.00	10-1	t	0.00		Monthly
12248	DEPARTMENT OF EDUCATION	SECURITY GUARD		Permanent	3763	2016-01-01	2025-01-01	16,693.00	3-8	t	0.00		Monthly
12295	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3765	2012-06-01	2012-08-25	21,867.00	13-3	t	0.00		Monthly
12296	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3765	2011-06-01	2012-05-31	20,162.00	13-3	t	0.00		Monthly
12297	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3765	2010-06-24	2011-05-31	18,457.00	13-3	t	0.00		Monthly
12298	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3765	2009-08-26	2010-06-23	16,753.00	13-3	t	0.00		Monthly
12299	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3765	2009-07-01	2009-08-25	16,424.00	13-2	t	0.00		Monthly
12300	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3765	2008-07-01	2009-06-30	13,850.00	12-2	t	0.00		Monthly
12301	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3765	2007-07-01	2008-06-30	12,591.00	12-2	t	0.00		Monthly
12302	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3765	2007-01-01	2007-06-30	11,446.00	12-2	t	0.00		Monthly
12303	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3765	2003-08-25	2006-12-31	11,167.00	12-1	t	0.00		Monthly
12304	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3765	2001-07-01	2003-08-24	10,535.00	11-1	t	0.00		Monthly
12305	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3765	2001-06-13	2001-06-30	10,033.00	11-1	t	0.00		Monthly
12306	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3765	2000-01-01	2001-06-12	9,466.00	10-1	t	0.00		Monthly
12307	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3765	1999-11-01	1999-12-31	8,605.00	12-4	t	0.00		Monthly
12308	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3765	1997-01-01	1997-10-31	7,309.00	10-1	t	0.00		Monthly
12309	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3765	1996-01-01	1996-12-31	6,013.00	10-1	t	0.00		Monthly
12310	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3765	1995-01-01	1995-12-31	4,902.00	10-1	t	0.00		Monthly
12311	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3765	1994-06-06	1994-12-31	3,902.00	10-1	t	0.00		Monthly
12317	DEPARTMENT OF EDUCATION BATANGAS CITY	ELEMENTARY GRADE TEACHER		Substitute	3764	1997-06-24	1997-07-23	7,309.00	10-1	t	0.00		Monthly
12318	DEPARTMENT OF EDUCATION BATANGAS CITY	ELEMENTARY GRADE TEACHER		Substitute	3764	1997-02-04	1997-03-31	7,309.00	10-1	t	0.00		Monthly
12319	DEPARTMENT OF EDUCATION BATANGAS CITY	ELEMENTARY GRADE TEACHER		Substitute	3764	1989-01-11	1989-02-09	1,764.00	10-1	t	0.00		Monthly
12320	DEPARTMENT OF EDUCATION BATANGAS CITY	ELEMENTARY GRADE TEACHER		Substitute	3764	1988-08-19	1988-09-14	1,604.00	10-1	t	0.00		Monthly
12321	DEPARTMENT OF EDUCATION BATANGAS CITY	ELEMENTARY GRADE TEACHER		Substitute	3764	1988-02-24	1988-03-24	1,604.00	10-1	t	0.00		Monthly
12322	DEPARTMENT OF EDUCATION BATANGAS CITY	ELEMENTARY GRADE TEACHER		Substitute	3764	1987-09-29	1987-10-28	1,604.00	10-1	t	0.00		Monthly
12323	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3765	1990-06-26	1994-01-22	3,102.00	10-1	t	0.00		Monthly
12324	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3765	1988-11-16	1990-02-28	1,764.00	10-1	t	0.00		Monthly
12284	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3765	2022-01-02	2022-12-31	31,732.00	13-7	t	0.00		Monthly
12325	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3765	1994-06-06	1994-11-12	3,902.00	10-1	t	0.00		Monthly
12326	DEPARTMENT OF EDUCATION	ADMINISTRATIVE OFFICER II		Permanent	3766	2021-11-08	2025-01-01	30,308.00	11-2	t	0.00		Monthly
12327	DEPARTMENT OF EDUCATION	PROJECT DEVELOPMENT OFFICER-I		Permanent	3766	2018-09-16	2021-11-07	23,877.00	11-1	f	0.00		Monthly
12328	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE VI		Permanent	3766	2016-12-12	2021-09-15	14,656.00	9-1	f	0.00		Monthly
12329	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3768	2025-02-07	0001-01-01	30,024.00	11-1	t	0.00		Monthly
12330	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3768	2024-10-21	2024-12-19	28,512.00	11-1	t	0.00		Monthly
12331	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3768	2024-08-21	2024-10-03	28,512.00	11-1	t	0.00		Monthly
12332	EURIEL LEARNING CENTER	TUTOR/TEACHER		Casual	3768	2018-07-23	2024-05-05	7,000.00		f	0.00		Monthly
12333	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3767	2025-01-01	2025-03-14	34,733.00	13-2	t	0.00		Monthly
12334	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3767	2024-12-15	2024-12-31	32,870.00	13-1	t	0.00		Monthly
12335	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3767	2024-01-01	2024-12-14	32,870.00	13-1	t	0.00		Monthly
12336	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3767	2023-01-01	2023-12-31	31,320.00	13-1	t	0.00		Monthly
12337	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3767	2022-01-01	2022-12-31	29,798.00	13-1	t	0.00		Monthly
12338	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER III		Permanent	3767	2021-09-01	2021-12-31	28,276.00	13-1	t	0.00		Monthly
12339	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3767	2021-01-01	2021-08-31	24,161.00	11-2	t	0.00		Monthly
12340	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3767	2020-01-01	2020-12-31	22,600.00	11-2	t	0.00		Monthly
12341	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3767	2019-06-13	2019-12-31	21,204.00	11-2	t	0.00		Monthly
12342	DEPARTMENT OF EDUCATION / BUCAL ELEMENTARY SCHOOL	TEACHER I		Permanent	3767	2019-01-01	2019-06-12	20,754.00	11-2	t	0.00		Monthly
12343	DEPARTMENT OF EDUCATION / KATANDALA ELEMENTARY SCHOOL	TEACHER I		Permanent	3767	2018-01-01	2018-12-31	20,179.00	11-1	t	0.00		Monthly
12344	DEPARTMENT OF EDUCATION / KATANDALA ELEMENTARY SCHOOL	TEACHER I		Permanent	3767	2017-01-01	2017-12-31	19,620.00	11-1	t	0.00		Monthly
12345	DEPARTMENT OF EDUCATION / KATANDALA ELEMENTARY SCHOOL	TEACHER I		Permanent	3767	2016-06-13	2016-12-31	19,077.00	11-1	t	0.00		Monthly
12346	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3767	2013-08-16	2013-09-11	18,549.00	11-1	t	0.00		Monthly
12347	DEPARTMENT OF EDUCATION 	TEACHER I		Permanent	3769	2012-06-22	2018-01-01	20,437.00	11-1	t	0.00		Monthly
12348	DEPARTMENT OF EDUCATION 	TEACHER III		Permanent	3769	2019-01-01	2025-01-01	33,183.00	13-2	t	0.00		Monthly
12349	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH	TEACHER I		Permanent	3772	2025-01-01	2025-03-14	31,489.00	11-7	t	0.00		Monthly
12350	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH	TEACHER I		Permanent	3772	2024-01-01	2024-12-31	29,974.00	11-7	t	0.00		Monthly
12351	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH	TEACHER I		Permanent	3772	2023-01-01	2023-12-31	28,462.00	11-7	t	0.00		Monthly
12352	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH	TEACHER I		Permanent	3772	2022-09-21	2022-12-31	27,205.00	11-7	t	0.00		Monthly
12353	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH	TEACHER I		Permanent	3772	2022-01-01	2022-09-20	26,901.00	11-6	t	0.00		Monthly
12354	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH	TEACHER I		Permanent	3772	2021-01-01	2021-12-31	25,339.00	11-6	t	0.00		Monthly
12355	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH	TEACHER I		Permanent	3772	2020-01-01	2020-12-31	23,778.00	11-6	t	0.00		Monthly
12356	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH	TEACHER I		Permanent	3772	2019-09-21	2019-12-31	22,216.00	11-6	t	0.00		Monthly
12357	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH	TEACHER I		Permanent	3772	2019-01-01	2019-09-20	21,915.00	11-5	t	0.00		Monthly
12358	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH	TEACHER I		Permanent	3772	2018-01-01	2018-12-31	21,231.00	11-5	t	0.00		Monthly
12359	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH	TEACHER I		Permanent	3772	2017-01-01	2017-12-31	20,567.00	11-5	t	0.00		Monthly
12360	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH	TEACHER I		Permanent	3772	2016-09-21	2016-12-31	19,925.00	11-5	t	0.00		Monthly
12361	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH	TEACHER I		Permanent	3772	2016-01-01	2016-09-20	19,709.00	11-4	t	0.00		Monthly
12362	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH	TEACHER I		Permanent	3772	2013-08-20	2015-12-31	19,111.00	11-4	t	0.00		Monthly
12363	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH	TEACHER I		Permanent	3772	2012-01-06	2013-08-19	18,922.00	11-4	t	0.00		Monthly
12364	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH	TEACHER I		Permanent	3772	2011-01-06	2012-05-31	17,318.00	11-4	t	0.00		Monthly
12365	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH	TEACHER I		Permanent	3772	2010-09-21	2011-05-31	15,900.00	11-3	t	0.00		Monthly
12366	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH	TEACHER I		Permanent	3772	2010-06-12	2010-09-20	15,900.00	11-3	t	0.00		Monthly
12383	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3776	2022-03-10	2025-01-01	32,870.00	13-1	t	0.00		Monthly
12384	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3776	2019-08-19	2022-02-10	27,608.00	12-1	t	0.00		Monthly
12385	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3776	2013-11-18	2019-08-18	22,938.00	11-2	t	0.00		Monthly
12389	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3778	1994-06-06	2025-01-01	32,099.00	11-	t	0.00		Monthly
12367	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH	TEACHER I		Permanent	3772	2009-01-07	2010-06-23	14,483.00	11-3	t	0.00		Annual
12368	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH	TEACHER I		Permanent	3772	2008-01-07	2009-06-30	12,026.00	11-2	t	0.00		Monthly
12369	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH	TEACHER I		Permanent	3772	2007-01-07	2008-06-30	10,933.00	11-2	t	0.00		Monthly
12370	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH	TEACHER I		Permanent	3772	2004-08-20	2007-06-30	9,939.00	11-1	t	0.00		Monthly
12371	DEPARTMENT OF EDUCATION, BATANGAS CITY	HEAD TEACHER I		Permanent	3774	2025-01-03	2025-03-14	37,024.00		t	0.00		Monthly
12372	DEPARTMENT OF EDUCATION, BATANGAS CITY	TEACHER II		Permanent	3774	2018-06-04	2025-02-01	30,705.00		t	0.00		Monthly
12373	SULTANATE OF OMAN	COLLEGE INSTRUCTOR		Contractual	3774	2012-10-21	2016-06-30	185,700.00		f	0.00		Annual
12374	BATANGAS STATE UNIVERSITY	COLLEGE INSTRUCTOR		Temporary	3774	2008-06-17	2012-10-20	18,333.00		f	0.00		Monthly
12375	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3775	2025-01-01	2025-03-14	28,796.00	11-2	t	0.00		Monthly
12376	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3775	2024-01-01	2024-12-31	28,796.00	11-2	t	0.00		Monthly
12377	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3775	2023-01-01	2023-12-31	27,000.00	11-1	t	0.00		Monthly
12378	DEPARTMENT OF EDUCATION	TEACHER I 		Permanent	3775	2022-01-01	2022-12-31	25,439.00	11-1	t	0.00		Monthly
12379	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3775	2021-02-19	2021-12-31	23,877.00	11-1	t	0.00		Monthly
12380	BATANGAS NATONAL HIGH SCHOOL	TEACHER I		Substitute	3775	2020-11-25	2021-02-12	22,316.00	11-1	t	0.00		Monthly
12381	HOLY FAMILY MONTESSORI OF SAN JOSE, BATANGAS, INC.	SENIOR HIGH SCHOOL TEACHER 		Contractual	3775	2016-06-13	2017-03-31	12,000.00		f	0.00		Monthly
12382	HOLY FAMILY MONTESSORI OF SAN JOSE, BATANGAS, INC.	JUNIOR HIGH SCHOOL TEACHER		Contractual	3775	2013-06-03	2017-03-31	12,000.00		f	0.00		Monthly
12386	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3777	2024-10-14	0001-01-01	29,768.00	11-1	t	0.00		Monthly
12387	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3777	2023-10-14	2024-10-14	27,000.00	11-1	t	0.00		Monthly
12388	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3777	2022-10-14	2023-10-14	25,000.00	11-1	t	0.00		Monthly
12390	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3771	2024-01-01	0001-01-01	29,085.00	11-3	t	0.00		Monthly
12391	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3771	2023-01-01	2023-12-31	27,573.00	11-3	t	0.00		Monthly
12392	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3771	2022-06-13	2022-12-31	26,012.00	11-3	t	0.00		Monthly
12393	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3771	2022-01-01	2022-06-12	25,723.00	11-2	t	0.00		Monthly
12394	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3771	2021-01-01	2021-12-31	24,161.00	11-2	t	0.00		Monthly
12395	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3771	2020-01-01	2020-12-31	22,600.00	11-2	t	0.00		Monthly
12396	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3771	2019-06-13	2019-12-31	21,038.00	11-1	t	0.00		Monthly
12397	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3771	2019-01-01	2019-06-12	20,754.00	11-1	t	0.00		Monthly
12398	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3771	2018-01-01	2018-12-31	20,179.00	11-1	t	0.00		Monthly
12399	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3771	2017-01-01	2017-12-31	19,620.00	11-1	t	0.00		Monthly
12401	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3771	2016-01-01	2016-12-06	19,007.00	11-1	t	0.00		Monthly
12402	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3771	2013-06-13	2015-12-31	18,549.00	11-1	t	0.00		Monthly
12403	DEPARTMENT OF EDUCATION	KINDERGARTED TEACHER 		Contractual	3771	2009-08-06	2013-03-31	3,000.00		t	0.00		Monthly
12400	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3771	2016-06-13	2016-12-31	19,077.00	11-1	t	0.00		Monthly
12404	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH SCHOOLDEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH SCHOOL	TEACHER I		Permanent	3779	2020-01-01	2020-12-31	27,064.00	13-2	t	0.00		Monthly
12405	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH SCHOOL	TEACHER III		Permanent	3779	2019-06-13	2019-12-31	25,545.00	13-2	t	0.00		Monthly
12406	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH SCHOOL	TEACHER III		Permanent	3779	2019-01-01	2019-06-12	25,232.00	13-1	t	0.00		Monthly
12407	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH SCHOOL	TEACHER III		Permanent	3779	2018-01-01	2018-12-31	24,224.00	13-1	t	0.00		Monthly
12408	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH SCHOOL	TEACHER III		Permanent	3779	2017-01-01	2017-12-31	23,257.00	13-1	t	0.00		Monthly
12409	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH SCHOOL	TEACHER III		Permanent	3779	2016-06-13	2016-12-31	22,328.00	11-1	t	0.00		Monthly
12410	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH SCHOOL	TEACHER I		Permanent	3779	2012-07-02	2015-12-31	20,140.00	11-1	t	0.00		Monthly
12411	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH SCHOOL	TEACHER I		Permanent	3779	2012-06-01	2012-07-01	19,495.00	11-1	t	0.00		Monthly
12412	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER I		Permanent	3779	2011-06-01	2012-05-31	18,227.00	11-1	t	0.00		Monthly
12413	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER I		Permanent	3779	2010-06-24	2011-05-31	16,959.00	11-1	t	0.00		Monthly
12414	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEAHCER I		Permanent	3779	2009-07-01	2010-06-23	15,691.00	11-1	t	0.00		Monthly
12415	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER I		Permanent	3779	2008-07-01	2009-06-30	13,608.00	11-1	t	0.00		Monthly
12416	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER I		Permanent	3779	2007-07-01	2008-06-30	12,371.00	11-1	t	0.00		Monthly
12417	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER I		Permanent	3779	2007-01-01	2007-06-30	11,256.00	11-1	t	0.00		Monthly
12418	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER I		Permanent	3779	2005-11-01	2006-12-31	10,704.00	11-1	t	0.00		Monthly
12419	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER I		Permanent	3779	2001-07-01	2005-10-31	10,442.00	11-1	t	0.00		Monthly
12420	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER I 		Permanent	3779	2000-01-01	2001-06-30	9,949.00	11-1	t	0.00		Monthly
12421	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER I		Permanent	3779	1998-08-15	1999-12-31	8,874.33	-	t	0.00		Monthly
12422	WENCESLAO TRINIDAD MEMORIAL NATIONAL HIGH SCHOOL	TEACHER I		Permanent	3779	1997-11-01	1998-08-14	8,874.33	11-3	t	0.00		Monthly
12423	WENCESLAO TRINIDAD MEMORIAL NATIONAL HIGH SCHOOL	TEACHER I		Permanent	3779	1996-01-01	1997-03-31	7,558.00	11-3	t	0.00		Monthly
12424	WENCESLAO TRINIDAD MEMORIAL NATIONAL HIGH SCHOOL	TEACHER I		Permanent	3779	1996-01-01	1996-12-31	6,075.00	11-3	t	0.00		Monthly
12425	WENCESLAO TRINIDAD MEMORIAL NATIONAL HIGH SCHOOL	TEACHER I		Permanent	3779	1955-01-01	1995-12-31	4,933.00	11-2	t	0.00		Monthly
12426	WENCESLAO TRINIDAD MEMORIAL NATIONAL HIGH SCHOOL	TEACHER I		Permanent	3779	1994-01-01	1994-12-31	4,076.33	11-2	t	0.00		Monthly
12432	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3770	2025-01-01	0001-01-01	31,189.42	11-4	t	0.00		Monthly
12427	WENCESLAO TRINIDAD MEMORIAL NATIONAL HIGH SCHOOL	TEACHER I		Permanent	3779	1989-07-01	1993-12-31	3,102.00	11-1	t	0.00		Monthly
12428	WENCESLAO TRINIDAD MEMORIAL NATIONAL HIGH SCHOOL	TEACHER I		Permanent	3779	1988-01-01	1989-06-30	1,764.00	11-1	t	0.00		Monthly
12429	WENCESLAO TRINIDAD MEMORIAL NATIONAL HIGH SCHOOL	TEACHER I		Permanent	3779	1987-12-31	1988-03-01	1,604.00	11-1	t	0.00		Monthly
12430	WENCESLAO TRINIDAD MEMORIAL NATIONAL HIGH SCHOOL	TEACHER I		Permanent	3779	1987-01-14	1987-02-28	1,337.00	11-0	t	0.00		Monthly
12431	WENCESLAO TRINIDAD MEMORIAL NATIONAL HIGH SCHOOL	TEACHER I		Permanent	3779	1985-09-24	1985-10-23	1,053.00	11-0	t	0.00		Monthly
12448	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH SCHOOL	TEACHER III		Permanent	3779	2024-01-01	2025-03-17	33,499.00	13-3	t	0.00		Monthly
12449	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH SCHOOL	TEACHER III		Probationary	3779	2023-01-01	2023-12-31	31,949.00	13-3	t	0.00		Monthly
12450	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH SCHOOL	TEACHER III		Permanent	3779	2022-06-13	2022-12-31	30,427.00	13-3	t	0.00		Monthly
12451	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH SCHOOL	TEACHER III		Permanent	3779	2022-01-01	2022-06-12	30,111.00	13-3	t	0.00		Monthly
12452	DEPARTMENT OF EDUCATION / SAN ANTONIO NATIONAL HIGH SCHOOL	TEACHER III		Permanent	3779	2021-01-01	2021-12-31	28,589.00	13-2	t	0.00		Monthly
12433	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3770	2024-01-01	2024-12-31	28,160.17	11-4	t	0.00		Monthly
12434	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3770	2023-08-01	2023-12-31	28,161.00	11-3	t	0.00		Monthly
12435	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3770	2023-01-01	2023-07-31	27,865.00	11-3	t	0.00		Monthly
12436	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3770	2022-01-01	2022-12-31	26,304.00	11-3	t	0.00		Monthly
12437	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3770	2021-01-01	2021-12-31	24,742.00	11-3	t	0.00		Monthly
12438	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3770	2020-08-01	2020-12-31	23,181.00	11-2	t	0.00		Monthly
12439	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3770	2020-01-01	2020-07-31	22,889.00	11-2	t	0.00		Monthly
12440	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3770	2019-01-01	2019-12-31	21,327.00	11-2	t	0.00		Monthly
12441	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3770	2018-01-01	2018-12-31	20,698.00	11-2	t	0.00		Monthly
12442	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3770	2017-08-01	2017-12-31	20,088.00	11-1	t	0.00		Monthly
12443	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3770	2017-01-01	2017-07-31	19,853.00	11-1	t	0.00		Monthly
12444	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3770	2016-01-01	2016-12-31	19,286.00	11-1	t	0.00		Monthly
12446	DEPARTMENT OF EDUCATION- SCHOOLS DIVISION OFFICE	TEACHER II		Permanent	3780	2018-11-06	2025-01-01	30,989.00	12-2	t	0.00		Monthly
12447	DEPARTMENT OF EDUCATION-SCHOOLS DIVISION OFFICE	TEACHER I		Permanent	3780	2008-06-10	2018-11-05	22,149.00	12-1	t	0.00		Monthly
12445	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3770	2014-08-01	2015-12-31	18,735.00	11-1	f	0.00		Monthly
12453	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3770	2012-06-01	2014-07-31	18,549.00	11-1	t	0.00		Monthly
12454	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3770	2011-08-01	2012-05-31	17,099.00	11-1	t	0.00		Monthly
12455	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3770	2011-06-01	2011-07-31	17,099.00	11-1	t	0.00		Monthly
12456	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3770	2010-07-16	2011-05-31	15,649.00	11-1	t	0.00		Monthly
12457	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3770	2010-01-01	2010-07-15	13,333.00	11-1	t	0.00		Monthly
12458	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3770	2006-02-06	2009-12-31	9,939.00	11-1	t	0.00		Monthly
12459	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3770	2004-07-06	2005-11-12	9,939.00		t	0.00		Monthly
12460	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3773	2025-01-01	0001-01-01	34,421.00	13-1	t	0.00		Monthly
12461	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3773	2024-02-12	2024-12-31	32,870.00	13-1	t	0.00		Monthly
12462	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3773	2024-01-01	2024-02-11	29,673.00	11-5	t	0.00		Monthly
12463	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3773	2023-09-12	2023-12-31	28,161.00	11-5	t	0.00		Monthly
12464	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3773	2023-01-01	2023-09-11	27,865.00	11-4	t	0.00		Monthly
12465	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3773	2022-01-01	2022-12-31	26,304.00	11-4	t	0.00		Monthly
12466	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3773	2021-01-01	2021-12-31	24,742.00	11-4	t	0.00		Monthly
12467	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3773	2020-09-12	2020-12-31	23,181.00	11-3	t	0.00		Monthly
12468	DEPARTMENT OF EDUCATION	TEACHER  I		Permanent	3773	2020-01-01	2020-09-11	22,899.00	11-3	t	0.00		Monthly
12469	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3773	2019-01-01	2019-12-31	21,327.00	11-3	t	0.00		Monthly
12470	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3773	2018-01-01	2018-12-31	20,698.00	11-3	t	0.00		Monthly
12471	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3773	2017-09-12	2017-12-31	20,088.00	11-2	t	0.00		Monthly
12472	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3773	2017-01-01	2017-09-11	19,853.00	11-2	t	0.00		Monthly
12473	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3773	2016-01-01	2016-12-31	19,286.00	11-2	t	0.00		Monthly
12474	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3773	2014-09-12	2015-12-31	18,735.00	11-2	t	0.00		Monthly
12475	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3773	2012-06-01	2014-09-11	18,549.00	11-1	t	0.00		Monthly
12476	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3773	2011-09-12	2012-05-31	17,099.00	11-1	f	0.00		Monthly
12477	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3773	2011-06-13	2011-07-17	17,099.00	11-1	t	0.00		Monthly
12478	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3781	2023-09-08	2025-01-01	30,024.00	11-1	t	0.00		Monthly
12479	DEPARTMENT OF EDUCATION	SUBSTITUTE TEACHER I		Substitute	3781	2022-09-12	2023-06-21	27,000.00	11-1	t	0.00		Monthly
12480	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3782	2024-08-12	0001-01-01	28,512.00	11-1	t	0.00		Monthly
12481	DEPARTMENT OF EDUCATION	ADMINISTRATIVE ASSISTANT II		Permanent	3784	2025-01-01	0001-01-01	21,839.00	08-3	t	0.00		Monthly
12482	DEPARTMENT OF EDUCATION	ADMINISTRATIVE ASSISTANT II		Permanent	3784	2024-01-01	2024-12-31	20,908.00	08-3	t	0.00		Monthly
12483	DEPARTMENT OF EDUCATION	ADMINISTRATIVE ASSISTANT II		Permanent	3784	2023-11-02	2023-12-31	20,140.00	08-3	t	0.00		Monthly
12484	DEPARTMENT OF EDUCATION	ADMINISTRATIVE ASSISTANT II		Permanent	3784	2023-01-01	2023-11-01	19,923.00	08-2	t	0.00		Monthly
12485	DEPARTMENT OF EDUCATION	ADMINISTRATIVE ASSISTANT II		Permanent	3784	2022-01-01	2022-12-31	19,170.00	08-2	t	0.00		Monthly
12486	DEPARTMENT OF EDUCATION	ADMINISTRATIVE ASSISTANT II		Permanent	3784	2021-01-01	2021-12-31	18,417.00	08-2	t	0.00		Monthly
12488	DEPARTMENT OF EDUCATION	ADMINISTRATIVE ASSISTANT II		Permanent	3784	2020-01-01	2020-11-01	17,505.00	08-1	t	0.00		Monthly
12489	DEPARTMENT OF EDUCATION	ADMINISTRATIVE ASSISTANT II		Permanent	3784	2019-01-01	2019-12-31	16,758.00	08-1	t	0.00		Monthly
12490	DEPARTMENT OF EDUCATION	ADMINISTRATIVE ASSISTANT II		Permanent	3784	2018-01-01	2018-12-31	16,282.00	08-1	t	0.00		Monthly
12491	DEPARTMENT OF EDUCATION	ADMINISTRATIVE ASSISTANT II		Permanent	3784	2017-11-02	2017-12-31	15,818.00	08-1	t	0.00		Monthly
12487	DEPARTMENT OF EDUCATION	ADMINISTRATIVE ASSISTANT II		Permanent	3784	2020-11-02	2020-12-31	17,683.00	08-2	t	0.00		Monthly
12492	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY	TEACHER I		Permanent	3783	2024-10-16	2025-03-17	28,512.00	11-1	t	0.00		Monthly
12493	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY	TEACHER I		Substitute	3783	2024-08-15	2024-09-27	28,512.00		t	0.00		Monthly
12494	ST. BRIDGET COLLEGE	SUBSTITUTE TEACHER		Temporary	3783	2021-08-08	2021-12-15	18,000.00		f	0.00		Monthly
12495	ST. BRIDGET COLLEGE	ELEMENTARY TEACHER 		Contractual	3783	2019-06-01	2020-08-15	16,000.00		f	0.00		Monthly
12496	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3787	2025-01-01	2025-03-17	30,024.00	11-1	t	0.00		Monthly
12497	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3787	2024-10-04	2024-12-31	28,512.00	11-1	t	0.00		Monthly
12498	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / ALANGILAN CENTRAL ELEMENTARY SCHOOL	TEACHER I		Substitute	3787	2024-04-11	2024-05-31	27,000.00	11-1	t	0.00		Monthly
12499	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / WAWA ELEMENTARY SCHOOL	TEACHER I		Substitute	3787	2024-02-22	2024-03-27	27,000.00	11-1	t	0.00		Monthly
12500	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / WAWA ELEMENTARY SCHOOL	TEACHER I 		Substitute	3787	2023-11-09	2023-12-15	27,000.00	11-1	t	0.00		Monthly
12501	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / WAWA ELEMENTARY SCHOOL	TEACHER I		Substitute	3787	2023-09-04	2023-11-02	27,000.00	11-1	t	0.00		Monthly
12502	WEASTMED ACADEMY OF SCIENCE AND TECHNOLOGY FOUNDATION INC.	ELEMENTARY TEACHER		Contractual	3787	2021-09-15	2023-08-01	11,000.00		f	0.00		Monthly
12521	DEPARMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3789	2025-01-01	2025-03-17	34,683.00	13-2	t	0.00		Monthly
12522	DEPARMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3789	2024-01-01	2024-12-31	33,183.00	13-2	t	0.00		Monthly
12523	DEPARMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3789	2023-11-03	2023-12-31	31,633.00	13-2	t	0.00		Monthly
12524	DEPARMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3789	2023-01-01	2023-12-31	31,320.00	13-2	t	0.00		Monthly
12525	DEPARMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3789	2022-01-01	2022-12-31	29,798.00	13-2	t	0.00		Monthly
12526	DEPARMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3789	2021-01-01	2021-12-31	28,276.00	13-1	t	0.00		Monthly
12527	DEPARMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3789	2020-11-03	2020-12-31	26,754.00	13-2	t	0.00		Monthly
12528	DEPARMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3789	2020-01-01	2020-11-02	22,600.00	11-2	t	0.00		Annual
12529	DEPARMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3789	2019-01-01	2019-12-31	21,038.00	11-1	t	0.00		Monthly
12530	DEPARMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3789	2018-01-01	2018-12-31	20,437.00	11-1	t	0.00		Annual
12531	DEPARMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3789	2017-06-18	2017-12-31	19,853.00	11-1	t	0.00		Monthly
12532	DEPARMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3789	2017-01-01	2017-06-17	19,620.00	11-1	t	0.00		Monthly
12533	DEPARMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3789	2016-01-01	2016-12-31	19,077.00	11-1	t	0.00		Monthly
12534	DEPARMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3789	2014-06-18	2015-12-31	18,549.00	11-1	t	0.00		Monthly
12503	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3786	2025-01-01	0001-01-01	30,024.00	11-1	t	0.00		Monthly
12504	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3786	2024-01-01	2024-12-31	28,512.00	11-1	t	0.00		Monthly
12505	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3786	2023-01-01	2023-12-31	27,000.00	11-1	t	0.00		Monthly
12506	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3786	2022-11-22	2022-12-31	25,439.00	11-1	t	0.00		Monthly
12507	WESTMEAD ACADEMY OF SCIENCE AND TECHNOLOGY FOUNDATION INS.	ELEMENTARY TEACHER 		Contractual	3786	2019-06-24	2022-07-06	9,269.00		f	0.00		Monthly
12511	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3788	2025-01-01	0001-01-01	32,245.00	12-1	t	0.00		Monthly
12512	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3788	2024-02-01	2024-12-31	30,705.00	12-1	t	0.00		Monthly
12513	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3788	2024-01-01	2024-12-31	28,796.00	11-2	t	0.00		Monthly
12514	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3788	2023-01-01	2023-12-31	27,284.00	11-2	t	0.00		Monthly
12515	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3788	2022-01-01	2022-12-31	25,723.00	11-2	t	0.00		Monthly
12516	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3788	2021-06-18	2021-12-31	24,161.00	11-2	t	0.00		Monthly
12517	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3788	2021-01-01	2021-06-17	23,877.00	11-1	t	0.00		Monthly
12518	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3788	2020-01-01	2020-12-31	22,316.00	11-1	t	0.00		Monthly
12519	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3788	2019-01-01	2019-12-31	20,754.00	11-1	t	0.00		Monthly
12520	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3788	2018-06-18	2018-12-31	20,179.00	11-1	t	0.00		Monthly
12535	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3790	2025-01-01	0001-01-01	30,597.00	11-3	t	0.00		Monthly
12536	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3790	2024-02-01	2024-12-31	29,085.00	11-3	t	0.00		Monthly
12537	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3790	2024-01-01	2024-01-31	28,796.00	11-2	t	0.00		Monthly
12538	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3790	2023-01-01	2023-12-31	27,284.00	11-2	t	0.00		Monthly
12539	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3790	2022-12-06	2022-12-31	25,723.00	11-2	t	0.00		Monthly
12540	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3790	2022-01-01	2022-12-05	25,723.00	11-2	t	0.00		Monthly
12541	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3790	2021-02-01	2021-12-31	24,161.00	11-2	t	0.00		Monthly
12542	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3790	2021-01-01	2021-01-31	23,877.00	11-1	t	0.00		Monthly
12543	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3790	2020-01-01	2020-12-31	22,316.00	11-1	t	0.00		Monthly
12544	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3790	2019-01-01	2019-12-31	20,754.00	11-1	t	0.00		Monthly
12545	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3790	2018-02-01	2018-12-31	20,179.00	11-1	t	0.00		Monthly
12546	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3790	2016-07-04	2016-09-01	19,077.00	11-1	t	0.00		Monthly
12547	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3790	2013-08-13	2015-12-28	18,549.00	11-1	t	0.00		Monthly
12553	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3792	2025-01-01	0001-01-01	34,421.00	13-1	t	0.00		Monthly
12554	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3792	2024-01-01	2024-12-31	32,870.00	13-1	t	0.00		Monthly
12555	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3792	2023-01-01	2023-12-31	31,320.00	13-1	t	0.00		Monthly
12556	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3792	2022-10-03	2022-12-31	29,798.00	13-1	t	0.00		Monthly
12557	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3792	2022-01-01	2022-10-02	26,012.00	11-3	t	0.00		Monthly
12558	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3792	2021-07-01	2021-12-31	24,450.00	11-3	t	0.00		Monthly
12559	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3792	2021-01-01	2021-06-30	24,161.00	11-2	t	0.00		Monthly
12560	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3792	2020-01-01	2020-12-31	22,600.00	11-2	t	0.00		Monthly
12561	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3792	2019-06-13	2019-12-31	21,038.00	11-2	t	0.00		Monthly
12562	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3792	2019-01-01	2019-06-12	20,754.00	11-1	t	0.00		Monthly
12563	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3792	2018-01-01	2018-12-31	20,179.00	11-1	t	0.00		Monthly
12564	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3792	2017-01-01	2017-12-31	19,620.00	11-1	t	0.00		Monthly
12565	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3792	2016-06-13	2016-12-31	18,735.00	11-1	t	0.00		Monthly
12566	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3792	2016-01-01	2016-06-12	18,735.00	11-1	t	0.00		Monthly
12567	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3792	2015-07-01	2015-12-31	18,549.00	11-1	t	0.00		Monthly
12568	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3792	2014-03-11	2015-06-30	18,549.00	11-1	t	0.00		Monthly
12576	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3794	2025-01-01	0001-01-01	30,597.00	11-3	t	0.00		Monthly
12577	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3794	2024-06-04	2024-12-31	29,085.00	11-3	t	0.00		Monthly
12578	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3794	2024-01-01	2024-06-03	28,796.00	11-2	t	0.00		Monthly
12579	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3794	2023-01-01	2023-12-31	27,284.00	11-2	t	0.00		Monthly
12580	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3794	2022-01-01	2022-12-31	25,723.00	11-2	t	0.00		Monthly
12581	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3794	2021-06-04	2021-12-31	24,161.00	11-2	t	0.00		Monthly
12582	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3794	2021-01-01	2021-06-03	23,877.00	11-1	t	0.00		Monthly
12583	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3794	2020-01-01	2020-12-31	22,316.00	11-1	t	0.00		Monthly
12584	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3794	2019-01-01	2019-12-31	20,754.00	11-1	t	0.00		Monthly
12585	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3794	2018-06-04	2018-12-31	20,179.00	11-1	t	0.00		Monthly
12586	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3794	2017-01-10	2017-10-30	19,620.00	11-1	t	0.00		Monthly
12587	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3794	2016-01-27	2016-12-15	19,077.00	11-1	t	0.00		Monthly
12588	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3794	2015-08-10	2015-10-08	18,549.00	11-1	t	0.00		Monthly
12592	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3797	2025-01-01	0001-01-01	34,733.00	13-2	t	0.00		Monthly
12593	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3797	2024-02-16	2024-12-31	33,183.00	13-2	t	0.00		Monthly
12594	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3797	2024-01-01	2024-02-15	32,870.00	13-1	t	0.00		Monthly
12595	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3797	2023-01-01	2023-12-31	31,320.00	13-1	t	0.00		Monthly
12596	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3797	2022-08-15	2022-12-31	29,798.00	13-1	t	0.00		Monthly
12597	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3797	2022-01-01	2022-08-14	29,798.00	13-1	t	0.00		Monthly
12598	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3797	2021-01-01	2021-12-31	28,276.00	13-1	t	0.00		Monthly
12599	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3797	2020-11-03	2020-12-31	26,754.00	13-1	t	0.00		Monthly
12508	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3785	2006-09-26	2017-12-31	21,387.00	12-1	t	0.00		Monthly
12509	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3785	2018-01-01	2021-12-31	26,754.00	13-1	t	0.00		Monthly
12510	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3785	2021-01-01	2025-01-01	35,049.00	13-3	t	0.00		Monthly
12548	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3791	2025-01-01	2025-03-17	30,024.00	11-1	t	0.00		Monthly
12549	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3791	2024-01-01	2024-12-31	28,512.00	11-1	t	0.00		Monthly
12550	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3791	2023-01-02	2023-12-31	27,000.00	11-1	t	0.00		Monthly
12551	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / KATANDALA ELEMENTARY SCHOOL	TEACHER I		Permanent	3791	2022-08-22	2022-12-31	25,439.00		t	0.00		Monthly
12552	PRINCETON SCIENCE SCHOOL - HOME OF YOUNG ACHIEVERS	KINDERGARTEN TEACHER		Contractual	3791	2017-06-16	2022-04-30	17,200.00		f	0.00		Monthly
12569	DEPARTMENT OF EDUCATION 	TEACHER I		Permanent	3793	2022-09-01	2024-01-01	28,512.00	11-	t	0.00		Monthly
12570	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3795	2025-01-01	2025-03-17	30,024.00	11-1	t	0.00		Monthly
12571	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3795	2024-02-01	2024-12-31	28,512.00	11-1	t	0.00		Monthly
12572	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / LIBJO ELEMENTARY SCHOOL	TEACHER I		Substitute	3795	2023-02-22	2023-04-21	27,000.00	11-1	t	0.00		Monthly
12573	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / MALIBAYO ELEMENTARY SCHOOL	TEACHER I		Substitute	3795	2022-11-02	2022-12-16	25,439.00	11-1	t	0.00		Monthly
12574	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / MALIBAYO ELEMENTARY SCHOOL	TEACHER I		Substitute	3795	2022-08-22	2022-10-20	25,439.00	11-1	t	0.00		Monthly
12575	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / MALIBAYO ELEMENTARY SCHOOL	TEACHER I		Substitute	3795	2022-02-16	2022-04-14	25,439.00	11-1	t	0.00		Monthly
12589	DEPARTMENT OF EDUCATION  	TEACHER I		Permanent	3796	2000-10-19	2014-01-05	19,940.00	13-1	t	0.00		Monthly
12590	DEPARTMENT OF EDUCATION 	TEACHER II		Permanent	3796	2014-01-06	2014-10-25	19,940.00	13-1	t	0.00		Monthly
12591	DEPARTMENT OF EDUCATION 	TEACHER III		Permanent	3796	2015-10-26	2025-01-01	33,819.00	13-4	t	0.00		Monthly
12604	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3798	2025-01-01	2025-03-17	30,597.00	11-3	t	0.00		Monthly
12605	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3798	2024-06-04	2024-12-31	29,085.00	11-3	t	0.00		Monthly
12606	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3798	2024-01-01	2024-06-03	28,796.00	11-2	t	0.00		Monthly
12607	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3798	2023-01-01	2023-12-31	27,573.00	11-2	t	0.00		Monthly
12608	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3798	2022-01-01	2022-12-31	25,723.00	11-2	t	0.00		Monthly
12609	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TIBIG ELEMENTARY SCHOOL	TEACHER I		Permanent	3798	2021-06-04	2021-12-31	24,161.00	11-2	t	0.00		Monthly
12610	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TIBIG ELEMENTARY SCHOOL	TEACHER I		Permanent	3798	2021-01-01	2021-06-03	23,877.00	11-1	t	0.00		Monthly
12611	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TIBIG ELEMENTARY SCHOOL	TEACHER I		Permanent	3798	2020-01-01	2020-12-31	22,316.00	11-1	t	0.00		Monthly
12612	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TIBIG ELEMENTARY SCHOOL	TEACHER I		Permanent	3798	2019-01-01	2019-12-31	20,754.00	11-1	t	0.00		Monthly
12613	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TIBIG ELEMENTARY SCHOOL	TEACHER I		Permanent	3798	2018-06-04	2018-12-31	20,179.00	11-1	t	0.00		Monthly
12614	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. RITA ELEMENTARY SCHOOL	TEACHER I		Substitute	3798	2017-09-29	2017-10-19	19,620.00	11-1	t	0.00		Monthly
12615	LOCAL SCHOOL BOARD 	LOCAL SCHOOL BOARD TEACHER		Contractual	3798	2014-11-03	2015-05-31	7,000.00		f	0.00		Monthly
12616	MARANATHA CHRISTIAN ACADEMY	ELEMENTARY TEACHER		Contractual	3798	2013-09-01	2013-11-15	4,000.00		f	0.00		Monthly
12617	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / JULIAN A. PASTOR MEMORIAL ELEMENTARY SCHOOL	KINDERGARTEN VOLUNTEER TEACHER		Contractual	3798	2011-06-08	2012-03-30	3,000.00		f	0.00		Monthly
12600	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3797	2020-01-01	2020-11-02	22,316.00	11-1	t	0.00		Monthly
12601	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3797	2019-01-01	2019-12-31	20,754.00	11-1	t	0.00		Monthly
12602	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3797	2018-01-01	2018-12-31	20,179.00	11-1	t	0.00		Monthly
12603	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3797	2017-06-05	2017-12-31	19,620.00	11-1	t	0.00		Monthly
12618	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3800	2025-01-01	0001-01-01	34,421.00	13-1	t	0.00		Monthly
12619	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3800	2024-07-10	2024-12-31	32,870.00	13-1	t	0.00		Monthly
12620	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3800	2024-01-01	2024-06-10	30,705.00	12-1	t	0.00		Monthly
12621	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3800	2023-01-01	2023-12-31	29,165.00	12-1	t	0.00		Monthly
12622	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3800	2022-11-02	2022-12-31	27,608.00	12-1	t	0.00		Monthly
12623	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3800	2022-03-12	2022-11-01	26,901.00	11-6	t	0.00		Monthly
12624	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3800	2022-01-01	2022-11-03	26,600.00	11-5	t	0.00		Monthly
12625	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3800	2021-01-01	2021-12-31	25,038.00	11-5	t	0.00		Monthly
12626	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3800	2020-01-01	2020-12-31	23,477.00	11-5	t	0.00		Monthly
12627	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3800	2019-12-03	2019-12-31	21,915.00	11-5	t	0.00		Monthly
12628	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3800	2019-01-01	2019-11-03	21,619.00	11-4	t	0.00		Monthly
12629	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3800	2018-01-01	2018-12-31	20,963.00	11-4	t	0.00		Monthly
12630	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3800	2017-01-01	2017-12-31	20,326.00	11-4	t	0.00		Monthly
12631	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3800	2016-12-03	2016-12-31	19,709.00	11-4	t	0.00		Monthly
12632	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3800	2016-01-01	2016-11-03	19,496.00	11-3	t	0.00		Monthly
12633	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3800	2013-12-03	2015-12-31	18,922.00	11-3	t	0.00		Monthly
12634	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3800	2012-01-06	2013-11-03	18,735.00	11-2	t	0.00		Monthly
12635	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3800	2011-01-06	2012-05-31	17,318.00	11-2	t	0.00		Monthly
12636	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3800	2010-06-24	2011-05-31	15,900.00	11-2	t	0.00		Monthly
12637	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3800	2010-03-12	2010-06-23	14,483.00	11-2	t	0.00		Monthly
12638	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3800	2009-01-07	2010-03-11	14,198.00	11-1	t	0.00		Monthly
12639	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3800	2008-07-07	2009-06-30	12,026.00	11-1	t	0.00		Monthly
12640	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3800	2007-07-01	2008-06-30	10,933.00	11-1	t	0.00		Monthly
12641	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3800	2007-03-12	2007-06-30	9,939.00	10-1	t	0.00		Monthly
12642	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3799	2025-01-01	0001-01-01	30,024.00	11-1	t	0.00		Monthly
12643	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3799	2024-01-01	2024-12-31	28,512.00	11-1	t	0.00		Monthly
12644	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3799	2023-10-19	2023-12-31	27,000.00	11-1	t	0.00	 	Monthly
12645	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3799	2023-10-18	2023-10-18	27,000.00	11-1	t	0.00		Monthly
12646	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3799	2023-09-06	2023-10-18	27,000.00	11-1	t	0.00		Monthly
12647	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3799	2023-02-02	2023-07-07	27,000.00	11-1	t	0.00		Monthly
12648	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3799	2022-03-09	2022-10-20	25,439.00	11-1	t	0.00		Monthly
12649	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3799	2021-01-04	2021-07-09	23,877.00	11-1	t	0.00		Monthly
12650	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3799	2019-06-18	2019-10-31	20,754.00	11-1	t	0.00		Monthly
12651	DEPARTMENT OF EDUCATION 	TEACHER I		Permanent	3801	2008-11-03	2020-08-31	22,316.00	11-1	t	0.00		Monthly
12652	DPARTMENT OF EDUCATION	TEACHER II		Permanent	3801	2020-09-01	2024-01-01	30,989.00	12-1	t	0.00		Monthly
12653	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3803	2008-12-11	2025-01-01	36,691.00	13-8	t	0.00		Monthly
12654	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3803	1995-10-11	2008-11-11	14,071.00	-3	t	0.00		Monthly
12655	DEPARTMENT OF EDUCATION 	TEACHER I		Permanent	3803	1993-10-11	1995-09-11	4,902.00	11-7	t	0.00		Monthly
12656	DEPARTMENT OF EDUCATION	PROVISIONAL ITEM		Permanent	3803	1992-07-15	1993-09-11	3,102.00	11-	f	0.00		Monthly
12657	DEPARTMENT OF EDUCATION	SUBSTITUTE TEACHER 		Substitute	3803	1991-01-18	1991-02-15	3,102.00		t	0.00		Monthly
12658	DERPARTMENT OF EDUCATION	TEACHER I		Permanent	3805	2020-10-15	2025-01-01	28,786.00	11-2	t	0.00		Monthly
12659	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3806	2024-02-05	2024-02-05	51,304.00	18-	t	0.00		Monthly
12660	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3806	2008-01-11	2024-02-04	391,128.00	13-5	t	0.00		Monthly
12661	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3806	2004-02-10	2008-02-10	139,068.00	13-1	t	0.00		Monthly
12662	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3806	2002-07-17	2004-02-09	119,270.00	13-1	f	0.00		Monthly
12663	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3804	2024-01-01	0001-01-01	34,421.00	13-1	t	0.00		Monthly
12664	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3804	2023-06-16	2023-12-31	32,870.00	13-1	t	0.00		Monthly
12665	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3804	2023-06-16	2023-12-31	31,320.00	13-1	t	0.00		Monthly
12666	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3804	2023-01-01	2023-06-15	28,161.00	11-5	t	0.00		Monthly
12667	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3804	2022-01-01	2022-12-31	26,600.00	11-5	t	0.00		Monthly
12668	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3804	2021-01-01	2021-12-31	25,038.00	11-5	t	0.00		Monthly
12669	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3804	2020-06-19	2020-12-31	23,477.00	11-5	t	0.00		Monthly
12670	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3804	2020-01-01	2020-06-18	23,181.00	11-4	t	0.00		Monthly
12671	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3804	2019-01-01	2019-12-31	21,619.00	11-4	t	0.00		Monthly
12672	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3804	2018-01-01	2018-12-31	20,963.00	11-4	t	0.00		Monthly
12673	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3804	2017-06-19	2017-12-31	20,326.00	11-4	t	0.00		Monthly
12674	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3804	2017-01-01	2017-06-18	20,088.00	11-3	t	0.00		Monthly
12675	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3804	2016-01-01	2016-12-31	19,496.00	11-3	t	0.00		Monthly
12676	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3804	2014-06-19	2015-12-31	18,922.00	11-3	t	0.00		Monthly
12677	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3804	2012-06-01	2014-06-18	18,735.00	11-2	t	0.00		Monthly
12678	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3804	2011-06-19	2012-05-31	17,318.00	11-2	t	0.00		Monthly
12679	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3804	2011-06-01	2011-06-18	17,099.00	11-1	t	0.00		Monthly
12680	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3804	2010-06-24	2011-05-31	15,649.00	11-1	t	0.00		Monthly
12682	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3804	2008-07-01	2009-06-30	12,026.00	10-1	t	0.00		Monthly
12683	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3804	2007-09-17	2008-06-30	10,933.00	10-1	t	0.00		Monthly
12684	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3804	2007-07-25	2007-08-22	9,939.00	10-1	t	0.00		Monthly
12681	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3804	2009-07-01	2010-06-23	14,198.00	11-1	t	0.00		Monthly
12685	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	ADMINISTRATIVE ASSISTANT III		Permanent	3802	2025-01-01	2025-03-18	23,411.00	9-2	t	0.00		Monthly
12686	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	ADMINISTRATIVE ASSISTANT III		Permanent	3802	2024-01-01	2024-12-31	22,404.00	9-2	t	0.00		Monthly
12687	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	ADMINISTRATIVE ASSISTANT  III		Permanent	3802	2023-01-01	2023-12-31	21,388.00	9-2	t	0.00		Monthly
12688	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	ADMINISTRATIVE ASSISTANT III		Permanent	3802	2022-11-27	2022-12-31	20,572.00	9-2	t	0.00		Monthly
12689	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	ADMINISTRATIVE ASSISTANT III		Permanent	3802	2022-01-01	2022-11-26	20,402.00	9-1	t	0.00		Monthly
12690	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	ADMINISTRATIVE ASSISTANT III		Permanent	3802	2021-01-01	2021-12-31	19,593.00	9-1	t	0.00		Monthly
12691	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	ADMINSTRATIVE ASSISTANT III		Permanent	3802	2020-11-15	2020-12-31	18,784.00	9-1	t	0.00		Monthly
12692	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	ADMINISTRATIVE ASSISTANT III		Permanent	3802	2020-01-01	2020-11-14	18,784.00	9-1	t	0.00		Monthly
12693	BATANGAS HEALTH CARE MULTI-PURPOSE COOPERATIVE - JESUS OF NAZARETH	ACCOUNTING CLERK		Permanent	3802	2015-06-16	2019-06-14	10,300.00		t	0.00		Monthly
12694	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / PEDRO S. TOLENTINO MEMORIAL NATIONAL HIGH SCHOOL	ADMINISTRATIVE ASSISTANT III		Permanent	3802	2019-06-17	2019-12-31	17,975.00	9-1	t	0.00		Monthly
12695	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3807	2023-06-16	2025-01-01	34,421.00	13-1	t	0.00		Monthly
12696	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3807	2021-01-04	2023-06-15	27,000.00	11-1	t	0.00		Monthly
12697	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3808	2025-01-01	0001-01-01	34,421.00	13-1	t	0.00		Monthly
12698	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3808	2023-01-01	2024-12-31	31,320.00	13-1	t	0.00		Monthly
12699	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3808	2022-11-22	2022-12-31	29,798.00	13-1	t	0.00		Monthly
12700	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3808	2022-01-01	2022-11-21	28,766.00	12-5	t	0.00		Monthly
12701	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3808	2021-01-01	2021-12-31	27,210.00	12-5	t	0.00		Monthly
12702	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3808	2020-01-01	2020-12-31	25,653.00	12-5	t	0.00		Monthly
12703	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3808	2019-12-21	2019-12-31	24,096.00	12-5	t	0.00		Monthly
12704	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3808	2019-01-01	2019-12-20	23,801.00	12-4	t	0.00		Monthly
12705	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3808	2018-01-01	2018-12-31	22,942.00	12-4	t	0.00		Monthly
12706	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3808	2017-01-01	2017-12-31	22,113.00	12-4	t	0.00		Monthly
12707	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3808	2016-12-20	2016-12-31	21,315.00	12-4	t	0.00		Monthly
12708	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3808	2016-01-01	2016-12-31	21,091.00	12-3	t	0.00		Monthly
12709	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3808	2013-12-21	2015-12-31	20,341.00	12-3	t	0.00		Monthly
12710	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3808	2012-06-01	2013-12-20	20,140.00	12-2	t	0.00		Monthly
12711	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3808	2011-01-06	2012-05-31	18,568.00	12-2	t	0.00		Monthly
12712	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3808	2010-12-21	2011-05-31	16,995.00	12-2	t	0.00		Monthly
12713	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3808	2010-06-24	2010-12-20	16,726.00	12-1	t	0.00		Monthly
12714	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3808	2009-01-07	2010-06-23	15,119.00	12-1	t	0.00		Monthly
12715	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3808	2008-01-07	2009-06-30	12,748.00	11-1	t	0.00		Monthly
12716	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3808	2007-12-20	2008-06-30	11,589.00	11-1	t	0.00		Monthly
12717	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3808	2007-01-07	2007-02-19	10,933.00	10-1	t	0.00		Monthly
12718	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3808	2006-02-27	2007-06-30	9,939.00	10-1	t	0.00		Monthly
12719	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3809	2025-01-01	0001-01-01	34,310.00	12-8	t	0.00		Monthly
12720	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3809	2024-08-01	2024-12-31	32,770.00	12-8	t	0.00		Monthly
12721	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3809	2024-01-01	2024-07-31	32,464.00	12-8	t	0.00		Monthly
12722	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3809	2023-01-01	2023-12-31	30,924.00	12-7	t	0.00		Monthly
12723	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3809	2022-01-01	2022-12-31	29,367.00	12-7	t	0.00		Monthly
12724	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3809	2021-07-15	2021-12-31	27,811.00	12-7	t	0.00		Monthly
12725	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3809	2021-01-01	2021-07-14	27,509.00	12-6	t	0.00		Monthly
12726	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3809	2020-01-01	2020-12-31	25,952.00	12-6	t	0.00		Monthly
12727	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3809	2019-01-01	2019-12-31	24,395.00	12-6	t	0.00		Monthly
12728	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3809	2018-07-15	2018-12-31	23,486.00	12-6	t	0.00		Monthly
12729	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3809	2018-01-01	2018-07-14	23,212.00	12-5	t	0.00		Monthly
12730	DEPARTMENT OF EDUCATION 	TEACHER II		Permanent	3812	2025-01-01	2025-03-18	33,403.00	12-5	t	0.00		Monthly
12731	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3812	2024-01-01	2024-12-31	31,863.00	12-5	t	0.00		Monthly
12732	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3812	2023-01-01	2023-12-31	30,323.00	12-5	t	0.00		Monthly
12733	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3812	2022-01-01	2022-12-31	28,766.00	12-5	t	0.00		Monthly
12734	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3812	2021-10-20	2021-12-31	27,210.00	12-5	t	0.00		Monthly
12735	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3812	2021-01-01	2021-10-19	26,915.00	12-4	t	0.00		Monthly
12736	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3812	2020-01-01	2020-12-31	25,067.00	12-3	t	0.00		Monthly
12737	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3812	2019-01-01	2019-12-31	23,510.00	12-3	t	0.00		Monthly
12738	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3812	2018-01-01	2018-12-31	22,149.00	12-1	t	0.00		Monthly
12739	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3812	2017-01-01	2017-12-31	21,387.00	12-1	t	0.00		Monthly
12740	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3812	2016-01-01	2016-12-31	20,651.00	12-1	t	0.00		Monthly
12741	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3812	2012-06-01	2015-12-31	19,940.00	12-1	t	0.00		Monthly
12742	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3812	2011-06-01	2012-05-31	18,333.00	12-1	t	0.00		Monthly
12743	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3812	2010-06-24	2011-05-31	16,726.00	12-1	t	0.00		Monthly
12744	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3812	2009-10-20	2010-06-23	15,119.00	12-1	t	0.00		Monthly
12745	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3812	2009-07-01	2009-10-19	14,198.00	11-1	t	0.00		Monthly
12746	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3812	2008-07-01	2009-06-30	12,026.00	10-1	t	0.00		Monthly
12747	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3812	2007-07-01	2008-06-30	10,933.00	10-1	t	0.00		Monthly
12748	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3812	2006-07-04	2007-06-30	10,933.00	10-1	t	0.00		Monthly
12794	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3815	2025-01-01	2025-03-18	34,421.00	13-1	t	0.00		Monthly
12795	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3815	2024-10-07	2024-12-31	32,870.00	13-1	t	0.00		Monthly
12796	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3815	2024-01-01	2024-10-26	32,162.00	12-6	t	0.00		Monthly
12797	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3815	2023-01-01	2023-12-31	30,622.00	12-6	t	0.00		Monthly
12798	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3815	2022-12-21	2022-12-31	29,065.00	12-6	t	0.00		Monthly
12799	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3815	2022-01-01	2022-12-20	28,766.00	12-5	t	0.00		Monthly
12800	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3815	2021-01-01	2021-12-31	27,210.00	12-5	t	0.00		Monthly
12801	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3815	2020-01-01	2020-12-31	25,653.00	12-5	t	0.00		Monthly
12802	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3815	2019-12-21	2019-12-31	24,096.00	12-5	t	0.00		Monthly
12803	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3815	2019-01-01	2019-12-20	23,801.00	12-4	t	0.00		Monthly
12804	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3815	2018-01-01	2018-12-31	22,942.00	12-4	t	0.00		Monthly
12805	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3815	2017-01-01	2017-12-31	22,113.00	12-4	t	0.00		Monthly
12806	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3815	2016-12-21	2016-12-31	21,315.00	12-4	t	0.00		Monthly
12807	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3815	2016-01-01	2016-12-20	21,091.00	12-3	t	0.00		Monthly
12808	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3815	2013-12-22	2015-12-31	20,341.00	12-3	t	0.00		Monthly
12809	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3815	2012-06-01	2013-12-21	20,140.00	12-2	t	0.00		Monthly
12810	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3815	2011-06-01	2012-05-31	18,568.00	12-2	t	0.00		Monthly
12811	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3815	2010-12-22	2011-05-31	16,995.00	12-1	t	0.00		Monthly
12812	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3815	2010-06-24	2010-12-21	16,726.00	12-1	t	0.00		Monthly
12813	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3815	2009-07-01	2010-06-23	15,119.00	12-1	t	0.00		Monthly
12814	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3815	2008-07-01	2009-06-30	12,748.00	12-1	t	0.00		Monthly
12815	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3815	2007-12-21	2008-06-30	11,589.00	12-1	t	0.00		Monthly
12816	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3815	2007-07-01	2007-12-20	10,933.00	11-1	t	0.00		Monthly
12817	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3815	2005-03-01	2007-06-30	9,939.00	10-1	t	0.00		Monthly
12847	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	ADMINISTRATIVE OFFICER II		Permanent	3816	2025-01-01	2025-03-18	30,308.00	11-2	t	0.00		Monthly
12848	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	ADMINISTRATIVE OFFICER II		Permanent	3816	2024-01-01	2024-12-31	28,796.00	11-2	t	0.00		Monthly
12849	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	ADMINISTRATIVE OFFICER II		Permanent	3816	2023-10-12	2023-12-31	27,284.00	11-2	t	0.00		Monthly
13005	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3820	2012-08-08	2012-09-06	13,333.00	11-1	t	0.00		Monthly
12749	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3813	2002-08-19	2025-01-01	30,278.00	11-7	t	0.00		Monthly
12844	DEPARTMENT OF EDUCATION 	TEACHER I		Permanent	3814	1995-06-15	2016-06-12	20,362.00	11-7	t	0.00		Monthly
12845	DEPARTMENT OF EDUCATION 	TEACHER II		Permanent	3814	2016-06-13	2024-08-11	29,732.00	12-3	t	0.00		Monthly
12846	DEPARTMENT OF EDUCATION 	TEACHER III		Permanent	3814	2024-08-12	2024-12-21	413,053.00	13-	t	0.00		Monthly
12862	DEPARTMENT OF EDUCATION	ADMINISTRATIVE OFFICER II		Permanent	3822	2020-10-12	2025-01-01	30,308.00	11-2	t	0.00		Monthly
12913	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3824	2005-06-08	2025-01-01	32,922.00	13-7	t	0.00		Monthly
12914	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3824	2002-07-25	2005-06-07	10,535.00	12-1	t	0.00		Monthly
12915	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3824	1999-06-15	2002-07-24	9,939.00	12-	t	0.00		Monthly
12750	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3809	2017-01-01	2017-12-31	22,361.00	12-5	t	0.00		Monthly
12751	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3809	2016-01-01	2016-12-31	21,540.00	12-5	t	0.00		Monthly
12752	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3809	2015-07-15	2015-12-31	20,750.00	12-5	t	0.00		Monthly
12753	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3809	2012-07-15	2015-07-14	20,545.00	12-4	t	0.00		Monthly
12754	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3809	2012-06-01	2012-07-14	20,341.00	12-3	t	0.00		Monthly
12755	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3809	2011-06-01	2012-05-31	18,805.00	12-3	t	0.00		Monthly
12756	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3809	2010-06-24	2011-05-31	17,269.00	12-3	t	0.00		Monthly
12757	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3809	2009-07-15	2010-06-23	15,733.00	12-3	t	0.00		Monthly
12758	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3809	2009-07-01	2009-07-14	15,422.00	12-2	t	0.00		Monthly
12759	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3809	2008-07-01	2009-06-30	13,066.00	11-2	t	0.00		Monthly
12760	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3809	2007-07-01	2008-06-30	11,878.00	11-1	t	0.00		Monthly
12761	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3809	2007-01-01	2007-06-30	10,798.00	11-1	t	0.00		Monthly
12762	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3809	2003-07-15	2006-12-31	10,535.00	11-1	t	0.00		Monthly
12763	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3809	2001-07-01	2003-07-14	9,939.00	10-1	t	0.00		Monthly
12764	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3809	2000-01-01	2001-06-30	9,466.00	10-1	t	0.00		Monthly
12765	DEPARTMENT OF EDUCATION	ELEMENTARY GRADE TEACHER 		Permanent	3809	1997-11-01	1999-12-31	8,605.00	10-1	t	0.00		Monthly
12768	DEPARTMENT OF EDUCATION	ELEMENTARY GRADE TEACHER 		Permanent	3809	1995-06-05	1995-12-31	4,902.00	10-1	t	0.00		Monthly
12769	DEPARTMENT OF EDUCATION	ELEMENTARY GRADE TEACHER		Substitute	3809	1995-01-09	1995-03-03	4,902.00	10-1	t	0.00		Monthly
12766	DEPARTMENT OF EDUCATION	ELEMENTARY GRADE TEACHER 		Permanent	3809	1997-01-01	1997-10-31	7,309.00	10-1	t	0.00		Monthly
12767	DEPARTMENT OF EDUCATION	ELEMENTARY GRADE TEACHER 		Permanent	3809	1996-01-01	1996-12-31	6,013.00	10-1	t	0.00		Monthly
12770	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3810	2025-01-01	0001-01-01	34,421.00	13-1	t	0.00		Monthly
12771	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3810	2024-01-01	2024-12-23	32,870.00	13-1	t	0.00		Monthly
12772	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3810	2023-01-01	2023-12-31	31,320.00	13-1	t	0.00		Monthly
12773	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3810	2022-12-02	2022-12-31	29,798.00	13-1	t	0.00		Monthly
12774	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3810	2022-01-01	2022-12-01	27,608.00	12-1	t	0.00		Monthly
12775	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3810	2021-09-22	2021-12-31	26,052.00	12-1	t	0.00		Monthly
12776	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3810	2021-06-13	2021-09-21	25,339.00	11-6	t	0.00		Monthly
12777	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3810	2021-01-01	2021-06-12	25,038.00	11-5	t	0.00		Monthly
12778	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3810	2020-01-01	2020-12-31	23,447.00	11-5	t	0.00		Monthly
12779	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3810	2019-01-01	2019-12-31	21,915.00	11-5	t	0.00		Monthly
12780	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3810	2018-06-13	2018-12-31	21,231.00	11-4	t	0.00		Monthly
12781	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3810	2018-01-01	2018-06-12	20,963.00	11-3	t	0.00		Monthly
12782	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3810	2017-01-01	2017-12-31	20,326.00	11-3	t	0.00		Monthly
12783	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3810	2016-01-01	2016-12-31	19,709.00	11-3	t	0.00		Monthly
12784	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3810	2015-06-13	2015-12-31	19,111.00	11-2	t	0.00		Monthly
12785	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3810	2012-06-01	2012-06-13	18,922.00	11-2	t	0.00		Monthly
12786	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3810	2012-06-01	2012-06-13	18,735.00	11-2	t	0.00		Monthly
12787	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3810	2011-06-01	2012-05-31	17,318.00	11-2	t	0.00		Monthly
12788	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3810	2010-06-24	2011-05-31	15,900.00	11-2	t	0.00		Monthly
12789	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3810	2009-07-01	2010-06-23	14,483.00	11-2	t	0.00		Monthly
12790	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3810	2009-06-13	2009-06-30	12,328.00	10-2	t	0.00		Monthly
12791	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3810	2008-07-01	2009-06-12	12,026.00	10-1	t	0.00		Monthly
12792	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3810	2007-07-01	2008-06-30	10,933.00	10-1	t	0.00		Monthly
12793	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3810	2006-06-13	2007-06-30	9,939.00	10-1	t	0.00		Monthly
12818	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3811	2025-01-01	0001-01-01	34,421.00	13-1	t	0.00		Monthly
12819	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3811	2024-01-01	2024-12-31	32,870.00	13-1	t	0.00		Monthly
12820	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3811	2023-01-01	2023-12-31	31,320.00	13-1	t	0.00		Monthly
12821	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3811	2022-10-10	2022-12-31	29,798.00	13-1	t	0.00		Monthly
12822	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3811	2022-01-01	2022-10-09	28,766.00	12-5	t	0.00		Monthly
12823	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3811	2021-04-16	2021-12-31	27,210.00	12-5	t	0.00		Monthly
12824	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3811	2021-01-01	2021-04-15	26,915.00	12-4	t	0.00		Monthly
12825	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3811	2020-01-01	2020-12-31	25,358.00	12-4	t	0.00		Monthly
12826	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3811	2019-01-01	2019-12-31	23,801.00	12-4	t	0.00		Monthly
12827	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3811	2018-01-01	2018-12-31	22,942.00	12-4	t	0.00		Monthly
12828	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3811	2017-11-24	2017-12-31	22,113.00	12-4	t	0.00		Monthly
12829	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3811	2017-01-01	2017-11-23	21,868.00	12-3	t	0.00		Monthly
12830	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3811	2016-01-01	2016-12-31	21,091.00	12-3	t	0.00		Monthly
12831	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3811	2014-11-24	2015-12-31	20,341.00	12-3	t	0.00		Monthly
12832	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3811	2012-06-01	2014-11-23	20,140.00	12-2	t	0.00		Monthly
12833	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3811	2011-11-24	2012-05-31	18,568.00	12-2	t	0.00		Monthly
12834	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3811	2011-06-01	2011-11-23	18,333.00	12-1	t	0.00		Monthly
12835	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3811	2010-06-24	2011-05-31	16,726.00	12-1	t	0.00		Monthly
12836	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3811	2009-07-01	2010-06-23	15,119.00	12-1	t	0.00		Monthly
12837	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3811	2008-11-24	2009-06-30	12,748.00	11-1	t	0.00		Monthly
12838	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3811	2008-07-01	2008-11-23	12,635.00	10-1	t	0.00		Monthly
12839	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3811	2008-06-19	2008-06-30	11,486.00	10-1	t	0.00		Monthly
12840	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3811	2007-07-01	2008-06-18	11,207.00	10-1	t	0.00		Monthly
12841	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3811	2006-01-01	2007-06-30	10,188.00	10-1	t	0.00		Monthly
12842	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3811	2002-10-16	2005-12-31	9,939.00	10-1	t	0.00		Monthly
12843	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3811	2002-06-18	2002-06-30	9,939.00	10-1	t	0.00		Monthly
12863	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3817	2025-01-01	0001-01-01	33,403.00	12-5	t	0.00		Monthly
12864	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3817	2024-01-01	2024-12-31	31,863.00	12-5	t	0.00		Monthly
12865	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3817	2023-01-01	2023-12-31	30,323.00	12-5	t	0.00		Monthly
12866	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3817	2022-01-01	2022-12-31	28,766.00	12-5	t	0.00		Monthly
12867	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3817	2021-01-01	2021-12-31	27,210.00	12-5	t	0.00		Monthly
12868	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3817	2020-07-01	2020-12-31	25,653.00	12-5	t	0.00		Monthly
12869	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3817	2020-01-01	2020-06-30	25,358.00	12-4	t	0.00		Monthly
12870	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3817	2019-01-01	2019-12-31	23,801.00	12-4	t	0.00		Monthly
12871	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3817	2018-01-01	2018-12-31	22,942.00	12-4	t	0.00		Monthly
12872	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3817	2017-07-01	2017-12-31	22,113.00	12-4	t	0.00		Monthly
12873	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3817	2017-01-01	2017-06-30	21,868.00	12-3	t	0.00		Monthly
12874	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3817	2016-01-01	2016-12-31	21,091.00	12-3	t	0.00		Monthly
12875	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3817	2014-07-01	2015-12-31	20,341.00	12-3	t	0.00		Monthly
12876	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3817	2013-10-10	2014-06-30	20,140.00	12-2	t	0.00		Monthly
12877	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3817	2013-09-10	2013-10-09	20,140.00	12-2	t	0.00		Monthly
12878	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3817	2012-06-01	2013-09-09	20,140.00	12-2	t	0.00		Monthly
12879	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3817	2011-07-02	2012-05-31	18,568.00	12-2	t	0.00		Monthly
12880	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3817	2011-06-01	2011-07-01	18,333.00	12-1	t	0.00		Monthly
12881	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3817	2010-06-24	2011-05-31	16,726.00	12-1	t	0.00		Monthly
12882	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3817	2009-07-01	2010-06-23	15,119.00	12-1	t	0.00		Monthly
12883	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3817	2008-10-26	2009-06-30	12,748.00	11-1	t	0.00		Monthly
12884	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3817	2008-09-26	2008-10-25	12,748.00	11-1	t	0.00		Monthly
12885	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3817	2008-07-01	2008-09-25	12,748.00	11-1	t	0.00		Monthly
12886	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3817	2008-01-01	2008-06-30	11,207.00	10-2	t	0.00		Monthly
12887	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3817	2007-07-01	2007-12-31	10,933.00	10-1	t	0.00		Monthly
12888	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3817	2004-08-16	2007-06-30	9,939.00	10-1	t	0.00		Monthly
12916	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3818	2025-01-01	0001-01-01	36,022.00	13-6	t	0.00		Monthly
12917	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3818	2024-01-01	2024-12-31	34,472.00	13-6	t	0.00		Monthly
12918	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3818	2023-01-01	2023-12-31	32,922.00	13-6	t	0.00		Monthly
12919	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3818	2022-12-06	2022-12-31	31,400.00	13-6	t	0.00		Monthly
12920	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3818	2022-01-01	2022-12-05	31,072.00	13-5	t	0.00		Monthly
12921	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3818	2021-01-01	2021-12-31	29,550.00	13-5	t	0.00		Monthly
12922	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3818	2020-01-01	2020-12-31	28,028.00	13-5	t	0.00		Monthly
12923	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3818	2019-12-06	2019-12-31	26,506.00	13-5	t	0.00		Monthly
12924	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3818	2019-01-01	2019-12-05	26,181.00	13-4	t	0.00		Monthly
12925	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3818	2018-01-01	2018-12-31	25,091.00	13-4	t	0.00		Monthly
12926	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3818	2017-01-01	2017-12-31	24,047.00	13-4	t	0.00		Monthly
12927	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3818	2016-12-06	2016-12-31	23,045.00	13-4	t	0.00		Monthly
12928	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3818	2016-01-01	2016-12-05	22,804.00	13-3	t	0.00		Monthly
12929	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3818	2013-12-07	2015-12-31	27,867.00	13-3	t	0.00		Monthly
12930	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3818	2012-06-01	2013-12-06	21,650.00	13-2	t	0.00		Monthly
12931	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3818	2011-06-01	2012-05-31	19,908.00	13-2	t	0.00		Monthly
12932	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3818	2010-12-07	2011-05-31	18,166.00	13-2	t	0.00		Monthly
12933	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3818	2010-06-24	2010-12-06	17,880.00	13-1	t	0.00		Monthly
12934	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3818	2009-07-01	2010-06-23	16,101.00	13-1	t	0.00		Monthly
12935	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3818	2008-07-01	2009-06-30	13,512.00	12-1	t	0.00		Monthly
12936	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3818	2007-12-06	2008-06-30	12,284.00	12-1	t	0.00		Monthly
12937	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3818	2007-07-01	2007-12-05	11,589.00	11-1	t	0.00		Monthly
12939	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3818	2001-07-01	2004-07-01	9,939.00	10-1	t	0.00		Monthly
12940	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3818	2000-10-02	2001-06-30	9,466.00	10-1	t	0.00		Monthly
12938	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3818	2004-07-02	2007-06-30	10,535.00	11-1	t	0.00		Monthly
12850	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	ADMINISTRATIVE OFFICER II		Permanent	3816	2023-01-01	2023-10-11	27,000.00	11-1	t	0.00		Monthly
12851	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	ADMINISTRATIVE OFFICER II		Permanent	3816	2022-01-01	2022-12-31	25,439.00	11-1	t	0.00		Monthly
12852	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	ADMINISTRATIVE OFFICER II		Permanent	3816	2021-01-01	2021-12-31	23,877.00	11-1	t	0.00		Monthly
12853	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	ADMINISTRATIVE OFFICER II		Permanent	3816	2020-10-12	2020-12-31	22,316.00	11-1	t	0.00		Monthly
12854	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TABANGAO INTEGRATED SCHOOL	SENIOR BOOKKEEPER		Permanent	3816	2020-07-01	2020-10-11	19,100.00	9-3	t	0.00		Monthly
12855	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TABANGAO INTEGRATED SCHOOL	SENIOR BOOKKEEPER		Permanent	3816	2020-01-01	2020-06-30	18,941.00	9-2	t	0.00		Monthly
12856	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TABANGAO INTEGRATED SCHOOL	SENIOR BOOKKEEPER		Permanent	3816	2019-01-01	2019-12-31	18,125.00	9-2	t	0.00		Monthly
12857	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TABANGAO INTEGRATED SCHOOL	SENIOR BOOKKEEPER		Permanent	3816	2018-01-01	2018-12-31	17,627.00	9-2	t	0.00		Monthly
12858	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TABANGAO INTEGRATED SCHOOL	SENIOR BOOKKEEPER		Permanent	3816	2017-07-01	2017-12-31	17,142.00	9-2	t	0.00		Monthly
12859	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TABANGAO INTEGRATED SCHOOL	SENIOR BOOKKEEPER		Permanent	3816	2017-01-01	2017-06-30	16,986.00	9-1	t	0.00		Monthly
12860	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TABANGAO INTEGRATED SCHOOL	SENIOR BOOKKEEPER		Permanent	3816	2016-01-01	2016-12-31	16,512.00	9-1	t	0.00		Monthly
12861	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TABANGAO INTEGRATED SCHOOL	SENIOR BOOKKEEPER		Permanent	3816	2014-07-01	2015-12-31	16,051.00	9-1	t	0.00		Monthly
12889	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3823	2025-01-01	2025-03-18	32,245.00	12-1	t	0.00		Monthly
12890	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3823	2024-01-01	2024-12-31	30,705.00	12-1	t	0.00		Monthly
12891	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3823	2023-09-06	2023-12-31	29,165.00	12-1	t	0.00		Monthly
12892	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3823	2023-06-10	2023-09-05	28,462.00	11-6	t	0.00		Monthly
12893	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3823	2023-01-01	2023-06-09	28,161.00	11-5	t	0.00		Monthly
12894	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3823	2022-01-01	2022-12-31	26,600.00	11-5	t	0.00		Monthly
12895	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3823	2021-01-01	2021-12-31	25,038.00	11-5	t	0.00		Monthly
12896	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3823	2020-06-10	2020-12-31	23,477.00	11-5	t	0.00		Monthly
12897	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3823	2020-01-01	2020-06-09	23,181.00	11-4	t	0.00		Monthly
12898	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3823	2019-01-01	2019-12-31	21,619.00	11-4	t	0.00		Monthly
12899	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3823	2018-01-01	2018-12-31	20,963.00	11-4	t	0.00		Monthly
12900	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3823	2017-06-11	2017-12-31	20,326.00	11-4	t	0.00		Monthly
12901	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3823	2017-06-11	2017-12-31	20,326.00	11-4	t	0.00		Monthly
12902	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3823	2017-01-01	2017-06-10	20,088.00	11-3	t	0.00		Monthly
12903	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3823	2016-01-01	2016-12-31	19,496.00	11-3	t	0.00		Monthly
12904	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3823	2016-01-01	2016-12-31	19,496.00	11-3	t	0.00		Monthly
12905	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3823	2014-06-11	2015-12-31	18,922.00	11-3	t	0.00		Monthly
12906	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3823	2012-06-01	2014-06-10	18,735.00	11-2	t	0.00		Monthly
12907	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3823	2011-06-11	2012-05-31	17,318.00	11-2	t	0.00		Monthly
12908	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3823	2011-06-01	2011-06-10	17,099.00	11-2	t	0.00		Monthly
12909	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3823	2010-06-24	2011-05-31	15,649.00	11-1	t	0.00		Monthly
12910	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3823	2009-07-01	2010-06-23	14,198.00	11-1	t	0.00		Monthly
12911	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3823	2008-07-01	2009-06-30	12,206.00	10-1	t	0.00		Monthly
12912	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3823	2008-06-10	2008-06-30	10,933.00	10-1	t	0.00		Monthly
12941	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3825	2025-01-01	2025-03-19	34,004.00	12-7	t	0.00		Monthly
12942	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3825	2024-01-01	2024-12-31	32,464.00	12-7	t	0.00		Monthly
12943	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3825	2023-07-12	2023-12-31	30,924.00	12-7	t	0.00		Monthly
12944	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3825	2023-01-01	2023-07-11	30,622.00	12-6	t	0.00		Monthly
12945	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3825	2022-01-01	2022-12-31	29,065.00	12-6	t	0.00		Monthly
12946	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3825	2021-01-01	2021-12-31	27,509.00	12-6	t	0.00		Monthly
12947	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3825	2020-07-12	2020-12-31	25,950.02	12-6	t	0.00		Monthly
12948	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3825	2020-01-01	2020-07-11	25,653.00	12-5	t	0.00		Monthly
12949	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3825	2019-01-01	2019-12-31	24,096.00	12-5	t	0.00		Monthly
12950	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3825	2018-01-01	2018-12-31	23,212.00	12-5	t	0.00		Monthly
12951	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3825	2017-07-12	2017-12-31	22,361.00	12-5	t	0.00		Monthly
12952	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3825	2017-01-01	2017-07-11	22,113.00	12-4	t	0.00		Monthly
12953	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3825	2016-01-01	2016-12-31	21,315.00	12-4	t	0.00		Monthly
12954	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3825	2014-07-13	2015-12-31	20,545.00	12-4	t	0.00		Monthly
12955	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3825	2012-06-01	2014-07-12	20,341.00	12-3	t	0.00		Monthly
12956	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3825	2011-07-13	2012-05-31	18,805.00	12-3	t	0.00		Monthly
12957	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3819	2025-01-01	0001-01-01	60,394.00	19-6	t	0.00		Monthly
12958	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3819	2024-01-01	2024-12-31	57,878.00	19-6	t	0.00		Monthly
12959	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3819	2023-01-01	2023-12-31	55,174.00	19-6	t	0.00		Monthly
12960	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3819	2022-08-01	2022-12-31	53,652.00	19-6	t	0.00		Monthly
12961	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3819	2022-01-01	2022-07-31	52,864.00	19-5	t	0.00		Monthly
12962	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3819	2021-01-01	2021-12-31	51,342.00	19-5	t	0.00		Monthly
12963	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3819	2020-01-01	2020-12-31	49,820.00	19-5	t	0.00		Monthly
12964	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3819	2019-08-01	2019-12-31	48,298.00	19-5	t	0.00		Monthly
12965	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3819	2019-01-01	2019-07-31	47,522.00	19-4	t	0.00		Monthly
12966	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3819	2018-01-01	2018-12-31	44,020.00	19-4	t	0.00		Monthly
12967	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3819	2017-01-01	2017-12-31	40,776.00	19-4	t	0.00		Monthly
12968	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3819	2016-08-01	2016-12-31	37,771.00	19-4	t	0.00		Monthly
12969	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3819	2016-01-01	2016-07-31	34,608.00	19-3	t	0.00		Monthly
12970	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3819	2012-06-01	2015-12-31	34,231.00	19-2	t	0.00		Monthly
12971	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3819	2011-06-01	2012-05-31	30,880.00	19-2	t	0.00		Monthly
12972	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3819	2010-08-01	2011-05-31	27,528.00	19-2	t	0.00		Monthly
12973	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3819	2010-06-24	2010-07-31	27,088.00	19-1	t	0.00		Monthly
12974	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3819	2009-07-01	2010-06-23	23,703.00	19-1	t	0.00		Monthly
12975	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3819	2008-07-01	2009-06-30	18,082.00	17-1	t	0.00		Monthly
12976	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3819	2007-08-01	2008-06-30	16,438.00	17-1	t	0.00		Monthly
12977	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3819	2007-07-01	2007-07-31	15,508.00	16-1	t	0.00		Monthly
12978	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3819	2005-09-19	2007-06-30	14,098.00	16-1	t	0.00		Monthly
12979	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3819	2003-09-15	2005-09-18	10,308.00	12-1	t	0.00		Monthly
12980	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3819	2001-11-19	2003-09-14	10,535.00	11-1	t	0.00		Monthly
12981	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3819	2001-07-01	2001-11-18	9,939.00	10-1	t	0.00		Monthly
12982	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3819	1999-11-01	2001-06-30	9,466.00	10-1	t	0.00		Monthly
12983	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3819	1997-11-01	1999-12-31	8,605.00	10-1	t	0.00		Monthly
12984	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3819	1997-01-01	1997-10-31	7,309.00	10-1	t	0.00		Monthly
12985	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3819	1996-01-10	1996-12-31	6,013.00	10-1	t	0.00		Monthly
12986	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3820	2025-01-01	0001-01-01	34,421.00	13-1	t	0.00		Monthly
12987	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3820	2024-10-07	2024-12-31	32,870.00	13-1	t	0.00		Monthly
12988	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3820	2024-01-01	2024-10-06	30,705.00	12-1	t	0.00		Monthly
12989	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3820	2023-01-01	2023-12-31	29,165.00	12-1	t	0.00		Monthly
12990	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3820	2022-10-12	2022-12-31	27,608.00	12-1	t	0.00		Monthly
12991	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3820	2022-01-04	2022-10-11	26,304.00	11-4	t	0.00		Monthly
12992	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3820	2022-01-01	2022-01-03	26,012.00	11-3	t	0.00		Monthly
12993	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3820	2021-01-01	2021-12-31	24,450.00	11-3	t	0.00		Monthly
12994	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3820	2020-01-01	2020-12-31	22,889.00	11-3	t	0.00		Monthly
12995	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3820	2019-01-04	2019-12-31	21,327.00	11-3	t	0.00		Monthly
12996	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3820	2019-01-01	2019-01-03	21,038.00	11-2	t	0.00		Monthly
12997	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3820	2018-01-01	2018-12-31	20,437.00	11-2	t	0.00		Monthly
12998	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3820	2017-01-01	2017-12-31	19,853.00	11-2	t	0.00		Monthly
12999	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3820	2016-01-04	2016-12-31	19,286.00	11-2	t	0.00		Monthly
13000	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3820	2016-01-01	2016-01-03	19,077.00	11-1	t	0.00		Monthly
13001	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3820	2013-01-24	2015-12-31	18,549.00	11-1	t	0.00		Monthly
13002	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3820	2013-01-23	2013-01-23	18,549.00	11-1	t	0.00		Monthly
13003	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3820	2013-01-04	2013-01-22	18,549.00	11-1	t	0.00		Monthly
13004	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3820	2012-09-07	2013-01-03	13,333.00	11-1	t	0.00		Monthly
13006	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3820	2011-04-01	2012-08-07	13,333.00	11-1	t	0.00		Monthly
13007	DEPARTMENT OF EDUCATION	VOLUNTEER PRE-ELEMENTARY TEACHER 		Contractual	3820	2009-06-04	2011-03-31	3,000.00		f	0.00		Monthly
13008	DEPARTMENT OF EDUCATION	CLASSROOM TEACHER 		Contractual	3820	2006-04-15	2008-04-05	4,000.00		t	0.00		Monthly
13009	DEPARTMENT OF EDUCATION	SUBSTITUTE FACULTY		Contractual	3820	2006-01-26	2006-03-26	13,000.00		t	0.00		Monthly
13010	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3821	2025-01-01	0001-01-01	34,421.00	13-1	t	0.00		Monthly
13011	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3821	2024-08-01	2024-12-31	32,870.00	13-1	t	0.00		Monthly
13012	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3821	2024-01-01	2024-07-31	30,705.00	12-1	t	0.00		Monthly
13013	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3821	2023-01-01	2023-12-31	29,165.00	12-1	t	0.00		Monthly
13014	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3821	2022-11-02	2022-12-31	27,608.00	12-1	t	0.00		Monthly
13016	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3821	2022-01-01	2022-08-05	26,600.00	11-5	t	0.00		Monthly
13017	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3821	2021-01-01	2021-12-31	25,038.00	11-5	t	0.00		Monthly
13018	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3821	2020-01-01	2020-12-31	23,477.00	11-5	t	0.00		Monthly
13019	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3821	2019-08-06	2019-12-31	21,915.00	11-5	t	0.00		Monthly
13020	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3821	2019-01-01	2019-08-05	21,619.00	11-4	t	0.00		Monthly
13021	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3821	2018-01-01	2018-12-31	20,963.00	11-4	t	0.00		Monthly
13022	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3821	2017-01-01	2017-12-31	20,326.00	11-4	t	0.00		Monthly
13023	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3821	2016-08-06	2016-12-31	19,111.00	11-4	t	0.00		Monthly
13024	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3821	2016-01-01	2016-08-05	19,496.00	11-3	t	0.00		Monthly
13025	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3821	2013-08-07	2015-12-31	18,922.00	11-3	t	0.00		Monthly
13026	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3821	2012-06-01	2013-08-06	18,735.00	11-2	t	0.00		Monthly
13027	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3821	2011-06-01	2012-05-31	17,318.00	11-2	t	0.00		Monthly
13028	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3821	2010-08-07	2011-05-31	15,900.00	11-2	t	0.00		Monthly
13029	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3821	2010-06-24	2010-08-06	15,649.00	11-1	t	0.00		Monthly
13030	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3821	2009-07-01	2010-06-23	14,198.00	11-1	t	0.00		Monthly
13031	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3821	2008-07-01	2009-06-30	12,026.00	11-1	t	0.00		Monthly
13032	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3821	2007-08-06	2008-06-30	10,933.00	11-1	t	0.00		Monthly
13033	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3821	2004-08-10	2004-08-31	9,939.00	10-1	t	0.00		Monthly
13015	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3821	2022-08-06	2022-11-01	26,901.00	11-6	t	0.00		Monthly
13034	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3825	2011-06-01	2011-07-12	18,568.00	12-3	t	0.00		Monthly
13035	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3825	2010-06-24	2011-05-31	16,995.00	12-2	t	0.00		Monthly
13036	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3825	2009-07-01	2010-06-23	15,422.00	12-2	t	0.00		Monthly
13037	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3825	2008-07-13	2009-06-30	13,066.00	11-2	t	0.00		Monthly
13038	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3825	2008-07-01	2008-07-12	12,748.00	11-1	t	0.00		Monthly
13039	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3825	2007-07-01	2008-06-30	11,589.00	11-1	t	0.00		Monthly
13040	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3825	2005-07-12	2007-06-30	10,535.00	11-1	t	0.00		Monthly
13041	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3825	2004-01-01	2005-07-11	10,442.00	10-1	t	0.00		Monthly
13042	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3825	2002-01-01	2003-11-30	10,188.00	10-1	t	0.00		Monthly
13043	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3825	2001-07-01	2001-12-31	9,939.00	10-1	t	0.00		Monthly
13044	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3825	2000-01-01	2001-06-30	9,466.00	10-1	t	0.00		Monthly
13045	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3825	1997-11-01	1999-12-31	8,605.00	10-1	t	0.00		Monthly
13046	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3825	1997-06-04	1997-10-31	7,309.00	10-1	t	0.00		Monthly
13047	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3829	2025-01-01	2025-03-19	34,004.00	12-7	t	0.00		Monthly
13048	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3829	2024-02-06	2024-12-31	30,924.00	12-7	t	0.00		Monthly
13049	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3829	2024-01-01	2024-05-05	32,162.00	12-6	t	0.00		Monthly
13050	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3829	2023-01-01	2023-12-31	30,622.00	12-6	t	0.00		Monthly
13051	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3829	2022-01-01	2022-12-31	29,065.00	12-6	t	0.00		Monthly
13052	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3829	2021-02-06	2021-12-31	27,509.00	12-6	t	0.00		Monthly
13053	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3829	2021-01-01	2021-02-05	27,210.00	12-5	t	0.00		Monthly
13054	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3829	2020-01-01	2020-12-31	25,653.00	12-5	t	0.00		Monthly
13055	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3829	2019-01-01	2019-12-31	24,096.00	12-5	t	0.00		Monthly
13056	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3829	2018-02-06	2018-12-31	23,212.00	12-5	t	0.00		Monthly
13075	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3826	2025-01-01	0001-01-01	33,403.00	12-5	t	0.00		Monthly
13076	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3826	2024-01-01	2024-12-31	31,863.00	12-5	t	0.00		Monthly
13057	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3829	2018-01-01	2018-02-05	22,942.00	12-4	t	0.00		Monthly
13058	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3829	2017-01-01	2017-12-31	22,113.00	12-4	t	0.00		Monthly
13059	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3829	2016-01-01	2016-12-31	21,315.00	12-4	t	0.00		Monthly
13060	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3829	2015-02-06	2015-12-31	20,545.00	12-4	t	0.00		Monthly
13061	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3829	2012-06-01	2015-02-05	20,341.00	12-3	t	0.00		Monthly
13062	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3829	2012-02-06	2012-05-31	18,805.00	12-3	t	0.00		Monthly
13063	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3829	2011-06-01	2012-02-05	18,568.00	12-2	t	0.00		Monthly
13064	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3829	2010-06-24	2011-05-31	16,995.00	12-2	t	0.00		Monthly
13065	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3829	2009-07-01	2010-06-23	15,422.00	12-1	t	0.00		Monthly
13066	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3829	2009-02-06	2009-06-30	13,066.00	11-2	t	0.00		Monthly
13067	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3829	2008-07-01	2009-02-05	12,748.00	11-1	t	0.00		Monthly
13068	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3829	2007-07-01	2008-06-30	11,589.00	11-1	t	0.00		Monthly
13069	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3829	2006-02-06	2007-06-30	10,535.00	11-1	t	0.00		Monthly
13070	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3829	2006-01-01	2006-02-05	10,442.00	10-1	t	0.00		Monthly
13071	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3829	2005-01-01	2005-12-31	10,188.00	10-1	t	0.00		Monthly
13072	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3829	2001-07-01	2004-12-31	9,939.00	10-1	t	0.00		Monthly
13073	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3829	2001-01-01	2001-06-30	9,466.00	10-1	t	0.00		Monthly
13074	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3829	1999-10-25	1999-12-31	8,605.00	10-1	t	0.00		Monthly
13102	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3831	2025-02-01	2025-03-19	35,049.00	13-3	t	0.00		Monthly
13103	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3831	2025-01-01	2025-01-31	34,733.00	13-2	t	0.00		Monthly
13104	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3831	2024-01-01	2024-12-31	32,599.00	13-2	t	0.00		Monthly
13105	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3831	2023-01-01	2023-12-31	31,633.00	13-2	t	0.00		Monthly
13106	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3831	2022-02-01	2022-12-31	30,111.00	13-2	t	0.00		Monthly
13107	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3831	2022-01-01	2022-01-31	29,798.00	13-1	t	0.00		Monthly
13108	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3831	2021-01-01	2021-12-31	28,276.00	13-1	t	0.00		Monthly
13109	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3831	2020-01-01	2020-12-31	26,754.00	13-1	t	0.00		Monthly
13110	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3831	2019-02-01	2019-12-31	25,232.00	13-1	t	0.00		Monthly
13111	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3831	2019-01-01	2019-01-31	23,801.00	12-3	t	0.00		Monthly
13112	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3831	2018-01-01	2018-12-31	22,942.00	12-3	t	0.00		Monthly
13113	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3831	2017-06-01	2017-12-31	22,133.00	12-3	t	0.00		Monthly
13114	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3831	2017-01-01	2017-05-31	21,868.00	12-2	t	0.00		Monthly
13115	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3831	2016-01-01	2016-12-31	21,091.00	12-2	t	0.00		Monthly
13116	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3831	2013-08-07	2015-12-31	20,341.00	12-2	t	0.00		Monthly
13117	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3831	2012-06-01	2013-08-06	20,140.00	12-1	t	0.00		Monthly
13118	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3831	2011-06-01	2012-05-31	18,568.00	12-1	t	0.00		Monthly
13119	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3831	2010-08-07	2011-05-31	16,995.00	12-1	t	0.00		Monthly
13120	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3831	2010-06-24	2010-08-06	16,726.00	12-1	t	0.00		Monthly
13121	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3831	2009-07-01	2010-06-23	15,119.00	12-1	t	0.00		Monthly
13122	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3831	2008-07-01	2009-06-30	12,748.00	12-1	t	0.00		Monthly
13123	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3831	2007-08-06	2008-06-30	11,589.00	12-1	t	0.00		Monthly
13124	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3831	2007-07-01	2007-08-05	11,207.00	11-1	t	0.00		Monthly
13125	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3831	2007-01-01	2007-06-30	10,188.00	11-1	t	0.00		Monthly
13126	DEPARTMENT OF EDUCATION SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3831	2003-07-15	2006-12-31	9,939.00	11-1	t	0.00		Monthly
13077	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3826	2023-03-03	2023-12-31	30,323.00	12-5	t	0.00		Monthly
13078	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3826	2023-01-01	2023-03-02	30,028.00	12-4	t	0.00		Monthly
13079	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3826	2022-01-01	2022-12-31	28,471.00	12-4	t	0.00		Monthly
13080	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3826	2021-01-01	2021-12-31	26,915.00	12-4	t	0.00		Monthly
13081	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3826	2020-03-03	2020-12-31	25,358.00	12-4	t	0.00		Monthly
13082	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3826	2020-01-01	2020-03-02	25,067.00	12-3	t	0.00		Monthly
13083	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3826	2019-01-01	2019-12-31	23,510.00	12-3	t	0.00		Monthly
13084	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3826	2018-01-01	2018-12-31	22,674.00	12-3	t	0.00		Monthly
13085	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3826	2017-03-03	2017-12-31	21,868.00	12-3	t	0.00		Monthly
13086	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3826	2017-01-01	2017-03-02	21,626.00	12-2	t	0.00		Monthly
13087	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3826	2016-01-01	2016-12-31	20,870.00	12-2	t	0.00		Monthly
13088	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3826	2014-03-03	2015-12-31	20,140.00	12-2	t	0.00		Monthly
13089	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3826	2012-06-01	2014-03-02	19,940.00	12-1	t	0.00		Monthly
13090	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3826	2011-06-01	2012-05-31	18,333.00	12-1	t	0.00		Monthly
13091	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3826	2011-03-03	2011-05-31	16,726.00	12-1	t	0.00		Monthly
13092	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3826	2010-06-24	2011-03-02	15,900.00	11-2	t	0.00		Monthly
13093	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3826	2009-07-01	2010-06-23	14,483.00	11-2	t	0.00		Monthly
13094	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3826	2008-07-01	2009-06-30	12,328.00	10-2	t	0.00		Monthly
13095	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3826	2007-07-01	2008-06-30	11,207.00	10-2	t	0.00		Monthly
13096	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3826	2006-01-01	2007-06-30	10,188.00	10-2	t	0.00		Monthly
13097	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3826	2001-07-01	2005-12-31	9,939.00	10-1	t	0.00		Monthly
13098	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3826	2001-06-18	2001-06-30	9,466.00	10-1	t	0.00		Monthly
13099	DEPARTMENT OF EDUCATION	ELEMENTARY GRADE TEACHER		Permanent	3826	2000-06-23	2001-06-17	9,466.00	10-1	t	0.00		Monthly
13100	DEPARTMENT OF EDUCATION	ELEMENTARY GRADE TEACHER 		Substitute	3826	1990-06-20	1991-10-08	3,102.00	10-1	t	0.00		Monthly
13101	DEPARTMENT OF EDUCATION	ELEMENTARY GRADE TEACHER		Substitute	3826	1989-08-16	1990-03-31	1,764.00	10-1	t	0.00		Monthly
13127	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3827	2025-01-01	0001-01-01	36,022.00	13-6	t	0.00		Monthly
13128	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3827	2024-09-28	2024-12-31	34,472.00	13-6	t	0.00		Monthly
13129	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3827	2024-01-01	2024-08-27	34,144.00	13-5	t	0.00		Monthly
13130	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3827	2023-01-01	2023-12-31	32,594.00	13-5	t	0.00		Monthly
13131	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3827	2022-01-01	2022-12-31	31,072.00	13-5	t	0.00		Monthly
13132	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3827	2021-09-28	2021-12-31	29,550.00	13-5	t	0.00		Monthly
13133	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3827	2021-01-01	2021-09-27	29,225.00	13-4	t	0.00		Monthly
13134	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3827	2020-01-01	2020-12-31	27,703.00	13-4	t	0.00		Monthly
13135	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3827	2019-01-01	2019-12-31	26,181.00	13-4	t	0.00		Monthly
13136	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3827	2018-09-28	2018-12-31	25,091.00	13-4	t	0.00		Monthly
13137	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3827	2018-01-01	2018-09-27	24,799.00	13-3	t	0.00		Monthly
13138	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3827	2017-01-01	2017-12-31	23,780.00	13-3	t	0.00		Monthly
13139	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3827	2016-01-01	2016-12-31	22,804.00	13-3	t	0.00		Monthly
13140	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3827	2013-01-29	2015-12-31	21,867.00	13-3	t	0.00		Monthly
13141	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3827	2012-09-27	2013-01-28	21,650.00	13-2	t	0.00		Monthly
13142	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3827	2012-06-01	2012-09-26	21,436.00	13-1	t	0.00		Monthly
13143	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3827	2011-06-01	2012-05-31	19,658.00	13-1	t	0.00		Monthly
13144	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3827	2010-06-24	2011-05-31	17,880.00	13-1	t	0.00		Monthly
13145	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3827	2009-09-28	2010-06-23	16,101.00	13-1	t	0.00		Monthly
13146	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3827	2009-07-01	2009-09-27	15,422.00	12-2	t	0.00		Monthly
13147	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3827	2008-07-01	2009-06-30	13,066.00	11-2	t	0.00		Monthly
13148	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3827	2007-07-01	2008-06-30	11,878.00	11-2	t	0.00		Monthly
13149	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3827	2007-01-01	2007-06-30	10,798.00	11-2	t	0.00		Monthly
13150	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3827	2003-12-01	2006-12-31	10,535.00	11-1	t	0.00		Monthly
13151	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3827	2003-10-01	2003-11-30	10,188.00	10-2	t	0.00		Monthly
13152	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3827	2001-07-01	2003-09-30	9,939.00	10-1	t	0.00		Monthly
13153	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3827	2000-01-01	2001-05-30	9,466.00	10-1	t	0.00		Monthly
13154	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3827	1997-11-01	1999-12-31	8,605.00	10-1	t	0.00		Monthly
13155	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3827	1997-01-01	1997-10-31	7,309.00	10-1	t	0.00		Monthly
13156	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3827	1996-08-20	1996-12-31	6,013.00	10-1	t	0.00		Monthly
13157	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3827	1996-07-16	1996-08-19	6,013.00	10-1	t	0.00		Monthly
13158	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3828	2025-01-01	0001-01-01	59,567.00	19-5	t	0.00		Monthly
13159	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3828	2024-01-01	2024-12-31	57,051.00	19-5	t	0.00		Monthly
13160	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3828	2023-07-11	2023-12-31	54,386.00	19-5	t	0.00		Monthly
13161	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3828	2023-01-01	2023-07-10	53,610.00	19-4	t	0.00		Monthly
13162	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3828	2022-01-01	2022-12-31	52,088.00	19-4	t	0.00		Monthly
13163	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3828	2021-01-01	2021-12-31	50,566.00	19-4	t	0.00		Monthly
13164	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3828	2020-07-11	2020-12-31	49,044.00	19-4	t	0.00		Monthly
13165	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3828	2020-01-01	2020-07-10	48,281.00	19-3	t	0.00		Monthly
13166	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3828	2019-01-01	2019-12-31	46,759.00	19-3	t	0.00		Monthly
13167	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3828	2018-01-01	2018-12-31	43,371.00	19-3	t	0.00		Monthly
13168	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3828	2017-07-12	2017-12-31	40,227.00	19-3	t	0.00		Monthly
13169	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3828	2017-01-01	2017-07-11	39,685.00	19-2	t	0.00		Monthly
13170	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3828	2016-01-01	2016-12-31	36,857.00	19-2	t	0.00		Monthly
13171	DEPARTMENT OF EDUCATION	MASTER TEACHER III		Permanent	3828	2014-07-12	2015-12-31	34,231.00	19-2	t	0.00		Monthly
13172	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3828	2012-06-01	2014-07-11	33,859.00	19-1	t	0.00		Monthly
13173	DEPARTMENT OF EDUCATION	MASTER TEACHER II		Permanent	3828	2011-07-11	2012-05-31	30,474.00	19-1	t	0.00		Monthly
13175	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3828	2010-06-24	2011-05-31	25,259.00	18-1	t	0.00		Monthly
13176	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3828	2009-07-01	2010-06-23	22,214.00	18-1	t	0.00		Monthly
13177	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3828	2009-02-23	2009-06-30	17,059.00	16-1	t	0.00		Monthly
13178	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3828	2008-07-01	2009-02-22	13,512.00	12-1	t	0.00		Monthly
13179	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3828	2007-07-01	2008-06-30	12,284.00	12-1	t	0.00		Monthly
13180	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3828	2007-02-01	2007-06-30	11,167.00	12-1	t	0.00		Monthly
13181	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3828	2006-01-01	2007-01-31	11,068.00	11-2	t	0.00		Monthly
13182	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3828	2005-01-01	2005-01-01	10,798.00	11-1	t	0.00		Monthly
13183	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3828	2001-07-01	2004-12-31	10,535.00	11-1	t	0.00		Monthly
13184	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3828	2000-01-01	2001-06-30	10,033.00	11-1	t	0.00		Monthly
13185	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3828	1999-10-25	1999-12-31	9,121.00	11-1	t	0.00		Monthly
13187	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3828	1997-01-01	1997-10-31	7,309.00	10-1	t	0.00		Monthly
13188	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3828	1996-01-01	1996-12-31	6,013.00	10-1	t	0.00		Monthly
13189	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3828	1995-01-01	1995-12-31	4,902.00	10-1	t	0.00		Monthly
13190	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3828	1994-06-06	1994-12-31	3,902.00	10-1	t	0.00		Monthly
13174	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3828	2011-06-01	2011-07-10	28,305.00	18-1	t	0.00		Monthly
13186	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3828	1997-11-01	1999-10-24	8,605.00	10-1	t	0.00		Monthly
13222	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3830	2025-01-04	0001-01-01	53,456.00	18-5	t	0.00		Monthly
13223	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3830	2025-01-01	2025-01-03	52,907.00	18-4	t	0.00		Monthly
13224	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3830	2024-01-01	2024-12-31	50,617.00	18-4	t	0.00		Monthly
13225	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3830	2023-01-01	2023-12-31	48,253.00	18-4	t	0.00		Monthly
13226	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3830	2022-01-04	2022-12-31	46,731.00	18-4	t	0.00		Monthly
13227	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3830	2022-01-01	2022-01-03	46,216.00	18-3	t	0.00		Monthly
13228	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3830	2021-01-01	2021-12-31	44,694.00	18-3	t	0.00		Monthly
13229	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3830	2020-01-01	2020-12-31	43,172.00	18-3	t	0.00		Monthly
13231	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3830	2019-01-01	2019-01-03	41,143.00	18-2	t	0.00		Monthly
13232	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3830	2018-01-01	2018-12-31	38,543.00	18-2	t	0.00		Monthly
13233	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3830	2017-01-01	2017-12-31	36,111.00	18-2	t	0.00		Monthly
13234	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3830	2016-01-04	2016-12-31	33,831.00	18-2	t	0.00		Monthly
13235	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3830	2016-01-01	2016-01-03	33,452.08	18-1	t	0.00		Monthly
13236	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3830	2013-01-04	2015-12-31	31,351.00	18-1	t	0.00		Monthly
13237	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3830	2012-06-01	2013-01-03	21,650.00	13-2	t	0.00		Monthly
13238	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3830	2011-06-01	2012-05-31	19,908.00	13-2	t	0.00		Monthly
13239	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3830	2010-12-07	2011-05-31	18,166.00	13-2	t	0.00		Monthly
13240	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3830	2010-06-24	2010-12-06	17,880.00	13-1	t	0.00		Monthly
13241	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3830	2009-07-01	2010-06-23	16,101.00	13-1	t	0.00		Monthly
13242	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3830	2008-07-01	2009-06-30	13,512.00	12-1	t	0.00		Monthly
13243	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3830	2007-12-06	2008-06-30	12,284.00	12-1	t	0.00		Monthly
13244	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3830	2007-06-04	2007-12-05	11,068.00	11-1	t	0.00		Monthly
13245	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3830	2007-01-01	2007-06-03	10,971.00	10-4	t	0.00		Monthly
13246	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3830	2004-01-01	2006-12-31	10,704.00	10-3	t	0.00		Monthly
13247	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3830	2002-01-01	2003-12-31	10,442.00	10-2	t	0.00		Monthly
13248	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3830	2001-07-01	2001-12-31	9,939.00	10-1	t	0.00		Monthly
13249	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3830	2000-01-01	2001-06-30	9,466.00	10-1	t	0.00		Monthly
13250	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3830	1999-01-01	1999-12-31	8,605.00	10-1	t	0.00		Monthly
13230	DEPARTMENT OF EDUCATION	MASTER TEACHER I		Permanent	3830	2019-01-04	2019-12-31	41,650.00	18-3	t	0.00		Monthly
13191	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	PRINCIPAL IV		Permanent	3832	2025-01-01	2025-03-19	72,577.00	22-2	t	0.00		Monthly
13192	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	PRINCIPAL IV		Permanent	3832	2024-07-01	2024-12-31	75,952.00	22-2	t	0.00		Monthly
13193	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	PRINCIPAL IV		Permanent	3832	2024-01-01	2024-06-30	74,836.00	22-1	t	0.00		Monthly
13194	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	PRINCIPAL IV		Permanent	3832	2024-01-01	2024-06-30	74,836.00	22-1	t	0.00		Monthly
13195	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	PRINCIPAL IV		Permanent	3832	2022-01-01	2022-12-31	69,963.00	22-1	t	0.00		Monthly
13196	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	PRINCIPAL IV		Permanent	3832	2021-07-01	2021-12-31	68,415.00	22-1	t	0.00		Monthly
13197	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BALETE ELEMENTARY SCHOOL	PRINCIPAL III		Permanent	3832	2021-01-01	2021-06-30	60,901.00	20-1	t	0.00		Monthly
13198	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BALETE ELEMENTARY SCHOOL	PRINCIPAL III		Permanent	3832	2020-01-01	2020-12-31	59,353.00	20-1	t	0.00		Monthly
13199	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BALETE ELEMENTARY SCHOOL	PRINCIPAL III		Permanent	3832	2019-01-01	2019-12-31	57,805.00	20-1	t	0.00		Monthly
13200	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BALETE ELEMENTARY SCHOOL	PRINCIPAL III		Permanent	3832	2018-11-19	2019-12-31	52,554.00	20-1	t	0.00		Monthly
13201	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BUCAL ELEMENTARY SCHOOL	PRINCIPAL II		Permanent	3832	2018-01-01	2018-11-18	47,037.00	19-1	t	0.00		Monthly
13202	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BUCAL ELEMENTARY SCHOOL	PRINCIPAL II		Permanent	3832	2017-01-01	2017-12-31	43,250.00	19-1	t	0.00		Monthly
13203	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BUCAL ELEMENTARY SCHOOL	PRINCIPAL II		Permanent	3832	2016-06-13	2016-12-31	39,768.00	19-1	t	0.00		Monthly
13204	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BUCAL ELEMENTARY SCHOOL	PRINCIPAL I		Permanent	3832	2016-01-01	2016-06-12	36,409.00	18-1	t	0.00		Monthly
13205	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BANABA CENTER ELEMENTARY SCHOOL	PRINCIPAL I		Permanent	3832	2014-09-08	2015-12-31	33,859.00	18-1	t	0.00		Monthly
13206	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BANABA CENTER ELEMENTARY SCHOOL	HEAD TEACHER III		Permanent	3832	2012-06-01	2014-09-07	33,859.00	16-1	t	0.00		Monthly
13207	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BANABA CENTER ELEMENTARY SCHOOL	HEAD TEACHER III		Permanent	3832	2011-06-01	2012-05-31	26,878.00	16-1	t	0.00		Monthly
13208	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL	HEAD TEACHER III		Permanent	3832	2011-05-16	2011-05-31	21,969.00	16-1	t	0.00		Monthly
13209	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BANABA CENTER ELEMENTARY SCHOOL	TEACHER III (TIC)		Permanent	3832	2010-09-04	2011-05-15	18,166.00	13-2	t	0.00		Monthly
13210	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BANABA CENTER ELEMENTARY SCHOOL	TEACHER III (TIC)		Permanent	3832	2010-06-24	2010-09-03	17,880.00	13-2	t	0.00		Monthly
13211	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BANABA CENTER ELEMENTARY SCHOOL	TEACHER III (TIC)		Permanent	3832	2009-07-01	2010-06-23	16,101.00	13-1	t	0.00		Monthly
13212	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL	TEACHER III (TIC)		Permanent	3832	2008-07-01	2009-06-30	13,512.00	12-1	t	0.00		Monthly
13213	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL	TEACHER III (TIC)		Permanent	3832	2008-06-02	2008-06-30	12,284.00	12-1	t	0.00		Monthly
13214	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BANABA EAST ELEMENTARY SCHOOL	TEACHER III		Permanent	3832	2007-09-03	2008-06-01	12,284.00	12-1	t	0.00		Monthly
13215	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BANABA EAST ELEMENTARY SCHOOL	TEACHER II		Permanent	3832	2007-07-01	2007-09-02	11,589.00	11-1	t	0.00		Monthly
13216	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BANABA EAST ELEMENTARY SCHOOL	TEACHER II		Permanent	3832	2007-01-02	2007-06-30	10,535.00	11-1	t	0.00		Monthly
13217	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BANABA EAST ELEMENTARY SCHOOL	TEACHER I		Permanent	3832	2005-10-17	2007-01-31	10,358.00	10-2	t	0.00		Monthly
13218	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / BANABA EAST ELEMENTARY SCHOOL	TEACHER I		Permanent	3832	2005-01-01	2005-10-16	10,442.00	10-2	t	0.00		Monthly
13219	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / MELDA ELEMENTARY SCHOOL	TEACHER I		Permanent	3832	2001-07-01	2004-12-31	9,939.00	10-2	t	0.00		Monthly
13220	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / MELDA ELEMENTARY SCHOOL	TEACHER I		Permanent	3832	2000-01-01	2001-06-30	9,466.00	10-1	t	0.00		Monthly
13221	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / PINAGBAYAN ELEMENTARY SCHOOL	TEACHER I		Permanent	3832	1998-01-21	1999-12-31	8,605.00	10-1	t	0.00		Monthly
13251	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	ELEMENTARY TEACHER 		Permanent	3833	2025-01-01	2025-03-19	30,597.00	11-3	t	0.00		Monthly
13252	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	ELEMENTARY TEACHER 		Permanent	3833	2024-01-01	2024-12-31	29,085.00	11-3	t	0.00		Monthly
13253	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	ELEMENTARY TEACHER 		Permanent	3833	2023-06-05	2023-12-31	27,573.00	11-3	t	0.00		Monthly
13254	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	ELEMENTARY TEACHER 		Permanent	3833	2023-01-01	2023-06-04	27,306.00	11-2	t	0.00		Monthly
13255	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	ELEMENTARY TEACHER		Permanent	3833	2022-01-01	2022-12-31	25,723.00	11-2	t	0.00		Monthly
13256	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	ELEMENTARY TEACHER		Permanent	3833	2021-01-01	2021-12-31	24,161.00	11-2	t	0.00		Monthly
13257	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	ELEMENTARY TEACHER 		Permanent	3833	2020-06-05	2020-12-31	22,600.00	11-2	t	0.00		Monthly
13258	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	ELEMENTARY TEACHER 		Permanent	3833	2020-01-01	2020-06-04	22,216.00	11-1	t	0.00		Monthly
13259	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	ELEMENTARY TEACHER		Permanent	3833	2019-01-01	2019-12-31	20,754.00	11-1	t	0.00		Monthly
13260	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	ELEMENTARY TEACHER		Permanent	3833	2018-01-01	2018-12-31	20,179.00	11-1	t	0.00		Monthly
13261	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TIBIG ELEMENTARY SCHOOL	ELEMENTARY TEACHER		Permanent	3833	2017-06-05	2017-12-31	19,620.00	11-1	t	0.00		Monthly
13262	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO ELEMENTARY SCHOOL	ELEMENTARY TEACHER		Substitute	3833	2017-03-16	2017-04-07	19,620.00	11-1	t	0.00		Monthly
13263	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / KUMINTANG ELEMENTARY SCHOOL	ELEMENTARY TEACHER		Substitute	3833	2017-01-20	2017-02-09	19,620.00	11-1	t	0.00		Monthly
13264	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / KUMINTANG ELEMENTARY SCHOOL	ELEMENTARY TEACHER		Substitute	3833	2016-11-19	2016-12-21	19,077.00	11-1	t	0.00		Monthly
13265	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. RITA ELEMENTARY SCHOOL	ELEMENTARY TEACHER		Substitute	3833	2016-09-21	2016-10-14	19,077.00	11-1	t	0.00		Monthly
13266	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. RITA ELEMENTARY SCHOOL	ELEMENTARY TEACHER		Substitute	3833	2016-08-22	2016-09-20	19,077.00	11-1	t	0.00		Monthly
13267	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. RITA ELEMENTARY SCHOOL	ELEMENTARY TEACHER		Substitute	3833	2016-06-27	2016-07-26	19,077.00	11-1	t	0.00		Monthly
13268	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / MALITAM ELEMENTARY SCHOOL	ELEMENTARY TEACHER		Substitute	3833	2015-11-18	2015-12-18	18,549.00	11-1	t	0.00		Monthly
13269	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / MALITAM ELEMENTARY SCHOOL	ELEMENTARY TEACHER		Substitute	3833	2015-10-15	2015-11-30	18,549.00	11-1	t	0.00		Monthly
13270	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / MALITAM ELEMENTARY SCHOOL	ELEMENTARY TEACHER		Substitute	3833	2015-08-17	2015-10-14	18,549.00	11-1	t	0.00		Monthly
13271	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	ELEMENTARY TEACHER		Substitute	3833	2015-02-25	2015-03-26	18,549.00	11-1	t	0.00		Monthly
13272	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / MALITAM ELEMENTARY SCHOOL	ELEMENTARY TEACHER		Substitute	3833	2015-01-08	2015-01-15	18,549.00	11-1	t	0.00		Monthly
13273	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / MALITAM ELEMENTARY SCHOOL	ELEMENTARY TEACHER		Substitute	3833	2014-11-17	2014-12-19	18,549.00	11-1	t	0.00		Monthly
13274	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	ELEMENTARY TEACHER		Substitute	3833	2014-06-03	2014-07-31	18,549.00	11-1	t	0.00		Monthly
13275	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / WAWA ELEMENTARY SCHOOL	ELEMENTARY TEACHER		Permanent	3833	2014-01-09	2014-03-31	18,549.00	11-1	t	0.00		Monthly
13276	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / WAWA ELEMENTARY SCHOOL	ELEMENTARY TEACHER		Substitute	3833	2013-11-05	2013-12-20	18,549.00	11-1	t	0.00		Monthly
13277	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / WAWA ELEMENTARY SCHOOL	ELEMENTARY TEACHER		Substitute	3833	2013-08-22	2013-10-17	18,549.00	11-1	t	0.00		Monthly
13278	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / WAWA ELEMENTARY SCHOOL	ELEMENTARY TEACHER		Substitute	3833	2013-06-25	2013-08-16	18,549.00	11-1	t	0.00		Monthly
13279	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3834	2025-01-01	2025-03-19	33,702.00	12-6	t	0.00		Monthly
13280	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3834	2024-01-01	2024-12-31	32,464.00	12-6	t	0.00		Monthly
13281	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3834	2023-02-11	2023-12-31	30,622.00	12-6	t	0.00		Monthly
13282	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEAHCER II		Permanent	3834	2023-01-01	2023-02-10	30,323.00	12-5	t	0.00		Monthly
13283	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3834	2022-01-01	2022-12-31	28,766.00	12-5	t	0.00		Monthly
13284	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3834	2021-01-01	2021-12-31	27,210.00	12-5	t	0.00		Monthly
13285	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL 	TEACHER II		Permanent	3834	2020-02-11	2020-12-31	25,653.00	12-5	t	0.00		Monthly
13286	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3834	2020-01-01	2020-02-10	25,358.00	12-4	t	0.00		Monthly
13287	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3834	2019-01-01	2019-12-31	23,801.00	12-4	t	0.00		Monthly
13288	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3834	2018-01-01	2018-12-31	22,942.00	12-4	t	0.00		Monthly
13289	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3834	2017-02-12	2017-12-31	22,113.00	12-4	t	0.00		Monthly
13290	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3834	2017-01-01	2017-02-11	21,868.00	12-3	t	0.00		Monthly
13291	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3834	2016-01-01	2016-12-31	21,091.00	12-3	t	0.00		Monthly
13292	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3834	2014-02-12	2015-12-31	20,341.00	12-3	t	0.00		Monthly
13293	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3834	2012-06-01	2014-02-11	20,140.00	12-2	t	0.00		Monthly
13294	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3834	2011-06-01	2012-05-31	18,568.00	12-2	t	0.00		Monthly
13295	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3834	2011-02-12	2011-05-31	16,995.00	12-2	t	0.00		Monthly
13296	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3834	2010-06-24	2011-02-11	16,726.00	12-1	t	0.00		Monthly
13297	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3834	2009-07-01	2010-06-23	15,119.00	12-1	t	0.00		Monthly
13298	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3834	2008-07-01	2009-06-30	12,748.00	11-1	t	0.00		Monthly
13299	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3834	2008-02-11	2008-06-30	11,589.00	11-1	t	0.00		Monthly
13300	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3834	2007-07-01	2008-02-10	11,207.00	10-2	t	0.00		Monthly
13301	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3834	2007-01-01	2007-06-30	10,188.00	10-2	t	0.00		Monthly
13302	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO ELEMENTARY SCHOOL	TEACHER I		Permanent	3834	2003-06-23	2006-12-31	9,939.00	10-1	t	0.00		Monthly
13303	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3837	2024-03-18	2024-12-31	28,512.00	11-1	t	0.00		Monthly
13304	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3837	2025-01-01	0001-01-01	30,024.00	11-1	t	0.00		Monthly
13305	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3839	2025-01-01	0001-01-01	30,024.00	11-1	t	0.00		Monthly
13306	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3839	2024-01-08	2024-12-31	28,512.00	11-1	t	0.00		Monthly
13308	LIGHT MICROFINANCE	ACCOUNT OFFICER		Permanent	3839	2018-09-17	2022-08-24	18,000.00		f	0.00		Monthly
13309	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3841	2025-01-01	2025-03-19	34,421.00	13-1	t	0.00		Monthly
13310	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3841	2024-01-01	2024-12-31	32,870.00	13-1	t	0.00		Monthly
13311	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3841	2023-06-01	2023-12-31	31,320.00	13-1	t	0.00		Monthly
13312	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3841	2023-01-01	2023-05-31	30,622.00	12-6	t	0.00		Monthly
13313	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3841	2022-12-06	2022-12-31	29,065.00	12-6	t	0.00		Monthly
13314	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3841	2022-01-01	2022-12-05	28,766.00	12-5	t	0.00		Monthly
13315	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3841	2021-01-01	2021-12-31	27,210.00	12-5	t	0.00		Monthly
13316	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3841	2020-01-01	2020-12-31	25,653.00	12-5	t	0.00		Monthly
13317	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3841	2019-12-06	2019-12-31	24,152.00	12-5	t	0.00		Monthly
13318	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3841	2019-01-01	2019-12-05	23,801.00	12-4	t	0.00		Monthly
13319	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3841	2018-01-01	2018-12-31	22,942.00	12-4	t	0.00		Monthly
13320	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3841	2017-01-01	2017-12-31	22,113.00	12-4	t	0.00		Monthly
13321	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3841	2016-12-06	2016-12-31	21,315.00	12-4	t	0.00		Monthly
13322	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3841	2016-01-01	2016-12-05	21,091.00	12-3	t	0.00		Monthly
13323	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3841	2013-12-06	2015-12-31	20,341.00	12-3	t	0.00		Monthly
13324	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3841	2012-06-01	2013-12-05	20,140.00	12-2	t	0.00		Monthly
13325	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3840	2025-01-01	0001-01-01	30,024.00	11-1	t	0.00		Monthly
13326	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3840	2024-01-01	2024-12-31	28,512.00	11-1	t	0.00		Monthly
13327	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3840	2023-01-17	2023-12-31	27,000.00	11-1	t	0.00		Monthly
13328	KID PARADISE LEARNING AND REVIEW CENTER	TEACHER 		Contractual	3840	2023-07-22	2023-08-10	10,000.00		f	0.00		Monthly
13329	MISSIONARY CATECHISTS OF SACRED HEART SCHOOL	TEACHER 		Contractual	3840	2021-08-04	2022-04-30	10,000.00		f	0.00		Monthly
13330	KIDZ PARADISE LEARNING AND REVIEW CENTER	TEACHER 		Contractual	3840	2017-06-15	2021-06-30	10,000.00		f	0.00		Monthly
13331	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3841	2011-06-01	2012-05-31	18,568.00	12-2	t	0.00		Monthly
13332	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3841	2010-12-06	2011-05-31	16,995.00	12-2	t	0.00		Monthly
13333	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3841	2010-06-24	2010-12-05	16,726.00	12-1	t	0.00		Monthly
13334	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3841	2009-07-01	2010-06-23	15,119.00	12-1	t	0.00		Monthly
13335	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3841	2008-07-01	2009-08-30	12,748.00	12-1	t	0.00		Monthly
13336	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3841	2007-12-06	2008-06-30	11,589.00	12-1	t	0.00		Monthly
13337	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3841	2007-07-01	2007-12-05	10,933.00	11-1	t	0.00		Monthly
13338	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3841	2006-03-07	2007-06-30	9,939.00	11-1	t	0.00		Monthly
13339	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3838	2025-01-01	0001-01-01	30,308.00	11-2	t	0.00		Monthly
13340	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3838	2024-01-19	2024-12-31	28,796.00	11-2	t	0.00		Monthly
13341	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3838	2023-01-01	2024-01-18	27,000.00	11-1	t	0.00		Monthly
13342	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3838	2022-01-01	2022-12-31	25,439.00	11-1	t	0.00		Monthly
13343	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3838	2021-01-19	2021-12-31	23,877.00	11-1	t	0.00		Monthly
13344	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3838	2020-11-04	2021-01-15	22,316.00	11-1	t	0.00		Monthly
13345	UNIVERSITY OF BATANGAS	TEACHER I-A, JUNIOR HIGH		Probationary	3838	2017-06-01	2020-04-15	19,576.34	09-1	f	0.00		Monthly
13307	LAZADA LOGISTICS	INDEPENDENT CONTRACTOR		Contractual	3839	2022-08-01	2024-08-24	20,000.00		f	0.00		Monthly
13346	DEPARTMENT OF EDUCATION 	TEACHER I 		Permanent	3842	2007-09-26	2016-12-31	19,940.00	11-2	t	0.00		Monthly
13347	DEPARTMENT OF EDUCATION 	TEACHER II 		Permanent	3842	2016-01-01	2018-12-31	21,387.00	12-2	t	0.00		Monthly
13348	DEPARTMENT OF EDUCATION 	TEACHER III		Permanent	3842	2019-12-31	2025-01-01	35,049.00	13-2	t	0.00		Monthly
13349	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3843	2025-01-01	2025-03-20	35,041.67	13-3	t	0.00		Monthly
13350	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3843	2024-01-01	2024-12-31	33,499.00	13-3	t	0.00		Monthly
13351	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3843	2023-02-01	2023-12-31	31,949.00	13-3	t	0.00		Monthly
13352	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3843	2023-01-01	2023-01-31	31,633.00	13-2	t	0.00		Monthly
13353	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3843	2022-01-01	2022-12-31	30,111.00	13-2	t	0.00		Monthly
13354	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3843	2021-01-01	2021-12-31	28,589.00	13-2	t	0.00		Monthly
13355	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3843	2020-02-01	2020-12-31	27,067.33	13-2	t	0.00		Monthly
13356	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3843	2020-01-01	2020-01-31	26,754.00	13-1	t	0.00		Monthly
13357	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3843	2019-01-01	2019-12-31	25,232.00	13-1	t	0.00		Monthly
13358	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3843	2018-01-01	2018-12-31	24,224.00	13-1	t	0.00		Monthly
13359	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3843	2017-02-01	2017-12-31	23,257.00	13-1	t	0.00		Monthly
13360	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3843	2017-01-01	2017-01-31	21,626.00	12-2	t	0.00		Monthly
13361	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3843	2016-01-01	2016-12-31	20,870.00	12-2	t	0.00		Monthly
13362	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3843	2015-07-02	2015-12-31	20,140.00	12-2	t	0.00		Monthly
13363	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3843	2012-07-02	2015-07-01	19,940.00	12-1	t	0.00		Monthly
13364	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3843	2012-06-01	2012-07-01	18,735.00	12-1	t	0.00		Monthly
13365	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3843	2011-06-01	2012-05-31	17,317.90	11-2	t	0.00		Monthly
13366	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3843	2010-08-16	2011-05-31	15,900.00	11-2	t	0.00		Monthly
13367	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3843	2010-06-24	2010-08-15	15,649.00	11-2	t	0.00		Monthly
13368	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3843	2009-07-01	2010-06-23	14,198.00	11-1	t	0.00		Monthly
13369	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3843	2008-07-01	2009-06-30	12,026.00	11-1	t	0.00		Monthly
13370	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3843	2007-08-15	2008-06-30	10,933.00	11-1	t	0.00		Monthly
13371	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3843	2002-01-22	2007-08-14	9,939.00	11-1	t	0.00		Monthly
13372	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Substitute	3843	2001-06-26	2001-08-23	9,466.00	11-1	t	0.00		Monthly
13373	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3836	2025-01-15	0001-01-01	34,733.00	13-2	t	0.00		Monthly
13374	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3836	2024-01-15	2024-12-31	31,633.00	13-2	t	0.00		Monthly
13375	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3836	2023-01-01	2024-01-14	31,320.00	13-1	t	0.00		Monthly
13376	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3836	2022-01-01	2022-12-31	29,798.00	13-1	t	0.00		Monthly
13377	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3836	2021-01-15	2021-12-31	28,276.00	13-1	t	0.00		Monthly
13378	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3836	2021-01-01	2021-01-14	24,450.00	11-3	t	0.00		Monthly
13379	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3836	2020-06-17	2020-12-31	22,889.00	11-3	t	0.00		Monthly
13380	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3836	2020-01-01	2020-06-16	22,600.00	11-3	t	0.00		Monthly
13381	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3836	2019-01-01	2019-12-31	21,038.00	11-2	t	0.00		Monthly
13382	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3836	2018-01-01	2018-12-31	20,437.00	11-2	t	0.00		Monthly
13383	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3836	2017-12-01	2017-12-31	19,853.00	11-2	t	0.00		Monthly
13384	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3836	2017-11-02	2017-11-30	19,853.00	11-2	t	0.00		Monthly
13385	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3836	2017-06-17	2017-11-01	19,008.53	11-2	t	0.00		Monthly
13386	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3836	2017-01-01	2017-06-16	19,620.00	11-1	t	0.00		Monthly
13387	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3836	2016-01-01	2016-12-31	19,077.00	11-1	t	0.00		Monthly
13388	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3836	2014-06-17	2015-12-31	18,549.00	11-1	t	0.00		Monthly
13389	DEPARTMENT OF EDUCATION 	TEACHER I		Permanent	3844	2000-08-22	2017-06-19	20,811.00	11-7	t	0.00		Monthly
13390	DEPARTMENT OF EDUCATION 	TEACHER II		Permanent	3844	2017-06-20	2025-01-01	32,817.00	12-2	t	0.00		Monthly
13391	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3845	2025-02-19	2025-03-20	54,572.00	18-7	t	0.00		Monthly
13392	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3845	2025-01-01	2025-02-18	54,010.00	18-6	t	0.00		Monthly
13393	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3845	2024-01-01	2024-12-31	51,721.00	18-6	t	0.00	 	Monthly
13394	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3845	2023-09-04	2023-12-31	49,305.00	18-6	t	0.00		Monthly
13395	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3845	2023-08-30	2023-09-03	49,305.00	18-6	t	0.00		Monthly
13396	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3845	2023-01-01	2023-08-29	49,305.00	18-6	t	0.00		Monthly
13397	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3845	2022-02-19	2022-12-31	47,783.00	18-6	t	0.00		Monthly
13398	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3845	2022-01-01	2022-02-18	47,254.00	18-5	t	0.00		Monthly
13399	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3845	2021-01-01	2021-12-31	45,732.00	18-5	t	0.00		Monthly
13400	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3845	2020-01-01	2020-12-31	44,210.00	18-5	t	0.00		Monthly
13401	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3845	2019-02-19	2019-12-31	42,688.00	18-5	t	0.00		Monthly
13402	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3845	2019-01-01	2019-02-18	42,165.00	18-4	t	0.00		Monthly
13403	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3845	2018-01-01	2018-12-31	39,477.00	18-4	t	0.00		Monthly
13404	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3845	2017-01-01	2017-12-31	38,960.00	18-4	t	0.00		Monthly
13405	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3845	2016-02-19	2016-12-31	34,603.00	18-4	t	0.00		Monthly
13406	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3845	2016-01-01	2016-02-18	34,215.00	18-3	t	0.00		Monthly
13407	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3845	2013-02-19	2015-12-31	32,044.00	18-3	t	0.00		Monthly
13408	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3845	2012-06-01	2013-02-18	31,696.00	18-2	t	0.00		Monthly
13409	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3845	2011-06-01	2012-05-31	28,684.00	18-2	t	0.00		Monthly
13410	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3845	2010-06-24	2011-05-31	25,671.00	18-2	t	0.00		Monthly
13411	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3845	2010-02-19	2010-06-23	22,659.00	18-2	t	0.00		Monthly
13412	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3845	2009-07-01	2010-02-18	22,214.00	18-1	t	0.00		Monthly
13413	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3845	2008-07-01	2009-06-30	17,059.00	16-1	t	0.00		Monthly
13414	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3845	2007-07-01	2008-06-30	15,508.00	16-1	t	0.00		Monthly
13415	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3845	2007-02-19	2007-06-30	14,098.00	16-1	t	0.00		Monthly
13416	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3845	2006-08-22	2007-02-18	11,167.00	12-1	t	0.00		Monthly
13417	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER II		Permanent	3845	2005-09-26	2006-08-21	10,798.00	11-1	t	0.00		Monthly
13418	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3845	2005-03-01	2005-09-25	10,704.00	10-4	t	0.00		Monthly
13419	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3845	2003-10-01	2005-02-28	10,442.00	10-3	t	0.00		Monthly
13420	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3845	2001-07-01	2003-09-30	9,939.00	10-2	t	0.00		Monthly
13421	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3845	1998-01-01	2001-06-30	8,605.00	10-1	t	0.00		Monthly
13422	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3845	1997-01-01	1997-12-31	7,309.00	10-1	t	0.00		Monthly
13423	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3845	1994-06-06	1996-12-31	3,902.00	10-1	t	0.00		Monthly
13424	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3850	2024-08-01	2025-01-01	32,870.00	13-1	t	0.00		Monthly
13425	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3850	2018-09-03	2023-12-31	25,680.00	11-2	t	0.00		Monthly
13426	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3846	2025-01-01	0001-01-01	36,022.00	13-6	t	0.00		Monthly
13427	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3846	2024-01-01	2024-12-31	32,922.00	13-6	t	0.00		Monthly
13428	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3846	2023-01-01	2023-12-31	32,922.00	13-6	t	0.00		Monthly
13429	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3846	2022-01-01	2023-12-31	31,400.00	13-5	t	0.00		Monthly
13430	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3846	2021-01-02	2021-12-31	29,878.00	13-5	t	0.00		Monthly
13431	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3846	2021-01-01	2021-01-01	29,550.00	13-5	t	0.00		Monthly
13432	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3846	2020-01-01	2020-12-31	28,028.00	13-5	t	0.00		Monthly
13433	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3846	2019-01-01	2019-12-31	26,506.00	13-5	t	0.00		Monthly
13434	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3846	2018-01-01	2018-12-31	25,387.00	13-5	t	0.00		Monthly
13435	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3846	2017-03-01	2017-12-31	24,315.00	13-4	t	0.00		Monthly
13436	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3846	2017-01-01	2017-02-28	24,047.00	13-4	t	0.00		Monthly
13437	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3846	2016-01-01	2016-12-31	23,045.00	13-4	t	0.00		Monthly
13438	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3846	2014-03-02	2015-12-31	22,086.00	13-4	t	0.00		Monthly
13439	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3846	2012-01-06	2014-03-01	21,867.00	13-3	t	0.00		Monthly
13440	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3846	2011-06-01	2012-05-31	20,162.00	13-3	t	0.00		Monthly
13441	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3846	2011-03-02	2011-05-31	18,457.00	13-3	t	0.00		Monthly
13442	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3846	2010-06-24	2011-03-01	18,166.00	13-2	t	0.00		Monthly
13443	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3846	2009-07-01	2010-06-23	16,424.00	13-2	t	0.00		Monthly
13444	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3846	2008-07-01	2009-06-30	13,850.00	13-2	t	0.00		Monthly
13445	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3846	2008-03-02	2008-06-30	12,591.00	13-2	t	0.00		Monthly
13446	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3846	2007-07-01	2008-03-01	12,284.00	13-1	t	0.00		Monthly
13447	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3846	2005-03-01	2007-06-30	11,167.00	13-1	t	0.00		Monthly
13448	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3846	2002-07-17	2005-02-28	10,535.00	12-1	t	0.00		Monthly
13449	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3846	2001-07-01	2002-07-16	9,939.00	11-1	t	0.00		Monthly
13450	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3846	2000-01-01	2001-06-30	9,466.00	11-1	t	0.00		Monthly
13451	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3846	1997-01-11	1997-12-31	8,605.00	11-1	t	0.00		Monthly
13452	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3846	1997-01-01	1997-10-31	7,309.00	11-1	t	0.00		Monthly
13453	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3846	1996-07-30	1996-12-31	6,013.00	11-1	t	0.00		Monthly
13456	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3848	2025-01-01	0001-01-01	36,002.00	13-3	t	0.00		Monthly
13457	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3848	2024-01-01	2024-12-31	32,594.00	13-3	t	0.00		Monthly
13458	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3848	2023-01-01	2023-12-31	32,594.00	13-3	t	0.00		Monthly
13459	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3848	2022-01-01	2022-12-31	31,072.00	13-3	t	0.00		Monthly
13460	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3848	2021-01-02	2021-12-31	29,550.00	13-3	t	0.00		Monthly
13461	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3848	2021-01-01	2021-01-01	29,225.00	13-3	t	0.00		Monthly
13462	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3848	2020-01-01	2020-12-31	26,181.00	13-3	t	0.00		Monthly
13463	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3848	2019-01-01	2019-12-31	25,091.00	13-3	t	0.00		Monthly
13464	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3848	2018-01-01	2018-12-31	24,047.00	13-3	t	0.00		Monthly
13465	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3848	2017-06-10	2017-12-31	23,780.00	13-3	t	0.00		Monthly
13466	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3848	2017-01-01	2017-06-09	22,804.00	13-3	t	0.00		Monthly
13467	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3848	2016-01-01	2016-12-31	21,867.00	13-3	t	0.00		Monthly
13468	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3848	2014-06-10	2015-12-31	21,650.00	13-3	t	0.00		Monthly
13469	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3848	2012-06-01	2014-06-09	19,908.00	13-3	t	0.00		Monthly
13470	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3848	2011-06-11	2012-05-31	19,658.00	13-3	t	0.00		Monthly
13471	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3848	2011-06-01	2011-06-10	17,880.00	13-3	t	0.00		Monthly
13472	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3848	2010-06-24	2011-05-31	16,101.00	13-3	t	0.00		Monthly
13473	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3848	2009-07-01	2010-06-23	13,512.00	13-3	t	0.00		Monthly
13474	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3848	2008-07-01	2009-06-30	12,284.00	13-3	t	0.00		Monthly
13475	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3848	2008-06-10	2008-06-30	11,589.00	13-3	t	0.00		Monthly
13476	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3848	2007-07-01	2008-06-09	10,535.00	13-3	t	0.00		Monthly
13477	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3848	2004-12-15	2007-06-30	10,188.00	12-2	t	0.00		Monthly
13478	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3848	2002-01-01	2004-12-14	9,939.00	12-2	t	0.00		Monthly
13479	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3848	2001-07-01	2001-12-31	9,466.00	11-1	t	0.00		Monthly
13480	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3848	2000-01-01	2001-06-30	8,605.00	11-1	t	0.00		Monthly
13481	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3848	1999-01-01	1999-12-31	8,605.00	11-1	t	0.00		Monthly
13482	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3848	1997-01-01	1998-12-31	7,309.00	11-1	t	0.00		Monthly
13483	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3848	1996-06-03	1996-12-31	6,013.00	11-1	t	0.00		Monthly
13454	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3851	2024-04-09	2025-01-01	32,245.00	12-1	t	0.00		Monthly
13455	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3851	2019-11-18	2024-03-09	28,796.00	11-2	t	0.00		Monthly
13484	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3852	2025-01-04	2025-03-20	53,456.00	18-5	t	0.00		Monthly
13485	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3852	2024-01-01	2025-01-03	50,617.00	18-4	t	0.00		Monthly
13486	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3852	2023-01-01	2023-12-31	48,253.00	18-4	t	0.00		Monthly
13487	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3852	2022-01-04	2022-12-31	46,731.00	18-4	t	0.00		Monthly
13488	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3852	2022-01-01	2022-01-03	46,216.00	18-3	t	0.00		Monthly
13489	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3852	2021-01-01	2021-12-31	44,649.00	18-3	t	0.00		Monthly
13490	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3852	2020-01-01	2020-12-31	43,172.00	18-3	t	0.00		Monthly
13491	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3852	2019-01-04	2019-12-31	41,650.00	18-3	t	0.00		Monthly
13492	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3852	2019-01-01	2019-01-03	41,143.00	18-2	t	0.00		Monthly
13493	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3852	2018-01-01	2018-12-31	38,543.00	18-2	t	0.00		Monthly
13494	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3852	2017-01-01	2017-12-31	36,111.00	18-2	t	0.00		Monthly
13495	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3852	2016-01-04	2016-12-31	33,831.00	18-2	t	0.00		Monthly
13496	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3852	2016-01-01	2016-01-03	33,452.08	18-1	t	0.00		Monthly
13497	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3852	2013-01-04	2015-12-31	31,351.00	18-1	t	0.00		Monthly
13498	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / KUMINTANG ELEMENTARY SCHOOL	TEACHER III		Permanent	3852	2012-06-09	2013-01-03	21,650.00	13-2	t	0.00		Monthly
13499	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / KUMINTANG ELEMENTARY SCHOOL	TEACHER III		Permanent	3852	2012-06-01	2012-06-08	21,436.00	13-1	t	0.00		Monthly
13500	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / KUMINTANG ELEMENTARY SCHOOL	TEACHER III		Permanent	3852	2011-06-01	2012-05-31	19,658.00	13-1	t	0.00		Monthly
13501	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / KUMINTANG ELEMENTARY SCHOOL	TEACHER III		Permanent	3852	2010-06-24	2011-05-31	17,880.00	13-1	t	0.00		Monthly
13502	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / KUMINTANG ELEMENTARY SCHOOL	TEACHER III		Permanent	3852	2009-07-01	2010-06-23	16,101.00	13-1	t	0.00		Monthly
13503	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / KUMINTANG ELEMENTARY SCHOOL	TEACHER III		Permanent	3852	2009-06-08	2009-06-30	13,512.00	13-1	t	0.00		Monthly
13504	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / KUMINTANG ELEMENTARY SCHOOL	TEACHER II		Permanent	3852	2008-07-01	2009-06-07	13,392.00	12-3	t	0.00		Monthly
13505	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / KUMINTANG ELEMENTARY SCHOOL	TEACHER II		Permanent	3852	2008-01-01	2008-06-30	13,066.00	12-2	t	0.00		Monthly
13506	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / KUMINTANG ELEMENTARY SCHOOL	TEACHER II		Permanent	3852	2007-07-01	2007-12-31	11,878.00	11-2	t	0.00		Monthly
13507	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / KUMINTANG ELEMENTARY SCHOOL	TEACHER II		Permanent	3852	2001-07-09	2007-06-30	10,798.00	11-2	t	0.00		Monthly
13508	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / KUMINTANG ELEMENTARY SCHOOL	TEACHER I 		Permanent	3852	2001-07-01	2001-07-08	10,188.00	10-2	t	0.00		Monthly
13509	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / KUMINTANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3852	2000-01-01	2001-06-30	9,703.00	10-2	t	0.00		Monthly
13510	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / KUMINTANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3852	1997-11-01	1999-12-31	8,821.00	10-2	t	0.00		Monthly
13511	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / KUMINTANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3852	1997-01-01	1997-10-31	7,433.00	10-2	t	0.00		Monthly
13512	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TABANGAO ELEMENTARY SCHOOL	TEACHER I		Permanent	3852	1996-01-01	1996-12-31	6,044.00	10-2	t	0.00		Monthly
13513	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TABANGAO ELEMENTARY SCHOOL	TEACHER I		Permanent	3852	1995-01-01	1995-12-31	4,933.00	10-2	t	0.00		Monthly
13514	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TABANGAO ELEMENTARY SCHOOL	TEACHER I		Permanent	3852	1994-01-01	1994-12-31	3,933.00	10-1	t	0.00		Monthly
13515	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TABANGAO ELEMENTARY SCHOOL	TEACHER I		Permanent	3852	1993-01-01	1993-12-31	3,133.00	10-1	t	0.00		Monthly
13516	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / TABANGAO ELEMENTARY SCHOOL	TEACHER I		Permanent	3852	1989-12-18	1992-12-31	3,102.00	10-1	t	0.00		Monthly
13517	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3847	2025-01-01	0001-01-01	30,024.00	11-1	t	0.00		Monthly
13518	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3847	2024-04-01	2024-12-31	28,512.00	11-1	t	0.00		Monthly
13519	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3847	2024-01-04	2024-03-11	28,512.00	11-1	t	0.00		Monthly
13520	ELITE KIDS ONE-ON-ONE TUTORIAL CENTER	TEACHER 		Permanent	3847	2015-06-01	2020-03-31	11,000.00		f	0.00		Monthly
13521	KIDEX TUTORIAL CENTER	TEACHER		Temporary	3847	2014-09-01	2014-12-19	5,000.00		f	0.00		Monthly
13522	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3847	2014-06-04	2014-07-02	18,549.00	11-1	t	0.00		Monthly
13523	HOLY CROSS MONTESSORI SCHOOL	TEACHER		Contractual	3847	2013-06-03	2014-03-28	6,500.00		f	0.00		Monthly
13524	REGIS BENEDICTINE ACADEMY	TEACHER		Substitute	3847	2012-08-06	2012-11-23	8,000.00		f	0.00		Monthly
13525	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3854	2002-07-17	2025-01-01	33,591.00	13-8	t	0.00		Monthly
13526	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3854	1996-07-08	2002-07-16	10,385.00	12-1	t	0.00		Monthly
13527	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3854	1995-02-15	1996-07-07	6,013.00	11-1	t	0.00		Monthly
13528	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3849	2025-01-01	0001-01-01	30,024.00	11-1	t	0.00		Monthly
13529	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3849	2024-01-01	2024-12-31	27,000.00	11-1	t	0.00		Monthly
13530	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3849	2023-01-17	2023-12-31	27,000.00	11-1	t	0.00		Monthly
13531	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3849	2022-09-12	2022-10-11	25,439.00	11-1	t	0.00		Monthly
13532	ST. THERESE OF THE CHILD JESUS MULTIPLE INTELLIGENCE SCHOOL	TEACHER 		Contractual	3849	2019-06-10	2022-05-31	10,000.00		f	0.00		Monthly
13533	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3858	2025-02-19	2025-03-21	54,572.00	18-7	t	0.00		Monthly
13534	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3858	2025-01-01	2025-02-18	54,010.00	18-6	t	0.00		Monthly
13535	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3858	2024-01-01	2024-12-31	51,721.00	18-6	t	0.00		Monthly
13536	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3858	2023-01-01	2023-12-31	49,305.00	18-6	t	0.00		Monthly
13537	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3858	2022-02-19	2022-12-31	47,783.00	18-6	t	0.00		Monthly
13538	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3858	2022-01-01	2022-02-18	47,254.00	18-6	t	0.00		Monthly
13539	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3858	2021-01-01	2021-12-31	45,732.00	18-5	t	0.00		Monthly
13540	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3858	2020-01-01	2020-12-31	44,210.00	18-5	t	0.00		Monthly
13541	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3858	2019-02-19	2019-12-31	42,688.00	18-5	t	0.00		Monthly
13542	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3858	2019-01-01	2019-02-18	42,165.00	18-4	t	0.00		Monthly
13543	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3858	2018-01-01	2018-12-31	39,477.00	18-4	t	0.00		Monthly
13544	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3858	2017-01-01	2017-12-31	36,960.00	18-4	t	0.00		Monthly
13545	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3858	2016-02-19	2016-12-31	34,603.00	18-4	t	0.00		Monthly
13546	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3858	2016-01-01	2016-02-18	34,215.00	18-3	t	0.00		Monthly
13547	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3858	2013-02-19	2015-12-31	32,044.00	18-3	t	0.00		Monthly
13548	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3858	2012-06-01	2013-02-18	31,696.00	18-2	t	0.00		Monthly
13549	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3858	2011-06-01	2012-05-31	28,684.00	18-2	t	0.00		Monthly
13550	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3858	2010-06-24	2011-05-31	25,671.00	18-2	t	0.00		Monthly
13551	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3858	2010-02-19	2010-06-23	22,696.00	18-2	t	0.00		Monthly
13552	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3858	2009-07-01	2010-02-18	22,214.00	18-1	t	0.00		Monthly
13554	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3858	2008-07-01	2009-06-30	17,059.00	16-1	t	0.00		Monthly
13555	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3858	2007-07-01	2008-06-30	15,508.00	16-1	t	0.00		Monthly
13556	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	MASTER TEACHER I		Permanent	3858	2007-02-19	2007-06-30	14,098.00	16-1	t	0.00		Monthly
13557	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3858	2006-01-01	2007-02-18	11,733.00	12-3	t	0.00		Monthly
13558	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3858	2005-01-01	2005-12-31	11,446.00	12-2	t	0.00		Monthly
13559	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3858	2001-07-01	2004-12-31	11,167.00	12-1	t	0.00		Monthly
13560	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3858	2000-01-01	2001-06-30	10,635.00	12-1	t	0.00		Monthly
13561	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER III		Permanent	3858	1999-03-08	1999-12-31	9,668.00	12-1	t	0.00		Monthly
13562	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3858	1997-11-01	1999-03-07	8,605.00	10-1	t	0.00		Monthly
13563	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3858	1997-01-01	1997-12-31	7,309.00	10-1	t	0.00		Monthly
13564	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3858	1995-01-01	1995-12-31	4,902.00	10-1	t	0.00		Monthly
13565	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / STA. CLARA ELEMENTARY SCHOOL	TEACHER I		Permanent	3858	1994-06-06	1994-12-31	3,902.00	10-1	t	0.00		Monthly
13566	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3856	2024-07-16	2024-12-31	33,254.00	13-7	t	0.00		Monthly
13567	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3856	2024-01-01	2024-07-14	31,732.00	13-6	t	0.00		Monthly
13568	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3856	2023-01-01	2023-12-31	30,210.00	13-6	t	0.00		Monthly
13569	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3856	2022-01-01	2022-12-31	29,878.00	13-6	t	0.00		Monthly
13570	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3856	2021-07-15	2022-12-31	31,732.00	13-6	t	0.00		Monthly
13571	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3856	2021-01-01	2021-07-14	30,210.00	13-5	t	0.00		Monthly
13573	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3856	2019-01-01	2019-12-31	28,356.00	13-5	t	0.00		Monthly
13574	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3856	2018-07-15	2018-12-31	26,834.00	13-5	t	0.00		Monthly
13575	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3856	2018-01-01	2018-01-14	25,686.00	13-4	t	0.00		Monthly
13602	DEPARTMENT OF EDUCATION / SAN AGAPITO NATIONAL HIGH SCHOOL	TEACHER III		Permanent	3860	2025-01-01	2025-03-21	34,421.00	13-1	t	0.00		Monthly
13576	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3856	2017-01-01	2017-12-31	25,387.00	13-4	t	0.00		Monthly
13577	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3856	2016-01-01	2016-12-31	24,315.00	13-4	t	0.00		Monthly
13578	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3856	2015-07-15	2015-12-31	23,289.00	13-4	t	0.00		Monthly
13580	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3856	2012-06-01	2012-07-15	22,086.00	13-2	t	0.00		Monthly
13581	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3856	2011-06-01	2012-05-31	21,867.00	13-2	t	0.00		Monthly
13582	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3856	2010-06-24	2011-05-31	20,162.00	13-2	t	0.00		Monthly
13583	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3856	2009-07-16	2010-06-23	18,457.00	13-2	t	0.00		Monthly
13584	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3856	2009-07-01	2009-07-15	16,753.00	13-1	t	0.00		Monthly
13585	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3856	2008-07-01	2009-06-30	16,424.00	13-1	t	0.00		Monthly
13586	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3856	2007-07-01	2008-06-30	13,852.00	13-1	t	0.00		Monthly
13587	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3856	2006-07-16	2007-06-30	12,591.00	13-1	t	0.00		Monthly
13588	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3856	2003-07-15	2006-07-15	11,446.00	13-1	t	0.00		Monthly
13589	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3856	2001-07-01	2003-07-14	11,167.00	12-1	t	0.00		Monthly
13590	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3856	2000-11-29	2001-06-30	10,535.00	12-1	t	0.00		Monthly
13591	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3856	2000-01-01	2000-11-28	10,033.00	11-1	t	0.00		Monthly
13592	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3856	1999-01-01	1999-12-31	9,466.00	11-1	t	0.00		Monthly
13593	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3856	1998-01-01	1998-12-31	8,605.00	11-1	t	0.00		Monthly
13594	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3856	1997-12-01	1997-12-31	8,605.00	11-1	t	0.00		Monthly
13595	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3856	1997-01-01	1997-10-31	8,605.00	11-1	t	0.00		Monthly
13596	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3856	1996-01-01	1996-12-31	6,013.00	11-1	t	0.00		Monthly
13597	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3856	1995-01-01	1995-12-31	4,902.00	11-1	t	0.00		Monthly
13598	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3856	1994-06-06	1994-12-31	3,902.00	11-1	t	0.00		Monthly
13553	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3856	2025-01-01	0001-01-01	36,354.00	13-7	t	0.00		Monthly
13572	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3856	2020-01-01	2020-12-31	29,878.00	13-5	t	0.00		Monthly
13579	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3856	2012-07-16	2015-07-14	22,306.00	13-3	t	0.00		Monthly
13599	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3857	2025-01-01	0001-01-01	28,512.00	11-1	t	0.00		Monthly
13600	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3857	2024-08-01	2024-12-31	30,024.00	11-1	t	0.00		Monthly
13601	BEACON OF CHRIST LEARNING INSTITUTE INC.	TEACHER		Contractual	3857	2022-08-22	2024-05-31	9,330.00		f	0.00		Monthly
13603	DEPARTMENT OF EDUCATION / SAN AGAPITO NATIONAL HIGH SCHOOL	TEACHER III		Permanent	3860	2024-03-10	2024-12-31	32,870.00	13-1	t	0.00		Monthly
13604	DEPARTMENT OF EDUCATION / SAN AGAPITO NATIONAL HIGH SCHOOL	TEACHER I		Permanent	3860	2024-01-01	2024-03-01	28,796.00	11-4	t	0.00		Monthly
13605	DEPARTMENT OF EDUCATION / SAN AGAPITO NATIONAL HIGH SCHOOL	TEACHER I		Permanent	3860	2023-01-01	2023-12-31	27,573.00	11-4	t	0.00		Monthly
13606	DEPARTMENT OF EDUCATION / SAN AGAPITO NATIONAL HIGH SCHOOL	TEACHER I		Permanent	3860	2022-07-01	2022-12-31	26,012.00	11-4	t	0.00		Monthly
13607	DEPARTMENT OF EDUCATION / SAN AGAPITO NATIONAL HIGH SCHOOL	TEACHER I		Permanent	3860	2022-01-01	2022-06-30	25,723.00	11-3	t	0.00		Monthly
13608	DEPARTMENT OF EDUCATION / SAN AGAPITO NATIONAL HIGH SCHOOL	TEACHER I		Permanent	3860	2021-01-01	2021-12-31	24,161.00	11-3	t	0.00		Monthly
13609	DEPARTMENT OF EDUCATION / SAN AGAPITO NATIONAL HIGH SCHOOL	TEACHER I		Permanent	3860	2020-01-01	2020-12-31	22,600.00	11-3	t	0.00		Monthly
13610	DEPARTMENT OF EDUCATION / SAN AGAPITO NATIONAL HIGH SCHOOL	TEACHER I		Permanent	3860	2019-07-01	2019-12-31	21,038.00	11-2	t	0.00		Monthly
13611	DEPARTMENT OF EDUCATION / SAN AGAPITO NATIONAL HIGH SCHOOL	TEACHER I		Permanent	3860	2019-01-01	2019-06-30	20,754.00	11-2	t	0.00		Monthly
13612	DEPARTMENT OF EDUCATION / SAN AGAPITO NATIONAL HIGH SCHOOL	TEACHER I		Permanent	3860	2018-01-01	2018-12-31	20,179.00	11-2	t	0.00		Monthly
13613	DEPARTMENT OF EDUCATION / SAN AGAPITO NATIONAL HIGH SCHOOL	TEACHER I		Permanent	3860	2017-11-18	2017-12-31	19,620.00	11-1	t	0.00		Monthly
13614	DEPARTMENT OF EDUCATION / SAN AGAPITO NATIONAL HIGH SCHOOL	TEACHER I		Permanent	3860	2017-01-01	2017-11-16	19,620.00	11-1	t	0.00		Monthly
13615	DEPARTMENT OF EDUCATION / SAN AGAPITO NATIONAL HIGH SCHOOL	TEACHER I		Permanent	3860	2016-07-01	2016-12-31	19,077.00	11-1	t	0.00		Monthly
13616	GRATIA DE REGINA SCHOOL INC.	CLASSROOM TEACHER		Contractual	3860	2012-06-01	2016-06-30	13,000.00		f	0.00		Monthly
13617	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3859	2025-01-01	0001-01-01	30,024.00	11-1	t	0.00		Monthly
13618	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3859	2024-01-01	2024-12-31	28,512.00	11-1	t	0.00		Monthly
13619	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3859	2023-01-17	2023-12-31	27,000.00	11-1	t	0.00		Monthly
13620	KING'S KIDS CHRISTIAN ACADEMY	GRADE 1 AND GRADE 3 TEACHER		Contractual	3859	2018-01-06	2021-03-31	8,000.00		f	0.00		Monthly
13621	ROYAL ORCHID ACADEMY OF THE PHILIPPINES	GRADE 2 TEACHER`		Contractual	3859	2016-01-06	2021-03-31	7,500.00		f	0.00		Monthly
13622	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER III		Permanent	3866	2025-02-18	2025-03-21	36,022.00	13-5	t	0.00		Monthly
13623	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER III		Permanent	3866	2025-01-01	2025-02-17	33,819.00	13-4	t	0.00		Monthly
13624	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER III		Permanent	3866	2024-01-01	2024-12-31	34,144.00	13-4	t	0.00		Monthly
13625	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER III		Permanent	3866	2023-01-01	2023-12-31	32,269.00	13-4	t	0.00		Monthly
13626	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER III		Permanent	3866	2022-02-18	2022-12-31	30,747.00	13-3	t	0.00		Monthly
13627	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER III		Permanent	3866	2022-01-01	2022-02-17	30,427.00	13-3	t	0.00		Monthly
13628	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER III		Permanent	3866	2021-01-01	2022-12-31	28,905.00	13-3	t	0.00		Monthly
13629	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER III		Permanent	3866	2020-01-01	2022-02-17	27,383.00	13-2	t	0.00		Monthly
13630	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER III		Permanent	3866	2019-02-18	2021-12-31	25,861.00	13-2	t	0.00		Monthly
13631	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER III		Permanent	3866	2019-01-01	2019-12-31	24,517.00	13-2	t	0.00		Monthly
13632	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER III		Permanent	3866	2018-01-01	2018-12-31	25,545.00	13-	t	0.00		Monthly
13633	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER III		Permanent	3866	2017-01-01	2018-12-31	24,510.00	13-	t	0.00		Monthly
13634	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER III		Permanent	3866	2016-02-18	2016-12-31	23,517.00	13-	t	0.00		Monthly
13635	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER III		Permanent	3866	2016-01-01	2016-02-17	22,564.00	13-	t	0.00		Monthly
13636	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER III		Permanent	3866	2013-02-18	2016-12-31	22,328.00	13-	t	0.00		Monthly
13637	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER I		Permanent	3866	2013-02-17	2013-02-18	21,436.00	13-	t	0.00		Monthly
13638	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER I		Permanent	3866	2011-06-01	2012-05-31	18,735.00	13-	t	0.00		Monthly
13639	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER I		Permanent	3866	2011-06-01	2012-05-31	17,318.00	13-	t	0.00		Monthly
13640	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER I		Permanent	3866	2011-03-01	2011-05-31	15,900.00	13-	t	0.00		Monthly
13641	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER I		Permanent	3866	2011-03-01	2011-05-31	15,649.00	13-	t	0.00		Monthly
13642	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER I		Permanent	3866	2009-07-01	2010-06-23	14,198.00	13-	t	0.00		Monthly
13643	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER I		Permanent	3866	2008-07-01	2009-06-30	12,026.00	13-	t	0.00		Monthly
13644	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER I		Permanent	3866	2007-07-01	2008-06-30	10,933.00		t	0.00		Monthly
13646	DEPARTMENT OF EDUCATION	HEAD TEACHER III		Permanent	3861	2025-01-01	0001-01-01	44,438.00	16-3	t	0.00		Monthly
13647	DEPARTMENT OF EDUCATION	HEAD TEACHER III		Permanent	3861	2024-01-01	2024-12-31	42,494.00	16-3	t	0.00		Monthly
13648	DEPARTMENT OF EDUCATION	HEAD TEACHER III		Permanent	3861	2023-01-01	2023-12-21	40,509.00	16-3	t	0.00		Monthly
13649	DEPARTMENT OF EDUCATION	HEAD TEACHER III		Permanent	3861	2022-03-23	2022-12-31	38,987.00	16-3	t	0.00		Monthly
13650	DEPARTMENT OF EDUCATION	HEAD TEACHER III		Permanent	3861	2022-01-01	2022-03-22	38,566.00	16-2	t	0.00		Monthly
13651	DEPARTMENT OF EDUCATION	HEAD TEACHER III		Permanent	3861	2021-01-01	2021-12-31	37,044.00	16-2	t	0.00		Monthly
13652	DEPARTMENT OF EDUCATION	HEAD TEACHER III		Permanent	3861	2020-01-01	2020-12-31	35,522.00	16-2	t	0.00		Monthly
13653	DEPARTMENT OF EDUCATION	HEAD TEACHER III		Permanent	3861	2019-03-23	2019-12-31	34,000.00	16-2	t	0.00		Monthly
13654	DEPARTMENT OF EDUCATION	HEAD TEACHER III		Permanent	3861	2019-01-01	2019-03-22	33,584.00	16-1	t	0.00		Monthly
13655	DEPARTMENT OF EDUCATION	HEAD TEACHER III		Permanent	3861	2018-01-01	2018-12-31	31,765.00	16-1	t	0.00		Monthly
13656	DEPARTMENT OF EDUCATION	SPECIAL EDUCATION TEACHER I		Permanent	3855	2019-03-01	2025-01-25	37,384.00	14-2	t	0.00		Monthly
13657	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3855	2015-10-26	2019-02-28	20,179.00	11-1	t	0.00		Monthly
13658	DEPARTMENT OF EDUCATION	HEAD TEACHER III		Permanent	3861	2017-01-01	2017-12-31	30,044.00	16-1	t	0.00		Monthly
13660	DEPARTMENT OF EDUCATION	HEAD TEACHER I		Permanent	3861	2016-01-01	2016-03-22	24,141.00	14-1	t	0.00		Monthly
13662	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3861	2014-03-16	2014-09-09	22,086.00	13-4	t	0.00		Monthly
13663	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3861	2012-06-01	2014-03-15	21,867.00	13-3	t	0.00		Monthly
13664	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3861	2011-06-01	2012-05-31	20,162.00	13-3	t	0.00		Monthly
13665	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3861	2011-03-16	2011-05-31	18,457.00	13-3	t	0.00		Monthly
13666	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3861	2010-06-24	2011-03-15	18,166.00	13-2	t	0.00		Monthly
13667	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3861	2009-07-09	2010-06-23	16,424.00	13-2	t	0.00		Monthly
13668	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3861	2008-07-01	2009-06-30	13,850.00	13-2	t	0.00		Monthly
13669	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3861	2008-01-01	2025-06-30	12,591.00	13-2	t	0.00		Monthly
13670	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3861	2007-07-01	2007-12-31	12,284.00	13-1	t	0.00		Monthly
13672	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3861	2004-09-20	2005-01-17	11,167.00	13-1	t	0.00		Monthly
13673	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3861	2004-03-15	2004-09-19	11,167.00	13-1	t	0.00		Monthly
13674	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3861	2001-09-04	2004-03-14	10,535.00	12-1	t	0.00		Monthly
13675	DEPARTMENT OF EDUCATION	ELEMENTARY GRADE TEACHER		Permanent	3861	2000-01-01	2001-06-30	9,466.00	11-1	t	0.00		Monthly
13676	DEPARTMENT OF EDUCATION	SPECIAL EDUCATION TEACHER I		Permanent	3867	2022-01-01	2025-01-01	37,749.00	14-3	t	0.00		Monthly
13677	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER I		Substitute	3866	2001-07-02	2006-07-16	9,466.00		t	0.00		Monthly
13680	DEPARTMENT OF EDUCATION	ELEMENTARY GRADE TEACHER		Permanent	3861	1997-11-01	1999-12-31	8,605.00	11-1	t	0.00		Monthly
13681	DEPARTMENT OF EDUCATION	ELEMENTARY GRADE TEACHER		Permanent	3861	1997-10-31	1997-11-01	7,309.00	11-1	t	0.00		Monthly
13682	DEPARTMENT OF EDUCATION	ELEMENTARY GRADE TEACHER		Permanent	3861	1997-01-01	1997-10-31	7,309.00	11-1	t	0.00		Monthly
13683	DEPARTMENT OF EDUCATION	ELEMENTARY GRADE TEACHER		Permanent	3861	1996-01-01	1996-12-31	6,013.00	11-1	t	0.00		Monthly
13684	DEPARTMENT OF EDUCATION	ELEMENTARY GRADE TEACHER		Permanent	3861	1995-01-01	1995-12-31	4,902.00	11-1	t	0.00		Monthly
13679	DEPARTMENT OF EDUCATION / SAN AGUSTIN NATIONAL HIGH SCHOOL	TEACHER I		Substitute	3866	1999-02-01	1999-03-31	8,605.00		t	0.00		Monthly
13685	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER I		Substitute	3866	1998-08-20	1998-10-18	8,505.00		t	0.00		Monthly
13686	DEPARTMENT OF EDUCATION / SAN AGAPITO HIGH SCHOOL	TEACHER I		Substitute	3866	1996-10-01	1996-11-29	6,013.00		t	0.00		Monthly
13645	DEPARTMENT OF EDUCATION / SAN ANTONIO HIGH SCHOOL	TEACHER I		Permanent	3866	2006-07-17	2007-06-30	9,939.00		t	0.00		Monthly
13678	DEPARTMENT OF EDUCATION / TABANGAO NATIONAL HIGH SCHOOL	TEACHER I		Substitute	3866	2000-10-01	2000-11-30	8,605.00		t	0.00		Monthly
13687	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3868	2016-11-02	2025-01-01	31,277.00	12-3	t	0.00		Monthly
13688	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3868	2010-11-17	2016-11-01	19,286.00	11-1	t	0.00		Monthly
13659	DEPARTMENT OF EDUCATION	HEAD TEACHER III		Permanent	3861	2016-03-23	2016-12-31	28,417.00	16-1	t	0.00		Monthly
13661	DEPARTMENT OF EDUCATION	HEAD TEACHER I		Permanent	3861	2014-09-10	2015-12-31	23,044.00	14-1	t	0.00		Monthly
13671	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3861	2005-03-15	2007-06-30	11,167.00	13-1	t	0.00		Monthly
13689	DEPARTMENT OF EDUCATION	ELEMENTARY GRADE TEACHER		Permanent	3861	1993-06-07	1993-12-31	3,103.00	11-1	t	0.00		Monthly
13690	DEPARTMENT OF EDUCATION	ELEMENTARY GRADE TEACHER		Substitute	3861	1990-09-17	1992-01-30	3,102.00	11-1	t	0.00		Monthly
13691	DEPARTMENT OF EDUCATION	ELEMENTARY GRADE TEACHER		Substitute	3861	1989-08-23	1990-08-31	3,102.00	11-1	t	0.00		Monthly
13692	DEPARTMENT OF EDUCATION	ELEMENTARY GRADE TEACHER		Permanent	3861	1994-01-01	1994-12-31	3,902.00	11-1	t	0.00		Monthly
13693	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO INTEGRATED SCHOOL	TEACHER I		Permanent	3869	2025-01-01	2025-03-21	30,024.00	11-1	t	0.00		Monthly
13694	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO INTEGRATED SCHOOL	TEACHER I		Permanent	3869	2024-08-01	2024-12-31	28,512.00	11-1	t	0.00		Monthly
13695	STONYHURST KUMON LEARNING CENTER	KUMON TEACHER		Contractual	3869	2023-01-03	2023-07-15	12,000.00		f	0.00		Monthly
13696	STONYHURST KUMON LEARNING CENTER	KUMON TEACHER		Contractual	3869	2021-10-01	2022-09-30	12,000.00		f	0.00		Monthly
13697	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3864	2025-01-01	0001-01-01	32,245.00	12-1	t	0.00		Monthly
13698	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3864	2024-01-01	2024-12-31	30,705.00	12-1	t	0.00		Monthly
13699	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3864	2023-01-17	2023-12-31	29,165.00	12-1	t	0.00		Monthly
13700	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3864	2023-01-01	2023-01-16	28,161.00	11-5	t	0.00		Monthly
13701	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3864	2022-01-01	2022-12-21	26,600.00	11-5	t	0.00		Monthly
13702	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3864	2021-01-01	2021-12-31	25,038.00	11-4	t	0.00		Monthly
13703	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3864	2020-07-21	2020-12-31	23,477.00	11-4	t	0.00		Monthly
13704	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3864	2020-01-01	2020-07-20	23,181.00	11-4	t	0.00		Monthly
13705	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3864	2019-01-01	2019-12-31	21,619.00	11-4	t	0.00		Monthly
13706	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3864	2018-01-01	2018-12-31	20,963.00	11-3	t	0.00		Monthly
13707	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3864	2017-07-21	2017-12-31	20,326.00	11-3	t	0.00		Monthly
13708	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3864	2017-01-01	2017-07-20	20,088.00	11-3	t	0.00		Monthly
13709	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3864	2016-01-01	2016-12-31	19,496.00	11-2	t	0.00		Monthly
13710	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3864	2014-07-22	2015-12-31	18,922.00	11-2	t	0.00		Monthly
13711	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3864	2012-06-01	2014-07-21	18,735.00	11-2	t	0.00		Monthly
13720	DEPARTMENT OF EDUCATION	ADMINISTRATIVE ASSISTANT II		Permanent	3870	2017-11-02	2024-01-01	22,908.00	08-3	t	0.00		Monthly
13721	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO INTEGRATED HIGH SCHOOL	TEACHER I		Permanent	3871	2024-08-12	2025-03-21	30,024.00	11-1	t	0.00		Monthly
13722	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO INTEGRATED HIGH SCHOOL	TEACHER I		Permanent	3871	2024-08-12	2024-12-31	28,512.00	11-1	t	0.00		Monthly
13723	BATANGAS STATE UNIVERSITY - THE NATIONAL ENGINEERING UNIVERSITY	LECTURER I		Contractual	3871	2024-06-13	2024-07-28	24,000.00		f	0.00		Monthly
13712	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3864	2011-07-22	2012-05-31	17,318.00	11-1	t	0.00		Monthly
13713	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3864	2011-06-01	2011-07-21	17,099.00	11-1	t	0.00		Monthly
13714	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3864	2010-06-24	2011-05-31	15,649.00	11-1	t	0.00		Monthly
13715	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3864	2009-07-01	2010-06-23	14,198.00	11-1	t	0.00		Monthly
13716	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3864	2008-07-21	2009-06-30	12,026.00	11-1	t	0.00		Monthly
13717	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3864	2007-07-01	2008-07-20	9,939.00	11-1	t	0.00		Monthly
13718	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3864	2007-06-14	2007-06-30	9,939.00	11-1	t	0.00		Monthly
13719	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3864	2005-12-01	2007-06-13	9,939.00	11-1	t	0.00		Monthly
13724	BATANGAS STATE UNIVERSITY - THE NATIONAL ENGINEERING UNIVERSITY	LECTURER I		Contractual	3871	2024-01-22	2024-05-26	24,000.00		f	0.00		Monthly
13725	BATANGAS STATE UNIVERSITY - THE NATIONAL ENGINEERING UNIVERSITY	LECTURER I		Contractual	3871	2023-01-14	2023-05-28	24,000.00		f	0.00		Monthly
13726	BATANGAS STATE UNIVERSITY - THE NATIONAL ENGINEERING UNIVERSITY	LECTURER I		Contractual	3871	2022-08-15	2022-12-18	18,000.00		f	0.00		Monthly
13727	BATANGAS STATE UNIVERSITY - THE NATIONAL ENGINEERING UNIVERSITY	LECTURER I		Contractual	3871	2022-01-31	2022-06-11	18,000.00		f	0.00		Monthly
13728	BATANGAS STATE UNIVERSITY - THE NATIONAL ENGINEERING UNIVERSITY	LECTURER I		Contractual	3871	2021-09-24	2021-12-27	10,000.00		f	0.00		Monthly
13729	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3862	2025-01-01	0001-01-01	34,421.00	13-1	t	0.00		Monthly
13730	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3862	2024-01-01	2024-12-31	31,320.00	13-1	t	0.00		Monthly
13731	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3862	2023-01-01	2023-12-31	31,320.00	13-1	t	0.00		Monthly
13732	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3862	2022-10-03	2022-12-31	29,798.00	13-1	t	0.00		Monthly
13733	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3862	2022-01-01	2022-10-02	25,723.00	11-2	t	0.00		Monthly
13734	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3862	2021-01-01	2021-12-31	24,161.00	11-2	t	0.00		Monthly
13735	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3862	2020-06-05	2020-12-31	22,600.00	11-2	t	0.00		Monthly
13736	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3862	2020-01-01	2020-06-04	22,316.00	11-1	t	0.00		Monthly
13737	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3862	2019-01-01	2019-12-31	20,754.00	11-1	t	0.00		Monthly
13738	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3862	2018-01-01	2018-12-31	20,179.00	11-1	t	0.00		Monthly
13739	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3862	2017-06-05	2017-12-31	19,620.00	11-1	t	0.00		Monthly
13740	CASA DEL BAMBINO EMMANUEL MONTESSORI	TEACHER		Permanent	3862	2012-06-04	2017-05-31	12,000.00		f	0.00		Monthly
13741	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3863	2025-01-01	0001-01-01	30,024.00	11-1	t	0.00		Monthly
13742	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3863	2024-10-09	2024-12-31	28,512.00	11-1	t	0.00		Monthly
13743	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3863	2024-04-18	2024-05-31	27,000.00	11-1	t	0.00		Monthly
13744	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO INTEGRATED HIGH SCHOOL	TEACHER I		Permanent	3872	2024-08-01	2025-03-21	30,024.00	11-1	t	0.00		Monthly
13745	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO INTEGRATED HIGH SCHOOL	TEACHER I		Permanent	3872	2024-08-01	2024-12-31	28,512.00	11-1	t	0.00		Monthly
13746	BATANGAS STATE UNIVERSITY TNEU-ALANGILAN	LECTURER I		Contractual	3872	2022-09-27	2024-07-26	24,000.00		f	0.00		Monthly
13747	DEPARTMENT OF EDUCATION / SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO INTEGRATED HIGH SCHOOL	TEACHER I		Substitute	3872	2022-05-20	2022-07-01	25,439.00	11-1	t	0.00		Monthly
13748	GOOD SHEPHERD CHRISTIAN ACADEMY OF BATANGAS INC.	HIGH SCHOOL TEACHER		Contractual	3872	2019-08-12	2019-11-22	9,500.00		f	0.00		Monthly
13749	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3865	2025-01-01	0001-01-01	30,024.00	11-1	t	0.00		Monthly
13750	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3865	2024-09-04	2024-12-31	28,512.00	11-1	t	0.00		Monthly
13751	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3873	2004-09-01	2025-01-01	36,354.00	13-7	t	0.00		Monthly
13752	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3873	2000-09-17	2004-08-31	10,535.00	12-1	t	0.00		Monthly
13753	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3873	1994-06-06	2000-09-19	9,466.00	11-	t	0.00		Monthly
13754	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3874	2025-01-01	2025-03-21	30,024.00	11-1	t	0.00		Monthly
13755	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3874	2024-02-05	2024-12-31	28,513.00	11-1	t	0.00		Monthly
13756	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3874	2024-01-31	2024-06-14	27,000.00	11-1	t	0.00		Monthly
13757	CANOSSA ACADEMY LIPA CITY	TEACHER I		Substitute	3874	2022-10-17	2023-05-31	16,700.00		f	0.00		Monthly
13758	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3874	2022-02-03	2022-03-01	25,349.00	11-1	t	0.00		Monthly
13759	PRINCETON SCIENCE SCHOOL - HOME OF YOUNG ACHIEVERS	TEACHER I		Contractual	3874	2019-06-24	2021-04-20	15,000.00		f	0.00		Monthly
13760	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3875	2025-01-01	0001-01-01	34,733.00	13-2	t	0.00		Monthly
13761	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3875	2024-01-02	2024-12-31	31,633.00	13-2	t	0.00		Monthly
13762	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3875	2023-01-01	2024-01-01	31,320.00	13-1	t	0.00		Monthly
13763	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3875	2023-01-01	2023-11-02	31,320.00	13-1	t	0.00		Monthly
13764	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3875	2022-01-01	2022-12-31	29,798.00	13-1	t	0.00		Monthly
13765	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3875	2021-01-01	2021-12-31	28,276.00	13-1	t	0.00		Monthly
13766	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3875	2020-11-03	2020-12-31	26,754.00	13-1	t	0.00		Monthly
13767	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3875	2020-01-01	2020-11-02	22,600.00	11-2	t	0.00		Monthly
13768	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3875	2019-01-01	2019-12-31	21,038.00	11-2	t	0.00		Monthly
13769	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3875	2018-07-01	2018-12-31	20,437.00	11-2	t	0.00		Monthly
13770	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3875	2018-01-01	2018-06-30	20,179.00	11-1	t	0.00		Monthly
13771	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3875	2017-01-01	2017-12-31	19,620.00	11-1	t	0.00		Monthly
13772	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3875	2016-01-01	2016-12-31	19,077.00	11-1	t	0.00		Monthly
13773	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3875	2015-07-01	2015-12-31	18,549.00	11-1	t	0.00		Monthly
13774	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3875	2014-08-05	2014-10-02	18,549.00	11-1	t	0.00		Monthly
13775	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER III		Permanent	3876	2025-01-01	2025-03-24	34,733.00	13-2	t	0.00		Monthly
13776	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER III		Permanent	3876	2024-01-01	2024-12-31	31,320.00	13-2	t	0.00		Monthly
13777	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER III		Permanent	3876	2023-01-01	2023-12-31	29,798.00	13-1	t	0.00		Monthly
13778	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER III		Permanent	3876	2022-01-01	2022-12-31	28,276.00	13-1	t	0.00		Monthly
13779	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER III		Permanent	3876	2021-01-01	2021-12-31	26,754.00	13-1	t	0.00		Monthly
13780	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER III		Permanent	3876	2020-11-03	2020-12-31	22,316.00	13-1	t	0.00		Monthly
13781	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER I		Permanent	3876	2020-01-01	2020-11-02	20,754.00	11-1	t	0.00		Monthly
13782	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER I		Permanent	3876	2019-01-01	2019-12-31	20,179.00	11-1	t	0.00		Monthly
13783	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER I		Permanent	3876	2018-01-01	2018-12-31	19,620.00	11-1	t	0.00		Monthly
13784	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER I		Permanent	3876	2017-01-01	2017-12-31	19,077.00	11-1	t	0.00		Monthly
13785	DEPARTMENT OF EDUCATION BATANGAS CITY	 		Permanent	3876	2016-06-13	2016-12-31	18,546.00	11-1	t	0.00		Monthly
13786	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER I		Substitute	3876	2015-10-05	2015-12-03	18,546.00	11-1	t	0.00		Monthly
13787	DEPARTMENT OF EDUCATION BATANGAS CITY 	TEACHER I		Substitute	3876	2015-08-26	2015-09-24	18,546.00	11-1	t	0.00		Monthly
13788	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3877	2024-02-12	2025-01-01	32,870.00	13-1	t	0.00		Monthly
13789	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3877	2021-11-08	2024-12-31	29,165.00	12-1	t	0.00		Monthly
13790	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3877	2018-08-01	2021-11-07	23,877.00	11-1	t	0.00		Monthly
13806	SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL	TEACHER III		Permanent	3881	2025-01-01	2025-03-24	31,320.00	11-2	t	0.00		Monthly
13807	SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL	TEACHER I		Permanent	3881	2023-01-01	2023-12-31	20,932.00	11-2	t	0.00		Monthly
13808	SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL	TEACHER I		Permanent	3881	2022-01-01	2022-12-31	25,723.00	11-2	t	0.00		Monthly
13809	SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL	TEACHER I		Permanent	3881	2021-06-04	2021-12-31	24,161.00	11-2	t	0.00		Monthly
13810	SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL	TEACHER I		Permanent	3881	2021-01-01	2021-06-03	27,284.00	11-2	t	0.00		Monthly
13811	SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL	TEACHER I		Permanent	3881	2020-01-01	2020-12-31	20,784.00	11-1	t	0.00		Monthly
13812	SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL	TEACHER I		Permanent	3881	2019-01-01	2019-12-31	20,754.00	11-1	t	0.00		Monthly
13813	SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL	TEACHER I		Permanent	3881	2018-06-04	2018-12-31	20,179.00	11-1	t	0.00		Monthly
13814	SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL	TEACHER I		Permanent	3881	2017-07-06	2017-08-08	20,179.00	11-1	t	0.00		Monthly
13791	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3878	2025-01-01	0001-01-01	32,245.00	12-1	t	0.00		Monthly
13792	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3878	2024-01-01	2024-01-01	30,736.00	12-1	t	0.00		Monthly
13793	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3878	2023-01-01	2023-12-31	29,165.00	12-1	t	0.00		Monthly
13794	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3878	2022-03-07	2022-12-31	29,165.00	12-1	t	0.00		Monthly
13795	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3878	2022-01-01	2022-03-06	27,608.00	12-1	t	0.00		Monthly
13796	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3878	2021-11-10	2021-12-31	24,161.00	11-3	t	0.00		Monthly
13797	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3878	2021-01-01	2021-12-31	24,161.00	11-3	t	0.00		Monthly
13798	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3878	2020-01-01	2020-12-31	22,600.00	11-2	t	0.00		Monthly
13799	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3878	2019-01-01	2019-12-31	21,038.00	11-1	t	0.00		Monthly
13800	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3878	2018-01-01	2018-12-31	20,179.00	11-1	t	0.00		Monthly
13801	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3878	2017-01-01	2017-12-31	19,620.00	11-1	t	0.00		Monthly
13802	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3878	2016-01-01	2016-12-31	19,077.00	11-1	t	0.00		Monthly
13803	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3878	2015-11-10	2015-12-31	18,549.00	11-1	t	0.00		Monthly
13804	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3878	2015-08-11	2015-09-08	18,549.00	11-1	t	0.00		Monthly
13805	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3878	2015-01-27	2015-03-26	18,549.00	11-1	t	0.00		Monthly
13815	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3882	2024-08-12	2025-01-01	34,421.00	13-1	t	0.00		Monthly
13816	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3882	2022-10-03	2024-08-11	29,165.00	12-1	t	0.00		Monthly
13817	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3882	2018-06-04	2022-10-02	25,723.00	11-2	t	0.00		Monthly
13818	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3883	2021-01-01	2025-01-01	34,733.00	13-2	t	0.00		Monthly
13819	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3883	2018-10-01	2020-12-31	22,316.00	11-1	t	0.00		Monthly
13820	 DEPARTMENT OF EDUCATION BATANGAS CITY	HEAD TEACHER III		Permanent	3916	2025-01-01	2025-03-24	43,996.00	16-2	f	0.00		Monthly
13821	DEPARTMENT OF EDUCATION BATANGAS CITY	HEAD TEACHER III		Permanent	3916	2024-01-01	2024-12-31	42,052.00	16-2	t	0.00	 	Monthly
13822	DEPARTMENT OF EDUCATION BATANGAS CITY	HEAD TEACHER III		Permanent	3916	2023-01-01	2023-12-31	39,672.00	16-1	t	0.00		Monthly
13823	DEPARTMENT OF EDUCATION BATANGAS CITY	HEAD TEACHER III		Permanent	3916	2022-01-01	2022-12-31	38,150.00	16-1	t	0.00		Monthly
13824	DEPARTMENT OF EDUCATION BATANGAS CITY	HEAD TEACHER III		Permanent	3916	2021-01-01	2021-12-31	36,628.00	16-1	t	0.00		Monthly
13825	DEPARTMENT OF EDUCATION BATANGAS CITY	HEAD TEACHER III		Permanent	3916	2020-11-03	2020-12-31	35,106.00	16-1	t	0.00		Monthly
13826	DEPARTMENT OF EDUCATION BATANGAS CITY	HEAD TEACHER I		Permanent	3916	2020-01-01	2020-11-02	29,277.00	14-1	t	0.00		Monthly
13827	DEPARTMENT OF EDUCATION BATANGAS CITY	HEAD TEACHER I		Permanent	3916	2019-01-01	2019-12-31	27,755.00	14-1	t	0.00		Monthly
13828	DEPARTMENT OF EDUCATION BATANGAS CITY	HEAD TEACHER I		Permanent	3916	2018-09-04	2018-12-31	26,494.00	14-1	t	0.00		Monthly
13829	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER III		Permanent	3916	2018-01-01	2018-09-03	25,387.00	13-3	t	0.00		Monthly
13830	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER III		Permanent	3916	2017-01-01	2017-12-31	24,315.00	13-3	t	0.00		Monthly
13831	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER III		Permanent	3916	2016-12-13	2016-12-31	23,289.00	13-3	t	0.00		Monthly
13832	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER III		Permanent	3916	2016-01-01	2016-12-12	23,045.00	13-3	t	0.00		Monthly
13833	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER III		Permanent	3916	2013-12-14	2015-12-31	22,086.00	13-2	t	0.00		Monthly
13834	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER III		Permanent	3916	2012-12-14	2013-12-12	21,867.00	13-2	t	0.00		Monthly
13835	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER III		Permanent	3916	2012-01-06	2012-12-12	21,650.00	13-2	t	0.00		Monthly
13836	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER III		Permanent	3916	2011-01-06	2012-05-31	19,908.00	13-2	t	0.00		Monthly
13837	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER III		Permanent	3916	2010-06-24	2011-05-31	18,166.00	13-2	t	0.00		Monthly
13838	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER III		Permanent	3916	2009-09-09	2010-06-23	16,424.00	13-2	t	0.00		Monthly
13839	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER III		Permanent	3916	2009-08-09	2009-10-08	16,424.00	13-1	t	0.00		Monthly
13840	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER III		Permanent	3916	2009-01-07	2009-09-08	16,424.00	13-1	t	0.00		Monthly
13841	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER III		Permanent	3916	2008-01-07	2009-06-30	13,850.00	13-1	t	0.00		Monthly
13842	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER III		Permanent	3916	2008-01-01	2008-06-30	12,591.00	13-1	t	0.00		Monthly
13843	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER III		Permanent	3916	2007-01-07	2007-12-31	12,284.00	13-1	t	0.00		Monthly
13844	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER III		Permanent	3916	2004-12-13	2007-06-30	11,167.00	13-1	t	0.00		Monthly
13845	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER II		Permanent	3916	2001-01-07	2004-12-12	10,535.00	12-1	t	0.00		Monthly
13846	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER II		Permanent	3916	2001-01-01	2001-06-30	10,033.00	12-1	t	0.00		Monthly
13847	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER I		Permanent	3916	2000-01-01	2000-12-31	9,466.00	11-2	t	0.00		Monthly
13848	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER I		Permanent	3916	1999-01-01	1999-12-31	8,605.00	11-2	t	0.00		Monthly
13849	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER I		Permanent	3916	1998-01-01	1998-12-31	8,605.00	11-2	t	0.00		Monthly
13850	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER I		Permanent	3916	1997-11-01	1997-12-31	8,605.00	11-2	t	0.00		Monthly
13851	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER I		Permanent	3916	1997-01-01	1997-12-31	7,309.00	11-1	t	0.00		Monthly
13852	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER I		Permanent	3916	1996-01-01	1996-12-31	6,013.00	11-1	t	0.00		Monthly
13853	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER I		Permanent	3916	1995-01-01	1995-12-31	4,902.00	11-1	t	0.00		Monthly
13854	DEPARTMENT OF EDUCATION BATANGAS CITY	TEACHER I		Permanent	3916	1994-06-06	1994-12-31	3,902.00	11-1	t	0.00		Monthly
13855	SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL	TEACHER I		Permanent	3918	2025-01-01	2025-03-24	30,024.00	11-1	t	0.00		Monthly
13856	SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL	TEACHER I		Permanent	3918	2024-01-01	2024-12-31	28,512.00	11-1	t	0.00		Monthly
13857	SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL	TEACHER I		Permanent	3918	2023-01-01	2023-12-31	27,000.00	11-1	t	0.00		Monthly
13858	SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL	TEACHER 		Permanent	3918	2022-11-14	2022-12-31	25,439.00	11-1	t	0.00		Monthly
13859	SAN AGUSTIN KANLURAN ELEMENTARY SCHOOL	TEACHER I		Permanent	3918	2022-06-09	2022-11-13	25,439.00	11-1	t	0.00		Monthly
13860	SUNHILL MONTESSORI CASA - BAUAN, INCORPORATED	TEACHER 		Contractual	3918	2018-06-25	2020-03-30	8,000.00		f	0.00		Monthly
13861	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3917	2000-01-01	2025-01-01	34,004.00	12-7	t	0.00		Monthly
13862	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3917	1998-07-16	1998-12-24	8,605.00	11-1	t	0.00		Monthly
13863	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	ADMINISTRATIVE AIDE I		Permanent	3919	2025-01-01	2025-03-24	14,862.00	1-8	t	0.00		Monthly
13864	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	ADMINISTRATIVE AIDE I		Permanent	3919	2024-01-01	2024-12-31	13,780.00	1-8	t	0.00		Monthly
13865	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	ADMINISTRATIVE AIDE I		Permanent	3919	2023-01-01	2023-12-31	13,780.00	1-8	t	0.00		Monthly
13866	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	ADMINISTRATIVE AIDE I		Permanent	3919	2022-01-01	2022-12-31	13,268.00	1-8	t	0.00		Monthly
13867	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	ADMINISTRATIVE AIDE I		Permanent	3919	2021-01-01	2021-12-31	12,756.00	1-8	t	0.00		Monthly
13868	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	ADMINISTRATIVE AIDE I		Permanent	3919	2020-01-01	2020-12-31	12,244.00	1-8	t	0.00		Monthly
13869	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	ADMINISTRATIVE AIDE I		Permanent	3919	2019-01-01	2019-12-31	11,732.00	1-8	t	0.00		Monthly
13870	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	ADMINISTRATIVE AIDE I		Permanent	3919	2018-01-01	2018-12-31	11,076.00	1-8	t	0.00		Monthly
13871	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	ADMINISTRATIVE AIDE I		Permanent	3919	2017-01-01	2017-12-31	10,543.00	1-7	t	0.00		Monthly
13872	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	ADMINISTRATIVE AIDE I		Permanent	3919	2016-01-01	2016-12-31	10,036.00	1-7	t	0.00		Monthly
13873	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	ADMINISTRATIVE AIDE I		Permanent	3919	2015-01-07	2015-12-31	9,554.00	1-7	t	0.00		Monthly
13874	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	ADMINISTRATIVE AIDE I		Permanent	3919	2012-06-01	2015-01-06	9,459.00	1-6	t	0.00		Monthly
13875	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	ADMINISTRATIVE AIDE I		Permanent	3919	2012-01-07	2012-05-31	8,834.00	1-6	t	0.00		Monthly
13876	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	ADMINISTRATIVE AIDE I		Permanent	3919	2011-06-01	2012-01-06	8,721.00	1-6	t	0.00		Monthly
13877	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	ADMINISTRATIVE AIDE I		Permanent	3919	2010-06-24	2011-05-31	8,077.00	1-5	t	0.00		Monthly
13878	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	ADMINISTRATIVE AIDE I		Permanent	3919	2009-07-01	2010-06-23	7,432.00	1-5	t	0.00		Monthly
13879	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3920	2007-07-02	2025-01-04	33,702.00	12-6	t	0.00		Monthly
13880	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	ADMINISTRATIVE AIDE I		Permanent	3919	2009-01-07	2009-06-30	6,780.00	1-5	t	0.00		Monthly
13881	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	ADMINISTRATIVE AIDE I		Permanent	3919	2008-07-01	2009-01-06	6,622.00	1-4	t	0.00		Monthly
13882	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	ADMINISTRATIVE AIDE I		Permanent	3919	2007-07-01	2008-06-30	6,020.00	1-4	t	0.00		Monthly
13883	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	ADMINISTRATIVE AIDE I		Permanent	3919	2007-01-01	2007-06-30	5,473.00	1-4	t	0.00		Monthly
13884	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	ADMINISTRATIVE AIDE I		Permanent	3919	2004-03-01	2006-12-31	5,339.00	1-3	t	0.00		Monthly
13885	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	ADMINISTRATIVE AIDE I		Permanent	3919	2004-01-01	2004-02-29	5,339.00	1-3	t	0.00		Monthly
13886	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	ADMINISTRATIVE AIDE I		Permanent	3919	2004-01-01	2004-02-29	5,339.00	1-3	t	0.00		Monthly
13887	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3920	2001-01-04	2007-07-01	9,939.00	12-1	t	0.00		Monthly
13888	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	ADMINISTRATIVE AIDE I		Permanent	3919	2002-01-01	2003-12-31	5,209.00	1-2	t	0.00		Monthly
13889	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	ADMINISTRATIVE AIDE I		Permanent	3919	2001-07-01	2001-12-31	5,082.00	1-2	t	0.00		Monthly
13890	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	ADMINISTRATIVE AIDE I		Permanent	3919	2000-01-01	2001-06-30	4,840.00	1-2	t	0.00		Monthly
13891	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	ADMINISTRATIVE AIDE I		Permanent	3919	1997-01-06	1999-12-31	4,400.00	1-1	t	0.00		Monthly
13892	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3879	2025-01-01	0001-01-01	34,421.00	13-1	t	0.00		Monthly
13893	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3879	2024-01-01	2024-12-31	31,320.00	13-1	t	0.00		Monthly
13894	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3879	2023-01-17	2023-12-31	31,320.00	13-1	t	0.00		Monthly
13895	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3879	2023-01-01	2023-01-16	30,028.00	12-4	t	0.00		Monthly
13896	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3879	2022-11-06	2022-12-31	28,471.00	12-4	t	0.00		Monthly
13897	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3879	2022-01-01	2022-11-05	28,180.00	12-4	t	0.00		Monthly
13898	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3879	2021-01-01	2021-12-31	26,624.00	12-3	t	0.00		Monthly
13899	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3879	2020-01-01	2020-12-31	25,067.00	12-3	t	0.00		Monthly
13925	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER III		Permanent	3921	2025-01-01	2025-03-25	34,733.00	13-2	t	0.00		Monthly
13926	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER III		Permanent	3921	2024-01-01	2024-12-31	31,633.00	13-2	t	0.00		Monthly
13927	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER III		Permanent	3921	2023-01-03	2023-12-31	31,633.00	13-2	t	0.00		Monthly
13928	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER III		Permanent	3921	2023-01-01	2023-11-02	31,320.00	13-1	t	0.00		Monthly
13929	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER III		Permanent	3921	2022-01-01	2022-12-31	29,798.00	13-1	t	0.00		Monthly
13930	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER III		Permanent	3921	2021-01-01	2021-12-31	28,276.00	13-1	t	0.00		Monthly
13931	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER III		Permanent	3921	2020-11-03	2020-12-31	26,754.00		t	0.00		Monthly
13932	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3921	2020-01-01	2020-11-02	23,778.00	11-6	t	0.00		Monthly
13933	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3921	2019-08-19	2019-12-31	22,216.00	11-6	t	0.00		Monthly
13934	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3921	2019-01-01	2019-08-18	21,535.00	11-5	t	0.00		Monthly
13935	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3921	2018-01-01	2018-12-31	21,231.00	11-5	t	0.00		Monthly
13936	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3921	2017-01-01	2017-12-31	20,567.00	11-5	t	0.00		Monthly
13937	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3921	2016-08-19	2016-12-31	19,935.00	11-5	t	0.00		Monthly
13938	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3921	2016-01-01	2016-08-18	19,709.00	11-4	t	0.00		Monthly
13939	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3921	2013-08-20	2015-12-13	19,111.00	11-4	t	0.00		Monthly
13940	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3921	2012-08-01	2013-08-19	18,922.00	11-3	t	0.00		Monthly
13941	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3921	2011-08-20	2012-05-31	17,540.00	11-3	t	0.00		Monthly
13942	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3921	2011-06-01	2011-08-09	17,318.00	11-2	t	0.00		Monthly
13943	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3921	2010-06-24	2011-05-31	15,900.00	11-2	t	0.00		Monthly
13944	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3921	2009-07-01	2010-06-23	14,483.00	11-2	t	0.00		Monthly
13945	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3921	2008-07-01	2009-06-30	12,328.00	11-2	t	0.00		Monthly
13946	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3921	2008-01-01	2008-06-30	11,207.00	11-2	t	0.00		Monthly
13947	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3921	2007-07-01	2007-12-31	10,933.00	11-1	t	0.00		Monthly
13948	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3921	2004-08-19	2007-06-30	9,939.00	11-1	t	0.00		Monthly
13949	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3921	2001-07-01	2004-08-16	9,939.00	11-1	t	0.00		Monthly
13950	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3921	2001-06-18	2001-06-30	9,466.00	11-1	t	0.00		Monthly
13975	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER III		Permanent	3922	2025-01-01	2025-03-25	34,421.00	13-1	t	0.00		Monthly
13976	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER III		Permanent	3922	2024-09-09	2024-12-31	32,870.00	13-1	t	0.00		Monthly
13977	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER II		Permanent	3922	2024-01-01	2024-09-08	30,028.00	12-4	t	0.00		Monthly
13978	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER II		Permanent	3922	2023-01-01	2023-12-31	30,028.00	12-4	t	0.00		Monthly
13979	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER II		Permanent	3922	2022-08-14	2022-12-31	28,471.00	12-4	t	0.00		Monthly
13980	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER II		Permanent	3922	2022-01-01	2022-08-13	28,180.00	12-3	t	0.00		Monthly
13981	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER II		Permanent	3922	2021-01-01	2021-12-31	26,624.00	12-3	t	0.00		Monthly
13982	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER II		Permanent	3922	2020-01-01	2020-12-31	25,067.00	12-3	t	0.00		Monthly
13983	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER II		Permanent	3922	2019-08-14	2019-12-31	23,510.00	12-3	t	0.00		Monthly
13984	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER II		Permanent	3922	2019-01-01	2019-08-13	23,222.00	12-2	t	0.00		Monthly
13985	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER II		Permanent	3922	2018-01-01	2018-12-31	22,410.00	12-2	t	0.00		Monthly
13986	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER II		Permanent	3922	2017-01-01	2017-12-31	21,626.00	12-2	t	0.00		Monthly
13987	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER II		Permanent	3922	2016-08-14	2016-12-31	20,870.00	12-1	t	0.00		Monthly
13988	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER II		Permanent	3922	2016-01-01	2016-08-13	20,651.00	12-1	t	0.00		Monthly
13989	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER II		Permanent	3922	2013-08-14	2015-12-31	19,940.00	12-1	t	0.00		Monthly
13990	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3922	2012-06-01	2013-08-13	18,549.00	11-1	t	0.00		Monthly
13991	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3922	2011-06-01	2012-05-31	17,069.00	11-1	t	0.00		Monthly
13992	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3922	2010-06-24	2011-05-31	15,649.00	11-1	t	0.00		Monthly
13993	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3922	2009-07-01	2010-06-23	14,198.00	11-1	t	0.00		Monthly
13994	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3922	2008-07-01	2009-06-30	12,026.00	11-1	t	0.00		Monthly
13995	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3922	2007-07-01	2008-06-30	10,933.00	11-1	t	0.00		Monthly
13996	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3922	2007-06-04	2007-06-30	9,939.00	11-1	t	0.00		Monthly
13997	DEPARTMENT OF EDUCATION / DIVISION OF BATANGAS CITY / PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3922	2006-02-06	2007-06-03	9,939.00	11-1	t	0.00		Monthly
13998	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3879	2019-11-06	2019-12-31	23,510.00	12-3	t	0.00		Monthly
13999	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3879	2019-01-01	2019-11-05	23,222.00	12-3	t	0.00		Monthly
14000	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3879	2018-01-01	2018-12-31	22,410.00	12-2	t	0.00		Monthly
14001	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3879	2017-01-01	2017-12-31	21,626.00	12-2	t	0.00		Monthly
14002	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3879	2016-11-06	2016-12-31	20,870.00	12-2	t	0.00		Monthly
14003	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3879	2016-01-01	2016-11-05	20,651.00	12-2	t	0.00		Monthly
14004	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3879	2013-11-06	2015-12-31	19,940.00	12-1	t	0.00		Monthly
14005	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3879	2012-12-03	2013-11-05	18,735.00	11-2	t	0.00		Monthly
14006	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3879	2012-06-01	2012-12-02	18,549.00	11-1	t	0.00		Monthly
14007	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3879	2011-06-01	2012-05-31	17,099.00	11-1	t	0.00		Monthly
14008	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3879	2009-12-02	2010-06-23	14,198.00	11-1	t	0.00		Monthly
14009	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3879	2008-07-28	2009-11-30	9,939.00	11-1	t	0.00		Monthly
14010	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3879	2010-06-24	2011-05-31	15,649.00	11-1	t	0.00		Monthly
14011	DEPARTMENT OF EDUCATION / PARANG ELEMENTARY SCHOOL	TEACHER I		Permanent	3923	2024-10-18	2025-03-26	30,024.00	11-1	t	0.00		Monthly
14012	DEPARTMENT OF EDUCATION / SAN AGAPITO ELEMENTARY SCHOOL	TEACHER I		Substitute	3923	2024-08-05	2024-09-06	27,000.00	11-1	t	0.00		Monthly
14013	DEPARTMENT OF EDUCATION / SAN AGAPITO INTEGRATED HIGH SCHOOL	ADMINISTRATIVE SUPPORT STAFF		Contractual	3923	2024-04-17	2024-07-26	11,440.00		f	0.00		Monthly
14014	SMART INTERNATIONAL SCHOOL	TEACHER		Contractual	3923	2022-10-16	2023-10-16	20,000.00		f	0.00		Monthly
14015	HOME OF KNOWLEDGE LEARNING AND TUTORIAL CENTER	TEACHER-TUROR		Contractual	3923	2019-06-17	2020-03-13	6,000.00		f	0.00		Monthly
14016	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3880	2025-01-01	0001-01-01	34,004.00	11-7	t	0.00		Monthly
14017	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3880	2024-02-20	2024-12-31	30,924.00	11-7	t	0.00		Monthly
14018	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3880	2024-01-01	2024-02-19	30,622.00	11-6	t	0.00		Monthly
14019	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3880	2023-01-01	2023-12-31	30,622.00	11-6	t	0.00		Monthly
14020	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3880	2022-01-01	2022-12-31	27,509.00	11-6	t	0.00		Monthly
14021	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3880	2021-02-20	2021-12-31	26,915.00	11-5	t	0.00		Monthly
14022	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3880	2021-01-01	2021-02-19	25,358.00	11-5	t	0.00		Monthly
14023	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3880	2020-01-01	2020-12-31	23,801.00	11-5	t	0.00		Monthly
14024	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3880	2019-01-01	2019-12-31	23,801.00	11-4	t	0.00		Monthly
14025	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3880	2017-01-01	2018-12-31	22,113.00	11-4	t	0.00		Monthly
14026	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3880	2016-01-01	2017-12-31	21,315.00	11-4	t	0.00		Monthly
14027	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3880	2015-02-20	2015-12-31	20,545.00	11-3	t	0.00		Monthly
14028	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3880	2012-06-01	2015-02-19	20,341.00	11-3	t	0.00		Monthly
14029	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3880	2012-02-20	2012-05-31	18,568.00	11-3	t	0.00		Monthly
14030	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3880	2011-06-01	2012-02-19	16,995.00	11-2	t	0.00		Monthly
14031	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3880	2010-06-24	2011-05-31	15,422.00	11-2	t	0.00		Monthly
14032	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3880	2009-02-21	2010-06-23	13,066.00	11-2	t	0.00		Monthly
14033	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3880	2008-07-01	2009-06-30	12,748.00	11-2	t	0.00		Monthly
14034	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3880	2003-01-01	2008-06-30	10,978.00	10-3	t	0.00		Monthly
14035	SAN AGAPITO ELEMENTARY SCHOOL	PRINCIPAL I		Permanent	3924	2025-01-03	2025-03-26	56,390.00	17-2	t	0.00		Monthly
14036	SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL	HEAD TEACHER IV		Permanent	3924	2025-01-01	2025-01-02	47,727.00	17-2	t	0.00		Monthly
14037	SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL	HEAD TEACHER IV		Permanent	3924	2024-01-01	2024-12-31	45,619.00	17-2	t	0.00		Monthly
14038	SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL	HEAD TEACHER IV		Permanent	3924	2023-01-01	2023-12-31	43,488.00	17-2	t	0.00		Monthly
14039	SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL	HEAD TEACHER IV		Permanent	3924	2022-10-28	2022-12-31	41,966.00	17-2	t	0.00		Monthly
14040	SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL	HEAD TEACHER IV		Permanent	3924	2022-01-01	2022-10-27	41,508.00	17-2	t	0.00		Monthly
14041	SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL	HEAD TEACHER IV		Permanent	3924	2021-01-01	2021-12-31	39,986.00	17-1	t	0.00		Monthly
14042	SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL	HEAD TEACHER IV		Permanent	3924	2020-01-01	2020-12-31	38,464.00	17-1	t	0.00		Monthly
14043	SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL	HEAD TEACHER IV		Permanent	3924	2019-10-28	2019-12-31	36,942.00	17-1	t	0.00		Monthly
14068	SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL	HEAD TEACHER III		Permanent	3924	2019-01-01	2019-12-27	34,847.00	16-3	t	0.00		Monthly
14069	SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL	HEAD TEACHER III		Permanent	3924	2018-07-03	2018-12-31	32,926.00	16-3	t	0.00		Monthly
14070	SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL	HEAD TEACHER III		Permanent	3924	2018-01-01	2018-07-02	32,535.00	16-3	t	0.00		Monthly
14071	SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL	HEAD TEACHER III		Permanent	3924	2017-01-01	2017-12-31	30,751.00	16-3	t	0.00		Monthly
14072	SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL	HEAD TEACHER III		Permanent	3924	2016-01-01	2016-12-31	29,066.00	16-3	t	0.00		Monthly
14073	SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL	HEAD TEACHER III		Permanent	3924	2015-07-03	2015-12-31	27,473.00	16-3	t	0.00		Monthly
14074	SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL	HEAD TEACHER III		Permanent	3924	2015-07-02	2015-07-07	27,174.00	16-2	t	0.00		Monthly
14075	SAN AGUSTIN SILANGAN ELEMENTARY SCHOOL	HEAD TEACHER III		Permanent	3924	2012-06-01	2012-07-06	26,878.00	16-1	t	0.00		Monthly
14076	VERDE ISLAND	HEAD TEACHER III		Permanent	3924	2011-06-01	2012-05-31	24,423.00	16-0	t	0.00		Monthly
14077	VERDE ISLAND	HEAD TEACHER III		Permanent	3924	2010-06-24	2011-05-31	21,969.00	16-0	t	0.00		Monthly
14078	VERDE ISLAND	HEAD TEACHER III		Permanent	3924	2009-06-06	2010-06-23	19,514.00	16-0	t	0.00		Monthly
14079	VERDE ISLAND	HEAD TEACHER III		Permanent	3924	2009-07-05	2009-07-07	16,424.00	13-1	t	0.00		Monthly
14080	NEW DISTRICT	TEACHER III		Permanent	3924	2008-07-01	2009-06-30	13,850.00	13-1	t	0.00		Monthly
14081	NEW DISTRICT	TEACHER III		Permanent	3924	2008-02-08	2008-06-30	12,591.00	13-1	t	0.00		Monthly
14082	NEW DISTRICT	TEACHER III		Permanent	3924	2007-07-01	2008-02-07	12,284.00	13-0	t	0.00		Monthly
14083	NEW DISTRICT	TEACHER III		Permanent	3924	2005-02-07	2007-06-30	11,167.00	13-0	t	0.00		Monthly
14084	NEW DISTRICT	TEACHER III		Permanent	3924	2002-01-09	2005-02-06	10,535.00	12-0	t	0.00		Monthly
14085	NEW DISTRICT	TEACHER II		Permanent	3924	2001-07-25	2002-01-08	9,939.00	11-0	t	0.00		Monthly
14086	NEW DISTRICT	TEACHER I		Permanent	3924	2001-07-01	2001-07-24	9,939.00	11-0	t	0.00		Monthly
14087	NEW DISTRICT	TEACHER I		Permanent	3924	2001-06-25	2001-06-30	9,466.00	11-0	t	0.00		Monthly
14088	NEW DISTRICT	TEACHER I		Permanent	3924	2000-01-01	2001-06-24	9,466.00	11-0	t	0.00		Monthly
14089	NEW DISTRICT	TEACHER I		Permanent	3924	1999-01-01	1999-12-31	8,605.00	11-0	t	0.00		Monthly
14090	NEW DISTRICT	TEACHER I		Permanent	3924	1998-02-01	1998-12-31	8,605.00	11-0	t	0.00		Monthly
14091	NEW DISTRICT	TEACHER I		Permanent	3924	1998-01-05	1998-01-31	8,605.00	11-0	t	0.00		Monthly
14092	NEW DISTRICT	TEACHER I		Permanent	3924	1998-01-02	1998-01-04	8,605.00	11-0	t	0.00		Monthly
14093	NEW DISTRICT	TEACHER I		Permanent	3924	1997-01-01	1997-01-01	8,605.00	11-0	t	0.00		Monthly
14094	NEW DISTRICT	TEACHER I		Permanent	3924	1997-12-05	1997-12-31	8,605.00	11-0	t	0.00		Monthly
14095	NEW DISTRICT	TEACHER I		Permanent	3924	1997-01-11	1997-04-12	8,605.00	11-0	t	0.00		Monthly
14096	NEW DISTRICT	TEACHER I		Permanent	3924	1997-01-01	1997-12-31	7,309.00	11-0	t	0.00		Monthly
14097	NEW DISTRICT	TEACHER I		Permanent	3924	1996-10-09	1996-12-31	6,013.00	11-0	t	0.00		Monthly
14098	DEPARTMENT OF EDUCATION	HEAD TEACHER II		Permanent	3925	2025-01-03	0001-01-01	40,203.00	15-1	t	0.00		Monthly
14099	DEPARTMENT OF EDUCATION	HEAD TEACHER I		Permanent	3925	2024-01-02	2025-01-02	37,384.00	14-2	t	0.00		Monthly
14100	DEPARTMENT OF EDUCATION	HEAD TEACHER I		Permanent	3925	2023-01-01	2024-01-01	33,843.00	14-1	t	0.00		Monthly
14101	DEPARTMENT OF EDUCATION	HEAD TEACHER I		Permanent	3925	2022-01-01	2022-12-31	32,321.00	14-1	t	0.00		Monthly
14102	DEPARTMENT OF EDUCATION	HEAD TEACHER I		Permanent	3925	2021-01-01	2021-12-31	30,799.00	14-1	t	0.00		Monthly
14103	DEPARTMENT OF EDUCATION	HEAD TEACHER I		Permanent	3925	2020-11-03	2020-12-31	29,277.00	14-1	t	0.00		Monthly
14104	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3925	2020-01-01	2020-11-01	27,383.00	13-3	t	0.00		Monthly
14105	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3925	2019-01-01	2019-12-31	25,861.00	13-3	t	0.00		Monthly
14106	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3925	2018-01-01	2018-12-31	24,799.00	13-3	t	0.00		Monthly
14107	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3925	2017-01-01	2017-12-31	23,780.00	13-3	t	0.00		Monthly
14108	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3925	2016-12-15	2016-12-31	22,804.00	13-2	t	0.00		Monthly
14109	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3925	2016-01-01	2016-12-14	22,564.00	13-2	t	0.00		Monthly
14110	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3925	2013-12-16	2015-12-31	21,650.00	13-2	t	0.00		Monthly
14111	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3925	2012-06-01	2013-12-15	21,436.00	13-2	t	0.00		Monthly
14112	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3925	2011-06-01	2012-05-31	19,658.00	13-1	t	0.00		Monthly
14113	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3925	2010-12-15	2011-05-31	17,880.00	13-1	t	0.00		Monthly
14114	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3925	2010-10-05	2010-12-14	17,880.00	13-1	t	0.00		Monthly
14115	DEPARTMENT OF EDUCATION	TEACHER III		Permanent	3925	2010-09-05	2010-10-04	17,880.00	13-1	t	0.00		Monthly
14116	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3925	2010-06-24	2010-09-04	16,995.00	12-2	t	0.00		Monthly
14118	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3925	2009-02-02	2009-06-30	13,006.00	12-2	t	0.00		Monthly
14119	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3925	2008-07-01	2009-02-01	12,753.00	12-1	t	0.00		Monthly
14120	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3925	2007-07-01	2008-06-30	11,589.00	12-1	t	0.00		Monthly
14121	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3925	2006-02-01	2007-06-30	10,535.00	12-1	t	0.00		Monthly
14122	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3925	2005-03-01	2006-01-31	10,188.00	11-1	t	0.00		Monthly
14123	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3925	2001-07-01	2005-02-28	9,939.00	11-1	t	0.00		Monthly
14124	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3925	2000-08-09	2001-06-30	9,466.00	11-1	t	0.00		Monthly
14125	DEPARTMENT OF EDUCATION	TEACHER I		Substitute	3925	2000-06-05	2000-07-17	9,466.00	11-1	t	0.00		Monthly
14117	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3925	2009-07-01	2010-06-23	15,422.00	12-2	t	0.00		Monthly
14126	SAN AGAPITO ELEMENTARY SCHOOL	TEACHER I		Permanent	3961	2025-01-01	2025-03-26	30,024.00	11-1	t	0.00		Monthly
14127	SAN AGAPITO ELEMENTARY SCHOOL	TEACHER I		Permanent	3961	2024-08-12	2024-12-31	28,512.00	11-	t	0.00		Monthly
14128	LEMERY PILOT ELEMENTARY SCHOOL	TEACHER I		Substitute	3961	2022-02-28	2022-06-10	25,439.00	11-	t	0.00		Monthly
14129	LEMERY PILOT ELEMENTARY SCHOOL	TEACHER I		Substitute	3961	2021-09-16	2021-12-17	23,877.00	11-	t	0.00		Monthly
14130	LEMERY PILOT ELEMENTARY SCHOOL	TEACHER I		Substitute	3961	2021-06-23	2021-07-31	23,877.00	11-	t	0.00		Monthly
14131	LEMERY PILOT ELEMENTARY SCHOOL	TEACHER I		Substitute	3961	2021-05-25	2021-06-19	23,877.00	11-	t	0.00		Monthly
14132	LEMERY PILOT ELEMENTARY SCHOOL	TEACHER I		Substitute	3961	2021-04-27	2021-05-20	23,877.00	11-	t	0.00		Monthly
14133	LEMERY PILOT ELEMENTARY SCHOOL	TEACHER I		Substitute	3961	2021-01-04	2021-02-22	22,316.00	11-	t	0.00		Monthly
14134	LEMERY PILOT ELEMENTARY SCHOOL	TEACHER I		Substitute	3961	2020-11-20	2020-12-18	22,316.00	11-	t	0.00		Monthly
14135	LEMERY PILOT ELEMENTARY SCHOOL	TEACHER I		Substitute	3961	2020-09-18	2020-10-17	22,316.00	11-	t	0.00		Monthly
14159	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE 1		Permanent	3960	2025-01-01	0001-01-01	14,862.00	01-1	t	0.00		Monthly
14160	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3960	2024-01-01	2024-12-31	14,331.00	01-1	t	0.00		Monthly
14161	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3960	2023-01-01	2023-12-31	24,697.00	01-1	t	0.00		Monthly
14162	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3960	2022-01-01	2022-12-31	23,763.00	01-1	t	0.00		Monthly
14163	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3960	2021-01-01	2021-12-31	23,486.00	01-1	t	0.00		Monthly
14164	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3960	2020-01-01	2020-12-31	22,611.00	01-1	t	0.00		Monthly
14165	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3960	2019-01-01	2019-12-31	21,769.00	01-1	t	0.00		Monthly
14166	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3960	2018-01-01	2018-12-31	20,958.00	01-1	t	0.00		Monthly
14167	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3960	2017-01-01	2017-12-31	20,750.00	01-1	t	0.00		Monthly
14168	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3960	2016-01-01	2016-12-31	20,545.00	01-1	t	0.00		Monthly
14169	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3960	2015-01-01	2015-12-31	19,047.00	01-1	f	0.00		Monthly
14170	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3960	2014-01-01	2014-12-31	17,548.00	01-1	t	0.00		Monthly
14171	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3960	2013-01-01	2013-12-31	16,050.00	01-1	t	0.00		Monthly
14172	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3960	2012-01-01	2012-12-31	13,726.00	01-1	t	0.00		Monthly
14173	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3960	2011-01-01	2011-12-31	13,392.00	01-1	t	0.00		Monthly
14174	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3960	2010-01-01	2010-12-31	12,175.00	01-1	t	0.00		Monthly
14175	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3960	2009-01-01	2009-12-31	11,068.00	01-1	t	0.00		Monthly
14176	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3960	2008-01-01	2008-12-31	10,971.00	01-1	t	0.00		Monthly
14177	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3960	2007-01-01	2007-12-31	10,704.00	01-1	t	0.00		Monthly
14178	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3960	2006-01-01	2006-12-31	9,939.00	01-1	t	0.00		Monthly
14179	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3960	2005-01-01	2005-12-31	9,466.00	01-1	t	0.00		Monthly
14180	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3960	2004-01-01	2004-12-31	8,583.00	01-1	t	0.00		Monthly
14181	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3960	2003-01-01	2003-12-31	8,605.00	01-1	t	0.00		Monthly
14182	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3960	2002-01-01	2002-12-31	8,605.00	01-1	t	0.00		Monthly
14183	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3960	2001-01-01	2001-12-31	8,605.00	01-1	t	0.00		Monthly
14184	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3960	2000-01-01	2000-12-31	7,309.00	01-1	t	0.00		Monthly
14185	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3960	1999-01-01	1999-12-31	6,013.00	01-1	t	0.00		Monthly
14186	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3960	1998-01-01	1998-12-31	4,902.00	01-1	t	0.00		Monthly
14187	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3960	1997-01-01	1997-12-31	4,902.00	01-1	t	0.00		Monthly
14188	DEPARTMENT OF EDUCATION	ADMINISTRATIVE AIDE I		Permanent	3960	1996-01-01	1996-12-31	4,902.00	01-1	t	0.00		Monthly
14189	DONA MATILDE MEMORIAL ELEMENTARY SCHOOL	TEACHER I		Substitute	3961	2020-02-17	2020-04-03	22,316.00	11-	t	0.00		Monthly
14190	LEMERY PILOT ELEMENTARY SCHOOL	TEACHER I		Substitute	3961	2020-01-06	2020-02-02	20,754.00	11-	t	0.00		Monthly
14191	LEMERY PILOT ELEMENTARY SCHOOL	TEACHER I		Substitute	3961	2019-10-28	2019-12-13	20,754.00	11-	t	0.00		Monthly
14192	LEMERY PILOT ELEMENTARY SCHOOL	TEACHER I		Substitute	3961	2019-09-03	2019-10-03	20,754.00	11-	t	0.00		Monthly
14193	CULTIHAN BOLBOK ELEMENTARY SCHOOL	TEACHER I		Substitute	3961	2019-07-04	2019-08-22	20,754.00	11-	t	0.00		Monthly
14194	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3958	2025-01-15	0001-01-01	30,204.00	11-1	t	0.00		Monthly
14195	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3959	2025-01-01	0001-01-01	30,705.00	12-1	t	0.00		Monthly
14196	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3959	2024-01-01	2024-12-31	27,573.00	12-1	t	0.00		Monthly
14197	DEPARTMENT OF EDUCATION	TEACHER II		Permanent	3959	2023-01-01	2023-12-31	27,573.00	12-1	t	0.00		Monthly
14198	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3959	2022-01-02	2022-12-31	26,012.00	11-3	t	0.00		Monthly
14199	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3959	2021-01-19	2021-12-31	26,012.00	11-2	t	0.00		Monthly
14200	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3959	2020-01-01	2020-12-31	22,600.00	11-2	t	0.00		Monthly
14202	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3959	2019-01-01	2019-06-12	20,754.00	11-1	t	0.00		Monthly
14203	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3959	2018-01-01	2018-12-31	20,177.00	11-1	t	0.00		Monthly
14204	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3959	2017-01-01	2017-12-31	19,620.00	11-1	t	0.00		Monthly
14205	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3959	2016-06-13	2016-12-31	19,077.00	11-1	t	0.00		Monthly
14206	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3959	2016-01-01	2016-06-12	19,077.00	11-1	t	0.00		Monthly
14207	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3959	2015-07-01	2015-12-31	18,549.00	11-1	t	0.00		Monthly
14208	DEPARTMENT OF EDUCATION	VOLUNTEER TEACHER		Volunteer	3959	2013-06-01	2015-06-20	3,000.00		t	0.00		Monthly
14201	DEPARTMENT OF EDUCATION	TEACHER I		Permanent	3959	2019-06-13	2019-12-31	21,035.00	11-1	t	0.00		Monthly
14209	SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO ELEMENTARY SCHOOL	TEACHER III		Permanent	3962	2025-01-01	2025-03-26	34,421.00	13-	t	0.00		Monthly
14210	SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO ELEMENTARY SCHOOL	TEACHER III		Permanent	3962	2024-01-01	2024-12-31	32,870.00	13-	t	0.00		Monthly
14211	SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO ELEMENTARY SCHOOL	TEACHER III		Permanent	3962	2023-01-17	2023-12-31	31,320.00	13-	t	0.00		Monthly
14212	SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO ELEMENTARY SCHOOL	TEACHER II		Permanent	3962	2023-01-01	2023-01-16	29,712.00	13-	t	0.00		Monthly
14213	SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO ELEMENTARY SCHOOL	TEACHER II		Permanent	3962	2022-06-13	2022-12-31	28,180.00	12-2	t	0.00		Monthly
14214	SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO ELEMENTARY SCHOOL	TEACHER II		Permanent	3962	2022-01-01	2022-06-12	27,892.00	12-2	t	0.00		Monthly
14215	SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO ELEMENTARY SCHOOL	TEACHER II		Permanent	3962	2021-10-01	2021-12-31	26,336.00	12-1	t	0.00		Monthly
14216	SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO ELEMENTARY SCHOOL	TEACHER II		Permanent	3962	2021-01-01	2021-09-30	26,052.00	12-1	t	0.00		Monthly
14217	SCHOOLS DIVISION OF BATANGAS CITY / SAN AGAPITO ELEMENTARY SCHOOL	TEACHER II		Permanent	3962	2020-01-01	2020-12-31	24,328.00	12-1	t	0.00		Monthly
14218	VERDE ISLAND DISTRICT	TEACHER II		Permanent	3962	2019-01-01	2019-12-31	22,938.00	12-1	t	0.00		Monthly
14219	VERDE ISLAND DISTRICT	TEACHER II		Permanent	3962	2018-01-01	2018-12-31	22,149.00	12-1	t	0.00		Monthly
14220	VERDE ISLAND DISTRICT	TEACHER II		Permanent	3962	2017-01-01	2017-12-31	21,387.00	12-1	t	0.00		Monthly
14221	VERDE ISLAND DISTRICT	TEACHER II		Permanent	3962	2016-06-13	2016-12-31	20,651.00	12-1	t	0.00		Monthly
14222	VERDE ISLAND DISTRICT	TEACHER I		Permanent	3962	2016-01-01	2016-06-12	20,142.00	12-1	t	0.00		Monthly
14223	VERDE ISLAND DISTRICT	TEACHER I		Permanent	3962	2013-10-06	2015-12-31	19,495.00	11-4	t	0.00		Monthly
14224	VERDE ISLAND DISTRICT	TEACHER I		Permanent	3962	2012-06-01	2013-10-05	19,302.00	11-3	t	0.00		Monthly
14225	VERDE ISLAND DISTRICT	TEACHER I		Permanent	3962	2011-10-06	2012-05-31	17,994.00	11-3	t	0.00		Monthly
14226	VERDE ISLAND DISTRICT	TEACHER I		Permanent	3962	2011-06-01	2011-10-05	17,765.00	11-2	t	0.00		Monthly
14227	VERDE ISLAND DISTRICT	TEACHER I		Permanent	3962	2010-06-24	2011-01-05	16,419.00	11-2	t	0.00		Monthly
14228	VERDE ISLAND DISTRICT	TEACHER I		Permanent	3962	2009-07-01	2010-06-23	15,072.00	11-2	t	0.00		Monthly
14229	VERDE ISLAND DISTRICT	TEACHER I		Permanent	3962	2008-07-01	2009-06-30	12,951.00	11-2	t	0.00		Monthly
14230	VERDE ISLAND DISTRICT	TEACHER I		Permanent	3962	2008-01-01	2008-06-30	11,774.00	11-2	t	0.00		Monthly
14231	VERDE ISLAND DISTRICT	TEACHER I		Permanent	3962	2008-01-01	2008-06-30	11,774.00	11-2	t	0.00		Monthly
14232	NEW DISTRICT 	TEACHER I		Permanent	3962	2007-07-01	2007-12-31	11,486.00	11-1	t	0.00		Monthly
14233	NEW DISTRICT 	TEACHER I		Permanent	3962	2005-01-01	2007-06-30	10,442.00	11-1	t	0.00		Monthly
14234	NEW DISTRICT 	TEACHER I		Permanent	3962	2002-01-01	2004-12-31	10,188.00	11-1	t	0.00		Monthly
14235	NEW DISTRICT 	TEACHER I		Permanent	3962	2001-07-01	2001-12-31	9,939.00	11-	t	0.00		Monthly
14236	NEW DISTRICT 	TEACHER I		Permanent	3962	2000-01-01	2001-06-30	9,466.00	11-	t	0.00		Monthly
14237	NEW DISTRICT 	TEACHER I		Permanent	3962	1999-01-01	1999-12-31	8,605.00	11-	t	0.00		Monthly
14238	NEW DISTRICT 	TEACHER I		Permanent	3962	1998-10-05	1998-12-31	8,605.00	11-	t	0.00		Monthly
14239	SCHOOLS DIVISION BATANGAS CITY / SAN AGAPITO ELEMENTARY SCHOOL	TEACHER I		Permanent	3967	2025-01-01	2025-03-27	30,024.00	11-1	t	0.00		Monthly
\.


--
-- TOC entry 4607 (class 0 OID 0)
-- Dependencies: 297
-- Name: Experiences_ExperienceId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Experiences_ExperienceId_seq"', 14239, true);


--
-- TOC entry 3920 (class 0 OID 17012)
-- Dependencies: 298
-- Data for Name: FaceScannerDevices; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "FaceScannerDevices" ("FaceScannerDeviceId", "FaceScannerType", "SerialNumber", "DeviceIp", "StationId", "DevicePort", "PreviousHarvestedDate") FROM stdin;
\.


--
-- TOC entry 4608 (class 0 OID 0)
-- Dependencies: 299
-- Name: FaceScannerDevices_FaceScannerDeviceId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"FaceScannerDevices_FaceScannerDeviceId_seq"', 11, true);


--
-- TOC entry 3922 (class 0 OID 17022)
-- Dependencies: 300
-- Data for Name: FaceScannerLogs; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "FaceScannerLogs" ("FaceScannerLogId", "FaceScannerDeviceId", "LogDateTime", "CardNumber", "Remarks", "EmployeeNumber", "DeviceLogId") FROM stdin;
\.


--
-- TOC entry 4609 (class 0 OID 0)
-- Dependencies: 301
-- Name: FaceScannerLogs_FaceScannerLogId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"FaceScannerLogs_FaceScannerLogId_seq"', 75043, true);


--
-- TOC entry 3924 (class 0 OID 17032)
-- Dependencies: 302
-- Data for Name: FlapBarriers; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "FlapBarriers" ("FlapBarrierId", "IpAddress", "Direction", "StationId") FROM stdin;
\.


--
-- TOC entry 4610 (class 0 OID 0)
-- Dependencies: 303
-- Name: FlapBarriers_FlapBarrierId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"FlapBarriers_FlapBarrierId_seq"', 1, false);


--
-- TOC entry 3926 (class 0 OID 17040)
-- Dependencies: 304
-- Data for Name: GSISContributions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "GSISContributions" ("GSISContributionId", "TypeOfInsuranceCoverage", "Life", "Retirement", "EffectivityDate") FROM stdin;
3	Government Share	0.02	0.10	2009-01-01
4	Personal Share	0.02	0.07	2009-01-01
5	Family Share	0.02	0.10	2017-07-01
\.


--
-- TOC entry 4611 (class 0 OID 0)
-- Dependencies: 305
-- Name: GSISContributions_GSISContributionId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"GSISContributions_GSISContributionId_seq"', 5, true);


--
-- TOC entry 3928 (class 0 OID 17048)
-- Dependencies: 306
-- Data for Name: GeneralPolicies; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "GeneralPolicies" ("GeneralPolicyId", "SalaryGradeEffectivityDate", "NosaReportFormat", "LoyaltyAwardFormat") FROM stdin;
1	2021-01-01	Format 2	Format 1
\.


--
-- TOC entry 4612 (class 0 OID 0)
-- Dependencies: 307
-- Name: GeneralPolicies_GeneralPolicyId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"GeneralPolicies_GeneralPolicyId_seq"', 1, false);


--
-- TOC entry 3930 (class 0 OID 17056)
-- Dependencies: 308
-- Data for Name: HDMFContributions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "HDMFContributions" ("HDMFBracketId", "MinBracket", "MaxBracket", "ERMultiplier", "EEMultiplier", "DateImplemented", "ValidUntil") FROM stdin;
58	1500.00	9999999.00	0.02	0.02	2014-01-01	\N
57	0.00	1499.99	0.02	0.01	2014-01-01	\N
\.


--
-- TOC entry 4613 (class 0 OID 0)
-- Dependencies: 309
-- Name: HDMF_HDMFBracketId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"HDMF_HDMFBracketId_seq"', 60, true);


--
-- TOC entry 3932 (class 0 OID 17068)
-- Dependencies: 310
-- Data for Name: HolidayMultipliers; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "HolidayMultipliers" ("HolidayMultiplierId", "Multiplier", "EffectivityDate", "Remarks", "HolidayType") FROM stdin;
5	2.00	2016-08-01		Regular holiday
6	1.50	2016-08-19		Special non-working day
7	1.50	2016-08-18		Other holiday
9	1.30	2016-12-01		Other holiday
\.


--
-- TOC entry 4614 (class 0 OID 0)
-- Dependencies: 311
-- Name: HolidayMultipliers_HolidayMultiplierId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"HolidayMultipliers_HolidayMultiplierId_seq"', 9, true);


--
-- TOC entry 3934 (class 0 OID 17076)
-- Dependencies: 312
-- Data for Name: HolidayPolicies; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "HolidayPolicies" ("HolidayPolicyId", "HolidayType", "IsEnabled") FROM stdin;
1	Regular holiday	f
2	Special non-working day	f
3	Other holiday	f
\.


--
-- TOC entry 4615 (class 0 OID 0)
-- Dependencies: 313
-- Name: HolidayPolicies_HolidayPolicyId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"HolidayPolicies_HolidayPolicyId_seq"', 3, true);


--
-- TOC entry 3936 (class 0 OID 17084)
-- Dependencies: 314
-- Data for Name: Holidays; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Holidays" ("HolidayName", "HolidayType", "IsDateMovable", "Date", "HolidayId") FROM stdin;
CHRISTMAS	Regular holiday	f	2017-12-25	2
NEW YEAR'S DAY	Regular holiday	f	2018-01-01	3
CHINESE NEW YEAR'S DAY	Special non-working day	t	2018-02-16	4
PEOPLE POWER ( EDSA REVOLUTION )	Other holiday	f	2018-02-25	5
MAUNDY THURSDAY	Regular holiday	t	2018-03-29	6
GOOD FRIDAY	Regular holiday	t	2018-03-30	7
EASTER SUNDAY	Other holiday	t	2018-04-01	8
THE DAY OF VALOR ( BATAAN DAY )	Regular holiday	f	2018-04-09	9
LAILATUL ISRA WAL MI RAJ	Other holiday	t	2018-04-13	10
LABOR DAY	Regular holiday	f	2018-05-01	11
INDEPENDENCE DAY	Regular holiday	f	2018-06-12	12
EIDUL-FITAR	Other holiday	t	2018-06-16	13
NINOY AQUINO DAY	Special non-working day	f	2018-08-21	14
EID AL-ADHA ( FEAST OF THE SACRIFICE )	Other holiday	t	2018-08-22	15
EID AL-ADHA DAY 2	Other holiday	f	2018-08-23	16
NATIONAL HEROES DAY	Regular holiday	f	2018-08-27	17
AMUN JADID	Other holiday	t	2018-09-12	18
ALL SAINT'S DAY	Special non-working day	f	2018-11-01	19
ALL SOUL'S DAY	Other holiday	f	2018-11-02	20
MAULID UN-NABI	Other holiday	t	2018-11-21	21
BONIFACIO DAY	Regular holiday	f	2018-11-30	22
CHRISTMAS EVE	Other holiday	f	2018-12-24	23
CHRISTMAS DAY	Regular holiday	f	2018-12-25	24
RIZAL DAY	Regular holiday	f	2018-12-30	25
NEW YEAR'S EVE	Special non-working day	f	2018-12-31	26
QUIRINO DAY	Special non-working day	f	2018-11-16	27
ILOCOS SUR ANNIVERSARY	Special non-working day	f	2018-02-02	28
CITYHOOD OF VIGAN	Special non-working day	f	2018-01-22	29
CHINESE NEW YEAR	Special non-working day	t	2019-02-05	34
MAUNDY THURSDAY	Regular holiday	t	2019-04-18	37
GOOD FRIDAY	Regular holiday	t	2019-04-19	38
BLACK SATURDAY	Special non-working day	t	2019-04-20	39
EID'L FITR	Other holiday	t	2019-06-05	41
EIDUL ADHA	Other holiday	t	2019-08-12	43
NEW YEAR'S DAY	Regular holiday	f	2019-01-01	30
NEW YEAR'S HOLIDAY	Other holiday	f	2019-01-02	31
PEOPLE POWER ( EDSA REVOLUTION )	Special non-working day	f	2019-02-25	35
THE DAY OF VALOR ( BATAAN DAY )	Regular holiday	f	2019-04-09	36
LABOR DAY	Regular holiday	f	2019-05-01	40
INDEPENDENCE DAY	Regular holiday	f	2019-06-12	42
NINOY AQUINO DAY	Special non-working day	f	2019-08-21	44
NATIONAL HEROES DAY	Regular holiday	f	2019-08-26	45
ALL SAINTS' DAY	Special non-working day	f	2019-11-01	46
ALL SOULS' DAY	Special non-working day	f	2019-11-02	47
BONIFACIO DAY	Regular holiday	f	2019-11-30	48
IMMACULATE CONCEPCION DAY	Special non-working day	f	2019-12-08	49
CHRISTMAS EVE	Special non-working day	f	2019-12-24	50
CHRISTMAS DAY	Regular holiday	f	2019-12-25	51
RIZAL DAY	Regular holiday	f	2019-12-30	52
NEW YEAR'S EVE	Special non-working day	f	2019-12-31	53
BATAAN FOUNDATION DAY	Special non-working day	f	2019-01-11	55
MAUNDY THURSDAY	Regular holiday	t	2020-04-18	57
GOOD FRIDAY	Regular holiday	t	2020-04-19	58
BLACK SATURDAY	Special non-working day	t	2020-04-20	59
EID'L FITR	Other holiday	t	2020-06-05	60
NEW YEAR'S DAY	Regular holiday	f	2020-01-01	62
PEOPLE POWER ( EDSA REVOLUTION )	Special non-working day	f	2020-02-25	64
THE DAY OF VALOR ( BATAAN DAY )	Regular holiday	f	2020-04-09	65
LABOR DAY	Regular holiday	f	2020-05-01	66
INDEPENDENCE DAY	Regular holiday	f	2020-06-12	67
NINOY AQUINO DAY	Special non-working day	f	2020-08-21	68
ALL SAINTS' DAY	Special non-working day	f	2020-11-01	70
ALL SOULS' DAY	Special non-working day	f	2020-11-02	71
BONIFACIO DAY	Regular holiday	f	2020-11-30	72
IMMACULATE CONCEPCION DAY	Special non-working day	f	2020-12-08	73
CHRISTMAS EVE	Special non-working day	f	2020-12-24	74
CHRISTMAS DAY	Regular holiday	f	2020-12-25	75
RIZAL DAY	Regular holiday	f	2020-12-30	76
NEW YEAR'S EVE	Special non-working day	f	2020-12-31	77
BATAAN FOUNDATION DAY	Special non-working day	f	2020-01-11	78
NATIONAL HEROES DAY	Regular holiday	t	2020-08-31	69
CHINESE NEW YEAR	Special non-working day	t	2020-01-21	56
NEW YEAR'S HOLIDAY	Other holiday	f	2020-01-02	63
EID'L ADHA	Other holiday	t	2021-07-21	61
NEW YEAR'S DAY	Regular holiday	f	2021-01-01	83
PEOPLE POWER ( EDSA REVOLUTION )	Special non-working day	f	2021-02-25	84
THE DAY OF VALOR ( BATAAN DAY )	Regular holiday	f	2021-04-09	85
LABOR DAY	Regular holiday	f	2021-05-01	86
INDEPENDENCE DAY	Regular holiday	f	2021-06-12	87
NINOY AQUINO DAY	Special non-working day	f	2021-08-21	88
ALL SAINTS' DAY	Special non-working day	f	2021-11-01	89
ALL SOULS' DAY	Special non-working day	f	2021-11-02	90
BONIFACIO DAY	Regular holiday	f	2021-11-30	91
IMMACULATE CONCEPCION DAY	Special non-working day	f	2021-12-08	92
CHRISTMAS EVE	Special non-working day	f	2021-12-24	93
CHRISTMAS DAY	Regular holiday	f	2021-12-25	94
RIZAL DAY	Regular holiday	f	2021-12-30	95
NEW YEAR'S EVE	Special non-working day	f	2021-12-31	96
BATAAN FOUNDATION DAY	Special non-working day	f	2021-01-11	97
NATIONAL HEROES DAY	Regular holiday	t	2021-08-31	98
CHINESE NEW YEAR	Special non-working day	t	2021-01-21	99
NEW YEAR'S HOLIDAY	Other holiday	f	2021-01-02	100
EID'L FITR	Other holiday	f	2021-05-13	82
MAUNDY THURSDAY	Regular holiday	f	2021-04-01	79
GOOD FRIDAY	Regular holiday	f	2021-04-02	80
BLACK SATURDAY	Special non-working day	f	2021-04-03	81
ALL SAINT'S DAY	Regular holiday	f	2022-11-01	101
NEW YEAR'S DAY	Regular holiday	f	2022-01-01	103
PEOPLE POWER ( EDSA REVOLUTION )	Special non-working day	f	2022-02-25	104
THE DAY OF VALOR ( BATAAN DAY )	Regular holiday	f	2022-04-09	105
LABOR DAY	Regular holiday	f	2022-05-01	106
INDEPENDENCE DAY	Regular holiday	f	2022-06-12	107
NINOY AQUINO DAY	Special non-working day	f	2022-08-21	108
BONIFACIO DAY	Regular holiday	f	2022-11-30	110
IMMACULATE CONCEPCION DAY	Special non-working day	f	2022-12-08	111
CHRISTMAS DAY	Regular holiday	f	2022-12-25	113
RIZAL DAY	Regular holiday	f	2022-12-30	114
BATAAN FOUNDATION DAY	Special non-working day	f	2022-01-11	116
NATIONAL HEROES DAY	Regular holiday	t	2022-08-31	117
CHINESE NEW YEAR	Special non-working day	f	2022-02-01	118
GOOD FRIDAY	Regular holiday	t	2022-04-14	122
MAUNDY THURSDAY	Regular holiday	t	2022-04-15	121
EID'L FITR	Other holiday	t	2022-05-03	120
Election 2022	Special non-working day	t	2022-05-09	124
EID'L ADHA	Other holiday	f	2022-07-09	102
Special Non Working Holiday	Special non-working day	t	2022-10-31	125
Typhoon	Work suspension	f	2022-09-26	126
Typhoon	Work suspension	f	2022-08-24	127
HOLIDAY	Regular holiday	t	2022-12-26	128
ALL SAINT'S DAY	Regular holiday	f	2023-11-01	129
NEW YEAR'S DAY	Regular holiday	f	2023-01-01	130
LABOR DAY	Regular holiday	f	2023-05-01	133
INDEPENDENCE DAY	Regular holiday	f	2023-06-12	134
NINOY AQUINO DAY	Special non-working day	f	2023-08-21	135
BONIFACIO DAY	Regular holiday	f	2023-11-30	136
IMMACULATE CONCEPCION DAY	Special non-working day	f	2023-12-08	137
CHRISTMAS DAY	Regular holiday	f	2023-12-25	138
RIZAL DAY	Regular holiday	f	2023-12-30	139
BATAAN FOUNDATION DAY	Special non-working day	f	2023-01-11	140
Special Non Working Holiday	Special non-working day	t	2023-10-31	148
Typhoon	Work suspension	f	2023-09-26	149
Typhoon	Work suspension	f	2023-08-24	150
HOLIDAY	Regular holiday	t	2023-12-26	151
After New Year	Special non-working day	f	2023-01-02	152
CHINESE NEW YEAR	Special non-working day	t	2023-01-22	142
PEOPLE POWER (EDSA REVOLUTION)	Special non-working day	f	2023-02-25	131
THE DAY OF VALOR (BATAAN DAY)	Regular holiday	f	2023-04-09	132
GOOD FRIDAY	Regular holiday	f	2023-04-07	143
MAUNDY THURSDAY	Regular holiday	f	2023-04-06	144
EID'L FITR	Other holiday	f	2023-04-22	145
EID'L ADHA	Other holiday	t	2023-06-29	147
NATIONAL HEROES DAY	Regular holiday	f	2023-08-30	141
NATIONAL HEROES DAY Public Holiday	Regular holiday	t	2023-08-28	154
THE DAY OF VALOR (BATAAN DAY) Public Holiday	Regular holiday	t	2023-04-10	153
ALL Souls' Day	Special non-working day	f	2023-11-02	155
BONIFACIO DAY Public Holiday	Special non-working day	f	2023-11-27	156
\.


--
-- TOC entry 4616 (class 0 OID 0)
-- Dependencies: 315
-- Name: Holidays_HolidayId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Holidays_HolidayId_seq"', 156, true);


--
-- TOC entry 3938 (class 0 OID 17092)
-- Dependencies: 316
-- Data for Name: Honorarias; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Honorarias" ("EmployeeId", "Year", "HonorariaTax") FROM stdin;
\.


--
-- TOC entry 3939 (class 0 OID 17095)
-- Dependencies: 317
-- Data for Name: JobVacancies; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "JobVacancies" ("JobVacancyId", "EmploymentStatusId", "Slot", "PositionId", "RateTypeId", "SalaryRate", "DateCreated", "EncoderBasicInformationId", "IsActive", "Duration", "PlantillaId", "IsPlantilla", "DepartmentId", "DivisionId", "SectionId", "SalaryGradeEffectivity", "ClosingDate", "SalaryGradeAnnex", "JobDescription", "DateEnded") FROM stdin;
378	1	1	1214	4	23877.00	2024-06-07	1	t	0	0	t	125	164	4	2021-01-01	2024-06-30	A1	AOII	0001-01-01
379	1	1	2009	4	19593.00	2024-06-07	1	t	0	0	t	125	164	4	2021-01-01	2024-06-30	A1	AAIII	0001-01-01
377	1	1	1653	4	33575.00	2024-06-07	1	f	0	0	t	125	164	4	2021-01-01	2024-06-30	A1	AOIV	0001-01-01
381	1	1	101	4	16200.00	2024-06-07	1	f	0	0	t	125	164	4	2021-01-01	2024-06-30	A1	ADAVI	0001-01-01
382	1	1	2004	4	12034.00	2024-06-07	1	f	0	0	t	125	164	4	2021-01-01	2024-06-30	A1	ADAI	0001-01-01
380	1	1	1994	4	18251.00	2024-06-07	1	f	0	0	t	125	164	4	2021-01-01	2024-06-30	A1	AAII	0001-01-01
\.


--
-- TOC entry 4617 (class 0 OID 0)
-- Dependencies: 318
-- Name: JobVacancies_JobVacancyId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"JobVacancies_JobVacancyId_seq"', 382, true);


--
-- TOC entry 3941 (class 0 OID 17113)
-- Dependencies: 319
-- Data for Name: LeaveCredits; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "LeaveCredits" ("LeaveId", "YearofServiceFrom", "YearofServiceTo", "Days", "LeaveCreditId") FROM stdin;
3	0	1	12	2
1	0	5	12	1
\.


--
-- TOC entry 4618 (class 0 OID 0)
-- Dependencies: 320
-- Name: LeaveCredits_LeaveCreditID_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"LeaveCredits_LeaveCreditID_seq"', 3, true);


--
-- TOC entry 3943 (class 0 OID 17118)
-- Dependencies: 321
-- Data for Name: LeavePolicies; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "LeavePolicies" ("LeavePolicyId", "SpecialLeaveActivated", "SpecialLeaveNumberOfDays", "OffsetLeaveCreditToAbsence", "MaternityLeaveNumberOfDays", "MaternityLeaveMaxNumberOfApplication", "PaternityLeaveNumberOfDays", "PaternityLeaveMaxNumberOfApplication", "ConstantFactorFormulaSetup", "ConstantFactorValue", "MonetizationVariableSalary", "MonetizationVariableNumberOfDays", "MonetizationFormula", "TerminalLeaveVariableHighestSalary", "TerminalLeaveVariableAccumulatedLeaveCredits", "TerminalLeaveFormula", "LeaveWithoutPayVariableMonthlySalary", "LeaveWithoutPayVariableCalendarDays", "LeaveWithoutPayVariableNumberOfDays", "LeaveWithoutPayFormula", "StudyLeaveRefundVariableTotalCompensationReceived", "StudyLeaveRefundVariableObligationServed", "StudyLeaveRefundVariableObligationRequired", "StudyLeaveRefundFormula", "CasualLeaveMaxNumberofHours", "CasualLeaveFrequency", "MaternityLeaveActivated", "PaternityLeaveActivated", "StudyLeaveActivated", "CompensatoryLeaveActivated", "TerminalLeaveVariableConstantFactor", "ConstantFactorActivated", "CasualLeaveActivated", "ParentalLeaveActivated", "RehabilitationLeaveActivated", "SoloParentLeaveActivated", "SoloParentLeaveNumberOfDays", "ForceLeaveActivated", "ForceLeaveNumberOfDays", "LeaveCardReportFormat") FROM stdin;
1	t	7	f	105	4	7	4	'	0.0481927	'	'	'	D	A	D*A*CF	MS	CD	ND	MS-(MS/CD)*ND	TCR	SOS	SOR	((SOR-SOS)/SOR)*TCR	0	Daily	t	t	f	t	CF	t	f	t	t	t	7	t	0	Format 1
\.


--
-- TOC entry 4619 (class 0 OID 0)
-- Dependencies: 322
-- Name: LeavePolicies_LeavePolicyId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"LeavePolicies_LeavePolicyId_seq"', 1, false);


--
-- TOC entry 4620 (class 0 OID 0)
-- Dependencies: 324
-- Name: LeaveRecord_LeaveRecordId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"LeaveRecord_LeaveRecordId_seq"', 26111, true);


--
-- TOC entry 3945 (class 0 OID 17132)
-- Dependencies: 323
-- Data for Name: LeaveRecords; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "LeaveRecords" ("LeaveRecordId", "LeaveId", "DateFiled", "FromDate", "ToDate", "Reason", "Status", "EmployeeId", "Days", "ReturnedDate", "ExtendedEndDate", "FromTime", "ToTime", "Hours", "DateHour", "ForcedLeaveType", "Country", "LocationName", "InHospitalIllness", "OutPatientIllness", "SpecialLeaveIllness", "IsMasterDegree", "IsBar", "IsMonetizeLeaveCredit", "IsTerminalLeave") FROM stdin;
\.


--
-- TOC entry 3947 (class 0 OID 17154)
-- Dependencies: 325
-- Data for Name: Leaves; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Leaves" ("LeaveId", "LeaveType", "Description", "DeductableType", "MaximumDays", "AppliedNumber", "IsUnlimited") FROM stdin;
19	Solo Parent Leave	Solo Parent Leave	NONE	0	0	t
18	Mandatory Vacation Leave	MVL	VACATION LEAVE DEDUCTABLE	5	0	t
9	Special Leave Privilege	SLP	NONE	3	0	t
21	Emergency Leave	VL-EL	VACATION LEAVE DEDUCTABLE	0	0	t
31	Maternity Leave - 105 days	Maternity Leave	NONE	105	0	t
3	Maternity Leave - 60 days	Maternity Leave	NONE	60	0	t
30	Official Leave	Official Leave	NONE	0	0	t
4	Paternity Leave	Paternity Leave	NONE	7	0	t
11	Rehabilitation Leave	Rehabilitation Leave	NONE	181	0	t
2	Sick Leave	SL	SICK LEAVE DEDUCTABLE	0	0	t
20	Sick Leave without pay	SLOP	NONE	365	0	t
29	Special Emergency Leave	SEL	NONE	5	5	f
28	Special Leave Benefits for Women	SLBW	NONE	60	0	t
5	Study Leave	Study Leave	NONE	0	0	t
1	Vacation Leave	VL	VACATION LEAVE DEDUCTABLE	0	0	t
6	Vacation Leave without pay	VLOP	NONE	365	0	t
27	Exhaustion		NONE	0	0	t
\.


--
-- TOC entry 4621 (class 0 OID 0)
-- Dependencies: 326
-- Name: Leaves_LeaveId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Leaves_LeaveId_seq"', 32, true);


--
-- TOC entry 3949 (class 0 OID 17166)
-- Dependencies: 327
-- Data for Name: LoanApplications; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "LoanApplications" ("LoanApplicationId", "EmployeeId", "LoanTypeId", "LoanAmount", "Terms", "MonthlyAmortization", "StartedDeductionDate", "EndDate", "CancelledDate", "IsCancelled", "Period") FROM stdin;
\.


--
-- TOC entry 4622 (class 0 OID 0)
-- Dependencies: 328
-- Name: LoanApplications_LoanApplicationId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"LoanApplications_LoanApplicationId_seq"', 2274, true);


--
-- TOC entry 3951 (class 0 OID 17175)
-- Dependencies: 329
-- Data for Name: LoanBreakdowns; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "LoanBreakdowns" ("LoanBreakdownId", "LoanApplicationId", "DateOfDeduction", "LoanBreakdownAmount", "BreakdownName", "IsPaid", "PayrollId", "Period") FROM stdin;
\.


--
-- TOC entry 4623 (class 0 OID 0)
-- Dependencies: 330
-- Name: LoanBreakdowns_LoanBreakdownId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"LoanBreakdowns_LoanBreakdownId_seq"', 15011, true);


--
-- TOC entry 3953 (class 0 OID 17184)
-- Dependencies: 331
-- Data for Name: LoanTypes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "LoanTypes" ("LoanTypeId", "LoanName", "Remarks", "ShortName") FROM stdin;
74	3D Reg. Loan (MPCI)		3D Reg. Loan (MPCI)
76	Pag-Ibig MPL Loan/Housing		Pag-Ibig MPL Loan/Housing
77	Educational Assistance Loan		Educational Assistance Loan
78	GSIS Calamity Loan		GSIS Calamity Loan
79	Optional Policy Loan		Optional Policy Loan
81	Policy Loan		Policy Loan
82	R. E. L. Bahay Ko Loan		R. E. L. Bahay Ko Loan
83	Pag-Ibig Calamity Loan		Pag-Ibig Calamity Loan
85	DBP Loan		DBP Loan
87	Cash Advance Loan (E-Card)		Cash Advance Loan (E-Card)
99	Conso/Sal. Loan		Conso/Sal. Loan
100	Land Bank		Land Bank
106	Emergency Loan		Emergency Loan
109	Modified Pag-ibig II		Modified Pag-ibig II
103	CEMBA		CEMBA
105	Optional Life Ins. Prem (UOLI)		Optional Life Ins. Prem (UOLI)
\.


--
-- TOC entry 4624 (class 0 OID 0)
-- Dependencies: 332
-- Name: LoanTypes_LoanTypeId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"LoanTypes_LoanTypeId_seq"', 112, true);


--
-- TOC entry 3955 (class 0 OID 17193)
-- Dependencies: 333
-- Data for Name: LocatorSlips; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "LocatorSlips" ("LocatorSlipId", "EmployeeId", "Destination", "Purpose", "ApproverId", "DateFiled", "DepartureDate", "DepartureTime", "ArrivalTime", "Status", "Type") FROM stdin;
\.


--
-- TOC entry 4625 (class 0 OID 0)
-- Dependencies: 334
-- Name: LocatorSlips_LocatorSlipId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"LocatorSlips_LocatorSlipId_seq"', 67, true);


--
-- TOC entry 3957 (class 0 OID 17201)
-- Dependencies: 335
-- Data for Name: LoyaltyAwardPolicies; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "LoyaltyAwardPolicies" ("LoyaltyAwardPolicyId", "AwardName", "AwardType", "YearsOfServiceRequired", "Recurrence", "AmountBasis", "AwardBasis", "MinimumPerformanceRate", "MaximumPerformanceRate", "SpecificEmploymentStatus", "RateNumber", "PercentageValue", "EnteredAmount", "PrerequisiteAwardId", "AuthorizedLeaveWithoutPay") FROM stdin;
3	Gold Award	Time Based	10				0.00	0.00		0	0.0000	0.00	0	0
2	Silver Award	Time Based	5				0.00	0.00		0	0.0000	0.00	0	0
\.


--
-- TOC entry 4626 (class 0 OID 0)
-- Dependencies: 336
-- Name: LoyaltyAwardsPolicies_LoyaltyAwardPolicyId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"LoyaltyAwardsPolicies_LoyaltyAwardPolicyId_seq"', 6, true);


--
-- TOC entry 3959 (class 0 OID 17218)
-- Dependencies: 337
-- Data for Name: MemberContributionExclusions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "MemberContributionExclusions" ("ContributionId", "EmployeeId") FROM stdin;
\.


--
-- TOC entry 3960 (class 0 OID 17221)
-- Dependencies: 338
-- Data for Name: Messages; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Messages" ("MessageId", "DateEntry", "MessageDetails", "NoticeFrom", "Receiver", "ReceiverId") FROM stdin;
\.


--
-- TOC entry 4627 (class 0 OID 0)
-- Dependencies: 339
-- Name: Messages_MessageId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Messages_MessageId_seq"', 12, true);


--
-- TOC entry 3962 (class 0 OID 17229)
-- Dependencies: 340
-- Data for Name: MonitizedLeaveCredits; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "MonitizedLeaveCredits" ("MonetizedLeaveCreditId", "EmployeeId", "MonitizedSickLeaveCredits", "MonitizedVacationLeaveCredits", "Date", "Remarks", "Status", "MoneyValue") FROM stdin;
\.


--
-- TOC entry 4628 (class 0 OID 0)
-- Dependencies: 341
-- Name: MonitizedLeaveCredits_MonetizedLeaveCreditId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"MonitizedLeaveCredits_MonetizedLeaveCreditId_seq"', 121, true);


--
-- TOC entry 4629 (class 0 OID 0)
-- Dependencies: 343
-- Name: Multiplier_MultiplierId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Multiplier_MultiplierId_seq"', 61, true);


--
-- TOC entry 3964 (class 0 OID 17237)
-- Dependencies: 342
-- Data for Name: Multipliers; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Multipliers" ("MultiplierId", "RegularOT", "RegularHours", "DateImplemented", "ValidUntil", "RegularHoliday", "RegularHolidayOT", "SpecialNonWorkingDay", "SpecialNonWorkingDayOT", "OtherHoliday", "OtherHolidayOT", "RestDay", "RestDayOT", "NightShift", "SpecialNonWorkingDayRestDay", "SpecialNonWorkingDayRestDayOT", "SpecialNonWorkingDayNightShift", "RegularHolidayRestDay", "RegularHolidayRestDayOT", "RegularHolidayNightShift", "EmploymentStatusName") FROM stdin;
59	1.00	1	2016-01-01	8/2/2016	1.00	1.00	1.00	1.00	0.20	0.10	1.00	0.00	1.00	1.00	0.00	1.00	1.00	0.00	1.00	Job order
61	1.25	0	2019-01-01	\N	1.00	1.00	1.00	1.00	0.00	0.00	1.50	0.00	1.00	1.50	0.00	1.00	1.50	0.00	1.00	Permanent
\.


--
-- TOC entry 3966 (class 0 OID 17255)
-- Dependencies: 344
-- Data for Name: NonPlantillaItemEntries; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "NonPlantillaItemEntries" ("NonPlantillaItemEntryId", "NonPlantillaItemId", "DateOfMovement", "MovementType", "EmployeeId", "DepartmentId", "DivisionId", "SectionId", "RateTypeId", "SalaryRate", "ReasonOfSeparation") FROM stdin;
\.


--
-- TOC entry 4630 (class 0 OID 0)
-- Dependencies: 345
-- Name: NonPlantillaItemEntries_NonPlantillaItemEntryId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"NonPlantillaItemEntries_NonPlantillaItemEntryId_seq"', 2090, true);


--
-- TOC entry 3968 (class 0 OID 17263)
-- Dependencies: 346
-- Data for Name: NonPlantillaItems; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "NonPlantillaItems" ("NonPlantillaItemId", "PositionId", "IsDeleted") FROM stdin;
\.


--
-- TOC entry 4631 (class 0 OID 0)
-- Dependencies: 347
-- Name: NonPlantillaItems_NonPlantillaItemId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"NonPlantillaItems_NonPlantillaItemId_seq"', 1795, true);


--
-- TOC entry 3970 (class 0 OID 17268)
-- Dependencies: 348
-- Data for Name: Notifications; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Notifications" ("NotificationId", "Description", "IsRead", "DateCreated", "Category", "EmployeeGroupId", "Remarks", "BasicInformationId") FROM stdin;
\.


--
-- TOC entry 4632 (class 0 OID 0)
-- Dependencies: 349
-- Name: Notifications_NotificationId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Notifications_NotificationId_seq"', 128, true);


--
-- TOC entry 3972 (class 0 OID 17276)
-- Dependencies: 350
-- Data for Name: OTMultipliers; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "OTMultipliers" ("OTMultiplierId", "Name", "Percentage", "EffectivityDate", "Remarks") FROM stdin;
3	Weekend OT	1.30	2016-08-01	
4	Holiday Rate	1.50	2016-09-14	
2	Regular OT	1.30	2016-09-14	
\.


--
-- TOC entry 4633 (class 0 OID 0)
-- Dependencies: 351
-- Name: OTMultipliers_OTMultipliersId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"OTMultipliers_OTMultipliersId_seq"', 11, true);


--
-- TOC entry 3974 (class 0 OID 17284)
-- Dependencies: 352
-- Data for Name: Organizations; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Organizations" ("OrganizationId", "OrganizationName", "BasicInformationId") FROM stdin;
4385	Association of Government Internal Auditors (AGIA)	3598
4386	ASSOCIATION OF GOVERNMENT INTERNAL AUDITORS	3600
4387	MEMBER- INTERNATIONAL CHRISTIAN MINISTRY- GULOD	3604
4388	MEMBER- NATIONAL EMPLOYEES UNION	3604
4389	YOUNG ACCOUNTING MANAGERS SOCIETY (YAMS) BATANGAS STATE UNIVERSITY (BATANGAS CHAPTER) 2015-2017	3607
4390	JUNIOR PHILIPPINE INSTITUTE OF ACCOUNTANTS (JPIA) BATANGAS CHAPTER 2013-2015	3607
4391	DEPED- NATIONAL EMPLOYEES UNION	3608
4392	NATIONAL EMPLOYEES UNION ( NEU)	3609
4393	NATIONAL EMPLOYMENT UNION	3611
4394	PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS - NATIONAL DIRECTOR FOR GOVERNMENT 	3606
4395	GOVERNMENT ASSOCIATION OF CERTIFIED PUBLIC ACCOUNTANT - DIRECTOR FOR LUZON 	3606
4396	LIONS CLUBS INTERNATIONAL 	3606
4397	NATIONAL EMPLOYEES UNION- BOARD OF TRUSTEES 	3606
4398	NATIONAL ASSOCIATION OF DEPED FINANCE PERSONNEL - ASST. SECRETARY 	3606
4399	NATIONAL EMPLOYEES UNION OF SDO BATANGAS CITY- VICE PRESIDENT	3616
4400	BATANGAS CITY GIRL SCOUT COUNCIL	3617
4401	MEMBER- 7S COMMITTE SCHHOLS DIVISION BATANGAS CITY	3621
4402	MEMBER- 7S COMMITTE SCHOOLS DIVISION OF BATANGAS CITY	3621
4403	OVERALL CHAIRMAN- THE SOCIETY CHRISTIAN CAMPUS ORGANIZATION	3621
4404	MEMBER- EMPLOYEES UNION	3621
4405	INTERNATIONAL LITERACY ASSOCIATION	3622
4406	PSYCHOLOGICAL ASSOCIATION OF THE PHILIPPINES	3624
4407	BATANGAS CITY PUBLIC SCHOOL TEACHERS AND EMPLOYEE ASSOCIATION 	3630
4408	BATANGAS CITY PUBLIC SCHOOL TEACHERS AND EMPLOYEES CREDIT COOPERATIVE 	3630
4409	NATIONAL EMPLOYEES UNION (NEU)	3639
4410	DEPED - NATIONAL EMPLOYEES UNION	3637
4411	THE DEPARTMENT OF EDUCATION NATIONAL EMPLOYEES UNION	3645
4412	DEPED - NATIONAL EMPLOYEES UNION 	3641
4413	DEPARTMENT OF EDUCATION- NATIONAL EMPLOYEES UNION	3646
4414	SOUTHEAST ASIAN INSTITUTE OF EDUCATIONAL TRAINING INC.	3646
4415	NATIONAL EMPLOYMENT UNION 	3644
4416	UNITED  HEART"S CLUB	3644
4417	SILAHIS NG PAGKAKAISA 	3644
4418	BATANGAS VARSITARIAN 	3644
4419	INTEGRATED BAR OF THE PHILIPPINES BATANGAS CHAPTER	3648
4420	MEMBER- RISKY MANAGEMENT TEAM- DEPED SDO BATANGAS CITY	3647
4421	MEMBER- LEARNING AND DEVELOPMENT OF PRIME HRM - DEPED SDO BATANGAS CITY	3647
4422	MEMBER- LEARNING AND DEVELOPMENT OF PRIME HRM MATURITY LEVEL 2 - DEPED SDO BATANGAS CITY	3647
4423	CHAIRMAN, COMMITTEE ONN AUDIT- AMBULONG RURAL WORKS AND SANITATION ASSOCIATION	3647
4424	ASSOCIATION OF SCIENCE EDUCATORS IN THE PHILIPPINES (ASEP)	3656
4425	BATANGAS CITY PUBLIC SCHOOLS TEACHERS AND EMPLOYEES ASSOCIATION (BCPSTEA)	3658
4426	BATANGAS CITY EAST DISTRICT EMPLOYEES CREDIT COOPERATIVE (BCEDECC)	3658
4427	WEST DISTRICT TEACHERS AND EMPLOYEES CREDIT COOPEARATIVE (WEDTEMCO)	3658
4428	BATANGAS CITY PUBLIC SCHOOL HEADS ASSOCIATION (BCPSHA)	3658
4429	PHILIPPINE ELEMENTARY SCHOOL PRINCIPALS ASSOCIATION (PESPA)	3658
4430	NEU	3662
4431	PHIL.ASSOC. FOR GRADUATE EDUC.PAGE	3666
4432	R4A PUBLIC SCHOOLS DISTRICT SUPERVISORS ASSOCIATION	3666
4433	BATANGAS CITY PUBLIC SCHOOLS DISTRICT SUPERVISORS ASSOCIATION	3666
4434	BATANGAS CITY PUBLIC SCHOOL TEACHERS ABD EMPLOYEES ASSOCIATION	3666
4435	ASCDENDES ASIA INTERNATIONAL RESEARCHERS CLUB	3666
4436	PHILIPPINE ASSOCIATION FOR TEACHER EDUCATION 	3667
4437	BCPSTEA	3669
4438	UNION OF NON TEACHING PERSONNEL	3669
4439	NATIONAL PUBLIC SCHOOLS DISTRICT SUPERVISOR ASSOCIATION 	3670
4440	DIVISION PUBLIC SCHOOLS DISTRICT SUPERVISORS  ASSOCIATION 	3670
4441	BATANGAS CITY PUBLIC SCHOOL TEACHERS ASSOCIATION 	3670
4442	GIRL SCOUT OF THE PHILIPPINES 	3670
4443	BOY SCOUT OF THE PHILIPPINES 	3670
4444	PHILIPPINE PUBLIC SCHOOLS TEACHERS ASSOCIATION	3668
4445	BATANGAS CITY PUBLIC SCHOOL TEACHERS AND EMPLOYEES ASSOCIATION	3668
4446	ASSOCIATION OF LEARNING LEADERS	3671
4447	BATANGAS CITY PUBLIC SCHOOL TEACHERS AND EMPLOYEES ASSOCIATION	3671
4448	PHILIPPINE LIBRARIANS ASSOCIATION INC.	3672
4449	LIBRARIAN ASSOCIATION OF BATANGAS 	3672
4450	PHIPPINE ASSOCIATION OF ACADEMIC & RESEARCH LIBRARIANS 	3672
4451	ASSOCIATION OF LEARNING LEADERS 	3673
4452	BATANGAS CITY PUBLIC SCHOOL TEACHERS AND EMPLOYEES ASSOCIATION	3673
4453	PUBLIC SHOOLS DISTRICT SUPERVISORS' ASSOCIATION	3674
4454	NEAP FACILITATOR	3674
4455	BATANGAS CITY PUBLIC SHOOL TEACHERS ASSOCIATION	3674
4456	BATANGAS CITY PUBLIC SCHOOL AND  EMPLOYEES ASSOCIATION 	3675
4457	INTERNATIONAL LITERACY ASSOCIATION	3678
4458	LITERATURE EDUCATORS' ASSOCIATION OF THE PHILIPPINES	3678
4459	REGIONA ASSOCIATION OF COMMUNICATION SUPERVISOR 	3678
4460	BATANGAS CITY ASSOCIATION OF ELEMENTARY AND SECONDARY SCHOOL PAPER ADVISERS	3678
4461	MATHEMATICAL SOCIETY OF THE PHIL ( MSP) NATIONAL CHAPTER	3680
4462	MATHEMATICAL SOCIETY OF  THE PHIL ( MSP) CALABARZON CHAPTER 	3680
4463	PHILIPPINE SCIENCE CONSORTIUM ( PSC) 	3680
4464	ASCENDENS ASIA INTERNATIONAL RESEARCH CLUB ( JUNIOR MEMBERSHIP) 	3680
4465	DEPARTMENT OF EDUCATION-NATIONAL EMPLOYESS UNION	3684
4466	PHILIPPINE NURSES ASSOCIATION	3684
4467	PHILIPPINE PUBLIC SCHOOL TEACHERS ASSOCIATION ( PPSTA) 	3683
4468	BATANGAS CITY PUBLIC SCHOOLS TEACHERS AND EMPLOYEES ASSOCIATION ( BCPSTEA)	3683
4469	BATANGAS CITY EAST DISTRICT EMPLOYEES CREDIT COOPERATIVE ( BCEDECC) 	3683
4470	WEST DISTRICT TEACHERS AND EMPLOYEES CREDIT COOPERATIVE ( WEDTEMCO) 	3683
4471	BATANGAS CITY PUBLIC SCHOOL HEADS ASSOCIATION ( BCPSHA) 	3683
4472	PHILIPPINE ELEMENTARY SCHOOL PRINCIPALS ASSOCIATION ( PESPA) 	3683
4473	BATANGAS CITY SCHOOL HEADS ASSOCIATION 	3682
4474	ALOYSIAN PUBLICATION 	3682
4475	NATIONAL ASSOCIATION OF SECONDARY SCHOOL PRINCIPAL IN THE PHILIPPINES	3682
4476	BAGWIS OFFICER	3682
4477	BATANGAS CITY PUBLIC SCHOOLS TEACHERS AND EMPLOYEES ASSOCIATION	3686
4478	BATANGAS CROWN LIONS CLUB	3687
4479	PHIL. FOLKDANCE SOCIETY	3688
4480	WORLD APOSTOLATE OF FATIMA 	3688
4481	PHILIPPINE ASSOCIATION FOR GRADUATE EDUCATION ( PAGE) 	3689
4482	CALABARZON ASSOCIATION OF EDUCATION PROGRAM SPECIALIST FOR ALS	3689
4483	PCEI21 PHILIPPINE INSTITUTE OF 21ST CENTURY EDUCATORS, INC	3689
4484	PHILIPPINE NURSES ASSOCIATION 	3692
4485	ROVER SCOUTS	3692
4486	INSTABRIGHT INTERNATIONAL GUILD OF RESEARCHERS 	3695
4487	INSTABRIGHT INTERNATIONAL GUILD OF RESEARCHERS AND EDUCATORS 	3695
4488	NATIONAL EMPLOYEES UNION	3693
4489	LIONS CLUB INTERNATIONAL	3693
4490	ROVER SCOUTS OF THE PHILIPPINES	3693
4491	MEMBER, REGIONAL RECOGNITION EVALUATION COMMITTEE ( REC)	3698
4492	LEAD, REWARDS AND RECOGNITION ( R&R) 	3698
4493	LEAD SECRETARIAT, PRAISE COMMITTEE	3698
4494	DEPUTY, TRAINING ADVOCACY TEAM	3698
4495	MEMBER, NETWORK OF PROFESSIONAL RESEARCHERS AND EDUCATORS	3698
4496	BOY SCOUTS OF THE PHILIPPINES- BATANGAS CITY CHAPTER	3697
4497	PAMBANSANG SAMAHAN NG TAGAPAGHUBOG NG PILIPINAS (PSTP)	3697
4498	PHILIPPINE GUIDANCE AND COUNSELING ASSOCIATION 	3704
4499	PSYCHOLOGICAL ASSOCIATION OF THE PHILIPPINES ( PAP)	3704
4500	COLLEGE EDITORS GUILD OF THE PHILIPPINES 1992 - 1995	3702
4501	BUSINESS MANAGER - THE WESTERNIAN ADVOCATE 1992 - 1995	3702
4502	PHILIPPINE INSTITURE OF CIVIL ENGINEERS, INC. (PIPE) OR. MINDORO CHAPTER RFID MEMBER NO. 09-88-661191	3699
4503	CONTRUCTORS PERFORMANCE EVALUATORS (CPES) CPE ACCREDITATION NO. 2010-0717	3699
4504	ASCENDES ASIA INTERNATIONAL RESEARCH CLUB	3707
4505	BOY SCOUT OF THE PHILIPPINES 	3707
4506	DEPARTMENT OF EDUCATION NURSES ASSOCIATION	3705
4507	PROVINCIAL MULTISECTIONAL ALLIANCE	3705
4508	N/A	3709
4509	BATANGAS CITY ASSOCIATION OF ELEMENTARY AND SECONDARY SCHOOL PAPER ADVISERS	3709
4510	N/A	3709
4511	N/A	3712
4512	BOY SCOUT OF THE PHILIPPINES	3711
4513	PHILIPPINE RED CROSS	3711
4514	BATANGAS CITY ADVISER OF ELEMENTARY AND SECONDARY SCHOOL PAPER	3711
4515	PAMBANSANG SAMAHAN NG MGA TAGAPAGTAGUYOD SA FILIPINO-PASATAF	3711
4516	MEMBER, INSTABRIGHT INTERNATIONAL GUILD OF RESEARCHERS AND EDUCATORS	3713
4517	MEMBER, SAN ISIDRO LAY MINISTERS	3713
4518	MEMBER, ADORACION NOCTURNA FILIPINA	3713
4519	N/A	3714
4520	GIRL SCOUT OF THE PHILIPPINES	3716
4521	PHILIPPINE RED CROSS	3716
4522	PUBLIC SECONDARY SCHOOL TEACHER'S ASSOCIATION - MEMBER	3717
4523	KALIPI (GULOD LABAC, BATANGAS CITY)	3717
4524	N/A	3718
4525	N/A	3720
4526	DULAYAW DANCE ORG.	3724
4527	BATANGAS CITY	3724
4528	ASCENDENS ASIA INTERNATIONAL ORGANIZATION	3724
4529	INTERNATIONAL RESEARCHERS 	3724
4530	CLUB	3724
4531	N/A	3727
4532	ALTERNATIVE LEARNING SYSTEM TEACHER'S ORGANIZATION-BATANGAS CITY	3729
4533	PHILIPPINE PUBLIC SCHOOL TEACHERS ASSOCIATION	3729
4534	AFEQ-ASSOCIATION OF FILIPINO EDUCATORS QATAR 2017-2019	3730
4535	GSP	3731
4536	GIRL SCOUT OF THE PHILIPPINES -  BATANGAS	3735
4537	RED CROSS BATANGAS	3735
4538	PAMBANSANG SAMAHAN NG MGA TAGAMASID AT TAGAPAGTAGUYOD SA FILIPINO (PASATAF)	3734
4539	BOY SCOUTS OF THE PHILIPPINES 	3734
4540	PHILIPPINE NATIONAL RED CROSS	3734
4541	KAPILI WOMEN'S GROUP	3734
4542	LIPA CITY COLLEGES ALUMNI ASSOCIATION	3734
4543	DEPARTMENT OF EDUCATION	3734
4544	BARANGAY HEALTH EMERGENCY RESPONSE TEAM	3734
4545	BATANGAS RESEARCHERS GROUP	3736
4546	ASCENDES ASIA INTERNATIONAL CLUB	3736
4547	N/A	3737
4548	PALLOCAN WEST WOMEN'S CHAPTER (MEMBER)	3740
4549	SACRED HEART CHAPEL PALLOCAN (MEMBER)	3740
4550	BUKLOD BATANGAS CHAPTER (MEMBER)	3740
4551	BOY SCOUT OF THE PHILIPPINES (MEMBER)	3740
4552	PALLOCAN WEST WOMENS CHAPTER	3741
4553	BATANGAS CITY MASTER TEACHER ASSOCIATION	3742
4554	N/A	3743
4555	THE EDUCATORS' LINK	3744
4556	BOYSCOUT OF THE PHILIPPINES 	3744
4557	RACAS - REGIONAL ASSOCIATION OF COMMUNICATION ARTS SUPERVISORS	3744
4558	N/A	3745
4559	COUNCIL STAFF BATANGAS CITY COUNCIL	3748
4560	DEPARMENT OF EDUCATION - NATIONAL EMPLOYEES UNION	3749
4561	MTMA	3747
4562	GSIS	3747
4563	PPSTA	3747
4564	BSP	3747
4565	PAG-IBIG	3747
4566	BUCAL MULTI-PURPOSE COOPERATIVE INCORPORATED	3750
4567	BATANGAS CITY PUBLIC SCHOOL TEACHERS AND EMPLOYEES ASSOCIATION	3750
4568	GIRL SCOUT OF THE PHILIPPINES BATANGAS CITY	3751
4569	BATANGAS CITY RESEARCH GROUP	3751
4570	FORMATOR MOST HOLY TRINITY PARISH	3748
4571	BATANGAS CITY PUBLIC SCHOOL TEACHERS AND EMPLOYEES ASSOCIATION	3753
4572	BUCAL MULTI-PURPOSE COOPERATIVE INCORPORATED	3753
4573	BATANGAS CITY PUBLIC SCHOOL TEACHERS AND EMPLOYEES ASSOCIATION	3757
4574	BATANGAS CITY PUBLIC SCHOOL TEACHERS  AND EMPLOYEES ASSOCIATION	3756
4575	GIRLSCOUTS OF THE PHILIPPINES - BATANGAS CITY	3759
4576	SINGLES FOR CHRIST	3760
4577	BUCAL MULTIPURPOSE COOPERATIVE	3760
4578	PAG-IBIG	3758
4579	BOY SCOUT OF THE PHILIPPINES	3758
4580	GOVERNMENT SERVICE INSURANCE SYSTEM	3758
4581	PHIL-HEALTH	3758
4582	MEDI-CARD	3758
4583	BATANGAS CITY PUBLIC SCHOOL TEACHERS AND EMPLOYEES ASSOCIATION	3761
4584	BATANGAS CITY PUBLIC SCHOOL TEACHERS AND EMPLOYEES ASSOCIATION	3762
4585	BUCAL MULTI-PURPOSE COOPERATIVE INCORPORATED	3762
4586	BUCAL MULTI-PURPOSE COOPERATIVE	3765
4587	BUCAL RURAL WATERWORKS AND SANITATION ASSOCIATION	3765
4588	FOLK DANCE SOCIETY / DULAYAW BATANGAS CITY	3764
4589	DEPARTMENT OF EDUCATION-NATIONAL EMPLOYEES UNION	3766
4590	BATANGAS CITY PUBLIC SCHOOL TEACHERS AND EMPLOYEES	3767
4591	BUCAL MULTI-PURPOSE COOPERATIVE INCORPORATED	3767
4592	N/A	3772
4593	ALOYSIAN PUBLICATIONS	3774
4594	ETCOR (EMBRACING, CULTURE OF RESEARCH, EDUCATIONAL RESEARCH CENTER, PHILIPPINES)	3774
4595	PHILIPPINE ACADEMY OF TEACHERS, ADMINISTRATORS AND PRACTITIONERS IN EDUCATION (PATAPE)	3774
4596	BATANGAS CITY ALS TEACHERS ASSOCIATION (OFFICER)	3769
4597	N/A	3779
4598	N/A	3783
4599	N/A	3787
4600	N/A	3791
4601	N/A	3798
4602	ALOYSIAN PUBLICATIONS	3805
4603	BOYSCOUT OF THE PHILIPPINES	3806
4604	GIRL SCOOUT OF THE PHILIPPINES	3806
4605	N/A	3802
4606	N/A	3812
4607	SIRANG LUPA KALIPI WOMEN'S GROUP	3810
4608	N/A	3815
4609	DIVISION ATHLETIC ASSOCIATION MEMBER	3811
4610	BATANGAS CITY PUBLIC SCHOOL TEACHERS ASSOCIATION	3811
4611	N/A	3816
4612	SCHOOL GOVERNING COUNCIL PRESIDENT	3822
4613	CLIS ALUMNI ASSOCIATION	3822
4614	CIES ALUMNI ASSOCIATION	3822
4615	LIBJO ES SGC MEMBER	3822
4616	N/A	3823
4617	STA.CLARA ELEMENTARY SCHOOL TEACHERS' ASSOCIATION	3818
4618	BATANGAS CITY PUBLIC SCHOOL TEACHER AND EMPLOYERS ASSOCIATION	3818
4619	GIRL SCOUTS OF THE PHILIPPINES 	3819
4620	SCHOOL FACULTY ORGANIZATION	3821
4621	BOY SCOUT OF THE PHILIPPINES BATANGAS CITY COUNCIL	3821
4622	PHILIPPINE PUBLIC SCHOOL TEACHERS ASSOCIATION 	3824
4623	BOYS SCOUT OF THE PHILIPPINES 	3824
4624	GIRL SCOUT OF THE PHILIPPINE 	3824
4625	N/A	3825
4626	N/A	3829
4627	N/A	3831
4628	N/A	3832
4629	PHILIPPINE PUBLIC SCHOOL TEACHERS ASSOCIATION (PPSTA)	3833
4630	PHILIPPINE NATIONAL PUBLIC KEY INFRASTRUCTURE	3833
4631	PAMBANSANG SAMAHAN NG MGA TAGAMASID AT TAGAPAGTAGUYOD NG FILIPINO (PASATAF)	3833
4632	N/A	3834
4633	GIRL SCOUT OF THE PHILIPPINES, BATANGAS CITY COUNCIL	3841
4634	SCHOOL FACULTY ORGANIZATION	3841
4635	GIRL SCOUTS OF THE PHILIPPINES  	3842
4636	N/A	3843
4637	LE CLERMONT HOMEOWNERS ASSOCIATION	3845
4638	GIRL SCOUT OF THE PHILIPPINES	3851
4639	N/A	3852
4640	BOYSCOUT OF THE PHILIPPINES	3854
4641	BATANGAS CITY PUBLIC SCHOOL TEACHERS ASSOCIATION	3858
4642	N/A	3860
4643	BOY SCHOUT OF THE PHILIPPINES	3861
4644	PUBLIC SCHOOL HEADS ASSOCIATION	3861
4645	BATANGAS CITY PUBLIC SCHOOL TEACHERS ASSOCIATION	3866
4646	N/A	3869
4647	N/A	3871
4648	CASA DEL BAMBINOO EMMANUEL MONTESSORI	3862
4649	BOY SCOUT OF THE PHILIPPINES BATANGAS CITY	3862
4650	N/A	3872
4651	N/A	3874
4652	N/A	3876
4653	INSTITUTE OF GLOBAL PROFESSIONALS	3882
4654	ASCENDENS ASIA INTERNATIONAL RESEARCH INSTITUTE PTE. LTD	3882
4655	N/A	3881
4656	GIRL SCOUT OF THE PHILIPPINES	3916
4657	BOY SCOUT OF THE PHILIPPINES	3916
4658	N/A	3918
4659	LIBJO ELEMENTARY SCHOOL TEACHERS AND EMPLOYEES ASSOCIATION	3917
4660	BOY SCOUT OF THE PHILIPPINES MEMBER	3919
4661	N/A	3921
4662	N/A	3922
4663	PHILIPPINE ASSOCIATION FOR TEACHERS EDUCATORS (PAFTE)	3923
4664	AKO OFW ORGANIZATION (KUWAIT)	3923
4665	MANILA TEACHERS MUTUAL AID SYSTEM	3925
4666	PHILIPPINE PUBLIC SCHOOL TEACHERS ASSOCIATION	3925
4667	BATANGAS ADVENT MULTIPURPOSE COOPERATIVE	3925
4668	PHILIPPINE ELEMENTARY SCHOOL PRINCIPALS ASSOCIATION	3925
4669	GIRL SCOUT OF THE PHILIPPINES	3924
4670	BOY SCOUT OF THE PHILIPPINES	3924
4671	PHILIPPINE PUBLIC SCHOOL TEACHERS ASSOCIATION	3960
4672	PHILIPPINE ASSOCIATION FOR TEACHER AND EDUCATORS, INC.	3958
4673	N/A	3961
4674	PHILIPPINE PUBLIC SCHOOL AND TEACHERS ASSOCIATION	3959
4675	N/A	3962
\.


--
-- TOC entry 4634 (class 0 OID 0)
-- Dependencies: 353
-- Name: Organizations_OrganizationId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Organizations_OrganizationId_seq"', 4675, true);


--
-- TOC entry 3976 (class 0 OID 17292)
-- Dependencies: 354
-- Data for Name: OtherCharges; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "OtherCharges" ("OtherChargesId", "ExpenseId", "ExpenseName", "Amount") FROM stdin;
\.


--
-- TOC entry 4635 (class 0 OID 0)
-- Dependencies: 355
-- Name: OtherCharges_OtherChargesId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"OtherCharges_OtherChargesId_seq"', 408, true);


--
-- TOC entry 3978 (class 0 OID 17300)
-- Dependencies: 356
-- Data for Name: OtherDeductions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "OtherDeductions" ("OtherDeductionId", "DeductionName", "OtherDeductionValue", "PayrollDateId", "EmployeeId", "DeductionTypeId") FROM stdin;
\.


--
-- TOC entry 4636 (class 0 OID 0)
-- Dependencies: 357
-- Name: OtherDeductions_OtherDeductionId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"OtherDeductions_OtherDeductionId_seq"', 239, true);


--
-- TOC entry 3980 (class 0 OID 17309)
-- Dependencies: 358
-- Data for Name: Overtimes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Overtimes" ("OvertimeId", "EmployeeId", "ScheduleDate", "NumberOfHours", "ApproverEmployeeId") FROM stdin;
\.


--
-- TOC entry 4637 (class 0 OID 0)
-- Dependencies: 359
-- Name: Overtimes_OvertimeId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Overtimes_OvertimeId_seq"', 13, true);


--
-- TOC entry 3982 (class 0 OID 17314)
-- Dependencies: 360
-- Data for Name: PayrollAllowances; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "PayrollAllowances" ("PayrollAllowanceId", "PayrollId", "EmployeeAllowanceId", "Amount", "AllowanceName", "Period") FROM stdin;
\.


--
-- TOC entry 4638 (class 0 OID 0)
-- Dependencies: 361
-- Name: PayrollAllowances_PayrollAllowanceId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"PayrollAllowances_PayrollAllowanceId_seq"', 13434, true);


--
-- TOC entry 3984 (class 0 OID 17323)
-- Dependencies: 362
-- Data for Name: PayrollClusters; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "PayrollClusters" ("PayrollClusterId", "ClusterName", "FundingAgency") FROM stdin;
\.


--
-- TOC entry 4639 (class 0 OID 0)
-- Dependencies: 363
-- Name: PayrollClusters_PayrollClusterId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"PayrollClusters_PayrollClusterId_seq"', 13, true);


--
-- TOC entry 3986 (class 0 OID 17333)
-- Dependencies: 364
-- Data for Name: PayrollDates; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "PayrollDates" ("PayrollDateId", "PayrollDateName", "StartDate", "EndDate", "PayrollDateReflection", "Month", "Year", "Day", "PayrollType", "BonusTypeId", "IsLocked", "SpecificCutoff", "UserId", "IsOpen") FROM stdin;
\.


--
-- TOC entry 4640 (class 0 OID 0)
-- Dependencies: 365
-- Name: PayrollDates_PayrollDateId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"PayrollDates_PayrollDateId_seq"', 87, true);


--
-- TOC entry 3988 (class 0 OID 17343)
-- Dependencies: 366
-- Data for Name: PayrollOtherDeductions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "PayrollOtherDeductions" ("PayrollOtherDeductionsId", "PayrollDateId", "ContributionTypeId") FROM stdin;
\.


--
-- TOC entry 4641 (class 0 OID 0)
-- Dependencies: 367
-- Name: PayrollOtherDeductions_PayrollOtherDeductionsId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"PayrollOtherDeductions_PayrollOtherDeductionsId_seq"', 1, false);


--
-- TOC entry 3990 (class 0 OID 17348)
-- Dependencies: 368
-- Data for Name: PayrollPremiums; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "PayrollPremiums" ("PayrollPremiumId", "PayrollId", "PremiumName", "Amount", "isPersonalDeduction", "ContributionTypeId") FROM stdin;
\.


--
-- TOC entry 4642 (class 0 OID 0)
-- Dependencies: 369
-- Name: PayrollPremiums_PayrollPremiumId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"PayrollPremiums_PayrollPremiumId_seq"', 138135, true);


--
-- TOC entry 3992 (class 0 OID 17356)
-- Dependencies: 370
-- Data for Name: PayrollProfiles; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "PayrollProfiles" ("PayrollProfileId", "EmployeeId", "MonthlyRate", "HalfMonthRate", "DailyRate", "HourlyRate", "HourlyOtRate", "HourlyRestDayRate", "HourlyRestDayOtRate", "HourlyNdRate", "HourlyOtNdRate", "HourlyRestDayNdRate", "HourlyRestDayOtNdRate", "SpecialHolidayHourlyRate", "SpecialHolidayHourlyOtRate", "SpecialHolidayHourlyRestDayRate", "SpecialHolidayHourlyRestDayOtRate", "SpecialHolidayHourlyNdRate", "SpecialHolidayHourlyOtNdRate", "SpecialHolidayHourlyRestDayNdRate", "SpecialHolidayHourlyRestDayOtNdRate", "RegularHolidayHourlyRate", "RegularHolidayHourlyOtRate", "RegularHolidayHourlyRestDayRate", "RegularHolidayHourlyRestDayOtRate", "RegularHolidayHourlyNdRate", "RegularHolidayHourlyOtNdRate", "RegularHolidayHourlyRestDayNdRate", "RegularHolidayHourlyRestDayOtNdRate", "DoubleHolidayHourlyRate", "DoubleHolidayHourlyOtRate", "DoubleHolidayHourlyRestDayRate", "DoubleHolidayHourlyRestDayOtRate", "DoubleHolidayHourlyNdRate", "DoubleHolidayHourlyOtNdRate", "DoubleHolidayHourlyRestDayNdRate", "DoubleHolidayHourlyRestDayOtNdRate", "Allowance01Id", "Allowance01Amount", "Allowance02Id", "Allowance02Amount", "Allowance03Id", "Allowance03Amount", "Allowance04Id", "Allowance04Amount", "Allowance05Id", "Allowance05Amount", "Allowance06Id", "Allowance06Amount", "Allowance07Id", "Allowance07Amount", "Allowance08Id", "Allowance08Amount", "Allowance09Id", "Allowance09Amount", "Allowance10Id", "Allowance10Amount", "Loan01Id", "Loan02Id", "Loan03Id", "Loan04Id", "Loan05Id", "Loan06Id", "Loan07Id", "Loan08Id", "Loan09Id", "Loan10Id", "Loan11Id", "Loan12Id", "Loan13Id", "Loan14Id", "Loan15Id", "Loan16Id", "Loan17Id", "Loan18Id", "Loan19Id", "Loan20Id", "Loan01Amount", "Loan02Amount", "Loan03Amount", "Loan04Amount", "Loan05Amount", "Loan06Amount", "Loan07Amount", "Loan08Amount", "Loan09Amount", "Loan10Amount", "Loan11Amount", "Loan12Amount", "Loan13Amount", "Loan14Amount", "Loan15Amount", "Loan16Amount", "Loan17Amount", "Loan18Amount", "Loan19Amount", "Loan20Amount", "Deduction01Id", "Deduction02Id", "Deduction03Id", "Deduction04Id", "Deduction05Id", "Deduction06Id", "Deduction07Id", "Deduction08Id", "Deduction09Id", "Deduction10Id", "Deduction01Amount", "Deduction02Amount", "Deduction03Amount", "Deduction04Amount", "Deduction05Amount", "Deduction06Amount", "Deduction07Amount", "Deduction08Amount", "Deduction09Amount", "Deduction10Amount", "GsisPsAmount", "HdmfPsAmount", "PhilHealthPsAmount", "WithholdingTaxAmount", "GsisGsAmount", "HdmfGsAmount", "PhilHealthGsAmount", "IsGsisCustom", "IsHdmfCustom", "IsPhilHealthCustom", "IsWithholdingTaxCustom", "GsisEccAmount", "Allowance01Cutoff", "Allowance02Cutoff", "Allowance03Cutoff", "Allowance04Cutoff", "Allowance05Cutoff", "Allowance06Cutoff", "Allowance07Cutoff", "Allowance08Cutoff", "Allowance09Cutoff", "Allowance10Cutoff", "Loan01Cutoff", "Loan02Cutoff", "Loan03Cutoff", "Loan04Cutoff", "Loan05Cutoff", "Loan06Cutoff", "Loan07Cutoff", "Loan08Cutoff", "Loan09Cutoff", "Loan10Cutoff", "Loan11Cutoff", "Loan12Cutoff", "Loan13Cutoff", "Loan14Cutoff", "Loan15Cutoff", "Loan16Cutoff", "Loan17Cutoff", "Loan18Cutoff", "Loan19Cutoff", "Loan20Cutoff", "Deduction01Cutoff", "Deduction02Cutoff", "Deduction03Cutoff", "Deduction04Cutoff", "Deduction05Cutoff", "Deduction06Cutoff", "Deduction07Cutoff", "Deduction08Cutoff", "Deduction09Cutoff", "Deduction10Cutoff", "IsSssCustom", "SssEeAmount", "SssErAmount", "ClusterName", "WithholdingTaxComputation") FROM stdin;
40	1	32431.0000000000	16215.5000000000	1081.0333333333	135.1291666667	168.9114583333	202.6937500000	253.3671875000	135.1291666667	168.9114583333	202.6937500000	253.3671875000	135.1291666667	135.1291666667	304.0406250000	304.0406250000	135.1291666667	135.1291666667	304.0406250000	304.0406250000	135.1291666667	135.1291666667	202.6937500000	202.6937500000	135.1291666667	135.1291666667	202.6937500000	202.6937500000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	2	2000.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	109	99	81	106	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	1000.0000000000	5295.8000000000	1000.0000000000	1311.1200000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0	0	0	0	0	0	0	0	0	0	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	1617.0500000000	0.0000000000	0.0000000000	0.0000000000	f	f	f	t	0.0000000000	None										None	None	None	None																											f	0.0000000000	0.0000000000		Custom rate
2707	2745	33575.0000000000	16787.5000000000	1119.1666666667	139.8958333333	174.8697916667	209.8437500000	262.3046875000	139.8958333333	174.8697916667	209.8437500000	262.3046875000	139.8958333333	139.8958333333	314.7656250000	314.7656250000	139.8958333333	139.8958333333	314.7656250000	314.7656250000	139.8958333333	139.8958333333	209.8437500000	209.8437500000	139.8958333333	139.8958333333	209.8437500000	209.8437500000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0	0	0	0	0	0	0	0	0	0	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	f	f	f	f	0.0000000000	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	f	0.0000000000	0.0000000000		Auto-compute
2708	2746	16200.0000000000	8100.0000000000	540.0000000000	67.5000000000	84.3750000000	101.2500000000	126.5625000000	67.5000000000	84.3750000000	101.2500000000	126.5625000000	67.5000000000	67.5000000000	151.8750000000	151.8750000000	67.5000000000	67.5000000000	151.8750000000	151.8750000000	67.5000000000	67.5000000000	101.2500000000	101.2500000000	67.5000000000	67.5000000000	101.2500000000	101.2500000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0	0	0	0	0	0	0	0	0	0	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	f	f	f	f	0.0000000000	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	f	0.0000000000	0.0000000000		Auto-compute
2709	2747	12034.0000000000	6017.0000000000	401.1333333333	50.1416666667	62.6770833333	75.2125000000	94.0156250000	50.1416666667	62.6770833333	75.2125000000	94.0156250000	50.1416666667	50.1416666667	112.8187500000	112.8187500000	50.1416666667	50.1416666667	112.8187500000	112.8187500000	50.1416666667	50.1416666667	75.2125000000	75.2125000000	50.1416666667	50.1416666667	75.2125000000	75.2125000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0	0	0	0	0	0	0	0	0	0	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	f	f	f	f	0.0000000000	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	f	0.0000000000	0.0000000000		Auto-compute
2710	2748	18251.0000000000	9125.5000000000	608.3666666667	76.0458333333	95.0572916667	114.0687500000	142.5859375000	76.0458333333	95.0572916667	114.0687500000	142.5859375000	76.0458333333	76.0458333333	171.1031250000	171.1031250000	76.0458333333	76.0458333333	171.1031250000	171.1031250000	76.0458333333	76.0458333333	114.0687500000	114.0687500000	76.0458333333	76.0458333333	114.0687500000	114.0687500000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0.0000000000	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0	0	0	0	0	0	0	0	0	0	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	0.0000000000	f	f	f	f	0.0000000000	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	None	f	0.0000000000	0.0000000000		Auto-compute
\.


--
-- TOC entry 4643 (class 0 OID 0)
-- Dependencies: 371
-- Name: PayrollProfiles_PayrollProfileId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"PayrollProfiles_PayrollProfileId_seq"', 2710, true);


--
-- TOC entry 3994 (class 0 OID 17374)
-- Dependencies: 372
-- Data for Name: Payrolls; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Payrolls" ("PayrollId", "IsRecieved", "PayrollDateId", "EmployeeId", "Present", "Absences", "BasicPay", "AbsencesDeduction", "LateDeduction", "OTPay", "OTHrs", "NightHrs", "NightPay", "HolidayPay", "SpecialHolidayPay", "SpecialHolidayOTPay", "OtherPay", "OtherOTPay", "TotalHrs", "HolidayOTPay", "GenerationType", "RegularDays", "RegularHours", "SpecialHolidayDays", "RegularHolidayDays", "SpecialHolidayHours", "RegularHolidayHours", "OvertimeHours", "NightDifferentialHours", "NightDifferentialOtHours", "ShOvertimeHours", "ShNightDifferentialHours", "ShNightDifferentialOtHours", "RhOvertimeHours", "RhNightDifferentialHours", "RhNightDifferentialOtHours", "RequiredDaysToAttend", "AbsentDays", "LeaveDays", "Allowance01Id", "Allowance02Id", "Allowance03Id", "Allowance04Id", "Allowance05Id", "Allowance06Id", "Allowance07Id", "Allowance08Id", "Allowance09Id", "Allowance10Id", "Allowance01Amount", "Allowance02Amount", "Allowance03Amount", "Allowance04Amount", "Allowance05Amount", "Allowance06Amount", "Allowance07Amount", "Allowance08Amount", "Allowance09Amount", "Allowance10Amount", "TotalAllowanceAmount", "Loan01Id", "Loan02Id", "Loan03Id", "Loan04Id", "Loan05Id", "Loan06Id", "Loan07Id", "Loan08Id", "Loan09Id", "Loan10Id", "Loan11Id", "Loan12Id", "Loan13Id", "Loan14Id", "Loan15Id", "Loan16Id", "Loan17Id", "Loan18Id", "Loan19Id", "Loan20Id", "Loan01Amount", "Loan02Amount", "Loan03Amount", "Loan04Amount", "Loan05Amount", "Loan06Amount", "Loan07Amount", "Loan08Amount", "Loan09Amount", "Loan10Amount", "Loan11Amount", "Loan12Amount", "Loan13Amount", "Loan14Amount", "Loan15Amount", "Loan16Amount", "Loan17Amount", "Loan18Amount", "Loan19Amount", "Loan20Amount", "TotalLoanAmount", "Deduction01Id", "Deduction02Id", "Deduction03Id", "Deduction04Id", "Deduction05Id", "Deduction06Id", "Deduction07Id", "Deduction08Id", "Deduction09Id", "Deduction10Id", "Deduction01Amount", "Deduction02Amount", "Deduction03Amount", "Deduction04Amount", "Deduction05Amount", "Deduction06Amount", "Deduction07Amount", "Deduction08Amount", "Deduction09Amount", "Deduction10Amount", "TotalDeductionAmount", "Adjustment01Reason", "Adjustment02Reason", "Adjustment03Reason", "Adjustment04Reason", "Adjustment05Reason", "Adjustment06Reason", "Adjustment07Reason", "Adjustment08Reason", "Adjustment09Reason", "Adjustment10Reason", "Adjustment01Amount", "Adjustment02Amount", "Adjustment03Amount", "Adjustment04Amount", "Adjustment05Amount", "Adjustment06Amount", "Adjustment07Amount", "Adjustment08Amount", "Adjustment09Amount", "Adjustment10Amount", "TotalAdjustmentAmount", "GsisPsAmount", "GsisGsAmount", "GsisEccAmount", "HdmfPsAmount", "HdmfGsAmount", "PhilHealthPsAmount", "PhilHealthGsAmount", "WithholdingTaxAmount", "NetPayAmount", "LeaveWithoutPayDays", "NightDifferentialPay", "FirstCutoffValue", "SecondCutoffValue", "Adjustment01Cutoff", "Adjustment02Cutoff", "Adjustment03Cutoff", "Adjustment04Cutoff", "Adjustment05Cutoff", "Adjustment06Cutoff", "Adjustment07Cutoff", "Adjustment08Cutoff", "Adjustment09Cutoff", "Adjustment10Cutoff", "SssEeAmount", "SssErAmount", "TotalTaxableAmount", "TotalNonTaxableAmount", "TotalGrossAmount", "TardinessMinutes", "TardinessEquivalent", "AbsentEquivalent", "OvertimeEquivalent", "Allowance01Cutoff", "Allowance02Cutoff", "Allowance03Cutoff", "Allowance04Cutoff", "Allowance05Cutoff", "Allowance06Cutoff", "Allowance07Cutoff", "Allowance08Cutoff", "Allowance09Cutoff", "Allowance10Cutoff", "Loan01Cutoff", "Loan02Cutoff", "Loan03Cutoff", "Loan04Cutoff", "Loan05Cutoff", "Loan06Cutoff", "Loan07Cutoff", "Loan08Cutoff", "Loan09Cutoff", "Loan10Cutoff", "Loan11Cutoff", "Loan12Cutoff", "Loan13Cutoff", "Loan14Cutoff", "Loan15Cutoff", "Loan16Cutoff", "Loan17Cutoff", "Loan18Cutoff", "Loan19Cutoff", "Loan20Cutoff", "Deduction01Cutoff", "Deduction02Cutoff", "Deduction03Cutoff", "Deduction04Cutoff", "Deduction05Cutoff", "Deduction06Cutoff", "Deduction07Cutoff", "Deduction08Cutoff", "Deduction09Cutoff", "Deduction10Cutoff", "LeaveWithoutFileDays") FROM stdin;
\.


--
-- TOC entry 4644 (class 0 OID 0)
-- Dependencies: 373
-- Name: Payrolls_PayrollId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Payrolls_PayrollId_seq"', 16797, true);


--
-- TOC entry 3996 (class 0 OID 17433)
-- Dependencies: 374
-- Data for Name: PermissionToLeaves; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "PermissionToLeaves" ("PermissionToLeaveId", "EmployeeId", "DepartmentId", "OfficeToVisit", "ReasonForTravel", "DateFiled", "DateFrom", "DateTo", "NumberOfDays", "Status", "PositionId", "DivisionId", "SectionId") FROM stdin;
\.


--
-- TOC entry 4645 (class 0 OID 0)
-- Dependencies: 375
-- Name: PermissionToLeaves_PermissionToLeaveId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"PermissionToLeaves_PermissionToLeaveId_seq"', 2, true);


--
-- TOC entry 4646 (class 0 OID 0)
-- Dependencies: 377
-- Name: PersonnelActionMemoNotificati_PersonnelActionMemoNotificati_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"PersonnelActionMemoNotificati_PersonnelActionMemoNotificati_seq"', 13, true);


--
-- TOC entry 3998 (class 0 OID 17441)
-- Dependencies: 376
-- Data for Name: PersonnelActionMemoNotifications; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "PersonnelActionMemoNotifications" ("PersonnelActionMemoNotificationId", "IsRead", "PersonnelActionMemoId") FROM stdin;
\.


--
-- TOC entry 4000 (class 0 OID 17446)
-- Dependencies: 378
-- Data for Name: PersonnelActionMemos; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "PersonnelActionMemos" ("PersonnelActionMemoId", "DateHired", "EffectivityDate", "EmploymentStatusId", "PositionId", "SalaryRate", "RateTypeId", "Status", "DateCreated", "Remarks", "DateApproved", "BasicInformationId", "PurposeOfMovement", "ToStep", "EncoderBasicInformationId", "ApproverBasicInformationId", "PlantillaRecordId", "Value", "JobVacancyId", "FromStep", "ApplicationStatus", "NonPlantillaRecordId") FROM stdin;
2280	2024-01-01	2024-01-01	1	1653	402900.00	2	Approved	2024-06-07		2024-06-07 00:00:00	3599	New Employee	1	1	1	1152	0	377	0		0
2279	2024-01-01	2024-01-01	1	101	194400.00	2	Approved	2024-06-07		2024-06-07 00:00:00	3600	New Employee	1	1	1	1156	0	381	0		0
2283	2024-07-09	2024-07-09	1	2004	144408.00	2	Approved	2024-07-09		2024-07-09 00:00:00	3634	New Employee	1	1	1	1157	0	382	0		0
2282	0001-01-01	0001-01-01	1	2009	235116.00	2	Declined	2024-07-01		0001-01-01 00:00:00	3601	New Employee	1	1	0	0	0	379	0	Disapproved	0
2281	2024-07-09	2024-07-09	1	1994	219012.00	2	Approved	2024-06-07		2024-07-09 00:00:00	3601	New Employee	1	1	1	1155	0	380	0		0
2284	0001-01-01	0001-01-01	1	2009	235116.00	2	Pending	2024-07-11		0001-01-01 00:00:00	3639	New Employee	1	1	0	0	0	379	0	Pending	0
\.


--
-- TOC entry 4647 (class 0 OID 0)
-- Dependencies: 379
-- Name: PersonnelActionMemos_PersonnelActionMemoId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"PersonnelActionMemos_PersonnelActionMemoId_seq"', 2284, true);


--
-- TOC entry 4648 (class 0 OID 0)
-- Dependencies: 381
-- Name: PhilHealthContribution_PhilHealthBracketId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"PhilHealthContribution_PhilHealthBracketId_seq"', 312, true);


--
-- TOC entry 4002 (class 0 OID 17458)
-- Dependencies: 380
-- Data for Name: PhilHealthContributions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "PhilHealthContributions" ("PhilHealthContributionId", "MinBracket", "MaxBracket", "ERShare", "EEShare", "DateImplemented", "ValidUntil", "EmployeePercentage", "EmployerPercentage") FROM stdin;
1	0.01	10000.00	137.50	137.50	2018-01-01	 	0.00000	0.00000
2	11068.00	11159.00	152.19	152.18	2018-01-01	 	0.00000	0.00000
3	11160.00	11253.00	153.45	153.45	2018-01-01	 	0.00000	0.00000
4	11254.00	11347.00	154.75	154.74	2018-01-01	 	0.00000	0.00000
5	11348.00	11442.00	156.04	156.04	2018-01-01	 	0.00000	0.00000
6	11443.00	11537.00	157.35	157.34	2018-01-01	 	0.00000	0.00000
7	11538.00	11634.00	158.65	158.65	2018-01-01	 	0.00000	0.00000
8	11635.00	11731.00	159.99	159.98	2018-01-01	 	0.00000	0.00000
9	11732.00	11760.00	161.32	161.31	2018-01-01	 	0.00000	0.00000
10	11761.00	11852.00	161.72	161.71	2018-01-01	 	0.00000	0.00000
11	11851.00	11941.00	162.95	162.95	2018-01-01	 	0.00000	0.00000
12	11942.00	12033.00	164.21	164.20	2018-01-01	 	0.00000	0.00000
13	12034.00	12125.00	165.47	165.46	2018-01-01	 	0.00000	0.00000
14	12126.00	12218.00	166.73	166.73	2018-01-01	 	0.00000	0.00000
15	12219.00	12312.00	168.01	168.01	2018-01-01	 	0.00000	0.00000
16	12313.00	12406.00	169.31	169.30	2018-01-01	 	0.00000	0.00000
17	12407.00	12465.00	170.60	170.59	2018-01-01	 	0.00000	0.00000
18	12466.00	12561.00	171.41	171.41	2018-01-01	 	0.00000	0.00000
19	12562.00	12657.00	172.73	172.73	2018-01-01	 	0.00000	0.00000
20	12658.00	12755.00	174.05	174.05	2018-01-01	 	0.00000	0.00000
21	12756.00	12853.00	175.40	175.39	2018-01-01	 	0.00000	0.00000
22	12854.00	12951.00	176.75	176.74	2018-01-01	 	0.00000	0.00000
23	12952.00	13051.00	178.09	178.09	2018-01-01	 	0.00000	0.00000
24	13052.00	13151.00	179.47	179.46	2018-01-01	 	0.00000	0.00000
25	13152.00	13213.00	180.84	180.84	2018-01-01	 	0.00000	0.00000
26	13214.00	13315.00	181.70	181.69	2018-01-01	 	0.00000	0.00000
27	13316.00	13417.00	183.10	183.09	2018-01-01	 	0.00000	0.00000
28	13418.00	13520.00	184.49	184.48	2018-01-01	 	0.00000	0.00000
29	13521.00	13624.00	185.91	185.91	2018-01-01	 	0.00000	0.00000
30	13625.00	13728.00	187.34	187.34	2018-01-01	 	0.00000	0.00000
31	13729.00	13834.00	188.78	188.77	2018-01-01	 	0.00000	0.00000
32	13835.00	13940.00	190.23	190.23	2018-01-01	 	0.00000	0.00000
33	13941.00	14006.00	191.69	191.69	2018-01-01	 	0.00000	0.00000
34	14007.00	14114.00	192.60	192.59	2018-01-01	 	0.00000	0.00000
35	14115.00	14223.00	194.08	194.08	2018-01-01	 	0.00000	0.00000
36	14223.00	14331.00	195.57	195.56	2018-01-01	 	0.00000	0.00000
37	14332.00	14441.00	197.07	197.06	2018-01-01	 	0.00000	0.00000
38	14442.00	14552.00	198.58	198.57	2018-01-01	 	0.00000	0.00000
39	14553.00	14664.00	200.10	200.10	2018-01-01	 	0.00000	0.00000
40	14665.00	14776.00	201.65	201.64	2018-01-01	 	0.00000	0.00000
41	14777.00	14846.00	203.18	203.18	2018-01-01	 	0.00000	0.00000
42	14847.00	14960.00	204.15	204.14	2018-01-01	 	0.00000	0.00000
43	14961.00	15075.00	205.72	205.71	2018-01-01	 	0.00000	0.00000
44	15076.00	15191.00	207.30	207.29	2018-01-01	 	0.00000	0.00000
45	15192.00	15308.00	208.89	208.89	2018-01-01	 	0.00000	0.00000
46	15309.00	15425.00	210.50	210.50	2018-01-01	 	0.00000	0.00000
47	15426.00	15544.00	212.11	212.11	2018-01-01	 	0.00000	0.00000
48	15545.00	15663.00	213.75	213.74	2018-01-01	 	0.00000	0.00000
49	15664.00	15737.00	215.38	215.38	2018-01-01	 	0.00000	0.00000
50	15738.00	15858.00	216.40	216.40	2018-01-01	 	0.00000	0.00000
51	15859.00	15980.00	218.06	218.06	2018-01-01	 	0.00000	0.00000
52	15981.00	16103.00	219.74	219.73	2018-01-01	 	0.00000	0.00000
53	16104.00	16226.00	221.43	221.43	2018-01-01	 	0.00000	0.00000
54	16227.00	16351.00	223.12	223.12	2018-01-01	 	0.00000	0.00000
55	16352.00	16446.00	224.84	224.84	2018-01-01	 	0.00000	0.00000
56	16447.00	16603.00	226.56	226.56	2018-01-01	 	0.00000	0.00000
57	16604.00	16757.00	228.31	228.30	2018-01-01	 	0.00000	0.00000
58	16758.00	16909.00	230.43	230.42	2018-01-01	 	0.00000	0.00000
59	16910.00	17062.00	232.52	232.51	2018-01-01	 	0.00000	0.00000
60	17063.00	17216.00	234.62	234.61	2018-01-01	 	0.00000	0.00000
61	17217.00	17371.00	236.73	236.73	2018-01-01	 	0.00000	0.00000
62	17372.00	17528.00	238.87	238.86	2018-01-01	 	0.00000	0.00000
63	17529.00	17687.00	241.03	241.02	2018-01-01	 	0.00000	0.00000
64	17688.00	17847.00	243.21	243.21	2018-01-01	 	0.00000	0.00000
65	17848.00	17974.00	245.41	245.41	2018-01-01	 	0.00000	0.00000
66	17975.00	18124.00	247.16	247.15	2018-01-01	 	0.00000	0.00000
67	18125.00	18276.00	249.22	249.22	2018-01-01	 	0.00000	0.00000
68	18277.00	18429.00	251.31	251.30	2018-01-01	 	0.00000	0.00000
69	18430.00	18583.00	253.42	253.41	2018-01-01	 	0.00000	0.00000
70	18584.00	18738.00	255.53	255.53	2018-01-01	 	0.00000	0.00000
71	18739.00	18895.00	257.66	257.66	2018-01-01	 	0.00000	0.00000
72	18896.00	19053.00	259.82	259.82	2018-01-01	 	0.00000	0.00000
73	19054.00	19232.00	261.99	261.99	2018-01-01	 	0.00000	0.00000
74	19233.00	19393.00	264.46	264.45	2018-01-01	 	0.00000	0.00000
75	19394.00	19555.00	266.67	266.67	2018-01-01	 	0.00000	0.00000
76	19556.00	19719.00	268.90	268.89	2018-01-01	 	0.00000	0.00000
77	19720.00	19883.00	271.15	271.15	2018-01-01	 	0.00000	0.00000
78	19884.00	20050.00	273.41	273.40	2018-01-01	 	0.00000	0.00000
79	20051.00	20217.00	275.70	275.70	2018-01-01	 	0.00000	0.00000
80	20218.00	20386.00	278.00	277.99	2018-01-01	 	0.00000	0.00000
81	20387.00	20436.00	280.32	280.32	2018-01-01	 	0.00000	0.00000
82	20437.00	20753.00	281.01	281.01	2018-01-01	 	0.00000	0.00000
83	20754.00	21036.00	285.37	285.37	2018-01-01	 	0.00000	0.00000
84	21038.00	21326.00	289.28	289.27	2018-01-01	 	0.00000	0.00000
85	21327.00	21618.00	293.25	293.24	2018-01-01	 	0.00000	0.00000
86	21619.00	21914.00	297.26	297.26	2018-01-01	 	0.00000	0.00000
87	21915.00	22215.00	301.33	301.33	2018-01-01	 	0.00000	0.00000
88	22216.00	22519.00	305.47	305.47	2018-01-01	 	0.00000	0.00000
89	22520.00	22828.00	309.65	309.65	2018-01-01	 	0.00000	0.00000
90	22829.00	22937.00	313.90	313.90	2018-01-01	 	0.00000	0.00000
91	22938.00	22941.00	315.40	315.40	2018-01-01	 	0.00000	0.00000
92	22942.00	23221.00	315.46	315.45	2018-01-01	 	0.00000	0.00000
93	23222.00	23509.00	319.31	319.30	2018-01-01	 	0.00000	0.00000
94	23510.00	23800.00	323.27	323.26	2018-01-01	 	0.00000	0.00000
95	23801.00	24095.00	327.27	327.26	2018-01-01	 	0.00000	0.00000
96	24096.00	24394.00	331.32	331.32	2018-01-01	 	0.00000	0.00000
97	24395.00	24696.00	335.44	335.43	2018-01-01	 	0.00000	0.00000
98	24697.00	25002.00	339.59	339.58	2018-01-01	 	0.00000	0.00000
99	25003.00	25231.00	343.79	343.79	2018-01-01	 	0.00000	0.00000
100	25232.00	25544.00	346.94	346.94	2018-01-01	 	0.00000	0.00000
101	25545.00	25860.00	351.25	351.24	2018-01-01	 	0.00000	0.00000
102	25861.00	26180.00	355.59	355.58	2018-01-01	 	0.00000	0.00000
103	26181.00	26295.00	359.99	359.98	2018-01-01	 	0.00000	0.00000
104	26296.00	26505.00	361.57	361.57	2018-01-01	 	0.00000	0.00000
105	26506.00	26833.00	364.46	364.45	2018-01-01	 	0.00000	0.00000
106	26834.00	27165.00	368.97	368.96	2018-01-01	 	0.00000	0.00000
107	27166.00	27502.00	373.54	373.53	2018-01-01	 	0.00000	0.00000
108	27503.00	27754.00	378.17	378.16	2018-01-01	 	0.00000	0.00000
109	27755.00	27765.00	381.63	381.63	2018-01-01	 	0.00000	0.00000
110	27766.00	28098.00	381.79	381.78	2018-01-01	 	0.00000	0.00000
111	28099.00	28446.00	386.36	386.36	2018-01-01	 	0.00000	0.00000
112	28447.00	28799.00	391.15	391.14	2018-01-01	 	0.00000	0.00000
113	28800.00	29155.00	396.00	396.00	2018-01-01	 	0.00000	0.00000
114	29156.00	29516.00	400.90	400.89	2018-01-01	 	0.00000	0.00000
115	29517.00	29882.00	405.86	405.85	2018-01-01	 	0.00000	0.00000
116	29883.00	30252.00	410.89	410.89	2018-01-01	 	0.00000	0.00000
117	30253.00	30530.00	415.98	415.97	2018-01-01	 	0.00000	0.00000
118	30531.00	30908.00	419.80	419.80	2018-01-01	 	0.00000	0.00000
119	30909.00	31291.00	425.00	425.00	2018-01-01	 	0.00000	0.00000
120	31292.00	31679.00	430.27	430.26	2018-01-01	 	0.00000	0.00000
121	31680.00	32071.00	435.60	435.60	2018-01-01	 	0.00000	0.00000
122	32072.00	32468.00	440.99	440.99	2018-01-01	 	0.00000	0.00000
123	32469.00	32870.00	446.45	446.44	2018-01-01	 	0.00000	0.00000
124	32871.00	33278.00	451.98	451.97	2018-01-01	 	0.00000	0.00000
125	33279.00	33583.00	457.59	457.58	2018-01-01	 	0.00000	0.00000
126	33584.00	33999.00	461.78	461.78	2018-01-01	 	0.00000	0.00000
127	34000.00	34420.00	467.50	467.50	2018-01-01	 	0.00000	0.00000
128	34421.00	34540.00	473.29	473.28	2018-01-01	 	0.00000	0.00000
129	34541.00	34846.00	474.94	474.94	2018-01-01	 	0.00000	0.00000
130	34847.00	35278.00	479.15	479.14	2018-01-01	 	0.00000	0.00000
131	35279.00	35715.00	485.09	485.08	2018-01-01	 	0.00000	0.00000
132	35716.00	36158.00	491.10	491.09	2018-01-01	 	0.00000	0.00000
133	36159.00	36605.00	497.19	497.18	2018-01-01	 	0.00000	0.00000
134	36606.00	36941.00	503.34	503.33	2018-01-01	 	0.00000	0.00000
135	36942.00	37399.00	507.96	507.95	2018-01-01	 	0.00000	0.00000
136	37400.00	37862.00	514.25	514.25	2018-01-01	 	0.00000	0.00000
137	37863.00	38331.00	520.62	520.61	2018-01-01	 	0.00000	0.00000
138	38332.00	38806.00	527.07	527.06	2018-01-01	 	0.00000	0.00000
139	38807.00	39289.00	533.60	533.59	2018-01-01	 	0.00000	0.00000
140	39288.00	39773.00	540.21	540.21	2018-01-01	 	0.00000	0.00000
141	39774.00	39774.00	546.90	546.89	2018-01-01	 	0.00000	0.00000
142	40000.00	2000000.00	550.00	550.00	2018-01-01	 	0.00000	0.00000
143	0.01	10000.00	150.00	150.00	2019-12-01	 	0.00000	0.00000
144	11068.00	11159.00	166.02	166.02	2019-12-01	 	0.00000	0.00000
145	11160.00	11253.00	167.40	167.40	2019-12-01	 	0.00000	0.00000
146	11254.00	11347.00	168.81	168.81	2019-12-01	 	0.00000	0.00000
147	11348.00	11442.00	170.22	170.22	2019-12-01	 	0.00000	0.00000
148	11443.00	11537.00	171.66	171.64	2019-12-01	 	0.00000	0.00000
149	11538.00	11634.00	173.07	173.07	2019-12-01	 	0.00000	0.00000
150	11635.00	11731.00	174.53	174.52	2019-12-01	 	0.00000	0.00000
151	11732.00	11760.00	175.98	175.98	2019-12-01	 	0.00000	0.00000
152	11851.00	11941.00	177.77	177.76	2019-12-01	 	0.00000	0.00000
153	11942.00	12033.00	179.13	179.13	2019-12-01	 	0.00000	0.00000
154	12034.00	12125.00	180.51	180.51	2019-12-01	 	0.00000	0.00000
155	12126.00	12218.00	181.89	181.89	2019-12-01	 	0.00000	0.00000
156	12219.00	12312.00	183.29	183.28	2019-12-01	 	0.00000	0.00000
157	12313.00	12406.00	184.70	184.69	2019-12-01	 	0.00000	0.00000
158	12407.00	12465.00	186.11	186.10	2019-12-01	 	0.00000	0.00000
159	12466.00	12561.00	186.99	186.99	2019-12-01	 	0.00000	0.00000
160	12658.00	12755.00	189.87	189.87	2019-12-01	 	0.00000	0.00000
161	12756.00	12853.00	191.34	191.34	2019-12-01	 	0.00000	0.00000
162	12854.00	12951.00	192.81	192.81	2019-12-01	 	0.00000	0.00000
163	12952.00	13051.00	194.28	194.28	2019-12-01	 	0.00000	0.00000
164	13052.00	13151.00	195.78	195.78	2019-12-01	 	0.00000	0.00000
165	13152.00	13213.00	197.28	197.28	2019-12-01	 	0.00000	0.00000
166	13214.00	13315.00	198.21	198.21	2019-12-01	 	0.00000	0.00000
167	13316.00	13417.00	199.74	199.74	2019-12-01	 	0.00000	0.00000
168	13418.00	13520.00	201.27	201.27	2019-12-01	 	0.00000	0.00000
169	13521.00	13624.00	202.82	202.81	2019-12-01	 	0.00000	0.00000
170	13625.00	13728.00	204.38	204.37	2019-12-01	 	0.00000	0.00000
171	13835.00	13940.00	207.53	207.52	2019-12-01	 	0.00000	0.00000
172	14007.00	14114.00	210.11	210.10	2019-12-01	 	0.00000	0.00000
173	14115.00	14223.00	211.73	211.72	2019-12-01	 	0.00000	0.00000
174	14223.00	14331.00	213.35	213.34	2019-12-01	 	0.00000	0.00000
175	14332.00	14441.00	214.98	214.98	2019-12-01	 	0.00000	0.00000
176	14442.00	14552.00	216.63	216.63	2019-12-01	 	0.00000	0.00000
177	14553.00	14664.00	218.30	218.29	2019-12-01	 	0.00000	0.00000
178	14665.00	14776.00	219.98	219.97	2019-12-01	 	0.00000	0.00000
179	14777.00	14846.00	221.66	221.65	2019-12-01	 	0.00000	0.00000
180	14847.00	14960.00	222.71	222.70	2019-12-01	 	0.00000	0.00000
181	14961.00	15075.00	224.42	224.41	2019-12-01	 	0.00000	0.00000
182	15076.00	15191.00	226.14	226.14	2019-12-01	 	0.00000	0.00000
183	15192.00	15308.00	227.88	227.88	2019-12-01	 	0.00000	0.00000
184	15309.00	15425.00	229.64	229.63	2019-12-01	 	0.00000	0.00000
185	15545.00	15663.00	233.18	233.17	2019-12-01	 	0.00000	0.00000
186	15664.00	15737.00	234.96	234.96	2019-12-01	 	0.00000	0.00000
187	15859.00	15980.00	237.89	237.88	2019-12-01	 	0.00000	0.00000
188	15981.00	16103.00	239.72	239.71	2019-12-01	 	0.00000	0.00000
189	16104.00	16226.00	241.56	241.56	2019-12-01	 	0.00000	0.00000
190	16227.00	16351.00	243.41	243.40	2019-12-01	 	0.00000	0.00000
191	16352.00	16446.00	245.28	245.28	2019-12-01	 	0.00000	0.00000
192	16604.00	16757.00	249.06	249.06	2019-12-01	 	0.00000	0.00000
193	16758.00	16909.00	251.37	251.37	2019-12-01	 	0.00000	0.00000
194	17063.00	17216.00	255.95	255.94	2019-12-01	 	0.00000	0.00000
195	17217.00	17371.00	258.26	258.25	2019-12-01	 	0.00000	0.00000
196	17372.00	17528.00	260.58	260.58	2019-12-01	 	0.00000	0.00000
197	17529.00	17687.00	262.94	262.93	2019-12-01	 	0.00000	0.00000
198	17688.00	17847.00	265.32	265.32	2019-12-01	 	0.00000	0.00000
199	17848.00	17974.00	267.72	267.72	2019-12-01	 	0.00000	0.00000
200	17975.00	18124.00	269.63	269.62	2019-12-01	 	0.00000	0.00000
201	18277.00	18429.00	274.16	274.15	2019-12-01	 	0.00000	0.00000
202	18430.00	18583.00	276.45	276.45	2019-12-01	 	0.00000	0.00000
203	18584.00	18738.00	278.76	278.76	2019-12-01	 	0.00000	0.00000
204	18739.00	18895.00	281.09	281.08	2019-12-01	 	0.00000	0.00000
205	18896.00	19053.00	283.44	283.44	2019-12-01	 	0.00000	0.00000
206	19054.00	19232.00	285.81	285.81	2019-12-01	 	0.00000	0.00000
207	19233.00	19393.00	288.50	288.49	2019-12-01	 	0.00000	0.00000
208	19556.00	19719.00	293.34	293.34	2019-12-01	 	0.00000	0.00000
209	19720.00	19883.00	295.80	295.80	2019-12-01	 	0.00000	0.00000
210	19884.00	20050.00	298.26	298.26	2019-12-01	 	0.00000	0.00000
211	20051.00	20217.00	300.77	300.76	2019-12-01	 	0.00000	0.00000
212	20218.00	20386.00	303.27	303.27	2019-12-01	 	0.00000	0.00000
213	20387.00	20436.00	305.81	305.80	2019-12-01	 	0.00000	0.00000
214	20437.00	20753.00	306.56	306.55	2019-12-01	 	0.00000	0.00000
215	21038.00	21326.00	315.57	315.57	2019-12-01	 	0.00000	0.00000
216	21327.00	21618.00	319.91	319.90	2019-12-01	 	0.00000	0.00000
217	21619.00	21914.00	324.29	324.28	2019-12-01	 	0.00000	0.00000
218	22216.00	22519.00	333.24	333.24	2019-12-01	 	0.00000	0.00000
219	22520.00	22828.00	337.80	337.80	2019-12-01	 	0.00000	0.00000
220	22942.00	23221.00	344.13	344.13	2019-12-01	 	0.00000	0.00000
221	23222.00	23509.00	348.33	348.33	2019-12-01	 	0.00000	0.00000
222	23510.00	23800.00	352.65	352.65	2019-12-01	 	0.00000	0.00000
223	22938.00	22941.00	344.07	344.07	2019-12-01	 	0.00000	0.00000
224	20754.00	21036.00	311.31	311.31	2019-12-01	 	0.00000	0.00000
225	18125.00	18276.00	271.88	271.87	2019-12-01	 	0.00000	0.00000
226	15738.00	15858.00	236.07	236.07	2019-12-01	 	0.00000	0.00000
227	12562.00	12657.00	188.43	188.43	2019-12-01	 	0.00000	0.00000
228	23801.00	24095.00	357.02	357.01	2019-12-01	 	0.00000	0.00000
229	24096.00	24394.00	361.44	361.44	2019-12-01	 	0.00000	0.00000
230	24395.00	24696.00	365.93	365.92	2019-12-01	 	0.00000	0.00000
231	16910.00	17062.00	253.65	253.65	2019-12-01	 	0.00000	0.00000
232	24697.00	25002.00	370.46	370.45	2019-12-01	 	0.00000	0.00000
233	19394.00	19555.00	290.91	290.91	2019-12-01	 	0.00000	0.00000
234	13941.00	14006.00	209.12	209.11	2019-12-01	 	0.00000	0.00000
235	15426.00	15544.00	231.39	231.39	2019-12-01	 	0.00000	0.00000
236	25003.00	25231.00	375.05	375.04	2019-12-01	 	0.00000	0.00000
237	13729.00	13834.00	205.94	205.93	2019-12-01	 	0.00000	0.00000
238	21915.00	22215.00	328.73	328.72	2019-12-01	 	0.00000	0.00000
239	25232.00	25544.00	378.48	378.48	2019-12-01	 	0.00000	0.00000
240	25545.00	25860.00	383.18	383.17	2019-12-01	 	0.00000	0.00000
241	25861.00	26180.00	387.92	387.91	2019-12-01	 	0.00000	0.00000
242	26181.00	26295.00	392.72	392.71	2019-12-01	 	0.00000	0.00000
243	26296.00	26505.00	394.44	394.44	2019-12-01	 	0.00000	0.00000
244	26506.00	26833.00	397.59	397.59	2019-12-01	 	0.00000	0.00000
245	26834.00	27165.00	402.51	402.51	2019-12-01	 	0.00000	0.00000
246	27166.00	27502.00	407.49	407.49	2019-12-01	 	0.00000	0.00000
247	27503.00	27754.00	412.55	412.54	2019-12-01	 	0.00000	0.00000
248	27766.00	28098.00	416.49	416.49	2019-12-01	 	0.00000	0.00000
249	28099.00	28446.00	421.49	421.48	2019-12-01	 	0.00000	0.00000
250	28447.00	28799.00	427.16	427.15	2019-12-01	 	0.00000	0.00000
251	28800.00	29155.00	432.00	432.00	2019-12-01	 	0.00000	0.00000
252	29156.00	29516.00	437.34	437.34	2019-12-01	 	0.00000	0.00000
253	29517.00	29882.00	442.76	442.75	2019-12-01	 	0.00000	0.00000
254	30253.00	30530.00	453.80	453.79	2019-12-01	 	0.00000	0.00000
255	30531.00	30908.00	457.97	457.96	2019-12-01	 	0.00000	0.00000
256	31292.00	31679.00	469.38	469.38	2019-12-01	 	0.00000	0.00000
257	31680.00	32071.00	475.20	475.20	2019-12-01	 	0.00000	0.00000
258	32072.00	32468.00	481.08	481.08	2019-12-01	 	0.00000	0.00000
259	32469.00	32870.00	487.04	487.03	2019-12-01	 	0.00000	0.00000
260	32871.00	33278.00	493.07	493.06	2019-12-01	 	0.00000	0.00000
261	33279.00	33583.00	499.19	499.18	2019-12-01	 	0.00000	0.00000
262	33584.00	33999.00	503.76	503.76	2019-12-01	 	0.00000	0.00000
263	34000.00	34420.00	510.00	510.00	2019-12-01	 	0.00000	0.00000
264	34421.00	34540.00	516.32	516.31	2019-12-01	 	0.00000	0.00000
265	34541.00	34846.00	518.12	518.11	2019-12-01	 	0.00000	0.00000
266	34847.00	35278.00	522.71	522.70	2019-12-01	 	0.00000	0.00000
267	35279.00	35715.00	529.19	529.18	2019-12-01	 	0.00000	0.00000
268	35716.00	36158.00	535.74	535.74	2019-12-01	 	0.00000	0.00000
269	36159.00	36605.00	542.39	542.38	2019-12-01	 	0.00000	0.00000
270	36606.00	36941.00	549.09	549.09	2019-12-01	 	0.00000	0.00000
271	36942.00	37399.00	554.13	554.13	2019-12-01	 	0.00000	0.00000
272	37400.00	37862.00	561.00	561.00	2019-12-01	 	0.00000	0.00000
273	37863.00	38331.00	567.95	567.94	2019-12-01	 	0.00000	0.00000
274	38332.00	38806.00	574.98	574.98	2019-12-01	 	0.00000	0.00000
275	38807.00	39289.00	582.11	582.10	2019-12-01	 	0.00000	0.00000
276	39288.00	39773.00	589.32	589.32	2019-12-01	 	0.00000	0.00000
277	39774.00	40266.00	596.61	596.61	2019-12-01	 	0.00000	0.00000
278	40267.00	40636.00	600.00	600.00	2019-12-01	 	0.00000	0.00000
279	27755.00	27765.00	416.33	416.32	2019-12-01	 	0.00000	0.00000
280	30909.00	31291.00	463.64	463.63	2019-12-01	 	0.00000	0.00000
281	16447.00	16603.00	246.71	246.70	2019-12-01	 	0.00000	0.00000
282	22829.00	22937.00	342.44	342.43	2019-12-01	 	0.00000	0.00000
283	29883.00	30252.00	448.25	448.24	2019-12-01	 	0.00000	0.00000
284	11761.00	11850.00	176.42	176.41	2019-12-01	 	0.00000	0.00000
285	40637.00	41139.00	609.56	609.55	2019-12-01	 	0.00000	0.00000
286	41140.00	41649.00	617.10	617.10	2019-12-01	 	0.00000	0.00000
287	41650.00	42164.00	624.75	624.75	2019-12-01	 	0.00000	0.00000
288	42165.00	42687.00	632.48	632.47	2019-12-01	 	0.00000	0.00000
289	42688.00	43216.00	640.32	640.32	2019-12-01	 	0.00000	0.00000
290	43217.00	43751.00	648.26	648.25	2019-12-01	 	0.00000	0.00000
291	43752.00	44293.00	656.28	656.28	2019-12-01	 	0.00000	0.00000
292	44294.00	45268.00	664.41	664.41	2019-12-01	 	0.00000	0.00000
293	45269.00	46007.00	679.04	679.03	2019-12-01	 	0.00000	0.00000
294	46008.00	46758.00	690.12	690.12	2019-12-01	 	0.00000	0.00000
295	46759.00	74521.00	701.39	701.38	2019-12-01	 	0.00000	0.00000
296	47522.00	48297.00	712.83	712.83	2019-12-01	 	0.00000	0.00000
297	48298.00	49085.00	724.47	724.47	2019-12-01	 	0.00000	0.00000
298	49086.00	49887.00	736.29	736.29	2019-12-01	 	0.00000	0.00000
299	49888.00	50701.00	748.32	748.32	2019-12-01	 	0.00000	0.00000
300	50702.00	51154.00	760.53	760.53	2019-12-01	 	0.00000	0.00000
301	51155.00	51988.00	767.33	767.32	2019-12-01	 	0.00000	0.00000
302	51989.00	52837.00	779.84	779.83	2019-12-01	 	0.00000	0.00000
303	52838.00	53699.00	792.57	792.57	2019-12-01	 	0.00000	0.00000
304	53700.00	54576.00	805.50	805.50	2019-12-01	 	0.00000	0.00000
305	54577.00	55467.00	818.66	818.65	2019-12-01	 	0.00000	0.00000
306	55468.00	56372.00	832.02	832.02	2019-12-01	 	0.00000	0.00000
307	56373.00	57292.00	845.60	845.59	2019-12-01	 	0.00000	0.00000
308	57293.00	57804.00	859.40	859.39	2019-12-01	 	0.00000	0.00000
309	57805.00	58747.00	867.08	867.07	2019-12-01	 	0.00000	0.00000
310	58748.00	59706.00	881.22	881.22	2019-12-01	 	0.00000	0.00000
311	59707.00	59707.00	895.61	895.60	2019-12-01	 	0.00000	0.00000
312	60000.00	2000000.00	900.00	900.00	2019-12-01	 	0.00000	0.00000
313	0.01	10000.00	150.00	150.00	2020-01-01	 	0.00000	0.00000
314	10000.01	11550.99	150.00	150.00	2020-01-01	 	0.00000	0.00000
315	11551.00	11646.99	173.27	173.26	2020-01-01	 	0.00000	0.00000
316	11647.00	11744.99	174.71	174.70	2020-01-01	 	0.00000	0.00000
317	11745.00	11842.99	176.18	176.17	2020-01-01	 	0.00000	0.00000
318	11843.00	11941.99	177.65	177.64	2020-01-01	 	0.00000	0.00000
319	11942.00	12041.99	179.13	179.13	2020-01-01	 	0.00000	0.00000
320	12042.00	12142.99	180.63	180.63	2020-01-01	 	0.00000	0.00000
321	12143.00	12243.99	182.15	182.14	2020-01-01	 	0.00000	0.00000
322	12244.00	12275.99	183.66	183.66	2020-01-01	 	0.00000	0.00000
323	12276.00	12368.99	184.14	184.14	2020-01-01	 	0.00000	0.00000
324	12369.00	12463.99	185.54	185.53	2020-01-01	 	0.00000	0.00000
325	12464.00	12559.99	186.96	186.96	2020-01-01	 	0.00000	0.00000
326	12560.00	12656.99	188.40	188.40	2020-01-01	 	0.00000	0.00000
327	12657.00	12753.99	189.86	189.85	2020-01-01	 	0.00000	0.00000
328	12754.00	12851.99	191.31	191.31	2020-01-01	 	0.00000	0.00000
329	12852.00	12949.99	192.78	192.78	2020-01-01	 	0.00000	0.00000
330	12950.00	13018.99	194.25	194.25	2020-01-01	 	0.00000	0.00000
331	13019.00	13118.99	195.29	195.28	2020-01-01	 	0.00000	0.00000
332	13119.00	13219.99	196.79	196.78	2020-01-01	 	0.00000	0.00000
333	13220.00	13321.99	198.30	198.30	2020-01-01	 	0.00000	0.00000
334	13322.00	13423.99	199.83	199.83	2020-01-01	 	0.00000	0.00000
335	13424.00	13526.99	201.36	201.36	2020-01-01	 	0.00000	0.00000
336	13527.00	13630.99	202.91	202.90	2020-01-01	 	0.00000	0.00000
337	13631.00	13735.99	204.47	204.46	2020-01-01	 	0.00000	0.00000
338	13736.00	13806.99	206.04	206.04	2020-01-01	 	0.00000	0.00000
339	13807.00	13913.99	207.11	207.10	2020-01-01	 	0.00000	0.00000
340	13914.00	14019.99	208.71	208.71	2020-01-01	 	0.00000	0.00000
341	14020.00	14127.99	210.30	210.30	2020-01-01	 	0.00000	0.00000
342	14128.00	14235.99	211.92	211.92	2020-01-01	 	0.00000	0.00000
343	14236.00	14344.99	213.54	213.54	2020-01-01	 	0.00000	0.00000
344	14345.00	14455.99	215.18	215.17	2020-01-01	 	0.00000	0.00000
345	14456.00	14566.99	216.84	216.84	2020-01-01	 	0.00000	0.00000
346	14567.00	14640.99	218.51	218.50	2020-01-01	 	0.00000	0.00000
347	14641.00	14753.99	219.62	219.61	2020-01-01	 	0.00000	0.00000
348	14754.00	14866.99	221.31	221.31	2020-01-01	 	0.00000	0.00000
349	14867.00	14980.99	223.01	223.00	2020-01-01	 	0.00000	0.00000
350	14981.00	15095.99	224.72	224.71	2020-01-01	 	0.00000	0.00000
351	15096.00	15211.99	226.44	226.44	2020-01-01	 	0.00000	0.00000
352	15212.00	15328.99	228.18	228.18	2020-01-01	 	0.00000	0.00000
353	15329.00	15445.99	229.94	229.93	2020-01-01	 	0.00000	0.00000
354	15446.00	15523.99	231.69	231.69	2020-01-01	 	0.00000	0.00000
355	15524.00	15642.99	232.86	232.86	2020-01-01	 	0.00000	0.00000
356	15643.00	15762.99	234.65	234.64	2020-01-01	 	0.00000	0.00000
357	15763.00	15883.99	236.45	236.44	2020-01-01	 	0.00000	0.00000
358	15884.00	16006.99	238.26	238.26	2020-01-01	 	0.00000	0.00000
359	16007.00	16128.99	240.11	240.10	2020-01-01	 	0.00000	0.00000
360	16129.00	16252.99	241.94	241.93	2020-01-01	 	0.00000	0.00000
361	16253.00	16377.99	243.80	243.79	2020-01-01	 	0.00000	0.00000
362	16378.00	16457.99	245.67	245.67	2020-01-01	 	0.00000	0.00000
363	16458.00	16584.99	246.87	246.87	2020-01-01	 	0.00000	0.00000
364	16585.00	16712.99	248.78	248.77	2020-01-01	 	0.00000	0.00000
365	16713.00	16840.99	250.70	250.69	2020-01-01	 	0.00000	0.00000
366	16841.00	16969.99	252.62	252.61	2020-01-01	 	0.00000	0.00000
367	16970.00	17100.99	254.55	254.55	2020-01-01	 	0.00000	0.00000
368	17101.00	17230.99	256.52	256.51	2020-01-01	 	0.00000	0.00000
369	17231.00	17363.99	258.47	258.46	2020-01-01	 	0.00000	0.00000
370	17364.00	17504.99	260.46	260.46	2020-01-01	 	0.00000	0.00000
371	17505.00	17662.99	262.58	262.57	2020-01-01	 	0.00000	0.00000
372	17663.00	17822.99	264.95	264.94	2020-01-01	 	0.00000	0.00000
373	17823.00	17983.99	267.35	267.34	2020-01-01	 	0.00000	0.00000
374	17984.00	18145.99	269.76	269.76	2020-01-01	 	0.00000	0.00000
375	18146.00	18309.99	272.19	272.19	2020-01-01	 	0.00000	0.00000
376	18310.00	18475.99	274.65	274.65	2020-01-01	 	0.00000	0.00000
377	18476.00	18642.99	277.14	277.14	2020-01-01	 	0.00000	0.00000
378	18643.00	18783.99	279.65	279.64	2020-01-01	 	0.00000	0.00000
379	18784.00	18940.99	281.76	281.76	2020-01-01	 	0.00000	0.00000
380	18941.00	19099.99	284.12	284.11	2020-01-01	 	0.00000	0.00000
381	19100.00	19258.99	286.50	286.50	2020-01-01	 	0.00000	0.00000
382	19259.00	19419.99	288.89	288.88	2020-01-01	 	0.00000	0.00000
383	19420.00	19581.99	291.30	291.30	2020-01-01	 	0.00000	0.00000
384	19582.00	19745.99	293.73	293.73	2020-01-01	 	0.00000	0.00000
385	19746.00	19910.99	296.19	296.19	2020-01-01	 	0.00000	0.00000
386	19911.00	20218.99	298.67	298.66	2020-01-01	 	0.00000	0.00000
387	20219.00	20387.99	303.29	303.28	2020-01-01	 	0.00000	0.00000
388	20388.00	20557.99	305.82	305.82	2020-01-01	 	0.00000	0.00000
389	20558.00	20730.99	308.37	308.37	2020-01-01	 	0.00000	0.00000
390	20731.00	20902.99	310.97	310.96	2020-01-01	 	0.00000	0.00000
391	20903.00	21078.99	313.55	313.54	2020-01-01	 	0.00000	0.00000
392	21079.00	21253.99	316.19	316.18	2020-01-01	 	0.00000	0.00000
393	21254.00	21431.99	318.81	318.81	2020-01-01	 	0.00000	0.00000
394	21432.00	22315.99	321.48	321.48	2020-01-01	 	0.00000	0.00000
395	22316.00	22599.99	334.74	334.74	2020-01-01	 	0.00000	0.00000
396	22600.00	22888.99	339.00	339.00	2020-01-01	 	0.00000	0.00000
397	22889.00	23180.99	343.34	343.33	2020-01-01	 	0.00000	0.00000
398	23181.00	23476.99	347.72	347.71	2020-01-01	 	0.00000	0.00000
399	23477.00	23777.99	352.16	352.15	2020-01-01	 	0.00000	0.00000
400	23778.00	24081.99	356.67	356.67	2020-01-01	 	0.00000	0.00000
401	24082.00	24390.99	361.23	361.23	2020-01-01	 	0.00000	0.00000
402	24391.00	24494.99	365.87	365.86	2020-01-01	 	0.00000	0.00000
403	24495.00	24778.99	367.43	367.42	2020-01-01	 	0.00000	0.00000
404	24779.00	25066.99	371.69	371.68	2020-01-01	 	0.00000	0.00000
405	25067.00	25357.99	376.01	376.00	2020-01-01	 	0.00000	0.00000
406	25358.00	25652.99	380.37	380.37	2020-01-01	 	0.00000	0.00000
407	25653.00	25951.99	384.80	384.79	2020-01-01	 	0.00000	0.00000
408	25952.00	26253.99	389.28	389.28	2020-01-01	 	0.00000	0.00000
409	26254.00	26559.99	393.81	393.81	2020-01-01	 	0.00000	0.00000
410	26560.00	26753.99	398.40	398.40	2020-01-01	 	0.00000	0.00000
411	26754.00	27066.99	401.31	401.31	2020-01-01	 	0.00000	0.00000
412	27067.00	27382.99	406.01	406.00	2020-01-01	 	0.00000	0.00000
413	27383.00	27702.99	410.75	410.74	2020-01-01	 	0.00000	0.00000
414	27703.00	28027.99	415.55	415.54	2020-01-01	 	0.00000	0.00000
415	28028.00	28355.99	420.42	420.42	2020-01-01	 	0.00000	0.00000
416	28356.00	28687.99	425.34	425.34	2020-01-01	 	0.00000	0.00000
417	28688.00	29024.99	430.32	430.32	2020-01-01	 	0.00000	0.00000
418	29025.00	29276.99	435.38	435.37	2020-01-01	 	0.00000	0.00000
419	29277.00	29620.99	439.16	439.15	2020-01-01	 	0.00000	0.00000
420	29621.00	29968.99	444.32	444.31	2020-01-01	 	0.00000	0.00000
421	29969.00	30321.99	449.54	449.53	2020-01-01	 	0.00000	0.00000
422	30322.00	30677.99	454.83	454.83	2020-01-01	 	0.00000	0.00000
423	30678.00	31038.99	460.17	460.17	2020-01-01	 	0.00000	0.00000
424	31039.00	31404.99	465.59	465.58	2020-01-01	 	0.00000	0.00000
425	31405.00	31774.99	471.08	471.07	2020-01-01	 	0.00000	0.00000
426	31775.00	32052.99	476.63	476.62	2020-01-01	 	0.00000	0.00000
427	32053.00	32430.99	480.80	480.79	2020-01-01	 	0.00000	0.00000
428	32431.00	32813.99	486.47	486.46	2020-01-01	 	0.00000	0.00000
429	32814.00	33201.99	492.21	492.21	2020-01-01	 	0.00000	0.00000
430	33202.00	33593.99	498.03	498.03	2020-01-01	 	0.00000	0.00000
431	33594.00	33990.99	503.91	503.91	2020-01-01	 	0.00000	0.00000
432	33991.00	34392.99	509.87	509.86	2020-01-01	 	0.00000	0.00000
433	34393.00	34800.99	515.90	515.89	2020-01-01	 	0.00000	0.00000
434	34801.00	35105.99	522.02	522.01	2020-01-01	 	0.00000	0.00000
435	35106.00	35521.99	526.59	526.59	2020-01-01	 	0.00000	0.00000
436	35522.00	35942.99	532.83	532.83	2020-01-01	 	0.00000	0.00000
437	35943.00	36368.99	539.15	539.14	2020-01-01	 	0.00000	0.00000
438	36369.00	36800.99	545.54	545.53	2020-01-01	 	0.00000	0.00000
439	36801.00	37237.99	552.02	552.01	2020-01-01	 	0.00000	0.00000
440	37238.00	37680.99	558.57	558.57	2020-01-01	 	0.00000	0.00000
441	37681.00	38127.99	565.22	565.21	2020-01-01	 	0.00000	0.00000
442	38128.00	38463.99	571.92	571.92	2020-01-01	 	0.00000	0.00000
443	38464.00	38921.99	576.96	576.96	2020-01-01	 	0.00000	0.00000
444	38922.00	39384.99	583.83	583.83	2020-01-01	 	0.00000	0.00000
445	39385.00	39853.99	590.78	590.77	2020-01-01	 	0.00000	0.00000
446	39854.00	40328.99	597.81	597.81	2020-01-01	 	0.00000	0.00000
447	40329.00	40809.99	604.94	604.93	2020-01-01	 	0.00000	0.00000
448	40810.00	41295.99	612.15	612.15	2020-01-01	 	0.00000	0.00000
449	41296.00	41788.99	619.44	619.44	2020-01-01	 	0.00000	0.00000
450	41789.00	42158.99	626.84	626.83	2020-01-01	 	0.00000	0.00000
451	42159.00	42661.99	632.39	632.38	2020-01-01	 	0.00000	0.00000
452	42662.00	43171.99	639.93	639.93	2020-01-01	 	0.00000	0.00000
453	43172.00	43686.99	647.58	647.58	2020-01-01	 	0.00000	0.00000
454	43687.00	44209.99	655.31	655.30	2020-01-01	 	0.00000	0.00000
455	44210.00	44738.99	663.15	663.15	2020-01-01	 	0.00000	0.00000
456	44739.00	45273.99	671.09	671.08	2020-01-01	 	0.00000	0.00000
457	45274.00	45815.99	679.11	679.11	2020-01-01	 	0.00000	0.00000
458	45816.00	46790.99	687.24	687.24	2020-01-01	 	0.00000	0.00000
459	46791.00	47529.99	701.87	701.86	2020-01-01	 	0.00000	0.00000
460	47530.00	48280.99	712.95	712.95	2020-01-01	 	0.00000	0.00000
461	48281.00	49043.99	724.22	724.21	2020-01-01	 	0.00000	0.00000
462	49044.00	49819.99	735.66	735.66	2020-01-01	 	0.00000	0.00000
463	49820.00	50607.99	747.30	747.30	2020-01-01	 	0.00000	0.00000
464	50608.00	51409.99	759.12	759.12	2020-01-01	 	0.00000	0.00000
465	51410.00	52223.99	771.15	771.15	2020-01-01	 	0.00000	0.00000
466	52224.00	52702.99	783.36	783.36	2020-01-01	 	0.00000	0.00000
467	52703.00	53536.99	790.55	790.54	2020-01-01	 	0.00000	0.00000
468	53537.00	54385.99	803.06	803.05	2020-01-01	 	0.00000	0.00000
469	54386.00	55247.99	815.79	815.79	2020-01-01	 	0.00000	0.00000
470	55248.00	56124.99	828.72	828.72	2020-01-01	 	0.00000	0.00000
471	56125.00	57015.99	841.88	841.87	2020-01-01	 	0.00000	0.00000
472	57016.00	57920.99	855.24	855.24	2020-01-01	 	0.00000	0.00000
473	57921.00	58840.99	868.82	868.81	2020-01-01	 	0.00000	0.00000
474	58841.00	59352.99	882.62	882.61	2020-01-01	 	0.00000	0.00000
475	59353.00	59999.99	890.30	890.29	2020-01-01	 	0.00000	0.00000
476	60000.00	2000000.00	900.00	900.00	2020-01-01	 	0.00000	0.00000
\.


--
-- TOC entry 4004 (class 0 OID 17472)
-- Dependencies: 382
-- Data for Name: PlantillaRecordEntries; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "PlantillaRecordEntries" ("PlantillaRecordEntryId", "PlantillaRecordId", "PlantillaYear", "ItemNumber", "DateOfMovement", "MovementType", "EmployeeId", "DepartmentId", "DivisionId", "SectionId", "ReasonOfSeparation", "ScrapBuildFromPlantillaId", "PositionId", "SalaryGradeId") FROM stdin;
360	154	1950	12-12	1950-01-01	Created	0	12	19	0		0	0	0
361	154	2020	12-12	2020-01-01	Appointed	1	12	19	0		0	0	0
2783	154	2023	12-12	2023-01-01	Recreated	1	12	19	0		0	237	0
3411	154	2024	12-12	2024-01-01	Recreated	0	0	0	0		0	237	0
3412	1152	2024	1-11	2024-01-01	Created	0	125	164	4		0	0	0
3413	1153	2024	1-12	2024-01-01	Created	0	125	164	4		0	0	0
3414	1154	2024	1-13	2024-01-01	Created	0	125	164	4		0	0	0
3415	1155	2024	1-14	2024-01-01	Created	0	125	164	4		0	0	0
3416	1156	2024	1-15	2024-01-01	Created	0	125	164	4		0	0	0
3417	1157	2024	1-16	2024-01-01	Created	0	125	164	4		0	0	0
3418	1152	2024	1-11	2024-01-01	Appointed	2745	125	164	4		0	1653	0
3419	1156	2024	1-15	2024-01-01	Appointed	2746	125	164	4		0	101	0
3420	1157	2024	1-16	2024-07-09	Appointed	2747	125	164	4		0	2004	0
3421	1155	2024	1-14	2024-07-09	Appointed	2748	125	164	4		0	1994	0
\.


--
-- TOC entry 4649 (class 0 OID 0)
-- Dependencies: 383
-- Name: PlantillaRecordEntries_PlantillaRecordEntryId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"PlantillaRecordEntries_PlantillaRecordEntryId_seq"', 3421, true);


--
-- TOC entry 4006 (class 0 OID 17482)
-- Dependencies: 384
-- Data for Name: PlantillaRecords; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "PlantillaRecords" ("PlantillaRecordId", "ItemNumber", "EmployeeId", "PositionId", "DateAdded", "Remark", "EncoderBasicInformationId", "TemporaryEmployeeId", "IsDeleted", "DepartmentId", "DivisionId", "SectionId", "ActionIfVacated") FROM stdin;
154	12-12	1	237	1950-01-01	Active	507	0	f	12	19	0	Stay on specified department
1152		\N	1653	0001-01-01		0	0	f	125	164	4	Stay on specified department
1154		\N	2009	0001-01-01		0	0	f	125	164	4	Stay on specified department
1155		\N	1994	0001-01-01		0	0	f	125	164	4	Stay on specified department
1156		\N	101	0001-01-01		0	0	f	125	164	4	Stay on specified department
1157		\N	2004	0001-01-01		0	0	f	125	164	4	Stay on specified department
1153		\N	1214	0001-01-01		0	0	f	125	164	4	Stay on specified department
\.


--
-- TOC entry 4650 (class 0 OID 0)
-- Dependencies: 385
-- Name: PlantillaRecords_PlantillaRecordId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"PlantillaRecords_PlantillaRecordId_seq"', 1157, true);


--
-- TOC entry 4651 (class 0 OID 0)
-- Dependencies: 387
-- Name: PositionEducationalBackground_PositionEducationalBackground_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"PositionEducationalBackground_PositionEducationalBackground_seq"', 149, true);


--
-- TOC entry 4008 (class 0 OID 17494)
-- Dependencies: 386
-- Data for Name: PositionEducationalBackgrounds; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "PositionEducationalBackgrounds" ("PositionEducationalBackgroundId", "CourseId", "YearsAcquired", "MonthsAcquired", "IsGraduated", "EducationalLevel", "PositionId", "Degree", "CourseName", "UnitsEarned") FROM stdin;
1	0	0	0	f	NONE	415	NONE	NONE	
2	0	0	0	f	NONE	1969	NONE	NONE	
3	0	0	0	f	NONE	157	NONE	NONE	
4	0	0	0	f	NONE	1992	NONE	NONE	
5	0	0	0	f	NONE	1313	NONE	NONE	
6	0	0	0	f	NONE	1287	NONE	NONE	
7	0	0	0	f	NONE	1302	NONE	NONE	
8	0	0	0	f	NONE	4	NONE	NONE	
9	0	0	0	f	NONE	56	NONE	NONE	
10	0	0	0	f	NONE	67	NONE	NONE	
11	0	0	0	f	NONE	902	NONE	NONE	
12	0	0	0	f	NONE	916	NONE	NONE	
13	0	0	0	f	NONE	188	NONE	NONE	
14	0	0	0	f	NONE	837	NONE	NONE	
15	0	0	0	f	NONE	206	NONE	NONE	
16	0	0	0	f	NONE	1368	NONE	NONE	
17	0	0	0	f	NONE	790	NONE	NONE	
18	0	0	0	f	NONE	1268	NONE	NONE	
19	0	0	0	f	NONE	1270	NONE	NONE	
20	0	0	0	f	NONE	1241	NONE	NONE	
21	0	0	0	f	NONE	1292	NONE	NONE	
22	0	0	0	f	NONE	1544	NONE	NONE	
23	0	0	0	f	NONE	1547	NONE	NONE	
24	0	0	0	f	NONE	1008	NONE	NONE	
25	0	0	0	f	NONE	1534	NONE	NONE	
26	0	0	0	f	NONE	1325	NONE	NONE	
27	0	0	0	f	NONE	617	NONE	NONE	
28	0	0	0	f	NONE	618	NONE	NONE	
29	0	0	0	f	NONE	632	NONE	NONE	
30	0	0	0	f	NONE	633	NONE	NONE	
31	0	0	0	f	NONE	1263	NONE	NONE	
32	0	0	0	f	NONE	1504	NONE	NONE	
33	0	0	0	f	NONE	1346	NONE	NONE	
34	0	0	0	f	NONE	637	NONE	NONE	
35	0	0	0	f	NONE	923	NONE	NONE	
36	0	0	0	f	NONE	1372	NONE	NONE	
37	0	0	0	f	NONE	638	NONE	NONE	
38	0	0	0	f	NONE	1367	NONE	NONE	
39	0	0	0	f	NONE	803	NONE	NONE	
40	0	0	0	f	NONE	1387	NONE	NONE	
41	0	0	0	f	NONE	1388	NONE	NONE	
42	0	0	0	f	NONE	318	NONE	NONE	
43	0	0	0	f	NONE	1213	NONE	NONE	
44	0	0	0	f	NONE	1218	NONE	NONE	
45	0	0	0	f	NONE	1362	NONE	NONE	
46	0	0	0	f	NONE	1330	NONE	NONE	
47	0	0	0	f	NONE	1633	NONE	NONE	
48	0	0	0	f	NONE	1832	NONE	NONE	
49	0	0	0	f	NONE	1543	NONE	NONE	
50	0	0	0	f	NONE	1463	NONE	NONE	
51	0	0	0	f	NONE	1536	NONE	NONE	
52	0	0	0	f	NONE	1351	NONE	NONE	
53	0	0	0	f	NONE	813	NONE	NONE	
54	0	0	0	f	NONE	1102	NONE	NONE	
55	0	0	0	f	NONE	858	NONE	NONE	
56	0	0	0	f	NONE	1830	NONE	NONE	
57	0	0	0	f	NONE	1201	NONE	NONE	
58	0	0	0	f	NONE	1274	NONE	NONE	
59	0	0	0	f	NONE	1308	NONE	NONE	
60	0	0	0	f	NONE	1355	NONE	NONE	
61	0	0	0	f	NONE	1370	NONE	NONE	
62	0	0	0	f	NONE	1376	NONE	NONE	
63	0	0	0	f	NONE	1277	NONE	NONE	
64	0	0	0	f	NONE	580	NONE	NONE	
65	0	0	0	f	NONE	661	NONE	NONE	
66	0	0	0	f	NONE	1532	NONE	NONE	
67	0	0	0	f	NONE	622	NONE	NONE	
68	0	0	0	f	NONE	662	NONE	NONE	
69	0	0	0	f	NONE	663	NONE	NONE	
70	0	0	0	f	NONE	827	NONE	NONE	
71	0	0	0	f	NONE	666	NONE	NONE	
72	0	0	0	f	NONE	761	NONE	NONE	
73	0	0	0	f	NONE	1535	NONE	NONE	
74	0	0	0	f	NONE	1993	NONE	NONE	
75	0	0	0	f	NONE	1286	NONE	NONE	
76	0	0	0	f	NONE	1392	NONE	NONE	
77	0	0	0	f	NONE	1207	NONE	NONE	
78	0	0	0	f	NONE	1363	NONE	NONE	
79	0	0	0	f	NONE	1303	NONE	NONE	
80	0	0	0	f	NONE	1191	NONE	NONE	
81	0	0	0	f	NONE	1206	NONE	NONE	
82	0	0	0	f	NONE	1196	NONE	NONE	
83	0	0	0	f	NONE	1195	NONE	NONE	
84	0	0	0	f	NONE	1280	NONE	NONE	
85	0	0	0	f	NONE	1273	NONE	NONE	
86	0	0	0	f	NONE	1240	NONE	NONE	
87	0	0	0	f	NONE	1379	NONE	NONE	
88	0	0	0	f	NONE	1318	NONE	NONE	
89	0	0	0	f	NONE	1319	NONE	NONE	
90	0	0	0	f	NONE	1209	NONE	NONE	
91	0	0	0	f	NONE	1699	NONE	NONE	
92	0	0	0	f	NONE	1315	NONE	NONE	
93	0	0	0	f	NONE	1394	NONE	NONE	
94	0	0	0	f	NONE	1259	NONE	NONE	
95	0	0	0	f	NONE	1260	NONE	NONE	
96	0	0	0	f	NONE	1334	NONE	NONE	
97	0	0	0	f	NONE	1294	NONE	NONE	
98	0	0	0	f	NONE	1333	NONE	NONE	
99	0	0	0	f	NONE	1366	NONE	NONE	
100	0	0	0	f	NONE	1349	NONE	NONE	
101	0	0	0	f	NONE	1337	NONE	NONE	
102	0	0	0	f	NONE	1380	NONE	NONE	
103	0	0	0	f	NONE	1269	NONE	NONE	
104	0	0	0	f	NONE	1332	NONE	NONE	
105	0	0	0	f	NONE	1331	NONE	NONE	
106	0	0	0	f	NONE	1284	NONE	NONE	
107	0	0	0	f	NONE	1356	NONE	NONE	
108	0	0	0	f	NONE	657	NONE	NONE	
109	0	0	0	f	NONE	1846	NONE	NONE	
110	0	0	0	f	NONE	1338	NONE	NONE	
111	0	0	0	f	NONE	1193	NONE	NONE	
112	0	0	0	f	NONE	1347	NONE	NONE	
113	0	0	0	f	NONE	1336	NONE	NONE	
114	0	0	0	f	NONE	1706	NONE	NONE	
115	0	0	0	f	NONE	1276	NONE	NONE	
116	0	0	0	f	NONE	1395	NONE	NONE	
117	0	0	0	f	NONE	1329	NONE	NONE	
118	0	0	0	f	NONE	1275	NONE	NONE	
119	0	0	0	f	NONE	1345	NONE	NONE	
120	0	0	0	f	NONE	1281	NONE	NONE	
121	0	0	0	f	NONE	1348	NONE	NONE	
122	0	0	0	f	NONE	1305	NONE	NONE	
123	0	0	0	f	NONE	1322	NONE	NONE	
124	0	0	0	f	NONE	1994	NONE	NONE	
125	0	0	0	f	NONE	1995	NONE	NONE	
126	0	0	0	f	NONE	1996	NONE	NONE	
127	0	0	0	f	NONE	1203	NONE	NONE	
128	0	0	0	f	NONE	1997	NONE	NONE	
129	0	0	0	f	NONE	1998	NONE	NONE	
130	0	0	0	f	NONE	1999	NONE	NONE	
131	0	0	0	f	NONE	2000	NONE	NONE	
132	0	0	0	f	NONE	2001	NONE	NONE	
133	0	0	0	f	NONE	2002	NONE	NONE	
134	0	0	0	f	NONE	2003	NONE	NONE	
135	0	0	0	f	NONE	2004	NONE	NONE	
136	0	0	0	f	NONE	2005	NONE	NONE	
137	0	0	0	f	NONE	1653	NONE	NONE	
138	0	0	0	f	NONE	2006	NONE	NONE	
139	0	0	0	f	NONE	2007	NONE	NONE	
141	0	0	0	f	NONE	2008	NONE	NONE	
142	0	0	0	f	NONE	2009	NONE	NONE	
143	0	0	0	f	NONE	2010	NONE	NONE	
144	0	0	0	f	NONE	2011	NONE	NONE	
145	0	0	0	f	NONE	2012	NONE	NONE	
146	0	0	0	f	NONE	2013	NONE	NONE	
147	0	0	0	f	NONE	2014	NONE	NONE	
148	0	0	0	f	NONE	2015	NONE	NONE	
149	0	0	0	f	NONE	234	NONE	NONE	
\.


--
-- TOC entry 4010 (class 0 OID 17502)
-- Dependencies: 388
-- Data for Name: PositionEligibilities; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "PositionEligibilities" ("PositionEligibilityId", "PositionId", "EligibilityTitle", "LevelOfEligibility", "Rating", "EligibilityDocumentTypeId", "EligibilityType") FROM stdin;
\.


--
-- TOC entry 4652 (class 0 OID 0)
-- Dependencies: 389
-- Name: PositionEligibilities_PositionEligibilityId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"PositionEligibilities_PositionEligibilityId_seq"', 1, false);


--
-- TOC entry 4012 (class 0 OID 17510)
-- Dependencies: 390
-- Data for Name: PositionExperiences; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "PositionExperiences" ("PositionExperienceId", "PositionId", "YearsExperience", "MonthsExperience", "WorkExperience") FROM stdin;
1	415	0	0	SAME AS POSITION
2	1969	0	0	SAME AS POSITION
3	157	0	0	SAME AS POSITION
4	1992	0	0	SAME AS POSITION
5	1313	0	0	SAME AS POSITION
6	1287	0	0	SAME AS POSITION
7	1302	0	0	SAME AS POSITION
8	4	0	0	SAME AS POSITION
9	56	0	0	SAME AS POSITION
10	67	0	0	SAME AS POSITION
11	902	0	0	SAME AS POSITION
12	916	0	0	SAME AS POSITION
13	188	0	0	SAME AS POSITION
14	837	0	0	SAME AS POSITION
15	206	0	0	SAME AS POSITION
16	1368	0	0	SAME AS POSITION
17	790	0	0	SAME AS POSITION
18	1268	0	0	SAME AS POSITION
19	1270	0	0	SAME AS POSITION
20	1241	0	0	SAME AS POSITION
21	1292	0	0	SAME AS POSITION
22	1544	0	0	SAME AS POSITION
23	1547	0	0	SAME AS POSITION
24	1008	0	0	SAME AS POSITION
25	1534	0	0	SAME AS POSITION
26	1325	0	0	SAME AS POSITION
27	617	0	0	SAME AS POSITION
28	618	0	0	SAME AS POSITION
29	632	0	0	SAME AS POSITION
30	633	0	0	SAME AS POSITION
31	1263	0	0	SAME AS POSITION
32	1504	0	0	SAME AS POSITION
33	1346	0	0	SAME AS POSITION
34	637	0	0	SAME AS POSITION
35	923	0	0	SAME AS POSITION
36	1372	0	0	SAME AS POSITION
37	638	0	0	SAME AS POSITION
38	1367	0	0	SAME AS POSITION
39	803	0	0	SAME AS POSITION
40	1387	0	0	SAME AS POSITION
41	1388	0	0	SAME AS POSITION
42	318	0	0	SAME AS POSITION
43	1213	0	0	SAME AS POSITION
44	1218	0	0	SAME AS POSITION
45	1362	0	0	SAME AS POSITION
46	1330	0	0	SAME AS POSITION
47	1633	0	0	SAME AS POSITION
48	1832	0	0	SAME AS POSITION
49	1543	0	0	SAME AS POSITION
50	1463	0	0	SAME AS POSITION
51	1536	0	0	SAME AS POSITION
52	1351	0	0	SAME AS POSITION
53	813	0	0	SAME AS POSITION
54	1102	0	0	SAME AS POSITION
55	858	0	0	SAME AS POSITION
56	1830	0	0	SAME AS POSITION
57	1201	0	0	SAME AS POSITION
58	1274	0	0	SAME AS POSITION
59	1308	0	0	SAME AS POSITION
60	1355	0	0	SAME AS POSITION
61	1370	0	0	SAME AS POSITION
62	1376	0	0	SAME AS POSITION
63	1277	0	0	SAME AS POSITION
64	580	0	0	SAME AS POSITION
65	661	0	0	SAME AS POSITION
66	1532	0	0	SAME AS POSITION
67	622	0	0	SAME AS POSITION
68	662	0	0	SAME AS POSITION
69	663	0	0	SAME AS POSITION
70	827	0	0	SAME AS POSITION
71	666	0	0	SAME AS POSITION
72	761	0	0	SAME AS POSITION
73	1535	0	0	SAME AS POSITION
74	1993	0	0	SAME AS POSITION
75	1286	0	0	SAME AS POSITION
76	1392	0	0	SAME AS POSITION
77	1207	0	0	SAME AS POSITION
78	1363	0	0	SAME AS POSITION
79	1303	0	0	SAME AS POSITION
80	1191	0	0	SAME AS POSITION
81	1206	0	0	SAME AS POSITION
82	1196	0	0	SAME AS POSITION
83	1195	0	0	SAME AS POSITION
84	1280	0	0	SAME AS POSITION
85	1273	0	0	SAME AS POSITION
86	1240	0	0	SAME AS POSITION
87	1379	0	0	SAME AS POSITION
88	1318	0	0	SAME AS POSITION
89	1319	0	0	SAME AS POSITION
90	1209	0	0	SAME AS POSITION
91	1699	0	0	SAME AS POSITION
92	1315	0	0	SAME AS POSITION
93	1394	0	0	SAME AS POSITION
94	1259	0	0	SAME AS POSITION
95	1260	0	0	SAME AS POSITION
96	1334	0	0	SAME AS POSITION
97	1294	0	0	SAME AS POSITION
98	1333	0	0	SAME AS POSITION
99	1366	0	0	SAME AS POSITION
100	1349	0	0	SAME AS POSITION
101	1337	0	0	SAME AS POSITION
102	1380	0	0	SAME AS POSITION
103	1269	0	0	SAME AS POSITION
104	1332	0	0	SAME AS POSITION
105	1331	0	0	SAME AS POSITION
106	1284	0	0	SAME AS POSITION
107	1356	0	0	SAME AS POSITION
108	657	0	0	SAME AS POSITION
109	1846	0	0	SAME AS POSITION
110	1338	0	0	SAME AS POSITION
111	1193	0	0	SAME AS POSITION
112	1347	0	0	SAME AS POSITION
113	1336	0	0	SAME AS POSITION
114	1706	0	0	SAME AS POSITION
115	1276	0	0	SAME AS POSITION
116	1395	0	0	SAME AS POSITION
117	1329	0	0	SAME AS POSITION
118	1275	0	0	SAME AS POSITION
119	1345	0	0	SAME AS POSITION
120	1281	0	0	SAME AS POSITION
121	1348	0	0	SAME AS POSITION
122	1305	0	0	SAME AS POSITION
123	1322	0	0	SAME AS POSITION
124	1994	0	0	SAME AS POSITION
125	1995	0	0	SAME AS POSITION
126	1996	0	0	SAME AS POSITION
127	1203	0	0	SAME AS POSITION
128	1997	0	0	SAME AS POSITION
129	1998	0	0	SAME AS POSITION
130	1999	0	0	SAME AS POSITION
131	2000	0	0	SAME AS POSITION
132	2001	0	0	SAME AS POSITION
133	2002	0	0	SAME AS POSITION
134	2003	0	0	SAME AS POSITION
135	2004	0	0	SAME AS POSITION
136	2005	0	0	SAME AS POSITION
137	1653	0	0	SAME AS POSITION
138	2006	0	0	SAME AS POSITION
139	2007	0	0	SAME AS POSITION
141	2008	0	0	SAME AS POSITION
142	2009	0	0	SAME AS POSITION
143	2010	0	0	SAME AS POSITION
144	2011	0	0	SAME AS POSITION
145	2012	0	0	SAME AS POSITION
146	2013	0	0	SAME AS POSITION
147	2014	0	0	SAME AS POSITION
148	2015	0	0	SAME AS POSITION
149	234	0	0	SAME AS POSITION
\.


--
-- TOC entry 4653 (class 0 OID 0)
-- Dependencies: 391
-- Name: PositionExperiences_PositionExperienceId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"PositionExperiences_PositionExperienceId_seq"', 149, true);


--
-- TOC entry 4014 (class 0 OID 17518)
-- Dependencies: 392
-- Data for Name: PositionTrainings; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "PositionTrainings" ("PositionTrainingId", "PositionId", "TrainingId", "NumberOfHours", "TrainingType") FROM stdin;
\.


--
-- TOC entry 4654 (class 0 OID 0)
-- Dependencies: 393
-- Name: PositionTrainings_PositionTrainingId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"PositionTrainings_PositionTrainingId_seq"', 1, false);


--
-- TOC entry 4016 (class 0 OID 17526)
-- Dependencies: 394
-- Data for Name: Positions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Positions" ("PositionId", "PositionTitle", "PositionDescription", "SectionId", "DepartmentId", "DivisionId", "SalaryGradeNumber", "Rank", "IsSupervisor", "AccessLevel", "SalaryGradeAnnex", "ShortName", "Type") FROM stdin;
415	Nurse I		0	19	21	11	160	f	EMPLOYEE	A1	Nurse I	
1433	Driver I		0	1	0	1	279	\N	EMPLOYEE	A1	Driver I	
1606	Utility Worker I		0	113	130	1	451	\N	EMPLOYEE	A1	UW I	
606	Vice-Governor		0	6	0	28	29	f	EMPLOYEE	A1	Vice-Governor	
924	Driver I		0	28	0	1	240	f	EMPLOYEE	A1	Driver I	
314	Draftsman III		0	28	26	11	232	f	EMPLOYEE	A1	Draftsman III	
838	Cook I		0	20	0	1	175	f	EMPLOYEE	A1	Cook I	
847	Watchman I		0	20	0	1	175	f	EMPLOYEE	A1	Watchman I	
848	Watchman III		0	20	0	1	175	f	EMPLOYEE	A1	Watchman III	
1648	Clerk I		0	15	0	1	493	\N	EMPLOYEE	A1	Clerk I	
930	Messenger I		0	28	0	1	240	f	EMPLOYEE	A1	Messenger I	
1650	Utility Worker I		0	15	0	1	495	\N	EMPLOYEE	A1	UW I	
1643	Clerk II		0	6	0	1	488	\N	EMPLOYEE	A1	Clerk II	
1645	Driver II		0	6	0	1	490	\N	EMPLOYEE	A1	Driver II	
1646	Laborer I		0	1	0	1	491	\N	EMPLOYEE	A1	Laborer I	
1649	Clerk IV		0	15	0	1	494	\N	EMPLOYEE	A1	Clerk IV	
1629	Pharmacist I		0	21	0	11	474	\N	EMPLOYEE	A1	Pharma I	
1186	Pharmacist III		0	19	0	15	166	f	EMPLOYEE	A1	Pharma III	
1408	Project Development Officer I		0	1	29	11	256	\N	EMPLOYEE	A1	PDO I	
475	Project Development Officer III		0	1	40	18	4	t	SUPERVISOR	A1	PDO III	
481	Project Development Officer IV		0	9	27	22	67	f	EMPLOYEE	A1	PDO IV	
501	Provincial Government Department Head		0	24	0	26	193	f	EMPLOYEE	A1	PGDH	
500	Provincial Government Department Head		0	23	0	26	189	f	EMPLOYEE	A1	PGDH	
490	Provincial Government Department Head		0	8	0	26	56	f	EMPLOYEE	A1	PGDH	
1647	Computer Operator II		0	1	46	1	492	\N	EMPLOYEE	A1	CO II	
1644	Utility Worker II		0	6	0	1	489	\N	EMPLOYEE	A1	UW II	
725	Utility Worker II		0	8	0	1	56	f	EMPLOYEE	A1	UW II	
1432	Project Development Officer I		0	1	0	11	278	\N	EMPLOYEE	A1	PDO I	
464	Project Development Officer I		0	1	40	11	16	f	EMPLOYEE	A1	PDO I	
466	Project Development Officer I		0	29	0	11	249	f	EMPLOYEE	A1	PDO I	
1391	Clerk		0	13	0	1	113	f	EMPLOYEE	A1	Clerk	
1460	Clerk III		0	22	0	1	305	\N	EMPLOYEE	A1	Clerk III	
1533	Driver I		0	28	23	1	378	\N	EMPLOYEE	A1	Driver I	
1575	Clerk III		0	113	109	1	420	\N	EMPLOYEE	A1	Clerk III	
1576	Watchman I		0	113	109	1	421	\N	EMPLOYEE	A1	Watchman I	
1577	Clerk III		0	113	110	1	422	\N	EMPLOYEE	A1	Clerk III	
1578	Driver I		0	113	110	1	423	\N	EMPLOYEE	A1	Driver I	
1580	Clerk III		0	113	112	1	425	\N	EMPLOYEE	A1	Clerk III	
616	Agricultural Technologist		0	1	0	1	16	f	EMPLOYEE	A1	Agri. Tech.	
420	Nurse II		0	19	21	15	157	f	EMPLOYEE	A1	Nurse II	
1581	Clerk III		0	113	114	1	426	\N	EMPLOYEE	A1	Clerk III	
1582	Clerk III		0	113	115	1	427	\N	EMPLOYEE	A1	Clerk III	
1448	Clerk IV		0	7	0	8	294	\N	EMPLOYEE	A1	Clerk IV	
1299	Budgeting Aide		0	11	0	4	250	f	EMPLOYEE	A1	Budgeting Aide	
377	Local Assessment Operations Officer III		0	14	0	18	124	f	EMPLOYEE	A1	LAOO III	
1586	Watchman II		0	113	117	1	431	\N	EMPLOYEE	A1	Watchman II	
1588	Watchman I		0	113	117	1	433	\N	EMPLOYEE	A1	Watchman I	
1589	Clerk III		0	113	119	1	434	\N	EMPLOYEE	A1	Clerk III	
732	Clerk III		0	10	0	1	81	f	EMPLOYEE	A1	Clerk III	
1627	Administrative Aide IV (Electrician I)		0	20	0	4	472	\N	EMPLOYEE	A1	Electrician I	
43	Administrative Aide III (Driver I)		0	19	21	3	166	f	EMPLOYEE	A1	Driver I	
75	Administrative Aide IV (Clerk II)		0	25	17	4	203	f	EMPLOYEE	A1	Clerk II	
212	Administrative Officer II (Administrative Officer I)		0	14	0	11	124	f	EMPLOYEE	A1	AO I	
1637	Supervising Administrative Officer (Management and Audit Analyst IV)		0	14	0	10	482	\N	EMPLOYEE	A1	MAA IV	
1639	Heavy Equipment Operator II		0	28	0	1	484	\N	EMPLOYEE	A1	HEO II	
77	Administrative Aide IV (Clerk II)		0	28	22	4	237	f	EMPLOYEE	A1	Clerk II	
1642	Executive Assistant III		0	1	0	1	487	\N	EMPLOYEE	A1	Exec. Asst. III	
1640	Community Affairs Assistant II		0	1	0	1	485	\N	EMPLOYEE	A1	CAA II	
1638	Heavy Equipment Operator II		0	1	0	1	483	\N	EMPLOYEE	A1	HEO II	
115	Administrative Aide VI (Utility Foreman)		0	1	32	6	16	f	EMPLOYEE	A1	Utility Foreman	
32	Administrative Aide III (Clerk I)		0	18	0	3	153	f	EMPLOYEE	A1	Clerk I	
1632	Administrative Assistant II (Clerk IV)		0	18	0	8	477	\N	EMPLOYEE	A1	Clerk IV	
1631	Administrative Officer III (Cashier II)		0	18	0	14	476	\N	EMPLOYEE	A1	Clerk II	
1375	Administrative Officer IV (Administrative Officer II)		0	18	0	15	250	f	EMPLOYEE	A1	AO II	
1635	Budget Officer III		0	11	0	18	480	\N	EMPLOYEE	A1	Budget Officer III	
613	Administrative Assistant I (Computer Operator I)		0	11	7	7	91	f	EMPLOYEE	A1	CO I	
1628	Administrative Aide IV (Driver II)		0	29	0	4	473	\N	EMPLOYEE	A1	Driver II	
463	Project Development Assistant		0	29	0	8	249	f	EMPLOYEE	A1	Proj. Dev't. Asst.	
1181	Project Development Assistant		0	17	93	8	140	f	EMPLOYEE	A1	Proj. Dev't. Asst.	
3	Accountant IV		0	12	1	22	92	f	EMPLOYEE	A1	Accountant IV	
521	Provincial Health Officer II		0	17	0	26	126	f	EMPLOYEE	A1	PHO II	
661	Traffic Aide I		0	3	0	3	24	f	EMPLOYEE	A1	Traffic Aide I	
424	Nurse III		0	17	0	19	130	f	EMPLOYEE	A1	Nurse III	
1390	Utility Worker I		0	13	0	1	113	f	EMPLOYEE	A1	UW I	
1587	Utility Worker I		0	113	117	1	432	\N	EMPLOYEE	A1	UW I	
1224	Utility Worker II		0	1	0	1	250	f	EMPLOYEE	A1	UW II	
1579	Utility Worker II		0	113	111	1	424	\N	EMPLOYEE	A1	UW II	
1583	Utility Worker II		0	113	115	1	428	\N	EMPLOYEE	A1	UW II	
1584	Utility Worker II		0	113	118	1	429	\N	EMPLOYEE	A1	UW II	
1585	Utility Worker II		0	113	116	1	430	\N	EMPLOYEE	A1	UW II	
489	Provincial Government Department Head		0	7	0	26	47	f	EMPLOYEE	A1	PGDH	
492	Provincial Government Department Head		0	10	0	26	67	f	EMPLOYEE	A1	PGDH	
493	Provincial Government Department Head		0	11	0	26	81	f	EMPLOYEE	A1	PGDH	
496	Provincial Government Department Head		0	14	0	26	113	f	EMPLOYEE	A1	PGDH	
1393	Accounting Clerk 		0	13	0	1	113	f	EMPLOYEE	A1	AC	
333	Engineer IV		0	28	23	22	226	f	EMPLOYEE	A1	Engineer IV	
334	Engineer IV		0	28	37	22	226	f	EMPLOYEE	A1	Engineer IV	
306	Dentist III		0	17	0	20	127	f	EMPLOYEE	A1	Dentist III	
2	Accountant III		0	12	1	19	93	f	EMPLOYEE	A1	Accountant III	
322	Engineer III		0	17	0	19	128	f	EMPLOYEE	A1	Engineer III	
427	Nurse IV		0	19	21	19	155	f	EMPLOYEE	A1	Nurse IV	
1013	Clerk I		0	1	44	1	16	f	EMPLOYEE	A1	Clerk I	
269	Architect III		0	28	14	19	227	f	EMPLOYEE	A1	Architect III	
323	Engineer III		0	28	16	19	227	f	EMPLOYEE	A1	Engineer III	
330	Engineer IV		0	28	16	22	226	f	EMPLOYEE	A1	Engineer IV	
328	Engineer III		0	28	37	19	227	f	EMPLOYEE	A1	Engineer III	
578	Statistician III		0	28	2	18	228	f	EMPLOYEE	A1	Statistician III	
303	Dentist II		0	18	0	17	144	f	EMPLOYEE	A1	Dentist II	
158	Administrative Assistant II (Clerk IV)		0	8	34	8	53	f	HR OFFICER	A1	Clerk IV	
787	Watchman I		0	18	0	2	153	f	EMPLOYEE	A1	Watchman I	
582	Supervising Administrative Officer (Administrative Officer IV)		0	12	4	22	92	f	SUPERVISOR	A1	AO IV	
587	Supervising Administrative Officer (Management and Audit Analyst IV)		0	12	19	22	92	f	SUPERVISOR	A1	MAA IV	
251	Administrative Officer V (Management and Audit Analyst III)		0	12	19	18	94	f	EMPLOYEE	A1	MAA III	
280	Chief of Hospital II		0	19	0	25	153	f	EMPLOYEE	A1	Chief of Hospital II	
396	Medical Officer III		0	19	21	21	154	f	EMPLOYEE	A1	Medical Officer III	
451	Planning Officer IV		0	25	0	22	193	f	EMPLOYEE	A1	Planning Officer IV	
561	Senior Agriculturist		0	25	28	18	194	f	EMPLOYEE	A1	Sr. Agriculturist	
244	Administrative Officer V (Administrative Officer III)		0	14	0	18	116	f	EMPLOYEE	A1	AO III	
1221	Administrative Aide III (Clerk I)		0	1	0	3	250	f	EMPLOYEE	A1	Clerk I	
548	Security Officer III		0	1	15	18	4	t	SUPERVISOR	A1	Security Officer III	
1223	Utility Worker		0	1	0	1	250	f	EMPLOYEE	A1	UW	
549	Security Officer IV		0	1	15	22	3	t	SUPERVISOR	A1	Security Officer IV	
360	Internal Auditor IV		0	1	18	22	3	t	SUPERVISOR	A1	Internal Auditor IV	
342	Executive Assistant IV		0	1	25	22	3	t	SUPERVISOR	A1	Exec. Asst. IV	
547	Security Officer III		0	1	25	18	4	t	SUPERVISOR	A1	Security Officer III	
341	Executive Assistant II		0	1	25	17	5	t	SUPERVISOR	A1	Exec. Asst. II	
279	Chief of Hospital II		0	18	0	25	140	f	EMPLOYEE	A1	Chief of Hospital II	
254	Agricultural Center Chief I		0	26	0	18	204	f	EMPLOYEE	A1	Agri. Center Chief I	
248	Administrative Officer V (Budget Officer III)		0	11	13	18	82	f	EMPLOYEE	A1	Budget Officer III	
589	Supervising Administrative Officer (Supply Officer IV)		0	10	0	22	69	f	SUPERVISOR	A1	Supply Officer IV	
252	Administrative Officer V (Records Officer III)		0	10	0	18	70	f	EMPLOYEE	A1	Records Officer III	
253	Administrative Officer V (Supply Officer III)		0	10	0	18	70	f	EMPLOYEE	A1	Supply Officer III	
408	Medical Technologist III		0	17	0	18	129	f	EMPLOYEE	A1	Med. Tech. III	
245	Administrative Officer V (Administrative Officer III)		0	17	0	18	129	f	EMPLOYEE	A1	AO III	
247	Administrative Officer V (Administrative Officer III)		0	22	0	18	178	f	EMPLOYEE	A1	AO III	
277	Board Secretary IV		0	6	0	22	33	f	EMPLOYEE	A1	Board Secretary IV	
534	Sangguniang Panlalawigan Member		0	6	0	27	30	f	EMPLOYEE	A1	SP Member	
530	Sangguniang Panlalawigan Member (FABC)		0	6	0	27	30	f	EMPLOYEE	A1	SP Member	
531	Sangguniang Panlalawigan Member (IP)		0	6	0	27	30	f	EMPLOYEE	A1	SP Member	
532	Sangguniang Panlalawigan Member (PCL)		0	6	0	27	30	f	EMPLOYEE	A1	SP Member	
533	Sangguniang Panlalawigan Member (Sangguniang Kabataan)		0	6	0	27	30	f	EMPLOYEE	A1	SP Member	
378	Local Assessment Operations Officer IV		0	14	0	22	115	f	EMPLOYEE	A1	LAOO IV	
385	Local Revenue Collection Officer III		0	13	0	18	103	f	EMPLOYEE	A1	LRCO III	
386	Local Revenue Collection Officer IV		0	13	0	22	102	f	EMPLOYEE	A1	LRCO IV	
454	Population Program Officer IV		0	23	0	22	184	f	EMPLOYEE	A1	PPO IV	
476	Project Development Officer III		0	9	27	18	58	f	EMPLOYEE	A1	PDO III	
1534	Aviation Safety Officer I		0	28	23	11	379	\N	EMPLOYEE	A1	Aviation Safety Officer I	
1362	Laboratory Aide		0	28	0	2	250	f	EMPLOYEE	A1	Lab. Aide	
1532	Traffic Aide II		0	3	0	5	377	\N	EMPLOYEE	A1	Traffic Aide II	
1392	Assistant Buyer		0	13	0	0	113	f	EMPLOYEE		Asst. Buyer	
1394	Disbursement Officer		0	13	0	0	113	f	EMPLOYEE		Disbursement Officer	
426	Nurse IV		0	18	0	20	143	f	EMPLOYEE	A1	Nurse IV	
477	Project Development Officer III		0	9	38	18	58	f	EMPLOYEE	A1	PDO III	
513	Provincial Government Assistant Department Head		0	13	0	24	101	f	EMPLOYEE	A1	PGADH	
509	Provincial Government Assistant Department Head		0	9	0	24	57	f	EMPLOYEE	A1	PGADH	
518	Provincial Government Assistant Department Head		0	29	0	24	241	f	EMPLOYEE	A1	PGADH	
510	Provincial Government Assistant Department Head		0	10	0	24	68	f	EMPLOYEE	A1	PGADH	
570	Social Welfare Officer III		0	22	0	18	178	f	EMPLOYEE	A1	SWO III	
304	Dentist II		0	19	21	17	156	f	EMPLOYEE	A1	Dentist II	
1	Accountant II		0	12	1	16	95	f	EMPLOYEE	A1	Accountant II	
268	Architect II		0	28	26	16	229	f	EMPLOYEE	A1	Architect II	
320	Engineer II		0	28	26	16	229	f	EMPLOYEE	A1	Engineer II	
321	Engineer II		0	28	23	16	229	f	EMPLOYEE	A1	Engineer II	
576	Statistician II		0	9	36	15	59	f	EMPLOYEE	A1	Statistician II	
1022	Clerk I		0	1	46	1	16	f	EMPLOYEE	A1	Clerk I	
419	Nurse II		0	18	0	15	145	f	EMPLOYEE	A1	Nurse II	
444	Pharmacist II		0	18	0	15	145	f	EMPLOYEE	A1	Pharmacist II	
319	Engineer II		0	28	16	16	229	f	EMPLOYEE	A1	Engineer II	
423	Nurse II (OR)		0	19	21	15	157	f	EMPLOYEE	A1	Nurse II (OR)	
445	Pharmacist II		0	19	21	15	157	f	EMPLOYEE	A1	Pharmacist II	
421	Nurse II		0	20	0	15	168	f	EMPLOYEE	A1	Nurse II	
446	Pharmacist II		0	20	0	15	168	f	EMPLOYEE	A1	Pharmacist II	
447	Pharmacist II		0	21	0	15	176	f	EMPLOYEE	A1	Pharmacist II	
260	Agriculturist II		0	25	24	15	195	f	EMPLOYEE	A1	Agriculturist II	
266	Aquaculturist II		0	25	24	15	195	f	EMPLOYEE	A1	Aquaculturist II	
440	Nutritionist Dietitian II		0	19	21	15	157	f	EMPLOYEE	A1	ND II	
267	Aquaculturist II		0	25	35	15	195	f	EMPLOYEE	A1	Aquaculturist II	
262	Agriculturist II		0	26	0	15	206	f	EMPLOYEE	A1	Agriculturist II	
340	Environmental Management Specialist II		0	27	0	15	217	f	EMPLOYEE	A1	EMS II	
376	Local Assessment Operations Officer II		0	14	0	15	117	f	EMPLOYEE	A1	LAOO II	
384	Local Revenue Collection Officer II		0	13	0	15	104	f	EMPLOYEE	A1	LRCO II	
388	Local Treasury Operations Officer II		0	13	0	15	104	f	EMPLOYEE	A1	LTOO II	
452	Population Program Officer II		0	23	0	15	185	f	EMPLOYEE	A1	PPO II	
467	Project Development Officer II		0	1	29	15	6	f	EMPLOYEE	A1	PDO II	
468	Project Development Officer II		0	1	40	15	6	f	EMPLOYEE	A1	PDO II	
469	Project Development Officer II		0	9	27	15	59	f	EMPLOYEE	A1	PDO II	
470	Project Development Officer II		0	9	38	15	59	f	EMPLOYEE	A1	PDO II	
569	Social Welfare Officer II		0	22	0	15	179	f	EMPLOYEE	A1	SWO II	
406	Medical Technologist II		0	19	21	15	157	f	EMPLOYEE	A1	Med. Tech. II	
450	Planning Officer II		0	25	9	15	195	f	EMPLOYEE	A1	Planning Officer II	
598	Tax Mapper IV		0	14	0	22	115	f	EMPLOYEE	A1	Tax Mapper IV	
351	Provincial Governor		0	1	0	30	1	t	SUPERVISOR	A1	Provincial Governor	
359	Internal Auditor II		0	1	18	15	6	f	EMPLOYEE	A1	Internal Auditor II	
546	Security Officer II		0	1	25	15	6	f	EMPLOYEE	A1	Security Officer II	
225	Administrative Officer IV (Administrative Officer II)		0	1	30	15	6	f	EMPLOYEE	A1	AO II	
583	Supervising Administrative Officer (Administrative Officer IV)		0	13	0	22	102	f	SUPERVISOR	A1	AO IV	
278	Chief of Hospital I		0	18	0	24	141	f	EMPLOYEE	A1	Chief of Hospital I	
395	Medical Officer III		0	18	0	21	142	f	EMPLOYEE	A1	Medical Officer III	
405	Medical Technologist II		0	18	0	15	145	f	EMPLOYEE	A1	Med. Tech. II	
439	Nutritionist Dietitian II		0	18	0	15	145	f	EMPLOYEE	A1	Nutritionist Dietitian II	
308	Development Management Officer II		0	29	0	15	244	f	EMPLOYEE	A1	Dev't. Mgt. Officer II	
309	Development Management Officer III		0	29	0	18	243	f	EMPLOYEE	A1	Dev't. Mgt. Officer III	
592	Supervising Cooperative Development Specialist		0	29	0	22	242	f	SUPERVISOR	A1	Supv. Coo. Dev't. Specialist	
563	Senior Environmental Management Specialist		0	27	0	18	216	f	EMPLOYEE	A1	Sr. Environmental Mgt. Specialist	
404	Medical Technologist II		0	17	0	15	131	f	EMPLOYEE	A1	Med. Tech. II	
472	Project Development Officer II (Educational)		0	9	27	15	59	f	EMPLOYEE	A1	PDO II	
483	Project Evaluation Officer II		0	9	36	15	59	f	EMPLOYEE	A1	Proj. Evaluation Officer II	
593	Supervising Labor and Employment Officer		0	2	0	22	16	f	SUPERVISOR	A1	Supv. Labor & Empl. Officer	
364	Labor and Employment Officer III		0	2	0	16	17	f	EMPLOYEE	A1	Labor & Empl. Officer III	
221	Administrative Officer III (Records Officer II)		0	6	0	14	37	f	EMPLOYEE	A1	Records Officer II	
275	Board Secretary II		0	6	0	17	35	f	EMPLOYEE	A1	Board Secretary II	
276	Board Secretary III		0	6	0	20	34	f	EMPLOYEE	A1	Board Secretary III	
460	Private Secretary II		0	6	0	15	36	f	EMPLOYEE	A1	Private Secretary II	
553	Senior Administrative Assistant II (Computer Operator IV)		0	6	0	14	37	f	EMPLOYEE	A1	CO IV	
285	Community Affairs Officer II		0	1	32	15	6	f	EMPLOYEE	A1	CAO II	
412	Midwife III		0	17	0	13	133	f	EMPLOYEE	A1	Midwife III	
411	Midwife II		0	17	0	11	134	f	EMPLOYEE	A1	Midwife II	
443	Pharmacist I		0	19	21	11	160	f	EMPLOYEE	A1	Pharmacist I	
575	Statistician I		0	28	2	11	232	f	EMPLOYEE	A1	Statistician I	
375	Local Assessment Operations Officer I		0	14	0	11	118	f	EMPLOYEE	A1	LAOO I	
284	Community Affairs Officer I		0	1	32	11	8	f	EMPLOYEE	A1	CAO I	
339	Environmental Management Specialist I		0	27	0	11	218	f	EMPLOYEE	A1	EMS I	
566	Social Welfare Officer I		0	19	21	11	160	f	EMPLOYEE	A1	SWO I	
565	Social Welfare Officer I		0	18	0	11	147	f	EMPLOYEE	A1	SWO I	
567	Social Welfare Officer I		0	22	0	11	181	f	EMPLOYEE	A1	SWO I	
1035	Clerk I		0	1	47	1	16	f	EMPLOYEE	A1	Clerk I	
409	Midwife I		0	19	21	9	162	f	EMPLOYEE	A1	Midwife I	
174	Administrative Assistant III (Storekeeper III)		0	28	2	9	233	f	EMPLOYEE	A1	Administrative Assistant III (Storekeeper III)	
313	Draftsman II		0	28	26	8	234	f	EMPLOYEE	A1	Draftsman II	
288	Community Development Assistant II		0	27	0	9	219	f	EMPLOYEE	A1	CDA II	
219	Administrative Officer II (Management and Audit Analyst I)		0	12	19	11	97	f	EMPLOYEE	A1	MAA I	
1185	Administrative Assistant II (Senior Bookkeeper)		0	19	0	9	162	f	EMPLOYEE	A1	Sr. Bookkeeper	
401	Medical Technologist I		0	19	21	11	160	f	EMPLOYEE	A1	Med. Tech. I	
594	Tax Mapper I		0	14	0	11	118	f	EMPLOYEE	A1	Tax Mapper I	
596	Tax Mapper II		0	14	0	15	117	f	EMPLOYEE	A1	Tax Mapper II	
160	Administrative Assistant II (Clerk IV)		0	28	22	8	234	f	EMPLOYEE	A1	Clerk IV	
216	Administrative Officer II (Administrative Officer I)		0	28	22	11	232	f	EMPLOYEE	A1	AO I	
551	Senior Administrative Assistant I (Mechanical Shop General Foreman)		0	28	23	13	231	f	EMPLOYEE	A1	Mech. Shop Gen. Foreman	
291	Construction and Maintenance Foreman		0	28	37	8	234	f	EMPLOYEE	A1	Const. & Maint. Foreman	
545	Security Officer I		0	1	15	11	8	f	EMPLOYEE	A1	Security Officer I	
358	Internal Auditor I		0	1	18	11	8	f	EMPLOYEE	A1	Internal Auditor I	
189	Administrative Assistant VI (Computer Operator III)		0	1	20	12	7	f	EMPLOYEE	A1	CO III	
289	Computer Programmer I		0	1	20	11	8	f	EMPLOYEE	A1	Computer Programmer I	
355	Information System Analyst I		0	1	20	12	7	f	EMPLOYEE	A1	Info. System Analyst I	
544	Security Officer I		0	1	25	11	8	f	EMPLOYEE	A1	Security Officer I	
208	Administrative Officer II (Administrative Officer I)		0	1	29	11	8	f	EMPLOYEE	A1	AO I	
184	Administrative Assistant V (Communications Equipment Operator IV)		0	1	32	11	8	f	EMPLOYEE	A1	Comm. Eqpt. Oper. IV	
165	Administrative Assistant III (Computer Operator II)		0	1	32	9	10	f	EMPLOYEE	A1	CO II	
150	Administrative Assistant II (Administrative Assistant)		0	1	32	8	11	f	EMPLOYEE	A1	Admin. Asst.	
204	Administrative Officer I (Supply Officer I)		0	13	0	10	107	f	EMPLOYEE	A1	Supply Officer I	
558	Senior Administrative Assistant II (Computer Operator IV)		0	13	0	14	105	f	EMPLOYEE	A1	CO IV	
391	Meat Inspector III		0	26	0	11	209	f	EMPLOYEE	A1	Meat Insp. III	
525	Radiologic Technologist II		0	18	0	15	146	f	EMPLOYEE	A1	Rad. Tech. II	
210	Administrative Officer II (Administrative Officer I)		0	11	7	11	85	f	EMPLOYEE	A1	AO I	
557	Senior Administrative Assistant II (Computer Operator IV)		0	11	7	14	84	f	EMPLOYEE	A1	CO IV	
217	Administrative Officer II (Budget Officer I)		0	11	13	11	85	f	EMPLOYEE	A1	Budget Officer I	
222	Administrative Officer III (Records Officer II)		0	10	0	14	72	f	EMPLOYEE	A1	Records Officer II	
224	Administrative Officer III (Supply Officer II)		0	10	0	14	72	f	EMPLOYEE	A1	Supply Officer II	
183	Administrative Assistant V (Buyer IV)		0	10	0	11	74	f	EMPLOYEE	A1	Buyer IV	
159	Administrative Assistant II (Clerk IV)		0	10	0	8	75	f	EMPLOYEE	A1	Clerk IV	
352	Health Education and Promotion Officer II		0	17	0	14	132	f	EMPLOYEE	A1	HEPO II	
535	Sanitation Inspector III		0	17	0	11	134	f	EMPLOYEE	A1	Sanitation Insp. III	
198	Administrative Officer I (Supply Officer I)		0	17	0	10	135	f	EMPLOYEE	A1	Supply Officer I	
554	Senior Administrative Assistant II (Computer Operator IV)		0	8	34	14	51	f	EMPLOYEE	A1	CO IV	
555	Senior Administrative Assistant II (Computer Operator IV)		0	9	3	14	60	f	EMPLOYEE	A1	CO IV	
191	Administrative Assistant VI (Computer Operator III)		0	9	3	12	61	f	EMPLOYEE	A1	CO III	
448	Planning Officer I		0	9	27	11	62	f	EMPLOYEE	A1	Planning Officer I	
214	Administrative Officer II (Administrative Officer I)		0	24	5	11	190	f	EMPLOYEE	A1	AO I	
600	Tourism Operations Officer II		0	24	41	15	189	f	EMPLOYEE	A1	Tourism Operations Officer II	
599	Tourism Operations Officer I		0	24	41	11	190	f	EMPLOYEE	A1	Tourism Operations Officer I	
190	Administrative Assistant VI (Computer Operator III)		0	2	0	12	19	f	EMPLOYEE	A1	CO III	
550	Senior Administrative Assistant I (Data Entry Machine Operator IV)		0	2	0	13	18	f	EMPLOYEE	A1	Data Entry Machine Oper. IV	
186	Administrative Assistant V (Electronics and Communications Equipment Technician III)		0	6	0	11	38	f	EMPLOYEE	A1	Elec. & Comm. Eqpt. Tech. III	
213	Administrative Officer II		0	20	8	11	169	f	EMPLOYEE	A1	AO II	
529	Revenue Collection Clerk III		0	13	0	9	108	f	EMPLOYEE	A1	RCC III	
316	Driver III		0	9	3	8	64	f	EMPLOYEE	A1	Driver III	
1154	Clerk II		0	1	92	1	16	f	EMPLOYEE	A1	Clerk II	
609	Watchman III		0	10	0	7	76	f	EMPLOYEE	A1	Watchman III	
1092	Clerk III		0	1	75	1	16	f	EMPLOYEE	A1	Clerk III	
310	Draftsman I		0	14	0	6	120	f	EMPLOYEE	A1	Draftsman I	
312	Draftsman I		0	28	26	6	235	f	EMPLOYEE	A1	Draftsman I	
392	Mechanic II		0	28	23	6	235	f	EMPLOYEE	A1	Mechanic II	
441	Painter II		0	28	23	5	236	f	EMPLOYEE	A1	Painter II	
315	Driver II		0	1	25	4	14	f	EMPLOYEE	A1	Driver II	
106	Administrative Aide VI (Clerk III)		0	28	2	6	235	f	EMPLOYEE	A1	AA VI (Clerk III)	
173	Administrative Assistant III (Senior Bookkeeper)		0	20	8	9	171	f	EMPLOYEE	A1	Sr. Bookkeeper	
201	Administrative Officer I (Cashier I)		0	20	8	10	170	f	EMPLOYEE	A1	Cashier I	
172	Administrative Assistant III (Senior Bookkeeper)		0	19	6	9	162	f	EMPLOYEE	A1	Sr. Bookkeeper	
200	Administrative Officer I (Cashier I)		0	19	6	10	161	f	EMPLOYEE	A1	Cashier I	
436	Nursing Attendant II		0	19	21	6	163	f	EMPLOYEE	A1	Nursing Attendant II	
256	Agricultural Technologist		0	25	0	10	197	f	EMPLOYEE	A1	Agri. Tech.	
343	Farm Foreman		0	25	0	6	199	f	EMPLOYEE	A1	Farm Foreman	
258	Agricultural Technologist		0	25	11	10	197	f	EMPLOYEE	A1	Agri. Tech.	
257	Agricultural Technologist		0	25	17	10	197	f	EMPLOYEE	A1	Agri. Tech.	
344	Farm Supervisor		0	25	17	8	198	f	SUPERVISOR	A1	Farm Supervisor	
102	Administrative Aide VI (Clerk III)		0	14	0	6	120	f	EMPLOYEE	A1	Clerk III	
337	Engineering Assistant		0	28	0	8	234	f	EMPLOYEE	A1	Engineering Asst.	
182	Administrative Assistant IV (Bookbinder IV)		0	14	0	10	119	f	EMPLOYEE	A1	BB IV	
462	Project Development Assistant		0	28	16	8	234	f	EMPLOYEE	A1	Proj. Dev't. Asst.	
98	Administrative Aide IV (Storekeeper I)		0	28	22	4	237	f	EMPLOYEE	A1	Storekeeper I	
100	Administrative Aide V (Plumber II)		0	28	14	5	236	f	EMPLOYEE	A1	Plumber II	
292	Construction and Maintenance Foreman		0	28	14	8	234	f	EMPLOYEE	A1	Const. & Maint. Foreman	
536	Security Agent I		0	1	15	8	11	f	EMPLOYEE	A1	Security Agent I	
538	Security Agent II		0	1	15	10	9	f	EMPLOYEE	A1	Security Agent II	
357	Internal Auditing Assistant		0	1	18	8	11	f	EMPLOYEE	A1	Internal Auditing Asst.	
175	Administrative Assistant IV (Bookbinder IV)		0	1	32	10	9	f	EMPLOYEE	A1	BB IV	
125	Administrative Assistant I (Computer Operator I)		0	1	32	7	12	f	EMPLOYEE	A1	CO I	
87	Administrative Aide IV (Reproduction Machine Operator II)		0	1	32	4	14	f	EMPLOYEE	A1	RMO II	
124	Administrative Assistant I (Bookbinder III)		0	13	0	7	109	f	EMPLOYEE	A1	BB III	
105	Administrative Aide VI (Clerk III)		0	26	0	6	213	f	EMPLOYEE	A1	Clerk III	
181	Administrative Assistant IV (Bookbinder IV)		0	13	0	10	107	f	EMPLOYEE	A1	BB IV	
255	Agricultural Technician II		0	26	0	8	211	f	EMPLOYEE	A1	Agri. Tech. II	
265	Animal Keeper III		0	26	0	9	210	f	EMPLOYEE	A1	Animal Keeper III	
374	Livestock Inspector II		0	26	0	8	211	f	EMPLOYEE	A1	Livestock Insp. II	
113	Administrative Aide VI (Storekeeper II)		0	18	0	6	149	f	EMPLOYEE	A1	Storekeeper II	
199	Administrative Officer I (Cashier I)		0	18	0	10	148	f	EMPLOYEE	A1	Cashier I	
202	Administrative Officer I (Records Officer I)		0	18	0	10	148	f	EMPLOYEE	A1	Records Officer I	
121	Administrative Assistant I (Bookbinder III)		0	11	7	7	89	f	EMPLOYEE	A1	BB III	
639	Driver III		0	3	0	1	24	f	EMPLOYEE	A1	Driver III	
169	Administrative Assistant III (Computer Operator II)		0	11	7	9	87	f	EMPLOYEE	A1	CO II	
179	Administrative Assistant IV (Bookbinder IV)		0	11	7	10	86	f	EMPLOYEE	A1	BB IV	
307	Development Management Officer I		0	29	0	11	245	f	EMPLOYEE	A1	Dev't. Mgt. Officer I	
109	Administrative Aide VI (Electrician II)		0	10	0	6	77	f	EMPLOYEE	A1	Electrician II	
23	Administrative Aide II (Bookbinder I)		0	17	0	2	139	f	EMPLOYEE	A1	BB I	
85	Administrative Aide IV (Human Resource Management Aide)		0	8	34	4	55	f	EMPLOYEE	A1	HRM Aide	
130	Administrative Assistant I (Computer Operator I)		0	8	42	7	54	f	EMPLOYEE	A1	CO I	
168	Administrative Assistant III (Computer Operator II)		0	9	3	9	63	f	EMPLOYEE	A1	CO II	
564	Social Welfare Assistant		0	22	0	8	182	f	EMPLOYEE	A1	SWA	
135	Administrative Assistant I (Computer Operator I)		0	24	5	7	191	f	EMPLOYEE	A1	CO I	
176	Administrative Assistant IV (Bookbinder IV)		0	2	0	10	20	f	EMPLOYEE	A1	BB IV	
166	Administrative Assistant III (Computer Operator II)		0	2	0	9	21	f	EMPLOYEE	A1	CO II	
127	Administrative Assistant I (Computer Operator I)		0	2	0	7	22	f	EMPLOYEE	A1	CO I	
60	Administrative Aide IV (Bookbinder II)		0	2	0	4	23	f	EMPLOYEE	A1	BB II	
88	Administrative Aide IV (Reproduction Machine Operator II)		0	2	0	4	23	f	EMPLOYEE	A1	RMO II	
167	Administrative Assistant III (Computer Operator II)		0	6	0	9	40	f	EMPLOYEE	A1	CO II	
537	Security Agent I		0	6	0	8	41	f	EMPLOYEE	A1	Security Agent I	
177	Administrative Assistant IV (Bookbinder IV)		0	6	0	10	39	f	EMPLOYEE	A1	BB IV	
539	Security Agent II		0	6	0	10	39	f	EMPLOYEE	A1	Security Agent II	
287	Community Development Assistant I		0	27	0	7	220	f	EMPLOYEE	A1	CDA I	
354	Heavy Equipment Operator II		0	28	23	6	235	f	EMPLOYEE	A1	HEO II	
456	Population Program Worker II		0	23	0	7	186	f	EMPLOYEE	A1	PPW II	
116	Administrative Aide VI (Utility Foreman)		0	6	0	6	43	f	EMPLOYEE	A1	AA VI (UF)	
317	Electrician I		0	18	0	4	150	f	EMPLOYEE	A1	Electrician I	
350	Fumigator		0	25	28	4	200	f	EMPLOYEE	A1	Fumigator	
296	Cook I		0	19	21	3	165	f	EMPLOYEE	A1	Cook I	
297	Cook I		0	20	8	3	174	f	EMPLOYEE	A1	Cook I	
607	Watchman I		0	10	0	2	80	f	EMPLOYEE	A1	Watchman I	
35	Administrative Aide III (Clerk I)		0	28	2	3	238	f	EMPLOYEE	A1	AA III (Clerk I)	
51	Administrative Aide III (Utility Worker II)		0	13	0	3	111	f	EMPLOYEE	A1	AA III (UW II)	
72	Administrative Aide IV (Clerk II)		0	20	8	4	173	f	EMPLOYEE	A1	Clerk II	
82	Administrative Aide IV (Driver II)		0	20	8	4	173	f	EMPLOYEE	A1	Driver II	
94	Administrative Aide IV (Reproduction Machine Operator II)		0	20	8	4	173	f	EMPLOYEE	A1	RMO II	
71	Administrative Aide IV (Clerk II)		0	19	21	4	164	f	EMPLOYEE	A1	Clerk II	
99	Administrative Aide IV (Bookbinder II)		0	7	0	4	48	f	EMPLOYEE	A1	Bookbinder II	
90	Administrative Aide IV (Reproduction Machine Operator II)		0	7	0	4	48	f	EMPLOYEE	A1	RMO II	
55	Administrative Aide III (Utility Worker II)		0	25	0	3	201	f	EMPLOYEE	A1	UW II	
95	Administrative Aide IV (Reproduction Machine Operator II)		0	25	0	4	200	f	EMPLOYEE	A1	RMO II	
76	Administrative Aide IV (Clerk II)		0	25	9	4	200	f	EMPLOYEE	A1	Clerk II	
39	Administrative Aide III (Driver I)		0	14	0	3	122	f	EMPLOYEE	A1	Driver I	
272	Assessment Clerk II		0	14	0	6	120	f	EMPLOYEE	A1	Assessment Clerk II	
84	Administrative Aide IV (Driver II)		0	28	23	4	237	f	EMPLOYEE	A1	Driver II	
336	Engineering Aide		0	28	23	4	237	f	EMPLOYEE	A1	Engineering Aide	
335	Engineering Aide		0	28	26	4	237	f	EMPLOYEE	A1	Engineering Aide	
290	Construction and Maintenance Capataz		0	28	37	5	236	f	EMPLOYEE	A1	Const. & Maint. Capataz	
26	Administrative Aide II (Messenger)		0	1	20	2	15	f	EMPLOYEE	A1	Messenger	
64	Administrative Aide IV (Bookbinder II)		0	13	0	4	110	f	EMPLOYEE	A1	BB II	
93	Administrative Aide IV (Reproduction Machine Operator II)		0	13	0	4	110	f	EMPLOYEE	A1	RMO II	
144	Administrative Assistant I (Reproduction Machine Operator III)		0	13	0	7	109	f	EMPLOYEE	A1	RMO III	
136	Administrative Assistant I (Computer Operator I)		0	26	0	7	212	f	EMPLOYEE	A1	CO I	
264	Animal Keeper II		0	26	0	6	213	f	EMPLOYEE	A1	Animal Keeper II	
373	Livestock Inspector I		0	26	0	6	213	f	EMPLOYEE	A1	Livestock Insp. I	
457	Prison Guard I		0	5	0	5	28	f	EMPLOYEE	A1	Prison Guard I	
458	Prison Guard II		0	5	0	7	27	f	EMPLOYEE	A1	Prison Guard II	
42	Administrative Aide III (Driver I)		0	18	0	3	151	f	EMPLOYEE	A1	Driver I	
50	Administrative Aide III (Utility Worker II)		0	11	7	3	90	f	EMPLOYEE	A1	UW II	
142	Administrative Assistant I (Reproduction Machine Operator III)		0	11	7	7	89	f	EMPLOYEE	A1	RMO III	
96	Administrative Aide IV (Reproduction Machine Operator II)		0	29	0	4	247	f	EMPLOYEE	A1	RMO II	
138	Administrative Assistant I (Computer Operator I)		0	29	0	7	246	f	EMPLOYEE	A1	CO I	
141	Administrative Assistant I (Reproduction Machine Operator III)		0	10	0	7	76	f	EMPLOYEE	A1	RMO III	
117	Administrative Aide VI (Utility Foreman)		0	10	0	6	77	f	EMPLOYEE	A1	Utility Foreman	
97	Administrative Aide IV (Storekeeper I)		0	10	0	4	78	f	EMPLOYEE	A1	Storekeeper I	
62	Administrative Aide IV (Bookbinder II)		0	10	0	4	78	f	EMPLOYEE	A1	BB II	
91	Administrative Aide IV (Reproduction Machine Operator II)		0	10	0	4	78	f	EMPLOYEE	A1	RMO II	
38	Administrative Aide III (Driver I)		0	10	0	3	79	f	EMPLOYEE	A1	Driver I	
49	Administrative Aide III (Utility Worker II)		0	10	0	3	79	f	EMPLOYEE	A1	UW II	
118	Administrative Aide VI (Utility Foreman)		0	27	0	6	221	f	EMPLOYEE	A1	Utility Foreman	
41	Administrative Aide III (Driver I)		0	17	0	3	138	f	EMPLOYEE	A1	Driver I	
52	Administrative Aide III (Utility Worker II)		0	17	0	3	138	f	EMPLOYEE	A1	UW II	
86	Administrative Aide IV (Human Resource Management Aide)		0	8	10	4	55	f	EMPLOYEE	A1	HRM Aide	
139	Administrative Assistant I (Reproduction Machine Operator III)		0	8	34	7	54	f	EMPLOYEE	A1	RMO III	
40	Administrative Aide III (Driver I)		0	16	0	3	125	f	EMPLOYEE	A1	Driver I	
140	Administrative Assistant I (Reproduction Machine Operator III)		0	9	3	7	65	f	EMPLOYEE	A1	RMO III	
66	Administrative Aide IV (Bookbinder II)		0	23	0	4	187	f	EMPLOYEE	A1	BB II	
65	Administrative Aide IV (Bookbinder II)		0	22	0	4	183	f	EMPLOYEE	A1	BB II	
145	Administrative Assistant I (Reproduction Machine Operator III)		0	24	5	7	191	f	EMPLOYEE	A1	RMO III	
1183	Administrative Assistant II (Administrative Assistant)		0	2	0	7	22	f	EMPLOYEE	A1	Admin. Asst.	
19	Administrative Aide II (Bookbinder I)		0	6	0	2	46	f	EMPLOYEE	A1	BB I	
47	Administrative Aide III (Utility Worker II)		0	6	0	3	45	f	EMPLOYEE	A1	UW II	
147	Administrative Assistant I (Stenographic Reporter I)		0	6	0	7	42	f	EMPLOYEE	A1	Steno. Reporter I	
353	Heavy Equipment Operator I		0	28	23	4	237	f	EMPLOYEE	A1	HEO I	
365	Laboratory Aide II		0	18	0	4	150	f	EMPLOYEE	A1	Lab. Aide II	
366	Laboratory Aide II		0	19	21	4	164	f	EMPLOYEE	A1	Lab. Aide II	
1046	Clerk I		0	1	49	1	16	f	EMPLOYEE	A1	Clerk I	
1051	Clerk I		0	1	50	1	16	f	EMPLOYEE	A1	Clerk I	
1088	Clerk I		0	1	74	1	16	f	EMPLOYEE	A1	Clerk I	
1140	Clerk I		0	1	90	1	16	f	EMPLOYEE	A1	Clerk I	
970	Clerk II		0	1	18	1	16	f	EMPLOYEE	A1	Clerk II	
974	Clerk II		0	1	20	1	16	f	EMPLOYEE	A1	Clerk II	
1014	Clerk II		0	1	44	1	16	f	EMPLOYEE	A1	Clerk II	
1023	Clerk II		0	1	46	1	16	f	EMPLOYEE	A1	Clerk II	
1047	Clerk II		0	1	49	1	16	f	EMPLOYEE	A1	Clerk II	
1119	Clerk II		0	1	83	1	16	f	EMPLOYEE	A1	Clerk II	
1136	Clerk II		0	1	87	1	16	f	EMPLOYEE	A1	Clerk II	
1024	Clerk III		0	1	46	1	16	f	EMPLOYEE	A1	Clerk III	
1048	Clerk III		0	1	49	1	16	f	EMPLOYEE	A1	Clerk III	
1155	Clerk III		0	1	92	1	16	f	EMPLOYEE	A1	Clerk III	
1027	Driver I		0	1	46	1	16	f	EMPLOYEE	A1	Driver I	
1053	Driver I		0	1	51	1	16	f	EMPLOYEE	A1	Driver I	
54	Administrative Aide III (Utility Worker II)		0	19	21	3	165	f	EMPLOYEE	A1	AA III (UW II)	
1015	Computer Operator I		0	1	44	1	16	f	EMPLOYEE	A1	CO I	
1146	Driver I		0	1	91	1	16	f	EMPLOYEE	A1	Driver I	
618	Clerk II		0	1	0	4	16	f	EMPLOYEE	A1	Clerk II	
542	Security Guard I		0	19	21	3	165	f	EMPLOYEE	A1	Security Guard I	
347	Farm Worker I		0	25	0	2	202	f	EMPLOYEE	A1	Farm Worker I	
346	Farm Worker I		0	25	11	2	202	f	EMPLOYEE	A1	Farm Worker I	
345	Farm Worker I		0	25	31	2	202	f	EMPLOYEE	A1	Farm Worker I	
271	Assessment Clerk I		0	14	0	4	121	f	EMPLOYEE	A1	Assessment Clerk I	
294	Construction and Maintenance Man		0	28	37	2	239	f	EMPLOYEE	A1	Const. & Maint. Man	
126	Administrative Assistant I (Computer Operator I)		0	1	20	7	16	f	EMPLOYEE	A1	CO I	
27	Administrative Aide II (Messenger)		0	6	0	2	47	f	EMPLOYEE	A1	Messenger	
111	Administrative Aide VI (Electronics and Communications Equipment Technician I)		0	1	32	6	13	f	EMPLOYEE	A1	Elec. & Comm. Eqpt. Tech. I	
78	Administrative Aide IV (Driver II)		0	1	32	4	16	f	EMPLOYEE	A1	Driver II	
263	Animal Keeper I		0	26	0	4	214	f	EMPLOYEE	A1	Animal Keeper I	
293	Construction and Maintenance Man		0	18	0	2	152	f	EMPLOYEE	A1	Const. & Maint. Man	
29	Administrative Aide II (Messenger)		0	27	0	2	223	f	EMPLOYEE	A1	Messenger	
299	Dental Aide		0	17	0	4	137	f	EMPLOYEE	A1	Dental Aide	
430	Nursing Attendant I		0	17	0	4	137	f	EMPLOYEE	A1	Nursing Attendant I	
25	Administrative Aide II (Bookbinder I)		0	23	0	2	188	f	EMPLOYEE	A1	BB I	
28	Administrative Aide II (Messenger)		0	24	41	2	192	f	EMPLOYEE	A1	Messenger	
1050	Laborer I		0	1	49	1	16	f	EMPLOYEE	A1	Laborer I	
1017	Messenger I		0	1	44	1	16	f	EMPLOYEE	A1	Messenger I	
1099	Pharmacist I		0	1	77	11	16	f	EMPLOYEE	A1	Pharmacist I	
619	Nurse I		0	1	0	11	16	f	EMPLOYEE	A1	Nurse I	
1169	Nurse I		0	1	92	11	16	f	EMPLOYEE	A1	Nurse I	
624	Watchman I		0	1	0	1	16	f	EMPLOYEE	A1	Watchman I	
1171	Pharmacist I		0	1	92	11	16	f	EMPLOYEE	A1	Pharma I	
1020	Utility Worker I		0	1	44	1	16	f	EMPLOYEE	A1	UW I	
1054	Utility Worker I		0	1	52	1	16	f	EMPLOYEE	A1	UW I	
1103	Utility Worker I		0	1	78	1	16	f	EMPLOYEE	A1	UW I	
623	Utility Worker I		0	1	0	1	16	f	EMPLOYEE	A1	UW I	
1175	Utility Worker II		0	1	92	1	16	f	EMPLOYEE	A1	UW II	
1009	Computer Operator I		0	1	29	7	16	f	EMPLOYEE	A1	CO I	
1176	Watchman I		0	1	92	1	16	f	EMPLOYEE	A1	Watchman I	
1177	Watchman III		0	1	92	1	16	f	EMPLOYEE	A1	Watchman III	
630	Clerk I		0	3	0	1	24	f	EMPLOYEE	A1	Clerk I	
608	Watchman III		0	1	15	7	16	f	EMPLOYEE	A1	Watchman III	
1012	Watchman I		0	1	29	1	16	f	EMPLOYEE	A1	Watchman I	
648	Laborer I		0	3	0	1	24	f	EMPLOYEE	A1	Laborer I	
652	Nurse I		0	3	0	11	24	f	EMPLOYEE	A1	Nurse I	
1077	Clerk I		0	16	67	1	126	f	EMPLOYEE	A1	Clerk I	
620	Nursing Attendant I		0	1	0	1	16	f	EMPLOYEE	A1	Nursing Attendant I	
1049	Engineering Assistant		0	1	49	8	16	f	EMPLOYEE	A1	Engineering Asst.	
471	Project Development Officer II		0	1	32	15	16	f	EMPLOYEE	A1	PDO II	
479	Project Development Officer IV		0	1	29	22	16	f	EMPLOYEE	A1	PDO IV	
480	Project Development Officer IV		0	1	40	22	16	f	EMPLOYEE	A1	PDO IV	
486	Provincial Government Department Head		0	2	0	26	24	f	EMPLOYEE	A1	PGDH	
643	Engineer II		0	3	0	16	24	f	EMPLOYEE	A1	Engineer II	
636	Computer Operator I		0	3	0	7	24	f	EMPLOYEE	A1	CO I	
719	Clerk II		0	8	0	1	56	f	EMPLOYEE	A1	Clerk II	
728	Driver I		0	9	0	1	67	f	EMPLOYEE	A1	Driver I	
670	Clerk I		0	4	0	3	27	f	EMPLOYEE	A1	Clerk I	
671	Clerk II		0	4	0	4	27	f	EMPLOYEE	A1	Clerk II	
673	Driver I		0	4	0	3	27	f	EMPLOYEE	A1	Driver I	
683	Clerk III		0	6	0	6	47	f	EMPLOYEE	A1	Clerk III	
688	Driver III		0	6	0	8	47	f	EMPLOYEE	A1	Driver III	
706	Clerk I		0	7	0	3	49	f	EMPLOYEE	A1	Clerk I	
707	Clerk II		0	7	0	4	49	f	EMPLOYEE	A1	Clerk II	
710	Driver II		0	7	0	4	49	f	EMPLOYEE	A1	Driver II	
716	Watchman I		0	7	0	2	49	f	EMPLOYEE	A1	Watchman I	
574	Statistician I		0	9	36	11	67	f	EMPLOYEE	A1	Statistician I	
1080	Clerk I		0	16	69	1	126	f	EMPLOYEE	A1	Clerk I	
482	Project Development Officer IV		0	9	38	22	67	f	EMPLOYEE	A1	PDO IV	
487	Provincial Government Department Head		0	3	0	26	24	f	EMPLOYEE	A1	PGDH	
465	Project Development Officer I		0	9	38	11	67	f	EMPLOYEE	A1	PDO I	
665	Utility Worker I		0	3	0	1	24	f	EMPLOYEE	A1	UW I	
686	Computer Operator III		0	6	0	1	47	f	EMPLOYEE	A1	CO III	
651	Medical Technologist I		0	3	0	11	24	f	EMPLOYEE	A1	Med. Tech. I	
653	Nursing Attendant I		0	3	0	1	24	f	EMPLOYEE	A1	Nursing Attendant I	
654	Nursing Attendant II		0	3	0	6	24	f	EMPLOYEE	A1	Nursing Attendant II	
621	Social Welfare Assistant		0	1	0	1	16	f	EMPLOYEE	A1	SWA	
1011	Traffic Aide I		0	1	29	1	16	f	EMPLOYEE	A1	Traffic Aide I	
633	Clerk IV		0	3	0	8	24	f	EMPLOYEE	A1	Clerk IV	
637	Computer Operator III		0	3	0	12	24	f	EMPLOYEE	A1	CO III	
638	Driver I		0	3	0	3	24	f	EMPLOYEE	A1	Driver I	
622	Traffic Aide III		0	1	0	7	16	f	EMPLOYEE	A1	Traffic Aide III	
662	Traffic Operations Officer I		0	3	0	11	24	f	EMPLOYEE	A1	TOO I	
663	Traffic Operations Officer II		0	3	0	15	24	f	EMPLOYEE	A1	TOO II	
657	Planning Development Officer I		0	3	0	11	24	f	EMPLOYEE	A1	PDO I	
459	Prison Guard III		0	5	0	10	29	f	EMPLOYEE	A1	Prison Guard III	
522	Provincial Warden		0	5	0	22	29	f	EMPLOYEE	A1	Provincial Warden	
10	Administrative Aide I (Utility Worker I)		0	10	0	1	81	f	EMPLOYEE	A1	UW I	
9	Administrative Aide I (Utility Worker I)		0	9	3	1	67	f	EMPLOYEE	A1	UW I	
771	Clerk III		0	18	0	6	153	f	EMPLOYEE	A1	Clerk III	
363	Labor and Employment Officer II		0	2	0	13	24	f	EMPLOYEE	A1	Labor & Empl. Officer II	
361	Labor and Employment Assistant		0	2	0	8	24	f	EMPLOYEE	A1	Labor & Empl. Asst.	
30	Administrative Aide II (Reproduction Machine Operator I)		0	6	0	2	47	f	EMPLOYEE	A1	RMO I	
31	Administrative Aide III (Clerk I)		0	6	0	3	47	f	EMPLOYEE	A1	Clerk I	
37	Administrative Aide III (Driver I)		0	6	0	3	47	f	EMPLOYEE	A1	Driver I	
68	Administrative Aide IV (Clerk II)		0	6	0	4	47	f	EMPLOYEE	A1	Clerk II	
79	Administrative Aide IV (Driver II)		0	6	0	4	47	f	EMPLOYEE	A1	Driver II	
128	Administrative Assistant I (Computer Operator I)		0	6	0	7	47	f	EMPLOYEE	A1	CO I	
187	Administrative Assistant V (Stenographic Reporter III)		0	6	0	11	47	f	EMPLOYEE	A1	Steno. Reporter III	
702	Security Officer I		0	6	0	1	47	f	EMPLOYEE	A1	Security Officer I	
727	Computer Operator III		0	9	0	1	67	f	EMPLOYEE	A1	CO III	
741	Driver III		0	13	0	1	113	f	EMPLOYEE	A1	Driver III	
733	Nurse I		0	10	0	11	81	f	EMPLOYEE	A1	Nurse I	
1059	Clerk I		0	16	56	1	126	f	EMPLOYEE	A1	Clerk I	
726	Computer Operator I		0	9	0	7	67	f	EMPLOYEE	A1	CO I	
867	Watchman III		0	21	0	1	177	f	EMPLOYEE	A1	Watchman III	
695	Local Treasury Operations Officer I		0	6	0	11	47	f	EMPLOYEE	A1	LTOO I	
577	Statistician III		0	9	36	18	67	f	EMPLOYEE	A1	Statistician III	
273	Attorney I		0	16	0	16	126	f	EMPLOYEE	A1	Attorney I	
1066	Clerk II		0	16	62	1	126	f	EMPLOYEE	A1	Clerk II	
1075	Clerk II		0	16	66	1	126	f	EMPLOYEE	A1	Clerk II	
1069	Watchman I		0	16	62	1	126	f	EMPLOYEE	A1	Watchman I	
1178	Clerk I		0	17	93	1	140	f	EMPLOYEE	A1	Clerk I	
1180	Laborer I		0	17	93	1	140	f	EMPLOYEE	A1	Laborer I	
1182	Watchman I		0	17	93	1	140	f	EMPLOYEE	A1	Watchman I	
735	Computer Operator I		0	11	0	7	91	f	EMPLOYEE	A1	CO I	
511	Provincial Government Assistant Department Head		0	11	0	24	91	f	EMPLOYEE	A1	PGADH	
585	Supervising Administrative Officer (Cashier IV)		0	13	0	22	113	f	SUPERVISOR	A1	Cashier IV	
250	Administrative Officer V (Cashier III)		0	13	0	18	113	f	EMPLOYEE	A1	Cashier III	
242	Administrative Officer V (Administrative Officer III)		0	12	4	18	101	f	EMPLOYEE	A1	AO III	
48	Administrative Aide III (Utility Worker II)		0	7	0	3	49	f	EMPLOYEE	A1	UW II	
129	Administrative Assistant I (Computer Operator I)		0	7	0	7	49	f	EMPLOYEE	A1	CO I	
709	Computer Operator III		0	7	0	12	49	f	EMPLOYEE	A1	CO III	
11	Administrative Aide I (Utility Worker I)		0	14	0	1	124	f	EMPLOYEE	A1	UW I	
70	Administrative Aide IV (Clerk II)		0	14	0	4	124	f	EMPLOYEE	A1	Clerk II	
80	Administrative Aide IV (Driver II)		0	13	0	4	113	f	EMPLOYEE	A1	Drvier II	
133	Administrative Assistant I (Computer Operator I)		0	13	0	7	113	f	EMPLOYEE	A1	CO I	
193	Administrative Assistant VI (Computer Operator III)		0	13	0	12	113	f	EMPLOYEE	A1	CO III	
243	Administrative Officer V (Administrative Officer III)		0	13	0	18	113	f	EMPLOYEE	A1	AO III	
588	Supervising Administrative Officer (Management and Audit Analyst IV)		0	13	0	22	113	f	SUPERVISOR	A1	MAA IV	
53	Administrative Aide III (Utility Worker II)		0	18	0	3	153	f	EMPLOYEE	A1	UW II	
371	Laundry Worker I		0	18	0	1	153	f	EMPLOYEE	A1	Laundry Worker I	
1184	Administrative Assistant III (Computer Operator II)		0	11	0	9	91	f	EMPLOYEE	A1	CO II	
612	Administrative Aide IV (Reproduction Machine Operator II)		0	11	7	4	91	f	EMPLOYEE	A1	RMO II	
232	Administrative Officer IV (Budget Officer II)		0	11	13	15	91	f	EMPLOYEE	A1	Budget Officer II	
58	Administrative Aide IV (Clerk II)		0	10	0	4	81	f	EMPLOYEE	A1	Clerk II	
556	Senior Administrative Assistant II (Computer Operator IV)		0	10	0	14	81	f	EMPLOYEE	A1	CO IV	
20	Administrative Aide II (Bookbinder I)		0	10	0	2	81	f	EMPLOYEE	A1	BB I	
112	Administrative Aide VI (Storekeeper II)		0	10	0	6	81	f	EMPLOYEE	A1	Storekeeper II	
131	Administrative Assistant I (Computer Operator I)		0	10	0	7	81	f	EMPLOYEE	A1	CO I	
12	Administrative Aide I (Utility Worker I)		0	17	0	1	140	f	EMPLOYEE	A1	UW I	
241	Administrative Officer V (Records Officer III)		0	8	34	18	56	f	EMPLOYEE	A1	Records Officer III	
581	Supervising Administrative Officer (Administrative Officer IV)		0	9	3	22	67	f	SUPERVISOR	A1	AO IV	
474	Project Development Officer II (Health)		0	9	27	15	67	f	EMPLOYEE	A1	PDO II	
473	Project Development Officer II (Fiscal)		0	9	27	15	67	f	EMPLOYEE	A1	PDO II	
484	Project Evaluation Officer IV		0	9	36	22	67	f	EMPLOYEE	A1	Proj. Evaluation Officer IV	
528	Revenue Collection Clerk II		0	13	0	7	113	f	EMPLOYEE	A1	RCC II	
188	Administrative Assistant VI		0	10	0	12	81	f	EMPLOYEE	A1	Admin. Asst. VI	
580	Supervising Administrative Officer		0	10	0	22	81	f	SUPERVISOR	A1	Supervising Admin. Officer	
666	Utility Worker II		0	3	0	3	24	f	EMPLOYEE	A1	UW II	
761	Watchman II		0	14	0	4	124	f	EMPLOYEE	A1	Watchman II	
413	Nurse I		0	17	0	15	140	f	EMPLOYEE	A1	Nurse I	
749	Computer Operator I		0	14	0	7	124	f	EMPLOYEE	A1	CO I	
750	Computer Operator II		0	14	0	9	124	f	EMPLOYEE	A1	CO II	
762	Clerk IV		0	16	0	8	126	f	EMPLOYEE	A1	Clerk IV	
520	Provincial Health Officer I		0	17	0	25	140	f	EMPLOYEE	A1	PHO I	
302	Dentist II		0	17	0	17	140	f	EMPLOYEE	A1	Dentist II	
770	Clerk II		0	18	0	4	153	f	EMPLOYEE	A1	Clerk II	
772	Clerk IV		0	18	0	8	153	f	EMPLOYEE	A1	Clerk IV	
783	Messenger I		0	18	0	2	153	f	EMPLOYEE	A1	Messenger I	
1179	Computer Operator II		0	17	93	1	140	f	EMPLOYEE	A1	CO II	
1062	Computer Operator I		0	16	58	1	126	f	EMPLOYEE	A1	CO I	
792	Clerk I		0	19	0	1	166	f	EMPLOYEE	A1	Clerk I	
793	Clerk II		0	19	0	1	166	f	EMPLOYEE	A1	Clerk II	
794	Clerk III		0	19	0	1	166	f	EMPLOYEE	A1	Clerk III	
795	Clerk IV		0	19	0	1	166	f	EMPLOYEE	A1	Clerk IV	
800	Driver I		0	19	0	1	166	f	EMPLOYEE	A1	Driver I	
801	Driver II		0	19	0	1	166	f	EMPLOYEE	A1	Driver II	
802	Driver III		0	19	0	1	166	f	EMPLOYEE	A1	Driver III	
831	Watchman I		0	19	0	1	166	f	EMPLOYEE	A1	Watchman I	
832	Watchman III		0	19	0	1	166	f	EMPLOYEE	A1	Watchman III	
834	Clerk I		0	20	0	1	175	f	EMPLOYEE	A1	Clerk I	
835	Clerk II		0	20	0	1	175	f	EMPLOYEE	A1	Clerk II	
836	Clerk IV		0	20	0	1	175	f	EMPLOYEE	A1	Clerk IV	
839	Driver III		0	20	0	1	175	f	EMPLOYEE	A1	Driver III	
840	Engineer I		0	20	0	1	175	f	EMPLOYEE	A1	Engineer I	
843	Laborer I		0	20	0	1	175	f	EMPLOYEE	A1	Laborer I	
817	Pharmacist I		0	19	0	11	166	f	EMPLOYEE	A1	Pharmacist I	
442	Pharmacist I		0	18	0	11	153	f	EMPLOYEE	A1	Pharmacist I	
414	Nurse I		0	18	0	11	153	f	EMPLOYEE	A1	Nurse I	
815	Nurse I		0	19	0	11	166	f	EMPLOYEE	A1	Nurse I	
416	Nurse I		0	20	0	11	175	f	EMPLOYEE	A1	Nurse I	
853	Clerk IV		0	21	0	1	177	f	EMPLOYEE	A1	Clerk IV	
856	Laborer I		0	21	0	1	177	f	EMPLOYEE	A1	Laborer I	
865	Watchman I		0	21	0	1	177	f	EMPLOYEE	A1	Watchman I	
866	Watchman II		0	21	0	1	177	f	EMPLOYEE	A1	Watchman II	
782	Local Treasury Operations Officer II		0	18	0	15	153	f	EMPLOYEE	A1	LTOO II	
845	Utility Worker I		0	20	0	1	175	f	EMPLOYEE	A1	UW I	
797	Community Affairs Officer I		0	19	0	1	166	f	EMPLOYEE	A1	CAO I	
428	Nurse V		0	21	0	20	177	f	EMPLOYEE	A1	Nurse V	
425	Nurse III		0	21	0	17	177	f	EMPLOYEE	A1	Nurse III	
410	Midwife I		0	21	0	9	177	f	EMPLOYEE	A1	Midwife I	
305	Dentist II		0	21	0	17	177	f	EMPLOYEE	A1	Dentist II	
298	Cook II		0	21	0	5	177	f	EMPLOYEE	A1	Cook II	
402	Medical Technologist I		0	20	0	11	175	f	EMPLOYEE	A1	Med. Tech. I	
573	Statistician Aide		0	14	0	4	124	f	EMPLOYEE	A1	Statistician Aide	
796	Community Affairs Assistant II		0	19	0	1	166	f	EMPLOYEE	A1	CAA II	
597	Tax Mapper III		0	14	0	18	124	f	EMPLOYEE	A1	Tax Mapper III	
81	Administrative Aide IV (Driver II)		0	18	0	4	153	f	EMPLOYEE	A1	Driver II	
775	Community Development Assistant I		0	18	0	7	153	f	EMPLOYEE	A1	Community Dev't. Asst. I	
400	Medical Technologist I		0	18	0	11	153	f	EMPLOYEE	A1	Med. Tech. I	
435	Nursing Attendant II		0	18	0	6	153	f	EMPLOYEE	A1	Nursing Attendant II	
438	Nutritionist Dietitian II		0	17	0	15	140	f	EMPLOYEE	A1	Nutritionist Dietitian II	
146	Administrative Assistant I (Secretary I)		0	17	0	7	140	f	EMPLOYEE	A1	Secretary I	
369	Laboratory Technician II		0	17	0	8	140	f	EMPLOYEE	A1	Lab. Tech. II	
59	Administrative Aide IV (Storekeeper I)		0	17	0	4	140	f	EMPLOYEE	A1	Storekeeper I	
869	Community Affairs Assistant II		0	22	0	1	184	f	EMPLOYEE	A1	CAA II	
568	Social Welfare Officer II		0	18	0	15	153	f	EMPLOYEE	A1	SWO II	
829	Utility Worker II		0	19	0	1	166	f	EMPLOYEE	A1	UW II	
846	Utility Worker II		0	20	0	1	175	f	EMPLOYEE	A1	UW II	
870	Community Affairs Officer I		0	22	0	1	184	f	EMPLOYEE	A1	CAO I	
811	Laundry Worker I		0	19	0	1	166	f	EMPLOYEE	A1	LW I	
885	Driver I		0	23	0	1	189	f	EMPLOYEE	A1	Driver I	
417	Nurse I		0	21	0	11	177	f	EMPLOYEE	A1	Nurse I	
422	Nurse II		0	21	0	15	177	f	EMPLOYEE	A1	Nurse II	
893	Clerk III		0	25	0	1	203	f	EMPLOYEE	A1	Clerk III	
197	Administrative Officer I		0	20	8	1	175	f	EMPLOYEE	A1	AO I	
261	Agriculturist II		0	25	35	15	203	f	EMPLOYEE	A1	Agriculturist II	
798	Computer Operator I		0	19	0	7	166	f	EMPLOYEE	A1	CO I	
854	Computer Operator I		0	21	0	7	177	f	EMPLOYEE	A1	CO I	
894	Computer Operator I		0	25	0	1	203	f	EMPLOYEE	A1	CO I	
823	Social Welfare Officer I		0	19	0	1	166	f	EMPLOYEE	A1	SWO I	
861	Social Welfare Officer I		0	21	0	1	177	f	EMPLOYEE	A1	SWO I	
828	Utility Worker I		0	19	0	1	166	f	EMPLOYEE	A1	UW I	
864	Utility Worker I		0	21	0	1	177	f	EMPLOYEE	A1	UW I	
282	Chief of Hospital II		0	21	0	25	177	f	EMPLOYEE	A1	CoH II	
196	Administrative Officer I		0	21	0	10	177	f	EMPLOYEE	A1	AO I	
453	Population Program Officer III		0	23	0	18	189	f	EMPLOYEE	A1	PPO III	
455	Population Program Worker I		0	23	0	5	189	f	EMPLOYEE	A1	PPW I	
803	Electrician II		0	19	0	6	166	f	EMPLOYEE	A1	Electrician II	
809	Laboratory Aide II		0	19	0	4	166	f	EMPLOYEE	A1	Lab. Aide II	
814	Medical Technologist I		0	19	0	11	166	f	EMPLOYEE	A1	Med. Tech. I	
816	Nursing Attendant I		0	19	0	4	166	f	EMPLOYEE	A1	Nursing Attendant I	
372	Laundry Worker I		0	19	6	1	166	f	EMPLOYEE	A1	Laundry Worker I	
83	Administrative Aide IV (Driver II)		0	21	0	4	177	f	EMPLOYEE	A1	Driver II	
101	Administrative Aide VI		0	21	0	6	177	f	EMPLOYEE	A1	Admin. Aide VI	
259	Agricultural Technologist		0	26	0	10	215	f	EMPLOYEE	A1	Agri. Tech.	
154	Administrative Assistant II (Administrative Assistant)		0	21	0	8	177	f	EMPLOYEE	A1	Admin. Asst.	
156	Administrative Assistant II (Bookkeeper)		0	21	0	8	177	f	EMPLOYEE	A1	Bookkeeper	
398	Medical Officer III		0	21	0	21	177	f	EMPLOYEE	A1	Medical Officer III	
399	Medical Officer IV		0	21	0	23	177	f	EMPLOYEE	A1	Medical Officer IV	
429	Nursing Attendant		0	21	0	4	177	f	EMPLOYEE	A1	Nursing Attendant	
857	Nursing Attendant I		0	21	0	4	177	f	EMPLOYEE	A1	Nursing Attendant I	
437	Nutritionist Dietician II		0	21	0	15	177	f	EMPLOYEE	A1	Nutritionist Dietician II	
17	Administrative Aide I (Utility Worker I)		0	25	0	1	203	f	EMPLOYEE	A1	UW I	
348	Farm Worker I {Reclassified from Administrative Aide II}		0	25	9	2	203	f	EMPLOYEE	A1	FW I {RC>AA II}	
431	Nursing Attendant I		0	18	0	4	153	f	EMPLOYEE	A1	Nursing Attendant I	
763	Community Affairs Assistant II		0	16	0	8	126	f	EMPLOYEE	A1	CAA II	
34	Administrative Aide III (Clerk I)		0	23	0	3	189	f	EMPLOYEE	A1	Clerk I	
73	Administrative Aide IV (Clerk II)		0	23	0	4	189	f	EMPLOYEE	A1	Clerk II	
134	Administrative Assistant I (Computer Operator I)		0	23	0	7	189	f	EMPLOYEE	A1	CO I	
33	Administrative Aide III (Clerk I)		0	22	0	3	184	f	EMPLOYEE	A1	Clerk I	
871	Community Development Assistant I		0	22	0	7	184	f	EMPLOYEE	A1	Community Dev't. Asst. I	
572	Statistician Aide		0	22	0	4	184	f	EMPLOYEE	A1	Statistician Aide	
57	Administrative Aide IV		0	24	5	1	193	f	EMPLOYEE	A1	Admin. Aide IV	
601	Tourist Receptionist I		0	24	41	8	193	f	EMPLOYEE	A1	Tourist Receptionist I	
892	Utility Worker I		0	24	0	1	193	f	EMPLOYEE	A1	UW I	
906	Clerk I		0	27	0	1	224	f	EMPLOYEE	A1	Clerk I	
907	Clerk II		0	27	0	1	224	f	EMPLOYEE	A1	Clerk II	
910	Driver II		0	27	0	1	224	f	EMPLOYEE	A1	Driver II	
917	Clerk I		0	28	0	1	240	f	EMPLOYEE	A1	Clerk I	
958	Clerk I		0	28	14	1	240	f	EMPLOYEE	A1	Clerk I	
965	Clerk I		0	28	16	1	240	f	EMPLOYEE	A1	Clerk I	
918	Clerk II		0	28	0	1	240	f	EMPLOYEE	A1	Clerk II	
959	Clerk II		0	28	14	1	240	f	EMPLOYEE	A1	Clerk II	
919	Clerk III		0	28	0	1	240	f	EMPLOYEE	A1	Clerk III	
984	Clerk III		0	28	23	1	240	f	EMPLOYEE	A1	Clerk III	
920	Clerk IV		0	28	0	1	240	f	EMPLOYEE	A1	Clerk IV	
985	Clerk IV		0	28	23	1	240	f	EMPLOYEE	A1	Clerk IV	
989	Clerk IV		0	28	26	1	240	f	EMPLOYEE	A1	Clerk IV	
981	Driver I		0	28	22	1	240	f	EMPLOYEE	A1	Driver I	
925	Driver III		0	28	0	1	240	f	EMPLOYEE	A1	Driver III	
994	Electrician I		0	28	97	1	240	f	EMPLOYEE	A1	Electrician I	
993	Driver II		0	28	97	1	240	f	EMPLOYEE	A1	Driver II	
992	Driver I		0	28	97	1	240	f	EMPLOYEE	A1	Driver I	
961	Laborer I		0	28	14	1	240	f	EMPLOYEE	A1	Laborer I	
922	Computer Operator I		0	28	0	1	240	f	EMPLOYEE	A1	CO I	
900	Utility Worker I		0	25	0	1	203	f	EMPLOYEE	A1	UW I	
502	Provincial Government Department Head		0	25	0	26	203	f	EMPLOYEE	A1	PGDH	
331	Engineer IV		0	28	26	22	240	f	EMPLOYEE	A1	Engineer IV	
886	Computer Operator I		0	24	0	7	193	f	EMPLOYEE	A1	CO I	
909	Computer Operator III		0	27	0	1	224	f	EMPLOYEE	A1	CO III	
967	Computer Operator II		0	28	16	1	240	f	EMPLOYEE	A1	CO II	
908	Computer Operator II		0	27	0	1	224	f	EMPLOYEE	A1	CO II	
960	Computer Operator I		0	28	14	1	240	f	EMPLOYEE	A1	CO I	
966	Computer Operator I		0	28	16	1	240	f	EMPLOYEE	A1	CO I	
990	Computer Operator I		0	28	97	1	240	f	EMPLOYEE	A1	CO I	
943	Watchman I		0	28	0	1	240	f	EMPLOYEE	A1	Watchman I	
904	Utility Worker II		0	26	0	3	215	f	EMPLOYEE	A1	UW II	
945	Watchman III		0	28	0	1	240	f	EMPLOYEE	A1	Watchman III	
946	Clerk II		0	29	0	1	249	f	EMPLOYEE	A1	Clerk II	
952	Clerk I		0	30	0	1	249	f	EMPLOYEE	A1	Clerk I	
311	Draftsman I		0	28	16	6	240	f	EMPLOYEE	A1	Draftsman I	
393	Mechanic III		0	28	23	9	240	f	EMPLOYEE	A1	Mechanic III	
610	Welder II		0	28	23	6	240	f	EMPLOYEE	A1	Welder II	
954	Driver I		0	30	0	1	249	f	EMPLOYEE	A1	Driver I	
403	Medical Technologist I		0	21	0	11	177	f	EMPLOYEE	A1	Med. Tech. I	
860	Social Welfare Assistant		0	21	0	1	177	f	EMPLOYEE	A1	SWA	
898	Nursing Attendant I		0	25	0	1	203	f	EMPLOYEE	A1	Nursing Attendant I	
449	Planning Officer I		0	25	9	11	203	f	EMPLOYEE	A1	Planning Officer I	
559	Senior Agriculturist		0	25	17	18	203	f	EMPLOYEE	A1	Sr. Agriculturist	
590	Supervising Agriculturist		0	25	24	26	203	f	SUPERVISOR	A1	Supv. Agriculturist	
349	Farm Worker II {Reclassified from Fumigator}		0	25	28	4	203	f	EMPLOYEE	A1	Farm Worker II {RC>F}	
813	Medical Officer I		0	19	0	16	166	f	EMPLOYEE	A1	Medical Officer I	
858	Nutritionist Dietitian I		0	21	0	10	177	f	EMPLOYEE	A1	Nutritionist Dietitian I	
827	Utility Foreman		0	19	0	6	166	f	EMPLOYEE	A1	Utility Foreman	
591	Supervising Agriculturist		0	25	35	22	203	f	SUPERVISOR	A1	Supv. Agriculturist	
921	Community Affairs Assistant II		0	28	0	1	240	f	EMPLOYEE	A1	CAA II	
270	Artist Illustrator III		0	28	22	11	240	f	EMPLOYEE	A1	Artist Illustrator III	
987	Engineering Assistant		0	28	23	1	240	f	EMPLOYEE	A1	Engineering Asst.	
110	Administrative Aide VI (Electrician II)		0	28	14	6	240	f	EMPLOYEE	A1	Electrician II	
155	Administrative Assistant II (Air-Conditioning Technician II)		0	28	14	8	240	f	EMPLOYEE	A1	Air-Conditioning Tech. II	
604	Veterinarian III		0	26	0	19	215	f	EMPLOYEE	A1	Veterinarian III	
137	Administrative Assistant I (Computer Operator I)		0	27	0	7	224	f	EMPLOYEE	A1	CO I	
957	Watchman I		0	30	0	1	249	f	EMPLOYEE	A1	Watchman I	
1197	Clerk I		0	6	0	1	250	f	EMPLOYEE	A1	Clerk I	
1216	Clerk II		0	12	0	1	250	f	EMPLOYEE	A1	Clerk II	
955	Pharmacist I		0	30	0	11	249	f	EMPLOYEE	A1	Pharmacist I	
988	Nurse I		0	28	23	11	240	f	EMPLOYEE	A1	Nurse I	
1227	Janitor		0	1	0	1	250	f	EMPLOYEE	A1	Janitor	
947	Computer Operator III		0	29	0	1	249	f	EMPLOYEE	A1	CO III	
478	Project Development Officer III		0	29	0	18	249	f	EMPLOYEE	A1	PDO III	
983	Utility Worker I		0	28	22	1	240	f	EMPLOYEE	A1	UW I	
1204	Utility Worker I		0	10	0	1	166	f	EMPLOYEE	A1	UW I	
1205	Utility Worker II		0	10	0	1	166	f	EMPLOYEE	A1	UW II	
964	Planning Development Officer I		0	28	14	1	240	f	EMPLOYEE	A1	PDO I	
996	Planning Development Officer I		0	28	97	1	240	f	EMPLOYEE	A1	PDO I	
926	Heavy Equipment Operator I		0	28	0	4	240	f	EMPLOYEE	A1	HEO I	
1202	Draftsman I		0	1	0	6	120	f	EMPLOYEE	A1	Draftsman I	
1254	Nurse IV		0	21	0	1	250	f	EMPLOYEE	A1	Nurse IV	
1264	Clerk II		0	25	0	1	250	f	EMPLOYEE	A1	Clerk II	
1266	Midwife I		0	20	0	1	250	f	EMPLOYEE	A1	Midwife I	
1282	Clerk IV		0	6	0	1	250	f	EMPLOYEE	A1	Clerk IV	
1290	Clerk I		0	13	0	1	250	f	EMPLOYEE	A1	Clerk I	
1297	Clerk I		0	12	0	1	250	f	EMPLOYEE	A1	Clerk I	
1304	Checker		0	13	0	1	250	f	EMPLOYEE	A1	Checker	
1307	Draftsman I		0	23	0	1	250	f	EMPLOYEE	A1	Draftsman I	
1312	Janitor		0	13	0	1	250	f	EMPLOYEE	A1	Janitor	
1246	Clerk I		0	2	0	3	250	f	EMPLOYEE	A1	Clerk I	
1217	Human Resource Management Officer I		0	7	0	11	250	f	EMPLOYEE	A1	HRMO I	
1210	Budgeting Aide I		0	11	0	4	250	f	EMPLOYEE	A1	Budgeting Aide I	
1231	Driver II		0	11	0	4	250	f	EMPLOYEE	A1	Driver II	
1230	Driver I		0	11	0	3	250	f	EMPLOYEE	A1	Driver I	
1189	Clerk I		0	14	0	3	249	f	EMPLOYEE	A1	Clerk I	
1190	Clerk II		0	14	0	4	249	f	EMPLOYEE	A1	Clerk II	
1198	Engineer I		0	14	0	12	250	f	EMPLOYEE	A1	Engineer I	
579	Supervising Admininstrative Officer (Administrative Officer IV)		0	28	2	22	240	f	SUPERVISOR	A1	SAO (AO IV)	
1592	Clerk I		0	113	120	1	437	\N	EMPLOYEE	A1	Clerk I	
1208	Civil Engineer		0	28	0	1	250	f	EMPLOYEE	A1	Civil Engineer	
940	Utility Foreman		0	28	0	1	240	f	EMPLOYEE	A1	Utility Foreman	
941	Utility Worker I		0	28	0	1	240	f	EMPLOYEE	A1	Utility Worker I	
942	Utility Worker II		0	28	0	1	240	f	EMPLOYEE	A1	Utility Worker II	
338	Engineering Assistant		0	28	16	8	240	f	EMPLOYEE	A1	Engineering Asst.	
995	Engineering Aide		0	28	97	1	240	f	EMPLOYEE	A1	Engineering Aide	
1003	Security Officer I		0	28	37	1	240	f	EMPLOYEE	A1	Security Officer I	
1236	Bookbinder IV		0	11	0	10	250	f	EMPLOYEE	A1	BB IV	
1219	Computer Operator II		0	11	0	9	250	f	EMPLOYEE	A1	CO II	
1232	Utility Worker II		0	11	0	3	250	f	EMPLOYEE	A1	UW II	
36	Administrative Aide III (Clerk I)		0	29	0	3	249	f	EMPLOYEE	A1	Clerk I	
161	Administrative Assistant II (Clerk IV)		0	29	0	8	249	f	EMPLOYEE	A1	Clerk IV	
1192	Project Development Assistant		0	9	0	1	250	f	EMPLOYEE	A1	Proj. Dev't. Asst.	
1278	Administrative Aide VI (Utility Foreman)		0	6	0	1	250	f	EMPLOYEE	A1	AA VI (UF)	
1292	Agriculturist I		0	25	0	11	250	f	EMPLOYEE	A1	Agriculturist I	
923	Confidential Assistant I		0	28	0	8	240	f	EMPLOYEE	A1	Confidential Asst. I	
1213	Human Resource Management Aide		0	1	0	4	250	f	EMPLOYEE	A1	HRM Aide	
1218	Human Resource Management Officer III		0	8	0	8	250	f	EMPLOYEE	A1	HRMO III	
1543	Mason II		0	28	14	5	388	\N	EMPLOYEE	A1	Mason II	
1201	Plumber		0	28	0	3	252	f	EMPLOYEE	A1	Plumber	
1274	Records Officer I		0	19	0	10	250	f	EMPLOYEE	A1	Records Officer I	
1207	Assistant Civil Engineer		0	28	0	0	252	f	EMPLOYEE		Asst. Civil Engineer	
1303	Checker		0	1	0	0	250	f	EMPLOYEE		Checker	
1191	Civil Engineer		0	9	0	0	250	f	EMPLOYEE		Civil Engineer	
1206	Civil Engineering Aide		0	28	0	0	252	f	EMPLOYEE		Civil Engineering Aide	
1196	Clerical Aide		0	14	0	0	250	f	EMPLOYEE		Clerical Aide	
1195	Clerk Typist		0	14	0	0	250	f	EMPLOYEE		Clerk Typist	
1209	Development Project Assistant		0	28	0	0	250	f	EMPLOYEE		Dev't. Proj. Asst.	
1193	Project Development Analyst		0	9	0	0	250	f	EMPLOYEE		Proj. Dev. Analyst	
1281	Senior Clerk		0	6	0	1	250	f	EMPLOYEE		Sr. Clerk	
1239	Computer Operator III		0	1	0	1	250	f	EMPLOYEE	A1	CO III	
1250	Utility Worker I		0	6	0	1	250	f	EMPLOYEE	A1	UW I	
956	Utility Worker I		0	30	0	1	249	f	EMPLOYEE	A1	UW I	
1228	Utility Worker I		0	7	0	1	250	f	EMPLOYEE	A1	UW I	
1306	Utility Worker I		0	23	0	1	250	f	EMPLOYEE	A1	UW I	
1285	Utility Worker II		0	25	0	1	250	f	EMPLOYEE	A1	UW II	
1317	Utility Worker II		0	9	0	1	250	f	EMPLOYEE	A1	UW II	
1283	Utility Worker		0	25	0	1	250	f	EMPLOYEE	A1	UW	
1324	Clerk II		0	9	0	1	250	f	EMPLOYEE	A1	Clerk II	
1340	Clerk I		0	23	0	1	250	f	EMPLOYEE	A1	Clerk I	
1343	Clerk I		0	25	0	1	250	f	EMPLOYEE	A1	Clerk I	
1344	Clerk I		0	24	0	1	250	f	EMPLOYEE	A1	Clerk I	
1353	Clerk II		0	10	0	1	250	f	EMPLOYEE	A1	Clerk II	
1309	Accountant I		0	13	0	11	250	f	EMPLOYEE	A1	Accountant I	
1359	Clerk I		0	22	0	1	250	f	EMPLOYEE	A1	Clerk I	
1360	Driver I		0	10	0	1	250	f	EMPLOYEE	A1	Driver I	
1377	Clerk I		0	10	0	1	250	f	EMPLOYEE	A1	Clerk I	
1383	Clerk III		0	12	0	1	81	f	EMPLOYEE	A1	Clerk III	
1373	Administrative Assistant I (Reproduction Machine Operator III)		0	6	0	1	250	f	EMPLOYEE	A1	RMO III	
1243	Reproduction Machine Operator II		0	2	0	4	250	f	EMPLOYEE	A1	RMO II	
1247	Computer Operator I		0	2	0	7	250	f	EMPLOYEE	A1	CO I	
1352	Clerk I		0	11	0	3	250	f	EMPLOYEE	A1	Clerk I	
1320	Clerk II		0	13	0	4	250	f	EMPLOYEE	A1	Clerk II	
1328	Driver I		0	17	0	3	250	f	EMPLOYEE	A1	Driver I	
1354	Clerk I		0	18	0	3	250	f	EMPLOYEE	A1	Clerk I	
1369	Senior Clerk		0	18	0	1	250	f	EMPLOYEE	A1	Sr. Clerk	
1350	Utility Worker I		0	18	0	1	250	f	EMPLOYEE	A1	UW I	
1593	Driver I		0	113	121	1	438	\N	EMPLOYEE	A1	Driver I	
1225	Utility Worker II		0	7	0	3	250	f	EMPLOYEE	A1	UW II	
1199	Administrative Aide IV (Clerk III)		0	14	0	4	166	f	EMPLOYEE	A1	Clerk III	
1265	Administrative Assistant I (Computer Operator I)		0	1	0	7	250	f	EMPLOYEE	A1	CO I	
1233	Clerical Aide		0	1	0	1	250	f	EMPLOYEE	A1	Clerical Aide	
1288	Clerk Typist		0	1	0	1	250	f	EMPLOYEE	A1	Clerk Typist	
1262	Confidential Assistant I		0	1	0	1	250	f	EMPLOYEE	A1	Confidential Asst. I	
1296	Nursery Farm Aide		0	1	0	1	250	f	EMPLOYEE	A1	Nursery Farm Aide	
1310	Managemenent and Audit Analyst III		0	13	0	18	250	f	EMPLOYEE	A1	MAA III	
1311	Managemenent and Audit Analyst IV		0	13	0	22	250	f	EMPLOYEE	A1	MAA IV	
1235	Bookbinder III		0	11	0	7	250	f	EMPLOYEE	A1	BB III	
1234	Budget Officer I		0	11	0	11	250	f	EMPLOYEE	A1	Budget Officer I	
1251	Utility Foreman		0	10	0	1	250	f	EMPLOYEE	A1	Utility Foreman	
1271	Medical Technologist I		0	17	0	11	250	f	EMPLOYEE	A1	Med. Tech. I	
1215	Administrative Officer II (Administrative Officer I)		0	8	0	11	250	f	EMPLOYEE	A1	AO I	
1255	Administrative Aide III (Clerk I)		0	2	0	3	250	f	EMPLOYEE	A1	Clerk I	
1253	Bookbinder II		0	2	0	4	250	f	EMPLOYEE	A1	BB II	
1249	Clerical Aide		0	6	0	1	250	f	EMPLOYEE	A1	Clerical Aide	
1252	Utility Foreman		0	6	0	1	250	f	EMPLOYEE	A1	Utility Foreman	
1339	Population Program Worker II		0	1	0	1	250	f	EMPLOYEE	A1	PPW II	
1384	Clerk IV		0	12	0	1	81	f	EMPLOYEE	A1	Clerk IV	
1287	Accounting Clerk I		0	25	0	4	250	f	EMPLOYEE	A1	Acctg. Clerk I	
1325	Clerk		0	17	0	3	250	f	EMPLOYEE	A1	Clerk	
1367	Electrician		0	1	0	4	250	f	EMPLOYEE	A1	Electrician	
1330	Laboratory Aide I		0	17	0	2	250	f	EMPLOYEE	A1	Lab. Aide I	
1308	Revenue Collection Clerk		0	13	0	5	250	f	EMPLOYEE	A1	RCC	
1355	Revenue Collection Clerk I		0	13	0	5	250	f	EMPLOYEE	A1	RCC I	
1376	Storekeeper		0	19	0	4	250	f	EMPLOYEE	A1	Storekeeper	
1277	Sangguniang Panlalawigan Member (ABC)		0	6	0	27	250	f	EMPLOYEE	A1	SP Member	
1286	Assistant Board Secretary		0	6	0	0	250	f	EMPLOYEE		Asst. Board Secretary	
1280	Confidential Agent II		0	6	0	0	250	f	EMPLOYEE		Confidential Agent II	
1273	Confidential Assistant II		0	1	0	0	250	f	EMPLOYEE		Confidential Asst. II	
1379	Construction Helper		0	28	0	0	250	f	EMPLOYEE		Const. Helper	
1318	Cooperative Development Specialist III		0	29	0	0	250	f	EMPLOYEE		Coop. Dev't. Specialist III	
1315	Disbursing Officer		0	13	0	0	250	f	EMPLOYEE		Disbursing Officer	
1259	Electronics and Communications Technician I		0	1	0	0	250	f	EMPLOYEE		Elec. & Comm. Tech. I	
1294	Extension Services Technologist		0	1	0	0	250	f	EMPLOYEE		EST	
1332	Mal. Microscopist		0	17	0	0	250	f	EMPLOYEE		Mal. Microscopist	
1331	Microscopist		0	17	0	0	250	f	EMPLOYEE		Microscopist	
1284	Nursery Farm Aide		0	25	0	0	250	f	EMPLOYEE		Nursery Farm Aide	
1356	Pharmacy Aide		0	18	0	0	250	f	EMPLOYEE		Pharmacy Aide	
1276	Resident Physician		0	19	0	0	250	f	EMPLOYEE		Resident Physician	
1329	RSI		0	17	0	0	250	f	EMPLOYEE		RSI	
1275	Rural Health Physician		0	19	0	0	250	f	EMPLOYEE		Rural Health Physician	
1348	Senior Revenue Collection Officer I		0	13	0	0	250	f	EMPLOYEE		Sr. Revenue Collection Officer I	
1305	Ticket Checker		0	13	0	0	250	f	EMPLOYEE		Ticket Checker	
1322	Typist		0	9	0	0	250	f	EMPLOYEE		Typist	
1473	Nurse I		0	1	98	11	318	f	EMPLOYEE	A1	Nurse I	
1381	Resident Physician		0	20	0	1	250	f	EMPLOYEE	A1	RP	
1323	Clerk I		0	9	0	1	250	f	EMPLOYEE	A1	Clerk I	
1357	Medical Officer III		0	17	0	21	250	f	EMPLOYEE	A1	MO III	
1335	Laboratory Aide II		0	17	0	4	250	f	EMPLOYEE	A1	Lab Aide II	
849	Accountant I		0	21	0	11	177	f	EMPLOYEE	A1	Accountant I	
1316	Accountant I		0	12	0	11	250	f	EMPLOYEE	A1	Accountant I	
1608	Clerk I		0	113	131	1	453	\N	EMPLOYEE	A1	Clerk I	
1405	Clerk III		0	29	0	6	253	\N	EMPLOYEE	A1	Clerk III	
1410	Cook I		0	19	0	1	258	\N	EMPLOYEE	A1	Cook I	
1411	Electrician I		0	19	0	1	259	\N	EMPLOYEE	A1	Electrician I	
1412	Driver I		0	20	0	1	260	\N	EMPLOYEE	A1	Driver I	
1420	Clerk III		0	8	0	1	267	\N	EMPLOYEE	A1	Clerk III	
1421	Clerk IV		0	8	0	1	268	\N	EMPLOYEE	A1	Clerk IV	
1434	Clerk III		0	1	0	1	280	\N	EMPLOYEE	A1	Clerk III	
1435	Driver III		0	1	0	1	281	\N	EMPLOYEE	A1	Driver III	
1444	Messenger I		0	7	0	1	290	\N	EMPLOYEE	A1	Messenger I	
1415	Pharmacist I		0	20	0	11	263	\N	EMPLOYEE	A1	Pharmacist I	
1451	Clerk IV		0	1	29	1	297	\N	EMPLOYEE	A1	Clerk IV	
1453	Clerk I		0	1	20	1	298	\N	EMPLOYEE	A1	Clerk I	
1341	Population Program Worker II		0	7	0	7	250	f	EMPLOYEE	A1	PPW II	
1447	Driver III		0	7	0	8	293	\N	EMPLOYEE	A1	Driver III	
1443	Driver I		0	7	0	3	289	\N	EMPLOYEE	A1	Driver I	
1418	Clerk II		0	11	0	4	265	\N	EMPLOYEE	A1	Clerk II	
1428	Clerk IV		0	13	0	8	274	\N	EMPLOYEE	A1	Clerk IV	
1416	Clerk III		0	14	0	6	264	\N	EMPLOYEE	A1	Clerk III	
1425	Driver I		0	16	0	3	271	\N	EMPLOYEE	A1	Driver I	
1426	Clerk I		0	16	0	3	272	\N	EMPLOYEE	A1	Clerk I	
1424	Clerk III		0	16	0	6	270	\N	EMPLOYEE	A1	Clerk III	
1326	Construction and Maintenance Man		0	17	0	2	250	f	EMPLOYEE	A1	CaMM	
1327	Utility Worker II		0	17	0	3	250	f	EMPLOYEE	A1	UW II	
1407	Driver I		0	18	0	3	255	\N	EMPLOYEE	A1	Driver I	
1409	Driver II		0	18	0	4	257	\N	EMPLOYEE	A1	Driver II	
1437	Executive Assistant III 		0	1	0	20	283	\N	EMPLOYEE	A1	EA III	
1594	Watchman I		0	113	121	1	439	\N	EMPLOYEE	A1	Watchman I	
1289	Clerk Typist		0	7	0	3	250	f	EMPLOYEE	A1	Clerk Typist	
1382	Population Program Officer II		0	7	0	15	250	f	EMPLOYEE	A1	PPO II	
1321	Accounting Clerk		0	1	0	1	250	f	EMPLOYEE	A1	Acctg. Clerk	
1358	Medical Officer III		0	1	0	21	250	f	EMPLOYEE	A1	Medical Officer III	
1454	Community Affairs Assistant II		0	1	20	1	299	\N	EMPLOYEE	A1	CAA II	
1402	Bookbinder II		0	13	0	4	113	f	EMPLOYEE	A1	BB II	
1403	Bookbinder III		0	13	0	7	113	f	EMPLOYEE	A1	BB III	
1371	Accounting Clerk		0	18	0	1	250	f	EMPLOYEE	A1	Acctg. Clerk	
1364	Medical Officer IV		0	18	0	23	250	f	EMPLOYEE	A1	Medical Officer IV	
1361	Administrative Aide IV (Driver II)		0	10	0	4	250	f	EMPLOYEE	A1	Driver II	
1214	Administrative Officer II (Human Resource Management Officer I)		0	8	0	11	250	f	EMPLOYEE	A1	HRMO I	
586	Supervising Administrative Officer (Human Resource Management Officer IV)		0	8	10	22	49	f	HR OFFICER	A1	HRMO IV	
1342	Bookbinder II		0	23	0	4	250	f	EMPLOYEE	A1	BB II	
517	Provincial Government Assistant Department Head		0	28	0	24	225	f	EMPLOYEE	A1	PGADH	
1419	Computer Operator II		0	8	0	1	266	\N	EMPLOYEE	A1	CO II	
1449	Computer Operator II		0	1	29	1	295	\N	EMPLOYEE	A1	CO II	
1450	Computer Operator III		0	1	29	1	296	\N	EMPLOYEE	A1	CO III	
1455	Computer Operator III		0	1	20	1	300	\N	EMPLOYEE	A1	CO III	
1440	Reproduction Machine Operator II		0	1	0	1	286	\N	EMPLOYEE	A1	RMO II	
1270	Administrative Officer V (Public Relations Officer III)		0	1	0	18	250	f	EMPLOYEE	A1	PRO III	
1263	Communications Equipment Operator I		0	1	0	4	250	f	EMPLOYEE	A1	Comm. Eqpt. Oper. I	
1346	Community Development Officer II		0	27	0	15	250	f	EMPLOYEE	A1	Community Dev't. Officer II	
1388	Electronics and Communications Equipment Technician II		0	1	0	8	11	f	EMPLOYEE	A1	Elec. & Comm. Eqpt. Tech. II	
1370	Sanitation Inspector I		0	17	0	6	250	f	EMPLOYEE	A1	Sanitation Insp. I	
1363	Billing Clerk		0	18	0	0	250	f	EMPLOYEE		Billing Clerk	
1240	Confidential Assistant III		0	1	0	0	250	f	EMPLOYEE		Confidential Asst. III	
1334	Employment Assistant Worker		0	1	0	0	250	f	EMPLOYEE		Empl. Asst. Worker	
1333	Field Assistant Worker		0	17	0	0	250	f	EMPLOYEE		Field Asst. Worker	
1366	Financial Analyst		0	9	0	0	250	f	EMPLOYEE		Financial Analyst	
1349	Food Server		0	18	0	0	250	f	EMPLOYEE		Food Server	
1337	Full Time Outreach Worker		0	23	0	0	250	f	EMPLOYEE		Full Time Outreach Worker	
1380	Highway Maintenance Man		0	28	0	0	250	f	EMPLOYEE		Highway Maint. Man	
1338	Population Outreach Worker		0	1	0	0	250	f	EMPLOYEE		Population Outreach Worker	
1347	Provincial Checker		0	13	0	0	250	f	EMPLOYEE		Provincial Checker	
1336	Public Health Midwife		0	17	0	0	250	f	EMPLOYEE		Public Health Midwife	
1395	Revenue Collection Officer I		0	13	0	11	113	f	EMPLOYEE	A1	RCO I	
1345	Sand and Gravel Checker		0	13	0	0	250	f	EMPLOYEE		Sand & Gravel Checker	
1439	Community Affairs Officer I		0	1	0	1	285	\N	EMPLOYEE	A1	CAO I	
1438	Community Affairs Officer II		0	1	0	1	284	\N	EMPLOYEE	A1	CAO II	
1456	Computer Operator I		0	1	20	1	301	\N	EMPLOYEE	A1	CO I	
1458	Driver II		0	1	44	1	303	\N	EMPLOYEE	A1	Driver II	
1459	Clerk IV		0	22	0	1	304	\N	EMPLOYEE	A1	Clerk IV	
1461	Driver III		0	22	0	1	306	\N	EMPLOYEE	A1	Driver III	
1465	Laborer I		0	28	0	1	310	\N	EMPLOYEE	A1	Laborer I	
1468	Clerk I		0	21	0	1	313	\N	EMPLOYEE	A1	Clerk I	
1470	Driver I		0	21	0	1	315	\N	EMPLOYEE	A1	Driver I	
1475	Clerk IV		0	1	98	1	320	\N	EMPLOYEE	A1	Clerk IV	
1476	Driver I		0	1	98	1	321	\N	EMPLOYEE	A1	Driver I	
1477	Clerk I		0	1	98	1	322	\N	EMPLOYEE	A1	Clerk I	
1480	Clerk IV		0	1	50	1	325	\N	EMPLOYEE	A1	Clerk IV	
1481	Clerk IV		0	1	51	1	326	\N	EMPLOYEE	A1	Clerk IV	
1484	Clerk II		0	1	54	1	329	\N	EMPLOYEE	A1	Clerk II	
1486	Clerk II		0	23	0	1	331	\N	EMPLOYEE	A1	Clerk II	
1487	Clerk I		0	16	55	1	332	\N	EMPLOYEE	A1	Clerk I	
1488	Messenger I		0	16	56	1	333	\N	EMPLOYEE	A1	Messenger I	
1385	Computer Operator I		0	13	0	7	113	f	EMPLOYEE	A1	CO I	
1489	Driver I		0	16	59	1	334	\N	EMPLOYEE	A1	Driver I	
1490	Clerk I		0	16	60	1	335	\N	EMPLOYEE	A1	Clerk I	
1491	Clerk I		0	16	61	1	336	\N	EMPLOYEE	A1	Clerk I	
1492	Driver III		0	16	62	1	337	\N	EMPLOYEE	A1	Driver III	
1493	Clerk II		0	16	63	1	338	\N	EMPLOYEE	A1	Clerk II	
1495	Clerk IV		0	16	64	1	340	\N	EMPLOYEE	A1	Clerk IV	
1496	Clerk III		0	16	64	1	341	\N	EMPLOYEE	A1	Clerk III	
1497	Clerk I		0	16	65	1	342	\N	EMPLOYEE	A1	Clerk I	
1498	Clerk I		0	16	66	1	343	\N	EMPLOYEE	A1	Clerk I	
1499	Clerk III		0	16	67	1	344	\N	EMPLOYEE	A1	Clerk III	
1500	Clerk I		0	16	68	1	345	\N	EMPLOYEE	A1	Clerk I	
1501	Clerk I		0	16	70	1	346	\N	EMPLOYEE	A1	Clerk I	
1502	Clerk I		0	16	71	1	347	\N	EMPLOYEE	A1	Clerk I	
1503	Clerk I		0	16	72	1	348	\N	EMPLOYEE	A1	Clerk I	
1507	Watchman I		0	1	74	1	352	\N	EMPLOYEE	A1	Watchman I	
1508	Engineering Aide		0	1	75	1	353	\N	EMPLOYEE	A1	Engineering Aide	
1511	Driver III		0	1	75	1	356	\N	EMPLOYEE	A1	Driver III	
1513	Clerk III		0	1	77	1	358	\N	EMPLOYEE	A1	Clerk III	
1514	Clerk IV		0	1	77	1	359	\N	EMPLOYEE	A1	Clerk IV	
1515	Clerk I		0	1	78	1	360	\N	EMPLOYEE	A1	Clerk I	
1517	Clerk I		0	1	80	1	362	\N	EMPLOYEE	A1	Clerk I	
1520	Clerk IV		0	1	81	1	365	\N	EMPLOYEE	A1	Clerk IV	
1522	Clerk I		0	1	82	1	367	\N	EMPLOYEE	A1	Clerk I	
1527	Clerk II		0	1	85	1	372	\N	EMPLOYEE	A1	Clerk II	
1442	Project Development Officer II		0	7	0	15	288	\N	EMPLOYEE	A1	PDO II	
1397	Administrative Officer II		0	13	0	15	113	f	EMPLOYEE	A1	AO II	
1398	Administrative Officer III		0	13	0	18	113	f	EMPLOYEE	A1	AO III	
1423	Computer Operator III		0	16	0	12	269	\N	EMPLOYEE	A1	CO III	
1431	Project Development Officer I		0	28	0	11	277	\N	EMPLOYEE	A1	PDO I	
526	Radiologic Technologist II		0	19	21	15	159	f	EMPLOYEE	A1	Rad. Tech. II	
1386	Administrative Aide IV (Communications Equipment Operator I)		0	1	0	4	11	f	EMPLOYEE	A1	Comm. Eqpt. Oper. I	
1441	Utility Foreman		0	1	0	1	287	\N	EMPLOYEE	A1	Utility Foreman	
1505	Security Agent I		0	1	73	1	350	\N	EMPLOYEE	A1	Security Agent I	
1518	Security Agent I		0	1	80	1	363	\N	EMPLOYEE	A1	Security Agent I	
1510	Community Affairs Assistant II		0	1	75	1	355	\N	EMPLOYEE	A1	CAA II	
1509	Confidential Assistant I		0	1	75	1	354	\N	EMPLOYEE	A1	Confidential Asst. I	
1506	Community Affairs Assistant II		0	1	74	1	351	\N	EMPLOYEE	A1	CAA II	
1525	Nursing Attendant I		0	1	84	1	370	\N	EMPLOYEE	A1	Nursing Attendant I	
1483	Clerk I		0	1	53	3	328	\N	EMPLOYEE	A1	Clerk I	
162	Administrative Assistant II (Electronics and Communications Equipment Technician II)		0	1	32	8	11	f	EMPLOYEE	A1	Elec. & Comm. Eqpt. Tech. II	
1429	Utility Foreman		0	13	0	6	275	\N	EMPLOYEE	A1	Utility Foreman	
1406	Radiologic Technologist I		0	18	0	11	254	\N	EMPLOYEE	A1	Rad. Tech. I	
1427	Administrative Assistant I		0	16	0	8	273	\N	EMPLOYEE	A1	Admin. Asst. I	
1478	Utility Worker I		0	1	49	1	323	\N	EMPLOYEE	A1	UW I	
1524	Utility Worker I		0	1	84	1	369	\N	EMPLOYEE	A1	UW I	
1526	Utility Worker I		0	1	85	1	371	\N	EMPLOYEE	A1	UW I	
1528	Utility Worker I		0	1	86	1	373	\N	EMPLOYEE	A1	UW I	
1462	Utility Worker II		0	22	0	1	307	\N	EMPLOYEE	A1	UW II	
1479	Utility Worker II		0	1	49	1	324	\N	EMPLOYEE	A1	UW II	
1521	Utility Worker II		0	1	81	1	366	\N	EMPLOYEE	A1	UW II	
1538	Electrician I		0	28	0	1	383	\N	EMPLOYEE	A1	Electrician I	
1539	Architect I		0	28	0	1	384	\N	EMPLOYEE	A1	Architect I	
1540	Engineer I		0	28	0	1	385	\N	EMPLOYEE	A1	Engineer I	
326	Engineer III		0	28	97	19	227	f	EMPLOYEE	A1	Engineer III	
1535	Welder I		0	28	23	4	380	\N	EMPLOYEE	A1	Welder I	
1545	Electrician II		0	28	14	1	390	\N	EMPLOYEE	A1	Electrician II	
1564	Clerk III		0	113	102	1	409	\N	EMPLOYEE	A1	Clerk III	
1548	Clerk III		0	113	99	1	393	\N	EMPLOYEE	A1	Clerk III	
1549	Dentist IV		0	113	99	13	394	\N	EMPLOYEE	A1	Dentist IV	
1553	Driver I		0	113	99	1	398	\N	EMPLOYEE	A1	Driver I	
1555	Clerk I		0	113	99	1	400	\N	EMPLOYEE	A1	Clerk I	
1556	Dentist I		0	113	99	5	401	\N	EMPLOYEE	A1	Dentist I	
1557	Clerk III		0	113	100	1	402	\N	EMPLOYEE	A1	Clerk III	
1558	Clerk I		0	113	100	1	403	\N	EMPLOYEE	A1	Clerk I	
1559	Driver I		0	113	100	1	404	\N	EMPLOYEE	A1	Driver I	
1560	Watchman II		0	113	101	1	405	\N	EMPLOYEE	A1	Watchman II	
1562	Clerk I		0	113	101	1	407	\N	EMPLOYEE	A1	Clerk I	
1566	Clerk III		0	113	103	1	411	\N	EMPLOYEE	A1	Clerk III	
1567	Watchman I		0	113	103	1	412	\N	EMPLOYEE	A1	Watchman I	
1569	Watchman II		0	113	104	1	414	\N	EMPLOYEE	A1	Watchman II	
1570	Clerk III		0	113	106	1	415	\N	EMPLOYEE	A1	Clerk III	
1571	Clerk III		0	113	105	1	416	\N	EMPLOYEE	A1	Clerk III	
1414	Computer Operator I		0	20	0	7	262	\N	EMPLOYEE	A1	CO I	
1531	Computer Operator II		0	3	0	1	376	\N	EMPLOYEE	A1	CO II	
367	Laboratory Inspector III		0	28	97	14	230	f	EMPLOYEE	A1	Lab. Insp. III	
387	Local Treasury Operations Officer I		0	13	0	11	106	f	EMPLOYEE	A1	LTOO I	
389	Local Treasury Operations Officer III		0	13	0	18	103	f	EMPLOYEE	A1	LTOO III	
390	Local Treasury Operations Officer IV		0	13	0	22	102	f	EMPLOYEE	A1	LTOO IV	
1551	Medical Laboratory Technician II		0	113	99	2	396	\N	EMPLOYEE	A1	MLT II	
1537	Computer Operator III		0	28	0	1	382	\N	EMPLOYEE	A1	CO III	
1552	Occupational Therapist II		0	113	99	4	397	\N	EMPLOYEE	A1	OT II	
1542	Utility Worker I		0	28	14	1	387	\N	EMPLOYEE	A1	UW I	
1554	Utility Worker I		0	113	99	1	399	\N	EMPLOYEE	A1	UW I	
1561	Utility Worker I		0	113	101	1	406	\N	EMPLOYEE	A1	UW I	
1568	Utility Worker I		0	113	103	1	413	\N	EMPLOYEE	A1	UW I	
1838	Driver I		0	27	0	1	680	\N	EMPLOYEE	A1	Driver I	
1529	Driver III		0	4	0	4	374	\N	EMPLOYEE	A1	Driver III	
1550	Utility Worker II		0	113	99	1	395	\N	EMPLOYEE	A1	UW II	
1563	Utility Worker II		0	113	102	1	408	\N	EMPLOYEE	A1	UW II	
1565	Utility Worker II		0	113	103	1	410	\N	EMPLOYEE	A1	UW II	
1574	Watchman II		0	113	109	1	419	\N	EMPLOYEE	A1	Watchman II	
1590	Clerk I		0	113	119	1	435	\N	EMPLOYEE	A1	Clerk I	
1591	Clerk III		0	113	132	1	436	\N	EMPLOYEE	A1	Clerk III	
1467	Administrative Aide		0	21	0	1	312	\N	EMPLOYEE	A1	Admin. Aide	
1466	Laboratory Aide II		0	21	0	1	311	\N	EMPLOYEE	A1	Lab. Aide II	
1446	Community Affairs Officer II		0	7	0	15	292	\N	EMPLOYEE	A1	CAO II	
1541	Engineering Assistant		0	28	26	1	386	\N	EMPLOYEE	A1	Engineering Asst.	
1546	Construction and Maintenance Man		0	28	14	1	391	\N	EMPLOYEE	A1	Const. & Maint. Man	
1482	Medical Technologist I		0	1	52	11	327	\N	EMPLOYEE	A1	Med. Tech. I	
368	Laboratory Technician I		0	28	97	6	235	f	EMPLOYEE	A1	Lab. Tech. I	
370	Laboratory Technician II		0	28	97	8	240	f	EMPLOYEE	A1	Lab. Tech. II	
543	Security Materials Control Officer III		0	28	97	16	229	f	EMPLOYEE	A1	Security Materials Control Officer III	
178	Administrative Assistant IV (Bookbinder IV)		0	8	34	10	52	f	EMPLOYEE	A1	BB IV	
185	Administrative Assistant V (Communications Equipment Operator IV)		0	9	3	11	62	f	EMPLOYEE	A1	Comm. Eqpt. Oper. IV	
1485	Administrative Aide		0	23	0	1	330	\N	EMPLOYEE	A1	Admin. Aide	
1595	Clerk I		0	113	137	1	440	\N	EMPLOYEE	A1	Clerk I	
1596	Clerk I		0	113	122	1	441	\N	EMPLOYEE	A1	Clerk I	
1598	Clerk I		0	113	124	1	443	\N	EMPLOYEE	A1	Clerk I	
1599	Watchman I		0	113	125	1	444	\N	EMPLOYEE	A1	Watchman I	
1601	Clerk I		0	113	126	1	446	\N	EMPLOYEE	A1	Clerk I	
1602	Clerk I		0	113	128	1	447	\N	EMPLOYEE	A1	Clerk I	
1604	Clerk I		0	113	125	1	449	\N	EMPLOYEE	A1	Clerk I	
1607	Clerk I		0	113	129	1	452	\N	EMPLOYEE	A1	Clerk I	
1609	Watchman I		0	113	132	1	454	\N	EMPLOYEE	A1	Watchman I	
1610	Clerk I		0	113	133	1	455	\N	EMPLOYEE	A1	Clerk I	
1611	Clerk I		0	113	134	1	456	\N	EMPLOYEE	A1	Clerk I	
1614	Driver II		0	113	0	1	459	\N	EMPLOYEE	A1	Driver II	
1619	Clerk I		0	113	117	1	464	\N	EMPLOYEE	A1	Clerk I	
1623	Watchman I		0	113	101	1	468	\N	EMPLOYEE	A1	Watchman I	
1572	Nurse I		0	113	105	11	417	f	EMPLOYEE	A1	Nurse I	
1600	Nurse I		0	113	126	11	445	f	EMPLOYEE	A1	Nurse I	
1603	Nurse I		0	113	128	11	448	f	EMPLOYEE	A1	Nurse I	
1613	Nurse I		0	113	136	11	458	f	EMPLOYEE	A1	Nurse I	
1616	Nurse I		0	113	113	11	461	f	EMPLOYEE	A1	Nurse I	
1620	Nurse I		0	113	99	11	465	f	EMPLOYEE	A1	Nurse I	
1544	Air-Conditioning Technician I		0	28	14	6	389	\N	EMPLOYEE	A1	Air-Conditioning Tech. I	
1504	Community Affairs Assistant I		0	1	73	5	349	\N	EMPLOYEE	A1	CAA I	
1463	Meat Inspector I		0	26	0	6	308	\N	EMPLOYEE	A1	Meat Insp. I	
1624	Nurse I		0	113	131	11	469	f	EMPLOYEE	A1	Nurse I	
1617	Nurse II		0	113	99	15	462	\N	EMPLOYEE	A1	Nurse II	
625	Administrative Officer I		0	3	0	1	24	f	EMPLOYEE	A1	AO I	
953	Computer Operator I		0	30	0	1	249	f	EMPLOYEE	A1	CO I	
1660	Computer Operator I		0	1	0	7	503	\N	EMPLOYEE	A1	CO I	
1625	Project Development Officer II		0	1	0	15	470	\N	EMPLOYEE	A1	PDO II	
1626	Project Development Officer III		0	1	0	18	471	\N	EMPLOYEE	A1	PDO III	
1605	Computer Maintenance Technologist I		0	113	129	4	450	\N	EMPLOYEE	A1	CMT I	
1597	Utility Worker I		0	113	123	1	442	\N	EMPLOYEE	A1	UW I	
1573	Utility Worker II		0	113	108	1	418	\N	EMPLOYEE	A1	UW II	
1471	Utility Worker II		0	21	0	1	316	\N	EMPLOYEE	A1	UW II	
1658	Reproduction Machine Operator II		0	13	0	4	501	\N	EMPLOYEE	A1	RMO II	
379	Local Disaster Risk Reduction and Management Assistant		0	4	0	8	26	f	EMPLOYEE	A1	LDRRMAs	
1657	Reproduction Machine Operator I		0	13	0	2	500	\N	EMPLOYEE	A1	RMO I	
1659	Reproduction Machine Operator III		0	13	0	7	502	\N	EMPLOYEE	A1	RMO III	
1669	Human Resource Management Officer I		0	8	0	11	512	\N	EMPLOYEE	A1	HRMO I	
1670	Human Resource Management Officer IV		0	8	0	22	513	\N	EMPLOYEE	A1	HRMO IV	
1672	Bookbinder IV		0	8	0	10	515	\N	EMPLOYEE	A1	BB IV	
1681	Bookbinder I		0	1	47	2	524	\N	EMPLOYEE	A1	BB I	
1682	Bookbinder II		0	1	47	4	525	\N	EMPLOYEE	A1	BB II	
1684	Bookbinder II		0	22	0	4	527	\N	EMPLOYEE	A1	BB II	
1685	Bookbinder I		0	23	0	2	528	\N	EMPLOYEE	A1	BB I	
1690	Clerk II		0	26	0	4	533	\N	EMPLOYEE	A1	Clerk II	
1691	Clerk III		0	26	0	6	534	\N	EMPLOYEE	A1	Clerk III	
397	Medical Officer III		0	20	0	21	167	f	EMPLOYEE	A1	Medical Officer III	
524	Radiologic Technologist I		0	20	0	11	169	f	EMPLOYEE	A1	Rad. Tech. I	
434	Nursing Attendant I		0	20	0	4	173	f	EMPLOYEE	A1	Nursing Attendant I	
1667	Bookbinder II		0	12	0	4	510	\N	EMPLOYEE	A1	BB II	
822	Social Welfare Assistant		0	19	0	1	166	f	EMPLOYEE	A1	SWA	
1663	Management and Audit Analyst II		0	12	0	15	506	\N	EMPLOYEE	A1	MAA II	
1668	Bookbinder IV		0	12	0	10	511	\N	EMPLOYEE	A1	BB IV	
833	Agricultural Technologist		0	20	0	1	175	f	EMPLOYEE	A1	Agri. Tech.	
1378	Chief of Hospital I		0	20	0	1	250	f	EMPLOYEE	A1	Chief of Hospital I	
394	Laboratory Technician I		0	20	0	6	172	f	EMPLOYEE	A1	Lab. Tech. I	
114	Administrative Aide VI (Storekeeper II)		0	19	6	6	163	f	EMPLOYEE	A1	Storekeeper II	
541	Security Guard I		0	19	6	3	165	f	EMPLOYEE	A1	Security Guard I	
1469	Administrative Assistant I		0	21	0	1	314	\N	EMPLOYEE	A1	Admin. Asst. I	
1530	Local Disaster Risk Reduction and Management Assistant		0	3	0	8	375	\N	EMPLOYEE	A1	LDRRM Assistant	
1661	Bookbinder III		0	12	0	7	504	\N	EMPLOYEE	A1	BB III	
1237	Local Disaster Risk Reduction and Management Assistant		0	1	0	8	250	f	EMPLOYEE	A1	LDRRM Assistant	
1651	Security Agent II		0	1	0	1	496	\N	EMPLOYEE	A1	Security Agent II	
1704	Clerk III		0	9	0	6	546	\N	EMPLOYEE	A1	Clerk III	
1713	Clerk II		0	28	97	1	555	\N	EMPLOYEE	A1	Clerk II	
1688	Utility Worker I		0	26	0	1	531	\N	EMPLOYEE	A1	UW I	
1696	Project Development Officer II		0	9	0	15	539	\N	EMPLOYEE	A1	PDO II	
1701	Project Development Officer III		0	9	0	18	544	\N	EMPLOYEE	A1	PDO III	
1698	Project Development Officer IV		0	9	0	22	541	\N	EMPLOYEE	A1	PDO IV	
1683	Computer Operator II		0	1	47	9	526	\N	EMPLOYEE	A1	CO II	
1705	Computer Operator II		0	9	0	9	547	\N	EMPLOYEE	A1	CO II	
1622	Computer Maintenance Technologist I		0	113	99	4	467	\N	EMPLOYEE	A1	CMT I	
1678	Computer Operator IV		0	11	0	14	521	\N	EMPLOYEE	A1	CO IV	
1664	Reproduction Machine Operator II		0	29	0	4	507	\N	EMPLOYEE	A1	RMO II	
1710	Reproduction Machine Operator II		0	9	0	4	552	\N	EMPLOYEE	A1	RMO II	
1712	Community Affairs Officer I		0	1	138	11	554	\N	EMPLOYEE	A1	CAO I	
1675	Reproduction Machine Operator III		0	8	0	7	518	\N	EMPLOYEE	A1	RMO III	
1702	Reproduction Machine Operator III		0	9	0	7	545	\N	EMPLOYEE	A1	RMO III	
1700	Project Development Officer I		0	9	0	11	543	\N	EMPLOYEE	A1	PDO I	
1717	Engineer II		0	28	0	16	559	\N	EMPLOYEE	A1	Engineer II	
1718	Engineer III		0	28	0	19	560	\N	EMPLOYEE	A1	Engineer III	
1720	Engineer I		0	1	0	12	562	\N	EMPLOYEE	A1	Engineer I	
1721	Storekeeper I		0	28	0	4	563	\N	EMPLOYEE	A1	Storekeeper I	
1722	Clerk		0	28	0	1	564	\N	EMPLOYEE	A1	Clerk	
1212	Clerk I		0	8	0	4	250	f	EMPLOYEE	A1	Clerk I	
1728	Clerk IV		0	10	0	8	570	\N	EMPLOYEE	A1	Clerk IV	
1636	Accountant III		0	12	0	19	481	\N	EMPLOYEE	A1	Accountant III	
1665	Accountant II		0	12	0	16	508	\N	EMPLOYEE	A1	Accountant II	
1731	Electrician II		0	10	0	6	573	\N	EMPLOYEE	A1	Electrician II	
1733	Bookbinder I		0	10	0	2	575	\N	EMPLOYEE	A1	Bookbinder I	
790	Administrative Officer III		0	19	0	18	166	f	EMPLOYEE	A1	AO III	
1269	Institutional Worker		0	20	0	0	250	f	EMPLOYEE		IW	
1735	Pharmacy Aide		0	1	0	4	577	\N	EMPLOYEE	A1	Pharmacy Aide	
1724	Public Relations Officer I		0	1	0	11	566	\N	EMPLOYEE	A1	PRO I	
514	Provincial Government Assistant Department Head		0	14	0	24	114	f	EMPLOYEE	A1	PGADH	
1652	Administrative Assistant II (Clerk IV)		0	12	0	8	497	\N	EMPLOYEE	A1	Clerk IV	
1695	Administrative Assistant I (Computer Operator I)		0	12	0	7	538	\N	EMPLOYEE	A1	CO I	
132	Administrative Assistant I (Computer Operator I)		0	12	4	7	101	f	EMPLOYEE	A1	CO I	
1694	Computer Operator I		0	12	0	7	537	\N	EMPLOYEE	A1	CO I	
820	Radiologic Technologist I		0	19	0	1	166	f	EMPLOYEE	A1	Rad. Tech. I	
223	Administrative Officer III (Records Officer II)		0	19	21	14	158	f	EMPLOYEE	A1	Records Officer II	
1686	Clerk Typist		0	25	0	3	529	\N	EMPLOYEE	A1	Clerk Typist	
1693	Meat Inspector III		0	25	0	11	536	\N	EMPLOYEE	A1	Meat Inspector III	
1714	Administrative Aide VI (Utility Foreman)		0	1	0	6	556	\N	EMPLOYEE	A1	Utility Foreman	
1716	Development Program Assistant		0	28	0	1	558	\N	EMPLOYEE	A1	Development Program Asst.	
1723	Administrative Assistant		0	1	0	7	565	\N	EMPLOYEE	A1	Admin. Asst.	
1689	Pest Control Worker I		0	1	0	4	532	\N	EMPLOYEE	A1	Pest Control Worker I	
1715	Engineering Assistant		0	1	0	8	557	\N	EMPLOYEE	A1	Engineering Asst.	
1676	Prison Guard I		0	1	0	7	519	\N	EMPLOYEE	A1	Prison Guard I	
1692	Veterinarian I		0	1	0	13	535	\N	EMPLOYEE	A1	Veterinarian I	
1656	Electronics and Communications Equipment Technician III		0	1	138	11	499	\N	EMPLOYEE	A1	Elec. & Comm. Eqpt. Tech. III	
1687	Meat Inspector II		0	26	0	8	530	\N	EMPLOYEE	A1	Meat Insp. II	
602	Veterinarian I		0	26	0	13	207	f	EMPLOYEE	A1	Veterinarian I	
603	Veterinarian II		0	26	0	16	205	f	EMPLOYEE	A1	Veterinarian II	
1677	Administrative Assistant I (Computer Operator I)		0	11	0	7	520	\N	EMPLOYEE	A1	CO I	
1662	Budget Officer II		0	11	0	15	505	\N	EMPLOYEE	A1	Budget Officer II	
1671	Human Resource Management Aide		0	8	0	4	514	\N	EMPLOYEE	A1	HRM Aide	
1674	Administrative Officer IV (Human Resource Management Officer II)		0	8	42	15	517	\N	EMPLOYEE	A1	HRMO II	
1697	Supervising Development Project Analyst		0	9	0	15	540	\N	EMPLOYEE	A1	Supv. Dev't. Proj. Analyst	
1965	Clerk II		0	1	82	4	805	\N	EMPLOYEE	A1	Clerk II	
1707	Communications Equipment Operator II		0	9	0	6	549	\N	EMPLOYEE	A1	Comm. Eqpt. Oper. II	
1708	Communications Equipment Operator IV		0	9	0	11	550	\N	EMPLOYEE	A1	Comm. Eqpt. Oper. IV	
1709	Clerical Aide		0	9	0	1	551	\N	EMPLOYEE	A1	Clerical Aide	
1711	Project Development Officer I (Educational)		0	9	27	11	553	\N	EMPLOYEE	A1	PDO I	
7	Administrative Aide I (Utility Worker I)		0	6	0	1	47	f	EMPLOYEE	A1	UW I	
1727	Computer Operator III		0	22	0	12	569	\N	EMPLOYEE	A1	CO III	
1729	Senior Bookkeeper		0	13	0	9	571	\N	EMPLOYEE	A1	Sr. Bookkeeper	
1737	Storekeeper I		0	10	0	4	579	\N	EMPLOYEE	A1	Storekeeper I	
1738	Storekeeper II		0	10	0	6	580	\N	EMPLOYEE	A1	Storekeeper II	
776	Computer Operator I		0	18	0	7	153	f	EMPLOYEE	A1	CO I	
508	Provincial Government Assistant Department Head		0	3	0	24	24	f	EMPLOYEE	A1	PGADH	
515	Provincial Government Assistant Department Head		0	22	0	24	184	f	EMPLOYEE	A1	PGADH	
491	Provincial Government Department Head		0	9	0	26	56	f	EMPLOYEE	A1	PGDH	
495	Provincial Government Department Head		0	13	0	26	113	f	EMPLOYEE	A1	PGDH	
1238	Local Disaster Risk Reduction and Management Assistant		0	4	0	1	250	f	EMPLOYEE	A1	LDRRMAs	
1725	Public Utilities Regulatory Officer I		0	1	49	11	567	\N	EMPLOYEE	A1	PURO I	
1732	Records Officer III		0	10	0	18	574	\N	EMPLOYEE	A1	RO III	
171	Administrative Assistant III (Computer Operator II)		0	28	2	9	233	f	EMPLOYEE	A1	AAs III (CO II)	
1839	Driver III		0	29	0	1	681	\N	EMPLOYEE	A1	Driver III	
497	Provincial Government Department Head		0	15	0	26	124	f	EMPLOYEE	A1	PGDH	
229	Administrative Officer IV (Administrative Officer II)		0	12	4	15	96	f	EMPLOYEE	A1	AO II	
143	Administrative Assistant I (Reproduction Machine Operator III)		0	12	4	7	99	f	EMPLOYEE	A1	RMO III	
16	Administrative Aide I (Utility Worker I)		0	20	8	1	175	f	EMPLOYEE	A1	UW I	
14	Administrative Aide I (Utility Worker I)		0	19	6	1	166	f	EMPLOYEE	A1	UW I	
231	Administrative Officer IV (Administrative Officer II)		0	19	6	15	157	f	EMPLOYEE	A1	AO II	
300	Dental Aide		0	19	21	4	164	f	EMPLOYEE	A1	Dental Aide	
15	Administrative Aide I (Utility Worker I)		0	19	21	1	166	f	EMPLOYEE	A1	UW I	
246	Administrative Officer V (Administrative Officer III)		0	21	0	18	175	f	EMPLOYEE	A1	AO III	
44	Administrative Aide III (Driver I)		0	25	0	3	201	f	EMPLOYEE	A1	Driver I	
74	Administrative Aide IV (Clerk II)		0	25	0	4	203	f	EMPLOYEE	A1	Clerk II	
215	Administrative Officer II (Administrative Officer I)		0	25	0	11	196	f	EMPLOYEE	A1	AO I	
22	Administrative Aide II (Bookbinder I)		0	14	0	2	123	f	EMPLOYEE	A1	BB I	
1387	Electronics and Communications Equipment Technician I		0	1	0	6	11	f	EMPLOYEE	A1	Elec. & Comm. Eqpt. Tech. I	
1699	Development Program Assistant		0	9	0	1	542	\N	EMPLOYEE		Dev't. Program Asst.	
1260	Electronics and Communications Technician III		0	1	0	0	250	f	EMPLOYEE		Elec. & Comm. Tech. III	
1706	Radio Operator		0	9	0	0	548	\N	EMPLOYEE		Radio Operator	
1719	Administrative Aide III (Driver I)		0	28	0	4	561	\N	EMPLOYEE	A1	Driver I	
1187	Administrative Officer II (Records Officer I)		0	28	0	11	232	f	EMPLOYEE	A1	Records Officer I	
46	Administrative Aide III (Driver I)		0	28	23	3	238	f	EMPLOYEE	A1	Driver I	
108	Administrative Aide VI (Communications Equipment Operator II)		0	28	14	6	240	f	EMPLOYEE	A1	Comm. Eqpt. Oper. II	
1736	Local Risk Reduction and Management Officer II		0	1	0	15	578	\N	EMPLOYEE	A1	LRRM Officer II	
1730	Security Agent I		0	1	0	8	572	\N	EMPLOYEE	A1	Security Agent I	
1726	Security Officer I		0	1	0	11	568	\N	EMPLOYEE	A1	Security Officer I	
1474	Medical Technologist I		0	1	98	11	319	\N	EMPLOYEE	A1	Med. Tech. I	
6	Administrative Aide I (Utility Worker I)		0	1	32	1	16	f	EMPLOYEE	A1	UW I	
21	Administrative Aide II (Bookbinder I)		0	13	0	2	112	f	EMPLOYEE	A1	BB I	
69	Administrative Aide IV (Clerk II)		0	13	0	4	113	f	EMPLOYEE	A1	Clerk II	
230	Administrative Officer IV (Administrative Officer II)		0	13	0	15	104	f	EMPLOYEE	A1	AO II	
5	Administrative Aide I (Utility Worker I)		0	26	0	1	215	f	EMPLOYEE	A1	UW I	
195	Administrative Assistant VI (Computer Operator III)		0	26	0	12	208	f	EMPLOYEE	A1	CO III	
13	Administrative Aide I (Utility Worker I)		0	18	0	1	153	f	EMPLOYEE	A1	UW I	
1618	Administrative Aide IV (Clerk II)		0	18	0	4	463	\N	EMPLOYEE	A1	Clerk II	
1630	Administrative Officer V (Administrative Officer III)		0	18	0	18	475	f	EMPLOYEE	A1	AO III	
24	Administrative Aide II (Bookbinder I)		0	29	0	2	248	f	EMPLOYEE	A1	BB I	
1751	Computer Operator I		0	6	0	7	593	\N	EMPLOYEE	A1	CO I	
228	Administrative Officer IV (Administrative Officer II)		0	10	0	15	71	f	EMPLOYEE	A1	Administrative Officer II	
192	Administrative Assistant VI (Computer Operator III)		0	10	0	12	73	f	EMPLOYEE	A1	CO III	
152	Administrative Assistant II (Administrative Assistant)		0	10	0	8	75	f	EMPLOYEE	A1	Admin. Asst.	
1734	Administrative Aide III (Clerk I)		0	10	0	3	576	\N	EMPLOYEE	A1	Clerk I	
45	Administrative Aide III (Driver I)		0	27	0	3	222	f	EMPLOYEE	A1	Driver I	
153	Administrative Assistant II (Administrative Assistant)		0	17	0	8	136	f	EMPLOYEE	A1	Admin. Asst.	
227	Administrative Officer IV (Administrative Officer II)		0	8	42	15	50	f	EMPLOYEE	A1	AO II	
8	Administrative Aide I (Utility Worker I)		0	8	42	1	56	f	EMPLOYEE	A1	UW I	
18	Administrative Aide II (Bookbinder I)		0	9	3	2	66	f	EMPLOYEE	A1	BB I	
194	Administrative Assistant VI (Computer Operator III)		0	22	0	12	180	f	EMPLOYEE	A1	CO III	
61	Administrative Aide IV (Bookbinder II)		0	6	0	4	44	f	EMPLOYEE	A1	BB II	
89	Administrative Aide IV (Reproduction Machine Operator II)		0	6	0	4	44	f	EMPLOYEE	A1	RMO II	
151	Administrative Assistant II (Administrative Assistant)		0	6	0	8	41	f	EMPLOYEE	A1	Admin. Asst.	
226	Administrative Officer IV (Administrative Officer II)		0	6	0	15	36	f	EMPLOYEE	A1	AO II	
499	Provincial Government Department Head		0	22	0	26	177	f	EMPLOYEE	A1	PGDH	
498	Provincial Government Department Head		0	16	0	26	124	f	EMPLOYEE	A1	PGDH	
503	Provincial Government Department Head		0	26	0	26	203	f	EMPLOYEE	A1	PGDH	
504	Provincial Government Department Head		0	27	0	26	215	f	EMPLOYEE	A1	PGDH	
505	Provincial Government Department Head		0	28	0	26	224	f	EMPLOYEE	A1	PGDH	
506	Provincial Government Department Head		0	29	0	26	240	f	EMPLOYEE	A1	PGDH	
485	Provincial Government Department Head		0	1	0	26	2	t	SUPERVISOR	A1	PGDH	
1314	Utility Worker I		0	9	0	1	250	f	EMPLOYEE	A1	UW I	
1612	Utility Worker I		0	113	135	1	457	\N	EMPLOYEE	A1	UW I	
1621	Utility Worker I		0	113	132	1	466	\N	EMPLOYEE	A1	UW I	
986	Computer Operator I		0	28	23	1	240	f	EMPLOYEE	A1	CO I	
1739	Storekeeper		0	17	139	1	581	\N	EMPLOYEE	A1	Storekeeper	
1741	Storekeeper II		0	17	139	6	583	\N	EMPLOYEE	A1	Storekeeper II	
1740	Administrative Aide VI (Storekeeper II)		0	17	139	6	582	\N	EMPLOYEE	A1	Storekeeper II	
1744	Senior Administrative Assistant III (Private Secretary II)		0	1	0	15	586	\N	EMPLOYEE	A1	Private Secretary II	
1747	Clerk III		0	17	0	6	589	\N	EMPLOYEE	A1	Clerk III	
1755	Driver I		0	6	0	3	597	\N	EMPLOYEE	A1	Driver I	
1764	Records Officer II		0	6	0	14	606	\N	EMPLOYEE	A1	Records Officer II	
1765	Midwife		0	1	0	6	607	\N	EMPLOYEE	A1	Midwife	
1766	Midwife I		0	1	0	6	608	\N	EMPLOYEE	A1	Midwife I	
1768	Cashier I		0	18	0	10	610	\N	EMPLOYEE	A1	Cashier I	
1770	Administrative Officer I		0	17	140	11	612	\N	EMPLOYEE	A1	Administrative Officer I	
1773	Driver III		0	1	46	1	615	\N	EMPLOYEE	A1	Driver III	
1774	Nursing Attendant I		0	17	140	4	616	\N	EMPLOYEE	A1	Nursing Attendant I	
1776	Administrative Aide IV (Driver II)		0	20	0	4	618	\N	EMPLOYEE	A1	Driver II	
1777	Administrative Aide IV (Clerk II)		0	20	0	4	619	\N	EMPLOYEE	A1	Clerk II	
1779	Nurse I		0	17	140	11	621	\N	EMPLOYEE	A1	Nurse I	
1780	Administrative Officer I (Cashier I)		0	20	0	10	622	\N	EMPLOYEE	A1	Cashier I	
1781	Resident Physician		0	18	0	1	623	\N	EMPLOYEE	A1	Resident Physician	
180	Administrative Assistant IV (Bookbinder IV)		0	12	4	10	98	f	EMPLOYEE	A1	BB IV	
1775	Administrative Aide I (Utility Worker I)		0	20	0	1	617	\N	EMPLOYEE	A1	UW I	
1778	Administrative Assistant III (Senior Bookkeeper)		0	20	0	9	620	\N	EMPLOYEE	A1	Sr. Bookkeeper	
1769	Administrative Officer I		0	20	0	11	611	\N	EMPLOYEE	A1	AO I	
1743	Communications Equipment Operator IV		0	1	0	11	585	\N	EMPLOYEE	A1	Comm. Eqpt. Oper. IV	
1750	Project Development Assistant		0	1	0	8	592	\N	EMPLOYEE	A1	Proj. Dev't. Asst.	
1173	Traffic Aide I		0	1	92	1	16	f	EMPLOYEE	A1	Traffic Aide I	
1772	Security Officer I		0	1	46	11	614	\N	EMPLOYEE	A1	Security Officer I	
1519	Community Affairs Assistant II		0	1	80	1	364	\N	EMPLOYEE	A1	CAA II	
1512	Community Affairs Assistant II		0	1	76	1	357	\N	EMPLOYEE	A1	CAA II	
1745	Executive Assistant III		0	1	25	20	587	\N	EMPLOYEE	A1	Exec. Asst. III	
1756	Stenographic Reporter I		0	114	0	7	598	\N	EMPLOYEE	A1	Steno. Reporter I	
1757	Stenographic Reporter III		0	114	0	11	599	\N	EMPLOYEE	A1	Steno. Reporter III	
1759	Administrative Assistant		0	114	0	8	601	\N	EMPLOYEE	A1	Admin. Asst.	
1760	Administrative Officer I		0	114	0	11	602	\N	EMPLOYEE	A1	AO I	
1761	Administrative Officer II		0	114	0	15	603	\N	EMPLOYEE	A1	AO II	
1763	Stenographic Reporter		0	114	0	7	605	\N	EMPLOYEE	A1	Steno. Reporter	
1742	Computer Operator I		0	10	0	7	584	\N	EMPLOYEE	A1	CO I	
1771	Administrative Officer II (Administrative Officer I)		0	17	140	11	613	\N	EMPLOYEE	A1	AO I	
1748	Administrative Assistant		0	6	0	7	590	\N	EMPLOYEE	A1	Admin. Asst.	
1762	Administrative Officer II		0	6	0	15	604	\N	EMPLOYEE	A1	AO II	
1752	Bookbinder I		0	6	0	2	594	\N	EMPLOYEE	A1	BB I	
1754	Bookbinder II		0	6	0	4	596	\N	EMPLOYEE	A1	BB II	
1753	Bookbinder IV		0	6	0	10	595	\N	EMPLOYEE	A1	BB IV	
1758	Computer Operator II		0	6	0	9	600	\N	EMPLOYEE	A1	CO II	
1767	Reproduction Machine Operator I		0	6	0	2	609	\N	EMPLOYEE	A1	RMO I	
1749	Stenograhpic Reporter I		0	6	0	7	591	\N	EMPLOYEE	A1	Steno. Reporter I	
1746	Stenographic Reporter III		0	6	0	11	588	\N	EMPLOYEE	A1	Steno. Reporter III	
1783	Nursing Attendant II		0	19	0	6	625	\N	EMPLOYEE	A1	Nursing Attendant II	
1784	Nurse II		0	19	0	15	626	\N	EMPLOYEE	A1	Nurse II	
1786	Administrative Officer I (Records Officer I)		0	19	0	10	628	\N	EMPLOYEE	A1	Records Officer I	
1787	Administrative Officer III (Records Officer II)		0	19	0	14	629	\N	EMPLOYEE	A1	Records Officer II	
1789	Medical Officer III		0	19	0	21	631	\N	EMPLOYEE	A1	Medical Officer III	
1790	Pharmacist II		0	19	0	15	632	\N	EMPLOYEE	A1	Pharmacist II	
1791	Security Guard I		0	19	0	3	633	\N	EMPLOYEE	A1	Security Guard I	
1792	Dentist II		0	19	0	17	634	\N	EMPLOYEE	A1	Dentist II	
1793	Administrative Officer I (Cashier I)		0	19	0	10	635	\N	EMPLOYEE	A1	Cashier I	
1979	Clerk I		0	113	109	3	817	\N	EMPLOYEE	A1	Clerk I	
1795	Administrative Aide IV (Clerk II)		0	19	0	4	637	\N	EMPLOYEE	A1	Clerk II	
1796	Clerk		0	19	0	3	638	\N	EMPLOYEE	A1	Clerk	
1797	Administrative Aide VI (Storekeeper II)		0	19	0	6	639	\N	EMPLOYEE	A1	Storekeeper II	
1799	Nursing Attendant		0	19	0	4	641	\N	EMPLOYEE	A1	Nursing Attendant	
1800	Nurse		0	19	0	11	642	\N	EMPLOYEE	A1	Nurse	
1801	Nurse II (Operating Room)		0	19	0	15	643	\N	EMPLOYEE	A1	Nurse II	
1802	Nurse IV		0	19	0	19	644	\N	EMPLOYEE	A1	Nurse IV	
1803	Dental Aide		0	19	0	4	645	\N	EMPLOYEE	A1	Dental Aide	
1804	Midwife I		0	19	0	9	646	\N	EMPLOYEE	A1	Midwife I	
1805	Nutritionist Dietitian II		0	19	0	15	647	\N	EMPLOYEE	A1	Nutritionist Dietitian II	
1808	Watchman II		0	1	92	1	650	\N	EMPLOYEE	A1	WM II	
1811	Computer Operator III		0	28	22	1	653	\N	EMPLOYEE	A1	CO III	
1813	Laborer I		0	27	0	1	655	\N	EMPLOYEE	A1	Laborer I	
1815	Carpenter II		0	28	0	5	657	\N	EMPLOYEE	A1	Carpenter II	
1817	Cook I		0	21	0	2	659	\N	EMPLOYEE	A1	Cook I	
1820	Laborer I		0	28	16	1	662	\N	EMPLOYEE	A1	L I	
1821	Dental Aide		0	21	0	1	663	\N	EMPLOYEE	A1	Dental Aide	
295	Cook I		0	18	0	3	153	f	EMPLOYEE	A1	Cook I	
1822	Utility Worker I		0	28	16	1	664	\N	EMPLOYEE	A1	UW I	
1823	Clerk IV		0	1	46	1	665	\N	EMPLOYEE	A1	Clerk IV	
1824	Computer Operator III		0	24	0	1	666	\N	EMPLOYEE	A1	CO III	
1826	Utility Worker I		0	1	90	1	668	\N	EMPLOYEE	A1	UW I	
1827	Driver III		0	24	0	1	669	\N	EMPLOYEE	A1	Clerk IV	
1833	Engineering Aide		0	28	0	1	675	\N	EMPLOYEE	A1	Engineering Aide	
1834	Utility Worker I		0	27	0	1	676	\N	EMPLOYEE	A1	UW I	
1835	Clerk I		0	1	91	1	677	\N	EMPLOYEE	A1	Clerk I	
1837	Clerk I		0	1	87	1	679	\N	EMPLOYEE	A1	Clerk I	
1840	Community Affairs Officer II		0	22	0	1	682	\N	EMPLOYEE	A1	CAO II	
1841	Clerk IV		0	24	0	1	683	\N	EMPLOYEE	A1	Clerk IV	
1844	Project Development Officer II		0	29	0	1	686	\N	EMPLOYEE	A1	PDO II	
325	Engineer III		0	28	26	19	240	f	EMPLOYEE	A1	Engineer III	
327	Engineer III		0	28	23	19	240	f	EMPLOYEE	A1	Engineer III	
332	Engineer IV		0	28	97	22	240	f	EMPLOYEE	A1	Engineer IV	
1194	Engineer IV		0	9	0	22	250	f	EMPLOYEE	A1	Engineer IV	
1785	Administrative Aide I (Utility Worker I)		0	19	0	1	627	\N	EMPLOYEE	A1	UW I	
1798	Administrative Aide III (Utility Worker II)		0	19	0	3	640	\N	EMPLOYEE	A1	UW II	
1806	Medical Technologist II		0	19	0	15	648	\N	EMPLOYEE	A1	Med. Tech. II	
1788	Radiologic Technologist II		0	19	0	15	630	\N	EMPLOYEE	A1	Rad. Tech. II	
1818	Laundry Worker I		0	21	0	1	660	\N	EMPLOYEE	A1	Laundry Worker I	
1810	Traffic Aide III		0	3	0	1	652	\N	EMPLOYEE	A1	Traffic Aide III	
1825	Electronics and Communications Equipment Technician I		0	28	0	1	667	\N	EMPLOYEE	A1	Elec. & Comm. Eqpt. Tech. I	
1819	Mechanic III		0	28	0	1	661	\N	EMPLOYEE	A1	Mechanic III	
1679	Administrative Assistant III (Storekeeper III)		0	28	23	9	522	\N	EMPLOYEE	A1	StoreKeeper III	
1794	Executive Assistant II		0	1	0	17	636	\N	EMPLOYEE	A1	Exec. Asst. II	
1807	Driver III		0	1	45	1	649	\N	EMPLOYEE	A1	Driver III	
1828	Computer Programmer I		0	1	46	1	670	\N	EMPLOYEE	A1	Computer Programmer I	
1809	Watchman I		0	1	88	1	651	\N	EMPLOYEE	A1	Watchman I	
1843	Computer Operator II		0	1	89	9	685	\N	EMPLOYEE	A1	CO II	
1829	Clerk II		0	1	89	4	671	\N	EMPLOYEE	A1	Clerk II	
1010	Engineering Assistant		0	1	29	8	16	f	EMPLOYEE	A1	Engineering Asst.	
1836	Project Development Assistant		0	1	40	1	678	\N	EMPLOYEE	A1	Proj. Dev't. Asst.	
301	Dental Aide		0	18	0	4	153	f	EMPLOYEE	A1	Dental Aide	
1782	Medical Technologist I		0	115	0	11	624	\N	EMPLOYEE	A1	Med. Tech. I	
1816	Planning Development Officer I		0	9	0	11	658	\N	EMPLOYEE	A1	Planning Dev't. Officer I	
1814	Administrative Assistant I		0	22	0	7	656	\N	EMPLOYEE	A1	Admin. Asst. I	
1842	Tourist Receptionist I		0	24	0	1	684	\N	EMPLOYEE	A1	Tourist Receptionist I	
1036	Computer Operator I		0	1	47	7	16	f	EMPLOYEE	A1	CO I	
1812	Computer Operator I		0	1	91	7	654	\N	EMPLOYEE	A1	CO I	
1615	Clerk III		0	113	113	6	460	\N	EMPLOYEE	A1	Clerk III	
516	Provincial Government Assistant Department Head		0	24	0	24	193	f	EMPLOYEE	A1	PGADH	
1849	Laborer		0	9	0	1	691	\N	EMPLOYEE	A1	Laborer	
1852	Statistician		0	9	0	11	694	\N	EMPLOYEE	A1	Statistician	
1854	Civil Engineering Aide		0	9	0	4	696	\N	EMPLOYEE	A1	Civil Engineering Aide	
1855	Clerk Typist		0	9	0	1	697	\N	EMPLOYEE	A1	Clerk Typist	
1856	Education Analyst		0	9	0	9	698	\N	EMPLOYEE	A1	Education Analyst	
1859	Statistician I		0	9	0	11	701	\N	EMPLOYEE	A1	Statistician I	
1293	Clerk I		0	26	0	3	250	f	EMPLOYEE	A1	Clerk I	
1863	Administrative Officer IV (Budget Officer II)		0	11	0	15	705	\N	EMPLOYEE	A1	Budget Officer II	
1864	Administrative Officer II (Budget Officer I)		0	11	0	11	706	\N	EMPLOYEE	A1	Budget Officer I	
1866	Administrative Aide VI (Clerk III)		0	29	0	6	708	\N	EMPLOYEE	A1	Clerk III	
1868	Farm Worker II		0	25	0	4	710	\N	EMPLOYEE	A1	Farm Worker II	
1870	Agriculturist II		0	25	0	15	712	\N	EMPLOYEE	A1	Agriculturist II	
1641	Community Affairs Officer III		0	1	0	18	486	\N	EMPLOYEE	A1	CAO III	
274	Attorney III		0	16	0	21	126	f	EMPLOYEE	A1	Attorney III	
1872	Farm Worker II		0	26	0	4	714	\N	EMPLOYEE	A1	Farm Worker II	
383	Local Revenue Collection Officer I		0	13	0	11	113	f	EMPLOYEE	A1	LRCO I	
1874	Clerk II		0	17	0	4	716	\N	EMPLOYEE	A1	Clerk II	
1875	Supply Officer I		0	17	0	10	717	\N	EMPLOYEE	A1	Supply Officer I	
1244	Clerk II		0	2	0	4	250	f	EMPLOYEE	A1	Clerk II	
1257	Computer Operator II		0	2	0	9	250	f	EMPLOYEE	A1	CO II	
1845	Administrative Aide III (Clerk I)		0	19	0	3	687	\N	EMPLOYEE	A1	Clerk I	
523	Radiologic Technologist I		0	19	21	11	166	f	EMPLOYEE	A1	Rad. Tech. I	
1847	Community Development Officer II		0	116	0	15	689	\N	EMPLOYEE	A1	Community Dev't. Officer II	
1848	Community Development Assistant I		0	116	0	7	690	\N	EMPLOYEE	A1	Community Dev't. Asst. I	
1869	Senior Agriculturist		0	25	0	18	711	\N	EMPLOYEE	A1	Sr. Agriculturist	
1867	Supervising Agriculturist		0	25	0	22	709	\N	EMPLOYEE	A1	Supv. Agriculturist	
1261	Administrative Aide VI (Electronics and Communications Equipment Technician I)		0	1	0	6	250	f	EMPLOYEE	A1	Elec. & Comm. Eqpt. Tech. I	
1389	Electronics and Communications Equipment Technician III		0	1	0	11	11	f	EMPLOYEE	A1	Elec. & Comm. Eqpt. Tech. III	
1873	Executive Assistant V		0	1	0	24	715	\N	EMPLOYEE	A1	Exec. Asst. V	
164	Administrative Assistant III (Computer Operator II)		0	1	20	9	16	f	EMPLOYEE	A1	CO II	
1516	Local Disaster Risk Reduction and Management Officer II		0	1	79	15	361	\N	EMPLOYEE	A1	LDRRM Officer II	
356	Information Technology Officer II		0	1	20	22	16	f	EMPLOYEE	A1	Info. Tech. Officer II	
1850	Utility Worker I		0	114	0	1	692	\N	EMPLOYEE	A1	UW I	
552	Senior Administrative Assistant II (Computer Operator IV)		0	1	32	14	16	f	EMPLOYEE	A1	CO IV	
283	Community Affairs Assistant II		0	1	32	8	16	f	EMPLOYEE	A1	CAA II	
286	Community Affairs Officer III		0	1	32	18	16	f	EMPLOYEE	A1	CAO III	
1851	Utility Worker II		0	114	0	3	693	\N	EMPLOYEE	A1	UW II	
1401	Bookbinder I		0	13	0	2	113	f	EMPLOYEE	A1	BB I	
605	Veterinarian IV		0	26	0	22	215	f	EMPLOYEE	A1	Veterinarian IV	
1862	Administrative Officer V (Administrative Officer III)		0	11	0	18	704	\N	EMPLOYEE	A1	AO III	
1865	Administrative Assistant III (Computer Operator II)		0	29	0	9	707	\N	EMPLOYEE	A1	CO II	
103	Administrative Aide VI (Clerk III)		0	17	0	6	140	f	EMPLOYEE	A1	Clerk III	
1853	Education Project Analyst		0	9	0	12	695	\N	EMPLOYEE	A1	Education Proj. Analyst	
1857	Barangay Water Works Analyst		0	9	0	9	699	\N	EMPLOYEE	A1	Brgy. Water Works Analyst	
1858	Development Project Analyst		0	9	0	9	700	\N	EMPLOYEE	A1	Dev't. Proj. Analyst	
1860	Supervising Administrative Officer (Administrative Officer IV)		0	9	0	22	702	\N	EMPLOYEE	A1	AO IV	
1861	Planning Development Officer IV		0	9	0	22	703	\N	EMPLOYEE	A1	Planning Dev't. Officer IV	
170	Administrative Assistant III (Computer Operator II)		0	22	0	9	184	f	EMPLOYEE	A1	CO II	
203	Administrative Officer I (Records Officer I)		0	24	5	10	193	f	EMPLOYEE	A1	Records Officer I	
362	Labor and Employment Officer I		0	2	0	11	24	f	EMPLOYEE	A1	Labor & Empl. Officer I	
1242	Bookbinder I		0	2	0	2	250	f	EMPLOYEE	A1	BB I	
1876	Administrative Assistant I (Reproduction Machine Operator III)		0	2	0	7	718	\N	EMPLOYEE	A1	RMO III	
1279	Administrative Aide VI (Electronics and Communications Equipment Technician I)		0	6	0	6	250	f	EMPLOYEE	A1	Elec. & Comm. Eqpt. Tech. I	
122	Administrative Assistant I (Bookbinder III)		0	6	0	7	47	f	EMPLOYEE	A1	BB III	
1878	Administrative Officer I (Supply Officer I)		0	20	8	10	720	\N	EMPLOYEE	A1	Supply Officer I	
1879	Administrative Assistant I (Bookbinder III)		0	7	0	7	721	\N	EMPLOYEE	A1	Bookbinder III	
1880	Administrative Aide IV (Driver II)		0	7	0	4	722	\N	EMPLOYEE	A1	Driver II	
1881	Administrative Aide II (Messenger)		0	7	0	2	723	\N	EMPLOYEE	A1	Messenger	
1885	Administrative Officer V (Budget Officer III)		0	11	141	18	726	\N	EMPLOYEE	A1	Budget Officer III	
1886	Administrative Officer IV (Budget Officer II)		0	11	141	15	727	\N	EMPLOYEE	A1	Budget Officer II	
1887	Administrative Officer II (Budget Officer I)		0	11	141	11	728	\N	EMPLOYEE	A1	Budget Officer I	
1889	Administrative Aide IV (Budgeting Aide)		0	11	141	4	730	\N	EMPLOYEE	A1	Budgeting Aide	
1891	Administrative Aide IV (Driver II)		0	24	5	4	732	\N	EMPLOYEE	A1	Driver II	
562	Senior Agriculturist {Reclassified from Administrative Officer V)		0	25	9	18	203	f	EMPLOYEE	A1	SrA {RE > AO V}	
1893	Administrative Aide II (Messenger)		0	13	0	2	734	\N	EMPLOYEE	A1	Messenger	
1188	Driver I		0	14	0	3	249	f	EMPLOYEE	A1	Driver I	
1831	Computer Operator III		0	14	0	12	673	\N	EMPLOYEE	A1	CO III	
764	Computer Operator II		0	16	0	9	126	f	EMPLOYEE	A1	CO II	
1898	Administrative Assistant I (Secretary I)		0	18	0	7	739	\N	EMPLOYEE	A1	Secretary I	
1899	Administrative Officer II (Accountant I)		0	18	0	12	740	\N	EMPLOYEE	A1	Accountant I	
1901	Security Guard I		0	18	0	3	742	\N	EMPLOYEE	A1	Security Guard I	
1904	Community Development Assistant I		0	27	142	7	745	\N	EMPLOYEE	A1	CDA I	
1906	Administrative Aide VI (Utility Foreman)		0	27	142	6	747	\N	EMPLOYEE	A1	Utility Foreman	
1908	Administrative Aide III (Driver I)		0	27	142	3	749	\N	EMPLOYEE	A1	Driver I	
1909	Administrative Aide II (Messenger)		0	27	142	2	750	\N	EMPLOYEE	A1	Messenger	
1913	Environmental Management Specialist II		0	27	144	15	754	\N	EMPLOYEE	A1	EMS II	
1914	Environmental Management Specialist I		0	27	144	11	755	\N	EMPLOYEE	A1	EMS I	
1916	Community Development Assistant I		0	27	144	7	757	\N	EMPLOYEE	A1	CDA I	
1918	Environmental Management Specialist II		0	27	146	15	759	\N	EMPLOYEE	A1	EMS II	
1920	Community Development Assistant II		0	27	146	9	761	\N	EMPLOYEE	A1	CDA II	
1921	Community Development Assistant I		0	27	146	7	762	\N	EMPLOYEE	A1	CDA I	
1924	Environmental Management Specialist II		0	27	145	15	765	\N	EMPLOYEE	A1	EMS II	
380	Local Disaster Risk Reduction and Management Officer I		0	4	0	11	27	f	EMPLOYEE	A1	LDRRM Officer I	
1900	Provincial Government Assistant Department Head		0	27	0	24	741	\N	EMPLOYEE	A1	PGADH	
149	Administrative Assistant II (Accounting Clerk III)		0	21	0	8	177	f	EMPLOYEE	A1	Acctg Clerk III	
527	Radiologic Technologist II		0	21	0	13	177	f	EMPLOYEE	A1	Rad. Tech. II	
1295	Agricultural Technologist		0	7	0	10	250	f	EMPLOYEE	A1	Agri. Tech.	
1892	Supervising Administrative Assistant II (Computer Operator IV)		0	25	9	14	733	\N	EMPLOYEE	A1	CO IV	
1896	Administrative Aide I (Utility Worker I)		0	25	11	1	737	\N	EMPLOYEE	A1	UW I	
1897	Administrative Aide III (Utility Worker II)		0	25	11	3	738	\N	EMPLOYEE	A1	UW II	
1894	Farm Worker I		0	25	28	2	735	\N	EMPLOYEE	A1	Farm Worker I	
584	Supervising Administrative Officer (Budget Officer IV)		0	11	0	22	91	f	SUPERVISOR	A1	Budget Officer IV	
1884	Administrative Officer V (Administrative Officer III)		0	11	7	18	725	\N	EMPLOYEE	A1	AO III	
679	Utility Worker II		0	4	0	3	27	f	EMPLOYEE	A1	UW	
1902	Administrative Officer II (Administrative Officer I)		0	27	142	11	743	\N	EMPLOYEE	A1	AO I	
1903	Administrative Assistant II (Administrative Assistant)		0	27	142	8	744	\N	EMPLOYEE	A1	Admin. Asst.	
1905	Administrative Assistant I (Computer Operator I)		0	27	142	7	746	\N	EMPLOYEE	A1	CO I	
1910	Administrative Aide I (Utility Worker I)		0	27	142	1	751	\N	EMPLOYEE	A1	UW I	
1912	Senior Environmental Management Specialist		0	27	144	18	753	\N	EMPLOYEE	A1	Sr. Environmental Mgt. Specialist	
1915	Project Development Assistant		0	27	144	8	756	\N	EMPLOYEE	A1	Proj. Dev't. Asst.	
1917	Senior Environmental Management Specialist		0	27	146	18	758	\N	EMPLOYEE	A1	Sr. Environmental Mgt. Specialist	
1923	Senior Environmental Management Specialist		0	27	145	18	764	\N	EMPLOYEE	A1	Sr. Environmental Mgt. Specialist	
1911	Supervising Environmental Management Specialist		0	27	143	22	752	\N	EMPLOYEE	A1	Supv. Environmental Mgt. Specialist	
1883	Administrative Officer II (Human Resource Management Officer I)		0	8	10	11	724	\N	EMPLOYEE	A1	HRMO I	
163	Administrative Assistant II (Human Resource Management Assistant)		0	8	42	8	56	f	EMPLOYEE	A1	HRM Assistant	
1890	Youth Development Officer I		0	22	0	10	731	\N	EMPLOYEE	A1	Youth Devt. Officer I	
1877	Administrative Assistant I (Bookbinder III)		0	2	0	7	719	\N	EMPLOYEE	A1	BB III	
1925	Environmental Management Specialist I		0	27	145	11	766	\N	EMPLOYEE	A1	EMS I	
1926	Community Development Assistant II		0	27	145	9	767	\N	EMPLOYEE	A1	CDA II	
1929	Environmental Management Specialist I		0	27	148	11	770	\N	EMPLOYEE	A1	EMS I	
1930	Community Development Assistant II		0	27	148	9	771	\N	EMPLOYEE	A1	CDA II	
1931	Community Development Assistant I		0	27	148	7	772	\N	EMPLOYEE	A1	CDA I	
1933	Administrative Aide IV (Electrician I)		0	20	8	4	773	\N	EMPLOYEE	A1	Electrician I	
1934	Engineer IV		0	28	149	22	774	\N	EMPLOYEE	A1	Engineer IV	
1935	Engineer III		0	28	149	19	775	\N	EMPLOYEE	A1	Engineer III	
1936	Engineer II		0	28	149	16	776	\N	EMPLOYEE	A1	Engineer II	
1938	Draftsman I		0	28	149	6	778	\N	EMPLOYEE	A1	Draftsman I	
1941	Technician I		0	1	20	6	781	\N	EMPLOYEE	A1	Technician I	
1943	Driver II		0	21	0	3	783	\N	EMPLOYEE	A1	Driver II	
1944	Clerk IV		0	115	0	8	784	\N	EMPLOYEE	A1	Clerk IV	
1948	Driver I		0	15	0	3	788	\N	EMPLOYEE	A1	Driver I	
1950	Project Development Officer I		0	25	0	11	790	\N	EMPLOYEE	A1	Project Development Officer I	
1951	Tax Mapping Aide		0	14	0	4	791	\N	EMPLOYEE	A1	Tax Mapping Aide	
1953	Clerk III		0	15	0	6	793	\N	EMPLOYEE	A1	Clerk III	
1955	Computer Operator ll		0	23	0	9	795	\N	EMPLOYEE	A1	CO ll	
1959	Security Officer II		0	6	0	11	799	\N	EMPLOYEE	A1	Security Officer II	
1960	Computer Operator ll		0	15	0	9	800	\N	EMPLOYEE	A1	CO ll	
281	Chief of Hospital II		0	20	0	25	166	f	EMPLOYEE	A1	Chief of Hospital II	
488	Provincial Government Department Head		0	4	0	26	24	f	EMPLOYEE	A1	Provincial Government Department Head	
381	Local Disaster Risk Reduction and Management Officer II		0	4	0	15	25	f	EMPLOYEE	A1	LDRRM Officer II	
382	Local Disaster Risk Reduction and Management Officer IV		0	4	0	22	27	f	EMPLOYEE	A1	LDRRM Officer IV	
494	Provincial Government Department Head		0	12	0	26	91	f	EMPLOYEE	A1	PGDH	
512	Provincial Government Assistant Department Head		0	12	0	24	101	f	EMPLOYEE	A1	PGADH	
1301	Administrative Officer III		0	12	0	1	250	f	EMPLOYEE	A1	AO III	
1634	Administrative Officer II (Management and Audit Analyst I)		0	12	0	11	479	\N	EMPLOYEE	A1	MAA I	
1666	Management and Audit Analyst III		0	12	0	18	509	\N	EMPLOYEE	A1	MAA III	
218	Administrative Officer II (Management and Audit Analyst I)		0	12	1	11	97	f	EMPLOYEE	A1	MAA I	
92	Administrative Aide IV (Reproduction Machine Operator II)		0	12	1	4	101	f	EMPLOYEE	A1	RMO II	
211	Administrative Officer II (Administrative Officer I)		0	12	4	11	97	f	EMPLOYEE	A1	AO I	
123	Administrative Assistant I (Bookbinder III)		0	12	4	7	99	f	EMPLOYEE	A1	BB III	
841	Heavy Equipment Operator I		0	20	0	1	175	f	EMPLOYEE	A1	HEO I	
1298	Accounting Clerk I		0	12	0	1	250	f	EMPLOYEE	A1	Acctg. Clerk I	
1947	Agricultural Technologist I		0	25	0	10	787	\N	EMPLOYEE	A1	Agri. Tech. I	
107	Administrative Aide VI (Communications Equipment Operator II)		0	28	16	6	240	f	EMPLOYEE	A1	Comm. Eqpt. Oper. II	
1939	Administrative Aide VI (Communication Equipment Operator II)		0	28	149	6	779	\N	EMPLOYEE	A1	Comm. Eqpt. Oper. II	
1937	Engineering Assistant I		0	28	149	8	777	\N	EMPLOYEE	A1	Engineering Asst. I	
1954	Administrative Officer I		0	1	0	11	794	\N	EMPLOYEE	A1	AO I	
1945	Computer Operator I		0	1	45	7	785	\N	EMPLOYEE	A1	CO I	
1942	Computer Operator II		0	1	20	9	782	\N	EMPLOYEE	A1	CO II	
1961	Computer Operator I		0	1	89	7	801	\N	EMPLOYEE	A1	CO I	
1940	Administrative Aide III (Driver I)		0	29	0	3	780	\N	EMPLOYEE	A1	Driver I	
678	Utility Worker I		0	4	0	1	27	f	EMPLOYEE	A1	UW I	
1946	Administrative Assistant I		0	10	0	8	786	\N	EMPLOYEE	A1	Admin. Asst. I	
1927	Senior Environmental Management Specialist		0	27	148	18	768	\N	EMPLOYEE	A1	Sr. Environmental Mgt. Specialist	
1966	Project Evaluation Officer I		0	9	0	11	806	\N	EMPLOYEE	A1	Proj. Evaluation Officer I	
1967	Social Welfare Assistant I		0	22	0	8	807	\N	EMPLOYEE	A1	SWA I	
63	Administrative Aide IV (Bookbinder II)		0	12	4	4	100	f	EMPLOYEE	A1	BB II	
237	Administrative Officer IV (Management and Audit Analyst II)		0	12	19	15	96	f	EMPLOYEE	A1	MAA II	
1413	Laundry Worker I		0	20	0	1	261	\N	EMPLOYEE	A1	Laundry Worker I	
407	Medical Technologist II		0	20	0	15	168	f	EMPLOYEE	A1	Med. Tech. II	
1633	Management and Audit Analyst I		0	12	0	11	478	\N	EMPLOYEE	A1	MAA I	
1272	Chief of Hospital I		0	19	0	1	250	f	EMPLOYEE	A1	Chief of Hospital I	
432	Nursing Attendant I		0	19	6	4	164	f	EMPLOYEE	A1	Nursing Attendant I	
433	Nursing Attendant I		0	19	21	4	164	f	EMPLOYEE	A1	Nursing Attendant I	
1445	Community Affairs Officer I		0	7	0	11	291	\N	EMPLOYEE	A1	CAO I	
1226	Computer Operator IV		0	7	0	14	250	f	EMPLOYEE	A1	CO IV	
104	Administrative Aide VI (Clerk III)		0	25	9	6	199	f	EMPLOYEE	A1	Clerk III	
560	Senior Agriculturist		0	25	24	18	194	f	EMPLOYEE	A1	Sr. Agriculturist	
1267	Private Secretary II		0	1	0	1	250	f	EMPLOYEE	A1	Private Secretary II	
461	Project Development Assistant		0	1	29	8	11	f	EMPLOYEE	A1	Proj. Dev't. Asst.	
233	Administrative Officer IV (Budget Officer II)		0	11	12	15	83	f	EMPLOYEE	A1	Budget Officer II	
249	Administrative Officer V (Budget Officer III)		0	11	12	18	82	f	EMPLOYEE	A1	Budget Officer III	
1922	Supervising Environmental Management Specialist		0	27	147	22	763	\N	EMPLOYEE	A1	Supv. Environmental Mgt. Specialist	
235	Administrative Officer IV (Human Resource Management Officer II)		0	8	34	15	50	f	EMPLOYEE	A1	HRMO II	
519	Provincial Government Assistant Department Head (Assistant Secretary to the Sangguniang Panlalawigan)		0	6	0	24	32	f	EMPLOYEE	A1	Asst. Secretary to the SP	
507	Provincial Government Department Head (Secretary to the Sangguniang Panlalawigan)		0	6	0	26	31	f	EMPLOYEE	A1	Secretary to the SP	
1673	Computer Operator IV		0	8	0	14	516	\N	EMPLOYEE	A1	CO IV	
1972	Watchman I		0	113	124	2	810	\N	EMPLOYEE	A1	Watchman I	
1973	Nurse I		0	113	152	10	811	\N	EMPLOYEE	A1	Nurse I	
1974	Clerk I		0	113	152	3	812	\N	EMPLOYEE	A1	Clerk I	
1975	Dental Aide		0	113	152	4	813	\N	EMPLOYEE	A1	Dental Aide	
1976	Utility Worker I		0	113	152	1	814	\N	EMPLOYEE	A1	Utility Worker I	
1977	Watchman I		0	113	153	2	815	\N	EMPLOYEE	A1	Watchman I	
1978	Clerk I		0	113	154	3	816	\N	EMPLOYEE	A1	Clerk I	
1980	Utility Worker I		0	113	109	1	818	\N	EMPLOYEE	A1	Utility Worker I	
1981	Medical Laboratory Tech II		0	113	152	8	819	\N	EMPLOYEE	A1	Medical Lab. Tech II	
1982	Clerk III		0	113	152	6	820	\N	EMPLOYEE	A1	Clerk III	
1983	Driver I		0	113	152	3	821	\N	EMPLOYEE	A1	Driver I	
1984	Occupational Therapist II		0	113	152	11	822	\N	EMPLOYEE	A1	Occupational Therapist II	
1985	Dentist I		0	113	152	12	823	\N	EMPLOYEE	A1	Dentist I	
1986	Nurse II		0	113	152	17	824	\N	EMPLOYEE	A1	Nurse II	
1987	Computer Maintenance Technologist I		0	113	152	11	825	\N	EMPLOYEE	A1	Computer Maintenance Technologist I	
1988	Dentist IV		0	113	152	21	826	\N	EMPLOYEE	A1	Dentist IV	
1989	Utility Worker II		0	113	152	3	827	\N	EMPLOYEE	A1	Utility Worker II	
1404	Computer Operator I		0	8	0	7	175	f	EMPLOYEE	A1	CO I	
1990	Clerk I		0	17	0	3	828	\N	EMPLOYEE	A1	Clerk I	
1991	TRAFFIC AIDE I	TRAFFIC AIDE I	0	3	0	3	829	\N	EMPLOYEE	A1	TA I	
1969	Human Resource Management Officer II		0	8	0	15	809	\N	EMPLOYEE	A1	HRMO II	
1313	Accounting Clerk		0	13	0	4	250	f	EMPLOYEE	A1	Acctg. Clerk	
1302	Accounting Clerk II		0	12	0	6	250	f	EMPLOYEE	A1	Acctg. Clerk II	
4	Administrative Aide III (Utility Worker II)		0	13	0	3	113	f	EMPLOYEE	A1	AA III (UW II)	
56	Administrative Aide IV		0	20	8	4	175	f	EMPLOYEE	A1	Admin. Aide IV	
67	Administrative Aide IV (Budgeting Aide)		0	11	12	4	91	f	EMPLOYEE	A1	Budgeting Aide	
902	Budgeting Aide I		0	26	0	4	215	f	EMPLOYEE	A1	Budgeting Aide I	
916	Administrative Assistant I		0	28	0	7	240	f	EMPLOYEE	A1	Admin. Asst. I	
837	Administrative Officer I (Computer Operator I)		0	20	0	7	175	f	EMPLOYEE	A1	CO I	
1368	Administrative Officer II (Public Relations Officer I)		0	1	0	11	250	f	EMPLOYEE	A1	PRO I	
1268	Administrative Officer IV (Public Relations Officer II)		0	1	0	15	250	f	EMPLOYEE	A1	PRO II	
1241	Supervising Administrative Officer (Public Relations Officer IV)		0	1	0	22	250	f	EMPLOYEE	A1	PRO IV	
1547	Air-Conditioning Technician II		0	28	14	8	392	\N	EMPLOYEE	A1	Air-Conditioning Tech. II	
1008	Architect I		0	1	29	12	16	f	EMPLOYEE	A1	Architect I	
617	Clerk I		0	1	0	3	16	f	EMPLOYEE	A1	Clerk I	
632	Clerk III		0	3	0	6	24	f	EMPLOYEE	A1	Clerk III	
1372	Construction Maintenance and General Foreman		0	17	0	11	250	f	EMPLOYEE	A1	Const. Maint. & Gen. Foreman	
318	Engineer I		0	28	16	12	240	f	EMPLOYEE	A1	Engineer I	
1832	Mason I		0	28	0	3	674	\N	EMPLOYEE	A1	Mason I	
1536	Mechanic I		0	28	23	4	381	\N	EMPLOYEE	A1	Mechanic I	
1351	Medical Equipment Technician II		0	18	0	8	250	f	EMPLOYEE	A1	Medical Eqpt. Tech. II	
1102	Museum Researcher I		0	1	0	10	16	f	EMPLOYEE	A1	Museum Researcher I	
1830	Photo Journalist I		0	24	0	6	672	\N	EMPLOYEE	A1	Photo Journalist I	
1993	Watchman		0	0	0	2	831	\N	EMPLOYEE	A1	Watchman	
1319	Cooperative Development Specialist IV		0	29	0	0	250	f	EMPLOYEE		Coop. Dev't. Specialist IV	
1846	Planning Development Assistant I		0	9	0	8	688	\N	EMPLOYEE	A1	Planning Dev. Asst. I	
418	Nurse II		0	17	0	17	131	f	EMPLOYEE	A1	Nurse II	
1995	Information System Analyst II	Information System Analyst II	0	0	0	1	833	\N	EMPLOYEE		ISA II	
1996	Planning Development Officer II	Planning Development Officer II	0	0	0	0	834	\N	EMPLOYEE		PDO II	
1997	Provincial Agriculturist		0	0	0	26	835	\N	SUPERVISOR	A1	Prov'l. Agriculturist	
1998	Aquacultural Technician II		0	0	0	8	836	\N	EMPLOYEE	A1	Aquacultural Tech. II	
1999	SENIOR ADMINISTRATIVE ASSISTANT II		0	0	0	14	837	\N	EMPLOYEE	A1	SR. ADMIN. ASSISTANT II	
2000	ADMINISTRATIVE AIDE III		0	0	0	3	838	\N	EMPLOYEE	A1	ADMIN. AIDE III	
2001	ARCHITECT IV		0	0	0	22	839	\N	EMPLOYEE	A1	ARCHITECT IV	
2002	ADMINISTRATIVE ASSISTANT II (LABOR GENERAL FOREMAN)		0	0	0	8	840	\N	EMPLOYEE	A1	LABOR GENERAL FOREMAN	
2003	SENIOR LABOR AND EMPLOYMENT OFFICER		0	0	0	19	841	\N	SUPERVISOR	A1	SR. LABOR & EMPLOYMENT OFFICER	
1203	Administrative Aide II (Driver I) for deletion		0	7	0	3	166	f	EMPLOYEE	A1	Driver I	
2004	ADMINISTRATIVE AIDE I		0	0	0	1	842	\N	EMPLOYEE	A1	ADMIN. AIDE I	
2005	MUSEUM RESEARCHER II		0	0	0	14	843	\N	EMPLOYEE	A1	MUSEUM RESEARCHER II	
1653	Administrative Officer IV		0	13	0	15	498	\N	EMPLOYEE	A1	AO IV	
2006	ADMINISTRATIVE OFFICER V		0	0	0	18	844	\N	SUPERVISOR	A1	ADMIN. OFFICER V	
2007	YOUTH DEVELOPMENT OFFICER III		0	0	0	18	845	\N	EMPLOYEE	A1	YOUTH DEV'T. OFFICER III	
157	Administrative Assistant II (Budgeting Assistant)		0	11	12	8	88	f	EMPLOYEE	A1	Budgeting Asst.	
1992	Budgeting Assistant		0	0	0	8	830	\N	EMPLOYEE	A1	Budgeting Asst.	
2008	PROVINCIAL POPULATION OFFICER		0	0	0	26	846	\N	SUPERVISOR	A1	PROV'L. POPULATION OFFICER	
1994	Administrative Assistant II	Administrative Assistant	0	0	0	8	832	\N	EMPLOYEE	A1	Admin. Assistant II	
2010	PROVINCIAL TREASURER (PROVINCIAL GOVERNMENT DEPARTMENT HEAD)		0	0	0	26	848	\N	SUPERVISOR	A1	PROVINCIAL TREASURER	
2011	EXECUTIVE ASSISTANT I		0	0	0	14	849	\N	EMPLOYEE	A1	EXECUTIVE ASSISTANT I	
2012	HOUSING AND HOMESITE REGULATION OFFICER II		0	0	0	13	850	\N	EMPLOYEE	A1	HOUSING & HOMESITE REGULATION OFFICER II	
2013	SECRETARY TO THE SANGGUNIANG PANLALAWIGAN		0	0	0	26	851	\N	SUPERVISOR	A1	SECRETARY TO THE SP	
2014	Sangguniang Panlalawigan Member (Interim)		0	0	0	27	852	\N	SUPERVISOR	A1	SP Member	
2015	TEACHER I		0	0	0	1	853	\N	EMPLOYEE	A1	TEACHER I	Technical
234	Administrative Officer IV (Human Resource Management Officer II)		0	8	10	15	50	f	HR OFFICER	A1	HRMO II	Administrative
206	Administrative Officer II		0	11	12	15	91	f	EMPLOYEE	A1	AO II	Administrative
2009	ADMINISTRATIVE ASSISTANT III		0	0	0	9	847	\N	EMPLOYEE	A1	ADMIN. ASSIST. III	Administrative
\.


--
-- TOC entry 4655 (class 0 OID 0)
-- Dependencies: 395
-- Name: Positions_PositionId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Positions_PositionId_seq"', 2015, true);


--
-- TOC entry 4018 (class 0 OID 17535)
-- Dependencies: 396
-- Data for Name: Questionnaires; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Questionnaires" ("QuestionnaireId", "BasicInformationId", "Q36a", "Q36b", "Q37a", "Q37b", "Q38", "Q39", "Q40", "Q41a", "Q41b", "Q41c", "Q25a", "Q25b", "Q34a", "Q34b", "Q35a", "Q35b", "Q38a", "Q38b", "Q40a", "Q40b", "Q40c") FROM stdin;
3395	3598	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3396	3600	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3397	3599		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3398	3602	No	\N	FINISH CONTRACT	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3399	3603	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3400	3604	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3403	3607	No	\N	RESIGNATION	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3404	3608	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3405	3609	No	\N	RESIGNATION	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3401	3605		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3406	3601		\N		\N	\N		\N	\N	\N	\N	\N	\N									
3446	3649	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3407	3610	No	\N	RESIGNATION	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3408	3611	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3409	3612	No	\N		\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3402	3606	No	\N	RESIGNATION - I HAVE TO LOOK AFTER MY NEWBORN CHILD	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	Yes
3445	3648	No	\N	No	\N	\N		\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3411	3614	No	\N	RESIGNATION	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3412	3615	No	\N	RESIGNATION	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3410	3613		\N	RESIGNATION	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3413	3616	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3414	3617	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No		No	No	No	No	No	No
3415	3618	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3416	3619	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3418	3621	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3417	3620	No	\N	RESIGNATION	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3419	3622		\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3444	3647	No	\N	RESIGNATION- BANK OF COMMERCE	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3421	3624	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3420	3623	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3423	3626	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3424	3627	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3425	3628	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3422	3625	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3426	3629		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3460	3663	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3427	3630	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3428	3631	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3430	3633	No	\N	RESIGNATION	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3429	3632	No	\N	RESIGNATION	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3432	3635	No	\N	RESIGNATION	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3466	3669	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3435	3638	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	093-040
3431	3634	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3433	3636	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3436	3639	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3434	3637	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3450	3653	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3440	3643	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3437	3640	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3459	3662	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3451	3654	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3439	3642	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3438	3641	No	\N	I PERSONALLY FILED FOR RESIGNATION	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3442	3645	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3443	3646	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3441	3644		\N		\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3447	3650	No	\N	RESIGNATION	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3449	3652	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3452	3655	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3462	3665	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3461	3664	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3453	3656	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3448	3651	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No			
3467	3670	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No		No	No	No
3455	3658	No	\N	RESIGNATION	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3457	3660	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3456	3659	No	\N	CHANGE OF RESIDENCE 	\N	\N	No	\N	\N	\N	\N	\N	\N	No		No	No	No	No	No	No	No
3458	3661	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3454	3657	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3473	3676	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3465	3668	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3463	3666	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No			
3469	3672	No	\N	RESIGNED-FOR GREENER PASTURE	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3470	3673	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3464	3667	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No		No	No	No
3471	3674	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3468	3671	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3472	3675	No	\N		\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3474	3677	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3475	3678	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3478	3681	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3477	3680	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3476	3679	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3479	3682	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	2023-093-011	No
3481	3684	No	\N	Yes	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3480	3683	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3483	3686	No	\N	RESIGNATION	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3484	3687	No	\N	RESIGNATION	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3485	3688	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	Yes
3486	3689	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3489	3692	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3482	3685	No	\N	RESIGNATION- I ACCEPTED MY JOB IN DEPED	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3492	3695	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3487	3690	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3488	3691	No	\N	FINISHED CONTRACT	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3491	3694	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3490	3693	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3541	3744		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3493	3696	No	\N	RESIGNED - LPU BATANGAS	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No		No	No	No			
3542	3745		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3495	3698	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3497	3700	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3494	3697	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3543	3746		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3498	3701	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3501	3704	No	\N	RESIGNATION- PRIVATE SECTOR	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3499	3702	No	\N	Yes	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3496	3699	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3500	3703	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3503	3706	No	\N		\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3504	3707	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3502	3705	No	\N	No	\N	\N	No	\N	\N	\N	\N	\N	\N	No	No	No	No	No	No	No	No	No
3505	3708		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3506	3709		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3507	3710		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3508	3711		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3509	3712		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3510	3713		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3511	3714		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3512	3715		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3513	3716		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3514	3717		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3515	3718		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3516	3719		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3517	3720		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3518	3721		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3519	3722		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3520	3723		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3521	3724		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3522	3725		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3523	3726		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3524	3727		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3525	3728		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3526	3729		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3527	3730		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3529	3732		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3528	3731		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3530	3733		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3531	3734		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3532	3735		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3533	3736		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3534	3737		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3535	3738		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3536	3739		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3537	3740		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3538	3741		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3539	3742		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3540	3743		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3544	3747		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3545	3748		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3546	3749		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3547	3750		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3548	3751		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3549	3752		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3550	3753		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3551	3754		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3552	3755		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3553	3756		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3554	3757		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3555	3758		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3556	3759		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3557	3760		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3558	3761		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3559	3762		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3560	3763		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3561	3764		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3562	3765		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3563	3766		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3565	3768		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3564	3767		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3566	3769		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3569	3772		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3571	3774		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3572	3775		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3573	3776		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3574	3777		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3575	3778		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3568	3771		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3567	3770		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3577	3780		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3576	3779		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3570	3773		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3578	3781		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3579	3782		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3581	3784		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3580	3783		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3582	3785		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3583	3786		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3584	3787		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3585	3788		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3586	3789		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3587	3790		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3588	3791		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3589	3792		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3590	3793		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3591	3794		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3592	3795		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3594	3797		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3593	3796		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3595	3798		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3596	3799		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3597	3800		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3598	3801		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3600	3803		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3601	3804		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3602	3805		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3603	3806		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3604	3807		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3599	3802		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3605	3808		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3606	3809		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3609	3812		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3610	3813		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3607	3810		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3612	3815		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3611	3814		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3608	3811		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3614	3817		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3613	3816		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3616	3819		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3619	3822		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3620	3823		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3615	3818		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3621	3824		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3622	3825		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3617	3820		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3618	3821		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3626	3829		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3623	3826		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3624	3827		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3628	3831		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3629	3832		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3625	3828		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3627	3830		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3630	3833		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3634	3837		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3631	3834		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3636	3839		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3638	3841		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3637	3840		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3635	3838		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3639	3842		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3633	3836		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3640	3843		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3632	3835		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3641	3844		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3643	3846		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3642	3845		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3647	3850		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3645	3848		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3648	3851		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3644	3847		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3650	3853		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3649	3852		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3651	3854		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3652	3855		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3646	3849		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3653	3856		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3655	3858		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3654	3857		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3657	3860		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3656	3859		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3660	3863		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3658	3861		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3663	3866		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3664	3867		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3665	3868		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3661	3864		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3666	3869		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3659	3862		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3667	3870		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3668	3871		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3662	3865		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3669	3872		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3670	3873		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3671	3874		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3672	3875		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3674	3877		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3673	3876		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3675	3878		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3678	3881		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3676	3879		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3679	3882		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3680	3883		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3713	3916		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3714	3917		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3715	3918		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3716	3919		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3717	3920		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3718	3921		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3719	3922		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3677	3880		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3720	3923		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3721	3924		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3722	3925		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3755	3958		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3757	3960		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3758	3961		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3756	3959		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3759	3962		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3761	3964		\N		\N	\N		\N	\N	\N	\N	\N	\N									
3762	3965		\N		\N	\N		\N	\N	\N	\N	\N	\N									
3763	3966		\N		\N	\N		\N	\N	\N	\N	\N	\N									
3760	3963		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
3764	3967		\N		\N	\N		\N	\N	\N	\N	\N	\N				No					
\.


--
-- TOC entry 4656 (class 0 OID 0)
-- Dependencies: 397
-- Name: Questionnaires_QuestionnaireId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Questionnaires_QuestionnaireId_seq"', 3764, true);


--
-- TOC entry 4020 (class 0 OID 17552)
-- Dependencies: 398
-- Data for Name: RFIDParameters; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "RFIDParameters" ("RFIDParameterId", "EthernetReaderEnabled", "USBReaderEnabled", "KioskReaderEnabled", "RequiredDevice", "BiometricsEnabled", "AccuracyPercentage", "DigitalPersonaEnabled", "FaceScannerServerIp", "FaceScannerServerAccessKey", "MaximumNormalTemperature", "AcsNfcReaderEnabled") FROM stdin;
1	f	f	f	both	f	20	f			37.50	f
\.


--
-- TOC entry 4657 (class 0 OID 0)
-- Dependencies: 399
-- Name: RFIDParameters_RFIDParameterId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"RFIDParameters_RFIDParameterId_seq"', 1, false);


--
-- TOC entry 4022 (class 0 OID 17568)
-- Dependencies: 400
-- Data for Name: Rankings; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Rankings" ("RankName", "RankingLevel", "RankId") FROM stdin;
Rank and File	3	1
Casual	4	2
Managerial	1	3
Supervisory	2	4
New Rank	1	5
Executive Director	99	6
\.


--
-- TOC entry 4658 (class 0 OID 0)
-- Dependencies: 401
-- Name: Rankings_RankId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Rankings_RankId_seq"', 6, true);


--
-- TOC entry 4659 (class 0 OID 0)
-- Dependencies: 403
-- Name: RateType_RateTypeId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"RateType_RateTypeId_seq"', 16, true);


--
-- TOC entry 4024 (class 0 OID 17576)
-- Dependencies: 402
-- Data for Name: RateTypes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "RateTypes" ("RateTypeId", "RateDescription", "Description") FROM stdin;
1	Daily	
3	Hourly	
4	Monthly	
2	Annual	
\.


--
-- TOC entry 4026 (class 0 OID 17584)
-- Dependencies: 404
-- Data for Name: Recognitions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Recognitions" ("RecognitionId", "RecognitionName", "BasicInformationId") FROM stdin;
560	MERITORIOUS PERFORMANCE AWARD - DEPED BATANGAS CITY (01/23/2024)	3604
561	DEDICATED EMPLOYEES WITHOUT ABSENCES, LEAVES AND TARDINESS (DEALT) AWARDEE IN GAWAD KAWANI (12/11/2023)	3604
562	SECRETARIAT OF THE PERFORMANCE MANAGEMENT PILLAR - PRIME HRM (2023)	3604
563	TWG-DOCUMENTER ON FINANCIAL ADVANCEMENT SKILLS FOR SCHOOLS AND ADMINISTRATORS AND FINANCE AND ADMINISTRATIVE PERSONNEL (2023)	3604
564	RESOURCE SPEAKER IN THE CAPACITY BUILDING: PROMOTING TRANSPARENCY, ACCOUNTABILITY AND OPTIMIZED USE OF SCHOOL RESOURCES (2021)	3604
565	TWG IN THE DIVISION ROLL-OUT: PROCEDURAL GUIDELINES ON THE MANAGEMENT OF CASH ADVANCES FOR SCHOOL MOOE AND PROGRAM FUNDS OF NON-IUs PURSUANT TO COA, DBM, DEPED JC NO. 2019-1 (2020)	3604
566	FACILITATOR IN THE CAPACITY BUILDING FOR SCHOOL HEADS AND FINANCIAL STAFF ON THE PROPER UTILIZATION OF MOOE FUNDS (2019)	3604
567	3RD PLACE IN BADMINTON DOUBLES (GIRLS) COMPETITION DURING 2023 SDO BATANGAS CITY INTERCOLORS SPORTS COMPETITION ON AUGUST 24, 2023	3607
568	CERTIFICATE OF RECOGNITION FOR SERVICE RENDERED AS DOCUMENTER DURING 1ST GAWAD KAWANI OF SDO BATANGAS CITY HELD ON DECEMBER 11, 2023 AT CITY TRAVEL HOTEL, KISA ROAD, BAGUIO CITY	3607
569	CERTIFICATE OF RECOGNITION FOR SERVICE RENDERED AS SECRETARIAT IN PERFORMANCE MANAGEMENT (PM) SYSTEM TO ACHIEVE MATURITY LEVEL 2 HELD ON DECEMBER 11, 2023 AT CITY TRAVEL HOTEL, KISAD ROAD, BAGUIO CITY	3607
570	DEDICATED EMPLOYEES WITHOUT ABSENCES, LEAVES AND TARDINESS (DEALT) AWARD FOR THE MONTH OF SEPTEMBER 2023 AWARDED ON DECEMBER 11, 2023 AT CITY TRAVEL HOTEL, KISAD ROAD, BAGUIO CITY	3607
571	CERTIFICATE OF RECOGNITION FOR SERVICE RENDERED AS TWG CO-CHAIR DURING DEPED 12 DAYS OF CHRISTMAS WITH THEME: MAKULAY ANG PASKO NG PAMILYANG PILIPINO HELD ON DECEMBER 18, 2023 AT BULWAGAN ALA-EH SDO BATANGAS CITY	3607
572	CERTIFICATE OF PARTICIPATION IN KAPEHANG ALA- EH- SEARCH FOR CALENDAR MODEL ON JANUARY 3, 2024 AT BULWAGAN ALA-EH, SDO BATANGAS CITY	3607
573	MERITORIOUS PERFORMANCE AWARD GIVEN ON JANUARY 23, 2024 AT BULWAGANG ALA-EH, SDO BATANGAS CITY	3607
574	CERTIFICATE OF RECOGNITION AS RESOURCE SPEAKER "TECHNICAL ASSISTANCE CUM WEBINAR ON THE PREPARATION OF BANK RECONCILIATION STATEMENT, PROPER IMPLEMENTATION OF CHECKING ACCOUNT AND UPDATES ON FINANCE ISSUES"	3608
575	CERTIFICATE OF PARTICIPATION AS RESOURCE SPEAKER "CAPACITY BUILDING: PROMOTING TRANSPARENCY, ACCOUNTABILITY AND OPTIMIZED USE OF SCHOOL RESOURCES"	3608
576	CERTIFICATE OF RECOGNITION AS RESOURCE SPEAKER "SEMINAR WORKSHOP ON THE IMPLMENTATION OF WEB-BASED MONITORING SYSTEM OF SCHOOL MOOE FUNDS"	3608
577	CERTIFICATE OF RECOGNITION AS RESOURCE SPEAKER "FINANCIAL ADVANCEMENT SKILLS FOR SCHOOL ADMINISTRATORS AND FINANCE & ADMINISTRATIVE PERSONNEL"	3608
578	CHAIRMAN - TWG ON FINALIZATION OF YEAR - END REPORTS AND PERFORMANCE REVIEW FOR FY 2022	3609
579	TWG CHAIRPERSON ON SEMINAR WORKSHOP ON THE IMPLEMENTATION OF WEB- BASED MONITORING SYSTEM OF SCHOOL MOOE FUNDS 	3609
580	CHAIRMAN- TWG ON DIVISION ROLL- OUT OF DEPED ORDER NO. 29, S.2019: RE PROCEDURAL GUIDELINES ON THE MANAGEMENT OF CASH ADVANCES FOR SCHOOL  	3609
581	TWG- CO-CHAIRPERSON - PROCUREMENT AND DISTRIBUTION OF MATERIALS IN 2022 DIVISION GAWAD ALA EH CUM EDUCATION WEEK CELEBRATION 	3609
582	FACILITATOR - CAPACITY BUILDING FORV SCHOOL HEADS AND FINANCIAL STAFF ON THE PROPER UTILIZATION OF MOOE FUNDS 	3609
583	MEMBER- INTERNAL QUALITY AUDIT ( IQA) 	3609
584	BEST IN FEASIBILITY STUDIES- BATANGAS STATE UNIVERSITY 	3609
585	2023 CHAIRPERSON- FINANCIAL ADVANCEMENT SKILLS FOR SCHOOL ADMINISTRATORS AND FINANCE AND ADMINISTRATIVE PERSONNEL	3610
586	2023 FACILITATOR- FINANCIAL ADVANCEMENT SKILLS FOR SCHOOL ADMINISTRATORS AND FINANCE AND ADMINISTRATIVE PERSONNEL	3610
587	2020 FACILITATOR- TECHNICAL ASSISTANCE CUM WEBINAR ON PREPARATION OF STATEMENT OF BANK RECONCILIATION, PROPER IMPLEMENTATION OF CHECKING	3610
588	MERITORIOUS PERFORMANCE AWARD JANUARY 23, 2024	3611
589	FINANCIAL ADVANCEMENT SKILLS FOR SCHOOL ADMINISTRATORS AND FINANCE AND ADMINISTRATIVE PERSONNEL MAY 15-17 2023	3611
590	CAPACITY BUILDING: PROMOTING TRANSPARENCY, ACCOUNTABILITY, AND OPTIMIZED USE OF SCHOOL RESOURCES AUGUST 17-19, 2021	3611
591	CAPACITY BUILDING PROGRAM ON THE FOUNDATION OF ORGANIZATIONAL DEVELOPMENT- CUSTOMER SERVICE- NOVEMBER 16-17, 2017	3611
592	CONTINUOUS IMPROVEMENT PROGRAM (CIP) OF BATANGAS PROVINCE (PROJECT 2EMOOES- EFFECTIVE EVALUATION OF MOOE SUBSIDY) AUGUST 12, 2016	3611
593	DIVISION MANAGEMENT DEVELOPMENT TRAINING FOR ELEMENTARY SCHOOL HEADS HELD AT ROSARIO EAST CENTRAL SCHOOL ON JUNE 4-6 2003	3611
594	DIVISION SEMINAR ON THE UTILIZATION OF LESSON GUIDES HELD AT SAN PASCUAL CENTRAL SCHOOL ON MAY 27-30 2003	3611
595	DIVISION MANAGEMENT DEVELOPMENT TRAINING FOR ELEMENTARY SCHOOLS PRINCIPALS HELD AT STO. TOMAS CENTRAL SCHOOL ON MAY 13-15 2003	3611
596	OUTSTANDING- NON TEACHING PERSONNEL LEVEL 2- DIVISION LEVEL	3606
597	OUTSTANDING SCHOOLS DIVISION  ACCOUNTANT - REGIONAL LEVEL 	3606
598	OUTSTANDING DISTRICT OFFICER - LIONS CLUBSW INTERNATIONAL, DISTRICT 301 A2 PHILIPPINES 	3606
599	LEADERSHIP AWARD - PHILIPPINES INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS  	3606
600	PLAQUE OF RECOGNITION - GOVERNMENT ASSOCIATION OF CERTIFIED PUBLLIC ACCOUNTANTS	3606
601	PLAQUE OF RECOGNITION- PHILIPPINE  INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS	3606
602	OUTSTANDING CLUB PRESIDENT - LIONS CLUBS INTERNATIONAL, DISTRICT 301 A2 PHILIPPINES	3606
603	2023 CHAIRPERSON- FINANCIAL ADVANCEMENT SKILLS FOR SCHOOL ADMINISTRATOR AND FINANCE & ADMINISTRATIVE PERSONNEL	3614
604	2023 FACILITATORS- FINANCIAL ADVANCEMENT SKILLS FOR SCHOOL ADMINISTRATORS AND FINANCE & ADMINISTRATIVE PERSONNEL	3614
605	2020 FACILITATORS- TECHNICAL ASSISTANCE CUM WEBINAR ON PREPARATION OF STATEMENT OF BANK RECONCILIATION, PROPER IMPLEMENTATION OF CHECKING	3614
606	2023- RESOURCE SPEAKER- DIVISION LEVEL AND SCHOOL LEVEL 	3615
607	2022- RESOURCE SPEAKER- DIVISION LEVEL AND SCHOOL LEVEL	3615
608	2021- CO-CHAIRMAN- DIVISION ROLL-OUT OF DEPED ORDER NO.029 S. 2019 RE: PROCEDURAL GUIDELINES ON THE MANAGEMENT OF CASH ADVANCES 	3615
609	2020- FACILITATOR- TECHNICAL ASSISTANCE CUM WEBINAR ON PREPARATION OF STATEMENT OF BANK RECONCILIATION	3615
610	2019- CAPACITY BUILDING FOR SCHOOL HEADS AND FINANCIAL STAFF ON THE PROPER UTILIZATION OF MOOE FUNDS	3615
611	MERITORIOUS PERFORMANCE AWARDS	3613
612	DEALT ( DEDICATED EMPLOYEES WITHOUT ABSENCES, LEAVES AND TARDINESS) AWARDEE FOR THE MONTH OF SEPTEMBER 2023 	3613
613	TIME MARCHES ON YOUR HEART -POLYTECHNIC UNIVERSITY OF THE PHILIPPINES (RESOURCE SPEAKER IN CHARACTER DEVELOPMENT SEMINAR)	3613
614	SIX (6)  YEARSC OF EXCEPTIONAL VOLUNTARY SERVICE TO CONNECT CHURCH DSL, INC. AS CORPORATE ACCOUNTING ASSOCIATE 	3613
615	SIX (6)  YEARSC OF EXCEPTIONAL VOLUNTARY SERVICE TO CONNECT CHURCH DSL, INC. AS CORPORATE ACCOUNTING ASSOCIATE 	3613
616	GAWAD KAWANI: CUSTOMER-FRIENDLY PUBLIC SERVANT (2023)	3616
617	CERTIFICATE OF RECOGNITION: FOR COMMITTMENT, DELIGENT WORK, PROMPTNESS TO ADDRESS SERVICE WITH FLEXIBILITY AND RESPONSIBILITY (2023)	3616
618	CERTIFICATE OF RECOGNITION: INVALUABLE SERVICE RENDERED AS FINANCE OFFICER/PROCUREMENT OF MEALS (2023)	3616
619	CERTIFICATE OF RECOGNITION: INVALUABLE SERVICE RENDERED AS TWG MEMBER - FOOD PROCUREMENT 2022	3616
620	CERTIFICATE OF RECOGNITION: INVALUABLE SERVICE RENDERED AS CO-CHAIRPERSON - PROCUREMENT (2022)	3616
621	CERTIFICATE OF RECOGNITION: EXEMPLARY PERFORMANCE AS SDO PERSONNEL (2019)	3616
622	GRADUATE OF BS THEOLOGY 2022	3621
623	MERITORIOUS PERFORMANCE AWARD- DEPED SCHOOLS DIVISION OF BATANGAS CITY 2023	3621
624	CHAMPION- 2023 SDO BATANGAS CITY INTERCOLORS SPORT COMPETITION BADMINTON DOUBLES, VOLLEYBALL, BASKETBALL COMPETITION	3621
625	RESOURCE SPEAKER- CAPACITY BUILDING FOR SCHOOL HEADS AND FINANCIAL STAFF ON THE PROPER UTILIZATION OF MOOE FUNDS 2019	3621
626	TWG MEMBER- IMPLEMENTATION OF WEB-BASED MONITORING SYSTEM OF SCHOOL MOOE FUNDS 2022	3621
627	RESOURCE SPEAKER & TWG MODERATOR- FINANCIAL ADVANCEMENT SKILLS FOR SCHOOL ADMINISTRATORS AND FINANCE AND ADMINISTRATIVE PERSONNEL	3621
628	OUTSTANDING DEPENDABILITY AWARD 	3620
629	DEDICATED EMPLOYEE WITHOUT ABSENCE, LEAVE AND TARDINESS - MONTH OF SEPTEMBER	3620
630	OUTSTANDING EMPLOYEE WITHOUT ABSENCE, LEAVES AND TARDINESS - MONTH OF OCTOBER	3620
631	HEALTH AND SAFETY AWARD ( GIVEN BY NATIONAL OIWELL VARCO ON DECEMBER 3, 2014)	3622
632	BEST RESEARCH PAPER- SOCIAL SCIENCES CATEGORY (BATANGAS STATE UNIVERSITY 11TH COLLEGE OF ARTS AND SCIENCES STUDENT RESEARCH FORUM)	3624
633	PAPER PRESENTER- 57TH ANNUAL NATIONAL PSYCHOLOGICAL ASSOCIATION OF THE PHILIPPINES CONVENTION	3624
634	FACILITATOR 	3633
635	LOYALTY AWARD	3633
636	DEALT AWARD 	3634
637	TECHNICAL/ SUPPORT STAFF-BASKETBALL: PHYSICAL WELLNESS ACTIVITIES FOR EMPLOYEES WELFARE- AUGUST 24,2023	3639
638	RESOURCE SPEAKER- FINANCIAL ADVANCEMENT SKILLS FOR SCHOOL ADMINISTRATORS AND FINANCE AND ADMINISTRATIVE PERSONNEL- MAY 15-17, 2023	3639
639	RESOURCE SPEAKER- CAPACITY BUILDING: PROMOTING TRANSPARENCY, ACCOUNTABILITY AND OPTIMIZED USE OF SCHOOL RESOURCES- AUGUST 17-18,2021	3639
640	MEMBER OF 7S COMMITTEE DURING THE 2ND SURVEILLANCE AUDITY BY THE TUV NORD- DECEMBER 4, 2020	3639
641	MEMBER- DOCUMENT CUSTODIAN COMMITTEE (DCC)- ISO 9001:2015 QUALITY  MANAGEMENT SYSTEM CERTIFICATION- JANUARY 30,2019	3639
642	DOCUMENTER- 1ST GAWAD KAWANI 2023	3643
643	VALIDATOR- GAWAD ALA EH 2022	3643
644	POSITIVE PARTICIPATOR AWARD- SGOD DEPED BATANGAS CITY	3643
645	TOP PERFORMER CAREER LEVEL 3- 1ST QUARTER F.Y. 2019	3643
646	TOP PERFORMER CAREER LEVEL 3- 1ST QUARTER F.Y. 2018	3643
647	SOFTBALL/ BASKETBALL/ COACHING	3640
648	ICT TECHNICAL OFFICER	3640
649	EMPLOYEE OF THE YEAR (PILIPINAS MAKRO, INC. BATANGAS BRANCH- DECEMBER 2004)	3645
650	CAPACITY BUILDING FOR SCHOOL HEADS AND FINANCIAL STAFF ON THE PROPER UTILIZATION MOOE FUNDS TWG- MEMBER	3641
651	DIVISION ROLL -OUT OF ORDER  NO. 029,s 2019 : RE PROCEDURAL GUIDELINES ON THE MANAGEMENT OF CASH ADVANCES FOR SCHOOL MOOE AND PROGRAM FUNDS OF NON - IUs PURSUANT TO COA, DBM ,DEPED JC NO. 2019- 1 TWG -MEMBER	3641
652	2020 DIVISION  GAWAD ALA EH - MEMBER OF 7S COMMITTEE	3641
653	2022 DIVISION GAWAD ALA EH CUM EDUCATION WEEKS CELEBRATION TWG - MEMBER -USHERETTES	3641
654	SAFE SPACES ACT AND GENDER POLICIES TWG - DOCUMENTATION  COMMITTEE 	3641
655	FINANCIAL ADVANCEMENT SKILLS FOR SCHOOL ADMINISTRATORS AND FINANCE AND ADMINISTRATIVE PERSONNEL TWG - PROGRAM COMMITTEE	3641
656	PHYSICAL WELLNESS ACTIVITIES FOR EMPLOYEES' WELFARE -TECHICAL/SUPPORT STAFF -MOBILE LEGENDS 	3641
657	DEPED 12 DAYS OF CHRISTMAS LOGISTICS OFFICER - CHAIR ( REGISTRATION & ATTENDANCE) 	3641
658	1ST GAWAD KAWANI - MEMBER IN REWARDS & RECOGNITION ( R & R ) 	3641
659	MERITORIOUS PERFORMANCE AWARDS	3641
660	INFORMATION COMMUNICATION TECHNOLOGY SUPPORT	3642
661	MEMBER- DOCUMENT CUSTODIAN COMMITTEE (DCC)- ISO 9001-2015 QUALITY MANAGEMENT SYSTEM	3646
662	MERITORIOUS PERFORMANCE AWARD JANUARY 23, 2024	3644
663	RESOURCE SPEAKER - ORIENTATION ON LEARNER INFORMATION SYSTEM ( LIS) ENCODING  	3644
664	FACILATOR- DIVISION FY 2019 BUDGET PREPARATION FOR NON- IMPLEMENTING UNITS 	3644
665	TECHNICAL WORKING GROUP- CAPACITY BUILDING FOR SCHOOL HEADS AND FINANCIAL STAFF ON THE PROPER UTILIZATION OF MOOE FUNDS	3644
666	FACILITATOR- ORIENTATION ON THE UPLOADING AND  VALIDATION OF DATA IN BASIC EDUCATION INFORMATION SYSTEM ( BEIS) 	3644
667	TWG MEMBER- SEMINAR WORKSHOP ON THE IMPLEMENTATION OF WEB - BASED MONITORING SYSTEM OF SCHOOL MOOE FUNDS 	3644
668	TECHNICAL WORKING GROUP- FINANCIAL ADVANCEMENT SKILLS FOR SCHOOL ADMINISTRATORS AND FINANCE & ADMINISTRATIVE PERSONNEL 	3644
669	OUTSTANDING MEMBER SILAHIS NG PAGKAKAISA 	3644
670	MERITORIOUS PERFORMANCE AWARD- DEPED SDO BATANGAS CITY	3647
671	DOCUMENTER- 1ST GAWAD KAWANI- - DEPED SDO BATANGAS CITY	3647
672	DEDICATED EMPLOYEES WITHOUT ABSENCES, LEAVING AND TARDINESS OCTOBER 2023 - DEPED SDO BATANGAS CITY	3647
673	CERTIFICATE OF RECOGNITION- TECHNICAL WORKING GROUP DURING THE CONTINOUS IMPROVEMENT PROJECT 	3652
674	CERTIFICATE OF RECOGNITION - FACILITATOR DURING CAPACITY BUILDING FOR SCHOOL HEADS AND FINANCIAL STAFF ON THE PROPER UTILIZATION OF MOOE FUNDS	3652
675	CERTIFICATE OF RECOGNITION - EXEMPLARY PERFORMANCE AS SDO PERSONNEL AT SDO BATANGAS CITY	3652
676	CERTIFICATE OF COMPLETION -GUIDELINES FOR AUDITING MANAGEMENT SYSTEM TRAING COURSE	3652
677	CERTIFICATE OF COMPLETION - GUIDELINES OF AUDITING MANAGEMENT SYSTEM INTERNAL AUDIT COURSE	3652
678	CERTIFICATE OF RECOGNITION - FACILITATOR IN THE DIVISION FY 2019 BUDGET PREPARATION FOR NON - IMPLEMENTING UNITS	3652
679	CERTIFICATE OF RECOGNITION - FACILITATOR DURING THE DIVISION SEMINAR WORKSHOP ON THE PREPARATION AND CONSOLIDATION OF FY 2017 YEAR END FINANCIAL REPORTS 	3652
680	BEST BRIGADA ESKWELA IMPLEMENTER	3656
681	PRINCIPAL OF SAN AGAPITO NATIONAL HIGH SCHOOL- GAWARD PARANGAL PARA SA HUWARANG PAARALAN 2009	3656
682	HUWARANG PAMILYANG BATANGUENO PILIPINO (BARANGAY LEVEL, CITY LEVEL AND PROVINCIAL LEVEL)	3656
683	OUTSTANDING DIVISION ASEP COORDINATOR	3656
684	OFFICE FASHIONISTA AWARD	3651
685	REGIONAL  RECOGNITION FOR ACCOMPLISHMENTS ON BFAR 2021	3651
686	DEALTAWARD	3651
687	AGARAWANG GAWD	3659
688	GAWAD KAWANI AWARDEE- SPARKLER AWARD	3666
689	DIVISION OUTSTANDING PUBLIC SCHOOLS DISTRICT SUPERVISOR	3666
690	REGIONAL OUTSTANDING PUBLIC SCHOOLS DISTRICT SUPERVISOR- FINALIST FOR 2 YEARS- 2015 AND 2016	3666
691	DIVISION OUTSTANDING PUBLIC SCHOOLS DISTRICT SUPERVISOR FOR 2 YEARS	3666
692	PHIL. NORMAL UNIVERSITY OUTSTANDING ALUMNUS BATANGAS CITY CHAPTER	3666
693	OUTSTANDING SCHOOL HEAD	3666
694	OUTSTANDING TEACHER 	3666
695	MOST OUTSTANDING PRINCIPAL (DIVISION LEVEL) 2015 AND 2017	3673
696	OUTSTANDING PUBLIC SCHOOLS DISTRICT SUPERVISORS ( CID) 2022	3675
697	EMPLOYEE OF THE YEAR	3678
698	DIVISION OUTSTANDING EDUCATION PROGRAM SUPERVISOR	3678
699	OUTSTANDING EDUCATION PROGRAM SUPERVISOR IN THE CID FOR CY 2021 & 2022 CID 	3678
700	BEST LITERACY VIDEO 	3678
701	OUTSTANDING RESEARCH 	3678
702	BEST RESEARCHER PAPER AWARD AND BEST ORAL PRESENTER 	3680
703	DATA ANALYTICS AWARD 	3680
704	BEST SGOD SECTION EMPLOYEE	3680
705	OUTSTANDING SCHOOL HEAD IN DISTRICT, DIVISION AND REGIONAL LEVEL	3682
706	WITH SCHOOL BEST BRIGADA ESKWELA IMPLEMENTER 2021 AND 2022 AWARD	3682
707	NOMINEE FOR THE SCHOOL SBM IMPLEMENTER AWARD 2021/ AWARDEE IN THE SAME CATEGORY FOR 2022	3682
708	NOMINEE FOR THE BEST PERFORMING SCHOOL AWARD 2021/ AWARDEE IN THE SAME CATEGORY FOR 2022	3682
709	NOMINEE READING PROGRAM AWARD 2021, AWARDEE FOR 2022	3682
710	MERITORIOUS AWARDEE	3688
711	MERITORIOUS PERFORMANCE AWARD	3690
712	MOST PUNCTUAL EMPLOYEE AWARD 	3689
713	BSP- BRONZE  SERVICE AWARD	3689
714	FIRST PLACE AWARD- EDITORIAL WRITING 	3689
715	OUTSTANDING ALUMNI AWARD	3689
716	AUTHOR/ RESEARCHER OF RESEARCH PRESENTED & PUBLISHED  	3689
717	OUTSTANDOIING RESEARCHER OF THE YEAR 	3689
718	MERITORIOUS PERFORMANCE AWARD	3694
719	DEALT (DEDICATED, EMPLOYEES WITHOUT ABSENCES, LEAVES AND TARDINESS) AWARD	3694
720	EDUCATIONAL ADVANCEMENT AWARD	3694
721	POSITIVE PARTICIPATOR AWARD	3694
722	2022 OUTSTANDING EDUCATOR- INTERNATIONAL 	3695
723	2021 OUTSTANDING EDUCATION PROGRAM SUPERVISOR	3695
724	2018 OUTSTANDING EDUCATION PROGRAM SUPERVISOR 	3695
725	2017 OUTSTANDING EDUCATION PROGRAM SUPERVISOR 	3695
726	2016 OUTSTANDING RESEARCHER- IV A CALABARZON 	3695
727	2016 BEST DIVISION RESEARCHER- SDO BATANGAS CITY 	3695
728	2003 OUTSTANDING SCHOOL HEAD	3695
729	MERITORIOUS PERFORMANCE AWARD	3693
730	DEALT AWARD	3693
731	MERITORIOUS PERFORMANCE AWARD	3696
732	MERITORIOUS PERFORMANCE AWARD- SDO BATANGAS CITY	3697
733	CERTIFIED HU,AM RESOURCE ASSOCIATE (CHRA)	3697
734	TOP EMPLOYEE PERFORMER AWARD- LPU- B 	3704
735	10- YEAR SERVICE AWARDEE- LPU-B 	3704
736	EMPLOYEE OF THE MONTH- MARCH- DEPED BATANGAS PROVINCE 	3704
737	EXEMPLARY PERFORMANCE AND OUTSTANDING ACCOMPLISHMENT- 2018- DEPED BATANGAS PROVINCE 	3704
738	MERITORIOUS PERFORMANCE AWARD- 2023- DEPED- BATANGAS CITY 	3704
739	MERITORIOUS PERFORMANCE AWARD,JANUARY 23, 2024 AT BULWAGANG ALA EH 	3699
740	AGARANG GAWAD, DECEMBER 18, 2023, BULWAGANG ALA EH	3699
741	AMBASSADOR AWARD (CONSUMER-FRIENDLY PUBLIC SERVANT), GAWAD KAWANI, DECEMBER 11, 2023, 1ST GAWAD KAWANI	3699
742	PRUDENT WORKER AWARD (MOST PUNCTUAL EMPLOYEE), GAWAD KAWANI, DECEMBER 11, 2023	3699
743	DEALT AWARD (DEDICATED EMPLOYEES WITHOUT ABSENCES, LEAVES AND TARDINESS) FOR THE MONTH OF SEPTEMBER 2023, GAWAD KAWANI, DECEMBER 11, 2023	3699
744	DEALT AWARD (DEDICATED EMPLOYEES WITHOUT ABSENCES, LEAVES, AND TARDINESS) FOR THE MONTH OF OCTOBER 2023, GAWAD KAWANI, DECEMBER 11, 2023	3699
745	OUTSTANDING DIVISION ENGINEER, NOVEMBER 14, 2017, IMPLEMENTATION OF DEPED-LED PROJECTS	3699
746	OUTSTANDING DEPED ENGINEER, DECEMBER 5-9, 2011, 7TH NATIONAL CONVENTION OF PHYSICAL FACILITIES COORDINATORS AND DEPED PROJECT ENGINEERS	3699
747	OUTSTANDING DEPED PROJECT ENGINEER, DECEMBER 2, 2008, 4TH NATIONAL CONVENTION OF PHYSICAL FACILITIES COORDINATORS AND DEPED PROJECT ENGINEERS	3699
748	MERITORIOUS PERFORMANCE AWARD FOR OBTAINING OUTSTANDING PERFORMANCE AND DILIGENT WORK WITH UTMOST PATIENCE AND ATTENTION TO DETAILS 	3707
749	GAWAD KAWANI FOR HAVING WON TASK CHAMP AWARD (PRODUCTIVE EMPLOYEE)	3707
750	DEALT AWARD (DEDICATED EMPLOYEE WITHOUT ABSENCE, LEAVES AND TARDINESS) FOR MANIFEST PUNCTUALITY  AND COMMITMENT TO WORK AND DEDICATION TO DUTY 	3707
751	CERTIFICATE OF RECOGNITION IN GRATEFUL ACKNOWLEDGEMENT FOR HER INVALUABLE SERVICES RENDERED AS MEMBER IN REWARDS AND RECOGNITION WHO SUPPORTS THE COMMITTE TO ACHIEVE MATURITY LEVEL 2 AND BE RECOGNIZED BY TYHE CSC REGIONAL OFFICE	3707
752	CERTIFICATE OF RECOGNITION IN GRATEFUL ACKNOWLEDGEMENT ON HER INVALUABLE SERVICE RENDERED AS EVALUATOR DURING 2023 DIVISION SCHOOL BASED- MANAGEMENT (SBM) CONVERGENCE UNDER PROJECT SHARE IT	3707
753	CERTIFICATE OF RECOGNITION IN GRATEFUL ACKNOWLEDGEMENT ON HER INVALUABLE SERVICE RENDERED A SPEAKER DURING THE CONDUCT OF BRIGADA ESKWELA KICK-BACK 	3707
754	CERTIFICATE OF RECOGNITION IN GRATEFUL ACKNOWLEDGEMENT ON HER INVALUABLE SERVICE RENDERED AS CHAIR/FOCAL PERSON DURING THE BRIGADA ESKWELA KICK-BACK 	3707
755	N/A	3709
756	N/A	3709
757	N/A	3709
758	BAYANI NG BAYAN AWARD - JCPMES 2025	3712
759	3RD RUNNER UP PARENTS CHOICE AWARD TEACHERS DAY 2024	3712
760	3RD PLACE BEST SHORT FILM - DISTRICT 2 TEACHERS' CONGRESS 2024	3712
761	SECOND RUNNER UP JCPMES QUEEN OF HEARTS 2024	3712
762	GOLD MEDAL OF MERIT-2022	3711
763	SILVER MEDAL OF MERIT-2020	3711
764	BRONZE MEDAL OF MERIT-2013	3711
765	GOLD SERVICE AWARD-2010	3711
766	SILVER SERVICE AWARD-2007	3711
767	BRONZ SERVICE AWARD-2004	3711
768	CERTIFICATE OF RECOGNITION AS PROCESS OBSERVER DURING DIVISION ROLL OUT OF HIGHER ORDER THINKING SKILLS PROFESSIONAL LEARNING PACKAGES (HOTS-PLPs) FOR ENGLISH, SCIENCE AND MATHEMATICS TEACHERS 	3713
769	FIRST PLACE IN SEARCH FOR OUTSTANDING TEACHING-RELATED PERSONNEL DURING 3RD DISTRICT GAWAD STAR	3713
770	TWG - LOGISTICS AND CERTIFICATES DURING 3RD DISTRICT GAWAD STAR 	3713
771	AUTHOR/CONTRIBUTOR OF DAILY LESSON PLAN (DLP) FOR GRADE 9 ENGLISH DURING FIRST QUEARTER OF SY 2023-2024	3713
772	SCHOOL HEAD OF HALIGUE SILANGAN NHS BEING THE FIRST PLACE IN THE BRIGADA EXCELLENCE AWARD-SMALL CATEGORY DURING LGU-PTA SYNERGY TOWARDS EXCELLENCE IN EDUCATION AND AWARDING OF BRIGADA ESKWELA	3713
773	OUTSTANDING TEACHING-RELATED PERSONNEL IN THE DIVISION-FINALIST 	3713
774	CERTIFICATE OF PUBLICATION OF RESEARCH TITLED PROPOSED CAPABILITY BUILDING ACTIVITIES IN TEACHING COMMUNICATION SKILLS FOR ALTERNATIVE LEARNING SYSTEM (ALS) IMPLEMENTERS PUBLISHED IN INTERNATIONAL MAGAZINE NAMED THE EDUCATOR'S LINK: CONNECTING TEACHERS AROUND THE GLOBE, VOL. 2, NO. 1, JANUARY 2022	3713
775	N/A	3714
776	BOY SCOUT OF THE PHILIPPINES - BRONZE AWARD	3716
777	N/A	3718
778	N/A	3720
779	COMPUTER WIZARD	3724
780	BEST PERFORMING GROUP	3724
781	INTERPRETATIVE DANCE (NATIONAL)	3724
782	RESOURCE SPEAKER	3724
783	DEMONSTRATION TEACHER	3724
784	N/A	3727
785	DISTRICT II OUTSTANDING ALS TEACHERS IN 4TH GAWAD TAGUMPAY	3729
786	PERFECT ATTENDANCE AWARD 2017-2019 AT PHILIPPINE NATIONAL SCHOOL QATAR	3730
787	N/A	3731
788	REGIONAL ATHLETIC ASSOCIATION MEET OFFICIATING OFFICIAL 2023	3734
789	BEST RESEARCH BULLETIN	3734
790	OUTSTANDING TEACHER FRONTLINER-FINALIST	3734
791	N/A	3737
792	BAYANI NG BAYAN AWARD (2025)	3740
793	FAITH AND SERVICE AWARD (2025)	3740
794	GOOD CONDUCT AWARDEE - MAKADIYOS CORE VALUES (2025)	3740
795	2ND BRIGADA ESKWELA COORDINATOR (2024)	3740
796	BSP SILVER SERVICE AWARD 	3740
797	WATCH ADVOCATE AWARD (2022)	3740
798	GIRL SCOUT SERVICE AWARD	3741
799	SILVER MEDAL OF MERIT (BSP BATANGAS CITY COUNCIL)	3742
800	GOLD MEDAL OF MERIT (BSP BATANGAS CITY COUNCIL)	3742
801	N/A	3743
802	RECOGNITION FOR HAVING CHAMPIONED THE CAUSE OF AUTHORSHIP AND PUBLICATION IN ALOYSIAAN PUBLICATIONS, NOV-DEC 2022	3744
803	BEST IN COMPREHENSIVE EXAM	3744
804	SCHOOL OUTSTANDING GRADE 6 TEACHER	3744
805	GIRL SCOUT SERVICE AWARD 2019	3745
806	GOLD MERIT AWARDEE BOY SCOUT OF THE PHILIPPINES	3748
807	LOYALTY AWARD - BATANGAS STATE UNIVERSITY (2007)	3749
808	MOST OUTSTANDING NON-TEACHING PERSONNEL - DISTRICT 1 SY 2020-2021	3749
809	N/A	3747
810	N/A	3751
811	CEERTIFICATE OF TEACHING RELIGION-DELA SALLE UNIVERSITY MANILA	3748
812	N/A	3753
813	N/A	3756
814	THIRD PLACE - DIVISION SCIENCE FAIR (COACH-SCIENCE INVESTIGATORY PROJECT-SIP) 2019	3759
815	FIRST PLACE - DIVISION SCIENCE FAIR (COACH-SCIENCE INVESTIGATORY PROJECT-SIP) 2018	3759
816	OUTSTANDING TEACHER - SCHOOL LEVEL 2016	3759
817	FIRST PLACE - DIVISION SCIENCE QUEST (INFOGRAPHICS) 2016	3759
818	SPEAKER - DISTRICT TRAINING - ROBOTICS SEMINAR	3759
819	SPEAKER - DIVISION TRAINING - WORKSHOP ON PROPER USE AND CARE FOR BIOLOGICAL MICROSCOPE	3759
820	N/A	3760
821	N/A	3761
822	N/A	3764
823	N/A	3767
824	N/A	3772
825	N/A	3774
826	ALS OUTSTANDING TEACHER DIVISION QUALIFIER YEAR 2022	3769
827	OUTSTANDING KINDERGARTEN TEACHER OF THE YEAR 2024	3776
828	OUTSTANDING TEACHER OF THE YEAR 2022	3776
829	OUTSTANDING FUNCTIONAL KINDERGARTEN CLASSROOM 2022	3776
830	MOST PUNCTUAL AWARD	3776
831	N/A	3779
832	DEMONSTRATION TEACHER-ENGLISH (DIVISION LEVEL)	3781
833	RESEARCH PRESENTER (INTERNATIONAL RESEARCH PRESENTER ON MULTIDISCIPLINARY AND CURRENT EDUCATIONAL RESEARCH)	3781
834	LEADERSHEPHERD (OFFICER) "LIFE CLUB" (2016-2017)	3783
835	MICROSOFT WORD 2016 SPECIALIST	3787
836	BRONZE SERVICE AWARD (BSP)	3789
837	TOP PERFORMING TEACHER IN THE PRE-ELEMENTARY LEVEL - PRINCETON SCIENCE SCHOOL	3791
838	JUDGE DURING IS WEEK CELEBRATION 2022 IN BATSTATEU	3795
839	BEST IN PRACTICE TEACHING (BEED)	3795
840	RESEARCH PRESENTER 	3796
841	MOST BEHAVE AWARD (SCHOOL CATEGORY)	3796
842	N/A	3798
843	RESOURCE SPEAKER IN SCHOOL IN-SERVICE TRAINING FOR ELLN DIGITAL COURSE SESSION 5	3805
844	RESOURCE SPEAKER IN SCHOOL IN-SERVICE TRAINING FOR ELLN DIGITAL COURSE SESSION 13	3805
845	WRITER OF LEARNING ACTIVITY SHEET IN MATHEMATICS 2, QUARTER 3 WEEK 1 AND QUARTER 4 WEEK 4	3805
846	TEAM LEADER DURING THE SUCCESSFUL IMPLEMENTATION OF THE PROJECT BEST	3805
847	BEST SCHOOL PRACTICES 2021 (DISTRICT LEVEL)	3805
848	OUTSTANDING INNOVATOR (TEACHER CATEGORY) 2021	3805
849	MOST FUNCTIONAL CLASSROOM (GRADE 1) 2022	3805
850	OUTSTANDING INNOVATOR (TEACHER CATEGORY) 2022	3805
851	BEST SCHOOL PRACTICES 2021 (DISTRICT LEVEL) 2022	3805
852	2024 OUTSTANDING MASTER TEACHER FINALIST - DISTRICT VIII	3806
853	OUTSTANDING TEACHER SCHOOL- BATANGAS CITY EAST ELEMENTARY SCHOOL 2023	3806
854	OUTSTANDING TEACHER DISTRICT I- 3rd PLACE 2022	3806
855	SILVER SERVICE AWARD - BOYSCOUT OF THE PHILIPPINES 2012	3806
856	BRONZE ANAHAW AWARD - GIRL SCOUT OF THE PHILIPPINES 2004	3806
857	N/A	3802
858	GOLD SERVICE AWARDS - BOY SCHOUT OF THE PHILIPPINES	3808
859	OUTSTANDING TEACHER OF THE YEAR 2024 (SCHOOL LEVEL)	3807
860	LAYOUT ARTIST IN THE QUALLITY ASSURANCE OF THE HISTORY OF SCHOOLS AND BARANGAYS (DIVISION LEVEL)	3807
861	RESOURCE SPEAKER IN SCHOOL IN-SERVICE TRAINING FOR TEACHERS (SCHOOL LEVEL)	3807
862	LEARNING RESOURCE MATERIALS DEVELOPER (DIVISION LEVEL)	3807
863	OUTSTANDING LEARNING RESOURCE DEVELOPER (SCHOOL LEVEL)	3807
864	RESOURCE SPEAKER IN SCHOOL IN-SERVICE TRAINING FOIR ELLN DIGITAL COURSE SESSION 14 (SCHOOL LEVEL)	3807
865	RESOURCE SPEAKER IN SCHOOL IN-SERVICE TRAINING FOR ELLN DIGITAL COURSE SESSION 7 (SCHOOL LEVEL)	3807
866	N/A	3812
867	BRONZE SERVICE AWARD (BSP)	3810
868	N/A	3815
869	BOY SCOUT OF THE PHILIPPINES (BRONZE AWARD)	3814
870	N/A	3816
871	2023 DISTRICT VII OUTSTANDING NON-TEACHING PERSONNEL	3822
872	OLCA'S TOP 10 MOST OUTSTANDING TEACHER	3822
873	ISTAR INTERNATIONAL BEST DEMONSTRATION TEACHER	3822
874	CARMEL SCHOOL OF BATANGAS SERVICE AWARD	3822
875	BATANGAS CITY PRIVATE SCHOOLS SERVICE AWARDEE	3822
876	BOY SCOUT OF THE PHILIPPINES BRONZE AWARD	3822
877	N/A	3823
878	BRONZE SERVICE AWARD 	3824
879	DISTRICT VII-OUTSTANDING GRADE 1 TEACHER	3824
880	PROCESS OWNER 	3824
881	DISTRICT VII-WRITER IN MTB-MLE	3824
882	SDO BATANGAS - DEMONSTRATION TEACHER	3824
883	BRONZE SERVICE AWARD (BOY SCOUT OF THE PHILIPPINES)	3825
884	N/A	3829
885	N/A	3831
886	N/A	3832
887	BOY SCOUT OF THE PHILIPPINES SILVER AWARDEE	3833
888	BOY SCOUT OF THE PHILIPPINES BRONZE AWARDEE	3833
889	GAWAD TAKLOBO-/COACH/THAT'S MY KAB	3833
890	N/A	3834
891	SERVICE AWARD / AMETHYST ON GOLD	3841
892	DISTRICT VII GAWAD STAR WRITER 	3842
893	N/A	3843
894	BOY SCOUT OF THE PHILIPPINES BRONZE SERVICE AWARD	3845
895	DISTRICT VII TEACHER'S GOT TALENT 1st PLACE	3851
896	DISTRICT VII PAGPUPUGAY SA NATATAGONG TALENTO NG MGA GURONG PANG ELEMENTARYA 1st PLACE	3851
897	ADULT SCOUTS SINGING CONTEST 2021 1st PLACE	3851
898	DISTRICT VII GAWAD STAR WRITER	3851
899	N/A	3852
900	BRONZE SERVICE AWARD	3854
901	GOLD SERVICE AWARD	3854
902	BRONZE MERIT AWARD	3854
903	DISTRICT VII GAWAD STAR WRITER	3854
904	BOY SCOUT OF THE PHILIPPINES BRONZE SERVICE AWARD	3858
905	MOST PUNCTUAL DEPED PERSONNEL OF SAN AGAPITO INTEGRATED HIGH SCHOOL 2022 DISTRICT X SEARCH FOR GAWAD VERDENIANS	3860
906	SILVER MERIT AWARDEE OF BOY SCOUTS OF THE PHILIPPINES	3861
907	TECHNICAL WORKING GROUP IN CLUSTERED DISTRICT SCHOOL PRESS CONFERENCE	3866
908	TWG IN 2024 DISTRICT SPORTS MEET	3866
909	ADVISER OF THE MOST CHILD-FRIENDLY CLASSHOMES	3866
910	WRITER/DEVELOPER DURING THE REVISION OF REGIONAL OFFICE (RO) QUALITY-ASSURED SDO CONTEXTUALIZED AND DEVELOP LEARNING RESOURCES FOR ELLN,SHS	3868
911	RESOURCE SPEAKER DIVISION TRAINING ON THE ENHANCEMENT OF THE PEDAGOGICAL SKILLS IN TEACHING READING IN THE MOTHER TONGUE AND BRIDGING PROCESS OF GRADE ONE AND KINDERGARTEN TEACHERS OF DISTRICT VII AND IX	3868
912	N/A	3869
913	N/A	3871
914	MOST OUTSTANDING ELEMENTARY TEACHER 2014	3862
915	BRONZE MEDAL AWARDEE	3862
916	OUTSTANDING ADMINISTRATIVE ASSISTANT (FIRST PLACE) GAWAD STAR SYM 2023-2024	3870
917	OUTSATNDING NON-TEACHING PERSONNEL LEVEL I 2nd GAWAD KINANGAN 2022	3870
918	OUTSTANDING NON-TEACHING PERSONNEL FRONTLINER LEVEL I 2021	3870
919	OUTSTANDING NON-TEACHING PERSONNEL FRONTLINER LEVEL I 2021	3870
920	N/A	3872
921	BOY SCOUTS OF THE PHILIPPINES - BRONZE MERIT AWARD 2023	3873
922	BOY SCOUTS OF THE PHILIPPINES - GOLD SERVICE AWARD 2020	3873
923	DISTRICT VII GAWAD STAR WRITER	3873
924	N/A	3874
925	N/A	3876
926	MOST RESPONSIVE TEACHER (2nd GAWAD KINANGAN 2023)	3882
927	BEST ARH PROGRAM IMPLEMENTER (2nd GAWAD STAR)	3882
928	N/A	3881
929	N/A	3916
930	N/A	3918
931	2022 DISTIRCT OUTSTANDING ADMINISTRATIVE AIDE I	3919
932	N/A	3921
933	N/A	3922
934	N/A	3923
935	3RD PLACE SCHOOL LEADER SINGING CONTEST	3925
936	BSP GOLD SERVICE AWARDEE	3925
937	COACH OF NATIONAL CHAMPION IN NEWS WRITING	3925
938	TOP SCORER - PROFICIENCY TEST	3925
939	N/A 	3924
940	N/A	3961
941	N/A	3962
\.


--
-- TOC entry 4660 (class 0 OID 0)
-- Dependencies: 405
-- Name: Recognitions_RecognitionId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Recognitions_RecognitionId_seq"', 941, true);


--
-- TOC entry 4028 (class 0 OID 17592)
-- Dependencies: 406
-- Data for Name: ReportPrintSettings; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "ReportPrintSettings" ("ReportPrintSettingId", "EmploymentStatusId", "Category", "ValueInt", "ValueString", "Half") FROM stdin;
\.


--
-- TOC entry 4661 (class 0 OID 0)
-- Dependencies: 407
-- Name: ReportPrintSettings_ReportPrintSettingId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"ReportPrintSettings_ReportPrintSettingId_seq"', 1, false);


--
-- TOC entry 4030 (class 0 OID 17601)
-- Dependencies: 408
-- Data for Name: ReportSignatories; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "ReportSignatories" ("ReportSignatoryId", "ReportName", "SignatoryPurpose", "PositionTitle", "SignatoryName", "AdditionalDetail1", "ReportLogo1", "AdditionalDetail2") FROM stdin;
\.


--
-- TOC entry 4662 (class 0 OID 0)
-- Dependencies: 409
-- Name: ReportSignatories_ReportSignatoryId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"ReportSignatories_ReportSignatoryId_seq"', 46, true);


--
-- TOC entry 4663 (class 0 OID 0)
-- Dependencies: 411
-- Name: SSSContribution_SSSBracketId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"SSSContribution_SSSBracketId_seq"', 36, true);


--
-- TOC entry 4032 (class 0 OID 17611)
-- Dependencies: 410
-- Data for Name: SSSContributions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "SSSContributions" ("SSSBracketId", "MinBracket", "MaxBracket", "ERShare", "EEShare", "EC", "DateImplemented", "ValidUntil") FROM stdin;
1	1000.00	1249.99	83.70	36.30	10.00	2014-01-01	2015-12-31
2	1250.00	1749.99	120.50	54.50	10.00	2014-01-01	2015-12-31
3	1750.00	2249.99	157.30	72.70	10.00	2014-01-01	2015-12-31
4	2250.00	2749.99	194.20	90.80	10.00	2014-01-01	2015-12-31
5	2750.00	3249.99	231.00	109.00	10.00	2014-01-01	2015-12-31
6	3250.00	3749.99	267.80	127.20	10.00	2014-01-01	2015-12-31
7	3750.00	4249.99	304.70	145.30	10.00	2014-01-01	2015-12-31
8	4250.00	4749.99	341.50	163.50	10.00	2014-01-01	2015-12-31
9	4750.00	5249.99	378.30	181.70	10.00	2014-01-01	2015-12-31
10	5250.00	5749.99	415.20	199.80	10.00	2014-01-01	2015-12-31
11	5750.00	6249.99	452.00	218.00	10.00	2014-01-01	2015-12-31
12	6250.00	6749.99	488.80	236.20	10.00	2014-01-01	2015-12-31
13	6750.00	7249.99	525.70	254.30	10.00	2014-01-01	2015-12-31
14	7250.00	7749.99	562.20	272.50	10.00	2014-01-01	2015-12-31
15	7750.00	8249.99	599.30	290.70	10.00	2014-01-01	2015-12-31
16	8250.00	8749.99	636.20	308.80	10.00	2014-01-01	2015-12-31
17	8750.00	9249.99	673.00	327.00	10.00	2014-01-01	2015-12-31
18	9250.00	9749.99	709.80	345.20	10.00	2014-01-01	2015-12-31
19	9750.00	10249.99	746.70	363.30	10.00	2014-01-01	2015-12-31
20	10250.00	10749.99	783.50	381.50	10.00	2014-01-01	2015-12-31
21	10750.00	11249.99	820.30	399.70	10.00	2014-01-01	2015-12-31
22	11250.00	11749.99	857.20	417.80	10.00	2014-01-01	2015-12-31
23	11750.00	12249.99	894.00	436.00	10.00	2014-01-01	2015-12-31
24	12250.00	12749.99	930.80	454.20	10.00	2014-01-01	2015-12-31
25	12750.00	13249.99	967.70	472.30	10.00	2014-01-01	2015-12-31
26	13250.00	13749.99	1004.50	490.50	10.00	2014-01-01	2015-12-31
27	13750.00	14249.99	4041.30	508.70	10.00	2014-01-01	2015-12-31
28	14250.00	14749.99	1078.20	526.80	10.00	2014-01-01	2015-12-31
29	14750.00	15249.99	1135.00	545.00	30.00	2014-01-01	2015-12-31
30	15250.00	15749.99	1171.80	563.20	30.00	2014-01-01	2015-12-31
31	15750.00	1000000.00	1208.70	581.30	30.00	2014-01-01	2015-12-31
35	10.00	350.00	1.00	1.00	1.00	2016-07-15	
36	12.00	1.00	1.00	1.00	1.00	2016-08-02	
\.


--
-- TOC entry 4034 (class 0 OID 17624)
-- Dependencies: 412
-- Data for Name: SalaryGrades; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "SalaryGrades" ("SalaryGradeNumber", "EffectivityDate", "Step1", "Step2", "Step3", "Step4", "Step5", "Step6", "Step7", "Step8", "SalaryGradeId", "Annex", "LbcNo") FROM stdin;
1	2017-01-01	9981.00	10072.00	10165.00	10258.00	10352.00	10453.00	10543.00	10640.00	1	A1	
2	2017-01-01	10667.00	10761.00	10856.00	10952.00	11049.00	11147.00	11245.00	11345.00	2	A1	
3	2017-01-01	11387.00	11488.00	11589.00	11691.00	11795.00	11899.00	12004.00	12110.00	3	A1	
4	2017-01-01	12155.00	12262.00	12371.00	12480.00	12591.00	12702.00	12814.00	12927.00	4	A1	
5	2017-01-01	12975.00	13117.00	13206.00	13322.00	13440.00	13559.00	13679.00	13799.00	5	A1	
6	2017-01-01	13851.00	13973.00	14096.00	14221.00	14347.00	14474.00	14602.00	14731.00	6	A1	
7	2017-01-01	14785.00	14916.00	15048.00	15181.00	15315.00	15450.00	15587.00	15725.00	7	A1	
8	2017-01-01	15818.00	15969.00	16121.00	16275.00	16430.00	16586.00	16744.00	16903.00	8	A1	
9	2017-01-01	16986.00	17142.00	17299.00	17458.00	17618.00	17780.00	17943.00	18108.00	9	A1	
10	2017-01-01	18217.00	18385.00	18553.00	18724.00	18896.00	19095.00	19244.00	19421.00	10	A1	
11	2017-01-01	19620.00	19853.00	20088.00	20326.00	20567.00	20811.00	21058.00	21307.00	11	A1	
12	2017-01-01	21387.00	21626.00	21868.00	22113.00	22361.00	22611.00	22864.00	23120.00	12	A1	
13	2017-01-01	23257.00	23517.00	23780.00	24047.00	24315.00	24587.00	24863.00	25141.00	13	A1	
14	2017-01-01	25290.00	25573.00	25859.00	26149.00	26441.00	26737.00	27036.00	27339.00	14	A1	
15	2017-01-01	27565.00	27887.00	28214.00	28544.00	28877.00	29214.00	29557.00	29902.00	15	A1	
16	2017-01-01	30044.00	30396.00	30751.00	31111.00	31474.00	31843.00	32215.00	32592.00	16	A1	
17	2017-01-01	32747.00	33131.00	33518.00	33909.00	34306.00	34707.00	35113.00	35524.00	17	A1	
18	2017-01-01	35693.00	36111.00	36532.00	36960.00	37392.00	37829.00	38272.00	38719.00	18	A1	
19	2017-01-01	39151.00	39685.00	40227.00	40776.00	41333.00	41898.00	42470.00	43051.00	19	A1	
20	2017-01-01	43250.00	43841.00	44440.00	45047.00	45662.00	46285.00	46917.00	47559.00	20	A1	
21	2017-01-01	47779.00	48432.00	49094.00	49764.00	50443.00	51132.00	51831.00	52539.00	21	A1	
22	2017-01-01	52783.00	53503.00	54234.00	54975.00	55726.00	56487.00	57258.00	58040.00	22	A1	
23	2017-01-01	58310.00	59106.00	59913.00	60732.00	61561.00	62402.00	63255.00	64118.00	23	A1	
24	2017-01-01	64416.00	65296.00	66187.00	67092.00	68008.00	68937.00	69878.00	70832.00	24	A1	
25	2017-01-01	71476.00	72452.00	73441.00	74444.00	75461.00	76491.00	77536.00	78595.00	25	A1	
26	2017-01-01	78960.00	80039.00	81132.00	82240.00	83363.00	84502.00	85657.00	86825.00	26	A1	
27	2017-01-01	87229.00	88420.00	89628.00	90852.00	92093.00	93351.00	94625.00	95925.00	27	A1	
28	2017-01-01	96363.00	97679.00	99013.00	100366.00	101736.00	103126.00	104534.00	105962.00	28	A1	
29	2017-01-01	106454.00	107908.00	109382.00	110875.00	112390.00	113925.00	115481.00	117058.00	29	A1	
30	2017-01-01	117601.00	119208.00	120836.00	122486.00	124159.00	125855.00	127573.00	129316.00	30	A1	
1	2018-01-01	10510.00	10602.00	10695.00	10789.00	10884.00	10982.00	11076.00	11173.00	31	A1	
2	2018-01-01	11200.00	11293.00	11386.00	11480.00	11575.00	11671.00	11767.00	11864.00	32	A1	
3	2018-01-01	11914.00	12013.00	12112.00	12212.00	12313.00	12414.00	12517.00	12620.00	33	A1	
4	2018-01-01	12674.00	12778.00	12884.00	12990.00	13097.00	13206.00	13315.00	13424.00	34	A1	
5	2018-01-01	13481.00	13606.00	13705.00	13818.00	13932.00	14047.00	14163.00	14280.00	35	A1	
6	2018-01-01	14340.00	14459.00	14578.00	14699.00	14820.00	14942.00	15066.00	15190.00	36	A1	
7	2018-01-01	15254.00	15380.00	15507.00	15635.00	15765.00	15895.00	16026.00	16158.00	37	A1	
8	2018-01-01	16282.00	16433.00	16585.00	16739.00	16895.00	17051.00	17209.00	17369.00	38	A1	
9	2018-01-01	17473.00	17627.00	17781.00	17937.00	18095.00	18253.00	18413.00	18575.00	39	A1	
10	2018-01-01	18718.00	18883.00	19048.00	19215.00	19384.00	19567.00	19725.00	19898.00	40	A1	
11	2018-01-01	20179.00	20437.00	20698.00	20963.00	21231.00	21502.00	21777.00	22055.00	41	A1	
12	2018-01-01	22149.00	22410.00	22674.00	22942.00	23212.00	23486.00	23763.00	24043.00	42	A1	
13	2018-01-01	24224.00	24510.00	24799.00	25091.00	25387.00	25686.00	25989.00	26296.00	43	A1	
14	2018-01-01	26494.00	26806.00	27122.00	27442.00	27766.00	28093.00	28424.00	28759.00	44	A1	
15	2018-01-01	29010.00	29359.00	29713.00	30071.00	30432.00	30799.00	31170.00	31545.00	45	A1	
16	2018-01-01	31765.00	32147.00	32535.00	32926.00	33323.00	33724.00	34130.00	34541.00	46	A1	
17	2018-01-01	34781.00	35201.00	35624.00	36053.00	36487.00	36927.00	37371.00	37821.00	47	A1	
18	2018-01-01	38085.00	38543.00	39007.00	39477.00	39952.00	40433.00	40920.00	41413.00	48	A1	
19	2018-01-01	42099.00	42730.00	43371.00	44020.00	44680.00	45350.00	46030.00	46720.00	49	A1	
20	2018-01-01	47037.00	47742.00	48457.00	49184.00	49921.00	50669.00	51428.00	52199.00	50	A1	
21	2018-01-01	52554.00	53341.00	54141.00	54952.00	55776.00	56612.00	57460.00	58322.00	51	A1	
22	2018-01-01	58717.00	59597.00	60491.00	61397.00	62318.00	63252.00	64200.00	65162.00	52	A1	
23	2018-01-01	65604.00	66587.00	67585.00	68598.00	69627.00	70670.00	71730.00	72805.00	53	A1	
24	2018-01-01	73299.00	74397.00	75512.00	76644.00	77793.00	78959.00	80143.00	81344.00	54	A1	
25	2018-01-01	82439.00	83674.00	84928.00	86201.00	87493.00	88805.00	90136.00	91487.00	55	A1	
26	2018-01-01	92108.00	93488.00	94889.00	96312.00	97755.00	99221.00	100708.00	102217.00	56	A1	
27	2018-01-01	102910.00	104453.00	106019.00	107608.00	109221.00	110858.00	112519.00	114210.00	57	A1	
28	2018-01-01	114981.00	116704.00	118453.00	120229.00	122031.00	123860.00	125716.00	127601.00	58	A1	
29	2018-01-01	128467.00	130392.00	132346.00	134330.00	136343.00	138387.00	140461.00	142566.00	59	A1	
30	2018-01-01	143534.00	145685.00	147869.00	150085.00	152335.00	154618.00	156935.00	159288.00	60	A1	
1	2019-01-01	11068.00	11160.00	11254.00	11348.00	11443.00	11538.00	11635.00	11732.00	61	A1	
2	2019-01-01	11761.00	11851.00	11942.00	12034.00	12126.00	12219.00	12313.00	12407.00	62	A1	
3	2019-01-01	12466.00	12562.00	12658.00	12756.00	12854.00	12952.00	13052.00	13152.00	63	A1	
4	2019-01-01	13214.00	13316.00	13418.00	13521.00	13625.00	13729.00	13835.00	13941.00	64	A1	
5	2019-01-01	14007.00	14115.00	14223.00	14332.00	14442.00	14553.00	14665.00	14777.00	65	A1	
6	2019-01-01	14847.00	14961.00	15076.00	15192.00	15309.00	15426.00	15545.00	15664.00	66	A1	
7	2019-01-01	15738.00	15859.00	15981.00	16104.00	16227.00	16352.00	16477.00	16604.00	67	A1	
8	2019-01-01	16758.00	16910.00	17063.00	17217.00	17372.00	17529.00	17688.00	17848.00	68	A1	
9	2019-01-01	17975.00	18125.00	18277.00	18430.00	18584.00	18739.00	18896.00	19054.00	69	A1	
10	2019-01-01	19233.00	19394.00	19556.00	19720.00	19884.00	20051.00	20218.00	20387.00	70	A1	
11	2019-01-01	20754.00	21038.00	21327.00	21619.00	21915.00	22216.00	22520.00	22829.00	71	A1	
12	2019-01-01	22938.00	23222.00	23510.00	23801.00	24096.00	24395.00	24697.00	25003.00	72	A1	
13	2019-01-01	25232.00	25545.00	25861.00	26181.00	26506.00	26834.00	27166.00	27503.00	73	A1	
14	2019-01-01	27755.00	28099.00	28447.00	28800.00	29156.00	29517.00	29883.00	30253.00	74	A1	
15	2019-01-01	30531.00	30909.00	31292.00	31680.00	32072.00	32469.00	32871.00	33279.00	75	A1	
16	2019-01-01	33584.00	34000.00	34421.00	34847.00	35279.00	35716.00	36159.00	36606.00	76	A1	
17	2019-01-01	36942.00	37400.00	37863.00	38332.00	38807.00	39288.00	39774.00	40267.00	77	A1	
18	2019-01-01	40637.00	41140.00	41650.00	42165.00	42688.00	43217.00	43752.00	44294.00	78	A1	
19	2019-01-01	45269.00	46008.00	46759.00	47522.00	48298.00	49086.00	49888.00	50702.00	79	A1	
20	2019-01-01	51155.00	51989.00	52838.00	53700.00	54577.00	55468.00	56373.00	57293.00	80	A1	
21	2019-01-01	57805.00	58748.00	59707.00	60681.00	61672.00	62678.00	63701.00	64741.00	81	A1	
22	2019-01-01	65319.00	66385.00	67469.00	68570.00	69689.00	70827.00	71983.00	73157.00	82	A1	
23	2019-01-01	73811.00	75015.00	76240.00	77484.00	78749.00	80034.00	81340.00	82668.00	83	A1	
24	2019-01-01	83406.00	84767.00	86151.00	87557.00	88986.00	90439.00	91915.00	93415.00	84	A1	
25	2019-01-01	95083.00	96635.00	98212.00	99815.00	101444.00	103100.00	104783.00	106493.00	85	A1	
26	2019-01-01	107444.00	109197.00	110980.00	112791.00	114632.00	116503.00	118404.00	120337.00	86	A1	
27	2019-01-01	121411.00	123393.00	125407.00	127454.00	129534.00	131648.00	133797.00	135981.00	87	A1	
28	2019-01-01	137195.00	139434.00	141710.00	144023.00	146373.00	148763.00	151191.00	153658.00	88	A1	
29	2019-01-01	155030.00	157561.00	160132.00	162746.00	165402.00	168102.00	170845.00	173634.00	89	A1	
30	2019-01-01	175184.00	178043.00	180949.00	183903.00	186904.00	189955.00	193055.00	196206.00	90	A1	
1	1997-01-01	4400.00	4510.00	4623.00	4738.00	4857.00	4978.00	5103.00	5230.00	91	A1	
2	1997-01-01	4796.00	4916.00	5039.00	5165.00	5294.00	5426.00	5562.00	5701.00	92	A1	
3	1997-01-01	5228.00	5358.00	5492.00	5630.00	5770.00	5866.00	5889.00	5912.00	93	A1	
4	1997-01-01	5646.00	5787.00	5895.00	5918.00	5941.00	5964.00	5988.00	6012.00	94	A1	
5	1997-01-01	5955.00	5978.00	6002.00	6026.00	6050.00	6087.00	6186.00	6287.00	95	A1	
6	1997-01-01	6073.00	6097.00	6122.00	6220.00	6321.00	6425.00	6531.00	6640.00	96	A1	
7	1997-01-01	6225.00	6326.00	6430.00	6536.00	6644.00	6755.00	6869.00	6985.00	97	A1	
8	1997-01-01	6546.00	6654.00	6764.00	6877.00	6993.00	7111.00	7233.00	7356.00	98	A1	
9	1997-01-01	6895.00	7010.00	7129.00	7249.00	7373.00	7499.00	7629.00	7761.00	99	A1	
10	1997-01-01	7309.00	7433.00	7558.00	7687.00	7819.00	7954.00	8092.00	8233.00	100	A1	
11	1997-01-01	7682.00	7813.00	7946.00	8083.00	8223.00	8366.00	8512.00	8662.00	101	A1	
1	2020-01-01	11551.00	11647.00	11745.00	11843.00	11942.00	12042.00	12143.00	12244.00	102	A1	
2	2020-01-01	12276.00	12369.00	12464.00	12560.00	12657.00	12754.00	12852.00	12950.00	103	A1	
3	2020-01-01	13019.00	13119.00	13220.00	13322.00	13424.00	13527.00	13631.00	13736.00	104	A1	
4	2020-01-01	13807.00	13914.00	14020.00	14128.00	14236.00	14345.00	14456.00	14567.00	105	A1	
5	2020-01-01	14641.00	14754.00	14867.00	14981.00	15096.00	15212.00	15329.00	15446.00	106	A1	
6	2020-01-01	15524.00	15643.00	15763.00	15884.00	16007.00	16129.00	16253.00	16378.00	107	A1	
7	2020-01-01	16458.00	16585.00	16713.00	16841.00	16970.00	17101.00	17231.00	17364.00	108	A1	
8	2020-01-01	17505.00	17663.00	17823.00	17984.00	18146.00	18310.00	18476.00	18643.00	109	A1	
9	2020-01-01	18784.00	18941.00	19100.00	19259.00	19420.00	19582.00	19746.00	19911.00	110	A1	
10	2020-01-01	20219.00	20388.00	20558.00	20731.00	20903.00	21079.00	21254.00	21432.00	111	A1	
11	2020-01-01	22316.00	22600.00	22889.00	23181.00	23477.00	23778.00	24082.00	24391.00	112	A1	
12	2020-01-01	24495.00	24779.00	25067.00	25358.00	25653.00	25952.00	26254.00	26560.00	113	A1	
13	2020-01-01	26754.00	27067.00	27383.00	27703.00	28028.00	28356.00	28688.00	29025.00	114	A1	
14	2020-01-01	29277.00	29621.00	29969.00	30322.00	30678.00	31039.00	31405.00	31775.00	115	A1	
15	2020-01-01	32053.00	32431.00	32814.00	33202.00	33594.00	33991.00	34393.00	34801.00	116	A1	
16	2020-01-01	35106.00	35522.00	35943.00	36369.00	36801.00	37238.00	37681.00	38128.00	117	A1	
17	2020-01-01	38464.00	38922.00	39385.00	39854.00	40329.00	40810.00	41296.00	41789.00	118	A1	
18	2020-01-01	42159.00	42662.00	43172.00	43687.00	44210.00	44739.00	45274.00	45816.00	119	A1	
19	2020-01-01	46791.00	47530.00	48281.00	49044.00	49820.00	50608.00	51410.00	52224.00	120	A1	
20	2020-01-01	52703.00	53537.00	54386.00	55248.00	56125.00	57016.00	57921.00	58841.00	121	A1	
21	2020-01-01	59353.00	60296.00	61255.00	62229.00	63220.00	64226.00	65249.00	66289.00	122	A1	
22	2020-01-01	66867.00	67933.00	69017.00	70118.00	71237.00	72375.00	73531.00	74705.00	123	A1	
23	2020-01-01	75359.00	76563.00	77788.00	79034.00	80324.00	81635.00	82967.00	84321.00	124	A1	
24	2020-01-01	85074.00	86462.00	87874.00	89308.00	90766.00	92248.00	93753.00	95283.00	125	A1	
25	2020-01-01	96985.00	98568.00	100176.00	101811.00	103473.00	105162.00	106879.00	108623.00	126	A1	
26	2020-01-01	109593.00	111381.00	113200.00	115047.00	116925.00	118833.00	120772.00	122744.00	127	A1	
27	2020-01-01	123839.00	125861.00	127915.00	130003.00	132125.00	134281.00	136473.00	138701.00	128	A1	
28	2020-01-01	139939.00	142223.00	144544.00	146903.00	149300.00	151738.00	154215.00	156731.00	129	A1	
29	2020-01-01	158131.00	160712.00	163335.00	166001.00	168710.00	171464.00	174262.00	177107.00	130	A1	
30	2020-01-01	178688.00	181604.00	184568.00	187581.00	190642.00	193754.00	196916.00	200130.00	131	A1	
12	1997-01-01	8118.00	8257.00	8399.00	8544.00	8692.00	8844.00	8999.00	9159.00	132	A1	
13	1997-01-01	8586.00	8734.00	8884.00	9038.00	9195.00	9357.00	9521.00	9690.00	133	A1	
14	1997-01-01	9088.00	9245.00	9404.00	9568.00	9735.00	9907.00	10082.00	10261.00	134	A1	
15	1997-01-01	9626.00	9793.00	9962.00	10136.00	10314.00	10496.00	10682.00	10872.00	135	A1	
16	1997-01-01	10204.00	10381.00	10562.00	10747.00	10935.00	11129.00	11326.00	11529.00	136	A1	
17	1997-01-01	10825.00	11013.00	11205.00	11402.00	11603.00	11809.00	12019.00	12234.00	137	A1	
18	1997-01-01	11495.00	11694.00	11899.00	12108.00	12322.00	12540.00	12764.00	12993.00	138	A1	
19	1997-01-01	12215.00	12427.00	12645.00	12867.00	13095.00	13328.00	13566.00	13810.00	139	A1	
20	1997-01-01	12991.00	13218.00	13450.00	13687.00	13929.00	14177.00	14431.00	14690.00	140	A1	
21	1997-01-01	13629.00	13867.00	14110.00	14359.00	14613.00	14873.00	15139.00	15411.00	141	A1	
22	1997-01-01	14316.00	14566.00	14821.00	15082.00	15349.00	15622.00	15901.00	16186.00	142	A1	
23	1997-01-01	15058.00	15320.00	15589.00	15876.00	16143.00	16430.00	16723.00	17023.00	143	A1	
24	1997-01-01	15861.00	16137.00	16419.00	16707.00	17002.00	17304.00	17612.00	17927.00	144	A1	
25	1997-01-01	16767.00	17058.00	17356.00	17660.00	17971.00	18289.00	18614.00	18946.00	145	A1	
26	1997-01-01	17697.00	18004.00	18318.00	18638.00	18966.00	19301.00	19643.00	19993.00	146	A1	
27	1997-01-01	18647.00	18970.00	19300.00	19637.00	19982.00	20334.00	20694.00	21062.00	147	A1	
28	1997-01-01	19617.00	19956.00	20303.00	20658.00	21019.00	21389.00	21768.00	22154.00	148	A1	
29	1997-01-01	20855.00	21214.00	21581.00	21956.00	22340.00	22731.00	23131.00	23540.00	149	A1	
30	1997-01-01	23487.00	23894.00	24310.00	24735.00	25169.00	25613.00	26066.00	26530.00	150	A1	
31	1997-01-01	30188.00	30723.00	31270.00	31829.00	32401.00	32986.00	33584.00	34195.00	151	A1	
32	1997-01-01	34295.00	34905.00	35520.00	36167.00	36818.00	37484.00	38166.00	39132.00	152	A1	
1	1997-11-01	4400.00	4510.00	4623.00	4738.00	4857.00	4978.00	5103.00	5230.00	153	A1	
2	1997-11-01	4796.00	4916.00	5039.00	5165.00	5294.00	5426.00	5562.00	5701.00	154	A1	
3	1997-11-01	5228.00	5358.00	5492.00	5630.00	5770.00	5915.00	6062.00	6214.00	155	A1	
4	1997-11-01	5646.00	5787.00	5932.00	6080.00	6232.00	6388.00	6547.00	6711.00	156	A1	
5	1997-11-01	6098.00	6250.00	6406.00	6566.00	6731.00	6899.00	7071.00	7248.00	157	A1	
6	1997-11-01	6585.00	6750.00	6919.00	7092.00	7269.00	7451.00	7637.00	7828.00	158	A1	
7	1997-11-01	7046.00	7222.00	7403.00	7588.00	7778.00	7972.00	8172.00	8376.00	159	A1	
8	1997-11-01	7540.00	7728.00	7921.00	8119.00	8322.00	8530.00	8744.00	8962.00	160	A1	
9	1997-11-01	8067.00	8269.00	8476.00	8688.00	8905.00	9127.00	9356.00	9589.00	161	A1	
10	1997-11-01	8605.00	8821.00	9041.00	9267.00	9499.00	9736.00	9980.00	10229.00	162	A1	
11	1997-11-01	9121.00	9349.00	9583.00	9822.00	10068.00	10320.00	10578.00	10842.00	163	A1	
12	1997-11-01	9668.00	9910.00	10158.00	10412.00	10672.00	10939.00	11212.00	11493.00	164	A1	
13	1997-11-01	10248.00	10505.00	10767.00	11036.00	11312.00	11595.00	11885.00	12182.00	165	A1	
14	1997-11-01	10863.00	11135.00	11413.00	11699.00	11991.00	12291.00	12598.00	12913.00	166	A1	
15	1997-11-01	11515.00	11803.00	12098.00	12400.00	12710.00	13028.00	13354.00	13688.00	167	A1	
16	1997-11-01	12206.00	12511.00	12824.00	13145.00	13473.00	13810.00	14155.00	14509.00	168	A1	
17	1997-11-01	12938.00	13262.00	13593.00	13933.00	14282.00	14639.00	15005.00	15380.00	169	A1	
18	1997-11-01	13715.00	14058.00	14409.00	14770.00	15139.00	15517.00	15905.00	16303.00	170	A1	
19	1997-11-01	14538.00	14901.00	15274.00	15656.00	16047.00	16448.00	16860.00	17281.00	171	A1	
20	1997-11-01	15410.00	15795.00	16190.00	16595.00	17010.00	17435.00	17871.00	18318.00	172	A1	
21	1997-11-01	16026.00	16427.00	16838.00	17259.00	17690.00	18132.00	18586.00	19050.00	173	A1	
22	1997-11-01	16667.00	17084.00	17511.00	17949.00	18398.00	18858.00	19329.00	19812.00	174	A1	
23	1997-11-01	17334.00	17767.00	18212.00	18667.00	19133.00	19612.00	20102.00	20605.00	175	A1	
24	1997-11-01	18028.00	18479.00	18941.00	19414.00	19900.00	20397.00	20907.00	21430.00	176	A1	
25	1997-11-01	18749.00	19218.00	19698.00	20191.00	20695.00	21213.00	21743.00	22287.00	177	A1	
26	1997-11-01	19499.00	19986.00	20486.00	20998.00	21523.00	22061.00	22613.00	23178.00	178	A1	
27	1997-11-01	20279.00	20786.00	21306.00	21838.00	22384.00	22944.00	23517.00	24105.00	179	A1	
28	1997-11-01	21090.00	21617.00	22158.00	22712.00	23279.00	23861.00	24458.00	25069.00	180	A1	
29	1997-11-01	21934.00	22482.00	23044.00	23620.00	24211.00	24816.00	25436.00	26072.00	181	A1	
30	1997-11-01	25000.00	25625.00	26266.00	26922.00	27595.00	28285.00	28992.00	29717.00	182	A1	
31	1997-11-01	35000.00	35875.00	36772.00	37691.00	38633.00	39599.00	40589.00	41604.00	183	A1	
32	1997-11-01	40000.00	41000.00	42025.00	43076.00	44153.00	45256.00	46388.00	47547.00	184	A1	
1	2001-07-01	5082.00	5209.00	5339.00	5473.00	5610.00	5750.00	5894.00	6041.00	185	A1	
2	2001-07-01	5540.00	5678.00	5820.00	5966.00	6114.00	6267.00	6424.00	6585.00	186	A1	
3	2001-07-01	6039.00	6189.00	6343.00	6503.00	6664.00	6832.00	7001.00	7177.00	187	A1	
4	2001-07-01	6522.00	6684.00	6851.00	7022.00	7198.00	7378.00	7562.00	7751.00	188	A1	
5	2001-07-01	7043.00	7219.00	7399.00	7584.00	7774.00	7968.00	8167.00	8372.00	189	A1	
6	2001-07-01	7606.00	7796.00	7992.00	8191.00	8396.00	8606.00	8821.00	9042.00	190	A1	
7	2001-07-01	8139.00	8341.00	8550.00	8764.00	8984.00	9207.00	9438.00	9675.00	191	A1	
8	2001-07-01	8709.00	8926.00	9149.00	9378.00	9612.00	9852.00	10099.00	10351.00	192	A1	
9	2001-07-01	9318.00	9551.00	9790.00	10035.00	10286.00	10542.00	10807.00	11075.00	193	A1	
10	2001-07-01	9939.00	10188.00	10442.00	10704.00	10971.00	11246.00	11527.00	11815.00	194	A1	
11	2001-07-01	10535.00	10798.00	11068.00	11344.00	11629.00	11920.00	12218.00	12522.00	195	A1	
12	2001-07-01	11167.00	11446.00	11733.00	12026.00	12326.00	12635.00	12950.00	13274.00	196	A1	
13	2001-07-01	11837.00	12134.00	12436.00	12747.00	13065.00	13393.00	13728.00	14070.00	197	A1	
14	2001-07-01	12546.00	12861.00	13182.00	13512.00	13850.00	14196.00	14551.00	14914.00	198	A1	
15	2001-07-01	13300.00	13632.00	13973.00	14322.00	14680.00	15048.00	15423.00	15810.00	199	A1	
16	2001-07-01	14098.00	14450.00	14811.00	15183.00	15561.00	15951.00	16350.00	16758.00	200	A1	
17	2001-07-01	14944.00	15317.00	15700.00	16092.00	16496.00	16908.00	17331.00	17764.00	201	A1	
18	2001-07-01	15841.00	16237.00	16643.00	17059.00	17486.00	17922.00	18371.00	18830.00	202	A1	
19	2001-07-01	16792.00	17211.00	17641.00	18083.00	18535.00	18998.00	19473.00	19959.00	203	A1	
20	2001-07-01	17799.00	18244.00	18699.00	19168.00	19647.00	20138.00	20641.00	21158.00	204	A1	
21	2001-07-01	18510.00	18974.00	19448.00	19934.00	20432.00	20942.00	21467.00	22003.00	205	A1	
22	2001-07-01	19251.00	19732.00	20225.00	20731.00	21250.00	21781.00	22325.00	22883.00	206	A1	
23	2001-07-01	20020.00	20521.00	21035.00	21561.00	22098.00	22652.00	23218.00	23799.00	207	A1	
24	2001-07-01	20823.00	21343.00	21877.00	22423.00	22985.00	23559.00	24148.00	24752.00	208	A1	
25	2001-07-01	21655.00	22197.00	22751.00	23321.00	23903.00	24501.00	25113.00	25742.00	209	A1	
26	2001-07-01	22521.00	23084.00	23662.00	24253.00	24859.00	25480.00	26118.00	26771.00	210	A1	
27	2001-07-01	23422.00	24008.00	24609.00	25223.00	25853.00	26500.00	27162.00	27842.00	211	A1	
28	2001-07-01	24359.00	24968.00	25593.00	26232.00	26887.00	27559.00	28249.00	28955.00	212	A1	
29	2001-07-01	25333.00	25967.00	26615.00	27281.00	27964.00	28663.00	29379.00	30113.00	213	A1	
30	2001-07-01	28875.00	29897.00	30338.00	31095.00	31873.00	32870.00	33466.00	34323.00	214	A1	
1	2008-07-01	6149.00	6303.00	6460.00	6622.00	6788.00	6958.00	7131.00	7310.00	215	A1	
2	2008-07-01	6703.00	6871.00	7042.00	7219.00	7398.00	7583.00	7773.00	7968.00	216	A1	
3	2008-07-01	7307.00	7489.00	7675.00	7868.00	8063.00	8266.00	8471.00	8684.00	217	A1	
4	2008-07-01	7891.00	8087.00	8290.00	8496.00	8710.00	8928.00	9150.00	9379.00	218	A1	
5	2008-07-01	8522.00	8735.00	8953.00	9176.00	9406.00	9642.00	9882.00	10130.00	219	A1	
6	2008-07-01	9204.00	9434.00	9670.00	9911.00	10160.00	10414.00	10673.00	10941.00	220	A1	
7	2008-07-01	9848.00	10092.00	10346.00	10604.00	10870.00	11141.00	11420.00	11707.00	221	A1	
8	2008-07-01	10538.00	10801.00	11070.00	11348.00	11630.00	11921.00	12220.00	12525.00	222	A1	
9	2008-07-01	11275.00	11557.00	11846.00	12143.00	12446.00	12756.00	13077.00	13401.00	223	A1	
10	2008-07-01	12026.00	12328.00	12635.00	12951.00	13275.00	13608.00	13948.00	14297.00	224	A1	
11	2008-07-01	12748.00	13066.00	13392.00	13726.00	14071.00	14423.00	14784.00	15151.00	225	A1	
12	2008-07-01	13512.00	13850.00	14197.00	14552.00	14915.00	15289.00	15670.00	16061.00	226	A1	
13	2008-07-01	14323.00	14682.00	15048.00	15424.00	15809.00	16205.00	16611.00	17025.00	227	A1	
14	2008-07-01	15181.00	15562.00	15950.00	16349.00	16758.00	17178.00	17607.00	18046.00	228	A1	
15	2008-07-01	16093.00	16494.00	16907.00	17329.00	17763.00	18208.00	18662.00	19130.00	229	A1	
16	2008-07-01	17059.00	17484.00	17921.00	18371.00	18829.00	19301.00	19784.00	20277.00	230	A1	
17	2008-07-01	18082.00	18534.00	18997.00	19471.00	19961.00	20459.00	20970.00	21494.00	231	A1	
18	2008-07-01	19168.00	19647.00	20138.00	20642.00	21158.00	21685.00	22229.00	22784.00	232	A1	
19	2008-07-01	20318.00	20825.00	21346.00	21880.00	22428.00	22988.00	23562.00	24150.00	233	A1	
20	2008-07-01	21537.00	22075.00	22626.00	23194.00	23773.00	24367.00	24976.00	25601.00	234	A1	
21	2008-07-01	22397.00	22958.00	23532.00	24120.00	24722.00	25340.00	25975.00	26623.00	235	A1	
22	2008-07-01	23294.00	23876.00	24473.00	25084.00	25712.00	26355.00	27014.00	27688.00	236	A1	
23	2008-07-01	24224.00	24830.00	25453.00	26089.00	26739.00	27409.00	28094.00	28797.00	237	A1	
24	2008-07-01	25196.00	25825.00	26472.00	27132.00	27812.00	28506.00	29219.00	29950.00	238	A1	
25	2008-07-01	26203.00	26859.00	27529.00	28218.00	28922.00	29646.00	30386.00	31148.00	239	A1	
26	2008-07-01	27250.00	27931.00	28631.00	29346.00	30080.00	30831.00	31603.00	32393.00	240	A1	
27	2008-07-01	28340.00	29050.00	29777.00	30520.00	31282.00	32065.00	32866.00	33689.00	241	A1	
28	2008-07-01	29474.00	30212.00	30967.00	31740.00	32534.00	33346.00	34181.00	35036.00	242	A1	
29	2008-07-01	30653.00	31420.00	32205.00	33010.00	33836.00	34682.00	35549.00	36436.00	243	A1	
30	2008-07-01	34939.00	35813.00	36709.00	37626.00	38566.00	39531.00	40518.00	41530.00	244	A1	
1	2010-01-01	6862.00	7000.00	7140.00	7285.00	7432.00	7583.00	7737.00	7895.00	245	A1	
2	2010-01-01	7446.00	7596.00	7749.00	7906.00	8065.00	8229.00	8397.00	8569.00	246	A1	
3	2010-01-01	8080.00	8243.00	8409.00	8580.00	8753.00	8932.00	9113.00	9301.00	247	A1	
4	2010-01-01	8713.00	8888.00	9069.00	9252.00	9441.00	9634.00	9830.00	10031.00	248	A1	
5	2010-01-01	9396.00	9586.00	9780.00	9978.00	10181.00	10390.00	10601.00	10819.00	249	A1	
6	2010-01-01	10133.00	10338.00	10548.00	10761.00	10981.00	11206.00	11434.00	11669.00	250	A1	
7	2010-01-01	10858.00	11076.00	11302.00	11531.00	11766.00	12005.00	12251.00	12503.00	251	A1	
8	2010-01-01	11636.00	11871.00	12110.00	12357.00	12607.00	12864.00	13128.00	13396.00	252	A1	
9	2010-01-01	12469.00	12721.00	12978.00	13242.00	13510.00	13785.00	14067.00	14353.00	253	A1	
10	2010-01-01	13333.00	13603.00	13877.00	14158.00	14445.00	14740.00	15040.00	15348.00	254	A1	
11	2010-01-01	14198.00	14483.00	14775.00	15072.00	15379.00	15691.00	16011.00	16335.00	255	A1	
12	2010-01-01	15119.00	15422.00	15733.00	16050.00	16374.00	16706.00	17044.00	17390.00	256	A1	
13	2010-01-01	16101.00	16424.00	16753.00	17089.00	17433.00	17786.00	18147.00	18514.00	257	A1	
14	2010-01-01	17147.00	17490.00	17839.00	18197.00	18563.00	18938.00	19321.00	19711.00	258	A1	
15	2010-01-01	18292.00	18661.00	19040.00	19426.00	19822.00	20228.00	20640.00	21064.00	259	A1	
16	2010-01-01	19514.00	19906.00	20309.00	20722.00	21142.00	21573.00	22013.00	22462.00	260	A1	
17	2010-01-01	20819.00	21237.00	21665.00	22102.00	22552.00	23009.00	23477.00	23955.00	261	A1	
18	2010-01-01	22214.00	22659.00	23115.00	23581.00	24057.00	24542.00	25041.00	25549.00	262	A1	
19	2010-01-01	23703.00	24177.00	24661.00	25157.00	25664.00	26182.00	26710.00	27251.00	263	A1	
20	2010-01-01	25295.00	25799.00	26314.00	26842.00	27381.00	27931.00	28494.00	29070.00	264	A1	
21	2010-01-01	26671.00	27200.00	27741.00	28293.00	28856.00	29433.00	30024.00	30626.00	265	A1	
22	2010-01-01	28134.00	28687.00	29254.00	29832.00	30424.00	31029.00	31647.00	32278.00	266	A1	
23	2010-01-01	29684.00	30265.00	30861.00	31467.00	32086.00	32720.00	33368.00	34030.00	267	A1	
24	2010-01-01	31334.00	31943.00	32567.00	33201.00	33853.00	34516.00	35195.00	35890.00	268	A1	
25	2010-01-01	33085.00	33724.00	34376.00	35044.00	35725.00	36422.00	37133.00	37862.00	269	A1	
26	2010-01-01	34945.00	35615.00	36301.00	37001.00	37716.00	38446.00	39193.00	39956.00	270	A1	
27	2010-01-01	36923.00	37627.00	38347.00	39080.00	39830.00	40597.00	41380.00	42181.00	271	A1	
28	2010-01-01	39026.00	39766.00	40521.00	41291.00	42078.00	42882.00	43705.00	44545.00	272	A1	
29	2010-01-01	41264.00	42041.00	42833.00	43642.00	44469.00	45314.00	46176.00	47056.00	273	A1	
30	2010-01-01	45941.00	46813.00	47705.00	48615.00	49544.00	50495.00	51464.00	52455.00	274	A1	
1	2011-01-01	7575.00	7697.00	7820.00	7947.00	8077.00	8209.00	8342.00	8480.00	275	A1	
2	2011-01-01	8189.00	8321.00	8456.00	8594.00	8733.00	8876.00	9022.00	9170.00	276	A1	
3	2011-01-01	8854.00	8997.00	9142.00	9292.00	9443.00	9599.00	9756.00	9917.00	277	A1	
4	2011-01-01	9536.00	9690.00	9848.00	10008.00	10172.00	10339.00	10509.00	10683.00	278	A1	
5	2011-01-01	10271.00	10437.00	10607.00	10780.00	10957.00	11137.00	11320.00	11508.00	279	A1	
6	2011-01-01	11062.00	11242.00	11425.00	11612.00	11803.00	11997.00	12194.00	12397.00	280	A1	
7	2011-01-01	11869.00	12060.00	12257.00	12457.00	12662.00	12870.00	13082.00	13299.00	281	A1	
8	2011-01-01	12735.00	12941.00	13151.00	13366.00	13584.00	13807.00	14035.00	14267.00	282	A1	
9	2011-01-01	13663.00	13884.00	14110.00	14340.00	14575.00	14813.00	15058.00	15305.00	283	A1	
10	2011-01-01	14641.00	14878.00	15118.00	15364.00	15615.00	15872.00	16132.00	16398.00	284	A1	
11	2011-01-01	15649.00	15900.00	16157.00	16419.00	16687.00	16959.00	17237.00	17519.00	285	A1	
12	2011-01-01	16726.00	16995.00	17269.00	17548.00	17833.00	18123.00	18419.00	18720.00	286	A1	
13	2011-01-01	17880.00	18166.00	18457.00	18755.00	19058.00	19367.00	19683.00	20004.00	287	A1	
14	2011-01-01	19112.00	19418.00	19728.00	20045.00	20369.00	20699.00	21034.00	21376.00	288	A1	
15	2011-01-01	20490.00	20827.00	21172.00	21523.00	21882.00	22247.00	22619.00	22999.00	289	A1	
16	2011-01-01	21969.00	22329.00	22697.00	23073.00	23455.00	23845.00	24243.00	24647.00	290	A1	
17	2011-01-01	23555.00	23941.00	24334.00	24734.00	25144.00	25560.00	25984.00	26416.00	291	A1	
18	2011-01-01	25259.00	25671.00	26091.00	26519.00	26956.00	27399.00	27853.00	28315.00	292	A1	
19	2011-01-01	27088.00	27528.00	27977.00	28434.00	28901.00	29375.00	29859.00	30352.00	293	A1	
20	2011-01-01	29052.00	29522.00	30001.00	30491.00	30988.00	31495.00	32012.00	32539.00	294	A1	
21	2011-01-01	30945.00	31443.00	31949.00	32465.00	32991.00	33527.00	34074.00	34630.00	295	A1	
22	2011-01-01	32973.00	33499.00	34034.00	34580.00	35136.00	35703.00	36280.00	36867.00	296	A1	
23	2011-01-01	35144.00	35701.00	36268.00	36845.00	37432.00	38032.00	38642.00	39264.00	297	A1	
24	2011-01-01	37473.00	38061.00	38661.00	39271.00	39894.00	40526.00	41172.00	41830.00	298	A1	
25	2011-01-01	39966.00	40590.00	41224.00	41870.00	42528.00	43198.00	43880.00	44577.00	299	A1	
26	2011-01-01	42639.00	43299.00	43971.00	44655.00	45352.00	46061.00	46784.00	47520.00	300	A1	
27	2011-01-01	45505.00	46205.00	46917.00	47641.00	48378.00	49129.00	49894.00	50674.00	301	A1	
28	2011-01-01	48579.00	49320.00	50074.00	50841.00	51623.00	52418.00	53228.00	54053.00	302	A1	
29	2011-01-01	51876.00	52661.00	53460.00	54274.00	55102.00	55945.00	56803.00	57676.00	303	A1	
30	2011-01-01	56943.00	57814.00	58701.00	59603.00	60522.00	61458.00	62410.00	63380.00	304	A1	
1	2012-01-01	8287.00	8393.00	8501.00	8610.00	8721.00	8834.00	8948.00	9064.00	305	A1	
2	2012-01-01	8932.00	9047.00	9162.00	9281.00	9400.00	9522.00	9646.00	9772.00	306	A1	
3	2012-01-01	9628.00	9751.00	9876.00	10004.00	10133.00	10265.00	10398.00	10534.00	307	A1	
4	2012-01-01	10358.00	10491.00	10626.00	10763.00	10904.00	11045.00	11189.00	11335.00	308	A1	
5	2012-01-01	11145.00	11288.00	11434.00	11581.00	11732.00	11884.00	12040.00	12197.00	309	A1	
6	2012-01-01	11992.00	12146.00	12302.00	12462.00	12624.00	12788.00	12955.00	13125.00	310	A1	
7	2012-01-01	12880.00	13045.00	13213.00	13384.00	13558.00	13734.00	13913.00	14096.00	311	A1	
8	2012-01-01	13833.00	14011.00	14192.00	14375.00	14561.00	14750.00	14942.00	15138.00	312	A1	
9	2012-01-01	14857.00	15048.00	15242.00	15439.00	15639.00	15842.00	16048.00	16257.00	313	A1	
10	2012-01-01	15948.00	16153.00	16360.00	16571.00	16786.00	17003.00	17225.00	17449.00	314	A1	
11	2012-01-01	17099.00	17318.00	17540.00	17765.00	17994.00	18227.00	18464.00	18703.00	315	A1	
12	2012-01-01	18333.00	18568.00	18805.00	19047.00	19291.00	19541.00	19793.00	20050.00	316	A1	
13	2012-01-01	19658.00	19908.00	20162.00	20420.00	20682.00	20948.00	21219.00	21493.00	317	A1	
14	2012-01-01	21078.00	21346.00	21618.00	21894.00	22174.00	22459.00	22748.00	23041.00	318	A1	
15	2012-01-01	22688.00	22994.00	23305.00	23621.00	23941.00	24266.00	24598.00	24934.00	319	A1	
16	2012-01-01	24423.00	24752.00	25085.00	25424.00	25767.00	26117.00	26472.00	26832.00	320	A1	
17	2012-01-01	26292.00	26644.00	27002.00	27366.00	27736.00	28110.00	28491.00	28878.00	321	A1	
18	2012-01-01	28305.00	28684.00	29068.00	29458.00	29854.00	30256.00	30666.00	31080.00	322	A1	
19	2012-01-01	30474.00	30880.00	31292.00	31711.00	32137.00	32568.00	33008.00	33453.00	323	A1	
20	2012-01-01	32810.00	33246.00	33688.00	34140.00	34596.00	35059.00	35530.00	36009.00	324	A1	
21	2012-01-01	35219.00	35685.00	36158.00	36638.00	37125.00	37620.00	38123.00	38633.00	325	A1	
22	2012-01-01	37812.00	38310.00	38815.00	39327.00	39848.00	40376.00	40913.00	41457.00	326	A1	
23	2012-01-01	40604.00	41136.00	41676.00	42223.00	42778.00	43343.00	43916.00	44498.00	327	A1	
24	2012-01-01	43612.00	44179.00	44756.00	45340.00	45934.00	46537.00	47148.00	47769.00	328	A1	
25	2012-01-01	46848.00	47456.00	48071.00	48696.00	49330.00	49974.00	50628.00	51292.00	329	A1	
26	2012-01-01	50334.00	50982.00	51642.00	52310.00	52988.00	53676.00	54374.00	55083.00	330	A1	
27	2012-01-01	54088.00	54782.00	55487.00	56201.00	56926.00	57662.00	58408.00	59166.00	331	A1	
28	2012-01-01	58132.00	58874.00	59628.00	60392.00	61167.00	61953.00	62752.00	63562.00	332	A1	
29	2012-01-01	62488.00	63282.00	64088.00	64905.00	65735.00	66576.00	67431.00	68296.00	333	A1	
30	2012-01-01	67944.00	68814.00	69697.00	70592.00	71500.00	72422.00	73356.00	74305.00	334	A1	
1	2013-01-01	9000.00	9090.00	9181.00	9273.00	9365.00	9459.00	9554.00	9649.00	335	A1	
2	2013-01-01	9675.00	9772.00	9869.00	9968.00	10068.00	10169.00	10270.00	10373.00	336	A1	
3	2013-01-01	10401.00	10505.00	10610.00	10716.00	10823.00	10931.00	11040.00	11151.00	337	A1	
4	2013-01-01	11181.00	11292.00	11405.00	11519.00	11635.00	11751.00	11869.00	11987.00	338	A1	
5	2013-01-01	12019.00	12139.00	12261.00	12383.00	12507.00	12632.00	12759.00	12886.00	339	A1	
6	2013-01-01	12921.00	13050.00	13180.00	13312.00	13445.00	13580.00	13716.00	13853.00	340	A1	
7	2013-01-01	13890.00	14029.00	14169.00	14311.00	14454.00	14598.00	14744.00	14892.00	341	A1	
8	2013-01-01	14931.00	15081.00	15232.00	15384.00	15538.00	15693.00	15850.00	16009.00	342	A1	
9	2013-01-01	16051.00	16212.00	16374.00	16538.00	16703.00	16870.00	17039.00	17209.00	343	A1	
10	2013-01-01	17255.00	17428.00	17602.00	17778.00	17956.00	18135.00	18317.00	18500.00	344	A1	
11	2013-01-01	18549.00	18735.00	18922.00	19111.00	19302.00	19495.00	19690.00	19887.00	345	A1	
12	2013-01-01	19940.00	20140.00	20341.00	20545.00	20750.00	20958.00	21167.00	21379.00	346	A1	
13	2013-01-01	21436.00	21650.00	21867.00	22086.00	22306.00	22529.00	22755.00	22982.00	347	A1	
14	2013-01-01	23044.00	23274.00	23507.00	23742.00	23979.00	24219.00	24461.00	24706.00	348	A1	
15	2013-01-01	24887.00	25161.00	25438.00	25718.00	26000.00	26286.00	26576.00	26868.00	349	A1	
16	2013-01-01	26878.00	27174.00	27473.00	27775.00	28080.00	28389.00	28702.00	29017.00	350	A1	
17	2013-01-01	29028.00	29348.00	29671.00	29997.00	30327.00	30661.00	30998.00	31339.00	351	A1	
18	2013-01-01	31351.00	31696.00	32044.00	32397.00	32753.00	33113.00	33478.00	33846.00	352	A1	
19	2013-01-01	33859.00	34231.00	34608.00	34988.00	35373.00	35762.00	36156.00	36554.00	353	A1	
20	2013-01-01	36567.00	36970.00	37376.00	37788.00	38203.00	38623.00	39048.00	39478.00	354	A1	
21	2013-01-01	39493.00	39927.00	40367.00	40811.00	41259.00	41713.00	42172.00	42636.00	355	A1	
22	2013-01-01	42652.00	43121.00	43596.00	44075.00	44560.00	45050.00	45546.00	46047.00	356	A1	
23	2013-01-01	46064.00	46571.00	47083.00	47601.00	48125.00	48654.00	49190.00	49731.00	357	A1	
24	2013-01-01	49750.00	50297.00	50850.00	51410.00	51975.00	52547.00	53125.00	53709.00	358	A1	
25	2013-01-01	53730.00	54321.00	54918.00	55522.00	56133.00	56750.00	57375.00	58006.00	359	A1	
26	2013-01-01	58028.00	58666.00	59312.00	59964.00	60624.00	61291.00	61965.00	62646.00	360	A1	
27	2013-01-01	62670.00	63360.00	64057.00	64761.00	65474.00	66194.00	66922.00	67658.00	361	A1	
28	2013-01-01	67684.00	68428.00	69181.00	69942.00	70711.00	71489.00	72276.00	73071.00	362	A1	
29	2013-01-01	73099.00	73903.00	74716.00	75537.00	76368.00	77208.00	78058.00	78916.00	363	A1	
30	2013-01-01	78946.00	79815.00	80693.00	81580.00	82478.00	83385.00	84302.00	85230.00	364	A1	
1	2016-01-01	9478.00	9568.00	9660.00	9753.00	9846.00	9949.00	10036.00	10132.00	365	A1	
2	2016-01-01	10159.00	10255.00	10351.00	10449.00	10547.00	10647.00	10747.00	10848.00	366	A1	
3	2016-01-01	10883.00	10985.00	11089.00	11193.00	11298.00	11405.00	11512.00	11621.00	367	A1	
4	2016-01-01	11658.00	11767.00	11878.00	11990.00	12103.00	12217.00	12333.00	12448.00	368	A1	
5	2016-01-01	12488.00	12644.00	12725.00	12844.00	12965.00	13087.00	13211.00	13335.00	369	A1	
6	2016-01-01	13378.00	13504.00	13630.00	13759.00	13889.00	14020.00	14152.00	14285.00	370	A1	
7	2016-01-01	14331.00	14466.00	14602.00	14740.00	14878.00	15018.00	15159.00	15303.00	371	A1	
8	2016-01-01	15368.00	15519.00	15670.00	15823.00	15978.00	16133.00	16291.00	16450.00	372	A1	
9	2016-01-01	16512.00	16671.00	16830.00	16992.00	17155.00	17319.00	17485.00	17653.00	373	A1	
10	2016-01-01	17730.00	17900.00	18071.00	18245.00	18420.00	18634.00	18775.00	18955.00	374	A1	
11	2016-01-01	19077.00	19286.00	19496.00	19709.00	19925.00	20142.00	20362.00	20585.00	375	A1	
12	2016-01-01	20651.00	20870.00	21091.00	21315.00	21540.00	21769.00	21999.00	22232.00	376	A1	
13	2016-01-01	22328.00	22564.00	22804.00	23045.00	23289.00	23536.00	23786.00	24037.00	377	A1	
14	2016-01-01	24141.00	24396.00	24655.00	24916.00	25180.00	25447.00	25717.00	25989.00	378	A1	
15	2016-01-01	26192.00	26489.00	26790.00	27094.00	27401.00	27712.00	28027.00	28344.00	379	A1	
16	2016-01-01	28417.00	28740.00	29066.00	29369.00	29729.00	30066.00	30408.00	30752.00	380	A1	
17	2016-01-01	30831.00	31183.00	31536.00	31893.00	32255.00	32622.00	32991.00	33366.00	381	A1	
18	2016-01-01	33452.00	33831.00	34215.00	34603.00	34996.00	35393.00	35795.00	36201.00	382	A1	
19	2016-01-01	36409.00	36857.00	37312.00	37771.00	38237.00	38709.00	39186.00	39670.00	383	A1	
20	2016-01-01	39768.00	40259.00	40755.00	41258.00	41766.00	42281.00	42802.00	43330.00	384	A1	
21	2016-01-01	43439.00	43974.00	44517.00	45066.00	45621.00	46183.00	46753.00	47329.00	385	A1	
22	2016-01-01	47448.00	48032.00	48625.00	49224.00	49831.00	50445.00	51067.00	51697.00	386	A1	
23	2016-01-01	51826.00	52466.00	53112.00	53767.00	54430.00	55101.00	55781.00	56468.00	387	A1	
24	2016-01-01	56610.00	57308.00	58014.00	58730.00	59453.00	60187.00	60928.00	61679.00	388	A1	
25	2016-01-01	61971.00	62735.00	63508.00	64291.00	65083.00	65885.00	66698.00	67520.00	389	A1	
26	2016-01-01	67690.00	68524.00	69369.00	70224.00	71090.00	71967.00	72855.00	73751.00	390	A1	
27	2016-01-01	73937.00	74849.00	75771.00	76705.00	77651.00	78608.00	79577.00	80567.00	391	A1	
28	2016-01-01	80760.00	81756.00	82764.00	83784.00	84817.00	85862.00	86921.00	87993.00	392	A1	
29	2016-01-01	88214.00	89301.00	90402.00	91516.00	92644.00	93786.00	94943.00	96113.00	393	A1	
30	2016-01-01	96354.00	97543.00	98745.00	99962.00	101195.00	102442.00	103705.00	104984.00	394	A1	
31	2016-01-01	117086.00	118623.00	120180.00	121758.00	123356.00	124975.00	126616.00	128278.00	395	A1	
32	2016-01-01	135376.00	137174.00	138996.00	140843.00	142714.00	144610.00	146531.00	148478.00	396	A1	
2	2021-01-01	12790.00	12888.00	12987.00	13087.00	13187.00	13288.00	13390.00	13493.00	398	A1	
3	2021-01-01	13572.00	13677.00	13781.00	13888.00	13995.00	14101.00	14210.00	14319.00	399	A1	
4	2021-01-01	14400.00	14511.00	14622.00	14735.00	14848.00	14961.00	15077.00	15192.00	400	A1	
5	2021-01-01	15275.00	15393.00	15511.00	15630.00	15750.00	15871.00	15993.00	16115.00	401	A1	
6	2021-01-01	16200.00	16325.00	16450.00	16577.00	16704.00	16832.00	16962.00	17092.00	402	A1	
7	2021-01-01	17179.00	17311.00	17444.00	17578.00	17713.00	17849.00	17985.00	18124.00	403	A1	
8	2021-01-01	18251.00	18417.00	18583.00	18751.00	18920.00	19091.00	19264.00	19438.00	404	A1	
9	2021-01-01	19593.00	19757.00	19922.00	20046.00	20214.00	20382.00	20553.00	20725.00	405	A1	
10	2021-01-01	21205.00	21382.00	21561.00	21741.00	21923.00	22106.00	22291.00	22477.00	406	A1	
11	2021-01-01	23877.00	24161.00	24450.00	24742.00	25038.00	25339.00	25643.00	25952.00	407	A1	
12	2021-01-01	26052.00	26336.00	26624.00	26915.00	27210.00	27509.00	27811.00	28117.00	408	A1	
13	2021-01-01	28276.00	28589.00	28905.00	29225.00	29550.00	29878.00	30210.00	30547.00	409	A1	
14	2021-01-01	30799.00	31143.00	31491.00	31844.00	32200.00	32561.00	32927.00	33297.00	410	A1	
15	2021-01-01	33575.00	33953.00	34336.00	34724.00	35116.00	35513.00	35915.00	36323.00	411	A1	
16	2021-01-01	36628.00	37044.00	37465.00	37891.00	38323.00	38760.00	39203.00	39650.00	412	A1	
17	2021-01-01	39986.00	40444.00	40907.00	41376.00	41851.00	42332.00	42818.00	43311.00	413	A1	
18	2021-01-01	43681.00	44184.00	44694.00	45209.00	45732.00	46261.00	46796.00	47338.00	414	A1	
19	2021-01-01	48313.00	49052.00	49803.00	50566.00	51342.00	52130.00	52932.00	53746.00	415	A1	
20	2021-01-01	54251.00	55085.00	55934.00	56796.00	57673.00	58564.00	59469.00	60389.00	416	A1	
21	2021-01-01	60901.00	61844.00	62803.00	63777.00	64768.00	65774.00	66797.00	67837.00	417	A1	
22	2021-01-01	68415.00	69481.00	70565.00	71666.00	72785.00	73923.00	75079.00	76253.00	418	A1	
23	2021-01-01	76907.00	78111.00	79336.00	80583.00	81899.00	83235.00	84594.00	85975.00	419	A1	
24	2021-01-01	86742.00	88158.00	89597.00	91059.00	92545.00	94057.00	95592.00	97152.00	420	A1	
25	2021-01-01	98886.00	100500.00	102140.00	103808.00	105502.00	107224.00	108974.00	110753.00	421	A1	
26	2021-01-01	111742.00	113565.00	115419.00	117303.00	119217.00	121163.00	123140.00	125150.00	422	A1	
27	2021-01-01	126267.00	128329.00	130423.00	132552.00	134715.00	136914.00	139149.00	141420.00	423	A1	
28	2021-01-01	142683.00	145011.00	147387.00	149784.00	152228.00	154714.00	157239.00	159804.00	424	A1	
29	2021-01-01	161231.00	163863.00	166537.00	169256.00	172018.00	174826.00	177679.00	180579.00	425	A1	
30	2021-01-01	182191.00	185165.00	188187.00	191259.00	194380.00	197553.00	200777.00	204054.00	426	A1	
31	2021-01-01	268121.00	273358.00	278697.00	284140.00	289691.00	295349.00	301117.00	306999.00	427	A1	
32	2021-01-01	319660.00	326107.00	332682.00	339392.00	346236.00	353218.00	360342.00	367609.00	428	A1	
1	2021-01-01	12034.00	12134.00	12236.00	12339.00	12442.00	12545.00	12651.00	12756.00	397	A1	Salary Increase LBC#132 dated January 6, 2021
\.


--
-- TOC entry 4664 (class 0 OID 0)
-- Dependencies: 413
-- Name: SalaryGrades_Id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"SalaryGrades_Id_seq"', 428, true);


--
-- TOC entry 4036 (class 0 OID 17633)
-- Dependencies: 414
-- Data for Name: Sanctions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Sanctions" ("SanctionId", "SanctionDescription", "HasSuspension", "HasFine", "IsDismissed") FROM stdin;
8	Dismissal	f	f	t
7	Suspension	t	f	f
9	Suspension with Fine	t	t	f
10	Fine	f	t	f
\.


--
-- TOC entry 4665 (class 0 OID 0)
-- Dependencies: 415
-- Name: Sanctions_SanctionId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Sanctions_SanctionId_seq"', 10, true);


--
-- TOC entry 4038 (class 0 OID 17641)
-- Dependencies: 416
-- Data for Name: ScheduleTemplates; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "ScheduleTemplates" ("ScheduleTemplateId", "ScheduleTemplateName") FROM stdin;
\.


--
-- TOC entry 4666 (class 0 OID 0)
-- Dependencies: 417
-- Name: ScheduleTemplates_ScheduleTemplateId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"ScheduleTemplates_ScheduleTemplateId_seq"', 51, true);


--
-- TOC entry 4040 (class 0 OID 17649)
-- Dependencies: 418
-- Data for Name: Sections; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Sections" ("SectionId", "DepartmentId", "SectionName", "Description", "DivisionId", "Rank") FROM stdin;
2	125	Cashier Unit	Cash	164	1
3	125	Records Unit	Record	164	2
4	125	Personnel Unit	HR	164	3
5	125	Supply and Property Unit	Supply	164	4
\.


--
-- TOC entry 4667 (class 0 OID 0)
-- Dependencies: 419
-- Name: Sections_SectionId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Sections_SectionId_seq"', 5, true);


--
-- TOC entry 4042 (class 0 OID 17657)
-- Dependencies: 420
-- Data for Name: SelfEmployedSSSEmployees; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "SelfEmployedSSSEmployees" ("SelfEmployedId", "EmployeeId") FROM stdin;
\.


--
-- TOC entry 4668 (class 0 OID 0)
-- Dependencies: 421
-- Name: SelfEmployedSSSEmployees_SelfEmployedId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"SelfEmployedSSSEmployees_SelfEmployedId_seq"', 1, false);


--
-- TOC entry 4044 (class 0 OID 17662)
-- Dependencies: 422
-- Data for Name: SeparatedRecords; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "SeparatedRecords" ("SeparatedRecordId", "EmployeeId", "DateStart", "DateEnd", "Designation", "Status", "Salary", "Station", "LeaveOfAbsencesWithoutPay", "SeparationDate", "SeparationCause", "Remarks", "IsInCurrentAgency", "DepartmentName", "DivisionName", "SectionName") FROM stdin;
\.


--
-- TOC entry 4669 (class 0 OID 0)
-- Dependencies: 423
-- Name: SeparatedRecords_SeparatedRecordId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"SeparatedRecords_SeparatedRecordId_seq"', 18, true);


--
-- TOC entry 4670 (class 0 OID 0)
-- Dependencies: 425
-- Name: ServiceRecord_ServiceId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"ServiceRecord_ServiceId_seq"', 15847, true);


--
-- TOC entry 4046 (class 0 OID 17671)
-- Dependencies: 424
-- Data for Name: ServiceRecords; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "ServiceRecords" ("ServiceRecordId", "DateStarted", "SalaryRate", "PositionId", "EmploymentStatusId", "RateTypeId", "PersonnelActionMemoId", "Remarks", "EmployeeId", "Step", "DateEnded", "PlantillaRecordId", "DepartmentId", "DivisionId", "SectionId", "UseOldName", "UseOldNameDetailed", "DetailedDepartmentId", "DetailedDivisionId", "DetailedSectionId", "NonPlantillaItemId", "SalaryGradeNo", "SalaryGradeAnnex") FROM stdin;
15312	2021-01-01	407436.00	237	1	2	0	Salary Increase LBC#132 dated January 6, 2021	1	2	0001-01-01	154	12	19	0	f	f	0	0	0	0	0	
15844	2024-01-01	402900.00	1653	1	2	2280		2745	1	0001-01-01	1152	125	164	4	f	f	0	0	0	0	15	A1
15845	2024-01-01	194400.00	101	1	2	2279		2746	1	0001-01-01	1156	125	164	4	f	f	0	0	0	0	6	A1
15846	2024-07-09	144408.00	2004	1	2	2283		2747	1	0001-01-01	1157	125	164	4	f	f	0	0	0	0	1	A1
15847	2024-07-09	219012.00	1994	1	2	2281		2748	1	0001-01-01	1155	125	164	4	f	f	0	0	0	0	8	A1
\.


--
-- TOC entry 4048 (class 0 OID 17689)
-- Dependencies: 426
-- Data for Name: Skills; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Skills" ("SkillId", "SkillName", "BasicInformationId") FROM stdin;
4490	DRIVING	3602
4491	SMALL ENGINE MECHANIC	3602
4492	INSULATOR	3602
4493	ELECTRICAL SKILL	3602
4494	SCAFOLDER	3602
4495	COMPUTER SKILL	3602
4496	BASIC FIRING	3603
4497	KNOWLEDGE ON  SAFETY AND SECURITY PROCEDURE	3603
4498	CONFLICT RESOLUTION	3603
4499	CHARCOAL PAINTING	3603
4500	COFFEE PAINTING	3603
4501	ACRYLIC PAINTING	3603
4502	EXPERT IN THE ENHANCED FINANCIAL REPORTING SYSTEM (eFRS)	3604
4503	KNOWLEDGE IN VARIOUS ACCOUNTING SOFTWARE AND ONLINE BANKING	3604
4504	HIGHLY CUSTOMER-ORIENTED PERSON	3604
4505	EXPERT IN MICROSOFT WORD, EXCEL, POWERPOINT & PUBLISHER	3604
4506	HOBBIES INCLUDE MUSICALLY INCLINED, ARTS AND SCIENCES	3604
4507	COMMITTED, HARD WORKING, WITH SENSE OF PROFESSIONALISM	3607
4508	CAN COMMUNICATE IN ENGLISH AND FILIPINO	3607
4509	HIGHLY VERSATILE TO PEOPLE AND CAN ADJUST EASILY TO SITUATION	3607
4510	EAGER AND ENTHUSIASTIC TO LEARN NEW THINGS	3607
4511	COMPUTER LITERATE; ABILITY TO WORK WITH QUICKBOOKS APPLICATION	3607
4512	READING BOOKS, PLAYING GUITAR, SINGING, DANCING	3607
4513	COMPUTER LITERATE	3608
4514	EXPERT IN ENHANCED FINANCIAL REPORTING SYSTEM ( eFRS)	3609
4515	EXPERT IN FINANCIAL DATA ENTRY SYSTEM ( FinDes)	3609
4516	EXPERT IN MICROSOFT WORD AND EXCEL 	3609
4517	FAMILIARITY IN ADOBE PHOTOSHOP 	3609
4518	FAMILIARITY IN SAP APPLICATION 	3609
4519	MICROSOFT OFFICE-WORD AND EXCEL	3610
4520	ENHANCED FINANCIAL REPORTING SYSTEM (eFRS)	3610
4521	FINANCIAL DATA ENTRY SYSTEM (FinDes)	3610
4522	MOOE-WEB BASED SYSTEM	3610
4523	FAMILIARITY IN MS WORD, EXCEL AND POWERPOINT	3612
4524	FAMILIARITY IN PHILHEALTH'S ELECTRONIC PREMIUM REMITTANCE SYSTEM (EPRS)	3612
4525	FAMILIARITY IN GSIS' ELECTRONIC BILLING AND COLLECTION SYSTEM (EBCS)	3612
4526	DRIVING	3612
4527	SINGING	3606
4528	DANCING	3606
4529	MICROSOFT OFFICE- WORK & EXCEL 	3614
4530	MICROSOFT OFFICE - WORD & EXCEL	3614
4531	ENHANCED FINANCIAL REPORTING SYSTEM (eFRS)	3614
4532	FINANCIAL DATA ENTRY SYSTEM (FinDes)	3614
4533	MOOE-WEB BASED SYSTEM	3614
4534	MICROSOFT OFFICE- WORD, EXCEL AND POWERPOINT	3615
4535	ENHANCED FINANCIAL REPORTING SYSTEM (eFRS)	3615
4536	TEAM PLAYER	3616
4537	HARDWORKING	3616
4538	DETAIL-ORIENTED	3616
4539	RECORDS MANAGEMENT	3616
4540	WRITTEN AND ORAL COMMUNICATION	3616
4541	DRIVING	3616
4542	ADMINISTRATIVE SUPPORT	3617
4543	CLEANING	3617
4544	PAINTING	3617
4545	RECEIVING AND RELEASING DOCUMENTS	3617
4546	GARDENING	3617
4547	ELECTRICAL SUPPORT	3617
4548	REPAIR AND MAINTENANCE	3617
4549	DRIVING	3618
4550	COOKING	3618
4551	ELECTRICIAN	3618
4552	PLUMBER	3618
4553	DRIVER	3618
4554	ENCODING	3619
4555	COMPUTER LITERATE	3619
4556	GOOD COMMUNICATION SKILLS	3619
4557	EXPERT IN THE ENHANCED FINANCIAL REPORTING SYSTEM (eFRS)	3621
4558	EXPERT IN MS WORD, EXCEL AND POWERPOINT	3621
4559	HOBBIES INCLUDE MUSICALLY INCLINED, ARTS AND SCIENCES	3621
4560	COMPUTER LITERACY 	3620
4561	GOOD COMMUNICATION SKILLS 	3620
4562	PLAYING VOLLEYBALL 	3620
4563	COMPUTER SKILLS	3622
4564	DRIVING	3622
4565	WELDING	3622
4566	WOODWORKING	3622
4567	READING	3622
4568	ADOBE PHOTOSHOP	3624
4569	SINGING	3626
4570	HOUSEKEEPING	3627
4571	COOKING	3627
4572	PHOTOCOPY OPERATOR	3627
4573	CAPENTRY/MANSORY	3628
4574	WELDER	3628
4575	ELECTRICIAN	3628
4576	PLUMBER	3628
4577	DRIVER	3628
4578	BARBER	3628
4579	TILE SETTER	3628
4580	BASIC CARPENTRY	3625
4581	BASIC PLUMBING	3625
4582	PHOTOCOPIER OPERATOR	3625
4583	BOOK BINDING	3625
4584	LAMINATE	3625
4585	BASIC ELECTICIAN	3625
4586	PAINTER	3625
4587	SINGING 	3629
4588	BASIC COMPUTER SKILL	3630
4589	SINGING 	3630
4590	HOUSE KEEPING	3631
4591	COOKING	3631
4592	SAP SYSTEM KNOWLEDGEABLE	3633
4593	MICROSOFT OFFICE KNOWLEDGEABLE	3633
4594	COMPUTER LITERATE	3635
4595	WATCHING MOVIES	3635
4596	COOKING	3635
4597	DRIVING	3634
4598	EXPERT IN ENHANCED FINANCIAL REPORTING SYSTEM (Efrs)	3639
4599	FAMILIARITY IN MS APPLICATIONS SUCH AS WORD, EXCEL AND POWERPOINT	3639
4600	FAMILIARITY IN PROVIDENT FUND LOAN PROCESSING	3639
4601	FAMILIARITY IN PAG-IBIG FUND REMITTANCE PROCESSING	3639
4602	CUSTOMER- ORIENTED PERSON	3639
4603	COMPUTER LITERATE	3643
4604	KNOWLEDGE IN SYSTEM, APPLICATIONS & PRODUCTS (SAP) SOFTWARE	3643
4605	SPORTS ACTIVITIES 	3640
4606	ELECTRICAL SUPPORT	3640
4607	DRIVING	3640
4608	SINGING	3645
4609	DANCING	3645
4610	STORY WRITING	3641
4611	SINGING	3641
4612	ARTS	3641
4613	PHOTOGRAPHY	3641
4614	READING BOOKS	3641
4615	GAMING	3641
4616	MULTITASKING	3641
4617	DRIVING	3642
4618	BASIC AUTO MECHANIC	3642
4619	DANCING, SINGING, PLAYING COMPUTER GAMES 	3644
4620	PLAYING BADMINTON, BASKETBALL	3644
4621	COMPUTER LITERATE	3644
4622	COOKING	3649
4623	DANCING	3649
4624	COMPUTER LITERATE AND SKILLS IN RESEARCH WORK	3647
4625	GOOD COMMUNICATION FACILITY	3647
4626	WITH CIVIL SERVICE PROFESSIONAL ELIGIBILITY	3647
4627	COMPUTER LITERATE	3654
4628	COMPUTER LITERATE 	3650
4629	COMPUTER LITERATE	3655
4630	WRITING REPORTS AND CORRESPONDENCES	3655
4631	COMPUTER LITERATE, READING, HANDICRAFT MAKING	3656
4632	COMPUTER LITERACY 	3651
4633	DRIVING	3651
4634	SWIMMING	3651
4635	READING	3658
4636	GRAPHIC DESIGN/ LAYOUT	3659
4637	PHOTOGRAPHY	3659
4638	PHOTO/ VIDEO EDITING	3659
4639	STREAMING ( OBS, ZOOM, STEAMYARD)	3659
4640	COMPUTER PROGRAMMING	3659
4641	HOUSEKEEPING	3661
4642	COOKING	3661
4643	CHOIR CONDUCTING	3657
4644	COMPUTER LITERATE 	3662
4645	ROBOTICS ASSEMBLY	3662
4646	COOKING	3664
4647	READING INSPIRATIONAL BOOKS	3664
4648	CREATIVE WRITING, SINGING, DIRECTING, COMPOSING POEMS	3666
4649	LETTERING/ DRAWING/ PARTICIPATED IN SPORTS ACTIVITIES/ COACHING	3669
4650	DANCING	3669
4651	SINGING	3669
4652	COMPOSING 	3670
4653	POWERPOINT PRESENTATION	3668
4654	ENCODING	3671
4655	COOKING	3671
4656	COMPUTER LITERATE: WORD,EXCEL,PPT,GOOGLE DOCS,CANVA,WAKELET	3672
4657	MANAGED ELECTRONIC RESOURCES 	3672
4658	COMPUTER LITERATE	3673
4659	DRIVING	3674
4660	COMPUTER LITERATE	3674
4661	COMPUTER LITERATE	3676
4662	RECORDS MANAGEMENT SYSTEM	3676
4663	DATA ENTRY DOCUMENTATION	3676
4664	MEETING MINUTES	3676
4665	TYPING AND READING BOOKS 	3675
4666	PLANTING, READING	3677
4667	HOSTING EVENTS	3678
4668	CAMPUS JOURNALISM 	3678
4669	VOICE ARTIST	3678
4670	SKETCHING	3678
4671	COMPUTER LITERATE	3678
4672	PLANTING, READING	3681
4673	SINGING	3679
4674	ILLUSTRATION/GRAPHIC DESIGN	3679
4675	COMPUTER LITERATE	3679
4676	COMPUTER PROGRAMMING 	3680
4677	WRITING RESEARCH 	3680
4678	WEB PAGE DESIGNING 	3680
4679	DRIVING	3684
4680	SINGING	3684
4681	COOKING	3684
4682	COMPUTER LITERATE 	3683
4683	DANCING	3682
4684	ENCODING	3682
4685	WRITING	3682
4686	BAKING	3686
4687	PLAYING THE PIANO	3686
4688	EVENT MANAGEMENT 	3688
4689	EMCEEING/ HOSTING	3688
4690	TRAINER- ORATION ETC	3688
4691	SCHOOL PAPER ADVISER	3688
4692	COMPUTER LITERATE 	3689
4693	GOOD COMMUNICATION SKILLS 	3689
4694	MANAGERIAL & SUPERVISORY SKILLS	3689
4695	COMPUTER LITERATE ( MS OFFICE, CANVA AND OTHER APPLICATIONS) 	3692
4696	COMPUTER LITERATE	3685
4697	DRIVING SKILLS	3685
4698	PLAYING BALL GAMES	3685
4699	COMPUTER LITERATE	3694
4700	PHOTO AND VIDEO EDITING	3694
4701	TROUBLESHOOTING OF BASIC COMPUTER, LAPTOP, AND PRINTER ISSUES	3694
4702	PLAYING VOLLEYBALL, BADMINTON, AND BASKETBALL	3694
4703	DRIVING 	3695
4704	SEWING 	3695
4705	COOKING 	3695
4706	CREATING POEM	3693
4707	SKILLS OF MULTIMEDIA AND TECHNOLOGY	3696
4708	COMPUTER LITERATE 	3698
4709	CAN DRIVE 2 CAND 4 WHEELED MOTORIZED VEHICLE	3698
4710	GOOD COMPUTER SKILLS	3700
4711	GOOD INTERPERSONAL SKILLS	3700
4712	MUSIC (SINGING)	3697
4713	VISUAL ARTS (PAINTING & SKETCHING)	3697
4714	CANVA EDITING	3697
4715	BAKING	3701
4716	COOKING 	3701
4717	COMPUTER LITERATE	3699
4718	DRAWING/SKETCHING	3699
4719	DANCING/SINGING	3699
4720	PLAYING BALL GAMES AND BOARD GAMES	3699
4721	COMPUTER SKILLS, BASIC SIGN LANGUAGE	3702
4722	WRITING AND COMPREHENSION, BOOKEEPING	3702
4723	BOWLING	3702
4724	COMPUTER LITERATE 	3703
4725	CONSTANT LEARNER	3703
4726	RESEARCHER	3703
4727	RISK TAKER	3703
4728	LEADERSHIP	3703
4729	SEWING, BIKING AND READING NOVEL	3706
4730	KNOWLEDGEABLE ON MICROSOFT OFFICE AND OTHER A LIKE PROGRAMS	3707
4731	BASIC SKILLS IN ADOBE PHOTOSHOP 	3707
4732	DRIVING 	3707
4733	COMMUNICATE WELL IN ORAL AND WRITTEN BOTH ENGLISH AND FILIPINO	3707
4734	LEADERSHIP	3705
4735	COOKING 	3709
4736	WRITING ESSAYS, POEMS ETC.	3709
4737	DANCING	3709
4738	SINGING	3712
4739	DANCING	3712
4740	GARDENING	3712
4741	GARDENING	3711
4742	READING	3711
4743	INTERIOR DECORATING	3711
4744	HOSTING	3711
4745	PLAYING BASKETBALL	3713
4746	PLAYING VOLLEYBALL	3713
4747	N/A	3714
4748	CREATIVITY AND INNOVATION IN TEACHING	3715
4749	ORGANIZATION AND TEAM MANAGEMENT	3715
4750	COMPUTER LITERATE	3715
4751	DRIVING MANUAL TRANSMISSION	3716
4752	COMPUTER LITERATE	3716
4753	SURFING THE NET	3716
4754	WRITING SCHOOL REPORT	3716
4755	HOSTING PROGRAMS	3716
4756	DANCING 	3716
4757	COOKING / BAKING	3716
4758	COMPUTER LITERATE	3717
4759	COOKING	3717
4760	TIME MANAGEMENT	3719
4761	ADAPTABILITY	3719
4762	TEAMWORK	3719
4763	N/A	3718
4764	RECORDER PLAYING	3720
4765	DANCING	3720
4766	COMPUTER LITERATE	3721
4767	PROGRAMMING	3721
4768	COOKING	3721
4769	WRITING FILIPINO POEMS	3722
4770	COOKING	3722
4771	DANCING	3722
4772	CROCHETING	3723
4773	SINGING	3723
4774	READING	3723
4775	SINGING	3725
4776	DANCING	3725
4777	PLAYING VOLLEYBALL	3725
4778	COMPUTER SKILLS	3724
4779	DANCING	3724
4780	COOKING	3726
4781	GOOD COMMUNICATION	3726
4782	UTILIZING MICROSOFT PROGRAMS	3726
4783	READING	3726
4784	VOLEYBALL	3727
4785	BADMINTON	3727
4786	BAKING	3728
4787	COOKING	3728
4788	SKIRTING	3728
4789	COOKING	3729
4790	BAKING	3730
4791	PLAYING VOLLEYBALL	3732
4792	SKILLS IN ICT	3732
4793	COMPUTER LITERATE	3731
4794	EDITING SKILLS	3731
4795	MICROSOFT OFFICE LITERATE	3733
4796	SINGING	3735
4797	DANCING	3735
4798	COMPUTER EDITING WORKS	3735
4799	COMPUTER LITERATE	3734
4800	SPORTS ENTHUSIAST	3734
4801	COOKING	3736
4802	READING BOOKS	3736
4803	DRAWING	3736
4804	MS OFFICES	3738
4805	KNOWLEDGEABLE IN ICT	3737
4806	COMPUTER LITERATE	3739
4807	COOKING	3739
4808	COMPUTER LITERATE	3740
4809	DANCING MODERN, FOLK DANCES	3740
4810	PLAYING COACHING VOLLEYBALL	3740
4811	COOKING	3740
4812	READING SHORT NOVEL	3740
4813	WATCHING EDUCATIONAL VIDEOS	3740
4814	COMPUTER LITERATE	3741
4815	COMPUTER SKILLS	3742
4816	SINGING	3742
4817	COMPUTER LITERATE	3743
4818	WRITING 	3744
4819	COOKING	3744
4820	WATCHING VLOG	3744
4821	COMPUTER LITERATE	3745
4822	DRIVING MOTORCYCLE	3748
4823	ACCOUNTING/AUDIT PROCEDURES	3749
4824	MS OFFICE APPLICATIONS 	3749
4825	READING BOOKS/NOVELS	3749
4826	WATCHING MOVIES/KDRAMAS	3749
4827	DANCING	3747
4828	COMPUTER LITERATE	3750
4829	COOKING	3750
4830	COOKING	3751
4831	COOKING	3748
4832	SEWING	3748
4833	GARDENING	3748
4834	COMPUTER LITERATE	3748
4835	FARMING	3748
4836	COMPUTER LITERATE	3752
4837	COMPUTER LITERATE	3753
4838	DRAWING	3753
4839	SINGING	3753
4840	COMPUTER SKILLS	3754
4841	COMPUTER LITERATE	3757
4842	COOKING	3757
4843	COMPUTER LITERATE	3756
4844	COMPUTER LITERATE (MICROSOFT, EXCEL, POWEPOINT)	3759
4845	COMPUTER LITERATE	3760
4846	SEWING	3758
4847	INTERNET BROWSING	3758
4848	COOKING	3758
4849	SINGING	3758
4850	COOKING	3761
4851	COMPUTER SKILLS	3762
4852	COOKING	3762
4853	CARPENTRY WORKS	3763
4854	ICT	3765
4855	DANCING	3764
4856	COMPUTER LITERATE	3768
4857	GOOD COMMUNICATION SKILLS	3768
4858	COOKING	3768
4859	MS OFFICE APPLIUCATIONS 	3766
4860	DRIVING	3766
4861	COMPUTER LITERATE	3767
4862	SINGING	3767
4863	COMPUTER LITERATE	3772
4864	COOKING	3772
4865	OFFICIATING / SPORTS	3772
4866	COACHING / SPORTS RAAM / ATHLETICS	3772
4867	PLAYING GUITAR	3774
4868	DRIVING	3774
4869	GOOD COMMUNICATION SKILLS	3769
4870	COLLABORATION SKILLS	3769
4871	LEADERSHIP SKILLS	3769
4872	CAN WORK UNDER PRESSURE	3769
4873	COMPUTER LITERATE	3769
4874	HOSTING	3775
4875	DRAWING/LETTERING	3775
4876	DANCING	3775
4881	COMPUTER LITERATE	3777
4877	WILLINGNESS TO LEARN	3776
4878	COMPUTER SKILLS	3776
4879	ADAPTIVE SKILLS	3776
4880	DANCING	3776
4882	COOKING	3771
4883	DRAWING	3771
4884	SINGING	3770
4885	DANCING	3770
4886	COOKING	3780
4887	DRIVING MANUAL CAR	3780
4888	DRIVING AUTOMATIC MOTORCYCLE	3780
4889	COOKING	3779
4890	FLEXIBLE	3781
4891	WILLINGNESS TO LEARN	3781
4892	HAS STRONG WORK ETHICS	3781
4893	OPEN MINDED	3781
4894	COMPUTER SKILLS	3781
4895	DRIVING SKILLS	3781
4896	RESILIENT	3781
4897	READING A BOOK/STORY TELLING	3783
4898	ARTISTIC ACTIVITY	3783
4899	PHOTOGRAPHY	3783
4900	WATCHING DOCUMENTARIES	3783
4901	DANCING	3783
4902	COOKING	3784
4903	ADVANCED COMPUTER SKILLS	3786
4904	ADVANCE COMPUTER SKILLS	3787
4905	COMPUTER LITERATE	3788
4906	POWERPOINT LAYOUTING	3789
4907	PLANTING	3789
4908	DANCING	3789
4909	COMPUTER LITERATE	3785
4910	ADVANCED COMPUTER SKILLS	3791
4911	DRIVING	3792
4912	READING	3790
4913	DANCING	3790
4914	SINGING	3790
4915	DRAWING	3790
4916	COOKING	3790
4917	COMPUTER LITERATE	3795
4918	HOSTING	3795
4919	DANCING	3795
4920	SINGING	3795
4921	DESIGNING	3795
4922	READING	3795
4923	READING	3794
4924	DANCING	3794
4925	SINGING	3794
4926	DRAWING	3794
4927	COMPUTER SKILLS 	3796
4928	READING	3800
4929	COMPUTER LITERATE	3798
4930	DANCING	3798
4931	SINGING	3798
4932	DRAWING	3798
4933	ARTS AND CRAFTS	3799
4934	DRAWING	3799
4935	PLAYING PIANO AND BANDURRIA	3799
4936	READING BIBLE	3799
4937	COMPUTER LITERATE 	3801
4938	GOOD COMMUNICATION SKILLS 	3801
4939	WRITER	3801
4940	PLAYING VOLLEYBALL	3803
4941	READING NOVEL STORIES	3803
4942	WIILINGNESS TO LEARN	3805
4943	PPOSITIVE ATTITUDE	3805
4944	HAS STRONG WORK ETHICS	3805
4945	OPNE-MINDED	3805
4946	COMPUTER SKILLS	3805
4947	FLEXIBLE	3805
4948	RESILIENT	3805
4949	DRIVING	3806
4950	COOKING	3806
4951	DANCING	3806
4952	DOING SPORTS	3806
4953	SINGING	3804
4954	SINGING	3802
4955	DANCING	3802
4956	COMPUTER LITERATE	3802
4957	MOTOR DRIVING	3808
4958	POSITIVE ATTITUDE	3807
4959	WILLINGNESS TO LEARN	3807
4960	HAS STRONG WORK ETHICS	3807
4961	OPEN-MINDED	3807
4962	COMPUTER SKILLS	3807
4963	FLEXIBLE	3807
4964	RESILIENT	3807
4965	COOKING	3809
4966	READING 	3809
4967	READING 	3812
4968	TEACHING MINI-BAND	3813
4969	PLANTING	3810
4970	MOTOR DRIVING	3810
4971	COOKING	3815
4972	VOLLEYBALL OFFICIATING OFFICIAL	3811
4973	CHESS OFFICIATING OFFICIAL	3811
4974	CAN PLAY XYLOPHONE 	3811
4975	VOLLEYBALL PLAYER	3811
4976	CHESS PLAYER	3811
4977	COMPUTER LITERATE	3811
4978	COOKING	3814
4979	GARDENING	3814
4980	COOKING	3816
4981	FACILITATING LECTURE/ECHOING	3822
4982	DOCUMENT PREPARATION USING MS OFFICES	3822
4983	SIMPLE SLIDE LAYOUTING	3822
4984	HOSTING/DANCING/SINGING	3822
4985	N/A	3823
4986	COOKING	3818
4987	DANCING	3819
4988	READING	3819
4989	ART	3820
4990	DANCING	3821
4991	VIDEO EDITING	3821
4992	DANCING 	3824
4993	PLAYING VOLLEYBALL	3824
4994	COOKING	3824
4995	COOKING	3825
4996	SINGING	3825
4997	COOKING	3826
4998	DANCING	3829
4999	READING	3827
5000	N/A	3831
5001	READING BIBLE AND INFORMATIVE BOOKS	3828
5002	N/A	3832
5003	WRITING	3830
5004	DANCING	3833
5005	SINGING	3833
5006	COOKING	3833
5007	COOKING	3837
5008	ACTIVE LISTENING	3837
5009	COMPUTER LITERATE	3837
5010	N/A	3834
5011	COMPUTER REPAIR	3839
5012	DRAFTING/AUTOCAD	3839
5013	ADOBE PHOTOSHOP	3839
5014	CHORAL SINGING	3838
5015	SCOUTING 	3841
5016	READING BOOKS 	3842
5017	GARDENING 	3842
5018	WRITING 	3842
5019	DANCING	3842
5020	DRIVING	3843
5021	COOKING	3843
5022	SINGING	3850
5023	CROSS - STITCHING	3845
5024	GARDENING	3845
5025	WRITING	3848
5026	SINGING	3848
5027	COOKING	3848
5028	DANCING 	3844
5029	COOKING 	3844
5030	COMPUTER LITERATE	3851
5031	SINGING	3851
5032	WRITER	3851
5033	COMPUTER LITERATE	3847
5034	GOOD COMMUNICATION SKILLS	3847
5035	ARTS AND MUSIC	3847
5036	PLANTING	3852
5037	COOKING	3854
5038	READING BOOKS/MAGAZINES	3854
5039	WRITER	3854
5040	COMMUNICATION SKILLS	3849
5041	ACTIVE LISTENING	3849
5042	CREATIVITY	3849
5043	ACCURACY AND ATTENTION TO DETAILS	3849
5044	POSITIVE ATTRIBUTE	3849
5045	COOKING	3858
5046	GARDENING	3858
5047	ADAPTABILITY	3860
5048	READING	3860
5049	BAKING	3860
5050	WRITING	3860
5051	COMPUTER LITERATE	3861
5052	FUND OF MUSIC & FOREIGN MOVIES	3861
5053	DRAWING AND CROSS STITCHING	3861
5054	READING BOOKS/MAGAZINES	3855
5055	PLAYING BANDURIA	3855
5056	BAKING	3867
5057	COOKING	3867
5058	DRIVING	3867
5059	N/A	3866
5060	DANCING	3868
5061	COMPUTER LITERATE	3868
5062	COMPUTER SKILLS	3869
5063	N/A	3871
5064	COMPUTER LITERATE	3862
5065	SINGING	3870
5066	READING	3870
5067	COMPUTER LITERATE	3863
5068	COOKING	3863
5069	COMPUTER LITERATE	3865
5070	COOKING	3865
5071	SINGING	3865
5072	COMPUTER SKILLS	3872
5073	SINGING	3873
5074	DANCING	3873
5075	WRITER	3873
5076	N/A	3874
5077	COMPUTER LITERATE	3875
5078	COOKING	3875
5079	DRAWING	3875
5080	DANCING	3876
5081	PLAYING VOLLEYBALL	3876
5082	PLAYING BADMINTON	3876
5083	PLAYING INSTRUMENT (GUITAR & UKELELE)	3877
5084	COMPUTER LITERACY	3878
5085	READING	3882
5086	WRITING	3882
5087	I SPEND MY FREE TIME IN DANCING AND PLANTING	3881
5088	CREATIVITY	3881
5089	COMPUTER LITERATE	3883
5090	DANCING	3916
5091	SINGING	3916
5092	COOKING	3918
5093	COMMUNICATION SKILLS	3918
5094	ACTIVE LISTENING	3918
5095	ACCURACY AND ATTENTION TO DETAILS	3918
5096	DRIVING	3917
5097	SEWING	3917
5098	GARDENING	3917
5099	MASONRY	3919
5100	PLAYING GUITAR / UKULELE	3919
5101	GARDENING	3919
5102	CARPENTRY	3919
5103	N/A	3921
5104	N/A	3922
5105	SURFING INTERNET	3879
5106	SINGING	3879
5107	COOKING	3879
5108	READING	3879
5109	DANCING	3879
5110	DANCING	3923
5111	SINGING	3923
5112	READING	3923
5113	SINGING	3880
5114	GARDENING	3880
5115	SINGING	3925
5116	COOKING	3925
5117	PUBLIC SPEAKING	3925
5118	NEWS WRITING	3925
5119	DANCING	3924
5120	CARPENTRY	3960
5121	PLAYING VOLLEYBALL	3960
5122	COOKING	3960
5123	WRITING SPOKEN WORDS	3958
5124	DRIVING	3958
5125	ACTING	3958
5126	VOICE OVER	3958
5127	N/A	3961
5128	COMPUTER LITERATE	3959
5129	SINGING	3959
5130	COOKING	3959
5131	READING	3959
5132	CROSS-STITCHING	3959
5133	DANCING AND ACTING	3962
\.


--
-- TOC entry 4671 (class 0 OID 0)
-- Dependencies: 427
-- Name: Skills_SkillId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Skills_SkillId_seq"', 5133, true);


--
-- TOC entry 4672 (class 0 OID 0)
-- Dependencies: 429
-- Name: Spouse_SpouseId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Spouse_SpouseId_seq"', 33, true);


--
-- TOC entry 4050 (class 0 OID 17697)
-- Dependencies: 428
-- Data for Name: Spouses; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Spouses" ("SpouseId", "FirstName", "MiddleName", "LastName", "FullName", "Gender", "BirthDate", "BirthPlace", "Occupation", "EmailAddress", "ContactNumber", "EmployeeId") FROM stdin;
\.


--
-- TOC entry 4052 (class 0 OID 17705)
-- Dependencies: 430
-- Data for Name: StationEmployees; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "StationEmployees" ("StationEmployeeId", "StationId", "EmployeeId") FROM stdin;
\.


--
-- TOC entry 4673 (class 0 OID 0)
-- Dependencies: 431
-- Name: StationEmployees_StationEmployeeId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"StationEmployees_StationEmployeeId_seq"', 13376, true);


--
-- TOC entry 4054 (class 0 OID 17710)
-- Dependencies: 432
-- Data for Name: Stations; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Stations" ("StationId", "StationName", "EthernetReaderIpAddress", "RfidReaderType", "BiometricsType", "WebcamActivated", "WindowStyle") FROM stdin;
\.


--
-- TOC entry 4674 (class 0 OID 0)
-- Dependencies: 433
-- Name: Stations_StationId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Stations_StationId_seq"', 8, true);


--
-- TOC entry 4056 (class 0 OID 17722)
-- Dependencies: 434
-- Data for Name: StepIncrementPolicies; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "StepIncrementPolicies" ("StepIncrementPolicyId", "YearsOfService", "AutoDetectQualifiedEmployees", "NosiReportFormat") FROM stdin;
1	3	f	Format 1
\.


--
-- TOC entry 4675 (class 0 OID 0)
-- Dependencies: 435
-- Name: StepIncrementPolicies_StepIncrementPolicyId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"StepIncrementPolicies_StepIncrementPolicyId_seq"', 1, false);


--
-- TOC entry 4058 (class 0 OID 17730)
-- Dependencies: 436
-- Data for Name: StudyLeaveServiceObligations; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "StudyLeaveServiceObligations" ("ServiceObligationId", "NumberOfMonthsGranted", "NumberOfMonthsObligated") FROM stdin;
2	2	12
3	1	6
4	3	18
\.


--
-- TOC entry 4676 (class 0 OID 0)
-- Dependencies: 437
-- Name: StudyLeaveServiceObligations_ServiceObligationId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"StudyLeaveServiceObligations_ServiceObligationId_seq"', 5, true);


--
-- TOC entry 4060 (class 0 OID 17735)
-- Dependencies: 438
-- Data for Name: SystemParameters; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "SystemParameters" ("NextIdVariableIndex", "NextImageId", "CompanyName", "CompanyLogo", "CompanyTelephone", "CompanyCellphone", "CompanyWebsite", "SystemParameterId", "CompanyEmail", "Signatory1Name", "Signatory1Position", "EmployeeNumberPrefix", "NextEmployeeNumber", "Signatory2Name", "Signatory2Position", "BankAccount", "HDMFMaxSalary", "PayrollOfficerName", "PayrollOfficerPosition", "TimekeepingOfficerName", "TimekeepingOfficerPosition", "HROfficerName", "HROfficerPosition", "EmployerSSSNo", "EmployerPhilhealthNo", "EmployerTIN", "NightPremiumStart", "NightPremiumEnd", "BreakHours", "LeaveYear", "MainImagePath", "CloseGateActivated", "EmergencyOutActivated", "DepartmentTitle", "DivisionTitle", "SectionTitle", "Barangay", "CityOrMunicipality", "Province", "ZipCode", "PhilHealthYear", "HDMFYear", "SSSYear", "WithholdingTaxYear", "IsCity", "MinimumWage", "Conso", "REG3D", "GarbageFee", "SSSContri", "EducAssistance", "WebcamActivated", "ECCPercentage", "ECCMaxValue", "IsUsingWithholdingTax", "TaxableBonus", "IsIncludeHoliday", "AdministrativeDivision", "GeneralPayrollFormat", "EligibilityExpiryWarningDays", "CountryName", "NetPayGreaterHalfAllocation", "PayrollSummaryFormat", "LeaveApplicationReportFormat", "EmployeeListArrangement", "BasicPayRoundOffRule", "ServiceRecordReportFormat", "PayslipFormat", "DailyWagePayrollFormat", "ObligationRequestReportFormat", "SalaryAccountCode", "AllowanceAccountCode", "GsisAccountCode", "HdmfAccountCode", "PhilHealthAccountCode", "GsisEccAccountCode", "DefaultDepartmentToLoad", "TardinessValueType", "JobOrderFilterType", "OvertimeValueType", "AbsentValueType", "SavePayrollChangesToProfilePermanent", "SavePayrollChangesToProfileJobOrder", "LaundryAccountCode", "SubsistenceAccountCode", "HazardPayAccountCode", "PlantillaRecordsReportFormat", "AreaCode", "AgencyAddress") FROM stdin;
0	0000000011	DepEd Batangas City	DepEd Batangas City.png				1				15-	000004			 	5000.00										22:00	6:00	7/3/2015 1:00:00 AM		N:\\\\	f	f	Division	Section	Unit	 6	Batangas	BATANGAS	4200	2020-01-01	2014-01-01	2014-01-01	2018-01-01	t	300.00	20.00	50.00	25.00	330.00	20.00	t	0.01	100.00	f	90000.00	f	Provincial	Format 2	4	Philippines	16-30	Format 2	Format 5	EMPLOYEE NO.	Truncate. Don't round off	Format 2	Format 3	Format 3	Format 1							ALL	Equivalent	By Cluster	Equivalent	Equivalent	t	t				Format 2	4200	Batangas City
\.


--
-- TOC entry 4061 (class 0 OID 17777)
-- Dependencies: 439
-- Data for Name: TardinessPolicies; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "TardinessPolicies" ("Id", "Day", "GracePeriodMinutes", "LateMinutes", "HalfDayMinutes", "AbsentMinutes") FROM stdin;
217	Sunday	0	1	0	0
218	Monday	0	1	0	0
219	Tuesday	0	1	0	0
220	Wednesday	0	1	0	0
221	Thursday	0	1	0	0
222	Friday	0	1	0	0
223	Saturday	0	1	0	0
\.


--
-- TOC entry 4677 (class 0 OID 0)
-- Dependencies: 440
-- Name: TardinessPolicies_Id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"TardinessPolicies_Id_seq"', 223, true);


--
-- TOC entry 4063 (class 0 OID 17785)
-- Dependencies: 441
-- Data for Name: TimeLogPolicies; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "TimeLogPolicies" ("Id", "OfficeHoursRecurrence", "DailyOpeningTime", "DailyClosingTime", "MondayOpeningTime", "MondayClosingTime", "TuesdayOpeningTime", "TuesdayClosingTime", "WednesdayOpeningTime", "WednesdayClosingTime", "ThursdayOpeningTime", "ThursdayClosingTime", "FridayOpeningTime", "FridayClosingTime", "SaturdayOpeningTime", "SaturdayClosingTime", "SundayOpeningTime", "SundayClosingTime", "OpenOnMondays", "OpenOnTuesdays", "OpenOnWednesdays", "OpenOnThursdays", "OpenOnFridays", "OpenOnSaturdays", "OpenOnSundays", "NightDifferentialStartTime", "NightDifferentialEndTime", "MultiplierOrAmount", "NightDifferentialValue", "RegularHours", "AutoDetectLogTime", "AmInStartTime", "AmInEndTime", "AmOutStartTime", "AmOutEndTime", "PmInStartTime", "PmInEndTime", "PmOutStartTime", "PmOutEndTime", "AllowEarlyOut", "BiometricExcelImportFormat", "AutoGenerateSchedules", "ScheduleGenerationStatus", "MonitoringNotificationDuration", "LogIntervalMinutes", "LogViewingType", "DtrReportFormat", "DaysInMonth", "TravelOrderFormFormat", "MonthlyMaximumLocatorSlips") FROM stdin;
1	Daily	08:00 am	08:00 pm															t	t	t	t	t	t	t	00:00	00:00		0.00	8	t	12:01 am	11:59 am	12:00 pm	12:30 pm	12:31 pm	04:59 pm	05:00 pm	12:00 am	t	Format 1	f	February 2023	2	30	Previous Logs	Format 1	30	Format 1	0
\.


--
-- TOC entry 4678 (class 0 OID 0)
-- Dependencies: 442
-- Name: TimeLogPolicies_Id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"TimeLogPolicies_Id_seq"', 1, true);


--
-- TOC entry 4065 (class 0 OID 17810)
-- Dependencies: 443
-- Data for Name: Trainings; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Trainings" ("TrainingId", "TitleOfConference", "NatureOfParticipation", "SponsoringAgency", "Status", "BasicInformationId", "InclusiveDates", "FromDate", "ToDate", "NumberOfHours", "SpecificPositionId", "SpecificDepartmentId", "SpecificEmploymentStatusId", "Type") FROM stdin;
13620	Gender and Development Seminar (RA 7610 & RA 7677) cum TEAM BUILDING	\N	PCEDO	\N	0	\N	2018-06-08	2018-06-09	16	0	0	0	Techncial 
7	BLS; ACLS		PHA		1388	\N	2018-10-09	2019-10-10	\N	0	0	0	
868	Modern PHP		Main Campus		1978	\N	2015-12-15	2015-12-15	\N	0	0	0	
13621	Training and Mainstreaming Green Growth in Development Planning (Module 2)	\N	National Economic and Development Authority	\N	0	\N	2018-02-26	2018-02-28	24	0	0	0	Technical 
2012	Seminar on Gender and Development		Provincial Government of Bataan 		19	\N	2016-05-27	2016-05-27	\N	0	0	0	
2013	Seminar on Updates in Philhealth Benefits and Membership, BIR Tax Updates, Code of Ethics and Labor Standards and Labor Relations 		Philippine Institue of Certified Public Accountants - Bataan Chapter 		19	\N	2008-11-07	2008-11-07	\N	0	0	0	
2014	Seminar on Implementation Rules and Regulations of Republic Act 9504 		Bureau of Internal Reveneu- Revenue District Office 20		19	\N	2008-10-08	2008-10-08	\N	0	0	0	
13622	Training and Mainstreaming Green Growth in Development Planning (Module )	\N	National Economic Growth and Development Authority	\N	0	\N	2018-01-08	2018-01-31	24	0	0	0	 
13623	Seminar on how to effectively prepare BIR  reortorial requirements	\N	Department of Trade and Industry- Bataan	\N	0	\N	2017-05-22	2017-05-22	4	0	0	0	Technical 
12191	Driving NC II		TESDA		1629	\N	2018-09-09	2018-09-09	\N	0	0	0	
13624	Seminaer on Understanding Branding, Trademark, Patent and Copyright	\N	Department of Trade and industry- Bataan	\N	0	\N	2017-03-29	2017-03-29	4	0	0	0	Technical 
889	STRATEGIC PANNING AND FINALIZATION OF PROGRAMS AND PROJECT OF SCHOOL HEALTH AND NUTRITION		DEPARTMENT OF EDCUATION- BATAAN		1981	\N	2018-01-24	2018-01-25	\N	0	0	0	
12192	Basic Occupational Safety and Health (BOSH)		Safeways Consultancy and Safety Services		1629	\N	2013-05-20	2013-05-24	\N	0	0	0	
1049	ON-THE-JOB TRAINING SOCIAL SECURITY SSYTEM		Mrs. Aurora Tranate		1999	\N	1997-06-01	1997-10-01	\N	0	0	0	
13625	Seminar on Current Ood Manufacturing practices Cum Packaging and Labelling	\N	Department of Trade and Industry- Bataan	\N	0	\N	2017-02-21	2017-02-21	8	0	0	0	Technical 
1191	Colgate Symposium 		Colgate		2015	\N	2003-05-01	2003-05-01	\N	0	0	0	
13626	Seminar on E-Marketing as an effective strategy for MSME's (Website/ social Media)	\N	Department of Trade and industry- Bataan	\N	0	\N	2017-02-21	2017-02-21	8	0	0	0	Technical
986	ISO 9001:2015 Awareness and Documentation Seminar 		NEO AMCA Innovative Solutions Corporation		560	\N	2017-07-27	2017-07-27	\N	0	0	0	
987	Basic Occupational Safety and Health (BOSH) for Nurses		Occupational Health Nurses Association of the Philippines 		560	\N	2013-09-22	2013-09-28	\N	0	0	0	
1136	72nd PICPA Annual Convention ( ANC )				6	\N	2017-11-22	2017-11-25	\N	0	0	0	
1137	User's Training on General Accounting and Auditing System 		Geodata Solutions Inc. 		6	\N	2017-12-12	2017-12-13	\N	0	0	0	
13627	International Youth Day	\N	Bataan Peninsula State University	\N	0	\N	2015-08-12	2015-08-12	6	0	0	0	Technical
9764	Jail Management Moral Necessary		Office of the Provincial Warden		683	\N	2008-05-16	2008-05-17	\N	0	0	0	
9765	Basic Jail Management Seminar		Office of the Provincial Warden		683	\N	2006-11-16	2006-11-18	\N	0	0	0	
9766	Disaster Preparedness Program		National Disaster Coordinating Counsil		683	\N	2005-05-12	2005-05-13	\N	0	0	0	
9767	Resiliency Preparedness Leadership Workshop		NRC		268	\N	2018-03-14	2018-03-14	\N	0	0	0	
9768	All Hazards IMT-ICS		OCDR 3		268	\N	2018-01-22	2018-01-26	\N	0	0	0	
2901	BASIC LIFE SUPPORT				2086	\N	2018-01-01	2020-01-01	\N	0	0	0	
13628	Doing Business in Free trade areas and doing business with EU using generalized scheme of preference plus	\N	DTI- Bataan	\N	0	\N	2015-05-21	2015-05-21	6	0	0	0	TECHNICAL
9783	NOAH Bataan Openstreetmap and Capacity Assessment Training		NOAH Bataan Openstreetmap and Capacity Assessment Training		269	\N	2016-10-12	2016-10-12	\N	0	0	0	
9784	First Aid and Basic Life Support Refresher Course Training		Philippine Red Cross - Bataan Chapter		269	\N	2016-02-29	2016-03-04	\N	0	0	0	
10406	SEMINAR/WOPRKSHOP ON DETAILED ENGINEERING DESIGN FOR BRIDGE PROJECTS 		HOTEL KORESCO, CD/DILG 		970	\N	2017-10-09	2017-10-13	40	0	0	0	
13629	"entrepreneurship" : An overview on the real world of being an entrepreneur	\N	Bataan Peninsula state University	\N	0	\N	2015-05-15	2015-05-15	6	0	0	0	MANAGERIAL 
8275	Training on Trouble Shooting, Maintenance, Fault Diagnostic & Instriment Repair on Model T101 Fluorescent S02 Analyzer, Mode T204 Chemiluminescent N0/N02/NOX Analyzer and Model T640 PM Mass Monitor				358	\N	0001-01-01	0001-01-01	\N	0	0	0	
8276	Training Course on Seawater Nutrient Analysis and Quality Assurance & Quality Control				358	\N	0001-01-01	0001-01-01	\N	0	0	0	
13630	Application of logistics management in actual business settings 	\N	Bataan Peninsula State University	\N	0	\N	2015-03-19	2015-03-19	4	0	0	0	Managerial 
10409	REFRESHER COURSE ON STRUCTURAL ENGINEERING FOR ROADS AND BRIDGES OF LOCALLY FUNDED PROJECTS 		EUROTEL, NORTH EDSA, Q.C/DILG		970	\N	2017-05-08	2017-05-12	40	0	0	0	
13631	Basic Concepts in Management Information Systems	\N	Bataan Peninsula State University	\N	0	\N	2015-03-19	2015-03-19	4	0	0	0	Managerial
4077	LUNG MONTH CELEBRATION		DOH/PHO-BALANGA CITY, BATAAN		92	\N	0001-01-01	0001-01-01	\N	0	0	0	
4078	GUIDELINES/ORIENTATION ON THE IMPLEMENTATION OF THE EXPANDED NEWBORN SCREEINING(ENBS)		DOH-R03 TRAVELLER'S HOTEL		92	\N	2015-06-04	2016-06-05	\N	0	0	0	
2040	Executive Briefing on Philippine Public Sector Accounting Standards (PPSAS)		Commission on Audit - Region III		23	\N	2015-12-08	2015-12-10	\N	0	0	0	
2041	Regional Consultation and Orientation on the Revised Special Local Roads Fund (SLRF) Guidelines 		Department of Interior and Local Government - Region III		23	\N	2015-08-04	2015-08-04	\N	0	0	0	
2042	Provincial Disaster Risk Reductio and Management -Summit for Local Chief Executives (LCEs) of Bataan 		Office of Civil Defense - Region IIII		23	\N	2014-05-22	2014-05-23	\N	0	0	0	
13632	professional Empowerment throught Teamwork	\N	Bataan Peninsula State University	\N	0	\N	2015-01-30	2015-01-30	4	0	0	0	Supervisory/Managerial
1429	2017 Regional Council of Human Resource Management Practitioners (RCHRMP) Convention		Civil Service Commission Regional Office 3		504	\N	2017-05-09	2017-05-11	\N	0	0	0	
1430	ISO 9001:2015 Awareness Seminar		NEO AMCA Innovative Solutions Corporation		504	\N	2017-07-27	2017-07-27	\N	0	0	0	
1432	Forum on Omnibus Rules on Appointments (ORA) and other Human Resource Actions (OHRA)		Civil Service Commission Regional Office 3		504	\N	2017-10-12	0001-01-01	\N	0	0	0	
12229	Bahay Bahay Strategy Orientation For Health Service Providers Attire Local Leveling		Commission on Population Reg III		1475	\N	2017-06-21	2017-06-22	24	0	0	0	
12230	Katropa Training		Provincial Population Office		1475	\N	2016-06-22	2016-06-22	8	0	0	0	
12231	Refresher Course on Pre-Marriage Counseling for PMC Counselors of Bataan		Commission on Population Region III		1475	\N	2016-02-08	2016-02-10	24	0	0	0	
4081	TRAINING ON HIV SERVICE		DEPARTMENT OF HEALTH		93	\N	2018-04-03	2018-04-06	\N	0	0	0	
13633	Doing business in free trade areas	\N	DTI-Bataan	\N	0	\N	2014-11-03	2014-11-03	6	0	0	0	technical
8296	1st Multipartite Monitoring Team Training		Environmental Management Bureau Region 3 and Philippine National Oil Company Alternative Fuels Corporation		357	\N	2007-05-31	2007-06-01	\N	0	0	0	
9618	Taking of Fingerprints		Bataan PCLO		26	\N	2012-05-02	2012-05-04	\N	0	0	0	
12232	National Certificate II in Cookery		Technical Education and Skills Development Authority		1476	\N	2014-10-28	2014-10-28	3	0	0	0	
3421	Seminar on Energy and Conservation		Department of Energy - Provincial Government of Bataan		367	\N	2012-05-17	2012-05-17	\N	0	0	0	
3422	Training on Bamboo Nursery Establishment		Provincial Government of Bataan - Bataan Peninsula State University		367	\N	2012-03-21	2012-03-22	\N	0	0	0	
12264	Toyota Way:Respect for Peaople Continous Improvement		AsiaWide Land Specialist Development Corporation		1026	\N	2015-05-13	2015-05-27		0	0	0	
2221	DATA MANAGEMENT AND ANALYSIS (DAMA) TRAINING 	TECHNICAL 	BUREAU OF LOCAL GOVERNMENT FINANCE III, DEPARTMENT OF FINANCE 		573	\N	2017-10-24	2017-10-25	\N	0	0	0	TECHNICAL 
10428	Position Title Course On Incident Command System 		RDRRMC3 		293	\N	2013-04-22	2013-04-26	\N	0	0	0	
10429	Three Day Basic/ Intermediate Incident Command System Training Course		RDRRMC3		293	\N	2013-02-11	2013-02-13	\N	0	0	0	
2218	BASIC OPERATION ON LOCAL TREASURY SERVICE (BOLTS) TRAINING	MANAGERIAL 	BUREAU OF LOCAL GOVERNMENT FINANCE III, DEPARTMENT OF FINANCE 		573	\N	2017-04-24	2017-04-28	\N	0	0	0	MANAGERIAL 
2219	ISO 9001:2015 AWARENESS SEMINAR 	TECHNICAL 	NEO AMCA INNOVATIVE SOLUTIONS CORPORATION		573	\N	2017-07-27	2017-07-27	\N	0	0	0	TECHNICAL 
2220	ISO 9001:2015 INTERNAL QUALITY AUDIT 	TECHNICAL	GEODATA SOLUTIONS INC.		573	\N	2017-10-06	2017-10-06	\N	0	0	0	TECHNICAL
10467	Driving NCII (TESDA)		TESDA		294	\N	2018-08-27	2018-08-27	\N	0	0	0	
10715	Welding Arc SMAW NC II		TESDA		1727	\N	0001-01-01	0001-01-01		0	0	0	
8303	Workshop Seminar on Soil Loss Demo-Site Technology		Bureau of Soils and Water Management Under the Department of Agriculture		354	\N	2018-03-22	2018-03-23	\N	0	0	0	
8304	Training on the Involvement of Citizens in Monitoring Rural Infrastructure Subproject		Philippine Rural Development Project Under the Department of Agriculture		354	\N	2017-10-24	2017-10-27	\N	0	0	0	
8305	Grievance Redress Mechanism (GRM) Training for PPMIUS, MLGU and MLGU		Philippine Rural Development Project Under the Department of Agriculture		354	\N	2017-06-05	2017-06-08	\N	0	0	0	
8306	3rd LEG of Pamana: World Heritage and Biosphere Reserve Nomination Series		United Nations Educational, Scientific and Cultural Organization (UNESCO) World Heritage center Philippines		354	\N	2017-03-23	2017-03-24	\N	0	0	0	
8952	Advanced Cardiovascular Support - Emergency Cardiovascular care		CPR Pro Medical Training and Learning Institute		1133	\N	2018-03-25	2018-03-25		0	0	0	
8954	Simplifying Neurology		Department of Neuroscience Up-PGH		1133	\N	2013-02-28	2013-03-01	16	0	0	0	
8955	Basic Life Support Adult Lay Rescue		Philippine National Red Cross Montemar Beach Club Inc.		1133	\N	2010-09-13	2010-09-14	16	0	0	0	
8956	Artenal Blood Gas Analysis		Subic Bay Medical		1133	\N	2005-08-02	2005-08-02	8	0	0	0	
1824	GAD Basic Concert and Issues	Managerial	Ms. Rosanna Verdida-POP		1774	\N	2016-07-01	2016-07-01	\N	0	0	0	Managerial
2105	Sectoal Sessions ( Government) 		Philippine Institute of Certified Public Accountants (PICPA)		21	\N	2017-11-23	2017-11-23	\N	0	0	0	
12319	Follow - Through Activity on Local Road Maintenance Management	Technical	Department of Interior and Local Governement		994	\N	2018-12-10	2018-12-11	16	0	0	0	Technical
12320	43rd National PICE Convention - Build Build Build for Smart, Strong and Sustainable Socities (BBB for SSSS)	Technical	Philippine Institute of Civil Engineers, Inc (PICE)		994	\N	2017-11-28	2017-11-30	24	0	0	0	Technical
1986	Seminar on Stree Management and Self-Employment 		Philippine Institute of Certified Public Accountants - Bataan 		17	\N	2003-03-28	2003-03-28	\N	0	0	0	
1987	Seminar on Bataan Information and Communication Technology 		Systems and Plan Integrator Development Company and IBM Philippines Incorporated		17	\N	2003-08-27	2003-08-27	\N	0	0	0	
1988	Seminar on the Updates  of New Government Accounting System 		Commission on Audit -Cluster II		17	\N	2002-10-14	2002-10-15	\N	0	0	0	
1989	Seminar Workshop on New Government Accounting System 		Commission on Audit - Bataan 		17	\N	2001-12-10	2001-12-13	\N	0	0	0	
2115	2016 Updates on the Revised Implementing Rules and Regulation of Republic Act No. 9184 Held at Crown Hotel, City of Balanga Bataan 		Government Procurement Policy Board (GPPB)		21	\N	2017-04-20	2017-04-21	\N	0	0	0	
2005	ISO 9001:2015 Awareness Seminar 		NEO AMCA Innovative Solutions Corporation 		18	\N	2017-07-27	2017-07-27	\N	0	0	0	
2264	National Conference Phaltra		Bureau of Local Government Finance Region III		580	\N	2019-03-04	2019-03-07	\N	0	0	0	
4503	TRAINING ON NEWBORN SCREENING		DEPARTMENT OF HEALTH		133	\N	2016-11-17	2016-11-18	\N	0	0	0	
2698	14TH WORLD CONGRESS ON ANAEROBIC DIGESTION 		PWWA/IWWA		2060	\N	2015-11-15	2015-11-18	\N	0	0	0	
2699	SINGAPORE INTERNATIONAL WATER WEEK		PWWA/IWWA		2060	\N	2016-07-10	2016-07-14	\N	0	0	0	
4547	FROM MOLECULES TO MEDICINE				2134	\N	0001-01-01	0001-01-01	\N	0	0	0	
3092	ASEAN Conference on Food Handling 		The ASEAN Food Handling Bureau		2094	\N	1977-08-01	1977-08-01	\N	0	0	0	
3093	Dale Carnegie Course		Dale Carnegie Licensing Phippines 		2094	\N	0001-01-01	0001-01-01	\N	0	0	0	
3094	Satake Post Harvest iIn Plant Observation and Training		Satake Japan		2094	\N	1979-05-01	1979-05-14	\N	0	0	0	
3095	Discussion of Agri.Mktg./ Post Harvest Facilities / Public Market Admin				2094	\N	1982-10-02	1982-10-09	\N	0	0	0	
3096	Training Workshop for Planning and Designing Fruits and Vegetable Market				2094	\N	1988-06-20	1988-06-26	\N	0	0	0	
3097	Workshop on Institutionalizing Reform to Increase Efficiency & Effectivity In Agriculture				2094	\N	1990-10-12	1990-10-13	\N	0	0	0	
12357	Public Administration				2181	\N	0001-01-01	0001-01-01		0	0	0	
3340	Stategic Alignment and Scenario Planning Workshop IBM International E		Palisades NY, USA		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3341	Supercomm 2001		Atlanta Georgia, USA		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3342	Asia Pacific  Helios Road Show		Singapore		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
6741	Valuation with FSRM		SGV and Co.		377	\N	2016-09-01	2016-09-01	\N	0	0	0	
6742	Introduction to Asset Management		SGV and Co.		377	\N	2016-06-01	2016-06-01	\N	0	0	0	
6743	ASSR 101 and 102: New Staff Program		SGV and Co.		377	\N	2015-12-01	2015-12-01	\N	0	0	0	
4801	PHILHEALTH REACHOUT PROJECT		PHILHEALTH		163	\N	2014-09-29	2014-09-29	\N	0	0	0	
4805	NO BALANCE BILLING FOR		PHILHEALTH		163	\N	2012-10-05	2012-10-05	\N	0	0	0	
2503	Gender and Development: Basic Concepts and Issues	Technical 	Provincial Government of Bataan		602	\N	2016-06-17	2016-06-17	\N	0	0	0	Technical 
2552	TESDA-TRAINERS METHODOLOGY (TM1) / ASSESSORS METHODOLOGY (AM1)	TECHNICAL 	IHRM, BACOOR, CAVITE 		2051	\N	2009-10-05	2009-10-13	\N	0	0	0	TECHNICAL 
2542	DANGEROUS DRUG ABUSE SUMMIT		DEPARTMENT OF HEALTH		2050	\N	2017-02-07	2017-02-08	\N	0	0	0	
4160	Roll-Out Training on the Development and Use the ESRE Version 3 Under the Lift System	Technical	BLGF Region III		66	\N	2018-03-21	2018-03-23	\N	0	0	0	Technical
3172	All- Hazard Incident Management Team(AHIMT) ICS Training Course	Managerial	OCD - Regional Office 3		2097	\N	2013-12-16	2013-12-20	\N	0	0	0	Managerial
2703	11TH WORLD CONGRESS OF CARDIOGRAPHY 	TECHNICAL	PHILIPPINE HEART ASSOCIATION 		2065	\N	1990-02-11	1990-02-16	\N	0	0	0	TECHNICAL
2704	AN INTEGRATED POSTGRADUATE COURSE ON DYNAMIC ELECTROCARDIOGRAPHY 	TECHNICAL 	UST HOSPITAL SECTION OF CARDIOLOGY 		2065	\N	1991-06-13	1991-06-15	\N	0	0	0	TECHNICAL 
9889	JPCOM: Development of Managerial Skills		JPCOM		1927	\N	2015-01-30	2015-01-30	\N	0	0	0	
2855	PUBLIC ATTORNEY'S OFFICE SEMINAR ON PROTECTION OF REFUGEES AND STATELESS PERSONS		UNITED NATION HIGH COMMISSIONER FOR REFUGEES		2084	\N	2013-11-22	2013-11-30	\N	0	0	0	
2856	5TH MANDATORY CONTINUING LEGAL EDUCATION AND NATIONAL CONVENTION OF PUBLIC ATTTORNEYS 		PUBLIC ATTORNEY'S OFFICE 		2084	\N	2014-10-13	2014-10-17	\N	0	0	0	
2892	BASIC LIFE SUPPORT TRAINING - HEALTHCARE PROVIDERS		SAN LAZARO HOSPITAL 		2085	\N	2016-10-17	2016-10-18	\N	0	0	0	
3380	Training on Feasibility Study / Detailed Engineering Design; Economic & Financial Analysis: SES, Applied Geo-Tagging Technology Under PRDP		Philippine Rural Development Project Department of Agriculture Region 3 -Luzon A		2100	\N	2014-10-27	2014-10-31	\N	0	0	0	
8377	Training on Packaging and Labeling for Organic Trading Post (OTP) Operators 		Deparment of Agriculture Regional Field Office III		50	\N	2017-04-19	2017-04-21	\N	0	0	0	
8387	Training of Facilitators on Farm Business School (FBS) 		Department of Agriculture-Agricultural Training Institue Region 3		50	\N	2015-03-22	2015-03-29	\N	0	0	0	
8388	Training on Marketing and Commerlization of Agriculture Products in Region 3 		Agricultural Training Institute and Central Luzon Agriculture Resources  Research and Developmet Consortium 		50	\N	2015-03-05	2015-03-06	\N	0	0	0	
8390	One day training Course on Leadership Development for Agriculture and Fishery Council (AFC) Chairs and Coordinators of Bataan 		Office of the Provincial Agriculturist		50	\N	2014-11-21	2014-11-21	\N	0	0	0	
10525	Introduction to Regional Clinical Laboratory Referral System		DOH Pampanga		240	\N	2017-05-23	2017-05-23	8	0	0	0	
10526	Bio-Risk Management and the Basic of S.O.P Writing		Pamet Pampanga		240	\N	2017-03-24	2017-03-24	8	0	0	0	
4257	Mentoring Program		BGH, Tenjero Balanga Bataan		104	\N	0001-01-01	0001-01-01	\N	0	0	0	
4494	BASIC LIFE SUPPORT/ADVANCED CARE LIFE SUPPORT		NKL STARS INTL MEDICAL TRAINING TEST		133	\N	2017-09-30	2017-10-01	\N	0	0	0	
4497	ANTI- MICROBAL STEWARD PROGRAM & THERAPEUTIC APPROACH IN HOSPITAL		DEPARTMENT OF HEALTH		133	\N	2017-11-09	2017-11-10	\N	0	0	0	
4500	RTD-SOLMUX-NEOZEP "NASA ATIN TIWALA" 		OLONGAPO MEDICAL SOCIETY		133	\N	2017-09-29	2019-09-29	\N	0	0	0	
3683	Midwives Support the Change: Challenge Accepted, Achieve!				123	\N	2017-04-18	2017-04-21	\N	0	0	0	
3684	Pound by Pound Fetal Growth and Development Monitoring		Department of Health		123	\N	2017-05-27	2017-05-27	\N	0	0	0	
3685	Growth and Micronutrients 				123	\N	2017-11-11	2017-11-11	\N	0	0	0	
3686	Scientific Seminar		DOH		123	\N	2018-02-10	2018-02-10	\N	0	0	0	
3687	Advancing Midwifery Services by practicing quality Maternal Care and Values		IMAP		123	\N	2018-08-11	2018-08-11	\N	0	0	0	
3688	Newborn Screening		DOH Regional Office 3		124	\N	2018-11-17	2018-11-18	\N	0	0	0	
3768	Capacity Development Prooper Grooming and Work Attitude values enchancement		Philippine National Police		1800	\N	2017-03-30	2017-03-30	\N	0	0	0	
3776	Jail Management MOWA Recovery and Spiritual Awareness Seminar 		Engr. E. Yuzon		1798	\N	2008-05-16	2008-05-17	\N	0	0	0	
3778	Seminar on Bomb Identification		P.D. A. Gunnacao 		1798	\N	2010-03-24	2010-03-25	\N	0	0	0	
3779	Private Security Training		Lockheed		1798	\N	2012-09-10	2012-09-11	\N	0	0	0	
3780	Philippine Red Cross Basic Life Support-CPR		Mr. C.M. Gatbunton Jr.		1798	\N	2017-11-24	2017-11-24	\N	0	0	0	
3789	REGULAR INTRAVENOUS TRAINING PROGRAM 		ANSAP AT V.L MAKABALL MEMORIAL HOSPITAL, INC. 		2011	\N	2014-11-05	2014-11-07	\N	0	0	0	
3790	PSYCHOLOGICAL FIRST AID: AN OVERVIEW		PMHNAP - MARIVELEZ MENTAL HOSPITAL		2011	\N	2014-02-15	2014-02-15	\N	0	0	0	
3797	PROJECT ISAVE		WAWA ELEMENTARY SCHOOL		2011	\N	2018-04-24	2018-05-25	\N	0	0	0	
3826	Training on Mainstreaming Green Growth in Development Planning (Module 1,2 & 5)		Mainstreaming Green Growth in Development Planning (MGGDP) Project		651	\N	2018-01-29	2018-01-31	\N	0	0	0	
3829	Training Workshop on Greenhouse Gas (GhG) Inventory		Philippine League of Local Environmental Planners (PLLENRO) Under Mainstreaming Green Growth in Development Planning (MGGDP) Project		651	\N	2018-08-01	2018-08-03	\N	0	0	0	
3887	LACTATION MANAGEMENT SEMINAR WORKSHOP		DEPARTMENT OF HEALTH R03		85	\N	2001-08-08	2001-08-10	\N	0	0	0	
3899	TRAINING ON FILLING OUT OF CERTIFICATE OF LIVER BIRTH AND CERTIFICATE OF DEATH		MUNICIPALITY OF BAGAC		87	\N	2018-02-23	2018-02-23	\N	0	0	0	
3900	ORIENTATION ON FAMILY PLANNING IN THE HOSPITAL RECORDING AND REPORTING SYSTEM		DOH - REGION 3		87	\N	2016-04-20	2016-04-21	\N	0	0	0	
3901	TRAINING ON THE MANAGEMENT OF RABIES EXPOSURE AND ANIMAL BITES 		DOH - REGION 3		87	\N	2015-12-07	2015-12-09	\N	0	0	0	
3989	Advance Cardiac Life Support, Cardiopulmonary Resuscitation Course		Manila Doctors Hospital		91	\N	0001-01-01	0001-01-01	\N	0	0	0	
3990	Basic Life Support For Health Care Provider		Manila Doctor Hospital		91	\N	0001-01-01	0001-01-01	\N	0	0	0	
10528	Consultative Meeting on Location of HIV		Department of Health - PHO		240	\N	2017-10-13	2017-10-13	8	0	0	0	
10529	Blood Service and Advocacy Council Committee Coordination Meeting		Department of Health		240	\N	2015-04-13	2015-04-13	8	0	0	0	
10530	Regional Voluntary Blood Service Program(NVBSP)Summit and Revisiting LGU		Department of Health		240	\N	2015-03-25	2015-03-26	16	0	0	0	
10531	The National Voluntary Blood Service Program (NVBSP)		Department of Health		240	\N	2015-02-23	2015-02-24	16	0	0	0	
10532	Pamet 50th Annual Convention PICC Manila Phils		Pamet phils		240	\N	2015-12-03	2015-12-03	8	0	0	0	
4501	CADIOVASCULAR CONTINUUM CONGRESS 		PHIL. HEART ASSN, CL CHAPTER		133	\N	2017-07-29	2017-07-29	\N	0	0	0	
4606	CONSULTATIVE MEETING OF HOSPITAL STAKEHOLDERS AND OTHER HEALTH FACILITIES		DOH		2140	\N	2017-06-23	2017-06-23	\N	0	0	0	
4607	TODOH ALAGA MAY TSEKAP NA MAY OPERASYON PA		DOH		2140	\N	2017-06-21	2017-06-21	\N	0	0	0	
4608	ORIENTATION OF HOSPITAL AMBULATORY SURGICAL CLINICS AND FREE STANDING DIALYSIS CLINICS		PHIC		2140	\N	2017-06-08	2017-06-08	\N	0	0	0	
4610	LHZ/SDN MEETING		PHO		2140	\N	2017-03-22	2017-03-22	\N	0	0	0	
5023	GAD Basic Concerns and Issues	Managerial	Rosana Verdida -POP		1858	\N	2016-07-01	2016-07-01	\N	0	0	0	Managerial
5027	Philippine Red Cross Basic Life Support CPR Training for Adult-Lay Rescuers 	Technical	Philippine Red Cross Bataan		1858	\N	2017-11-24	2017-11-24	\N	0	0	0	Technical
8435	Perinatal Association of the Philippines Chapter Caravan		Prenatal Association of the Philippines		194	\N	2017-02-12	2017-02-12	\N	0	0	0	
4744	18th Association of Tourism Officer of the Philippines National Convention 		Association of the Tourism Officers of the Philippines 		653	\N	2017-10-04	2017-10-07	\N	0	0	0	
4745	4th Association of Tourism Officer of Cenral Luzon Convention		Association of the Tourism Officers of the Philippines 		653	\N	2017-08-24	2017-08-25	\N	0	0	0	
4746	Child Safe Tourism Orientation Seminar 		Department of Tourism Region III		653	\N	2017-08-31	2017-08-31	\N	0	0	0	
4747	Culture Based Governance Training		National Commission for Culture and the Arts 		653	\N	2017-03-08	2017-03-10	\N	0	0	0	
4748	16th Association of Tourism Officer of the Philippines National Convention 		Association of the Tourism Officers of the Philippines 		653	\N	2015-10-01	2015-10-04	\N	0	0	0	
4749	3rd Association of Tourism Officer of Central Luzon Convention 		Association of the Tourism Officers of Central Luzon		653	\N	2015-08-19	2015-08-20	\N	0	0	0	
4750	National Seminar on Local History 		Polytechnic University of the Philippines 		653	\N	2017-04-16	2017-04-18	\N	0	0	0	
4751	Festival Planning and Management Enhancement Seminar Workshop		Department of Tourism Region III		653	\N	2014-12-01	2014-12-03	\N	0	0	0	
10563	DOH- MHCAP Quarterly Consultative Meeting		Department of Health - RO III		236	\N	2015-12-01	2015-12-01		0	0	0	
10564	Seminar - Workshop on revised Rules on Administrative Cases in the Civil Service		Civil Service Commission - RO III		236	\N	2015-10-28	2015-10-29	16	0	0	0	
10565	Doh MHCAP 2nd Regional Consultative Meeting		Department of Health - RO III		236	\N	2015-08-28	2015-08-28		0	0	0	
10566	MHCAP Quarterly Consultative Meeting		Department of Health - RO III		236	\N	2015-03-20	2015-03-20		0	0	0	
10567	MHCAP Consultative Meeting		Department of Health - RO III		236	\N	2014-05-13	2014-05-13		0	0	0	
10568	Orientation/Seminar on the Procedures for the Disbursement		Provincial Governemtn of Bataan -Balanga		236	\N	2014-05-09	2014-05-09		0	0	0	
10569	Strategic Performance Management System (SPMS)		Cvil Service Commission/Provincial Government of Bataan		236	\N	2013-10-29	2013-10-29		0	0	0	
10570	Rech Out Event		Phil Health Insurance Corporation - RO III		236	\N	2013-05-31	2013-05-31		0	0	0	
10571	Re- Orientation Seminar on Electronic Essential Drug Price Monitoring System		Department of Health		230	\N	2010-11-15	2010-11-15	8	0	0	0	
4811	4th Annual Convention Building Society of Compliment Globally Regonized Filipino Midwife, SMX Convention Center, Davao City		IMAP		2147	\N	2018-09-22	2018-09-22	\N	0	0	0	
4838	Capacity Development-Proper Grooming and Work Attitude Values Enhancement	Supervisory	Mr. Alfredo Solomon Jr.		1841	\N	2017-10-29	2017-10-30	\N	0	0	0	Supervisory
4945	34TH ANNUAL CONVENTION:A JOURNEY ALONG THE METABOLIC COMMUNICATION HIGHWAY		DIABETIS PHIL.		185	\N	2017-11-23	2017-11-24	\N	0	0	0	
4944	62ND ANNUAL CONVENTION : SERVICE WITH PASSION TOWARDS A NAURISHED NATION		NOAP		185	\N	2017-03-08	2017-03-10	\N	0	0	0	
4946	PSNO CONVENTION : ADDING MORE LIFE TO YEAR:AN INTEGRATIVE APPROACH TO NON COMMUNICABLE DISEASES PREVENTION		PSND		185	\N	2018-09-19	2018-09-20	\N	0	0	0	
4947	NUTRITION & DIABETIES : A DIVERSE BLEND OF PRACTICE		DOH		185	\N	2018-10-25	2018-10-28	\N	0	0	0	
4873	20 Tips for a Happier Home for Kids a Grow Happy Campaign  for a more Hollicit Development of Childre		IMAP		180	\N	2018-09-22	2018-09-22	\N	0	0	0	
4871	Challenges in Midwifery Profession Now and Beyond		IMAP		180	\N	2017-12-11	2017-12-11	\N	0	0	0	
4872	Advancing Midwifery Service by Practicing Quality Maternal Core and Values		IMAP		180	\N	2018-05-05	2018-05-05	\N	0	0	0	
4870	Sustaining its Mission and Vision for 43 Years and Beyon		IMAP Inc.		180	\N	2017-10-21	2017-10-21	\N	0	0	0	
4898	PROVIDER INITIATED COUNSELING AND TESTING		DOH RO III		174	\N	2018-05-08	2018-05-11	\N	0	0	0	
4896	HIV SURVEILLANCE ORIENTATION		DOH R.O. III		174	\N	2018-08-23	2018-08-24	\N	0	0	0	
4900	ADVANCE AIRWAY MANAGEMENT		AMERICAN SAFETY AND HEALTH INSTITUE		174	\N	2017-07-23	2017-07-23	\N	0	0	0	
8973	National Certificate II -Driving	Technical	TESDA Bataan		1686	\N	2018-08-09	2018-08-09	\N	0	0	0	Technical
8974	Basic Fire Safety	Technical	Golden Success Wilderness Emergency Medical Services		1686	\N	2017-10-08	2017-10-08	\N	0	0	0	Technical
5059	Furniture and Cabinet Making		Furniture and Furnishing Corporation		1864	\N	1996-01-25	1996-03-02	\N	0	0	0	
5061	Bomb Identification, Improvised Explosive Device (IED)		Bataan Police Provincial Office/Arnold Dalin GUNNACAC, CESE		1864	\N	2010-03-24	2010-03-25	\N	0	0	0	
5062	In-Service Training (In-House Refresher Seminar)		Lockheed Detective and Watchman Agency, Incorporation/ Col. Ruben S. Galero (RET.) Training Director		1864	\N	2012-09-10	2012-09-11	\N	0	0	0	
5064	Philippine Red Cross Basic Life Support -CPR Training for Adult Lay Rescuers		Ms. Czarinah A. Atienza, Mr. Hans Martin Schoefisch, Doreen Joy P. Mendoza		1864	\N	2017-11-24	2017-11-24	\N	0	0	0	
5097	Training of Trainers on Gender Responsive Population Strategies 		Comission on Population Region III		516	\N	2017-11-15	2017-11-17	\N	0	0	0	
5098	Training on Usapan Serye 		Comission on Population Region III		516	\N	2017-11-27	2017-11-28	\N	0	0	0	
5099	Lecture and Research Presentation on Gender 		Philippine Statistics Authority 		516	\N	2017-10-25	2017-10-25	\N	0	0	0	
6774	Computer System Servicing NCII	Skill Training	TESDA		314	\N	2015-09-01	2015-11-20	\N	0	0	0	Skill Training
7069	COOPERATIVE PRFESSIONALIZATION COURSE - COOPERATIVE GOVERNANCE		LANDBANK OF THE PHILIPPINES (BALANGA BRANCH)		262	\N	2007-08-16	2007-08-17	16	0	0	0	
7070	BOD AND COMMITTEE DUTIES AND RESPONSIBILITIES AND PARLIAMENTARY		LANDBANK OF THE PHILIPPINES (BALANGA BRANCH)		262	\N	2007-08-22	2007-08-22	8	0	0	0	
7071	INTEGRATED MICRO-FINANCE TRAINING PROGRAM		LIGAS KOOPERATIBA NG BAYAN SA PAGPAPAUNLAD (BULACAN BRANCH)		262	\N	2007-10-07	2007-10-08	16	0	0	0	
7072	MANUAL RULES AND REGULATIONS FOR COOPERATIVE SEMINAR		COOPERATIVE DEVELOPMENT AAUTHORITY, BALANGA		262	\N	2008-03-04	2008-03-04	8	0	0	0	
7073	GAD ANALYSIS CUM MONITORING AND EVALUATION using HGDG		PROVINCIAL GOVERNMENT OF BATAAN		262	\N	2018-09-03	2018-09-05	24	0	0	0	
5368	Training of trainors on sustainable corn production in sloping areas(SOPSA)		Agricultural training institute regional training center III		34	\N	2016-05-17	2016-05-20	\N	0	0	0	
5369	Training course on philippines national standard good agricultural practices for crn and cassava and code of practice in the reduction on HCN cassava		Agricultural training institute regional training center III		34	\N	2016-04-19	2016-04-21	\N	0	0	0	
5372	Fish Examiners Training		Bureau of Fisheries an Aquatic Resources Regional III		36	\N	2017-06-14	2017-06-25	\N	0	0	0	
5479	UPDATES ADN REFORMULATION OF SCHOOL HEALTH AND NUTRITION PROGRAMS AND PROJECTS OF SDO - BATAAN		SCHOOL DIVISION OF BATAAN		2042	\N	2017-05-22	2017-05-23	\N	0	0	0	
5480	DIVISION ORIENTATION OF SCHOOL-BASED FEEDING PROGRAM FOR 2016-2017		SCHOOL DIVISION OF BATAAN		2042	\N	0001-01-01	0001-01-01	\N	0	0	0	
5481	QUALITY MANAGEMENT SYSTEM AND ISO 90001:2015		SCHOOL DIVISION OF BATAAN		2042	\N	2017-10-09	2017-10-09	\N	0	0	0	
5482	HANDS ONLY CARDIOPULMONARY RESUSCITATION TRAINING		PROVINCIAL DISASTER AND RISK REDUCTION  & MANAGEMENT COUNCIL		2042	\N	2017-12-13	2017-12-13	\N	0	0	0	
5484	School-Based ICT Literacy 		Justice Emilio Angeles Gancayco MHS		2003	\N	2016-10-24	2016-10-26	\N	0	0	0	
7094	Preparation of Feasibility Study 		Deparment of Trade and Industry		327	\N	1992-10-12	1992-10-13		0	0	0	
8594	Professional Empowerment through Teamwork	Supervisory	Olivia Perdio -Dean		1671	\N	2015-01-30	2015-01-30	\N	0	0	0	Supervisory
9002	Gatekeeping In Primary Health care as Effective tool for SDN Training Workshop	Technical	Bataan General Hospital and Medical Center		252	\N	2019-02-13	2019-02-13	8	0	0	0	Technical
7224	GAD Seminar		PGB		916	\N	2019-04-13	2019-04-14	\N	0	0	0	
7460	Seminar - Workshop and Implementation of Agency Procurement Compliance and Performance Indicator (APCPI) System Under Kalsada Program	Technical	DILG		341	\N	2016-10-11	2016-10-13	24	0	0	0	Technical
7461	2016 PICE National Midyear Convention - "Responsible Civil Engineering Practices Admist Climate Change"	Technical	PICE		341	\N	2016-06-16	2016-06-18	24	0	0	0	Technical
7462	Seminar-Workshop on the National Building Code of the Philippines (PD 1096) it's Implementing Rules & Regulations (IRR)	Technical	DPWH in Cooperation with PABO		341	\N	2015-03-09	2015-03-13	32	0	0	0	Technical
7464	2013 Sagana At Ligtas na Tubig sa Lahat (SALIN TUBIG) Program	Technical	DILG		341	\N	2013-11-27	2013-11-29	24	0	0	0	Technical
5689	Training on Sustainable Coffee Production and Pest Management		Department of Agriculture Regional Field Office III		60	\N	2013-11-06	2013-11-07	\N	0	0	0	
5690	Seminar Workshop on Scaling Up Adoption of Alternate Wetting and Drying and Rice Technologist in Regio III		Philippine Rice Research Institute, International Rice Research Institute and Department of Agriculture Regional Field Office III		60	\N	2013-09-19	2013-09-20	\N	0	0	0	
5718	Bataan General Hospital Mentorship Program	Mentee	Bataan General Hospital	Completed	1938	\N	2016-11-19	2016-12-12	\N	0	0	0	Mentee
8541	Radiology Mobility Learning through Allied Health Professionals		Phil Assoc of Radiologic Technology		129	\N	2016-12-02	2016-12-04	\N	0	0	0	
8542	"Gotta Catch 'Em All" the Top 5 must know from Vertex to Sole		St Luke's Medical Center Institute of Radiology		129	\N	2017-03-11	2017-03-12	\N	0	0	0	
8543	Ethical Administration & Professional responsibilities of Imaging Science and Services		Phil Assoc of Radiologic Technologists Inc		129	\N	2013-11-28	2013-12-01	\N	0	0	0	
5760	Orientation on Professionalized Corps of Test Administrators (PROCTADs) as Proctor		Civil Service Commission Field Office-Pampanga, City of San Fernando, Pampanga		503	\N	2013-10-09	2013-10-09	\N	0	0	0	
5762	Orientation on Professionalized Corps of Test Administrators (PROCTADs) as Supervising Examiner		Civil Service Commission Regional Office 3, City of San Fernando Pampanga		503	\N	2014-04-06	2014-04-06	\N	0	0	0	
5765	Orientation on Professionalized Corps (PROCTADs) as Supervising Examiner		Department of Agriculture Conference Room, City of San Fernando, Pampanga		503	\N	2015-04-22	2015-04-22	\N	0	0	0	
5766	Civil Service Law and Rules (CSLR)		Civil Service Commission Field Office-Pampanga, City of San Fernando, Pampanga		503	\N	2016-02-18	2016-02-19	\N	0	0	0	
5767	Strategic Performance Management System (SPMS) for Leaders		Provincial Human Reource Management OfficeCivil Service Commission Field Office - Bataan		503	\N	2016-10-28	2016-10-28	\N	0	0	0	
8596	National Treatment Hub Conference		DOH R3		131	\N	2018-11-13	2018-11-13	\N	0	0	0	
9013	Online Hospital Statistical Reporting System (OHSRS) Training	Technical	DOH- Health Facilities and Service Regulatory		252	\N	2015-03-18	2015-03-18	8	0	0	0	Technical
9020	Gender and Development:Basic Concept and Issues	Technical	Provincial Government of Bataan		243	\N	2016-06-17	2016-06-17	4	0	0	0	Technical
9211	BIO-Risk Management and the Basics of S.O.P. Writing	Technnical	Philippine Association of Medical Technologists Bulacan Chapter		247	\N	2017-03-24	2017-03-24	8	0	0	0	Technnical
9212	Consultative  and Planning Workshop on TB in Jails and Prisons	Technical	Provincial Health Office		247	\N	2016-12-14	2016-12-14	8	0	0	0	Technical
6405	ISO 9001: 2015 Awarenes Seminar		Provincial Government of Bataan		389	\N	2017-07-27	2017-07-27	\N	0	0	0	
9213	52nd Pamet Annual Convention "Empowering Medical Technologist Towards Global Enchancement"	Technical	Philippine Association Of Medical Technologists National		247	\N	2016-11-08	2016-11-10	24	0	0	0	Technical
5924	Doing Business in Free Trade Areas and Doing Business with the EU using Generalized Scheme of Preference Plus		DTI Bataan		261	\N	2015-05-22	2015-05-22	\N	0	0	0	
12535	APEC SME Summit: Pushing through boundaries (APECPH 2015)				2195	\N	2015-11-17	2015-11-17		0	0	0	
12536	Basic concepts in Management Information System Application of Logistics Management in Actual Business Settings		Bataan Peninsula State University		2195	\N	2015-03-19	2015-03-19		0	0	0	
12537	Development of Managerial Skills Professional Empowerment through teamwork				2195	\N	2015-01-30	2015-01-30		0	0	0	
12538	Be Inspired, Be Involved; Enlighten your mind towards your chosen profession				2195	\N	2014-02-27	2014-02-27		0	0	0	
12539	GAD Training (Anti-sexual harrasment act and team effectiveness)		POPCOM		2203	\N	2019-07-14	2019-07-14		0	0	0	
8617	Bomb-Threat Awareness Seminar 	Supervisory	Bataan PNP		1804	\N	2018-04-27	2018-04-27	\N	0	0	0	Supervisory
9226	Training on Smoking Cessation		DOH Regional Office III		1411	\N	2018-10-11	2018-10-12	\N	0	0	0	
5974	Rice Booth Camp for Newly Graduates of Agriculture and Other Related Sciences		Philippine Roce Research Institute		61	\N	2014-11-17	2014-11-28	\N	0	0	0	
5975	Training on Organic Farming: Organic Inputs Production and Utilization 		Central Luzon state University- Ramon Magsaysay Cares		61	\N	2014-09-17	2014-09-18	\N	0	0	0	
5976	16th Philippine Society Of Agricultural Engineers-Pre Professional Group Annual Luzon Convention		Philippine Society of Agricultural Engineer- Pre Professinal Group - Mariano Marcos State University Officers		61	\N	2012-12-17	2012-12-19	\N	0	0	0	
5977	1st Samal Youth Leadership Summit		7th Civil - Military Operation(Gwapo Batalion)and Local Government of Samal		61	\N	2012-05-29	2012-05-31	\N	0	0	0	
5978	Occupational Safety & Health Awareness Of the Provincial Engr. Office a One of the Stategiel Inietives fr CY 2018		P.E.O.		271	\N	2018-03-22	2018-03-23	\N	0	0	0	
6612	Ethic and Good Governance		PICPA Olongapo Chapter		417	\N	2018-10-13	2018-10-13	\N	0	0	0	
6020	Geographic Infromation System (GIS) Training of Namfria		NAMFRIA		282	\N	2007-08-06	2007-08-10	\N	0	0	0	
6021	Refresher Course on Project Supervision and Management for Engineering Architects & Programmers		Provincial Engineers Office Balanga City, Bataan		282	\N	2004-11-19	2004-11-20	\N	0	0	0	
6022	Refresher Course and Updates on Materials Quality Control in Project Implementation		Provincial Engineer's Office Balanga City, Bataan		282	\N	2006-09-26	2006-09-29	\N	0	0	0	
6023	Seminar Workshop on Revised PErformance Evaluation System CSC MC(No. 25, S 1999)		PHRMO and Civil Service Commission Provincial Field Office Balanga City, Bataan		282	\N	2001-02-26	2001-02-26	\N	0	0	0	
6030	Training on Mass Production and Utilization of Biological Control Agents		Office of the Provincial Agriculturist		49	\N	2016-06-17	2016-06-18	\N	0	0	0	
6031	1st National Galungong Summit		BFAR Central Office		48	\N	2019-01-24	2019-01-25	\N	0	0	0	
6096	Workshop on Unified Construction Fee of Infrastracture Projects	Supervisory	Provincial Government of Bataan		292	\N	2018-05-17	2018-05-18	\N	0	0	0	Supervisory
6105	2016 PICE National Mid-Year Convention	Technical	PICE-National		292	\N	2016-06-16	2016-06-18	\N	0	0	0	Technical
6166	ISO 9001: 2015 Awareness and Documentation Seminar		NEO AMCA Innovative Solutions Cooperation		372	\N	2018-09-03	2018-09-03	\N	0	0	0	
6167	Internal Quality Auditors' Enhancement Training		NEO AMCA Innovative Solutions Cooperation		372	\N	2018-08-29	2018-08-29	\N	0	0	0	
6168	Understanding Anti-Corruption Laws and Policies for Social Reform		Department of Interior and Local Government		372	\N	2018-08-08	2018-08-10	\N	0	0	0	
6169	Financial Management		Philippine Institute of Certified Public Accountant (PICPA)		372	\N	2018-05-26	2018-05-26	\N	0	0	0	
6170	Crisis Management and Business Continuity Planning		Philippine Institute of Certified Public Accountant (PICPA)		372	\N	2018-05-25	2018-05-25	\N	0	0	0	
6171	Working Capital Management and Capital Budgeting		Philippine Institute of Certified Public Accountant (PICPA)		372	\N	2018-05-24	2018-05-24	\N	0	0	0	
6172	Internal Audit Workpapers		Center for Internal Audit Philippines		372	\N	2018-01-17	2018-01-18	\N	0	0	0	
6217	Enhance TMAS Training		MISO		374	\N	2017-08-10	2017-08-10	\N	0	0	0	
6218	ISO 9001:2015 Awareness		PGO		374	\N	2017-07-27	2017-07-27	\N	0	0	0	
6219	ICS Training Level III		PDRRMO		374	\N	2017-03-06	2017-03-10	\N	0	0	0	
6220	Collapse Structure Search and Rescue and Vehicular Extriction Rescue Training		PDRRMO		374	\N	2015-12-12	2015-12-14	\N	0	0	0	
6221	Weather 101 and Tropical Cyclone 101		Weather Philippines		374	\N	2015-11-01	2015-11-01	\N	0	0	0	
6222	SmartCAD		Smartmatic		374	\N	2015-05-28	2015-05-29	\N	0	0	0	
6223	Accountability, Credibility and Ethicality		BPSU		374	\N	2014-03-01	2014-03-01	\N	0	0	0	
6224	Kabayanihan para sa Kalikasan		BPSU Office of Student Affairs		374	\N	2013-02-21	2013-02-22	\N	0	0	0	
8641	1st North Philippines Tourism Forum and Career Fair		Department of Tourism Region III		656	\N	2017-10-17	2017-10-17	\N	0	0	0	
8642	International Conference on Cultural Statistics		National Commission for Culture and the Arts		656	\N	2017-02-10	2017-02-11	\N	0	0	0	
8643	National Tourism Development Plan 2016-2022 Workshop on the Formulation of M & E System		Department of Tourism Region III		656	\N	2017-01-08	2017-02-08	\N	0	0	0	
8644	3rd Leg of Pamana World Heritage and Biosphere Reserve Nomination Series 		UNESCO - National Commission of the Philippines 		656	\N	2017-03-23	2017-03-24	\N	0	0	0	
6358	IHOMIS, Training on Programming and Database		DOH		387	\N	2017-10-04	2017-10-13	\N	0	0	0	
6388	Systematic Records Management Training/Workshop		Provincial Human Resource and Management Office		392	\N	2017-07-25	2017-07-26	\N	0	0	0	
6399	Strategic Planning Seminar		CEMBA MPC		389	\N	2018-11-27	2018-11-28	\N	0	0	0	
6400	Risk Based Thinking		Provincial Government of Bataan		389	\N	2018-11-14	2018-11-15	\N	0	0	0	
6402	2019 GAD Planning and Budgeting, GAD Analysis Cum Monitoring and Evaluation Using HGDG		POPCOM		389	\N	2018-09-03	2018-09-05	\N	0	0	0	
6403	Gender Analysis Using The Harmonized Gender and Development Guidelines		POPCOM		389	\N	2018-08-13	2018-08-15	\N	0	0	0	
6404	Fundamentals of Cooperatives		CEMBA MPC		389	\N	2018-06-01	2018-06-06	\N	0	0	0	
6406	Systematic Records Management Training		HRMO		389	\N	2017-07-25	2017-07-26	\N	0	0	0	
6407	Basic Meat Processing Demonstration		HRMO		389	\N	2017-06-15	2017-06-15	\N	0	0	0	
6408	PDS and Grievance Macginery Seminar		HRMO		389	\N	2017-05-19	2017-05-19	\N	0	0	0	
6409	Communication Development Training for PGB Employees		HRMO		389	\N	2016-11-09	2016-11-10	\N	0	0	0	
6410	Conduct of Strategic Performance Management (SPMS) for Leaders		HRMO		389	\N	2016-10-28	2016-10-28	\N	0	0	0	
6414	NC II Driving		TESDA		1618	\N	2018-09-21	2018-09-22	\N	0	0	0	
6486	Workshop for the Formulation of Provincial Governance Reforms Roadmaps		Department of the Interior and Local Government		398	\N	2018-07-24	2018-07-27	\N	0	0	0	
6487	Internal Audit Workpaper and Report Writing		Center for Internal Audit Services Philippines		398	\N	2018-01-19	2018-01-20	\N	0	0	0	
6488	Foundational Elements For Internal Auditors		Center for Internal Audit Services Philippines		398	\N	2018-01-17	2018-01-18	\N	0	0	0	
6489	Seminar on Anti - Traffickin in Person and Anti- Violence Against Women and Their Children		P.E.O		303	\N	2011-05-11	2018-05-12	\N	0	0	0	
6490	Safety and HBALTIS Awareness		P.E.O		303	\N	2018-03-26	2018-03-27	\N	0	0	0	
12599	Driving Innovations in Water Utilities:A technical symposium on Physical Asset Management		Chemical Research Inc., Agua Haus, Inc. Vintus Solutions Inc.		2208	\N	2017-02-01	2017-02-01	8	0	0	0	
6516	Basic Police Intelligence Seminar		P/SSUPT.Arnold D. Guinacao Provincial Director		401	\N	2011-07-19	2011-07-20	\N	0	0	0	
6517	Psychological Seminar		Hon. Jose Enriquez Garcia		401	\N	2009-08-15	2009-08-15	\N	0	0	0	
6518	Road to Prosperity Track		DR. Delfin Magpantay		401	\N	2009-06-03	2009-06-04	\N	0	0	0	
6520	305 (BAT) Community Defense Group Center 3RCDG ARES.COM		COL/INT Artemio S. Cabantog Group Commandre		401	\N	2003-01-11	2003-02-10	\N	0	0	0	
6560	Follow through: Training on the Implementation of Internal Audit and Internal Control System of Provincial LGUs Under the CMGP Program 		Department of Interior and Local Government		414	\N	2017-11-26	2017-11-30	\N	0	0	0	
6561	ISO 9001: Internal Quality Audit		NEO AMCA Innovative Solutions Corporation		414	\N	2017-11-08	2017-11-09	\N	0	0	0	
6563	ISO 9001: Awareness Seminar		NEO AMCA Innovative Solutions Corporation		414	\N	2017-07-27	2017-07-27	\N	0	0	0	
6564	Training- Workshop on the Implementation of Internal Audit and Internal Control System of Provincial LGUs Under the CMPG Program		Department of Interior and Local Government		414	\N	2017-03-27	2017-03-31	\N	0	0	0	
6565	Talk with the Future Employers at the 16th Mid Year Convention, "Piliin mo ang JPIA Celebrating Cultures- the JPIAN WAY!"		National Federation Junior Philippine Institute of Accountants		414	\N	2013-10-23	2013-10-23	\N	0	0	0	
6566	JPIAN Leadership Through Cultural Enrichment at the 16th National Mid Year Convention, "Piliin mo ang JPIA Celebrating Cultures- the JPIAN WAY!"		National Federation Junior Philippine Institute of Accountants		414	\N	2013-10-22	2013-10-22	\N	0	0	0	
6567	On Leadership, Employment and Financil Management at the 16th National Mid Year Convention,  "Piliin mo ang JPIA Celebrating Cultures- the JPIAN WAY!"		National Federation Junior Philippine Institute of Accountants		414	\N	2013-10-21	2013-10-21	\N	0	0	0	
6569	Documentation in Local Governance		Local Governance and Community Development Initiatives		416	\N	2018-12-03	2018-12-05	\N	0	0	0	
6576	Tools and Techniques for Internal Auditing		Association of Government Internal Auditor, INC.		416	\N	2018-02-28	2018-03-02	\N	0	0	0	
7267	Seminar on Gender and Development (GAD)		Provincial Tourism Office		657	\N	2016-07-01	2016-07-01	\N	0	0	0	
7268	First Aide and Basic Life Support CPR & Automated External Fibrillation Training		PNRC/Provincial Tourism Office		657	\N	2016-03-05	2016-03-06	\N	0	0	0	
7269	Tour Product Development Workshop		Department of Tourism		657	\N	2013-12-11	2013-12-12	\N	0	0	0	
7273	Basic Life Support Training Program		Provincial Disaster Risk Reduction Mangement Office		657	\N	1905-07-01	1905-07-02	\N	0	0	0	
7182	ISO:2015 Awareness Seminar	General	Neo AMCA Innovate Solutions Incorporated		317	\N	2017-07-27	2017-07-27	\N	0	0	0	General
7184	Seminar/Training For the Updates on Reserved Implementing Rules & Regulations of Republic Act No. 9184	General	Provincial Government of Bataan		317	\N	2017-04-20	2017-04-21	\N	0	0	0	General
8692	Basic Life Suppor Cardio Pulmunary Resusciatation Training for Health Care Provider 		Philippine Red Cross - Bataan Chapter		1118	\N	2011-02-04	2011-02-05		0	0	0	
6655	Filipino Civil Engineers: Ready for Global Practices	Professional 	Philippine Institute of Civil Engineers, Incorporated		309	\N	2015-05-28	2015-05-30	\N	0	0	0	Professional 
7001	Loss Control management	Technical	Provincial Engineer's Office - Province of Bataan		324	\N	2017-05-02	2017-05-05	\N	0	0	0	Technical
7002	Local Roads and Bridges Inventory and Condition Survey Training	Technical	Road Board		324	\N	2016-12-06	2016-12-09	\N	0	0	0	Technical
7003	Construction Occupational Safety and Health (COSH)	Technical	Bataan Provincial Government		324	\N	2016-08-02	2016-08-05	\N	0	0	0	Technical
7004	National Building Code of the Philippines (P.D. 1096) and It's Implementing rules and Regulation (IRR)	Technical	Department of Public Works Highway		324	\N	2015-03-09	2015-03-13	\N	0	0	0	Technical
7005	Green Building Referral Code Multi - Stakeholders Consulation	Technical	National Engineering Center, University of the Philippines		324	\N	2011-11-23	2011-12-02	\N	0	0	0	Technical
7006	A Short Course on Basic and Advance GPS Data Analysis and Modeling for Scientific  and Practical Application	Technical	National  Engineering Center, University of the Philippines		324	\N	2011-11-23	2011-12-02	\N	0	0	0	Technical
7007	Training on Data Logging	Technical	Maynilad Waters Service Inco.		324	\N	2011-01-25	2011-01-25	\N	0	0	0	Technical
7008	Cadetship Program	Technical	Maynilad Waters Service		324	\N	2010-02-01	2010-07-06	\N	0	0	0	Technical
7009	Construction Safety	Technical	Maynilad Water Services Inc.		324	\N	2009-12-10	2009-12-10	\N	0	0	0	Technical
8695	IV Training Program		Veterans Memorial Medical Center		1118	\N	2010-12-21	2010-12-30		0	0	0	
8697	Basic IV Training				1119	\N	2017-09-29	2017-09-29		0	0	0	
8698	Basic Leadership Training				1119	\N	2010-12-17	2010-12-19		0	0	0	
8699	Leadership Fromation Corp				1119	\N	2010-12-09	2010-12-09		0	0	0	
7243	Seminar - WorkShop on Revised Rules on Administrative Cases in the Civil Service	Managerial	Civil Service Commission Regional Office No. 3		329	\N	2015-10-28	2015-10-29	16	0	0	0	Managerial
7244	Provincial Stakeholders Consulatation Workshop for the Formulation of the Core Road Network of the Provincial road Network Development Plan (PRNDP)	Technical	Provincial Government of Bataan		329	\N	2015-10-14	2015-10-14	4	0	0	0	Technical
7245	Workshop on the Preparation of the Provincial Road Network Development Plan (PRNDP) For Local Government Units	Technical	Department of the Interior and Local Government		329	\N	2015-08-28	2015-08-28	8	0	0	0	Technical
7246	Basic Supervisory Skills training	Supervisory	Business Coach, Inc Quality Business Training		329	\N	2015-08-15	2015-08-15	8	0	0	0	Supervisory
8730	Orientation on the Expasion of Primary Care Benifits (ePCB)	Technical	Philhealth		1120	\N	2018-10-29	2018-10-29	8	0	0	0	Technical
8731	Orientation on Culture Sensitivity for Health WorkShop-Batch 1	Technical	DOH		1120	\N	2018-08-07	2018-08-09	24	0	0	0	Technical
8707	1st CPD Seminar of 2017		 Philippine Association of Medical Technologist		196	\N	2017-07-09	2017-07-09	\N	0	0	0	
7277	Green Design Strategies for Architects		United Architects of the Philippines		330	\N	2007-09-20	2007-09-20	8	0	0	0	
7278	One Vision, One Direction, One  UAP		United Architects of the Philippines		330	\N	2013-04-17	2013-04-20	24	0	0	0	
7279	Philippine Rapid Damage Assessment & Needs Analysis (PRDANA)Training Course		Office of Civil Defense		330	\N	2015-08-25	2015-08-28	24	0	0	0	
7280	NATCON 43, "Shaking up the Architectural Practice"		United Architects of the Philippines		330	\N	2017-04-27	2017-04-29	72	0	0	0	
8737	RTD on ABTC Claims Filing	Technical	Philhealth		1120	\N	2017-12-22	2017-12-22	4	0	0	0	Technical
8741	PHICS- Orientation	Technical	Philhealth		1120	\N	2017-06-05	2017-06-05	4	0	0	0	Technical
8742	Training on Updates on Integrated Hospital Operations and Management Information System (iHomis)	Technical	Department of Health		1120	\N	2016-11-08	2016-11-10	24	0	0	0	Technical
8743	UCPM & E-Claims	Technical	PHilhealth		1120	\N	2016-09-21	2016-09-21	8	0	0	0	Technical
8744	ICD-10 Training for RHU and Hospital Coders	Technical	Department of Health		1120	\N	2016-06-20	2016-06-24	40	0	0	0	Technical
8745	Orientation Of Hospital, Ambulatory Surgical Clinic And Free Standing	Technical	Philhealth		1120	\N	2015-10-13	2015-10-13	8	0	0	0	Technical
8746	8th APEC Preparedness Plan Meeting	Technical	Department of Health		1120	\N	2014-12-23	2014-12-23	8	0	0	0	Technical
8747	Round Table Discusssion	Technical	Philhealth		1120	\N	2014-11-13	2014-11-13	8	0	0	0	Technical
8777	Basic Cardiac Life Support Provider		Prince Sultan Military Medical City		1126	\N	2014-11-03	2014-11-03		0	0	0	
8778	Regular IV Therapy Training 		Bataan General Hospital		1126	\N	2009-05-16	2009-05-17		0	0	0	
8785	Caregiving NC II		TESDA		1128	\N	2016-05-29	2016-05-29		0	0	0	
8786	Basic Occucapational Safety And Health Training Course		LABSPEAK Safety Management Incorporation 		1128	\N	2015-05-18	2015-05-21		0	0	0	
8788	Basic Life Support for Health Care Providers		Philippine RedCross		1128	\N	2012-06-01	2012-06-02		0	0	0	
12608	Safety planning and Emergency preparedness seminar		Local Water Utilities Administration		2208	\N	2015-11-09	2015-11-10	16	0	0	0	
12609	Seminar of Becoming an Effective Water District Secretary		Baguio Water District		2208	\N	2015-06-17	2015-06-18	16	0	0	0	
12610	Human Resource Conference		Philippine Association of Water Districts-Human Resource Practitioner		2208	\N	2014-02-04	2014-02-04	8	0	0	0	
12611	Invesment and Banking Procedures		Philippine Cooperative Development Office- Bataan		2208	\N	2013-09-13	2013-09-13	8	0	0	0	
12612	Values Orientation Seminar		Civil Service Commission		2208	\N	2013-08-07	2013-08-08	16	0	0	0	
12613	Personnel Selection Board Skills Enhancement		Civil Service Commission		2208	\N	2010-07-16	2010-07-16	8	0	0	0	
8790	Gatekeeping in Primary Health Care as Effective Tool Service Delivery Network Training Workshop	 	Bataan General Hospital		1129	\N	2019-02-13	2019-02-13		0	0	0	 
7453	PPP101 - Training and Project Concept Note Development Work	Supervisory	PGB - Public -Private Partnership and Investment Center		341	\N	2018-10-24	2018-10-25	16	0	0	0	Supervisory
8811	Cataract Better Outcome with Phalosurgery		Al-Haisus Education and Training Institute		1439	\N	2015-10-15	2015-10-15	\N	0	0	0	
8812	Goodbye to Eyeglasses with Smile Eyes, Nelex Smile		Al-Haisus Education and Training Institute		1439	\N	2014-06-09	2014-06-09	\N	0	0	0	
7529	SUPERVISORY DEVELOPMENT COURSE TRACK II		CSCFO/ PHRMO		264	\N	2018-11-12	2018-11-13	16	0	0	0	
7530	SUPERVISORY DEVELOPMENT COURSE TRACK III		CSCFO/PHRMO		264	\N	2018-11-14	2018-11-16	24	0	0	0	
7531	COMMUNICATION DEVELOPMENT TRAINING (ORAL & WRITTEN)		PHRMO		264	\N	2017-11-09	2019-11-10	16	0	0	0	
7532	TRAINING ON MAINSTREAMING GREEN GROWTH IN DEVELOPING PLANNING (MODULES 2, 3, 4, & 5)		PGB, NEDA, GLOBAL GREEN GROWTH INSTITUTE		264	\N	2018-02-26	2018-05-10	78	0	0	0	
7533	ENTREPRENEURSHIP AND BUSINESS MANAGEMENT		MANAILA WATER FOUNDATION		264	\N	2016-03-23	2016-03-23	8	0	0	0	
7534	PARLIAMENTARY PROCEDURE		PCEDO, COA & BCDC		264	\N	2013-11-28	2013-11-29	16	0	0	0	
7535	HUMAN RESOURCE MANAGEMENT		PCEDO, COA		264	\N	2013-10-03	2013-10-04	16	0	0	0	
7636	Training Course on Value Adding Technology: Cassava Processing with HACCP/SSOP/GMP	Resource Person	Agricultural Training Institute		883	\N	2018-09-08	2018-09-20	24	0	0	0	Resource Person
7637	Training Workshop on Greenhouse Gas (CHG) Inventory	Training Workshop	Global Green Growth Institute/Genro		883	\N	2018-08-01	2018-08-03	24	0	0	0	Training Workshop
7679	Experience Based Enchancement Training on Organic Agriculture		Agriculture Training Institute		873	\N	2017-09-05	2017-09-07	24	0	0	0	
7680	Farmers Field School on Organic Vegetable Production		Agriculture Training Institute		873	\N	2016-11-24	2017-03-16	32	0	0	0	
7681	GEO Tagging Training		Department of Agriculture Regional Field Office III		873	\N	2016-08-25	2016-08-26	16	0	0	0	
7887	Radio Communications and Licensing for Land Mobile Services		National Telecommunications Commission		1659	\N	2017-08-10	2017-08-10	\N	0	0	0	
9271	Orientation Seminar on the Electronic Drug Police Monitoring System		FDA DOH Religion III Pampanga		203	\N	2018-07-19	2018-07-19	8	0	0	0	
9272	Standard Operating Procedure Risk Management Plan For Drug Outlets - Compliance to FDA		Philippine Pharmacists Association (Bataan Chapter)		203	\N	2017-07-22	2017-07-22	8	0	0	0	
14809	MARRIOT HOTEL - MANILA	\N		\N	0	\N	2015-02-11	2015-03-29		0	0	0	 
9273	Filipino Pharmacist Embracing the Challenge of Change		National Covention of PPHA Puerto Prinsesa CIty		203	\N	2017-05-24	2017-05-27	24	0	0	0	
9274	Strengthening the Commitment to Collaborate Hospital Pharmacy Practice		The Philippine Society of Hospital Pharmacist		203	\N	2017-02-24	2017-02-25	16	0	0	0	
9276	Collaborative Medicaiton Management		The Philippine Society of Hospital Phamacist		203	\N	2016-02-25	2016-02-27	24	0	0	0	
9278	Seminar on Implementation of Administrative Order No. 34's and Rules and Regulations on the Licensing if Establishments		FDA DOH Regional III Pampanga		203	\N	2015-11-29	2015-11-29	8	0	0	0	
12656	Joint USPD-DSWD Orientation Workshop and Team Building: Accelerating Bub through Inclusive and Effectve Governance		Department of Social Welfare and Development United Nations Development Programme- Philippines		2212	\N	2016-06-20	2016-06-23	32	0	0	0	
7831	Info Caravan "Agrikultura para sa Pagbabago"	Technical	Provincial Agriculturist - Malolos Bulacan		884	\N	2018-03-23	2018-03-28		0	0	0	Technical
7832	Cassava Production Seminar	Technical	Agricultural Training Institute		884	\N	2017-11-25	2017-11-27		0	0	0	Technical
7833	Re-Tooling of Anti-Rabies	Technical	Provincial Veterinary Office		884	\N	2017-05-24	2017-05-25		0	0	0	Technical
7834	Training use on GPS Determine Area of Ricefield (RCM) To Farmers	Technical	Provincial Agriculture Office		884	\N	2017-05-17	2017-05-17		0	0	0	Technical
9311	Pagsasanay sa Korespondensiya Opisyal at Implementasyon ng Kautusang Tagapaganap BLG. 335	Managerial 	Komisyon sa Wikang Pilipino		253	\N	2015-09-29	2015-09-29	8	0	0	0	Managerial 
9312	Consultative Meeting For Blood Program and Reconstruction of Provincial Blood Council	Managerial 	Bataan Provincial Health Office		253	\N	2015-04-16	2015-04-16	8	0	0	0	Managerial 
9313	Philihealth Reachout Project 2014	Managerial	Department of Health Regional Office III		253	\N	2014-09-16	2014-09-16	8	0	0	0	Managerial
9314	Orientation in the New Application Forms For Hospital and other Ancillary Services 	Managerial	Department of Health Regional Office III		253	\N	2014-09-16	2014-09-16	8	0	0	0	Managerial
9315	Basic Incident Command System Training Course	Managerial	Office of Civil Defense 3		253	\N	2014-06-18	2014-06-20	24	0	0	0	Managerial
9316	Orientation Semminar on the Procedures for the Disbursement Transactions of the Provincial Governement of Bataan	Managerial	Provincial Government of Bataan		253	\N	2015-05-09	2015-05-09	8	0	0	0	Managerial
7884	Orientation On Gad Basic Concepts And Issues		Team Building		639	\N	2016-04-27	2016-04-28	90	0	0	0	
7930	School Seminar on Child Protection Policy		Bataan National High School		1863	\N	2016-07-11	2016-07-11	\N	0	0	0	
7938	2nd Quarter Regional Conference 		BLGF Region III		78	\N	2015-07-07	2015-07-08	\N	0	0	0	
9337	IMAP Defining Core Values:Integrity Motivation Accountability and Professionalism		Integrated Midfiwe Assocaiton of the Philippines		249	\N	2017-07-17	2017-07-17	8	0	0	0	
9338	Midwife Summit Aligning With Global Trends		Integrated Midfiwe Assocaiton of the Philippines		249	\N	2017-08-11	2017-08-11	8	0	0	0	
9339	RA 10912 Continuing Professional Development		Integrated Midfiwe Assocaiton of the Philippines		249	\N	2017-06-30	2017-06-30	8	0	0	0	
9340	The Role of the Midwife in the Disaster Reponsiveness/ Partograph and Intrapartum Care Analysis		Integrated Midfiwe Assocaiton of the Philippines		249	\N	2017-06-06	2017-06-06	8	0	0	0	
9341	Integrated Midwifes of the Philippines Core Values		Integrated Midfiwe Assocaiton of the Philippines		249	\N	2016-11-30	2016-11-30	8	0	0	0	
7972	The Power Within: Empowering The Provincial Board Members, Secretary And The Sangguniang Panlalawigan Staff		Acserna Consultancy		649	\N	2014-02-06	2014-02-07	16	0	0	0	
7973	Disbursement transaction of the Provincial Government of Bataan		Provincial Government of Bataan		649	\N	2014-05-09	2014-05-09	4	0	0	0	
7974	User's Accreditation Training on PATAS PREMIUM		Geodata Solutions, Inc.		685	\N	0014-05-23	2014-05-23	\N	0	0	0	
7982	BCLS PROVIDER 		SAUDI COMMISSION FOR HEALTH SPECIALTIES		2018	\N	2008-02-08	2008-02-08	\N	0	0	0	
7983	DEHYDRATION		SAUDI COMMISSION FOR HEALTH SPECIALTIES		2018	\N	2009-07-07	2009-07-07	\N	0	0	0	
7984	SCHOOL ORIENTATION ON THE PROMOTION OF ONLINE CHILD PROTECTION AND PREVENTION OF CYBERBULLYING		BAGAC NATIONAL HIGH SCHOOL		2018	\N	2017-05-25	2017-05-25	\N	0	0	0	
7986	DIVISION ROLL-OUT TRAININ G IN THE IMPLEMENTATION OF COMPREHENSIVE TOBACCO CONTROL		DEPED BATAAN		2018	\N	2018-06-19	2018-06-19	\N	0	0	0	
8058	Supervisory Development course ( Track I)		Civil Service Commission - Bataan, Provincial Human Resource management Office		356	\N	2016-11-15	2016-11-17	\N	0	0	0	
10576	Rapid Deployment Aftermath Rescue (RADAR)				1656	\N	2017-02-28	2017-03-02	\N	0	0	0	
8059	Pagsasanay sa Korespondensya Opisyal at Implementasyon ng Kautusan Tagapagpalaganap Bilang 305		Komisyon sa Wikang Filipino		356	\N	0001-01-01	0001-01-01	\N	0	0	0	
8060	Workshop on Understanding the ICM Code and ICM System Implementation, ICM System Certification Process		Partnership on Environmental Management for the Seas of East Asia		356	\N	2015-01-28	2015-01-29	\N	0	0	0	
8086	2nd National Sardines Industry Conference		SOPHL/BFAR		29	\N	2018-11-28	2018-11-30	\N	0	0	0	
8115	Training on expanded vulnerability and sutainability assesment		Department of agriculture - Regional field office III		32	\N	2015-09-22	2015-09-25	\N	0	0	0	
8116	Training on Applied geo - tagging tool		Department of agriculture - Regional Field Office III		32	\N	2015-09-03	2015-09-04	\N	0	0	0	
8128	Integrated Gabay ng Paglilingkod Executive Leadership Training		Career Executive Service Board		370	\N	2015-04-15	2015-04-24	\N	0	0	0	
9154	Applied Statistics Using SPSS				1400	\N	2014-08-30	2014-08-30	\N	0	0	0	
9543	Teacher Empowerment Training and Leadership Seminar		Rex Bookstore		118	\N	2005-10-15	2005-10-15	8	0	0	0	
9368	Dengvaxia Surveillance and Philippine Integrated DSE Surveillance and Response (PIDSR) Implementation		DOH		1432	\N	2018-10-17	2018-10-19	\N	0	0	0	
9369	Training on Donning, Duffinf, of PPE and Specimen Collection		DOH		1432	\N	2018-10-19	2018-10-19	\N	0	0	0	
9370	Philippine Red Cross First Aid and BLS with AED Operation Training for Adult-lay		Philippine Red Cross		1432	\N	2017-07-20	2017-07-23	\N	0	0	0	
9371	Basic Pollution Control Officers Training Course		Environmental Training Institute		1432	\N	2015-10-13	2015-10-16	\N	0	0	0	
9373	Emergency Medical Technician		Lifeline EMS 		2175	\N	0001-01-01	0001-01-01	\N	0	0	0	
9374	Basic Occupational Safety and Health Course		COSHEMAP		2175	\N	0001-01-01	0001-01-01	\N	0	0	0	
8229	Mindray Beneheart D3 Defibrillator and Edan SE-300B ECS Machine		Respicare Enterprises		1386	\N	2018-09-20	2018-09-20	\N	0	0	0	
9407	Seminar on the Updated on New Government Accounting System		Commission on Audit		109	\N	2002-10-14	2002-10-15	\N	0	0	0	
9408	Seminar-Workshop on Revised Performance Evaluation System       CSC MC No. 25, s. 1999		Provincial Human Resource Management Office/ Civil Service Commission Field Office		109	\N	2001-02-26	2001-02-26	\N	0	0	0	
9418	Supervisory Development Course - Track II		Civil Service Commission Regional Office 3 and Provincial Human Resource Management Office		110	\N	2018-11-12	2018-11-12	\N	0	0	0	
9419	Guidelines on Preparation of 2019 Budgets and the Revised Implementing Rules and Regulations of RA 9184		Department of Budget Management Regional Office 3 and Association of Local Budget Officers in Region III		110	\N	2018-10-22	2018-10-24	\N	0	0	0	
9421	NEDA Formulation of the Philippine Water Supply and Sanitation Master Plan		National Economic and Development Authority		110	\N	2018-02-12	2018-02-14	\N	0	0	0	
9422	1st National Conference on Food, Environment, Engineering and Technology		Bataan peninsula State University - Research and Development Office		110	\N	2017-11-22	2017-11-24	\N	0	0	0	
9424	Basic Training on Budget Operations Support System		GEODATA Solutions Inc.		110	\N	2017-10-05	2017-10-05	\N	0	0	0	
9428	Training-Workshop on the Improvement of Revenue Generation Strategies of Provincial LGUs under the CMGP Program		Department of Interior and Local Government- Office of the Project Development Services		110	\N	2017-05-29	2017-06-02	\N	0	0	0	
9429	Seminar on the Electronic Budget (e-Budget) System for Local Government Units		Department of Budget and Management Regional Office III and Association of Local Budget Officers in Region III		110	\N	2017-05-04	2017-05-05	\N	0	0	0	
9430	Roll-out Training on Budget Operations Manual for LGUs 2016 Edition, Manual on Setting Up and Operation of Local Economic Enterprises and Government Internal Audit Manual		Department of Budget and Management Regional Office III and Association of Local Budget Officers in Region III		110	\N	2017-02-27	2017-03-02	\N	0	0	0	
9434	Cluster Training for the Roll-out of LGU Integrated Financial Tools (LIFT)		Department of Finance - Bureau of Local Government Finance		110	\N	2016-11-08	2016-11-09	\N	0	0	0	
9435	Mainstreaming GAD Programs through Identifying GAD Issues, GAD Analysis and GAD Plan and Budgeting		Provincial Government of Bataan and Provincial Population Office		110	\N	2016-05-14	2016-05-15	\N	0	0	0	
9456	PDRRM Summit for Local Chief Executive (LCEs) of the Province of Bataan		Civil Defense Region III, RDRRM Council Region III and Office of the Provincial Governor		112	\N	2015-05-22	2015-05-23	\N	0	0	0	
9457	Orientation/Seminar on the Procedures for the Disbursement Transaction		Accounting Office, Provincial General Services Office and Provincial Engineer's Office		112	\N	2014-05-29	2014-05-29	\N	0	0	0	
9458	Local Disaster Risk Reduction Management Plan (LDRRMP) Writeshop		Provincial Disaster Risk Reduction Management Council and Civil Defense-Regional Office III		112	\N	2014-01-16	2014-01-17	\N	0	0	0	
9480	Orientation/Seminar on Barangay Budgeting		Association of Local Budget Officers, Region III, Inc		114	\N	2018-10-22	2018-10-24	\N	0	0	0	
9482	Anti-Money Laundering Act Seminar		Rural Bankers Association of the Philippines		114	\N	2015-02-12	2015-02-12	\N	0	0	0	
9483	Signature Verification and Forgery Detection		Rural Bankers Association of the Philippines		114	\N	2015-01-07	2015-01-07	\N	0	0	0	
9484	Doing Business in Free Trade Areas		Department of Trade and Industry		114	\N	2013-11-20	2013-11-20	\N	0	0	0	
9485	17th Regional Mid-Year Convention		National Federation of Junior Philippine Institute of Accountants		114	\N	2013-09-19	2013-09-21	\N	0	0	0	
9486	16th Regional Mid-Year Convention		National Federation of Junior Philippine Institute of Accountants		114	\N	2012-09-20	2012-09-22	\N	0	0	0	
9546	Web Application Using CFML Seminar		STI College		118	\N	2003-03-05	2003-03-05	8	0	0	0	
9547	8th National Information Technology Convention		STI College		118	\N	2003-02-19	2003-02-19	8	0	0	0	
9548	7th National Information Technology Convention		STI College		118	\N	2002-01-29	2002-01-29	8	0	0	0	
12768	National Workshop on Invasive Pests and Disease of Cassava				2217	\N	2016-03-14	2016-03-17		0	0	0	
12769	Trainer's Training on Agricultural Machinery Operatin for Agricultural Engineers in Southern Luzon		Central Bicol State University of Agriculture and epartment of Agriculture Regional Field Office No. 5		2217	\N	2015-12-01	2015-12-29		0	0	0	
12770	Trainers Methodology Level I		TESDA		2217	\N	2015-11-16	2015-12-30		0	0	0	
12771	Supervisory Development Course Track 1 ( SDC T1)		Civil Service Commission		2217	\N	2015-12-08	2015-12-10	32	0	0	0	
12772	12th Philippine National Corn Congress				2217	\N	2016-11-16	2016-11-18		0	0	0	
12773	2015 Corn and Cassava R&D Program Review and Planning Writeshop		Department of Agricuture		2217	\N	2015-10-27	2015-10-30		0	0	0	
12776	Training on Supply/Value Chain Analysis		University of Asia and the Pacific		2217	\N	2010-02-16	2010-02-18		0	0	0	
9665	Year-end Performance Assessment and Awarding Ceremonies of Public Employment Service Office		Public Employment Service Office Managers Federetion of Central Luzon		347	\N	2018-03-15	2018-03-16	\N	0	0	0	
9666	Bridging Leadership Training Module 1		Provincial Disaster Risk Reduction and Management Office		347	\N	2018-03-12	2018-03-14	\N	0	0	0	
9734	Work Attitudes and Values Enhancement Training		Provincial Human Resource Management Office		351	\N	2016-06-21	2016-06-22	\N	0	0	0	
9670	Employment Summit 2015		Public Employment Service Office Balanga		347	\N	2015-11-08	2015-11-08	\N	0	0	0	
9674	Forum on the Rights of PWDs		Department of Health		347	\N	2015-06-03	2015-06-04	\N	0	0	0	
9675	Business Planning Workshop		Department of Labor and Employment- Bataan		347	\N	2015-02-12	2015-02-12	\N	0	0	0	
9677	Anti-illegal Recruitment/Antitrafficking in Persons Campaign Seminar		Philippine Overseas Employment Administration		347	\N	2014-11-25	2014-11-25	\N	0	0	0	
9678	Capability Building  on SRS, PHILJOBNET and LMI for PESO Managers		Department of Labor and Employment- Bataan		347	\N	2013-11-15	2013-11-15	\N	0	0	0	
9681	Sikolohiyang Pilipino: Kaalaman sa HIV-AIDS at Kalinawan ng Isip ng mga Naglalabintaunin		Colegio De San Juan De Letran - Bataan		348	\N	2017-02-01	2017-02-01	\N	0	0	0	
9682	Peer Facilitator Training Workshop		Colegio De San Juan De Letran - Bataan		348	\N	2017-01-03	2017-01-03	\N	0	0	0	
9961	Supervisory Development Course (Sdc) Track Iii		Civil Service Commission		638	\N	2014-12-08	2014-12-10	24	0	0	0	
9683	Psychology and Asian Societies in Midst of Change		Psychological Association of the Philippines Junior Affiliates (PAPJA)		348	\N	2016-01-03	2016-01-03	\N	0	0	0	
9684	Ultimate Leaderdship Workshop		Colegio De San Juan De Letran - Bataan		348	\N	2015-11-02	2015-11-02	\N	0	0	0	
9691	Information Technology Literacy Program Digital Media Fundamental (ADOBE Photoshop)		OWWA		349	\N	2017-02-02	2017-02-10	\N	0	0	0	
9692	Information Technology Literacy Program Computer Fundamentals		OWWA		349	\N	2016-09-27	2016-11-10	\N	0	0	0	
9694	Advocacy Seminar on the Employees Compensation Program		DOLE Employees Compensation Commission		349	\N	2014-02-13	2014-02-13	\N	0	0	0	
9696	Seminar on the Procedures for the Disbursement Transaction of the Provincial Government of Bataan		Provincial Government of Bataan		349	\N	2014-09-05	2014-09-05	\N	0	0	0	
9697	Advanced Management Course Training for PESO Managers and Staff		DOLE Bataan Field Office		349	\N	2013-10-30	2013-10-31	\N	0	0	0	
9698	Basic Management Course for Bataan PESO Managers and Staff		DOLE Bataan Field Office		349	\N	2012-10-24	2012-10-25	\N	0	0	0	
9736	Manpower Training Re: Anti-Smoking Tobacco		Provincial Health Office		351	\N	2014-09-10	2014-09-12	\N	0	0	0	
9740	Information Technology Literacy Program- Computer Fundamentals		Overseas Workers Welfare Administration		353	\N	2016-09-27	2016-10-11	\N	0	0	0	
9743	Procedures for the Disbursement Transactions of the Provincial Government		Provincial Government of Bataan		353	\N	2014-05-09	2014-05-09	\N	0	0	0	
9745	Capability Building on Skills Registry System Phil-Jobnet & Labor Market Information		Department of Labor and Employment		353	\N	2014-02-15	2014-02-15	\N	0	0	0	
9749	Training on Bartending and Table Skirting		Department of Labor and Employment		353	\N	2012-05-01	2012-05-01	\N	0	0	0	
9751	First Aid and Basic Life Support with Automated External Defibrilator Training		Provincial Disaster Risk Reduction & Management Office		681	\N	2018-11-20	2018-11-23	\N	0	0	0	
9752	Bomb Treat Awareness Seminar		Philippine National Police - Bataan		681	\N	2018-04-27	2018-04-27	\N	0	0	0	
9753	Anti-trafficking in Person and Anti-violence Against Women and their Children		Provincial Population Office		681	\N	2018-04-20	2018-04-21	\N	0	0	0	
9755	Capacity Development Importance of Radio Communication & Usage for Security Seminar		REACT		681	\N	2017-10-27	2017-10-28	\N	0	0	0	
9756	MagnaCarta for Women Seminar		Provincial Population Office		681	\N	2017-11-17	2017-11-18	\N	0	0	0	
9757	Basic Life Support - CPR Training for Adult- Lay Rescuers		Philippine Red  Cross - Bataan		681	\N	2017-11-24	2017-11-24	\N	0	0	0	
9758	GAD Basic Concept and Issues		Provincial Population Office		681	\N	2016-07-01	2016-07-01	\N	0	0	0	
9759	Responsible Parenthood - National Family Planning Program Seminar		National CWL - Manila		681	\N	2015-09-24	2015-09-25	\N	0	0	0	
9760	Regional Leadership Training Seminar for Cluster II		National CWL - Manila		681	\N	2014-08-16	2014-08-16	\N	0	0	0	
9761	Seminar on Child Protection Policy		Bataan National High School		683	\N	2016-07-11	2016-07-11	\N	0	0	0	
9866	Affordable Housing		TRUEVENTUS		74	\N	2014-06-25	2014-06-26	\N	0	0	0	
9956	10Th National Congress (Cebu City)		Philippine Councilor'S League National		610	\N	2017-03-08	2017-03-10	\N	0	0	0	
9902	Orientation on GAD Basic Concepts and Issues		Rossana P. Verdida/Popcom		1886	\N	2016-05-27	2016-05-28	16	0	0	0	
9906	Vision aligned circle revalida		PGS		646	\N	2016-07-25	2016-07-29		0	0	0	
9908	Seminar-workshop on revised rules on administrative cases in the Civil Service		Civil Service Commission		646	\N	2015-10-28	2015-10-29	16	0	0	0	
9909	Information Technology literacy program computer Fundamentals		PESO/OWWAS		646	\N	2015-07-06	2015-07-23		0	0	0	
9911	Seminar/Wrkshop On Effective Procedures In Managing Public Records		Government Records Officers Association Of The Philippines		633	\N	2018-10-15	2018-10-17	24	0	0	0	
9912	Gender And Development		Provincial Government Of Bataan		633	\N	2018-08-03	2018-08-04	12	0	0	0	
9913	Fundamentals Of Cooperative		Provincial Cooperative And Enterprise Development Office		633	\N	2018-06-01	2018-06-06	16	0	0	0	
9914	Systematic Records Management Training Workshop		Provincial Human Resource Management Office		633	\N	2018-07-25	2018-07-26	16	0	0	0	
9915	Supervisory Development Course (Sdc) Track I		Civil Service Commission-Region Iii And Provincial Human Resource Management Office 		633	\N	2016-11-15	2016-11-17	24	0	0	0	
9916	Work Attitude And Values Enhancement 		Provincial Human Resource Management Office		633	\N	2016-06-20	2016-06-21	16	0	0	0	
9917	Orientation On Gad Basic Concepts And Issues Cum Team Building		Provincial Government Of Bataan		633	\N	2016-05-27	2016-05-28	16	0	0	0	
9918	Core Functions Of Records Management:Standards And Best Practices		Philippine Association Of Records Officers And Archivists And Alliance Of Cultural Heritage Associations Of The Philippines		633	\N	2016-05-19	2016-05-21	24	0	0	0	
9919	Bataan Provincial Summit 2014 On Drrm		Pdrrmc		633	\N	2014-05-22	2014-05-23	16	0	0	0	
9921	Distance Learning Program		Civil Service Commission		633	\N	2008-06-23	2008-07-14	40	0	0	0	
9927	Gender And Development Basic Concepts And Issues Cum Team Building		Provincial Government Of Bataan		632	\N	2016-05-27	2016-05-28	16	0	0	0	
9932	Orientation on Gad Basic Concepts		 Team Building (GAD) POPCOM		1925	\N	2016-05-27	2016-05-28	\N	0	0	0	
9934	Orientation On Gender Development (Gad) Basic Concepts And Issues		Ms. Rosanna P. Verdida/Popcom		629	\N	2016-05-27	2016-05-28	16	0	0	0	
9944	Orientation On Gender And Development Basic Concepts And Issues		Ms. Rossana Verdida		614	\N	2018-08-03	2018-08-04	\N	0	0	0	
9953	2Nd Quarterly Continuing Local Legislative Education Program		Philippine Councilor'S League		610	\N	2014-06-04	2016-06-06	\N	0	0	0	
9954	Pcl: Laying The Solid Foundation For Nation Building		Philippine Councilor'S League		610	\N	2016-05-14	2016-05-16	\N	0	0	0	
9955	Plc Annual Convention 2016		Philippine Councilor'S League National		610	\N	2016-10-19	2016-10-21	\N	0	0	0	
9957	Communication Development Training (Oral/Written)		Phrmo		638	\N	2016-11-09	2016-11-10	16	0	0	0	
9958	Strategic Performance Management System (Spms) For Leaders		Phrmo		638	\N	2016-10-28	2016-10-28	8	0	0	0	
9960	Seminar-Workshop On Revised Rules On Administrative Cases In The Civil Service		Civil Service Commission		638	\N	2015-10-28	2015-10-29	16	0	0	0	
14810	BASIC FOOD HYGIENE	\N		\N	0	\N	2016-02-18	2016-02-18		0	0	0	 
9967	Harmonized Gender And Development Guidelines		Popcom		640	\N	2018-09-03	2018-09-05		0	0	0	
9968	Seminar On Magna Carta On Women Development		Team Building/Gad		640	\N	2018-08-03	2018-08-04		0	0	0	
9972	Gad Plan And Budget 2005-2016		Popcom		640	\N	2016-05-14	2016-05-15	16	0	0	0	
9974	Seminar-Workshop On Mainstreaming Gad Thru Gad Analysis		Popcom		640	\N	2015-05-14	2015-05-15	16	0	0	0	
9977	Seminar/Workshop On Effective Procedures In Managing Public Records		Gov'T Records Officer Of The Philippines		621	\N	2018-10-15	2018-10-17	24	0	0	0	
9981	Bataan Provincial Planning		Ddrmc		621	\N	2014-05-22	2014-05-23	16	0	0	0	
9982	The Power Within		Acserna Consultancy		621	\N	2014-02-06	2014-02-07	16	0	0	0	
9983	Seminar Workshop On The Use Of Budget Operations Manual 2008 Edition		Ass. Of Local Budget Officer Region Iii		621	\N	2009-05-20	2009-05-22	24	0	0	0	
9984	Seminar Workshop On Ra 9470-Basic Records Archive Management		National Archives Phils.		621	\N	2009-06-09	2009-06-11	24	0	0	0	
9985	Seminar-Workshop On Pma-Opes Track Ii		Civil Service Commission		621	\N	2009-01-22	2009-01-22	24	0	0	0	
9987	Computerization On Records Management		Philippine Records Management		621	\N	2006-03-15	2006-03-17	24	0	0	0	
9988	Preparing Records Dososition Schedule		Philippine Records Management		621	\N	2006-02-22	2006-02-24	24	0	0	0	
9989	Csc Mc (No.25 S. 1999)		Civil Service Commission		621	\N	2001-02-26	2001-02-26	8	0	0	0	
9990	Supervisory Development Course Tracks 2 And 3		Provncial Human Resource Management Office		613	\N	2018-11-12	2018-11-16	\N	0	0	0	
10008	PCL Annual Convention 2016		Philippine Councilors League (PCL) National		1893	\N	2016-10-19	2016-10-21	72	0	0	0	
10009	General Diiscussion of Latest Jurisprudence on Labor Relations and Productivity Seminar		Bataan Constuction Indutrial Tripartite Council		1893	\N	2016-12-02	2016-12-02		0	0	0	
10010	10th National Congress (Cebu City)		Philippine Councilors League (PCL) National		1893	\N	2017-03-08	2017-03-10	72	0	0	0	
10011	2017 Bataan Industrial Peace Council General Assembly cum Learning Session on Department Order no. 174-17		Bataan Industrial Peace Council		1893	\N	2017-06-28	2017-06-28		0	0	0	
10014	Gad Basic Concepts And Issues Cum Team Building		Provincial Government Of Bataan		623	\N	2016-05-27	2016-05-28	16	0	0	0	
10015	Orientation/Seminar On Magna Carta Of Women (R.A. 9710) And Anti-Violence Against Women And Children(R.A. 9262)		Provincial Government Of Bataan		623	\N	2016-04-15	2016-04-15	8	0	0	0	
10016	Information Technology Literacy Program-Computer Fundamentals		Overseas Workers Welfare Administration Rwo Iii At Peso		623	\N	2015-06-01	2015-06-16	60	0	0	0	
10017	Seminar Workshop On Pms -Opes Track Ii		Civil Service Commission		623	\N	2009-01-20	2009-01-22	24	0	0	0	
10018	Gender Equity And Women Empowerment Seminar		Provincial Population Office And City Government Of Bataan		623	\N	2003-06-24	2003-06-24	4	0	0	0	
10019	Jong Phil. Korean Language Center		Jong Phil. Bataan		1929	\N	2017-08-01	2017-11-01	\N	0	0	0	
10020	Seminar-Workshop On Budget Process And Implementing Rules And Regulation Of Ra 9184		Department Of Budget And Management		625	\N	2013-07-17	2013-07-19	24	0	0	0	
10021	National Cooperative Summit: Cooperative Enterprises Build A Better Philippines		Cooperative Development Authority		625	\N	2012-10-10	2012-10-10	24	0	0	0	
10022	Educational Employment Institutions:Strategic Membership Maximizing Regional Market For Employment		Provincial Board Members League Of The Philippines		625	\N	2012-01-30	2012-02-01	24	0	0	0	
10279	ADVANCED CARDIAC LIFE SUPPORT 		NURSING CENTER FOR CLINICAL LABORATORY EXPERIENCE. INC		2185	\N	2019-03-24	2019-03-24	4	0	0	0	
10280	CARDIOVASCULAR PHARMACOLOGY 		NURSING CENTER FOR CLINICAL LABORATORY EXPERIENCE INC.		2185	\N	2019-03-24	2019-03-24	4	0	0	0	
10379	AFMP Workshop		Department of Agriculture - Regional Field Office		58	\N	2018-06-26	2018-06-27	\N	0	0	0	
10380	Seminar on Anti-Violence Againts Women & Childrent Act and Anti sexual Harassment ACT CUM Team Effectiveness Agriculture Employee		Office of the Provincial Agriculturist; Population Commission		58	\N	2018-05-18	2018-05-19	\N	0	0	0	
10381	LGU PCIP/ICCIP Module Encoding Session With PSO,RPCO's and PPMIU's		Department of Agriculture Philippine Rural Development Project		58	\N	2018-02-21	2018-02-22	\N	0	0	0	
10387	Value China Analysis		Deparment of Agriculture - Regional Field Office III		58	\N	2017-08-08	2017-08-11	\N	0	0	0	
10596	Construction Occupational Safety and Health/Safety Professional  I				1657	\N	2017-01-19	2017-01-22	\N	0	0	0	
10597	Proficiency in Survival Craft and Rescue Boat				1657	\N	2016-04-15	2016-04-20	\N	0	0	0	
10598	Refreshment Training for Basic Safety			dated: 29 Jan 16/6 Apr 20	1657	\N	2016-01-29	2016-01-30	\N	0	0	0	
10599	Updating for Basic Safety				1657	\N	2016-01-28	2016-01-28	\N	0	0	0	
10600	Basic Training				1657	\N	2010-02-16	2010-02-21	\N	0	0	0	
10601	NC II TESDA				1700	\N	2018-09-01	2023-09-01	\N	0	0	0	
10602	USP Smartcad Network System and Security Management 		Smartmatic		1701	\N	2015-04-02	2015-06-05	\N	0	0	0	
10603	Rapid Deployment Aftermath Rescue Center Tent Training		1-Metro Structure and Training Co.		1701	\N	2017-03-02	2017-03-02	\N	0	0	0	
10604	Text Messaging Alert System 		AVI Corporation		1701	\N	2017-08-10	2017-08-10	\N	0	0	0	
10606	First Aid Responders Training		Bataan General Hospital		1668	\N	2017-10-17	2017-10-19	\N	0	0	0	
10608	Administering and Securing Network Using Open Source Software (Linux OS and PF Sense)		Eastwoods Professional College of Science and Technology		1730	\N	2017-03-24	2017-03-24	\N	0	0	0	
10609	International Research Conference on Information Technology Education 2017		Eastwoods Professional College of Science and Technology and PSITE		1730	\N	2017-02-03	2017-02-03	\N	0	0	0	
10610	Ultimate Leadership Foundation		Eastwoods Professional College of Science and Technology		1730	\N	2017-03-28	2017-03-28	\N	0	0	0	
10611	Contact Center Services NC II		Technical Education and Skills Development Authority		1730	\N	2017-10-10	2017-10-30	\N	0	0	0	
10654	Basic Occupational Safety and Health Standards		Ernesto Triguero/BPSU		1594	\N	2016-01-09	2016-01-25	\N	0	0	0	
10657	National Certificate II for Driving		TESDA		1633	\N	2018-09-23	2018-09-23	\N	0	0	0	
10658	Radio Communication Registration/Licensing Restricted Land Mobile/Telephone Operation for Land Mobile Services (RLM Certificate)		NTC		1633	\N	2017-08-10	2017-08-10	\N	0	0	0	
10659	3 Days Collapse Structure Search/Rescue and Vehicle Extrication Rescue Training		PDRRMO and Smart Guard		1633	\N	2015-12-12	2015-12-14	\N	0	0	0	
10660	Disaster Preparedness Training on First Aid Lifting and Moving Bandaging with Basic Life Support		PDRRMO		1633	\N	2015-02-13	2015-02-14	\N	0	0	0	
10661	5 Days Familiarization Training Course on Collapse Structure Search and Rescue		OCDR3 and Olongapo Rescue		1633	\N	2010-06-28	2010-07-02	\N	0	0	0	
10662	Basic Life Support CPR for Health Care Providers 		PNRC		1633	\N	2007-08-27	2007-08-30	\N	0	0	0	
10664	Advancing Midwifery Services by Practicing QUality Maternal Care and Values		Integrated Midwives Association of the Philippines		227	\N	2018-05-18	2018-05-18	8	0	0	0	
10666	Safety Services Standard First Aid CPR/AED Training		Philippine Red Cross		227	\N	2018-11-20	2018-11-23	32	0	0	0	
10668	Collapse Structure Search and Rescue Vehicular Extrication Rescue Training		PDRRMO/ Olongapo CDRMO/Smart Guard		1607	\N	2015-12-12	2015-12-14	\N	0	0	0	
10669	USP Smartcad Administration Reports		Smartmatic		1607	\N	2015-05-28	2015-05-28	\N	0	0	0	
10671	Seminars on Trends in Hospitality, Bar Mngt. and Food		Hotel and Restaurant Society Columban College		1616	\N	2003-10-04	2003-10-04	\N	0	0	0	
10672	General Assembly and Front Office Mngt. Seminars		Federation of Hotel and Restaurant Region III		1616	\N	2004-07-14	2004-07-14	\N	0	0	0	
10673	Personality Enhancement Seminar on Pathways to a Successful Career		GP Personality Enhancement Center Subic Bay Arts Center		1616	\N	2003-05-03	2003-05-03	\N	0	0	0	
10674	Mini-chefs on Parade -2002 Odssey, an Expose of Skills and Talents in Culinary Arts through Positive Competition		Hotel and Restaurant Department Columban College		1616	\N	2002-08-17	2002-08-17	\N	0	0	0	
10712	Which Way to Go! Nursing Ethics in Education Practice & Research	Technical	Bataan Peninsula State University		216	\N	2017-07-22	2017-07-22	8	0	0	0	Technical
10714	Prfessionalism Beyong Gender Issues	Technical	Bataan Peninsula State University		216	\N	2014-06-28	2014-06-28	8	0	0	0	Technical
10738	International Classification of Diseases and Related Health Problems: 10th Revision (ICD-10) for Coders	Technical	Philippine Health HEalth Insurance Corporation (Regional Office III)		217	\N	2018-11-19	2018-11-23	40	0	0	0	Technical
10740	Records Management Training for Level 1 Hospital and Infrimaries in Region 3	Technical	Department of Heatlh (Regional Office III)		217	\N	2017-09-27	2017-09-29	24	0	0	0	Technical
10741	Philhealth Hospital Information and Claims System Orientation	Technical	Philippine Health Insurance Corporation Regional Office 3		217	\N	2017-03-24	2017-03-24	8	0	0	0	Technical
10742	Benefit Administration Section Updates	Technical	Philippines Health Insurance Corporation Regional Office III		217	\N	2015-12-09	2015-12-09	4	0	0	0	Technical
10743	Conduct of Reach Out 2015 "Orientation of Hospitals Ambulatory Surgicial Clinics and Free Standing Dialysis	Technical	Philippines Health Insurance  Corporation Regional Office III		217	\N	2015-10-13	2015-10-13	9	0	0	0	Technical
10744	Regular Intravenous Training Program	Technical 	Bataan General Hospital		217	\N	2013-02-08	2013-02-10	27	0	0	0	Technical 
10751	Meeting with Hospitals Updates on Dengvaxia		DOH-Regiona 3		218	\N	2018-11-06	2018-11-13	5	0	0	0	
10752	Orientation on Culture Sensitivity for Health Workers		DOH-Regiona 3		218	\N	2018-07-08	2018-09-08	72	0	0	0	
10753	18th Lecture Series "Effective Social work Writting in Medical Setting: Enriching Documentations Skills For Improved Service Delivery"		AMSWAPI MANILA		218	\N	2017-11-09	2017-11-10	48	0	0	0	
10754	Updates on Medical Health Care Assistance Program		DOH-Region 3		218	\N	2017-04-17	2017-04-17	5	0	0	0	
10757	Certificate training for Medical Social worker - Module 1 & 2 		DOH- Manila 		218	\N	0001-01-01	0001-01-01		0	0	0	
10789	Integrating Advance and Digital Technology in building Infrastracture, 44th National Convention	Technical	Philippine Institute of Civil Engineers		291	\N	2018-10-29	2018-10-31	\N	0	0	0	Technical
10790	Comprehensive Construction Cost Estimate	Technical	Upswing Learning Center		291	\N	2018-10-13	2018-10-13	\N	0	0	0	Technical
10758	Radio Communication Registration and License (NTC)				1587	\N	2018-08-10	2018-08-10	\N	0	0	0	
10759	Network Essential with Introduction to CISCO Networking				1587	\N	2014-12-12	2014-12-12	\N	0	0	0	
10760	CCNA Routing and Switching Introduction to Network				1587	\N	2018-12-04	2018-12-04	\N	0	0	0	
10761	Sangguniang Kabataan Leadership Training CUM Planning		Municipality of Samal Bataan and DILG Samal		1648	\N	2011-11-04	2011-11-06	\N	0	0	0	
10762	1st Samal Youth Leadership Summit 2012		Municipality of Samal and 7th Civil Military Operations Bataan		1648	\N	2012-05-29	2012-05-31	\N	0	0	0	
10763	Pre-Employment Orientation Seminar		Bataan Peninsula State University		1648	\N	2013-02-22	2013-02-22	\N	0	0	0	
10764	Government Internship Program (GIP)		DOLE Region III		1648	\N	2015-05-09	2015-10-31	\N	0	0	0	
10765	USP Smartcad CCTV Operator		Smartmatic and 1Bataan		1648	\N	2016-02-02	2016-02-02	\N	0	0	0	
10766	USP Smartcad Videowall Operator		Smartmatic and 1Bataan		1648	\N	2016-02-02	2016-02-02	\N	0	0	0	
10768	Riders Safety Seminar		Bataan Motorcycle Riders Federations Inc.		1648	\N	2017-08-13	2017-08-13	\N	0	0	0	
10772	Microsoft Office Specialist		Microsoft Office Specialist		1667	\N	2017-12-14	2017-12-14	\N	0	0	0	
10773	Consumer Electronic Servicing NC II		TESDA		1667	\N	2015-07-13	2015-09-14	\N	0	0	0	
10774	Shielded Metal Arc Welding (SMAW)		TESDA		1667	\N	2015-06-19	2015-07-19	\N	0	0	0	
10775	Restricted Radiotelephone Operations		National Telecommunications Commission		1636	\N	2017-11-09	2017-11-09	\N	0	0	0	
10776	Explosive Trace Detection Training		Emirates Group Security Dubai UAE	2 days	1636	\N	2016-02-04	2016-02-05	\N	0	0	0	
10777	AUSEC US Flight Operation Training (Non-Contact)		Emirates Group Security Dubai UAE	3 days	1636	\N	2016-02-03	2016-02-05	\N	0	0	0	
10821	COMMUNITY BASED-DISASTER BASIC REDUCTION AND MANAGEMENT (CD-DRRM) TRAINING OF TRAINORS 		PDRRMO		1747	\N	2016-09-19	2016-09-23		0	0	0	
10822	COLLAPSE STRUCTURE SEARCH AND RESCUE AND VEHICULAR EXTRICATION RESUCE TRAINING 		OLONGAPO -CDRRMO/SMARTGUARD/PDRRMO		1747	\N	2015-12-12	2015-12-14		0	0	0	
10823	FIRST AID AND BASIC LIFE SUPPORT TRAINING 		PDRRMO/BDJBJMP		1747	\N	2015-03-12	2015-03-16		0	0	0	
10824	SEMINAR-WORKSHOP ON DISASTER PREPAREDNESS FOR SCHOOL DRRM COORDINATOR 		DEPED/PDRRMO		1747	\N	2015-07-29	2015-07-31		0	0	0	
10825	THREE-DAY BASIC/INTERMEDIATE INCIDENT COMMAND SYSTEM TRAINING COURSE 		OCD/PDRRMO		1747	\N	2013-02-11	2013-02-13		0	0	0	
10826	BASIC LIFE SUPPORT (BLS) TRAINING 		GOLDEN SUCCESS		1747	\N	2013-02-20	2013-02-22		0	0	0	
10827	ADVANCED CARDIO VASCULAR LIFE SUPPORT (ACLS) TRAINING 		GOLDEN SUCCESS		1747	\N	2013-02-20	2013-02-22		0	0	0	
10828	CARDIO VASCULAR PHARMACOLOGY ADVANCED AIRWAY AND ELECTRICAL THERAPY		GOLDEN SUCCESS		1747	\N	2013-02-21	2013-02-22		0	0	0	
10829	First Response Training	Skills	Bataan General Hospital		1661	\N	2017-10-17	2017-10-19	\N	0	0	0	Skills
10896	Property Assessment & Tax Administration System (PATAS) User's Training & Distribution of Computer Hardware	Technical	Office of the Provincial Assessor		576	\N	2015-11-09	2015-11-09	\N	0	0	0	Technical
10897	Capacity Building on Preparation of the SRE through Reconcilation with NGAS	Technical	Bureau of Local Government Finance		576	\N	2012-06-13	2012-06-15	\N	0	0	0	Technical
10898	Electronic Statement of Receipts and Expenditures (eSRE) System Roll-Out Training	Technical 	Bureau of Local Government Finance		576	\N	2009-10-20	2009-10-22	\N	0	0	0	Technical 
10901	Treasury Operations Support System (TOSS) 		Geodata Solutions INC.		577	\N	2017-10-06	2017-10-06	\N	0	0	0	
10902	Work Atittude and Values Enchancement Training		Provincial Human Resource Management Office 		577	\N	2016-06-20	2016-06-21	\N	0	0	0	
10904	Operation: Basic Course: Local Area Networking (LAN)				577	\N	0001-01-01	0001-01-01	\N	0	0	0	
10970	SEC AND BOA UPDATES WITH 8.0 CPD CREDIT UNITS HELD AT PICPA BUILDING GREENFIELDS SQUARE, SINDALAN CITY OF SAN FERNANDO, PAMPANGA 	TECHNICAL 	PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACOUNTANTS (PICPA) - PAMPANGA CHAPTER		603	\N	2016-12-09	2016-12-09	\N	0	0	0	TECHNICAL 
10971	ACKNOWLEDGED FOR HAVING SERVED AS GUEST SPEAKER IN SHARING VALUABLE INSIGHTS AND INSPIRATIONS DURING THE RECOGNITION DAY AT THE SAMAL NATIONAL HIGH SCHOOL - MAIN CAMPUS		SAMAL NATIONLA HIGH SCHOOL - MAIN		603	\N	2017-04-03	2017-04-03	\N	0	0	0	
11337	Boat Measurement Training for Boat- r Implements 		Bureau of Fisheries Aquatic Resources 3		52	\N	2015-06-09	2015-06-10	\N	0	0	0	
11338	Katropaa Kalalakihan Tapat sa Responsibilidad at Obligasyon sa Paamilya Training 		Provincial Government of Bataan		52	\N	2015-03-05	2015-03-06	\N	0	0	0	
11341	NCR Training mOdules 2 Social System Thingkin Workshop	Technical	Provincial Disaster RIsk, Reduction and Management Council		226	\N	2019-02-28	2019-03-01	16	0	0	0	Technical
11343	Orientation on Donning and Doffing of PPE	Techncial 	Department of Health Region 3		226	\N	2018-09-17	2018-09-19	24	0	0	0	Techncial 
11344	Building Linkages Between Doctors, Nurses and Midwives	Technical	Perinatal Association of the Philippines		226	\N	2018-07-21	2018-07-21	8	0	0	0	Technical
11345	Embracing Diversity: Breaking Barriesrs Through Holistic Perioperative Nursing Care	Technical	Operating Room Nurses Assocaition of the PHillipines, Inc (ORNAP)		226	\N	2018-06-30	2018-07-01	16	0	0	0	Technical
11348	NTP Data Validation Bataan	Technical	Bataan Medical Society		226	\N	2017-09-29	2017-09-29	8	0	0	0	Technical
11062	Service Training on Feasibility Study	Technical	Department of Trade and Industry		540	\N	1984-10-25	1984-10-25	\N	0	0	0	Technical
11107	PROVINCIAL MANAGEMENT OF DEVELOPMENT INFORMATION SYSTEM  (PromDI)		DEVELOPMENT ACADEMY OF THE PHILS.		545	\N	1995-05-22	1995-05-26	\N	0	0	0	
11108	BWP SEMINAR WORKSHOP IN FEASIBILTY STUDIES 	TECHNICAL 	DEPARTMENT OF LOCAL GOVERNMENT AND COMMUNITY DEVELOPMENT/BARANGAY WATER PROGRAM		548	\N	1979-12-19	1979-12-23	\N	0	0	0	TECHNICAL 
11111	WATER RESOURCE DEVELOPMENT PLANNING SEMINAR	TECHNICAL 	BARANGAY WATER PROGRAM		548	\N	1980-08-21	1980-08-23	\N	0	0	0	TECHNICAL 
11148	TECHNICAL SYMPOSIUM OF THE BUREAU OF THE POSTHARVEST RESEARCH AND EXTENSION	TECHNICAL 	BUREAU OF POSTHARVEST RESEARCH AND EXTENSION		924	\N	2015-12-05	2015-12-07	\N	0	0	0	TECHNICAL 
11356	NTP Validation	Technical	Provincial Health Office Bataan		226	\N	2015-07-14	2015-07-14	8	0	0	0	Technical
11184	REGIONAL WORKSHOP ON NATIONAL/REGIONAL STRATEGIC PRIORITIES AND SUSTAINABLE DEVELOPMENT GOALS (SDG'S) ALIGNMENT 	TECHNICAL	DEPARTMENT OF INTERIOR AND LOCAL GOVERNEMENT (DILG) III		551	\N	2017-08-10	2017-08-11	\N	0	0	0	TECHNICAL
11239	LEARNING EVENT ON NATIONAL LAND USE POLICY AND REGIONAL DEVELOPMENT	TECHNICAL	NATIONAL ECONOMIC AND DEVELOPMENT AUTHORITY REGION III		922	\N	2017-12-18	2017-12-18	\N	0	0	0	TECHNICAL
11240	NEDA FORMULATION OF THE PHILIPPINE WATER SUPPLY AND SANITATION MASTER PLAN	TECHNICAL	NATIONAL ECONOMIC AND DEVELOPMENT AUTHORITY REGION III		922	\N	2018-02-12	2018-02-14	\N	0	0	0	TECHNICAL
11241	ENTITY LEVEL GREENHOUSE GAS EMISSIONS INVENTORY WORKSHOP	TECHNICAL	PROVINCIAL ENVIRONMENT AND NATURAL RESOURCES III		922	\N	2018-04-03	2019-04-18	\N	0	0	0	TECHNICAL
11242	SEMINAR ON THE SUSTAINABILITY MANAGEMENT OF THE GROUNDWATER RESOURCES OF THE PROVINCE OF BATAAN	TECHNICAL	PROVINCIAL ENVIRONMENT AND NATURAL RESOURCES 		922	\N	2018-04-13	2018-04-13	\N	0	0	0	TECHNICAL
11243	PEOPLE'S SURVIVAL FUND WORKSHOP	TECHNICAL	PROVINCIAL ENVIRONMENT AND NATURAL RESOURCES 		922	\N	2018-08-30	2018-08-31	\N	0	0	0	TECHNICAL
11303	"Regional Convention : Imap Region 3 @ 3"IMAP Core Values	Technical	Integrated Midwives Association of the Philippines		219	\N	2016-11-30	2016-11-30	8	0	0	0	Technical
11304	Gestational Diabetes Mellitus, Post Natal Care and Perneal Tear 	Technical	Integrated Midwives Association of the Philippines		219	\N	2017-11-17	2017-11-17	8	0	0	0	Technical
11306	62nd Turn Over Ceremony Bataan Dental Champter	Managerial	Philippine Dental Association		214	\N	2016-06-05	2016-06-05	5	0	0	0	Managerial
11307	63rd Turn Over Ceremony Bataan Dental Chapter	Managerial	Philippine Dental Association		214	\N	2016-07-11	2016-07-11	5	0	0	0	Managerial
11308	PDA-Dolfinal Scientific Sumposia	Managerial	UNILAB		214	\N	2016-01-19	2016-01-19	5	0	0	0	Managerial
11365	Regional Consultation Meeting of Stakeholders on the Implementation of Extension Projects on Organic Agriculture Program 		Agricultural Training Institute - Central Office 		55	\N	2015-03-26	2015-03-26	\N	0	0	0	
11366	NCII in Organic Agriculture Production 		Agricultural Training Institute - Central Office 		55	\N	2015-03-09	2015-03-09	\N	0	0	0	
11367	Training of Trainers on Value Chain Analysis: Training Workshop Towards Organic Agriculture Development 		Agricultural Training Institute Regional Training Center III		55	\N	2015-02-09	2015-02-15	\N	0	0	0	
11369	Training Course on Good Agricultural Practices for Mango		Agricultural Training Institute Regional Training Center III		55	\N	2014-08-11	2014-08-13	\N	0	0	0	
11370	Awareness Seminar on Food and Safety Law 		Agricultural Training Institute Regional Training Center III		55	\N	2014-05-27	2014-05-27	\N	0	0	0	
11371	Rice Black Bug, Summit 		Agricultural Training Institute Regional Training Center III		55	\N	2014-04-24	2014-04-24	\N	0	0	0	
11372	Awareness Orientation and Planning Workshop on the Development of Organic Agriculture Zone 		Agricultural Training Institute Regional Training Center III		55	\N	2014-03-27	2014-03-28	\N	0	0	0	
11412	Radar(Mini Command Center Trailer Tent Training Program)		I-Metro Stracture and Training Co/PDRRMO		1687	\N	2017-02-28	2017-03-02	16	0	0	0	
11414	Integrated Planning Course on Incident Command System		Regional Risk Reduction and Management Council III		1687	\N	2016-07-18	2016-07-22	40	0	0	0	
11415	Stand First aid and Basic Life Support - CPR Training for Professional Course		Philippine National Red Cross		1687	\N	2016-02-29	2016-03-04	40	0	0	0	
11416	Emergency Trauma Care - Basic Trauma Life Support		Golden Success Technical and Educational Insitute Inc.		1687	\N	2016-02-26	2016-02-27	16	0	0	0	
11480	Depressed or Refreshed? A Dive to Save Lives : An Anti-Suicide Campaign"		BPSU Graduate School		400	\N	2013-06-15	2013-06-15	8	0	0	0	
11531	Professionalism and Personality Development		Polytechnic University of the Philippines		1442	\N	2011-10-04	2011-10-04	4	0	0	0	
11532	PICE National Midyear Convention 	Technical	Philippine Institute of Civil Engineers		328	\N	2016-06-16	2016-06-18	22	0	0	0	Technical
11533	Supervisory Development Course - Track 1	Supervisory	Civil Service/ PGB		328	\N	2016-11-15	2016-11-17	24	0	0	0	Supervisory
11534	PICE 1st National Convention "Pursuing Excellence in Civil Engineering for Global Competitiveness"	Technical	Philippine Institute of Civil Engineers		328	\N	2015-12-02	2015-12-04	22	0	0	0	Technical
11535	PICE 2015 National Midyear Convention "Filipino Civil Engineers Ready for Global Practice"	Technical	Philippine Institute of Civil Service		328	\N	2015-05-28	2015-05-30	22	0	0	0	Technical
11536	PICE 2014 National Midyear Convention "Pursuing Innovation Creativity & Excellence"	Technical	Philippine Institute of Civil Service		328	\N	2014-06-05	2014-06-07	22	0	0	0	Technical
11587	Training / Orientation for KATROPA-Kalalakihang Tapat sa Responsibilidad at Obligasyon sa Pamilya 		Provincial Population Office 		517	\N	2016-06-23	2016-06-23	\N	0	0	0	
11588	Orientation on GAD Basic Concepts and Issues cum Team Building for Population Office Staffs		Provincial Government of Bataan, Provincial Population Office		517	\N	2016-05-06	2016-05-07	\N	0	0	0	
11589	Refresher Course on Pre-Marriage Counselling for PMC Counselors of Bataan 		Commission on Population Region III		517	\N	2016-02-08	2016-02-10	\N	0	0	0	
11709	Seminar-Workshop on Revised Rules on Administrative Cases in The Civil Service	Managerial	Civil Service Commission Regional Office no. III		344	\N	2015-10-28	2015-10-29	8	0	0	0	Managerial
11710	Provincial Stakeholders Consultation WorkShop for the Formulation of the Core ROad Network and Provincial Road Network Development Plan (PRDNP)	Technical	Provincial Government of Bataan		344	\N	2015-10-14	2015-10-14	4	0	0	0	Technical
11711	Retooling For Procument Process for PPMIU & BAC of LGU's cum Pre- Procurement Conference	Skills Training	Department of Agriculture - Philippine Rural Development Project RPCO 3		344	\N	2015-07-21	2015-07-22	16	0	0	0	Skills Training
11712	Pagsasanay sa Korespondensiya Opisyal  at Implementayon ng Kautusang Tagapagpaganap BLG. 335	Personal Development	Komisyon sa Wikang Filipino and Provincial Government of Bataan		344	\N	2015-09-29	2015-09-29	8	0	0	0	Personal Development
11713	Seminar/Workshop on the Nationalwide Roll-Out of Local Road Management (LRM) Manual	Skills Training	Department of Interior and Local Government - OPDS		344	\N	2015-07-15	2015-07-17	24	0	0	0	Skills Training
11908	Contingency Planning Formulation Workshop 		Regional/Provincial Disaster and Risk Reduction Office / Office of Civil Defense 3 		556	\N	2014-02-19	2014-02-21	\N	0	0	0	
11910	Regional Forum on Comprehensive Program for SOLO Parents and RA 8972-SOLO Parents Welfare Act 		Department of Social Welfare and Development Office Region III		556	\N	2012-06-28	2012-06-28	\N	0	0	0	
11911	Hand and Foot Reflexology 		Technical Education and Skills Development Authority 		556	\N	2011-05-25	2011-05-26	\N	0	0	0	
11913	Information Dissemination of RA 9470		National Archives of the Philippines 		556	\N	2009-02-13	2009-02-13	\N	0	0	0	
11914	Critical Incident Stress Management Training 		Philippine National Red Cross		556	\N	2009-02-06	2009-02-06	\N	0	0	0	
11915	Rapid Damage Assessment and Needs Analysis (RDANA) Training Workshop 		Bataan Disaster Coordinating Council / Office of Civil Defense 3 		556	\N	2009-05-12	2009-05-13	\N	0	0	0	
11963	Paradigm Shift 		Office of Strategy Management 		559	\N	2017-05-26	2017-05-27	\N	0	0	0	
12116	End Users Training for the Land Registration Authority (LRA)-Bataan Province Title & Parcel- Map Data Supply Project	Technical	Land Registration Systems, Inc. (LARES)		71	\N	2016-09-28	2016-09-28	\N	0	0	0	Technical
12118	Tips and Tricks of Microsoft Office	Technical	PWU		693	\N	0001-01-01	0001-01-01	\N	0	0	0	Technical
12119	IOSH Managing Safety Training	Technical	OHSEC Safety Consultations		710	\N	2014-06-07	2014-06-09	24	0	0	0	Technical
12120	14th Annual Convention and Annual Seminar on Real Property Appraisal and Assessment of the Philippine Association of Assessing Officers (PAOO), INC	Technical	Philippine Associatio of Assessing Officers (PAOO), INC. & BLGF		68	\N	2018-05-29	2018-06-01	\N	0	0	0	Technical
12123	Basic/Advaned Written and Oral Communication with Power Point Presentation	Technical	Provincial Human Resource Management Office		68	\N	2018-04-18	2018-04-19	\N	0	0	0	Technical
12124	12th National Convention and  Annual Seminar on Real Property Appraisal and Assessment of the Philippine Association of Assessing Officers (PAOO), INC	Technical	Philippine Association of Assessing Officers (PAOO), INC		68	\N	2017-05-02	2017-05-05	\N	0	0	0	Technical
12125	2016 Comprehensive Course for Real Estate Appraiser	Technical	National Real Estate Association , Inc		68	\N	0001-01-01	0001-01-01	\N	0	0	0	Technical
12131	83rd Annual Convention and Seminar Workshop-PHALTRA		PHALTRA		79	\N	2016-02-23	2016-02-26	\N	0	0	0	
12132	Follow through Training on Internal Audit Institutionalizing key LGU Internal Control Systems through Effective Documentation		DILG-Region III		79	\N	2018-11-27	2018-11-28	\N	0	0	0	
12133	Follow through Activity on the Finalization of PGRR and the Conduct of Local Road Performance Assessment through focus Group Discussion		DILG-Region III		79	\N	2018-10-10	2018-10-11	\N	0	0	0	
12134	Workshop for the Completion of PGRR Roadmap		DILG-Region III		79	\N	2018-09-25	2018-09-26	\N	0	0	0	
12135	13th National Convention PAAO, Inc.		PAAO, Inc.		79	\N	2018-05-29	2018-06-01	\N	0	0	0	
12136	Financial Management and Analysis for Local Governments Creating Wealth for better Local Government Services		Local Government Academy-DILG		79	\N	2017-08-08	2017-08-11	\N	0	0	0	
12165	Disaster Preparedness Training of First Aid , Lifting and Moving Bandaging with Basic HPE Support		PDRRMC -Bataan		1635	\N	2015-02-13	2015-02-14	\N	0	0	0	
12166	Executive Motorcycle Riding Course (EMRC)		Highway Patrol Group (HPG)		1635	\N	2014-05-28	2017-07-07	\N	0	0	0	
12167	Trauma Care: from Pre hospital to Emergency Room		Phil. College of Surgeon Central Luzon Chapter		1664	\N	2018-06-30	2018-07-01	\N	0	0	0	
12170	RADAR		RADAR Equipment		1588	\N	2017-02-28	2017-03-02	\N	0	0	0	
12171	Radio Comm. Registration and Licensing		National Telecom Company		1588	\N	2017-08-10	2017-08-10	\N	0	0	0	
12175	Development of Emergency Protocols 		Edgar Allan Tabel -DILG		1751	\N	2017-06-20	2017-06-23	\N	0	0	0	
12177	NC II Training for Driving		TESDA		1731	\N	2018-09-23	2018-09-23		0	0	0	
12178	Radio Communication Registration and Licensing Restricted Land Mobile Radio Telephone for Land Mobile Service (RLM Certificate)		National Telecommunications Commission		1731	\N	2017-08-10	2017-08-10		0	0	0	
12179	TESDA NC II		TESDA		1716	\N	2018-04-17	2023-04-16	\N	0	0	0	
12180	Hazardous Materials (Hazmat) Management and Emergency Response		(WSO) World Safety Organization		1716	\N	2014-05-07	2014-05-07	\N	0	0	0	
12182	Rescue and vehicular execution rescue training 		Provincial Disaster Risk Reduction Office 		1742	\N	2015-12-12	2015-12-14		0	0	0	
12183	Radio Communciation Registration & Lecensing 		Service Office		1742	\N	2017-08-10	2017-08-10		0	0	0	
12185	National Certificate II in Driving		TESDA Mariveles		1589	\N	2018-09-22	0001-01-01	\N	0	0	0	
12187	Rapid Deployment Aftermath Rescue (RADAR) Command Center Trailer Tent Training Program		Bataan Provincial Disaster Risk Reduction Management Ofiice		1589	\N	2017-02-28	2017-03-02	\N	0	0	0	
12817	45th Annual Convention and Scientific Meeting		Operating Room nurses Association of the Philippines		2221	\N	2019-07-13	2019-07-14	16	0	0	0	
12818	Lactation Managment and Training		Bataan Genral Hospital		2221	\N	2019-06-29	2019-06-30	16	0	0	0	
12819	Training on Philippine Integrated Disease Surveilance and Response Vaccine Preventable Disease Surveillance and Event based Surveillance and Response		Department of Health Central Luzon		2221	\N	2019-04-24	2019-04-26	24	0	0	0	
12820	Provider Initiated Counseling and Testing		Philippine Business for Social Progress		2221	\N	2018-05-08	2018-05-11	36	0	0	0	
12823	Recognition and Management of Acute Isenemic Stroke Cardiovascular Care		CPR PRO Medical Learning and Training		2221	\N	2018-02-08	2018-02-08	8	0	0	0	
12824	Basic ECG and Dysonytmia Recognition		CP PRO Medical Learning and Training		2221	\N	2018-02-08	2018-02-08	8	0	0	0	
12825	Airway Adjunct Endotracheal Intubation and Management in AELS		CPR PRO Medical Learning and Training		2221	\N	2018-02-08	2018-02-08	8	0	0	0	
12832	Basic First Aid		American Safety and Health Institute		2223	\N	2019-06-21	2019-06-21		0	0	0	
12835	Basic and Advanced Airway Management		NKL- Stars International Medical Training Institute		2224	\N	2018-09-30	2019-01-10	16	0	0	0	
12837	Automated External Difibrillation Operation		NKL- Stars International Medical Training Institute		2224	\N	2018-09-30	2019-01-10	16	0	0	0	
12838	BLS Team Approach Workshop		NKL- Stars International Medical Training Institute		2224	\N	2018-09-30	2019-01-10	16	0	0	0	
12840	IV Therapy Training Peogram		Association of Nursing Service Administrators of the Philippines in Coordination with Bataan General Hospital		2224	\N	2014-09-19	2014-09-20	16	0	0	0	
12842	Hepatitis B: Management and Awareness		Gordon College Institute of Graduate Studies		2224	\N	2019-07-06	2019-07-06		0	0	0	
12843	Orientation for Hospitals and Infirmaries		PHILHEALTH		2224	\N	2019-07-17	2019-07-17		0	0	0	
12844	Expanded Primary Care Benefit		PHILHEALTH		2224	\N	2019-07-17	2019-07-17	0	0	0	0	
12852	Emergency Essentials		JBLMRH		2226	\N	2019-05-20	2019-05-21	16	0	0	0	
12853	Occupational Safety and Health Summit		Provincial Government of Bataan with Occupational Safety and Health Center		2226	\N	2019-04-25	2019-04-25	8	0	0	0	
12877	Training on Logistic Management on Disaster Response		Department of Social Welfare and Development 		558	\N	2018-11-06	2018-11-09	\N	0	0	0	
12880	Strategic Management System for Leaders		Provincial Human Resource Management Office 		558	\N	2016-10-28	2016-10-28	\N	0	0	0	
12915	Enhancing the Conduct and Ethical Standard of Public Officials and Employess through Alignement with Globally Competitive Educational Reforms		Graduate School, Bataan Peninsula State University- Main Campus		2233	\N	2011-05-14	2011-05-14	8	0	0	0	
12916	Code of Conduct and Ethical Standards for Public Officials and Employees		Limay Polytechnic College		2233	\N	2010-09-28	2010-09-28	8	0	0	0	
12917	Speech and Writing Enhancement in an ESL Classroom Setting		Repas International Institute of Language		2233	\N	2008-05-12	2008-05-20	32	0	0	0	
12918	Leadership in Filipino Education		Max Salazar- OCCI Fullness of Life		2233	\N	2007-06-29	2007-06-30	16	0	0	0	
12919	Empowering the 21st Century Filipino Educators through Critical Thinking		Bataan Peninsula State University- Main Campus		2233	\N	2006-11-11	2006-11-11	8	0	0	0	
12925	Senior High School Immersion: Principles, Procedures, and Troubleshooting		St. John Academy, Dinalupihan, Bataan		2235	\N	2017-10-21	2017-10-21		0	0	0	
12926	DepEd-PEAC's Institute for Private Junior High School Administrators on Understanding and Designing Standards-Based School Improvement Plan		St. Scholastica's Academy, San Fernando, Pampanga		2235	\N	2018-04-18	2018-04-21		0	0	0	
12927	AutoCAD 2D and 3D Designing and Rendering		Microcadd Institute		2236	\N	2018-11-01	2018-11-01		0	0	0	
12933	Optimum Health Outcomes through Medication		Unilab		2234	\N	2018-07-12	2018-07-12	8	0	0	0	
13002	Strategy Execution Masterclass London, UK		Palladium Group, UK		2252	\N	2017-03-21	2017-03-23	24	0	0	0	
13003	AIM Executive Education: Project Management		Asian Institute of Management		2252	\N	2011-04-04	2011-04-08	40	0	0	0	
13004	Capability Build-up Training on Promo Collaterals/presentation materials		DTI		2252	\N	2009-06-17	2009-06-17	8	0	0	0	
13005	RA 9470		Nat'l Archives Office		2252	\N	2009-02-13	2009-02-13	8	0	0	0	
13006	PMS-OPES Track II Seminar		CSC		2252	\N	2009-01-20	2009-01-22	24	0	0	0	
13007	4th Knowledge Exchange Seminar		NCC-CICT		2252	\N	2008-04-03	2008-04-04	8	0	0	0	
13008	GIS Training		NAMRIA		2252	\N	2007-01-22	2007-01-26	40	0	0	0	
13009	eRPTS Technical Users Seminar		NCC-FFO		2252	\N	2003-11-21	2003-12-06	88	0	0	0	
13011	Gov't Web Development Workshop/Seminar		DOST		2252	\N	2003-03-10	2003-03-10	8	0	0	0	
13016	Competency Assessor's Course		Tesda, Bataan		2253	\N	2005-04-26	2005-04-29	32	0	0	0	
13017	Microcontroller Symposium		Asia Pacific College, Makati City		2253	\N	2002-03-14	2002-03-14	8	0	0	0	
13021	Local Budgeting Process		Pbmlp		615	\N	2018-01-18	2018-01-20	\N	0	0	0	
13022	12Th Luzon Island Conference		Pbmlp		615	\N	2018-02-22	2018-02-25	\N	0	0	0	
13023	Pbmlp		Pbmlp		615	\N	2017-05-02	2017-05-04	\N	0	0	0	
13026	Regional Assembly Of Pbmlp		Pbmlp Region		615	\N	2016-08-18	2016-08-20	\N	0	0	0	
13027	24Th National Convention @National Election		Pbmlp		615	\N	2014-03-13	2014-03-15	\N	0	0	0	
13028	Nmyl		Nmyl		615	\N	2014-02-19	2014-02-23	\N	0	0	0	
13231	5th Meeting of ACDM TWG on Preparedness and Response, Malaysia		ASEAN		270	\N	2013-09-05	2013-09-06	\N	0	0	0	
13232	The 2nd Meeting of the Conference of Parties to the ASEAN Committee on Disaster Management		ASEAN		270	\N	2013-05-30	2013-05-30	\N	0	0	0	
13233	The 22nd Meeting on ASEAN Committee on Disaster Management		ASEAN		270	\N	2013-05-28	2013-05-29	\N	0	0	0	
13254	Pagsasanay Sa Korespondensya Opisyal At Implementasyon Ng Kautusang Tagapagpaganap		Komisyon Sa Wikang Filipino		627	\N	2015-09-29	2015-09-29		0	0	0	
13255	Instrumentation And Control Servicing Nc Ii		Tesda		627	\N	2013-04-29	2013-06-11		0	0	0	
13286	Assembly and policy Workshop on Nutrition		3LPHED		650	\N	2017-03-22	2017-03-24		0	0	0	
13490	2017 Local Executives Program		Director Nelson Sarmiento/ Civil Service Commiccion Region 3		620	\N	2017-04-09	2017-05-09	12	0	0	0	
13492	Incident Command System Level Iii`		Pssupt. Audie Dm. Atienza, Pnp.		620	\N	2017-10-03	2017-10-06	40	0	0	0	
13493	Communication Development		Ms.Normita C. Mendoza-Lugtu		620	\N	2017-09-11	2017-10-11	16	0	0	0	
13494	Conduct Of Strategic Performance Management System For Leaders		Mr. Edgardo C. Cruz		620	\N	2016-10-28	2016-10-28	6	0	0	0	
13495	Incident Command System Level Ii		Pssupt. Audie Dm. Atienza, Pnp.		620	\N	2016-08-15	2016-08-19	40	0	0	0	
13496	Code Of Conduct And Ethical Standards And Revised Rules On Administrative Cases		Atty. Rosalinda A. Tanaliga And Ms. Mary Ann F. Recites-Panlilio		620	\N	2015-10-28	2015-10-29	1	0	0	0	
8	Training Module 2: Social System Thinking Workshop		National Resilience Council		1394	\N	2019-02-28	2019-03-01	\N	0	0	0	
9	Risk Communication Training in Public Health Programs		Provincial Health Office; DOH		1394	\N	2018-11-14	2018-11-16	\N	0	0	0	
10	Basic and Advance Cardiac Life Support Training		Philippine Heart Association		1394	\N	2016-09-20	2016-09-22	\N	0	0	0	
869	Basic Networking and Troubleshooting		CICT, BPSU - Main Campus		1978	\N	2016-05-13	2016-05-14	\N	0	0	0	
424	Supervisory Development Course Track III		Civil Service Commission		502	\N	2018-11-14	2018-11-16	\N	0	0	0	
425	Supervisory Development Course Track II		Civil Service Commission		502	\N	2018-11-12	2018-11-13	\N	0	0	0	
426	Values Restoration Program-Public Accountability and Values Enhancement Seminar		Council for the Restoration of Filipino Values-CSC Accredited Learning & Development Institute		502	\N	2018-07-18	2018-07-20	\N	0	0	0	
427	Basic Customer Service Skills Training		Provincial Human Resource Management Office		502	\N	2018-05-07	2018-05-07	\N	0	0	0	
428	Career Development and Succession Management		Civil Service Institute		502	\N	2017-09-06	2017-09-08	\N	0	0	0	
429	Supervisory Development Course Track I		Civil Service Commission		502	\N	2016-11-15	2016-11-16	\N	0	0	0	
430	Communication Development Training for Public Officials and Employees of Provincial Government of Bataan		Provincial Human Resource Management Office		502	\N	2016-11-09	2016-11-10	\N	0	0	0	
8254	E-Learning Course on Waste Management in Agribusiness 		Asian Productivity Organization & Development Academy of the Philippines		359	\N	2018-12-11	2018-12-14	\N	0	0	0	
8255	Mobile Continous Ambient Air Quality Monitoring System On-Site Demo Training 		BP integrated Technologies Inc		359	\N	2018-11-22	2018-11-22	\N	0	0	0	
8256	Greenhouse Gas (GHG) Inventory Training 		DENR - EMB R3		359	\N	2018-09-27	2018-09-27	\N	0	0	0	
13542	43rd Annual Convention and 44th Midwifery Celebration Growth and Micro Nutrients Pound by Pound Fatal Growth and Development Monitoring		{Philippine League of Government and Private Midwives Inc.		2257	\N	2018-02-01	2018-02-01		0	0	0	
13543	Second Regional Convention and Perinatal Association of the Philippines		Perinatal Association of the Philippines		2258	\N	2019-07-20	0001-01-01		0	0	0	
13547	A Grow Happy Campaign for a More Holistic Development of Children		Integarted Midwives Association of the Philippines		2258	\N	2018-08-22	2018-08-22		0	0	0	
13548	Quality Familiy Planning Services		Integrated Midwives Association of the Philippines		2258	\N	2017-03-28	2017-03-28		0	0	0	
13549	IMAP Defining it's core values		Integarted Midwives Association of the Philippines		2258	\N	2017-07-17	2017-07-17		0	0	0	
13550	Essential Intrapartum and New Born Care		Department of Health Region 3		2258	\N	2017-08-25	2017-08-26		0	0	0	
13551	inetation Management Training		Department of Health Region 3		2258	\N	2017-10-11	2017-10-13		0	0	0	
13552	Training of NewbornScreening		Department of Health Region 3		2258	\N	2016-11-17	2016-11-18		0	0	0	
13553	IMAP Core Values		Intergarted Midwives Association of the Philippines		2258	\N	2016-11-30	2016-11-30		0	0	0	
13558	Basic Life Support and irst Aid Training		Red Cross/ PDRRMO		2259	\N	2018-11-20	2018-11-23		0	0	0	
13560	Farmers Field School-FPS Integrated Managament IPM		Kasakalikasan Bagac BAI		2259	\N	1997-12-17	1998-03-24		0	0	0	
8257	Seminar on Implementation of Provincial Ordinance on Poultry and Piggery Project in the Province of Bataan 		BPSU Abucay Campus Gaudencio C. Ferrer, Provincial Consultant Bataan 		359	\N	2016-09-08	2016-09-08	\N	0	0	0	
2011	Seminar Workshop on the Implementation of the RPTA Project 	Technical 	Bureau of Local Government Finance, Region III		566	\N	1997-04-28	1997-04-30	\N	0	0	0	Technical 
2022	Seminar Workshop on Team Developement 		Joyous		568	\N	2015-12-17	2015-12-17	\N	0	0	0	
2211	1ST QUARTER REGIONAL CONFERENCE/WORKSHOP OF PROVINCIAL CITY/MUNICPAL TREASURERS / ASSESSORS AND PRESIDENTS OF MUNICIPAL TREASURERS/ ASSESSORS LEAGUE REGION III	MANAGERIAL	BUREAU OF LOCAL GOVERNMENT FINANCE III, DEPARTMENT OF FINANCE 		573	\N	2015-04-22	2015-04-24	\N	0	0	0	MANAGERIAL
14866	SERIES OF SEMINAR	\N		\N	0	\N	2015-08-28	2015-08-28	8	0	0	0	 
2212	3RD QUARTER REGIONAL CONFERENCE/ WORKSHOP OF PROVINCIAL/CITY/MUNICPAL TREASURERS ASSESSORS AND PRESIDENTS OF MUNICAPAL TREASURERS/ASSESSORS LEAGUE REGION III	MANAGERIAL 	BUREAU OF LOCAL GOVERNMENT FINANCE III, DEPARTMENT OF FINANCE 		573	\N	2015-09-29	2015-09-30	\N	0	0	0	MANAGERIAL 
2213	4TH QUARTER REGIONAL CONFERENCE/WORKSHOP OF PROVINCIAL/CITY/MUNICIPAL TREASURES/ASSESSORS AND PRESIDENTS OF MUNICIPAL TREAURER/ ASSESSORS LEAGUE, REGION III	MANAGERIAL	BUREAU OF LOCAL GOVERNMENT FINANCE III, DEPARTMENT OF FINANCE 		573	\N	2015-12-09	2015-12-10	\N	0	0	0	MANAGERIAL
2214	1ST SEMESTER REGIONAL CONFERENCE/WORKSHOP OF PROVINCIAL/CITY/MUNICIPAL TREASURERS/ASSESSORS AND PRESIDENTS OF MUNICIPAL TREASURERS/ASSESSORS LEAGUE, REGION III	MANAGERIAL	BUREAU OF LOCAL GOVERNMENT FINANCE III, DEPARTMENT OF FINANCE 		573	\N	2016-07-21	2016-07-22	\N	0	0	0	MANAGERIAL
2215	RE-ORIENTATION OF PROCUREMENT PROCESS PROCESS OF PRDP	SUPERVISORY	DEPARTMENT OF AGRICULTURE - PHILIPPINE RURAL DEVELOPMENT PROJECT UNDER REGIONAL PROJECT COORDINATION OFFICE III		573	\N	2016-10-05	2016-10-05	\N	0	0	0	SUPERVISORY
2216	PICPA 71ST ANNUAL NATIONAL CONVENTION	TECHNICAL	PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS (PICPA)		573	\N	2016-11-24	2016-11-26	\N	0	0	0	TECHNICAL
2593	Robinson Helicopter Safety Course		Robinson Company		2053	\N	2014-09-01	2014-09-04	\N	0	0	0	
2594	Robinson Helicopter Safety 		Robinson Company 		2053	\N	2018-10-01	2018-10-04	\N	0	0	0	
2606	SEMINAR ON CTRP		BIR - NATIONAL OFFICE 		2054	\N	1997-03-15	1997-03-17	\N	0	0	0	
12188	Radio Communication Registration and Licensing 		NTC and GSO		1695	\N	2017-08-01	2017-08-01	\N	0	0	0	
870	Internet of Things (IoT)		MIS, Subic Bay Metropolitan Authority		1978	\N	2016-10-21	2016-10-21	\N	0	0	0	
871	Building Automation Design Concept		CICT, BPSU - Main Campus		1978	\N	2016-10-21	2016-10-21	\N	0	0	0	
988	DEMO COOKING		SCHOOLS DIVISION OFFICE 		1986	\N	2015-11-24	2015-11-24	\N	0	0	0	
822	Lecture Forum on Emerging Trends in Social Work Practice 		Don Honorio Ventura Technological State University (DHVTSU)Bacolor, Pampanga 		557	\N	2014-09-12	2014-09-12	\N	0	0	0	
823	That Thing Called Social Work 		University of the Philippines College of Social Work and Community Development 		557	\N	2015-11-04	2015-11-04	\N	0	0	0	
824	Social Workers Training on Basic Counseling using Filipino Therapeutic Cards 		Center for the Prevention and Treatment of Child Sexual Abuse (CPTCSA)Inc. 		557	\N	2018-08-29	2018-08-31	\N	0	0	0	
825	Training of Trainors for the LGU of Bataan and DEPED Bataan 		ABS-CBN Bantay Bata 163		557	\N	2017-12-05	2017-12-05	\N	0	0	0	
452	Seminar Workshop on Leave Administration Course		CSRO 3, San Fernando, Pampanga		508	\N	2015-04-07	2015-04-08	\N	0	0	0	
453	Orientation Seminar on the Procedures for the Disbursement		Provincial Government of Bataan		508	\N	2014-05-09	2014-05-09	\N	0	0	0	
454	Strategic Performance Management System		CSRO 3, San Fernando, Pampanga		508	\N	2013-10-29	2013-10-29	\N	0	0	0	
455	Basic Computer Training		CSRO 3, San Fernando, Pampanga		508	\N	2012-11-06	2012-11-07	\N	0	0	0	
456	Seminar-Workshop on PMS-OPES Track II		CSRO 3, San Fernando, Pampanga		508	\N	2009-01-20	2009-01-22	\N	0	0	0	
457	Seminar on Performance Management		CSC-Field Office		506	\N	2013-10-29	2013-10-29	\N	0	0	0	
2607	EXAMINERS ON THE JOB TRAINING 		REGIONAL OFFICE - REVENUE REGION 4, SAN FERNANDO, PAMPANGA		2054	\N	1998-02-02	1998-06-30	\N	0	0	0	
2608	EVAT-IVAT LAW 		PAMPANGA CONVENTION CENTER 		2054	\N	1998-10-29	1998-10-29	\N	0	0	0	
458	Training on Appointment Preparation		Civil Service Commission		506	\N	2014-02-20	2014-02-21	\N	0	0	0	
460	Communication Development Training (Oral & Written)		PHRMO/PGO		506	\N	2016-11-03	2016-11-10	\N	0	0	0	
2015	Seminar on Doing Better Business During Tough Times / New Regulations on Withholding Tax and Enterpreneurship		2006 First PICPA Central Luzon Regional Conference 		19	\N	2006-03-04	2006-03-04	\N	0	0	0	
2016	Seminar on Government Application Software / Government Appropriations and Accounting Management System		Systems and Plan Integrator Development Company and IBM Philippines Incorporated 		19	\N	2003-12-08	2003-12-08	\N	0	0	0	
2017	Seminar on Comprehensive Withholding Tax and Philippine Accounting Standard		Philippine Institute of Certified Public Accountants - Bulacan Chapter 		19	\N	2005-12-02	2005-12-02	\N	0	0	0	
2018	Seminar on Stress Management and Self Empowerment 		Philippine Institute of Certified Public Accountants - Bataan Chapter		19	\N	2003-03-28	2003-03-28	\N	0	0	0	
2019	Seminar on the Updates on New Government Accounting System		Commission on Audit - Cluster II		19	\N	2002-10-14	2002-10-15	\N	0	0	0	
502	Update on Infectious Diseases		Medecon International Events		1942	\N	2017-05-05	2017-05-05	\N	0	0	0	
503	IP SUMMIT 2017 Meeting 		Dr. Mamoun Theyabat		1942	\N	2017-02-23	2017-02-25	\N	0	0	0	
504	IVT - Training				1942	\N	2012-04-01	2012-04-01	\N	0	0	0	
505	Standard Training Program		Philippine Red Cross		1942	\N	2012-03-01	2012-03-01	\N	0	0	0	
506	Basic Life Supportr Training		Philippine Red Cross		1942	\N	2012-03-01	2012-03-01	\N	0	0	0	
508	Leadership Training Program		Red Cross Youth Chapter		1942	\N	2011-07-13	2011-07-15	\N	0	0	0	
509	Youth Volunteer Orientation Course		Red Cross Youth Bataan Chapter		1942	\N	2011-07-13	2011-07-15	\N	0	0	0	
510	Leadership Formation Course		Red Cross Youth Bataan Chapter		1942	\N	2011-07-13	2011-07-15	\N	0	0	0	
511	Substance Abuse Prevention Education		Redcross Youth Bataan Chapter		1942	\N	2011-07-13	2011-07-15	\N	0	0	0	
512	HIV and AIDS Prevention 		Redcross Youth Bataan Chapter		1942	\N	2011-07-13	2011-07-15	\N	0	0	0	
515	Basic Occupational Safety and Health Training	BOSH ID	Sophia School for Skills and Development ,INC.		1945	\N	2015-11-17	2015-11-20	\N	0	0	0	BOSH ID
516	Instrumentation and Control Servicing Course NCIII	Certificate	Sophia School for Skills and Development, INC.		1945	\N	2016-03-28	2016-04-22	\N	0	0	0	Certificate
518	Leadership Training Program 		Sumitomo Wiring System Corporation		1949	\N	2014-12-15	2014-12-15	\N	0	0	0	
519	Nurses Committed to Life		Bataan Peninsula State University		1949	\N	2011-03-20	2011-03-20	\N	0	0	0	
520	Nurse Gearing Up Towards Next Level		Bataan Peninsula State University		1949	\N	2011-02-20	2011-02-20	\N	0	0	0	
521	Training of Trainors on the WHO CGS for Nutritional Assesment of School Children		Division Office		1950	\N	2018-05-18	2018-05-18	\N	0	0	0	
522	Training of Trainors on Humanitarian Pandemic Preparedness(H2P)		Division Office 		1950	\N	2010-05-24	2010-05-24	\N	0	0	0	
523	Special Program Planning Workshop		Bamban Tarlac		1957	\N	2009-09-05	2009-09-06	\N	0	0	0	
524	Finance Management Course		Tagaytay City		1957	\N	2006-10-25	2006-10-26	\N	0	0	0	
525	Election of the Newly Elected Officer Member		Crown Royal Hotel		1957	\N	2003-04-12	2003-05-13	\N	0	0	0	
526	Updating of Enterprise Human Resource Information System Training Workshop		Division Office		1958	\N	2018-01-31	2018-01-31	\N	0	0	0	
527	Division Seminar-Workshop on the Preparation of Work and Financial Plan for the Calendar Year 2018		Division Office		1958	\N	2017-10-19	2017-10-20	\N	0	0	0	
528	Division Seminar Workshop On Deped Policies on Personnel Action, Records Management and Other Administrative and Finance Services		Division Office		1958	\N	2016-12-05	2016-12-07	\N	0	0	0	
529	LAC Session		Mabatang National High School		1958	\N	2015-09-04	2015-09-04	\N	0	0	0	
532	Seminar Workshop on the Updates of RA 9184 and its Implementing Rules Regulations (IRR)		Division Office		1958	\N	2015-04-20	2015-04-21	\N	0	0	0	
533	Three Day School Based in Service Training (INSET) for Faculty and Staff		Mabatang National High School		1958	\N	2014-10-22	2014-10-24	\N	0	0	0	
534	One-Day Seminar Workshop on the GMIS Web-Based Application System		Department of Budget and Management - Region III		1958	\N	2012-03-13	2012-03-13	\N	0	0	0	
535	Level 3 Training on the Enhanced basic Education Information System (EMBEIS)		Division Office		1958	\N	2011-08-16	2011-08-16	\N	0	0	0	
536	Seminar Workshop on Systematic Training for Effective Parenting 		Dangerous Drug Board		1958	\N	2011-02-08	2011-02-11	\N	0	0	0	
537	Career Guidance Networking and Counseling		Department of Labor and Employment		1958	\N	2010-07-28	2010-07-28	\N	0	0	0	
538	First National Convention of Record officers, Records Custodians, and Record Handlers		Department of Education - National		1958	\N	2009-05-18	2009-05-20	\N	0	0	0	
539	2007 National Textbook Delivery Program Cluster Orientation Workshop		Department of Education - National		1958	\N	2007-10-02	2007-10-02	\N	0	0	0	
540	Briefing/Orientation on Disaster Risk Management and Eathquake Drill		Department of Civil Defense - Region III		1958	\N	2006-12-19	2006-12-19	\N	0	0	0	
541	Seminar on Republic Act no. 9184 adn the Standard Philippine Bidding Documents, Contracts and Forms		Department of Budget and Management - Region III		1958	\N	2006-02-08	2006-02-10	\N	0	0	0	
542	Division Seminar on Workshop on Performance Evaluation System and Civil Service Rules and Regulations		Civil Service Commission/DECS Division of Bataan		1959	\N	2001-02-19	2001-02-21	\N	0	0	0	
543	"Teachers on the Move" Computer Training Program Part III		Provincial Government/DECS Division of Bataan		1959	\N	2002-05-13	2002-05-17	\N	0	0	0	
544	Basic Customer Service Skills Seminar		Civil Service Commission 		1959	\N	2010-04-26	2010-04-27	\N	0	0	0	
545	District Roll-Out on Basic Computer, Internet Literacy and Production of Instructional Video Materials (IVM's) for Elementary School ICT Coordinators and School Heads		District of Samal		1959	\N	2010-09-15	2010-09-17	\N	0	0	0	
546	Seminar Workshop on Teacher Leave		Civil Service Commission		1959	\N	2011-05-31	2011-05-31	\N	0	0	0	
547	One Day Seminar-Workshop on the GMIS Web-Based Application System		Department of Budget and Management Region III		1959	\N	0001-01-01	0001-01-01	\N	0	0	0	
548	Division Re-Orientation Seminar on Personnel Data Management and Processes		Schools Division Office of Bataan		1959	\N	2015-05-26	2015-05-28	\N	0	0	0	
549	Division Seminar-Workshop DepEd Policies on Personnel Action, Records Management adn Other Administrative and Finance Services		Schools Division Office of Bataan		1959	\N	2016-12-05	2016-12-07	\N	0	0	0	
550	Computer Literacy		GSP Building		1962	\N	2018-10-09	2018-10-09	\N	0	0	0	
551	ISO9001-2015		Division Office		1962	\N	2018-01-04	2018-01-04	\N	0	0	0	
552	Updates and Reformation of School Health and Nutrition Program adn Project of SDO Bataan		Sinagtala		1962	\N	2017-05-22	2017-05-23	\N	0	0	0	
553	Computer Training		Cong. Tet Garcia Jr.		1963	\N	1997-09-15	1997-10-15	\N	0	0	0	
554	Teacher's on the Move		Gov. Leonardo B. Roman		1963	\N	2004-02-19	2004-02-23	\N	0	0	0	
826	Affidavit Drafting Workshop on Trafficking in Persons (TIP) for Investigators, Prosecutors and other IACAT Partnerss		Department of Justice (DOJ), Inter-agency Against Trafficking(IACAT), Philippine Society of Criminologist and Criminal Justice Professionals (PSCCJP)Inc.		557	\N	2017-10-24	2017-10-25	\N	0	0	0	
561	Basic Costumer Service Skill Center 		Civil Service Commision		1968	\N	2010-04-15	2010-04-16	\N	0	0	0	
562	iSchools 2007 Computer and Internet Literacy Course		Ms. Lydia A. Pinili/BPSU iSchool Project Manager		1968	\N	2009-11-27	2009-12-01	\N	0	0	0	
563	Inter-High School IT Competition		Eastwoods Professional College, Balanga City Bataan		1968	\N	2008-02-22	2008-02-22	\N	0	0	0	
564	Teaching High School Mathematics through Cooperative Learning		Mrs. Elena F. Samson		1968	\N	2004-12-17	2004-12-18	\N	0	0	0	
565	101ST ANNUAL PHI. DENTAL ASSOCIATION CONVENTION		PDA		1969	\N	2009-09-22	2009-09-27	\N	0	0	0	
566	ANNUAL NADTI CONVENTION		NADTI		1969	\N	2009-05-01	2009-05-01	\N	0	0	0	
567	DEDA CONVENTION		DEDA		1969	\N	2009-04-01	2009-04-01	\N	0	0	0	
568	100TH ANNUAL PHI. DENTAL ASSOCIATION CONVENTION		PDA		1969	\N	2008-04-28	2008-05-02	\N	0	0	0	
569	COMPREHENSIVE 2 DAY ANTI GRAFT AND CORRUPTION PREVENTION SEMINAR		OFFICE OF THE OMBUDSMAN		1969	\N	2007-12-03	2007-12-04	\N	0	0	0	
570	ORIENTATION AND HANDS ON TRAINING OF THE NEWLY DESIGNED NUT. STAT TEMP		POGS		1969	\N	2006-01-10	2006-01-10	\N	0	0	0	
571	PRACTICAL ORHODONTIC GROUP		POGS		1969	\N	2005-09-01	2005-11-01	\N	0	0	0	
6665	PEO Team Effectiveness & Magna Carta For Women Seminar 		Olongapo City		310	\N	2017-10-28	2017-10-28	\N	0	0	0	
572	ADVANCED STRAIGHTWIRE AND PASSIVE KIGATION MECHANIC INTERDISCIPLINARY TREATMENT AND BASIC TEMPOROMANDIBULAR DISORDER TREATMENT		POGS		1969	\N	2005-12-01	2005-12-01	\N	0	0	0	
573	28TH PDA CENTRAL LUZON REGIONAL CONFERENCE 		PDA		1969	\N	2005-11-20	2005-11-20	\N	0	0	0	
574	NADTI CONVENTION		NADTI		1969	\N	2005-10-09	2005-10-09	\N	0	0	0	
575	THE DAMON SYSTEM		POGS		1969	\N	2005-08-21	2005-08-21	\N	0	0	0	
576	DIAGNOSIS AND BASIC STRAIGHTWIRE TREATMENT MECHANICS		POGS		1969	\N	2005-07-01	2005-07-01	\N	0	0	0	
577	EMERGENCY RESCUE AND FIRST AID TRAINING		PHILIPPINE RED CROSS		1969	\N	2004-09-20	2004-09-20	\N	0	0	0	
578	BASIC LIFE SUPPORT AND FIRST AIDE TRAINING		PHILIPPINE RED CROSS		1969	\N	0001-01-01	0001-01-01	\N	0	0	0	
579	Basic Customer Service Skills Seminar 		Civil Service Commision		1970	\N	2010-04-26	2010-04-27	\N	0	0	0	
580	District Roll-Out in Teaching Sining in the Elementary		DepEd-Samal District		1970	\N	2010-08-19	2010-08-21	\N	0	0	0	
581	Dsitrict Roll-Out on Basic Computer, Internet Literacy and Production		Deped-Samal District		1970	\N	2010-09-15	2010-09-17	\N	0	0	0	
582	Seminar Workshop on Appoinment Preparation and other Personnel Actions		Council of Personnel Officers		1974	\N	2006-05-04	2006-05-05	\N	0	0	0	
8258	Manila Expo 2017		Department of Agriculture RFO 6		359	\N	2017-09-07	2017-09-09	\N	0	0	0	
8265	Training Session on Holistic Waste Management		United nations Environment Programme; Regional Resourse Centre for Asia and the Pacific, Global Environment Centre Foundation; City Government of Osaka		358	\N	2015-03-09	2015-03-12	\N	0	0	0	
8266	Training on Writing Technical Articles for Scientific Journals		Department of Environment and Natural Resources - Ecosystems Research and Development Bureau		358	\N	2013-05-14	2013-05-16	\N	0	0	0	
9375	IV Therapy Updates		ANSAP/VL Makabali Hospital		2176	\N	2018-02-20	2018-02-23	\N	0	0	0	
827	Justice that Heals: Restorative Justice on Today's Realities and Future Responsibilities 		System Plus College Foundation, angeles City 		557	\N	2017-02-17	2017-02-17	\N	0	0	0	
828	Katarungan para kay Juana: Forum on Court Social Workers in Criminal Justice System 		University of the Philippines College of Social Work and Community Development 		557	\N	2016-05-05	2016-05-05	\N	0	0	0	
829	Lecture Forum on Community Organizing on Social Work Practice 		Don Honorio Ventura Technological State University, (DHVTSU), Bacolor, Pampanga		557	\N	2016-02-12	2016-02-12	\N	0	0	0	
830	Local and Inter-Country Adoption 		Don Honorio Ventura Technological State University, (DHVTSU), Bacolor, Pampanga		557	\N	2016-02-12	2016-02-12	\N	0	0	0	
831	Case Management for Trafficked Persons		Don Honorio Ventura Technological State University, (DHVTSU), Bacolor, Pampanga		557	\N	2016-01-22	2016-01-22	\N	0	0	0	
832	Parole and Probation Administration: A Lecture Forum 		Don Honorio Ventura Technological State University, (DHVTSU), Bacolor, Pampanga		557	\N	2016-01-22	2016-01-22	\N	0	0	0	
833	Regional Inter-Agency Committee on Women and Children Planning Worshop		Department of Social Welfare and Development, Regional Office III		557	\N	2018-11-14	2018-11-16	\N	0	0	0	
834	Lecture Forum on International Social Work 		Don Honorio Ventura Technological State University (DHVTSU), Bacolor Pampanga 		557	\N	2015-02-06	2015-02-06	\N	0	0	0	
835	Gender and Development Seminar 		Don Honorio Ventura Technological State University (DHVTSU), Bacolor, Pampanga		557	\N	2014-09-18	2014-09-18	\N	0	0	0	
12189	Water Search and Rescue "WASAR" Training				1581	\N	2017-02-20	2017-02-24	\N	0	0	0	
12190	National Telecommunications Commission				1581	\N	2017-08-10	2017-08-10	\N	0	0	0	
719	Seminar on Fair Trade Laws cum Consumer Awareness & Responsive Seminar for Senior Citizens		Department of Trade and Industry 		555	\N	2017-09-26	2017-09-26	\N	0	0	0	
720	LDS Wheelchair Training Course		Latter Day Saints of Charities 		555	\N	2017-08-29	2017-08-29	\N	0	0	0	
721	How to Start a Small Business		Department of Trade and Industry 		555	\N	2017-03-22	2017-03-22	\N	0	0	0	
722	Orientation Re 9994 or the Expanded Senior Citizens Act of 2010		Department of Social Welfare & Development RO.III		555	\N	2017-02-24	2017-02-24	\N	0	0	0	
723	Training on Clip Information Management System cun Orientation - Seminar on CSPP-Meal & LRPIS		Department of Interior Local Government RO.III		555	\N	2016-08-02	2016-08-03	\N	0	0	0	
724	Joint Regional Committee on Disability Affairs Conference 		National Council on Disability Affairs 		555	\N	2015-05-04	2015-05-06	\N	0	0	0	
725	Forum on the Rights of Persons with Disabilities 		Department of Social Welfare and Development RO.III		555	\N	2015-06-03	2015-06-04	\N	0	0	0	
4041	Enhanced Community Immersion Program (ECIP) 				1824	\N	2018-02-16	2018-02-16	\N	0	0	0	
641	Guarding Your Identity: A ata Privacy Act Seminar		Mr. Cleo R. Martinez		500	\N	2019-03-21	2019-03-21	\N	0	0	0	
642	Seminar on Magna Carta for Women / Team Effectiveness		Ms. Rossana P. Verdida		500	\N	2019-03-22	2019-03-22	\N	0	0	0	
726	Program Review Implementation 		Department of Social Welfare & Development RO.III		555	\N	2015-02-11	2015-02-11	\N	0	0	0	
727	Social Marketing of Completed Social Technology Programs		Department of Social Welfare and Development RO.III		555	\N	2014-08-28	2014-08-28	\N	0	0	0	
728	Training on Basic Wheelchair Measurement & Assessment 		Latter day Saints of Charities 		555	\N	2014-05-14	2014-05-16	\N	0	0	0	
729	Philippine Association of Social Workers, Inc. Biennial Convention		Philippine Association of Social Workers Inc. 		555	\N	2012-11-21	2012-11-23	\N	0	0	0	
730	Current Philippine Social Realities: Challenges to Professional Social Work 		Philippine Association of Social Workers, Inc 		555	\N	2010-11-18	2010-11-18	\N	0	0	0	
731	Status of Devolved Municipa / City Social Workers 		Philippine Association of Social Workers, Inc 		555	\N	2010-11-19	2010-11-19	\N	0	0	0	
732	Orientation on the Philippine Registration on Persons with Disabilities 		Department of Health RO. III		555	\N	2009-11-04	2009-11-04	\N	0	0	0	
733	Regional Pre-Congress on Community Based Rehabilitation 		Department of Social Welfare and Development RO.III		555	\N	2009-08-18	2009-08-19	\N	0	0	0	
4042	Radio Communication Registration and Licensing				1824	\N	2017-08-10	2017-08-10	\N	0	0	0	
4043	Capacity Development Proper Grooming and Work Attitude Values Enhancement				1824	\N	2017-09-30	2017-09-30	\N	0	0	0	
4044	Bomb Threat Awareness				1824	\N	2018-04-27	2018-04-27	\N	0	0	0	
4334	TRAINING ON HIV TESTING SERVICE (COUNSELLING AND TESTING)		DEPT OF HEALTH, RO III		2123	\N	2018-09-03	2018-09-28	\N	0	0	0	
4335	REVIEW AND REVISION OF POLICIES AND STANDARDS OF HOSPITAL PHARMACY MANAGEMENT MANUAL FOR CHAPTERS ON FINANCIAL MANAGEMENT AND RISK MANAGEMENT		DOH, HEALTH FACILITY DEVELOPMENT BERAEU & MARIVELES MENTAL HOSPITAL		2123	\N	2018-09-18	2018-09-20	\N	0	0	0	
4336	PRIMARY CARE TRAINING OF ADILT CLIENT WITH HIV INFECTION		DEPTH OF HEALTH, RO III		2123	\N	2018-09-11	2018-09-14	\N	0	0	0	
4337	OPTIMUM OUTCOMES THROUGH MEDICATION SAFETY 3		UNILAB MEDICAL EDICATION & DEVELOPMENT 		2123	\N	2018-07-12	2018-07-12	\N	0	0	0	
4338	ADVANCING THE COMPETENCIES OF PHARMACISTS IN ENSURING MEDICAITON ADHERENCE AND MEDICATION MANAGEMENT FOR THE PATIENTS WITH SYNDROME X MICROBIAL INFECTIONS		PHIL PHARMACISTS ASSN		2123	\N	2018-07-22	2018-07-22	\N	0	0	0	
15385	DIGITAL INNOVATION IN GOVERNMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
872	Simply Genius Business Analytics Solution from SAP		CICT, BPSU - Main Campus		1978	\N	2016-10-21	2016-10-21	\N	0	0	0	
873	Avenues in Investing in IT-Preneurship		CICT, BPSU - Main Campus		1978	\N	2016-10-21	2016-10-21	\N	0	0	0	
734	Training of Trainers in the Implementation of Care and Management of Persons with Disabilities 		Department of Social Welfare and Development R.O III		555	\N	2009-07-28	2009-07-31	\N	0	0	0	
735	Training of Regional Focal Persons & LGU Implementers on Special Drug Education Center 		Department of Social Welfare and Development C.O		555	\N	2007-09-04	2007-09-07	\N	0	0	0	
736	Training/Skills Enchancement in the Management of Children in Conflict with the Law 		Philippine Association of Professional Social Workers & Development 		555	\N	2007-07-25	2007-07-26	\N	0	0	0	
737	Orientation on R.A. 9262 & R.A.9208		Department of Social Welfare & Development R.O III		555	\N	2006-08-29	2006-08-31	\N	0	0	0	
874	ITECH: Connect the Unconnected		CICT, BPSU - Main Campus		1978	\N	2016-11-11	2016-11-11	\N	0	0	0	
875	y4it Research Summit 2017		University of the Philippines Diliman		1978	\N	2017-03-15	2017-03-15	\N	0	0	0	
876	BPSU RESEARCH INVENTION AND EXHIBIT (BRIE)		BATAAN PENINSULA STATE UNIVERSITY		1978	\N	2017-03-22	2017-03-22	\N	0	0	0	
877	PSYCHOLOGICAL FIRST - AID		SCHOOLS DIVISION OFFICE OF BATAAN		1978	\N	2018-09-21	2018-09-21	\N	0	0	0	
878	WORK AND FINANCIAL PLAN 2019		SCHOOLS DIVISION OFFICE OF BATAAN		1978	\N	2018-11-06	2018-11-09	\N	0	0	0	
879	Division Seminar - Workshop on IPED Retooling		SCHOOLS DIVISION OFFICE OF BATAAN		1978	\N	2018-11-15	2018-11-16	\N	0	0	0	
880	Division Orientation on "Bote na lang may Plastik: An SSG/SPG Project"		SCHOOLS DIVISION OFFICE OF BATAAN		1978	\N	2018-11-19	2018-11-20	\N	0	0	0	
881	Division Seminar - Workshop on Division Roll-out on the Career Guidance Planning		Schools Division Office of Bataan		1978	\N	2018-12-05	2018-12-06	\N	0	0	0	
882	Division Seminar - Workshop on Research Congress 2018		Schools Division Office of Bataan		1978	\N	2018-12-14	2018-12-14	\N	0	0	0	
883	TEACHER'S ON THE MOVE COMPUTER LITERACY PROGRAM		PROVINCIAL GOVERNMENT/DEPARTMENT OF EDUCATION		1979	\N	2004-02-19	2004-02-23	\N	0	0	0	
884	COMPUTER TRAINING		PROCLESIA INTERNATIONAL INC.		1979	\N	2002-03-01	2002-06-01	\N	0	0	0	
886	DIVISION ORIENTATION ON OPERATIONAL GUIDELINES ON THE IMPLEMENTATION OF SCHOOL-BASED FEEDING PROGRAM FOR SY 2017-2018		DEPARTMENT OF EDUCATION - BATAAN		1981	\N	2017-09-18	2017-09-18	\N	0	0	0	
887	QUALITY MANAGEMENT SYSTEM AND ISO 9001:2015 FOUNDATION COURSE		DEPARTMENT OF EDUCATION - BATAAN 		1981	\N	2017-09-10	2017-09-10	\N	0	0	0	
888	TRAINING OF TRAINORS ON HANDS ONLY CARDIOPULMONARY RESUCITATION 		PROVINCIAL DISASTER RISK REDUCTION AND MANAGEMENT COUNCIL		1981	\N	2017-12-13	2017-12-13	\N	0	0	0	
12194	Radio Communication Registration and Licensing (RLM Certificate)		National Telecommunication Commission		1599	\N	2017-08-10	2017-08-10	\N	0	0	0	
6663	Learning & Symposium of the New GSIS ACT of 1997 (RA 8291)		GSIS - Dinalupihan		310	\N	1997-09-09	1997-09-09	\N	0	0	0	
2168	Provincial Council for the Welfare of Children Team Enhancement Seminar Workshop	Technical 	Provincial Council For the Welfare of Children		575	\N	2015-03-06	2015-03-06	\N	0	0	0	Technical 
2169	Pagsasanay sa Koresponsiya Opisyal at Implementasyon ng Kautusang Tagapagpaganap Blg 355	Technical	Komisyon sa Wikang Pilipino/Provincial Government of Bataan		575	\N	2015-09-29	2015-09-29	\N	0	0	0	Technical
2170	Orientation/Seminar on Magna Carta of Women (R.A 9710) and Anti-Violence Against Women & Children (R.A 9262)	Technical 	Provincial Government of Bataan and Provincial Population Office 		575	\N	2016-04-15	2016-04-15	\N	0	0	0	Technical 
2171	Strategic Performance Management System for Leaders	Supervisory	Provincial Human Resource Management Office/Civil Service Commission 		575	\N	2016-10-28	2016-10-28	\N	0	0	0	Supervisory
1141	Tax Update on Implementation of Train in 1A, Overview of 1B and Train 2 		Philippine Institute of Certified Public Accountant 		6	\N	2018-11-17	2018-11-17	\N	0	0	0	
1159	WORKSHOP ON WORK & FINANCIAL PLAN 2019		XENIA HOTEL, CLARK FREEPORT ZONE, ANGELES CITY, PAMPANGA		2012	\N	2018-11-06	2018-11-09	\N	0	0	0	
1160	SEMINAR-WORKSHOP ON FINANCIAL MANAGEMENT OPERATIONS MANUAL (FMOM)		LAS CASAS FILIPINA DE ACUZAR, BAAGC, BATAAN		2012	\N	2017-11-22	2017-11-24	\N	0	0	0	
2173	BENCHMARKING ON ISO 9001:2015 PROCESSES AND RISK-BASED THINKING SEMINAR	TECHNICAL	NEOAMCA		574	\N	2018-11-14	2018-11-15	\N	0	0	0	TECHNICAL
890	DEPARTMENT OF EDUCATION BATAAN SCHOOLS DIVISION OFFICE TEAM ENHANCEMENT		DEPARTMENT OF EDUCATION		1981	\N	2018-05-16	2018-05-18	\N	0	0	0	
891	DIVISION ORIENTATION ON SCHOOL-BASED FEEDING PROGRAM (SBFP) FY 2018 		DEPARTMENT OF EDCUATION - BATAAN		1981	\N	2018-06-27	2018-06-27	\N	0	0	0	
892	COMPUTER LITERACY TRAINING OF SCHOOL HEALTH AND NUTRITION UNIT		DEPARTMENT OF EDUCATION		1981	\N	2018-12-11	2018-12-11	\N	0	0	0	
1050	DISTRICT IN SERVICE TRAINING ON GENDER AND DEVELOPMENT		Atty. David		1999	\N	2016-10-27	2016-10-27	\N	0	0	0	
1051	Philippine National Immunization Conference		Philippine Foundation for Vaccination		1939	\N	2018-11-15	2018-11-16	\N	0	0	0	
1052	IMCI Computerized Adaptation Training Tool (ICAT) Basic Training Course		DOH Region Office III		1939	\N	2017-05-22	2017-05-27	\N	0	0	0	
1053	Basic Intravenous Therapy Training Program		Association of Nursing Service Administration of the Philippines, INC		1939	\N	2017-01-23	2017-01-25	\N	0	0	0	
1094	DIVISION EHRIS ROLL-OUT AND TRAINING OF ELEMENTARY, JUNIOR HIGH SCHOOL, SENIOR HIGH SCHOOL, ICT COORDINATORS AND DISTRICT CLERKS		DEPED BATAAN DIVISION OFFICE		2008	\N	2017-05-09	2017-05-10	\N	0	0	0	
1095	DIVISION RE ORIENTATION SEMINAR ON PERSONNEL DATA MANAGEMENT & PROCESSES		DEPED BATAAN-DIVISION OFFICE		2008	\N	2015-08-26	2015-08-28	\N	0	0	0	
6664	Refresher Course & Updates on Material Quality Control in Project Implementation		PEO -  Bataan		310	\N	2006-09-29	2006-09-29	\N	0	0	0	
1161	ORIENTATION ON THE IMPLEMENTATION OF PAYROLL PROCESS		GOLDEN PINE HOTEL, BAGUIO CITY		2012	\N	2017-11-08	2017-11-10	\N	0	0	0	
1162	QUALITY MANAGEMENT SYSTEM & ISO 9001:2015 FOUNDATION COURSE		GSP BATAAN COUNCIL CONFERENCE ROOM, CAPITOL COMPOUND, BALANGA CITY BATAAN		2012	\N	2017-10-09	2017-10-09	\N	0	0	0	
1178	PRE EMPLOYMENT  ORIENTATION SEMINAR		MICROCITY COLLEGE OF BUSINESS AND TEECHNOLOGY NARRA ST., CAPITOL DRIVE, CITY OF BALANGA, BATAAN		2013	\N	2017-03-10	2017-03-10	\N	0	0	0	
1179	14TH YOUTH CONGRESS ON INFORMATION TECHNOLOGY 		SMX CONVENTION CENTER, MANILA		2013	\N	2016-09-26	2016-09-26	\N	0	0	0	
2651	House of Delegates (2018) 		IBP National		2056	\N	2018-01-18	2018-01-20	\N	0	0	0	
1180	INNOVATION THROUGH RADIATING IDEAS: ANTENNAS & INNOVATION		MICROCITY COLLEGE OF BUSINESS AND TECHNOLOGY NARRA ST., CAPITOL DRIVE, CITY OF BALANGA, BATAAN		2013	\N	2018-02-09	2018-02-09	\N	0	0	0	
2609	SEMINAR ON W/TAXE S		LORIE HALL, SBMA 		2054	\N	1999-02-11	1999-02-11	\N	0	0	0	
2610	SEMINAR ON VAP AND WITHOLDING TAXES 		MAX'S RESTAURANT BALANGA CITY		2054	\N	1981-10-05	1981-10-05	\N	0	0	0	
1181	SATELITE LINKS, "A WALKTHOUGH GLOBAL MOBILE PERSONAL COMMUNCIATION THROUGH SATELITE" 		BHMC-"GYMNATORIUM' BATAAN HEROES MEMORIAL COLLEGE ROMAN SUPER HIGHWAY BALANGA CITY, BATAAN		2013	\N	2014-08-23	2014-08-23	\N	0	0	0	
1182	GEARING ENGINEERS FOR GLOBAL STANARD ON QUALITY, SAFETY ADN ENVIRONMENT: A PRIMER ON ISO 9001:2008		AUDIO VISUAL ROOM, BATAAN PENINSULA STATE UNIVERSITY, MAIN CAMPUS		2013	\N	2014-07-26	2014-07-26	\N	0	0	0	
1183	SATELLITE COMMUNICATION AND EcE'S AS FUTURE SOFTWARE ENGINEERS		OLONGAPO CITY CONVENTION CENTER OLONGAPO CITY ZAMBALES		2013	\N	2013-07-27	2013-07-27	\N	0	0	0	
1184	20-Day Computer Literacy Program for the Parents of Orani National High School		Orani National High School Main		2014	\N	2008-07-21	2008-08-15	\N	0	0	0	
1185	Web Development Training		ISchool-Com.on Information and Communication Tech./BPSU Orani		2014	\N	2008-05-12	2008-05-16	\N	0	0	0	
1186	5-Day Specialized Training in Voice Lesson (Pop Music)		Sentro ng Bataan Sining at Kultura		2014	\N	2014-11-22	2014-12-06	\N	0	0	0	
6666	Seminar on Anti - Trafficing in Person & Anti Violence Against Women & Their Children		Olongapo City		310	\N	2018-03-11	2018-03-12	\N	0	0	0	
1187	District Training for Untrained Teachers on Contemporary Teaching Strategies/Multimedia Instruction		Orani South Elementary School		2014	\N	2013-12-11	2013-12-13	\N	0	0	0	
1188	Mini Dental Implant		Centro Eskolar University		2015	\N	2004-03-01	2005-02-02	\N	0	0	0	
1189	Lecture Forum on Triciosan: Adjunct To Periodontal Therapy		Centro Eskolar University		2015	\N	2004-02-02	2004-02-02	\N	0	0	0	
1190	COMPASS Community Outreach Program		Centro Eskolar University		2015	\N	2004-03-01	2004-03-01	\N	0	0	0	
1192	Annual Dental Mini Convention 2001		Centro Eskolar University		2015	\N	2001-06-01	2001-06-01	\N	0	0	0	
8259	First Region 3 Kanek Congress 		Kapampangan Development Foundation and Department of Agriculture Regional Field Office III		47	\N	2016-08-01	2016-08-01	\N	0	0	0	
8260	Training on Good Agricultural Practices (GAP) For Mango 		Agricultural Training Institute 		47	\N	2014-08-11	2014-08-13	\N	0	0	0	
8261	Training Course on Coffee Production 		Agricultural Training Institute 		47	\N	2013-12-16	2013-12-18	\N	0	0	0	
8262	Training on Sustainable Coffee Production and Post Production 		Department of Agriculture Regional Field Office III		47	\N	2013-11-06	2013-11-07	\N	0	0	0	
1249	Banko, Negosyo at Gobyerno: Balikatan Tungo sa Kaunlaran 		Philippine Institute of Certified Public Accountant - Bataan Chapter 		8	\N	2011-07-09	2011-07-09	\N	0	0	0	
1250	Updates on Philhealth Benefits and Membership, BIR Tax Updates, Code of Ethics, Labor Standards and Labor Relation 		Philippine Institute of Certified Public Accountant - Bataan Chapter 		8	\N	2008-11-07	2008-11-07	\N	0	0	0	
1251	District Seminar on the Implementing Rules and Regulaations of Rep.Act (9504)		Bureau of Internal Revenue RDO.20 Balanga City, Bataan 		8	\N	2008-10-08	2008-10-08	\N	0	0	0	
1252	2006 1st PICPA Central Luzon Regional Conference 		Philippine Institute of Certified Public Accountant- Bataan Chapter 		8	\N	2006-03-04	2006-03-04	\N	0	0	0	
1253	Comprehensive Withholding Tax and Philippine Accounting Standard		Philippine Institute of Certified Public Accountant- Bataan Chapter 		8	\N	2005-12-02	2005-12-02	\N	0	0	0	
1054	WORK ATTITUDES ADN VALUES ENHANCEMENT TRAINING		SAYO-DENKI PHILS. INC.		2001	\N	2007-05-28	2007-05-28	\N	0	0	0	
1055	SEMINAR ON CHEMICAL SAFETY		DEPARTMENT OF LABOR AND EMPLOYMENT		2001	\N	2009-10-16	2009-10-16	\N	0	0	0	
1056	UNLEASH THE TRAINER IN YOU: TRAIN THE TRAINER WORKSHOP		PRIMES CENTERS-SANYO DENKI PHILS. INC.		2001	\N	2009-11-20	2009-11-21	\N	0	0	0	
1057	LEADERSHIP SKILLS TRAININGS 		PRIMES CENTERS-SANYO DENKI PHILS. INC.		2001	\N	2011-04-14	2011-04-15	\N	0	0	0	
1058	DIVISION SEMINAR-WORKSHOP ON DEPED POLICIES ON PERSONNECL ACTION, RECORDS MANAGEMENT AND TOHER ADMINISTRATIVE AND FINANCE SERVICES FOR NEWLY APPOINTED OSDS, SENIOR HIGH SCHOOL AND PLANTILLA PERSONNEL		DEPED-BATAAN		2001	\N	2016-12-05	2016-12-07	\N	0	0	0	
1059	SEMINAR ON TAXATION FOR MSMEs		DEPARTMENT OF TRADE AND INDUSTRY PHILS.		2001	\N	2018-06-26	2018-06-26	\N	0	0	0	
1060	TRAINING AND DEVELOPING LEADERSHIP AND MANAGEMENT SKILLS FOR EMPOWERMENT OF SCHOOL'S INTERNAL STAKEHOLDERS AND STRATEGIC PLANNING		LUAKAN NATIONAL HIGH SCHOOL		2001	\N	2018-09-20	2018-09-22	\N	0	0	0	
12195	Flepowphil National Conference and Planning Workshop	Technical	Flepowphil		528	\N	2019-02-26	2019-02-26	24	0	0	0	Technical
12196	Annual Scientific Conference	Technical	PPA		528	\N	2019-02-18	2019-02-19	16	0	0	0	Technical
12197	Integrity Self Assessment Tool (ISAT) Orientation	Managerial	Logic Network		528	\N	2019-02-14	2019-02-14	8	0	0	0	Managerial
12198	Policy Development and Advocacy Training for Local Population Offices	Managerial	PLCPD		528	\N	2018-07-09	2018-07-13	40	0	0	0	Managerial
12199	Mainstreaming GAD Using the HGDG Tool	Technical	GAD Dept Quezon Province		528	\N	2018-09-03	2018-09-05	16	0	0	0	Technical
12200	Population and Development Coaching and Monitoring	Supervisory	POPCOM Region 3		528	\N	2017-03-13	2017-03-15	24	0	0	0	Supervisory
12201	Orientation and Information on Service Deliver Networks	Managerial	POPCOM Region 3		528	\N	2017-02-15	2017-02-15	8	0	0	0	Managerial
12202	Film Making Orientation (AHD)	Technical	POPCOM Region 3		528	\N	2016-06-14	2016-06-15	16	0	0	0	Technical
12203	Supervisory Development Course Track 2	Supervisory	CSC3		528	\N	2016-11-15	2016-11-17	24	0	0	0	Supervisory
12204	Shape Validation and Pre Test Workshop	Technical	POPCOM 3		528	\N	2016-03-08	2016-03-19	24	0	0	0	Technical
12205	Strategic Planning Workshop	Technical	POPCOM Region 3		528	\N	2015-12-06	2015-12-08	24	0	0	0	Technical
12206	Consultative Workshop to Clarify Operational 	Technical	POP		528	\N	2015-10-13	2015-10-15	24	0	0	0	Technical
12207	FLEPOWPHIL Nationa Conference	Managerial	POPCOM		528	\N	2015-04-22	2015-04-24	24	0	0	0	Managerial
12208	Continual Gender Mainstreaming in GrassRoots	Technical			528	\N	2015-03-25	2015-03-27	24	0	0	0	Technical
12209	Orientation on the Prorcedures for the Disbursement Transaction of PGB	Technical			528	\N	2014-05-09	2014-05-09	8	0	0	0	Technical
12210	Katropa Orientation	Technical			528	\N	2014-05-26	2014-05-26	8	0	0	0	Technical
2652	Legal Aid Summit (2017)		IBP Central Luzon 		2056	\N	2017-12-01	2017-12-03	\N	0	0	0	
12211	Facilitators Orientation for U4U	Technical			528	\N	2014-05-31	2014-05-31	8	0	0	0	Technical
12212	YAFFS 4 Desimmination Forum	Technical			528	\N	2014-08-16	2014-08-16	8	0	0	0	Technical
12213	GAD PLanning and Budgeting Workshop	Technical			528	\N	2014-10-07	2014-10-08	24	0	0	0	Technical
969	Division Seminar - Workshop on  DEPED Policies on Personal Action, Records Management and other Administrative and Finance Services for Newly OSDS, Senior High School and Plantilla Personnel	Technical	Villa Amanda Resosr and Restaurant Capitangan, Abucay, Bataan		1980	\N	2016-12-05	2016-12-07	\N	0	0	0	Technical
1061	INSET ON DEVELOPING INSTRUCTIONAL AND MANAGEMENT SKILLS OF TEACHERS AND HEAD TEACHERS FOR IMPROVED LEARNING OUTCOMES AND IPCRF MIDYEAR REVIEW 		LUAKAN NATIONAL HIGH SCHOOL		2001	\N	2018-10-22	2018-10-26	\N	0	0	0	
12214	7th Asia Pacific Conference on ASRH	Managerial			528	\N	2014-01-21	2014-01-24	24	0	0	0	Managerial
1134	User's Basic Training on General Accounting and Auditing System 		Geodata Solutions Inc. 		6	\N	2017-10-10	2017-10-10	\N	0	0	0	
1135	AGAP Convention Seminar: Transforming the Government Financial Sector in the ERA of Asian Integratiom		Association of Government Accountants of the Philippines 		6	\N	2017-10-18	2017-10-21	\N	0	0	0	
982	Risk-based Thinking Training (ISO 9001:2015)		NEO AMCA Innovative Solutions Corporation		560	\N	2018-11-15	2018-11-15	\N	0	0	0	
983	ISO 9001:2015 Internal Quality Audit Seminar 		NEO AMCA Innovative Solutions Corporation		560	\N	2017-08-30	2017-08-31	\N	0	0	0	
12215	Continual Gender Mainstreaming in Grassroots	Managerial	DILG Region 3		528	\N	2015-03-25	2015-03-27	24	0	0	0	Managerial
984	Internal Quality Auditors Enhancement Training 		NEO AMCA Innovative Solutions Corporation		560	\N	2018-08-29	2018-08-29	\N	0	0	0	
1138	Seminar on Tax Update - Tax Acceeration for Inclusion or TRAIN		Asian Institute of Taxation 		6	\N	2018-03-24	2018-03-24	\N	0	0	0	
1139	Luzon Geographical Area Office Conference 		Philippine Institute of Certified Public Accountants		6	\N	2018-06-08	2018-06-09	\N	0	0	0	
1140	AGAP Convention Seminar: Maginhawa, Matatag at Panatag na Buhay: Ambisyon Nating Tunay 		Association of Government Accountants of the Philippines 		6	\N	2018-10-17	2018-10-20	\N	0	0	0	
989	DEWORMING PROGRAM OF DEPARTMENT OF HEALTH TOGETHER WITH DEPARTMENT OF EDUCATION BALANGA CITY		SCHOOLS DIVISION OFFICE 		1986	\N	2015-07-23	2015-07-23	\N	0	0	0	
990	UPDATES AND REFORMATION OF SCHOOL HEALTH AND NUTRITION PROGRAM AND PROJECT OF SDO BATAAN SY 2017-2018		SINAGTALA RESORT		1986	\N	2017-05-22	2017-05-23	\N	0	0	0	
991	COMPUTER LITERACY		GIRLSCOUT BUILDING		1986	\N	2018-10-09	2018-10-09	\N	0	0	0	
992	ISO 9001-2015		SCHOOL DIVISION OFFICE		1986	\N	2018-04-18	2018-04-18	\N	0	0	0	
993	TEACHER ON THE MOVE		DEPED BATAAN		1992	\N	2002-04-05	2002-08-10	\N	0	0	0	
994	DIVISON PROGRAM CONFERENCE ON PERSONNEL MATTER		DEPED BATAAN		1992	\N	2003-06-02	2003-06-02	\N	0	0	0	
995	TEACHER ON THE MOVE TRAINING PROGRAM PART V		DEPED BATAAN		1992	\N	2004-04-29	2004-05-08	\N	0	0	0	
996	2ND DIVISION TRAINING FOR UNTRAINER PRE SCHOOL TEACHERS		DEPED BATAAN		1992	\N	2010-04-08	2010-05-08	\N	0	0	0	
997	MEETING WITH THE BIR ON THE UPDATE OF TAX EXEMPTION OF PERSONNEL		DEPED BATAAN		1992	\N	2010-05-16	2010-05-16	\N	0	0	0	
998	ONE DAY SEMINAR ON THE IMPLEMENTATION OF THE ELECTRONIC UPDATING PERSONNEL SERVICES		DEPED BATAAN		1992	\N	2007-08-07	2007-08-07	\N	0	0	0	
999	RECONCILIATION OF PERSONNEL RECORDS IN PUBLIC SCHOOL		DEPED BATAAN		1992	\N	2008-01-02	2008-01-02	\N	0	0	0	
8263	3 Day Training of Trainers (TOT) on Good Agricultural Practices (GAP) for fruits & vegetables for local persons of high value crops development program (hvcdp) in region III		Agricultural Training Institute 		47	\N	2013-08-28	2013-08-30	\N	0	0	0	
8264	Training - Worshop on Values formation and team building 		Office of the Provincial Agriculturist 		47	\N	2013-03-07	2013-03-08	\N	0	0	0	
1108	3 DAY BASIC IV THERAPY TRAINING PROGRAM		PHILIPPINE NURSES ASSOCIATION INC./BATAAN PROVINCIAL HOSPITAL		2010	\N	2012-11-30	2012-12-02	\N	0	0	0	
1109	EMERGENCY MEDICAL FIRST RESPONDER 		BUREAU OF FREE PROTECTION SAMAL FIRE STATION		2010	\N	2013-01-18	2013-10-23	\N	0	0	0	
1110	MPOWERT TAINING		PROVINCIAL HEALTH OFFICE		2010	\N	2014-10-02	2014-10-03	\N	0	0	0	
1111	TRAINING ON SMOKING CESSATION		DEPARTMENT OF HEALTH REGIONAKL OFFICE III		2010	\N	2014-11-04	2014-11-05	\N	0	0	0	
1112	MPOWER TRAINING		DEPARTMENT OF HEALTH REGIONAL OFFICE III		2010	\N	2015-08-19	2015-08-21	\N	0	0	0	
1113	PANTAWID PAMILYANG PILIPINO PROGRAM		DEPARTMENT OF SOCIAL WELFARE AND DEVELOPMENT FIELD OFFICE III		2010	\N	2016-04-26	2016-04-26	\N	0	0	0	
1114	BASIC OCCUPATIONAL SAFETY ADN HEALTH 		HSE INTERNATIONAL CONSULTANCY HEALTH SAFETY & ENVIRONMENT		2010	\N	2017-03-03	2017-03-06	\N	0	0	0	
1115	MUNICIPAL CHILD PROTECTION TEAM BUILDING AND PLANNING		MUNICIPALITY OF SAMAL		2010	\N	2017-07-26	2017-07-27	\N	0	0	0	
1116	DIVISION ORIENTATION ON OPERATIONAL GUIDELINES ON THE IMPLEMENTATION OF SCHOOL BASED FEEDING PROGRAM SY 2017-2018		SCHOOLS DIVISION OFFICE OF BATAAN		2010	\N	2017-09-18	2017-09-18	\N	0	0	0	
1118	HANDS ONLY CARDIOPULMONARY RESUSCITATION TRAINING OF TRAINORS		BATAAN PROVINCIAL DISASTER & RISK REDUCTION MANAGEMENT COUNCIL		2010	\N	2017-12-13	2017-12-13	\N	0	0	0	
1119	STRATEGIC PLANNING AND FINALIZATION OF PROGRAMS AND PROJECT OF SHN		SCHOOLS DIVISION OF BATAAN		2010	\N	2018-01-24	2018-01-25	\N	0	0	0	
1120	FINANCIAL LITERACY PROGRAM FOR SDO BATAAN PERSONNEL		SCHOOLS DIVISION OF BATAAN		2010	\N	2018-02-27	2018-02-27	\N	0	0	0	
1121	DIVISION ORIENTATION ON SCHOOL BASED FEEDING PROGRAM FY 2018		SCHOOLS DIVISION OF BATAAN		2010	\N	2018-06-27	2018-06-27	\N	0	0	0	
1122	OVERCOMING THE ROADBLOCKS IN INFUSION THERAPY: PROMOTING SAFE AND QUALITY PRACTICES 		INFUSION NURSES SOCIETY OF THE PHILIPPINES/ANSAP		2010	\N	2018-07-20	2018-07-20	\N	0	0	0	
1123	DIVISION SEMINAR -WORKSHOP ON PSYCHOLOGICAL FIRST AID		SCHOOLS DIVISION OF BATAAN		2010	\N	2018-11-07	2018-11-07	\N	0	0	0	
12221	GAD Capacity Building Activity for GAD Local Government Unit	Supervisory	Provincial Commissionon Women/Co Body		529	\N	2019-03-07	2019-03-08	24	0	0	0	Supervisory
1326	Computer Literacy Training of School Health and Nutrition Unit		GSP Building		2041	\N	2018-11-12	2018-11-12	\N	0	0	0	
12222	FLEPOWPHIL National Conference 		POPCOM/FLEPOWPHIL		529	\N	2019-02-26	2019-02-28	24	0	0	0	
12223	Population of Dev't Summit		POPCOM Region III		529	\N	2018-11-27	2018-11-28	16	0	0	0	
12224	First National Family Plannin COnference		POPCOM Region III		529	\N	2016-11-02	2016-11-02		0	0	0	
12225	Orientation on Gender Dev't		POPCOM Region III		529	\N	2016-05-02	2016-05-03	16	0	0	0	
1125	ESSENTIAL INTRAPARTUM AND NEW BORN CARE		PHILIPPINE PRIMARY CARE STUDIES		2010	\N	2018-11-19	2018-11-20	\N	0	0	0	
8947	Administration Of Appropirate Drugs Within ACLS Algorithms		CPR Pro Medical Training and Learning Institute		1133	\N	2016-03-25	2018-03-25		0	0	0	
10399	SEMINAR/WORKSHOP ON CONTRACT MANAGEMENT AND CONSTRUCTION SUPERVISION (CMCS)		PONTEFINO HOTEL, BATANGAS DILG		970	\N	2018-06-04	2018-06-08	40	0	0	0	
10400	WORKSHOP ON STAAD PRO, BENTLY PRODUCT PRESENTATION 		DILG-OPDS 		970	\N	2018-02-12	2018-02-12	8	0	0	0	
9763	Basic Custody and Security of Personnel		National Archives of the Phils.		683	\N	2009-02-21	2009-02-21	\N	0	0	0	
9769	Rapid Damage Assessment and Needs Analysis Training Course		OCDR 3		268	\N	2017-12-05	2017-12-07	\N	0	0	0	
4545	NEUROLOGY SEMINAR		PHILIPPINE NEUROLOGY ASSOCIATION		2134	\N	2016-08-16	2016-08-18	\N	0	0	0	
1214	Basic / Advance Written and Oral Communication with Powerpoint Presentation		Provincial Government of Bataan 		7	\N	2018-04-18	2018-04-19	\N	0	0	0	
1215	Systematic Records Management Seminar / Workshop		Provincial Government of Bataan 		7	\N	2017-07-25	2017-07-26	\N	0	0	0	
1216	Supervisory Development Course (SDC) Track I		Civil Service Commission in cooperation with Provincial Human Resource Management Office 		7	\N	2016-11-15	2016-11-17	\N	0	0	0	
1217	Communication Development Training ( Oral & Written )		Provincial Government of Bataan 		7	\N	2016-11-09	2016-11-10	\N	0	0	0	
1218	Seminar-Workshop on Revised Rules on Administrative Cases in the Civil Service 		Civil Service Commission in cooperation with the Provincial Government of Bataan 		7	\N	2015-10-28	2015-10-29	\N	0	0	0	
1219	Pagsasanay sa Korespondensiya Opisyal at Implementasyong Kautusang Tagapalaganap Blg. 335		Komisyon ng Wikang Filipino at Pamahalaang Lalawigan ng Bataan		7	\N	2015-09-29	0001-01-01	\N	0	0	0	
1221	DIVISION EHRIS ROLLOUT AND TRAINING OF ELEMENTARY, JUNIOR HIGH SCHOOL, SENIOR HIGH SCHOOL, ICT COORDINATORS AND DISTRICT CLERKS		DEPED DIVISION OFFICE OF BATAAN		2021	\N	2017-05-09	2017-05-10	\N	0	0	0	
1222	DIVISION SEMINAR-WORKSHOP ON DEPED POLICIES ON PERSONNEL ACTION, RECORDS MANAGEMENT AND OTHER ADMINISTRATIVE AND FINANCE SERVICES FOR NEWLY APPOINTED OSDS, SENIOR HIGH SCHOOL AND PLANTILLA PERSONNEL		DEPED DIVISION OFFICE OF BATAAN		2021	\N	2016-12-05	2016-12-07	\N	0	0	0	
1223	RE-ORIENTATION SEMINAR ON PERSONNEL DATA MANAGEMENT AND PROCESSES		DEPED DIVISION OFFICE OF BATAAN		2021	\N	2015-08-26	2015-08-28	\N	0	0	0	
1254	Seminar on BIR Tax Update Code of Corporate Governance, Power Dressing for Professional and Self Development		Philippine Institute of Certified Public Accountant- Bataan Chapter 		8	\N	2003-07-24	2003-07-24	\N	0	0	0	
1255	Seminar on Stress Management and Self Development 		Philippine Institute of Certified Public Accountant- Bataan Chapter 		8	\N	2003-03-28	2003-03-28	\N	0	0	0	
1256	Seminar on Latest BIR Issuances Tax Campaigne 2000		Bureau of Internal Revenue RDO 20, Balanga City, Bataan 		8	\N	2000-02-24	2000-02-24	\N	0	0	0	
1257	Seminar on Withholding Taxes 		Taxpayer Assistance Unit Revenue Region No.4 San Fernando, Pampanga		8	\N	1999-02-11	1999-02-11	\N	0	0	0	
1258	Seminar on Withholding Taxes and Salient Features of Rep Act No. 8424 (Tax Reform Act of 1997)		Bureau of Internal Revenue Region No.4 Olongapo City 		8	\N	1998-04-30	1998-04-30	\N	0	0	0	
1259	1994 Annual Update on Withholding Tax, VAT Income Tax & New BIR Laws and Regulation 		Tax Studies 7 Research Center, Shangrila Plaza, Manila		8	\N	1993-04-23	1993-04-23	\N	0	0	0	
2900	ADVANCE CARDIAC LIFE SUPPORT 				2086	\N	2018-01-01	2020-01-01	\N	0	0	0	
10401	SEMINAR/WORKSHOP ON STRATEGIC PLANNING 		MASGUBU, BATANGAS/DILG		970	\N	2017-11-27	2017-11-29	24	0	0	0	
10402	SEMINAR/WORKSHOP ON CONTRACT MANAGEMENT AND CONSTRCUTION SUPERVISION (CMCS)		BUTUAN CITY		970	\N	2017-11-20	2017-11-24	40	0	0	0	
9770	Building Resilient Local Economy in Changing Climate		DILG, LGA		268	\N	2017-09-25	2017-09-27	\N	0	0	0	
9771	Listong Pamayanan Trainers Training		DILG		268	\N	2017-06-14	2017-06-15	\N	0	0	0	
9772	Water Search and Rescue Training		Philippine Coast Guard		268	\N	2017-02-20	2017-02-24	\N	0	0	0	
7247	Workshop on Understanding The ICM Code and ICM System Implemenation and the ICM System Certification Process	Technical	Partnership in Environmental Management for the Seas of the East Asia (PEMSEA)		329	\N	2015-01-28	2015-01-29	16	0	0	0	Technical
7248	Disaster Risk Reduction and Management Capacity Enchancement Project "Community-Based Disaster Risk Reduction and Management Training of Trainers"	Managerial	National Disaster Risk Reduction and Management Council Office of Civil Defense and Japan International Cooperation Agency		329	\N	2014-11-08	2014-11-15	40	0	0	0	Managerial
7249	Training on Applied Geo Tagging Technology Under the Philippine Rural Development Program (PRDP	Skills Training	Department of Agriculture - Philippine Rural Development Program		329	\N	2014-05-28	2014-05-29	16	0	0	0	Skills Training
7250	Program Advocacy ,Sector Assessment and Feasibility Study Preperation Workshop	Technical	Department of Interior and Local Design		329	\N	2014-02-04	2014-02-08	24	0	0	0	Technical
7251	9th Monthly Strategey Review Meeting and Performance Manager and Performance Management Team Building 2018	Skills Training	Office of Strategy Management - Provincial Goverment of Bataan		329	\N	2018-09-28	2018-09-28	8	0	0	0	Skills Training
7252	ISO 9001:2005 Internal Quality Audit	Skills Training	Neo AMCA Innovative Solutions Corporation and Provincial Government of Bataan		329	\N	2018-08-09	2018-08-09	8	0	0	0	Skills Training
9773	Integrated Planning Course on ICS		OCDR 3		268	\N	2016-08-15	2016-08-19	\N	0	0	0	
9777	People's Survival Fund Training Workshop		Global Green Growth Workshop		269	\N	2018-08-30	2018-08-31	\N	0	0	0	
9778	 Rapid Deployment Aftermath Rescue Command Center Trailet Tent Training		Radar Equipment PH		269	\N	2017-02-28	2017-03-02	\N	0	0	0	
9780	Information Education Campaign and CBFEWS Warning and Protocol Training		Department of Science and Technology - Bataan		269	\N	2016-11-23	2016-11-23	\N	0	0	0	
9781	Communication Development Training		Provincial Human Resource Management Office		269	\N	2016-11-09	2016-11-10	\N	0	0	0	
10403	SEMINAR/WORKSHOP ON CONSTRCUTOR PERFORMANCE AND EVALUATION SYSTE,M (CPES)		PARK INN HOTEL, DAVAO/DILG 		970	\N	2017-11-13	2017-11-17	40	0	0	0	
10404	SEMINAR/WRITESHOP ON LAYMANIZING THE GUIDEBOOK/PAQS ON LOCALLY-FUNDED PROJECTS 		THE ICON HOTEL, Q.C/DILG 		970	\N	2017-10-17	2017-10-18	16	0	0	0	
10405	SEMINAR/WRITESHOP ON SIMPLIFYING THE MONITORING TEMPLATES FOR LCOALLY FUNDED PROJECTS 		THE ICON HOTEL, Q.C/ DILG		970	\N	2017-10-17	2017-10-18	16	0	0	0	
2031	Seminar on Gender and Development 		Provincial Government of Bataan 		22	\N	2016-05-27	2016-05-27	\N	0	0	0	
2032	Pre-Employment Orientation Seminar 		Bataan Peninsula State University - Main		22	\N	2013-11-27	2013-11-27	\N	0	0	0	
8267	Gender Sensitivity Training		Department of Environment and Natural Resources - Ecosystems Research and Development Bureau		358	\N	2013-03-18	2013-03-18	\N	0	0	0	
8268	Course on Developing Effective Training Designs		Philippines Society for Training and Development; Philippines Australia Human Resource Organizational Development Facility		358	\N	2012-02-15	2012-02-17	\N	0	0	0	
8269	Mobile Continous Ambient Air Quality Monitoring System On-Site Demo Training				358	\N	0001-01-01	0001-01-01	\N	0	0	0	
8270	27th PIEP National Convention				358	\N	0001-01-01	0001-01-01	\N	0	0	0	
1294	Division Orientation on the Implementation of the Policy and Procedural Guidelines (PPG) on the Cert. Authentification and Verification (CAU) of Basic School Records		Department of Education Division of Bataan		2028	\N	2017-11-27	2017-11-28	\N	0	0	0	
1295	Practice Teaching		Bataan Polytechnic State College		2030	\N	2004-11-16	2005-03-04	\N	0	0	0	
1296	Quality Management System & ISO 9001:2005 Foundation Course		Department of Education		2033	\N	2017-09-10	2017-09-10	\N	0	0	0	
1297	Division Orientation on Operational Guidelines on the Implementation of School-Based Feeding Program		Department of Education		2033	\N	2017-09-18	2017-09-18	\N	0	0	0	
1298	Nutritional Assesment 		Department of Education		2033	\N	2017-05-11	2017-05-11	\N	0	0	0	
1299	Partner's Forum for Scoil Transmitted Helminthiasis Control Program		Department of Education		2033	\N	2016-06-23	2016-06-23	\N	0	0	0	
1300	Disaster Preparedness 		Orion Elementary School		2033	\N	2015-09-01	2015-09-03	\N	0	0	0	
1301	Training Workshop on Child Protection Policy		JEAG MHS		2033	\N	2014-05-27	2014-05-28	\N	0	0	0	
1302	1st Senior BSP & Senior GSP Backyard Camping		JEAG MHS 		2033	\N	2013-10-18	2013-10-20	\N	0	0	0	
1303	Division Re-Orientation Seminar on Personnel Data Management and Process		DepEd Bataan		2035	\N	2015-08-26	2015-08-28	\N	0	0	0	
1304	Division Seminar-Workshop on DepEd Policies on Personnel Action, Records Management and Other Administrative and Finance Services for Newly Appointed OSDS, Senior High Schoo		DepEd Bataan		2035	\N	2016-12-05	2016-12-07	\N	0	0	0	
1306	BANKING OPERATION COLLECTION & REMEDIAL MANAGEMENT 		ADMIRAL HOTEL - MANILA		2036	\N	1984-07-02	1984-07-02	\N	0	0	0	
1307	SEMINAR WORKSHOP ON DISASTER PREPAREDNESS FOR DRRM COORDINATORS		DEPARTMENT OF EDUCATION		2039	\N	2015-09-01	2015-09-03	\N	0	0	0	
1309	DIVISION ORIENTATION ON SCHOOL-BASED PROGRAM		DEPARTMENT OF EDUCATION		2039	\N	2015-09-07	2015-09-07	\N	0	0	0	
1310	DIVISION SEMINAR WORKSHOP ON DEMO COOKING FOR SCHOOL BASED FEEDING PROGRAM		DEPARTMETN OF EDUCATION		2039	\N	2015-11-24	2015-11-24	\N	0	0	0	
1311	REGIONAL ORIENTATION ON COMMUNITY & SCHOOL BASED HARMONIZED MASS DRUG ADMINISTRATION		DEPARTMENT OF HEALTH		2039	\N	2015-12-02	2015-12-04	\N	0	0	0	
1312	ORIENTATION IN THE NATIONAL DEWORMING DAY		DEPARTMENT OF HEALTH		2039	\N	2016-01-20	2016-01-20	\N	0	0	0	
1313	CONSULTATIVE MEETING OF HEALTH & NUTRITION COORDINATORS		DEPARTMENT OF EDUCATION		2039	\N	2016-06-14	2016-06-14	\N	0	0	0	
1314	PARTNERS FORUM FOR STH CONTROL PROGRAM		DEPARTMENT OF HEALTH		2039	\N	2016-06-14	2016-06-14	\N	0	0	0	
1315	DIVISION ORIENTATION ON OPERATIONAL GUIDELINES ON THE IMPLEMENTATION OF SCHOOL BASED FEEDING PROGRAM	 	DEPARTMENT OF EDUCATION		2039	\N	2017-09-18	2017-09-18	\N	0	0	0	 
1317	Regular IV Training Program 		Bataan General Hospital		2041	\N	2012-11-30	2012-12-02	\N	0	0	0	
1318	Basic Life Support for Health Care Providers 		Edgardo O. Tanedo		2041	\N	2014-03-04	2014-03-05	\N	0	0	0	
1319	Advanced Cardiovascular Life Support		Edgardo O. Tanedo		2041	\N	2014-03-06	2014-03-07	\N	0	0	0	
1320	Lactation Management Training		Janet T. Miclat MD		2041	\N	2017-11-10	2017-11-13	\N	0	0	0	
1321	Cardio-Pulmonary Resuscitation (Hands Only)		School Division Office - Bataan		2041	\N	2017-12-13	2017-12-14	\N	0	0	0	
1322	Training of Trainors for LGU of Bataan adn DEPED Bataan		School Division of Bataan		2041	\N	2017-12-15	2017-12-16	\N	0	0	0	
1323	Quality Management System & ISO 9001:2015 Foundation Course		GSP Bataan Council Conference Room, Provincial Capitol Balanga City Bataan		2041	\N	2017-10-09	2017-10-09	\N	0	0	0	
1324	Strategic Planning & Finalization of Programs & Project of SHN		Vista Tala Resort, Orani, Bataan		2041	\N	2018-01-24	2018-01-25	\N	0	0	0	
1325	Division Orientation on School Based Feeding Program FY 2018		Crown Royal Hotel, Balanga City, Bataan		2041	\N	2018-06-27	2018-06-27	\N	0	0	0	
2033	Wireless Intelligent Networking 		The BSCS SD-4 of College of Information and Communication Technology 		22	\N	2013-10-09	2013-10-09	\N	0	0	0	
8271	National Ambient Air Monitoring Conference				358	\N	0001-01-01	0001-01-01	\N	0	0	0	
8272	Training Workshop on GreenHouse has (GHG) Inventory				358	\N	0001-01-01	0001-01-01	\N	0	0	0	
8273	Training on Mainstreaming Green Growth in Development Planning				358	\N	0001-01-01	0001-01-01	\N	0	0	0	
8274	Capacity Building on Urban Planning for Regional Planners				358	\N	0001-01-01	0001-01-01	\N	0	0	0	
8277	Greenhouse Gas Emission Inventory Training and 4th Quarter Bulacan Pampanga Bataan Tarlac Airshed Governing Board Meeting				358	\N	0001-01-01	0001-01-01	\N	0	0	0	
8278	E-Learning Corse on Waste Management in Agribusiness		Asian Productivity Organization Thru the Development Academy of the Philippines		358	\N	2018-12-11	2018-12-14	\N	0	0	0	
8279	Emission inventory Training for LGU		Department of Environment and Natural Resources - Environmental Management Bureau Region III		358	\N	2016-11-23	2016-11-24	\N	0	0	0	
7038	Compliance Seminar on Credit Managemnt		Florentino J. Obana		325	\N	2016-09-03	2016-09-03	\N	0	0	0	
7039	Basic Supervisory Skil Training, San Juan City Metro Manila		Richard D . De DIos		325	\N	2016-08-20	2016-08-20	\N	0	0	0	
8280	Participatory Geodatabasing Exercise in Selected Municipalities of Bataan		Department of Agriculture - Bureau of Soils and Water Management		358	\N	2016-05-24	2016-05-27	\N	0	0	0	
8281	Intensive Training / Workshop on Geographic Information System (GIS)		City Government of Balanga		358	\N	2015-12-15	2015-12-18	\N	0	0	0	
6719	Entrepreneurship and Business Management		PCEDO		258	\N	2017-03-29	2017-03-29	\N	0	0	0	
8282	WACS Data Processing and Finalization / Critiquing of 10-year Solid Wase Management Plan		Department of Environment and Natural Resources - Environmental Management Bureau, National Solid Waste  Management Commission		358	\N	2015-08-12	2015-08-14	\N	0	0	0	
8283	International River Summit		DENR		357	\N	2018-11-22	2018-11-24	\N	0	0	0	
8284	Seminar on MGB Memorandum Circular No. 2018-02		DENR-MGB Region III		357	\N	2018-09-04	2018-09-05	\N	0	0	0	
8285	Seminar on Sustainable Management of Ground Resources		Provincial Government of Bataan		357	\N	2018-04-12	2018-04-12	\N	0	0	0	
8286	MMT Capacity Building on Environment Quality Monitoring		GN Power Corp.		357	\N	2017-12-14	2017-12-15	\N	0	0	0	
8287	Mobile Continous Ambient Air Quality Monitoring System		BP Integrated Technologies		357	\N	2017-11-27	2017-11-28	\N	0	0	0	
8288	Regional Consultation on Small Scale Mining		DENR-MGB Region III		357	\N	2017-11-20	2017-11-20	\N	0	0	0	
8289	Water Quality Checker, Aquareed Model AP800 Orientation		Provincial Government of Bataan		357	\N	2017-03-08	2017-03-08	\N	0	0	0	
8290	Gender and Development Seminar		Provincial Government of Bataan-Environment Natural Resources Office		357	\N	2016-12-19	2016-12-20	\N	0	0	0	
1348	SEMINAR IN DEALING WITH PROSPECTS AND CUSTOMERS		ROYCE APPLIANCE SALES CORP.		2043	\N	2002-02-06	2002-02-06	\N	0	0	0	
1349	THEORITICAL AND PRACTICAL TRAINING (SALES SUPERVISOR)		VOLT HAROLD MARKETING CORP.		2043	\N	2006-05-05	2006-05-05	\N	0	0	0	
1350	SCHOOL BUDGET PREPARATION FOR CY 2016		SCHOOLS DIVISION OFFICE 		2043	\N	2015-11-11	2015-11-11	\N	0	0	0	
1351	DIVISION RE-ORIENTATION SEMINAR ON PERSSONNEL DATA MANAGEMENT AND PROCESS 		SCHOOLS DIVISION OFFICE 		2043	\N	2015-08-26	2015-08-28	\N	0	0	0	
1353	DIVISION EHRIS ROOLOUT AND TRAINING OF ELEMENTARY, JUNIOR HIGH SCHOOL, SENIOR HIGH SCHOOL ICT COORDINATORS AND DISTRICT CLERKS		SCHOOL DIVISION OFFICE 		2043	\N	2017-05-10	2017-05-10	\N	0	0	0	
2034	11th Philippine Youth Congress on Information Technology		University of the Philippines Information Technology Training Center		22	\N	2013-09-18	2013-09-18	\N	0	0	0	
2035	The Art of Voice Acting in Computer Games and Mobile Applications		The BSIT NW-4A of College of Information and Communication Technology 		22	\N	2013-09-02	2013-09-02	\N	0	0	0	
2036	Programming and Website Security		The BSIT NW-4C of College of Information and Communication Technology 		22	\N	2013-07-03	2013-07-03	\N	0	0	0	
2037	BPSU-CICT Research Cluster 		The BSIT NW-4B of College of Information and Communication Technology 		22	\N	2013-06-18	2013-06-18	\N	0	0	0	
1358	HANDICRAFT MAKING		BINARITAN, MORONG, BATAAN		2044	\N	2008-04-23	2008-04-25	\N	0	0	0	
1359	PHILIPPINE WORKSHOP FOR THE PROTECTION AND PROMOTION OF INDIGENOUS KNOWLEDGE 		UP DILIMAN		2044	\N	2013-10-02	2013-10-04	\N	0	0	0	
1360	ENHANCING TEACHING COMPETENCE OF FUTURE TEACHERS OF QUEZONIAN EDUCATIONAL COLLEGE INC.		QUEZONIAL EDUCATION COLLEGE INC.		2044	\N	2010-02-07	2010-03-07	\N	0	0	0	
1361	INTRODUCTORY LOCAL RESOURCE INVENTORY TRAINING		BTPI MORONG, BATAAN		2044	\N	2017-07-10	2017-07-31	\N	0	0	0	
1362	BUILDING WIRING INSTALLATIONS NC II		TESDA ATIMONAN, QUEZON		2044	\N	2009-06-09	2009-10-30	\N	0	0	0	
1363	COMPUTER HARDWARE SERVICING NC II		TESDA ATIMONAN, QUEZON		2044	\N	2009-09-18	2009-12-06	\N	0	0	0	
1364	SMAW NC II		REGIONAL TRAINING CENTER LUZON-MARIVELES, CAMAYA, MARIVELEZ, BATAAN		2044	\N	2011-12-11	2012-02-24	\N	0	0	0	
1365	SHIELD METAL ARC WELDING (SMAW NC I)		REGIONAL TRAINING CENTER CENTRAL LUZON-MARIVELEZ, CAMAYA		2044	\N	2011-07-25	2011-09-25	\N	0	0	0	
1366	DISTRICT ENHANCEMENT TRAINING FOR GUIDANCE COUNSILOR/DESIGNATES		DEPARTMENT OF EDUCATION-MORONG CENTRAL		2044	\N	2015-07-28	2015-07-28	\N	0	0	0	
1367	TEACHERS SEMINAR ON CREATIVITY IN TEACHING		QUEZON CITY		2044	\N	2012-10-27	2012-10-27	\N	0	0	0	
1368	DISTRICT TRAINING OF KINDERGARTEN TEACHERS ON MOTHER-TONGUE BASED 		MORONG CENTRAL		2044	\N	2012-05-16	2012-05-16	\N	0	0	0	
1369	DIVISION ON TRAINING-WORKSHOP FOR UNTRAINED PRE-ELEM TEACHERS ON THE IMPLEMENTATION OF THE NATIONAL KINDERGARTEN CURRICULUM		DEPARTMENT OF EDUCATION - DISTRICT OF MORONG		2044	\N	2011-11-15	2011-11-17	\N	0	0	0	
1370	DIVISION CLUSTER TRAINING FOR KINDERGARTEN TEACHERS AND PRINCIPAL COORDINATORS		DEPARTMENT OF EDUCATION - DISTRICT OF SAMAL BATAAN		2044	\N	2011-07-12	2011-07-12	\N	0	0	0	
1371	NAVAL (ROTC) RESERVE OFFICER TRAINING CORPS		PHILIPPINE NAVY NROTC		2047	\N	2004-06-05	2005-03-05	\N	0	0	0	
2038	1st Summer Leadership Training 2011		The Student Society on Information Technology Education 		22	\N	2011-05-06	2011-05-06	\N	0	0	0	
10407	SEMINAR/WORKSHOP ON AGENCY PROCUREMENT COMPLIANCE INDICATOR (RA 9184)		NATURE'S HOTEL, NEG. OCC./DILG		970	\N	2017-08-14	2017-08-18	40	0	0	0	
10408	SEMINAR/WORKSHOP ON DETAILED ENGINEERING DESIGN FOR BRIDGES PROJECTS 		TRAVELLER'S HOTEL, SUBIC/DILG		970	\N	2017-08-07	2017-08-11	40	0	0	0	
10410	KALSADA PROGRAM (PREP. OF DED FOR PROVINCIAL ROADS)		EUROTEL, BAGUIO/DILG 		970	\N	2016-08-22	2016-08-27	40	0	0	0	
10411	WORKSHOP/TRAINING FOR GEOTAGGING APPLICATIONS (MY TRACKS, GPS, GEO CAM& GOOGLE EARTH PRO)		BALANGA, BATAAN 		970	\N	2016-11-16	2016-11-16	8	0	0	0	
10412	WORKSHOP/TRAINING FOR GPS & SURVEY EQUIPMENT (HEMESPHERE PRODUCT DEMO)		BALANGA, BATAAN		970	\N	2016-05-16	2016-05-16	8	0	0	0	
8291	Multipartite Monitoring Team Seminar / Workshop		Mines and Geoscience Bureau Region 3		357	\N	2015-06-23	2015-06-24	\N	0	0	0	
8292	Workshop  on Audit Management and Procedure of Multipartite Monitoring in Region 3		Environmental Management Bureau Region 3		357	\N	2014-09-04	2014-09-04	\N	0	0	0	
6711	1 Day Disaster Preparedness Training		Bataan PDRRMO		258	\N	2016-03-18	2016-03-18	\N	0	0	0	
6712	Phil. Government Electronic Procurement System (PHIL GEPS TRAINING)		E-Blackboard Solutions, Inc.		258	\N	2014-10-12	2014-10-13	\N	0	0	0	
8367	IV Therapy		V.: Makabali Hospital		1106	\N	0001-01-01	0001-01-01		0	0	0	
6713	United States Peace Corps Cross Sectoral Youth Camp		United States Peace Corps		258	\N	2013-09-07	2013-09-07	\N	0	0	0	
6714	2013 Life Skills Youth Camp		United States Peace Corps		258	\N	2013-08-17	2013-08-17	\N	0	0	0	
6715	Accountability, Creditability and Ethicality		JPCOM-BPSU		258	\N	2013-03-01	2013-03-01	\N	0	0	0	
6716	Seminar on Business Continuity and Resiliency Planning		PCEDO/DTI Bataan		258	\N	2018-09-05	2018-09-06	\N	0	0	0	
6717	Gender and Devleopment Seminar		Provincial Population Office		258	\N	2018-06-08	2018-06-08	\N	0	0	0	
6718	1st National Conference on Food, Environement, Engineering and Technology		Bataan Peninsula State University		258	\N	2017-11-22	2017-11-24	\N	0	0	0	
6720	Seminar on Understanding Branding, Trademeark, Patent and Copyright		DTI		258	\N	2017-03-29	2017-03-29	\N	0	0	0	
6721	Seminar on E-Marketing as an Effective Strategy fro MSMEs (Website/Social Media)		DTI		258	\N	2017-02-21	2017-02-21	\N	0	0	0	
6722	Seminar on Business Trends and Updates		DTI		258	\N	2017-02-16	2017-02-16	\N	0	0	0	
6723	Financing Forum		DTI		258	\N	2016-10-28	2016-10-28	\N	0	0	0	
6724	Seminar on the Role of Packaging and Labelling on the Food Industry		DTI		258	\N	2016-11-11	2016-11-11	\N	0	0	0	
6725	Seminr on Expanding your Business thru E-Commerce		DTI		258	\N	2016-07-15	2016-07-15	\N	0	0	0	
2039	Workshop on Team Development		Provincial Treasurer's Office 		572	\N	2007-12-17	2007-12-17	\N	0	0	0	
4059	GATEKEEPING IN PRIMARY HEALTH CARE AS EFFECTIVE TOOL FOR SERVICE DELIVER NETWORK TRAINING WORKSHOP		BATAAN GENERAL HOSPITA		92	\N	2019-02-13	2019-02-13	\N	0	0	0	
4060	TRAINING ON DOMINING AND DOFFING OF PERSONAL PROTECTIVE EQUIPMENT(PPE)AND SPECIMEN COLLECTION		DEPARTMENT OF HEALT		92	\N	2018-09-28	2018-09-28	\N	0	0	0	
4061	DENGVAXIA SURVEILLANCE & PIDSR IMPLEMENTATION		DEPARTMENT OF HEALTH		92	\N	2018-09-26	2018-09-28	\N	0	0	0	
4062	NTP DATA RECONCILIATION		DEPARTMENT OF HEALTH		92	\N	2018-07-19	2018-07-20	\N	0	0	0	
4063	TRAINING ON HIV SCREENING		DEPARTMENT OF HEALTH		92	\N	2018-06-27	2018-06-29	\N	0	0	0	
4064	HEALTH LEADERSHIP AND GOVERNANCE PROGRAM BRIDGING LEADERSHIP & PUBLIC HEALTH MODULE 2				92	\N	2018-05-22	2018-05-23	\N	0	0	0	
4065	BASIC COSTUMER SERVICE SKILL TRAINING				92	\N	2018-05-05	2018-05-05	\N	0	0	0	
4066	UPDATES ON LICENSURE AND DOH HOSPITAL PROGRAM IMPLEMENTATION				92	\N	2018-02-27	2018-02-27	\N	0	0	0	
2999	Lockheed Detective and Watchman Agency Inc.		PEO		1810	\N	2012-09-11	2012-09-11	\N	0	0	0	
3000	Enhanced Community Immersion Program (ECIP)		PNP		1810	\N	2018-02-16	2018-02-16	\N	0	0	0	
3001	Radio Communication Registration and Licensing Restricted Landmobile Radio Telephone Operation for Landmobile Service (RLM Cert.)		NTC		1810	\N	2017-08-10	2017-08-10	\N	0	0	0	
4067	REGIONAL DEGUE SUMMIT				92	\N	2018-02-07	2018-02-07	\N	0	0	0	
4068	UPDATE ON INFECTIOUS DISEASE PRGRAM WITH DATA VALIDATION				92	\N	2017-10-10	2017-10-11	\N	0	0	0	
4069	BRIDGING LEADERSHIP FOR PUBLIC HEALTH MODULE 1				92	\N	2017-05-09	2017-05-10	\N	0	0	0	
4070	THE SUPERVISORY DEVELOPMENT COURSE TRACK 1		PROVINCIAL HUMAN RESOURCE MANAGEMENT OFFICE		92	\N	2016-11-15	2016-11-17	\N	0	0	0	
3027	Pipefitting NCII		TESDA		1812	\N	2009-12-21	2010-03-08	\N	0	0	0	
3028	Consumer Electronics Servicing NCII		TESDA		1812	\N	2013-11-16	2014-01-21	\N	0	0	0	
4071	STRATEGIC PERFORMANCE MANAGEMENT SYSTEM FOR LEADERS		PROVINCIAL HUMAN RESOURCE MANAGEMENT OFFICE		92	\N	0001-01-01	0001-01-01	\N	0	0	0	
4072	ONLINE EVENT BASED SURVEILLANCE AND REPONSE VERSION 2		DEPARTMENT OF HEALTH		92	\N	2016-08-09	2016-08-10	\N	0	0	0	
4073	QUARTERLY MEETING AMONG DISEASE SURVEILLANCE COORDINATOR		PHO - CONFERENCE ROOM BALANGA CITY BATAAN		92	\N	0001-01-01	0001-01-01	\N	0	0	0	
4074	NTP-QAS,DATA, VALIDATION		PHO-CONFERENCE ROOM BALANGA CITY		92	\N	0001-01-01	0001-01-01	\N	0	0	0	
4075	BUB CONSULTATIVE MEETING AND PRESENTATION OF 2017 DOH BUBMENU PROGRAMS DENGUE		DEPARTMENT OF HEALTH BALANGA CITY BATAAN		92	\N	0001-01-01	0001-01-01	\N	0	0	0	
4076	MAINTSTREAMING MENTAL HEALTH IN THE COMMUNITY NURSES AS FRONLINERS IN HEALTH CARE		OSYCHIATRIC MENTAL HEALTH ASSOCIATION OF THE PHILIPPINES INC.		92	\N	2016-12-11	2016-12-12	\N	0	0	0	
3035	Basic Life Support Healthcare Providers 		Red Cross		1813	\N	2012-11-15	2012-11-17	\N	0	0	0	
3036	First Aid Training Standard		Red Cross		1813	\N	2012-11-18	2012-11-20	\N	0	0	0	
3037	Disaster Preparedness Training on First Aid, Lifting and Moving, Bandaging, Basic Life Support with Water Search and Rescue		PDRRMC		1813	\N	2015-03-19	2015-03-21	\N	0	0	0	
3038	In-Service Training (In-House Refresher Seminar) 		Lockheed		1813	\N	2012-09-11	0001-01-01	\N	0	0	0	
3039	Care Giver in Mental Health 		Mariveles Mental Ward		1813	\N	2005-01-03	2005-01-07	\N	0	0	0	
3040	Emergency Nursing/Out Patient Department Nursing/Medical Nursing/Minor Surgical Nursing/Pediatric/NICU Ward Nursing/OB-Gyne/Delivery Room Nursing/Communicable Disease/Isolation Ward Nursing/Clinical/Theoritical Instructions Training		Orani District Hospital		1813	\N	2004-12-06	2004-12-10	\N	0	0	0	
2043	Orientation / Seminar on the Procedures for the Disbursement Transactions of the Provincila Government of Bataan 		Provincial Government of Bataan		23	\N	2014-05-09	2014-05-09	\N	0	0	0	
2044	Bataan Information and Communication Technology Project 		Systems and Plan Integrator Development Company and IBM Philippines Incorporated 		23	\N	2003-08-27	2003-08-27	\N	0	0	0	
2045	Seminar on Stress Management and Self-Empowerment 		Philippine Institute of Certified Public Accountants - Bataan 		23	\N	2003-03-28	2003-03-28	\N	0	0	0	
2046	Seminar Workshop on the Updates of New Government Accounting System 		Commission on Audit - Cluster II		23	\N	2002-10-14	2002-10-15	\N	0	0	0	
2174	FOLLOW THROUGH TRAINING ON INTERNAL AUDIT: INSTITUTIONALIZING KEY LGU INTERNAL CONTROL SYSTEMS THROUGH EFFECTIVE DOCUMENTATION"	TECHNICAL	DILG-RIII		574	\N	2018-11-27	2018-11-28	\N	0	0	0	TECHNICAL
1465	1st Quarter National Simultaneous Earthquake Drill	Technical	Freeport Area of Bataan		2049	\N	2016-04-21	2016-04-21	\N	0	0	0	Technical
6727	Seminar on RA 970 and RA 9262		Provincial Population (Bataan)		258	\N	2016-04-15	2016-04-15	\N	0	0	0	
7040	Basic Leadership Training, San Juan City, Metro Manila		Joseph Dino Abella Orbeta		325	\N	2016-08-09	2016-08-09	\N	0	0	0	
3748	Population and Development Summit 2018		POPCOM Region III		515	\N	2018-11-27	2018-11-29	\N	0	0	0	
7041	Effective Office Administration, San Juan City, Metro Manila		Flor M. Glinoga , PHD		325	\N	2016-08-08	2016-08-08	\N	0	0	0	
7042	Advanced Supervisory Skills Training, San Juan City, Metro Manila		Richard D. De Dios		325	\N	2016-08-06	2016-08-06	8	0	0	0	
1466	Exigency "An EMS Awareness Seminar"	Technical	Marivelez Rescue Medics		2049	\N	2017-05-29	2017-05-29	\N	0	0	0	Technical
1467	Conuondrums in Emergency Department Training and Forensics: "The Highly Vield Lectures"	Technical	Ospital ng Makati		2049	\N	2017-07-23	2017-07-23	\N	0	0	0	Technical
2191	ORIENTATION/SEMINAR ON MAGNA CARTA OF WOMEN (R.A 9710) AND ANTI VIOLENCE AGAINST WOMEN & CHILDREN (R.A 9262)	TECHNICAL 	PROVINCIAL GOVERNMENT OF BATAAN, PROVINCIAL POPULATION OFFICE 		574	\N	2016-04-15	2016-04-15	\N	0	0	0	TECHNICAL 
2175	80TH ANNUAL CONVENTION & SEMINAR WORKSHOP THEME: "PHALTRA @ 80: PHALTRA's DYNAMIC ROLE TOWARDS LOCAL AND NATIONAL GOVERNMENT'S ORGANIZATIONAL TRANSFORMATION AND STRENGTHENING OF ASSESSMENT AND TREASURY SERVICES COMPETENCE AND CAREER DEVELOPMENT 	TECHNICAL	PHILIPPINE ASSOCIATION OF LOCAL TREASURERS AND ASSESSORS (PHALTRA) INC. - BUREAU OF LOCAL GOVERNMENT FINANCE (BLGF)		574	\N	2013-02-18	2013-02-22	\N	0	0	0	TECHNICAL
2176	1ST QUARTER REGIONAL CONFERENCES: "PAGSULONG SA GITNA NG MGA PAGSUBOK"	TECHNICAL 	BUREAU OF LOCAL GOVERNMENT FINANCE, DEPARTMENT OF FINANCE 		574	\N	2013-03-19	2013-03-20	\N	0	0	0	TECHNICAL 
2177	TRAINING OF TRAINORS ON THE: DEPLOYMENT AND USE OF THE ELECTRONIC STATEMENT OF RECEIPTS AND EXPENDITURES VERSION 2.1 (eSRE V2.1) SYSTEM	TECHNICAL/SUPERVISORY	BUREAU OF LOCAL GOVERNMENT FINANCE, DEPARTMENT OF FINANCE 		574	\N	2013-09-17	2013-09-20	\N	0	0	0	TECHNICAL/SUPERVISORY
2178	3RD REGIONAL CONFERENCE WORKSHOP	TECHNICAL	BUREAU OF LOCAL GOVERNMENT FINANCE, DEPARTMENT OF FINANCE R III		574	\N	2013-09-26	2013-09-27	\N	0	0	0	TECHNICAL
2179	4TH QUARTER REGIONAL CONFERENCE - WORKSHOP AND YEAR-END PERFORMANCE EVALUATION	TECHNICAL	BUREAU OF LOCAL GOVERNMENT FINANCE, DEPARTMENT OF FINANCE R III		574	\N	2013-12-10	2013-12-11	\N	0	0	0	TECHNICAL
2180	ORIENTATION ON THE ENHANCED PUBLIC FINANCIAL MANAGEMENT ASSESSMENT TOOL FOR LOCAL GOVERNMENT UNITS (PFMAT FOR LGUs) AND THE PFMAT SOFTWARE 	TECHNICAL 	DEPARTMENT OF BUDGET AND MANAGEMENT, REGION OFFICE III		574	\N	2014-03-14	2014-03-14	\N	0	0	0	TECHNICAL 
2181	ORIENTATION/SEMINAR ON THE PROCEDURES FOR THE DISBURSEMENT TRANSACTIONS OF THE PROVINCIAL GOVERNMENT OF BATAAN	TECHNICAL	PROVINCIAL GOVERNMENT OF BATAAN		574	\N	2014-05-09	2014-05-09	\N	0	0	0	TECHNICAL
2182	69TH PICPA ANNUAL NATIONAL CONVENTION 	TECHNICAL	PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS (PICPA)		574	\N	2014-11-25	2014-11-27	\N	0	0	0	TECHNICAL
2183	4TH QUARTER REGIONAL CONFERENCE: "GETTING IT DONE-GETTING YOU PREPARED FOR THE NEXT LEVEL"	TECHNICAL 	BUREAU OF LOCAL GOVERNMENT FINANCE, DEPARTMENT OF FINANCE R III		574	\N	2015-12-09	2015-12-10	\N	0	0	0	TECHNICAL 
2184	SEMINAR ON ANTI-MONEY LAUNDERING ACT (AMLA) FOR NON-COVERED INSTITUTION	TECHNICAL	LAND BANK OF THE PHILIPPINES		574	\N	2015-01-27	2015-01-27	\N	0	0	0	TECHNICAL
2185	1ST QUARTER REGIONAL CONFERENCE: "SHIFTING GEARS, ENERGIZING YOUR PERFORMANCE"	TECHNICAL	BUREAU OF LOCAL GOVERNMENT FINANCE, DEPARTMENT OF FINANCE R III		574	\N	2015-04-22	2015-04-24	\N	0	0	0	TECHNICAL
2186	SEMINAR WORKSHOP ON THE USE OF THE ENHANCED MANUAL FOR THE EVALUATION OF LOCAL TREASURY OPERATIONS (MELTO)	TECHNICAL/SUPERVISORY	DEPARTMENT OF FINANCE, BUREAU OF LOCAL GOVERNMENT FINANCE 		574	\N	2015-06-15	2015-06-17	\N	0	0	0	TECHNICAL/SUPERVISORY
2187	2ND QUARTER REGIONAL CONFERENCE : FOCUS ON SUCCESS - COMMITMENT TO EXCELLENCE"	TECHNICAL 	BUREAU OF LOCAL GOVERNMENT FINANCE, DEPARTMENT OF FINANCE R III		574	\N	2015-07-07	2015-07-08	\N	0	0	0	TECHNICAL 
1422	Supervisory Development Course Track 1		Civil Service Commission Regional Office III		504	\N	2013-09-18	2013-09-18	\N	0	0	0	
1425	Seminar-workshop on Leave Administration Course		Civil Service Commission Regional Office 3		504	\N	2015-04-07	2015-04-08	\N	0	0	0	
1426	Seminar-Workshop on Revised Rules on Administrative Cases in the Civil Service		Civil Service Commission Regional Office 3		504	\N	2015-10-28	2015-10-29	\N	0	0	0	
1427	Work Attitude and Values Enhancement Training		Civil Service Commission Field Office- Bataan Provincial Human Resource Management Office		504	\N	2016-06-20	2016-06-21	\N	0	0	0	
2188	3RD PACTAP NATIONAL CONVENTION	TECHNICAL 	PACTAP, INC &  BLGF		574	\N	2015-09-09	2015-09-11	\N	0	0	0	TECHNICAL 
4079	PROVINCIAL NTP IMPLEMENTATION REVIEW AND CONSULTATIVE WORKSHOP		PHO -TRAVELLER'S HOTEL FREEPORT ZON SUBIC, ZAMBALES		92	\N	2015-04-21	2015-04-22	\N	0	0	0	
4080	TOBACCO CONTROL  LEADERSHIP SEMINAR/WORKSHOP		PROVINCIAL HEALTH OFFICE		93	\N	2018-07-04	2018-07-05	\N	0	0	0	
4082	IMPOWER TRAINING				93	\N	2018-02-06	2018-02-08	\N	0	0	0	
4083	NEWBORN SCREENING SEMINAR ORIENTATION AND TRAINING		REGIONAL HEALTH OFFICE III		93	\N	2016-11-17	2016-11-18	\N	0	0	0	
4084	PROFESSIONAL SUMMIT 2015		BATAAN PENINSULA STATE UNIVERSITY		93	\N	0001-01-01	0001-01-01	\N	0	0	0	
1459	Basic Intravenous Therapy	Technical	V.L. Makabali Memorial Hospital		2049	\N	2015-07-15	2015-07-18	\N	0	0	0	Technical
1460	Advance Cardiac Life Support	Technical	American Heart Association		2049	\N	2015-08-18	2015-08-21	\N	0	0	0	Technical
1461	Basic Life Support	Technical	American Heart Association		2049	\N	2015-08-18	2015-08-18	\N	0	0	0	Technical
1463	Pre-Hospital Emergency Training Care	Technical	Life Support Training International		2049	\N	2016-04-01	2016-04-01	\N	0	0	0	Technical
1464	Emergency Medical Technician Basic	Technical	Life Support Training International		2049	\N	2016-02-01	2016-03-18	\N	0	0	0	Technical
1468	Ems of the Frontline: "Moving Forward thru Changing Times"	Technical	Bataan Medical Society		2049	\N	2017-09-29	2017-09-29	\N	0	0	0	Technical
1469	EMS Empowerment Mainstreaming EMS into the Community	Technical	University of Maran		2049	\N	2017-09-29	2017-09-29	\N	0	0	0	Technical
1470	19th PNIC: Changing Landscape of Immunization in the Philippines	Technical	Philippine Foundation for Vaccination		2049	\N	2017-10-15	2017-10-15	\N	0	0	0	Technical
1471	Electrical Therapy: Defibrillation and Cardioversion 	Technical	Nursing Center For Clinical Laboratory Experience, INC.		2049	\N	2018-11-15	2018-11-16	\N	0	0	0	Technical
1472	Basic Electrocardiography 	Technical	Nursing Center For Clinical Laboratory Experience, INC.		2049	\N	2019-03-23	2019-03-23	\N	0	0	0	Technical
1473	Cardiovascular Pharmacology 	Technical	Nursing Center for Clinical Lab. Experience, INC		2049	\N	2019-03-24	2019-03-24	\N	0	0	0	Technical
1475	Advance Cardiac Life Support 	Technical	American Safety and Health Institute		2049	\N	2019-03-23	2019-03-24	\N	0	0	0	Technical
1477	Developing Human Relationship and Personality Towards Professional Growth 		Tomas Del Rosario College		9	\N	2003-02-12	2003-02-12	\N	0	0	0	
1478	Administration and Management of Cooperative		Tomas Del Rosario College		9	\N	2002-09-17	2002-09-17	\N	0	0	0	
3903	Basic IV Training Program 		Medical Center Paranaque		87	\N	2008-12-01	2008-12-03	\N	0	0	0	
2189	PROPERTY ASSESSMENT & TAX ADMINISTRATION SYSTEM USER'S TRAINING	TECHNICAL	PROVINCIAL GOVERNMENT OF BATAAN, PROVINCIAL ASSESSORS OFFICE		574	\N	2015-11-09	2015-11-10	\N	0	0	0	TECHNICAL
2190	83RD ANNUAL CONVENTION & SEMINAR WORKSHOP THEME: "FISCAL RESILIENCY AMIDST ADVANCE GLOBAL TECHNOLOGY ON LGU'S ASSESSMENT AND TREASURY SERVICES 	TECHNICAL 	PHILIPPINE ASSOCIATION OF LOCAL TREASURERS AND ASSESSORS (PHALTRA) INC. - BUREAU OF LOCAL GOVERNMENT FINANCE (BLGF)		574	\N	2016-02-23	2016-02-26	\N	0	0	0	TECHNICAL 
15542	2023 SEMINAR IN GOVERNMENTAL MANAGEMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
1504	Work Attitude and Values Enhancement Training 		Human Resource Management Office 		10	\N	2016-06-20	2016-06-21	\N	0	0	0	
1505	Orientation / Seminar on the Procedures for the Disbursement Transaction of the Provincial Government of Bataan 		Provincial Accountant's Office 		10	\N	2014-05-09	2014-05-09	\N	0	0	0	
3003	Post Graduate Course: IM GREAT;  Goals , Risks, Evidence, Approaches, Therapies 		Manila Doctor's Hospital		2087	\N	2015-06-18	2015-06-19	\N	0	0	0	
3004	BAYCOG 20TH Annual Convention:Most Requested Topics in OB -Gyn		Bayside Council In Obstetrics And Gynecology		2087	\N	2015-06-07	2015-06-07	\N	0	0	0	
3005	POGS Annual Convention : Women's Health; Current Threads And Recommendations		Philippine Obestetrics and Gynecology		2087	\N	2014-11-11	2014-11-14	\N	0	0	0	
3006	Semminar on Good Clinical Practice Guidelines		Mary Johnston Hospital		2087	\N	2014-10-08	2014-10-08	\N	0	0	0	
3007	Lactation Management and Essential Intrapartum Newborn Care		Mary Johnston Hospital		2087	\N	2014-06-10	2014-06-14	\N	0	0	0	
8293	Regional Multipartite Monitoring Team Convention		Environmental Management Bureau Region 3		357	\N	2015-04-16	2015-04-17	\N	0	0	0	
8294	Philippine Clean Water Act of 2004 ( Republic Act 9275) Orientation		Environmental Management Bureau Region 3 and GN Power Corporation		357	\N	2011-05-20	2011-05-20	\N	0	0	0	
8295	Mining Security Officers Seminar Workshop		Mining Development Council Office of the President		357	\N	2010-09-23	2010-09-24	\N	0	0	0	
12233	Overseas Workers Welfare Administration Computer Fundementals				1476	\N	2015-04-06	2015-04-20	120	0	0	0	
12234	GAD Basic Concepts and Issues Cum Team Building		Sangunian Panlalawigan		1476	\N	2016-05-27	2016-05-28	24	0	0	0	
12236	Bahavior Based Safety Terminal		LABSPEAK Safety Inc. LGU Bataan/PEO		992	\N	2018-12-04	2018-12-07	32	0	0	0	
12237	Operation and Maintenance Training		Philippine Rural Dev't Project (PRDP)		992	\N	2018-09-24	2018-09-28	40	0	0	0	
12238	Occupational Safety and Health		Provincial Engineer's Office		992	\N	2018-05-25	2018-05-26	16	0	0	0	
12239	Trainer's Methodology 1		Manila International Skills academy(MISA)		992	\N	2017-10-01	2017-12-26	146	0	0	0	
12240	Shielded Metal Arc Welding NCII		Technical Education Skills Dev't Authority		992	\N	2016-05-16	2016-06-08	304	0	0	0	
12241	Driving Instruction Training		ABG Driving School		992	\N	2014-05-24	2014-05-24	8	0	0	0	
12242	Driving NCII (Assessment)		Technical Education Skills Dev't Authority		992	\N	2013-08-25	2013-08-25	8	0	0	0	
12243	Basic Occupational Safety and Health		Insafety Incorporated		992	\N	2012-08-27	2012-08-31	40	0	0	0	
12244	Basic Security Trainign Course		G4S Qatar W.L.L		992	\N	2011-09-14	2011-09-18	40	0	0	0	
12245	Basic Rescue Operation Training		Bataan Peninsula State University		992	\N	2009-07-28	2009-09-28	146	0	0	0	
12246	Ethics on the Workplace 		Bataan Peninsula State University		992	\N	2009-04-14	2009-04-14	8	0	0	0	
12247	Advance Cardiac UFE Support and ECG for Medical Profession		Philippine Heart Association and Course of Cardiology Bataan Medical Society		992	\N	2009-03-24	2009-04-01	48	0	0	0	
12248	Emotional and Psycological Assessment Training		PRN Quality Training and Seminar UNK		992	\N	2008-09-21	2008-09-21	8	0	0	0	
8297	Orientation / Workshop on the Final Mine Rehabilitation and/or Decommissioning Plan		Mines and Geoscience Bureau Region 3		357	\N	2007-04-30	2007-04-30	\N	0	0	0	
1863	First Aid and Basic Life Support		PDRRMO and Redcross		1785	\N	2018-11-20	2018-11-23	\N	0	0	0	
12249	Barangay Defense Deputized Coordination		Office of the Civil Defense RDCC 3		992	\N	2008-08-21	2008-08-21	8	0	0	0	
12250	Lecture Forum on Hydrometrological Hazards		PAGASA/DOST		992	\N	2008-01-30	2008-01-30	8	0	0	0	
12251	Water Research and Rescua(WASAN)		Office of Civil Defense		992	\N	2007-03-26	2007-03-30	40	0	0	0	
12252	Crisis Response Management Training		Philippine National Police BPPO, Bataan		992	\N	2004-09-08	2004-10-25	312	0	0	0	
12253	Safety Program Audit Course		Provincial Engineer's Office		1026	\N	2018-08-15	2018-08-17		0	0	0	
12254	IHIP: The Trends in Urban and Countryside Development		National Real Estate Association Inc.		1026	\N	2018-07-14	2018-07-15		0	0	0	
3408	Water Quality Checker, Aqua Read Model;AP800		De Leon Import and Export - Environment and natural Resources Office		367	\N	2017-08-03	2017-08-03	\N	0	0	0	
12257	Why Should Architects Specialize		UAP Balanga Bataan Chapter		1026	\N	2018-01-13	2018-01-13		0	0	0	
10413	NATIONAL BUILDING CODE OF THE PHILLIPINES (PD1096) ITS IMPLEMENTING RULES & REGULATIONS 		BALANGA, BATAAN 		970	\N	2015-03-09	2015-03-13	40	0	0	0	
10414	FUSION 2011		UP DILIMAN Q.C		970	\N	2011-12-03	2011-12-03	8	0	0	0	
10415	Training on Furniture & Cabinet Making 				967	\N	2013-07-22	2013-07-23	16	0	0	0	
10425	Seminar on Anti-Trafficking Person and Anti - Violence Against Women and Their Children				289	\N	2018-05-11	2018-05-12	\N	0	0	0	
10426	LabSpeak Behavior Based Safety Seminar				289	\N	2018-12-04	2018-12-07	\N	0	0	0	
3411	Seminar on Code of Conduct and Ethical Standard and Revised Rules on Administrative Cases on Civil Service		Provincial Government of Bataan - Human Resources Management Office		367	\N	2015-10-24	2015-10-28	\N	0	0	0	
3412	Provincial Stakeholders Consultation Workshop for the Formulation of Core Road Network		Provincial Government of Bataan - Department of Interior and Local Government		367	\N	2015-10-14	2015-10-14	\N	0	0	0	
3413	Business Plan Preparation Workshop		Department of Agriculture - Philippine Rural Development Program		367	\N	2015-11-02	2015-11-06	\N	0	0	0	
12255	Anti-Trafficing in Persong and Anti-Violence Against Women and Children		Provincial Engineer's Office		1026	\N	2018-11-05	2018-12-05		0	0	0	
5950	Labor Jurisprudence		FABILA HR and Training Council		260	\N	2016-10-05	2016-10-05	\N	0	0	0	
12256	Occupational Safety and Health Awareness		Provnicial Engineer's Office		1026	\N	2018-03-26	2018-03-27		0	0	0	
4085	CAREGIVING TRAINING		BAHAY PUSO FOUNDATION		93	\N	2002-11-02	2002-11-12	\N	0	0	0	
4086	TB MENIGHITIS DIAGNOSIS PREVENTION & THERAPEUTIC MANAGEMENT		PERPETUAL HELP COLLEGE OF MANILA COLLEGE OF NURSING		93	\N	0001-01-01	0001-01-01	\N	0	0	0	
4087	PREVENTION TREATMENT AND THERAPEUTIC MANAGEMENT OF DIAREA DISEASES		PERPETUAL HELP COLLEGE OF MANILA COLLEGE OF NURSING		93	\N	0001-01-01	0001-01-01	\N	0	0	0	
4113	NRL - NKTI NEQAS FOR HEMATHOLOGY		NATIONAL KIDNEY AND TRANSPLANT INSTITUTE		94	\N	2018-03-22	2018-03-22	\N	0	0	0	
4114	UNDEFINED DSE REGISTRY SYSTEM TRAINING 		DEPARTMENT OF HEALTH		94	\N	2014-05-20	2014-05-23	\N	0	0	0	
4115	PRO III BRANCH A: ROUND TABLE DISCUSSION OF ALL CASE RATES 		PHILIPPINE HEALTH  INSURANCE CORP		94	\N	0001-01-01	0001-01-01	\N	0	0	0	
4116	PHILHEALTH ORIENTATION/UPDATES ON ALL CASE RATES		NFHIMPI		94	\N	0001-01-01	0001-01-01	\N	0	0	0	
4117	PRO III BRANCHA: EXPO BENIFITS UPDATE		PHILIPPINE HEALTH INSURANCE CORP		94	\N	0001-01-01	0001-01-01	\N	0	0	0	
4118	REACH OUT EVENT		PHILIPPINE HEALTH INSURANCE CORP		94	\N	0001-01-01	0001-01-01	\N	0	0	0	
4119	NO BALANCE BILLING FORUM		PHILIPPINE HEALTH INSURANCE CORP		94	\N	0001-01-01	0001-01-01	\N	0	0	0	
4120	1ST ANNUAL MEMBERSHIP ASSEMBLY AND PHILHEATH UPDATES		NFHIMPI		94	\N	0001-01-01	0001-01-01	\N	0	0	0	
4121	ORIENTATION ON NEW CASE RATES AND E-CLAIMS		PHILIPPINE HEALTH INSURANCE CORP		94	\N	0001-01-01	0001-01-01	\N	0	0	0	
4122	SEMINAR ON MEDICAL RECORDS MANAGEMENT AND HOSPITAL STATISTICAL		CENTER FOR HEALTH DEVELOPMENT 3		94	\N	2008-09-16	2008-09-17	\N	0	0	0	
4123	TRAINING COURSE ON INTERNATIONAL CLASSIFICATION OF DSE VERSION 10(IDC-10)FOR CODERS		CENTER FOR HEALTH DEVELOPMENT 3		94	\N	2007-07-13	2017-07-17	\N	0	0	0	
4339	STANDARD OPERATING PRECEDURE AND RISK MANAGEMENT PLAN FOR DRUG OUTLEST COMPLIANCE TO PDA		PHIL PHARMACISTS ASSN, BATAAN CHAPTER		2123	\N	2017-07-22	2017-07-22	\N	0	0	0	
4340	TRANSFORMING PROCESSES AND OUTCOMES 		PHIL PHARMACISTS ASSN		2123	\N	2017-04-12	2017-04-12	\N	0	0	0	
4341	PHARMACY LEADER SHIP		PHILIPPINE SOCIETY OF HOSPITAL PHARMACIST 		2123	\N	2017-04-26	2017-04-26	\N	0	0	0	
4342	PHHA FILIPINO PHARMACISTS EMBRACING THE CHALLENGE OF CHANGRE		PHIL PHARMACISTS ASSN		2123	\N	2017-05-24	2017-05-27	\N	0	0	0	
4343	12TH CHIEF PHARMACISTS FRIUM PHARMACY MANAGEMNET HOSPITAL PHARMACY PHARMACISTS LEVEL UP		PHLIPPINE SOCIETY OF HOSPITAL PHAMACISTSPHLIPPINE SOCIETY OF HOSPITAL PHAMACIST		2123	\N	2016-11-12	2016-11-12	\N	0	0	0	
4344	3RD QUARTERLY SYMPOSIUM PHATMACIST CARING FOR YOU		PHLIPPINE SOCIETY OF HOSPITAL PHAMACISTSPHLIPPINE SOCIETY OF HOSPITAL PHAMACIST		2123	\N	2016-12-12	2016-12-12	\N	0	0	0	
1586	RPCO3-PPMIU-MLGU Assessment and Planning Workshop		Department of Agriculture - Philippine Rural Development Project 		11	\N	2018-12-12	2018-12-14	\N	0	0	0	
4993	Lockheed Training School		Capitol Bataan		1849	\N	2009-01-01	0001-01-01	\N	0	0	0	
1587	Tax Update on Implementation of TRAIN in 1 A, Overview of 1B and TRAIN 2		Philippine Institute of Certified Public Accountants		11	\N	2018-11-17	2018-11-17	\N	0	0	0	
1588	AGAP Convention - Seminar " Maginhawa, Matatag at Panatag na Buhay: Ambisyon nating Tunay		Association of Local Government Accountants of the Philippines (AGAP)		11	\N	2018-10-17	2018-10-20	\N	0	0	0	
1589	Luzon Geographical Area Office Conference		Philippine Institute of Certified Public Accountants		11	\N	2018-06-08	2018-06-09	\N	0	0	0	
1590	Tax Update - Tax Acceleration for Inclussion or TRAIN		Philippine Institute of Certified Public Accountants-Bataan Chapter 		11	\N	2018-03-24	2018-03-24	\N	0	0	0	
1591	General Accounting and Auditing System (Modules: Disbursement Voucher and Journal Entry Voucher)		Geodate Solutions 		11	\N	2017-12-12	2017-12-13	\N	0	0	0	
1592	72nd PICPA Annual Convention (ANC)		Philippine Institute of Certified Public Accountants		11	\N	2017-11-22	2017-11-25	\N	0	0	0	
1593	AGAP Convention Seminar: Transforming  the Government Financial Sector in the Era of Asian Integration		Association of Government Accountants 		11	\N	2017-10-18	2017-10-21	\N	0	0	0	
1594	Financial Statement Analysis and Preparation		Department of Agriculture - Philippine Rural Development Project 		11	\N	2015-11-16	2015-11-20	\N	0	0	0	
4345	10TH CHIEF PHARMACIST FRIUM MANAGING THE HOSPITAL PHARMACY INVERTORY CONTROL		PHLIPPINE SOCIETY OF HOSPITAL PHAMACISTSPHLIPPINE SOCIETY OF HOSPITAL PHAMACIST		2123	\N	2016-09-23	2016-09-23	\N	0	0	0	
4346	OPTIMUM HEALTH OUTCOMES THROUGH MEDICATION SAFETY		UNILAB MEDICAL AND EDUCATION DEVELOPMENT		2123	\N	2016-09-20	2016-09-20	\N	0	0	0	
4347	ORIENTATION/SEMINAR ON ELECTRONIC PRICE MONITORING (EDPMS)		DEPARTMENT OF HEALTH		2123	\N	2016-09-14	2016-09-14	\N	0	0	0	
4348	A.O. 36 LICENSING SEMINAR FOR DRUGSTORE OUTLET		DEPARTMENT OF HEALTH/FOOD AND DRUG ADMINISTRATION		2123	\N	2016-11-05	2016-11-05	\N	0	0	0	
4349	NATIONAL HOSPITAL ADVOCASY:ENSURING SAFETY,EFFUCACY AND QUALITY OF DRUG PRODUCTS TROUGH REGULATION AND PROMOTION		DEPARTMENT OF HEALTH/FOOD AND DRUG ADMINISTRATION		2123	\N	2016-09-29	2016-09-30	\N	0	0	0	
4350	ADVANCING SAFE MEDICATION PRACTICE AND SYSTEM		PHLIPPINE SOCIETY OF HOSPITAL PHAMACISTSPHLIPPINE SOCIETY OF HOSPITAL PHAMACIST		2123	\N	2016-09-25	2016-09-27	\N	0	0	0	
4351	6TH PHAMRCIST FORM LEADER SHOP SKILLS WORKSHOP THERAPEUTIC COMMITEE AND FORMULARY MANAGEMENT 		PHLIPPINE SOCIETY OF HOSPITAL PHAMACISTSPHLIPPINE SOCIETY OF HOSPITAL PHAMACIST		2123	\N	2016-09-25	2016-09-25	\N	0	0	0	
4352	THE PHARMACIST KEY PARTNERS IN PRIORITY QUALITY HEALTHCARE		PHLIPPINE SOCIETY OF HOSPITAL PHAMACISTSPHLIPPINE SOCIETY OF HOSPITAL PHAMACIST		2123	\N	2015-04-15	2015-04-15	\N	0	0	0	
1595	Bolstering Good Governance Through Public Expenditure and Transparent Local Government Unit		Association of Local Government Accountants of the Philippines (AGAP)		11	\N	2015-10-21	2015-10-24	\N	0	0	0	
1596	Strategic Fiscal Management Towards Dynamic and Transparent Local Government Unit		Philippine Association of Local Government Accountants (PHALGA)		11	\N	2015-05-26	2015-05-29	\N	0	0	0	
1597	69th PICPA Annual National Convention-Leap and Beat the Odds		Philippine Institute of Certified Public Accountants-National		11	\N	2014-11-26	2014-11-29	\N	0	0	0	
3018	Contingency Planning Formulation Workshop	Supervisory	Office Of Civil Dispense R-3		2089	\N	2014-02-19	2014-02-21	\N	0	0	0	Supervisory
3019	Local Disaster Risk Reduction  And Management Plan  Writeshop	Supervisory	Regional Disaster Risk Reduction And Management Council		2089	\N	2014-01-16	2014-01-17	\N	0	0	0	Supervisory
8365	Basic Life Support and First Aid Training		Red Cross/PDRRMO		1104	\N	2018-11-20	2018-11-23		0	0	0	
3020	Regional Consultation For the Philippine Miners Industry	Supervisory	Mines And Geo Science Bureau		2089	\N	2003-02-07	2003-02-07	\N	0	0	0	Supervisory
3021	Sanitary Landfll Seminar	Supervisory	Japan Society for the Promotion Of Science		2089	\N	2001-09-19	2001-09-19	\N	0	0	0	Supervisory
3022	Regional Training Course On Integrated Coastal Management	Managerial	Partnership In Environmental Management For East Asia		2089	\N	2001-11-12	2001-11-30	\N	0	0	0	Managerial
12258	Balangkasan sa Baguio: Seminar -Workshop on Contracts and Professional Practice Series		UAP Baguio Chapter		1026	\N	2017-04-11	2017-04-11		0	0	0	
12259	UAP National Convention 43: Shift"Shaking Up the Architecture Practice"		UAP National		1026	\N	2017-04-27	2017-04-29		0	0	0	
12260	Continuing Professional Development Law		UAP Angeles Chapter		1026	\N	2017-03-18	2017-03-18		0	0	0	
12261	5s Workplace Organization Methodology		AsiaWide Land Specialist Development Corporation		1026	\N	2016-08-26	2016-08-26		0	0	0	
12262	Doing It Right the First Time(DRIFT)		AsiaWide Land Specialist Development Corporation		1026	\N	2016-06-30	2016-06-30		0	0	0	
12263	Total Quality Management (TQM)		AsiaWide Land Specialist Development Corporation		1026	\N	2016-06-30	2016-06-30		0	0	0	
3420	Training Course on Organic Agriculture for Farmers of Region III		Training Course on Organic Agriculture for Farmenrs of Region III		367	\N	2012-07-04	2012-07-06	\N	0	0	0	
12265	Follow-Thorugh Training on Local Road Maintenance Management	Technical	Department of Interior and Local Governement		1048	\N	2018-12-10	2018-12-11	16	0	0	0	Technical
12266	Follow-Through Training on Internal Audit:Institutionalizing Key LGU Internal Contral Systems through Effective Documentation	Technical	Department of the Interiror and Local Government		1048	\N	2018-11-27	2018-11-28	16	0	0	0	Technical
12267	Writeshop for the Completion of Provincial Governance Reform Roadmap (PGRR)	Managerial	Department of the Interior  and Local Governement 		1048	\N	2018-09-25	2018-09-26	16	0	0	0	Managerial
12268	JCI Seminar - "Let's Take Care of Me: How to Manage Stress and Opportunity to Impact"	Managerial	Junior Chambers Institute - Philippines		1048	\N	2018-08-08	2018-08-08	3	0	0	0	Managerial
12269	The Workshop for the Forumulation of Provincial GovernanceReforms Roadmaps	Managerial	Department of the Interior and Local Government		1048	\N	2018-07-24	2018-07-27	32	0	0	0	Managerial
12270	Seminar on Anti-Trafficking in Person and Anit-Violence Against Women and Children	Managerial 	Provincial Governemnt Of Bataan		1048	\N	2018-05-11	2018-05-12	16	0	0	0	Managerial 
12271	Occupational Safety and Health Awareness of the Provincial Engineer's Office	Technical	Provincial Governemtn of Bataan		1048	\N	2018-04-27	2018-04-28	16	0	0	0	Technical
12272	Seminar on Effectivenesss and Magna Carta for Women	Managerial	Provincial Governemnt of Bataan		1048	\N	2017-10-27	2017-10-28	16	0	0	0	Managerial
12273	Training on the Involvement of Citizens in Monitoring Rural Infrastracture Subprojects	Technical	Department of Agriculture - Philippine Rural Development Project		1048	\N	2017-10-24	2017-10-27	32	0	0	0	Technical
1637	Follow Through Training on Internal Audit: Institutional Key LGU Internal Control System Through Effective Documentation 		Department of Interior and Local Government Region III		12	\N	2018-11-27	2018-11-28	\N	0	0	0	
1638	Follow Through Activity on the Finalization of PGRR and Conduct Local Road Assessment Through a Focus Group Discussion 		Department of Interior and Local Government Region III		12	\N	2018-10-10	2018-10-11	\N	0	0	0	
1639	Writeshop for the Completion of the Provincial Governance Reform  Road Map (PGRR)		Department of Interior and Local Government Region III		12	\N	2018-09-25	2018-09-26	\N	0	0	0	
1640	Workshop on the Formulation of the Provincial Governance Reform Roadmap(PGRR) on Local Road Management and Public Financial 		DILG / CMGP / RSDG / UNDP		12	\N	2018-07-24	2018-07-27	\N	0	0	0	
1641	Local Road Asset Management; A Follow-Through Activity on Local Road Mapping & Completion of the Local Road Network Development Plan (LRNDR)		Department of Interior and Local Government Region III		12	\N	2017-11-13	2017-11-15	\N	0	0	0	
1642	Internal Control System for Property and Supply Management (Appraisal and Disposal ) 		Association of Government Internal Auditors Inc. 		12	\N	2016-07-20	2016-07-22	\N	0	0	0	
1644	Workshop on Conversion of Accounts for Local Government Agencies		Commission on Audit - Regional Office No.III		12	\N	2016-02-09	2016-02-12	\N	0	0	0	
1645	Association of Government Accountants of the Philippines, Inc. Convention-Seminar " Preparing for the Unexpected: The Financial Implication of Disaster Management"		Association of Government Accountants of the Philippines, Inc, (AGAP)		12	\N	2014-10-21	2014-10-24	\N	0	0	0	
1646	Orientation Seminar on the Procedures for the Disbursement Transactions of the Provincial Government of Bataan 		Provincial Government of Bataan 		12	\N	2014-05-09	2014-05-09	\N	0	0	0	
1647	Seminar on Philippine Auditing Standards Labor Management, BOA Updates, COMELEC Updates and Election Awareness		Philippine Institute of Certified Public Accountant - Central Luzon Region 		12	\N	2010-04-29	2010-04-29	\N	0	0	0	
1648	Distance Learning Program on Personnel Administration 		Civil Service Commission 		12	\N	2003-12-10	2003-12-10	\N	0	0	0	
1649	Orientation on Btaaan Capitol Computerization Project 		Provincial Government of Bataan 		12	\N	2003-08-27	2003-08-27	\N	0	0	0	
1650	Seminar on Ethical Prctices  for Marketing the Services of CPA's 		Philippine Institute of Certified Public Accountant		13	\N	2019-02-02	2019-02-02	\N	0	0	0	
1651	Tax Updates on Implementation of TRAIN in 1A, Overview of 1B and TRAIN 2		Philippine Institute of Certified Public Accountants		13	\N	2018-11-17	2018-11-17	\N	0	0	0	
12286	Cosh-Construciton Occupational Safety and Health	Supervisory	Peme Consultancy, INC.		1052	\N	2014-06-04	2014-06-07		0	0	0	Supervisory
1652	AGAP Convention-Seminar " Transfrming the Government Financial Sector in the Era of ASIAN Integration 		Association of Government Accountants of the Philippines		13	\N	2018-10-18	2018-10-21	\N	0	0	0	
1653	ISO 9001:2015 Internal Quality Audit 		Provincial Government of Bataan 		13	\N	2018-08-30	2018-08-30	\N	0	0	0	
1654	ISO 9001: 2015 Awareness Seminar 		Provincial Government of Bataan 		13	\N	2018-07-27	2018-07-27	\N	0	0	0	
1655	Seminar / Training on Updates on the Revised Implementing Rules and Regulations of Republic Act No. 9184		Provincial Government of Bataan 		13	\N	2017-04-20	2017-04-21	\N	0	0	0	
1656	71st PICPA Annual National Convention 		Philippine Institute of Certified Public Accountants		13	\N	2016-11-24	2016-11-26	\N	0	0	0	
8366	Provider Initiated HIV  Counseling and Testing Training		DOH -PBSB		1106	\N	2018-06-06	2018-06-08		0	0	0	
1658	38th GACPA Annual National Convention (Building Global Partnerships Through Knowledge Sharing)		Government Association of Certified Public Accountants		13	\N	2016-04-27	2016-04-30	\N	0	0	0	
1659	Values Education Seminar for Faculty		Tomas Del Rosario College 		13	\N	2014-11-25	2014-11-25	\N	0	0	0	
1660	Seminar on Methods and Strategies of Teaching 		Tomas Del Rosario College 		13	\N	2014-11-19	2014-11-19	\N	0	0	0	
1661	Seminar on Learning Assessments with Table of Specifications 		Tomas Del Rosario College 		13	\N	2014-11-19	2014-11-19	\N	0	0	0	
1662	On the Job Training 		Landbank of the Philippines 		13	\N	2013-04-03	2013-05-10	\N	0	0	0	
10427	User's Accreditation Training on PATAS Premium		GEODATA		67	\N	2014-05-23	2014-05-23	\N	0	0	0	
10430	Information Collection seminar		Reservist of the Philippine Army		293	\N	2016-10-28	2016-10-28	\N	0	0	0	
10431	Distance Learning Program on Personel Administration		Civil Service Commission		293	\N	2014-03-08	2014-03-15	\N	0	0	0	
12287	Seminar on Estimate  & Material Take-Off  Residential and Commercial Electrical System and Common Provisions of PEC for Residential and Commercial Design	Technical	IIEE & UAP Balanga Chapter		1052	\N	2014-03-01	2014-03-01		0	0	0	Technical
12288	40th UAP National Convention Seminar		United Archetect of the Philippines		1052	\N	2014-04-09	2014-04-12		0	0	0	
12289	The Building Blocks of an Architectural Firm	Managerial			1052	\N	0001-01-01	0001-01-01		0	0	0	Managerial
3041	Leave Administration Course For Effectiveness		CSC-RO3		2092	\N	2007-11-06	2007-11-07	\N	0	0	0	
12290	Technology & Business of Design	Technical			1052	\N	0001-01-01	0001-01-01		0	0	0	Technical
12291	Finding OBO: The Ease of Getting Construction Permits in the Philippines	Technical			1052	\N	0001-01-01	0001-01-01		0	0	0	Technical
12292	LAWS: It's All Geek To Me	Supervisory			1052	\N	0001-01-01	0001-01-01		0	0	0	Supervisory
12293	Accounting, Finance and Taxation for Architects 	Managerial			1052	\N	0001-01-01	0001-01-01		0	0	0	Managerial
12294	Managing an Architectural Office	Managerial			1052	\N	0001-01-01	0001-01-01		0	0	0	Managerial
12295	The Practice Getting Projects	Technical			1052	\N	0001-01-01	0001-01-01		0	0	0	Technical
12296	Professionalism and Ethics in the Practice	Managerial			1052	\N	0001-01-01	0001-01-01		0	0	0	Managerial
12297	Archion Architects: Out of the Box Practices	Technical			1052	\N	0001-01-01	0001-01-01		0	0	0	Technical
12298	PICE 44th National Convention	Technical	PICE National 		1081	\N	2018-10-29	2018-10-31	20	0	0	0	Technical
3423	Legal Apprenticeship	Intern	Ateneo Legal Service Center		2104	\N	2015-06-02	2015-07-15	\N	0	0	0	Intern
12299	Follow-Through Activity on Local Road Mapping Using the Unified Mapping Program (UMPP of NAMRIA)	Technical	DILG-Bataan		1081	\N	2018-09-12	2018-09-13	16	0	0	0	Technical
12300	Workshop on Unified COnstruciton Fee f Infrastucture Projects	Supervisory	Provincial Governement of Bataan		1081	\N	2018-05-17	2018-05-18	16	0	0	0	Supervisory
12301	Seminar of Anti-trafficking in Person and Anti-Violence against Women and their Children	Managerial	Provincial Government of Bataan		1081	\N	2018-05-11	2018-05-12	16	0	0	0	Managerial
12303	PICE 43rd National Convention	Technical	PICE National		1081	\N	2018-11-28	2018-11-30	20	0	0	0	Technical
12304	Seminar on Effectiveness and Magna Carta for Women	Managerial	Provincial Government of Bataan		1081	\N	2017-10-27	2017-10-28	16	0	0	0	Managerial
12305	Updating of Local Road Network Development Plan for PLGU's	Technical	 DILG		1081	\N	2017-05-29	2017-06-02	32	0	0	0	Technical
12306	Training-Workshop of Engineering Survey and Drainage Design	Technical	DILG		1081	\N	2017-04-24	2017-04-28	32	0	0	0	Technical
12307	Trainign Workshop On Statistical Tool for Agricultural Research	Technical	 BPSU Abucay		996	\N	2017-03-09	2017-03-10	16	0	0	0	Technical
12308	Seminar on Quail Production	Technical 	Chowking Balanga		996	\N	2016-09-10	2016-09-10	8	0	0	0	Technical 
2192	38TH ANNUAL NATIONAL CONVENTION THEME: "BUILDING GLOBAL PARTNERSHIPS THROUGH KNOWLEDGE SHARING"	TECHNICAL 	GOVERNMENT ASSOCIATION OF CERTIFIED PUBLIC ACCOUNTANTS		574	\N	2016-04-27	2016-04-30	\N	0	0	0	TECHNICAL 
2193	FINANCIAL MANAGEMENT TRAINING FOR LOCAL GOVERNMENT UNITS 	TECHNICAL 	DEPT. OF AGR, PRDP RPCO - 3		574	\N	2016-05-18	2016-05-20	\N	0	0	0	TECHNICAL 
2194	TRAINING/WORKSHOP FOR THE DRAFTING OF IMPLEMENTATION MANAGEMENT AGREEMENT (IMA) AND SCHEDULES 	TECHNICAL 	DEPT OF AGR, PRDP RPCO-3		574	\N	2016-08-30	2016-08-31	\N	0	0	0	TECHNICAL 
2195	CLUSTER TRAINING FOR THE PROVINCIAL ROLL-OUT OF THE LGU INTEGRATED FINANCIAL TOOLS (LIFT)	TECHNICAL	DEPARTMENT OF FINANCE, BUREAU OF LOCAL GOVERNMENT FINANCE 		574	\N	2016-11-08	2016-11-10	\N	0	0	0	TECHNICAL
2196	TRAINING CONSULTATION DIALOGUE WITH LOCAL GOVERNMENT UNITS	TECHNICAL	DEPARTMENT OF SOCIAL WELFARE AND DEVELOPMENT - REGIONAL OFFICE III		574	\N	2016-11-16	2016-11-17	\N	0	0	0	TECHNICAL
2198	84TH NATIONAL CONVENTION AND SEMINAR WORKSHOP "PHALSTRA: TOWARDS AN INNOVATIVE AND DYNAMIC REVENUE GROWTH INTEGRATED WITH THE GLOBAL ECONOMY"	TECHNICAL	PHILIPPINE ASSOCIATION OF LOCAL TREAURERS AND ASSESSORS (PHALTRA), INC. BUREAU OF LOCAL GOVERNMENT FINANCE (BLGF)		574	\N	2017-02-21	2017-02-24	\N	0	0	0	TECHNICAL
2199	"ISO 9001:2015 AWARENESS SEMINAR"	TECHNICAL 	NEO AMCA INNOVATIVE SOLUTIONS CORPORATION 		574	\N	2017-07-27	2017-07-27	\N	0	0	0	TECHNICAL 
2200	TRAINING ON RESOURCE MOBILIZATION AND FINANCIAL MANAGEMENT AND ANALYSIS FOR LOCAL GOVERNMENT 	SUPERVISORY	DILG- LOCAL GOVERNMENT ACADEMY		574	\N	2017-08-08	2017-08-11	\N	0	0	0	SUPERVISORY
2201	TREASURY OPERATIONS SUPPORT SYSTEM	TECHNICAL	GEODATA SOLUTIONS INC		574	\N	2017-10-06	2017-10-06	\N	0	0	0	TECHNICAL
2202	2017 PACTAP NATIONAL CONVENTION WORKSHOP "STRONG, VIBRANT AND RESILIENT @ 15 IN HELPING BUILD ECONOMY"	TECHNICAL 	PACTAP - BLGF		574	\N	2017-11-20	2017-11-22	\N	0	0	0	TECHNICAL 
2203	CY 2017 REGIONAL CONFERENCE SEMINAR 	TECHNICAL 	PHALTRA, INC-BLGF		574	\N	2018-03-06	2018-03-09	\N	0	0	0	TECHNICAL 
2204	40TH ANNUAL NATIONAL CONVENTION & SEMINAR "SUSTAINING UNITY IN NATION-BUILDING THROUGH SERVICE, HARMONY AND INNOVATION TO NURTURE ECONOMY (SUNSHINE)"	TECHNICAL 	GACPA		574	\N	2018-05-23	2018-05-26	\N	0	0	0	TECHNICAL 
2205	WORKSHOP/TRAINING ON THE FORMULATION OF PROVINCIAL GOVERNANCE REFORMS ROADMAPS (PGRR) ON LOCAL ROAD MANAGEMENT AND PUBLIC FINANCIAL MANAGEMENT 	TECHNICAL	DILG		574	\N	2018-07-24	2018-07-27	\N	0	0	0	TECHNICAL
2206	FOLLOW THROUGH ACTIVITY ON THE FINALIZATION OF THE PROVINCIAL GOVERNANCE REFORM ROADMAP (PGRR) AND THE CONDUCT OF LOCAL ROAD PERFORMANCE ASSESSMENT THROUGH A FOCUS GROUP DISCUSSION	TECHNICAL	DILG R III		574	\N	2018-10-10	2018-10-11	\N	0	0	0	TECHNICAL
2217	SEMINAR/TRAINING FOR THE UPDATES ON THE REVISED IMPLEMENTING RULES AND REGULATIONS OF REPUBLIC ACT NO. 9184	TECHNICAL	PROVINCIAL GOVERNMENT OF BATAAN		573	\N	2017-04-20	2017-04-21	\N	0	0	0	TECHNICAL
10468	Basic Life Support Training (BLST)		Bataan General Hospital (BGH)		294	\N	2018-08-20	2018-08-20	\N	0	0	0	
10469	Work Credit Enhancement Program		Phil. Refugee Processing Center 		294	\N	1992-06-22	1992-06-22	\N	0	0	0	
2222	PICPA 72ND ANNUAL NATIONAL CONVENTION 	TECHNICAL 	PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS (PICPA)		573	\N	2017-11-22	2017-11-25	\N	0	0	0	TECHNICAL 
2223	REVENUE TARGET SETTING ACTIVITY 	TECHNICAL 	BUREAU OF LOCAL GOVERNMENT FINANCE III, DEPARTMENT OF FINANCE 		573	\N	2018-01-30	2018-01-30	\N	0	0	0	TECHNICAL 
2224	INAUGURAL TRAINING PROGRAM OF THE PHILIPPINE TAX ACADEMY	TECHNICAL	DEPARMENT OF FINANCE AND PHILIPPINE TAX ACADEMY		573	\N	2018-02-27	2018-03-01	\N	0	0	0	TECHNICAL
2225	LEADERSHIP TRAINING ON THE 7 HABITS OF HIGHLY EFFECTIVE GOVERNMENT LEADERS	MANAGERIAL	CIVIL SERVICE INSTITUTE		573	\N	2018-05-29	2018-05-31	\N	0	0	0	MANAGERIAL
2226	PICPA 73RD ANNUAL NATIONAL CONVENTION	TECHNICAL	PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS (PICPA)		573	\N	2018-11-22	2018-11-24	\N	0	0	0	TECHNICAL
2227	REGIONAL YEAR-END CONFERENCE OF TREASURERS AND ASSESSORS OF REGION III	TECHNICAL 	BUREAU OF LOCAL GOVERNMENT FINANCE III, DEPARTMENT OF FINANCE 		573	\N	2018-12-04	2018-12-06	\N	0	0	0	TECHNICAL 
12309	Implementation of Provincial Ordinance on Poultry and Piggery Project	Technical	BPSU Abucay		996	\N	2016-09-08	2016-09-08	4	0	0	0	Technical
12310	Updates and Implementation of Newly Approved Laws and Bills for Integrated Growth and Development of the Agricultural Engineering Profession in the Philippines	Technical	BPSU Abucay		996	\N	2016-09-08	2016-09-08	8	0	0	0	Technical
2653	Mandatory Legal Continuing Education (2017)		IBP National 		2056	\N	0001-01-01	0001-01-01	\N	0	0	0	
2654	Mandatory Continuing Legal Education (2016)		UP Law Office 		2056	\N	0001-01-01	0001-01-01	\N	0	0	0	
2656	Communication Development Training (Oral and Written) 		Provincial Human Resource Management Office 		2056	\N	2017-11-09	2017-11-10	\N	0	0	0	
2657	ROLL-OUT TRAINING ON BUDGET OPERATIONS MANUAL FOR LGUs 2016 EDITION, MANILA ON SETTING UP AND OPERATION OF LOCAL ECONOMIC ENTERPRISES AND LOCAL GOVERNMENT INTERNAL AUDIT MANUAL		DEPARTMENT OF BUDGET AND MANAGEMENT REGIONAL OFFICE III AND ASSOCIATE OF LOCAL BUDGET OFFICER IN REGION III		2056	\N	2017-02-27	2017-03-01	\N	0	0	0	
2693	ADVANCE POLICY MAKER SEMINAR 		SAN PABLO WATER DISTRICT		2060	\N	2011-02-22	2011-02-24	\N	0	0	0	
2694	BASIC POLICY MAKER SEMINAR 		BAGUIO CITY WATER DISTRICT 		2060	\N	2011-03-23	2011-03-25	\N	0	0	0	
2695	EXECUTIVE COURSE ONJ ADMINISTRATIVE JUSTICE & EFFECTIVE REMEDIES ON AUDIT DISALLOWANCES 		JPLCV CENTER FOR ACADEMIC VALUES FOUNDATION, INC.		2060	\N	2012-06-19	2012-06-21	\N	0	0	0	
2696	CORPORATE GOVERNANCE MRES MANAGEMENT FOR BANKS AND QUASI BANKS 		ATENEO BUSINESS SCHOOL		2060	\N	2012-09-07	2012-09-08	\N	0	0	0	
2697	132ND AWWA ANNUAL CONFERENCE AND EXPOSITION 		PWWA/AWWA		2060	\N	2013-06-09	2013-06-13	\N	0	0	0	
2088	Tax Updates  on Implementation of TRAIN in A, Overview of 1B and Train 2 		Philippine Institute of Certified Public Accountants (PICPA)		21	\N	2018-11-17	2018-11-17	\N	0	0	0	
2089	AGAP Convention-Seminar" Maginhawa,Matatag at Panatag na Buhay: Ambisyon Nating Tunay"		Association of Government Accountants of the Philippines, Inc. (AGAP)		21	\N	2018-10-17	2018-10-20	\N	0	0	0	
2090	Seminar-Workshop on the Development of Cutomized Provincial Procurement Operations Manual (CPPOM) under the CMGP Program		Department of the Interior and Local Government (DILG)		21	\N	2018-07-23	2018-07-27	\N	0	0	0	
2092	Tax Update- Tax Aceleration for Inclussion or TRAIN 		Philippine Institute of Certified Public Accountants (PICPA)		21	\N	2018-03-24	2018-03-24	\N	0	0	0	
2093	General Accounting and Auditing System (Modules:Disbursement Voucher & Journal Entry Voucher )		Geodata Solutions Inc. 		21	\N	2017-12-12	2017-12-13	\N	0	0	0	
1711	Financial Management Training 		Department of Agriculture - Regional Project Coordination Office III		16	\N	2017-10-09	2017-10-10	\N	0	0	0	
1713	Disbursement Transactions of the Provincial Government 		Provincial Government of Bataan 		16	\N	2014-05-09	2014-05-09	\N	0	0	0	
1714	8th Northern Luzon Geographical Conference		Philippine Association of Local Government Accountant's Inc. 		16	\N	2014-03-12	2014-03-14	\N	0	0	0	
1715	Records Management 		Provincial Cooperative Development Office 		16	\N	2013-09-06	2013-09-06	\N	0	0	0	
1716	Strategic Planning 		Provincial Cooperative Development Office 		16	\N	2013-08-28	2013-08-29	\N	0	0	0	
1717	7th Northern Luzon Geographical Conference 		Philippine Association of Local Government Accountant's Inc. 		16	\N	2013-03-11	2013-03-13	\N	0	0	0	
2094	Developing Customer Driven Client Solutions 		Philippine Institute of Certified Public Accountants (PICPA)		21	\N	2017-11-25	2017-11-25	\N	0	0	0	
6728	Trafficking in Person and Anti-Violence Against Women and Their Children				312	\N	2018-05-11	2018-05-12	\N	0	0	0	
12311	Seminar on Mushroom Production	Technical	BRGY.Hall Gabon Abucay Bataan		996	\N	2016-09-02	2016-09-02	8	0	0	0	Technical
8298	MDC Pilot Capability Building Seminar Workshop for Provincial / City Mining Regulatory Board, Local Government Units and Desk Officers		Mining Development Council Office of the President		357	\N	2006-12-13	2006-12-14	\N	0	0	0	
2400	TREASURY OPERATIONS SUPPORT SYSTEM 	TECHNICAL 	GEODATA SOLUTIONS INC. 		588	\N	2017-10-06	2017-10-06	\N	0	0	0	TECHNICAL 
8299	Capability Building Workshop on Coastal Zoning and Seause Plan or the Province of Bataan		Bataan Integrated Coastal  Management Program 		357	\N	2005-11-07	2005-11-08	\N	0	0	0	
12312	AE Competitive to Agro Fishery Industry in the Asean Community	Technical	BPSU Abucay		996	\N	2014-01-22	2014-01-22	8	0	0	0	Technical
8308	2nd LEG of Pamana: World Heritage and Biosphere Reserve Nomination Series		United Nations Educational, Scientific and Cultural Organization (UNESCO) World Heritage center Philippines		354	\N	2016-09-15	2016-09-16	\N	0	0	0	
8309	Training Workshop on Geographic information System (GIS)for Talisay Watershed		Provincial Environment and Natural Resources Office Bataan		354	\N	2016-07-27	2016-07-30	\N	0	0	0	
8310	Protected Area Business Planning Orientation Workshop		Biodiversity Management Bureai- Department of Environment and Natural Resources		354	\N	2015-11-12	2015-11-13	\N	0	0	0	
8311	Participatory Community Biodiversity Mapping of Bataan National Park Buffer Zone		Biodiversity Management Bureai- Department of Environment and Natural Resources		354	\N	2015-10-23	2015-10-23	\N	0	0	0	
8368	Basic Life Support - Cardio Pulmonary Resuscitation		Philippine Red Cross - Bataan Chapter		1106	\N	2013-04-04	2013-04-06		0	0	0	
8369	First Aid		Philippine Red Cross - Bataan Chapter		1106	\N	2013-04-01	2013-04-04		0	0	0	
8451	Basis Life Support and Fist Aid Training		Red Cross/PDRRMO		1108	\N	2018-11-20	2018-11-23		0	0	0	
8452	Provider Inititated HIV COunseling and Testing Training		DOH - PBSP		1108	\N	2018-07-11	2018-07-13		0	0	0	
12313	Training Cum  Seminar Fire Drill, Earthquake Drill and First Aid	Technical	BPSU Abucay		996	\N	2018-04-11	2018-04-12	16	0	0	0	Technical
12314	Seminar on Anti-Trafficking in PErson and anti-Violence Against Women and Their Children	Technical	Subic Villas Olongapo		996	\N	2018-04-11	2018-04-12	16	0	0	0	Technical
6729	Radio Communication Registration and Licensing (Restricted Land Mobile) Radio Telephone Operator for Land Mobile Services (Certificate)		National Telecommunication Commission- TNC		421	\N	2017-08-10	2017-08-10	\N	0	0	0	
6730	Enhance TMA Training (Text Message Alert System)		AVI Corporation		421	\N	2017-08-10	2017-08-10	\N	0	0	0	
8453	Advanced Cardiac Life Support		American Safety & Health Institute		1108	\N	2018-01-27	2018-01-28		0	0	0	
8454	Basic Life Support (G2015)		American Safety & Health Institute		1108	\N	2018-01-27	2018-01-27		0	0	0	
8456	16Th Post-Graduate Course in Basic Occupational Safety & Health For Nurses		Occupational Health Nurses Association of Nursing Service Administratotrs of the Philippines		1108	\N	2013-12-04	2013-12-06	24	0	0	0	
8457	14th Post Grduate Course in Basic Occupational Safety and Health for Nurses		Occupational Health in Nurses Association of the Philippines		1108	\N	2013-04-01	2013-04-06	50	0	0	0	
8948	Recognition and Management of Acute Coronary Syndrome		CPR Pro Medical Training and Learning Institute		1133	\N	2018-03-25	2018-03-25		0	0	0	
8949	Airway Adjuncts, Endotracheal Intubation and Management in ACLS		CPR Pro Medical Training and Learning Institute		1133	\N	2018-03-25	2018-03-25		0	0	0	
12315	Follow Through Training on Internal Audit: Institutionalizing Key LGU Internal Control Systems Through Effective Documentation	Technical	Vista Marina Hotel and Resort, Subic Bay Freeport Zone, Olongapo City		996	\N	2018-11-27	2018-11-28	16	0	0	0	Technical
12316	Follow Through Activity on Local Road Management 	Technical	Hotel Eurosia Don Juico Avenue, Angeles City, Pampanga		996	\N	2018-12-10	2018-12-11	16	0	0	0	Technical
2095	Business Model of the Future "The Role of Professional Accountants"		Philippine Institute of Certified Public Accountants (PICPA)		21	\N	2017-11-25	2017-11-25	\N	0	0	0	
2096	Sustainability Reporting		Philippine Institute of Certified Public Accountants (PICPA)		21	\N	2017-11-25	2017-11-25	\N	0	0	0	
2097	Taxes: The Road Ahead 		Philippine Institute of Certified Public Accountants (PICPA)		21	\N	2017-11-25	2017-11-25	\N	0	0	0	
2098	Regional Presentations / Fellowship		Philippine Institute of Certified Public Accountants (PICPA)		21	\N	2017-11-24	2017-11-24	\N	0	0	0	
2099	From Compliance to Competence: Restructuring the CPD Program		Philippine Institute of Certified Public Accountants (PICPA)		21	\N	2017-11-24	2017-11-24	\N	0	0	0	
4353	Pharmacy Service Going Beyond Medicine		Philippine Pharmaceutical Association		2124	\N	2018-08-11	2018-08-11	\N	0	0	0	
4354	Hospital Pharmacy  Practice: Skyward to Optimum Patient Care		Philippine Society of Hospital Pharmacy		2124	\N	2018-03-01	2018-03-03	\N	0	0	0	
4355	Aligning Pharmacy Practice with Current Regulatory Reforms		Bataan Peninsula State University.		2124	\N	0001-01-01	0001-01-01	\N	0	0	0	
8950	Basic ECG and Dysrhythimia		CPR Pro Medical Training and Learning Institute		1133	\N	2018-03-25	2018-03-25		0	0	0	
8951	Recognition and Management of Acute Ischemic Stroke Cardiovascular care		CPR Pro Medical Training and Learning Institute		1133	\N	2018-03-25	2018-03-25		0	0	0	
1826	Capacity Development-Proper Grooming and Work Attitude Values Enhancement 	Supervisory	Mr. Alfredo Solomon Jr.		1774	\N	2017-10-24	2017-10-30	\N	0	0	0	Supervisory
1827	Phil. Redcross Basic Life Support-(COPR) Training for adult-Lay Rescuers		Phil. Red Cross-Bataan		1774	\N	2017-11-24	2017-11-24	\N	0	0	0	
1828	Team Effectiveness and Magna Carta for Women	Technical			1774	\N	2017-11-17	2017-11-17	\N	0	0	0	Technical
1830	Anti-Trafficking in Person and Anti-Violence Against Women and their Children	Supervisory			1774	\N	2018-04-20	2018-04-21	\N	0	0	0	Supervisory
1831	Bomb Threat Awareness Seminar	Supervisory	Bataan PNP		1774	\N	2018-04-27	2018-04-27	\N	0	0	0	Supervisory
1832	Fundamental Guard Knowledge and Gun Handling and Safety Firing		Lockheed Training School		1775	\N	2009-10-05	2009-10-10	\N	0	0	0	
1833	Bomb Identication Improvised Explosive Device (IED)		PNP		1775	\N	2010-03-24	2010-03-25	\N	0	0	0	
1834	In-ServiceTraining (In House Refresher Seminar		Lockheed		1775	\N	2012-09-10	2012-09-11	\N	0	0	0	
1835	Radio Communication and Licensing (Restricted Land Mobile Radio Telephone Operation for Land Mobile Services (RLM Certificate)		National Telecommunication Commission		1775	\N	2017-08-10	2017-08-10	\N	0	0	0	
1836	Phil. Red Cross Basic Life Support				1777	\N	2017-11-24	2017-11-24	\N	0	0	0	
1838	CPR Training				1777	\N	2018-02-16	2018-02-16	\N	0	0	0	
1839	Anti-Violence Against Women and their Children				1777	\N	2018-04-20	2018-04-20	\N	0	0	0	
4126	LATER DAY SAINT		GOV. ABET GARCIA		96	\N	2015-04-06	2015-04-08	\N	0	0	0	
1859	Professional Empowerment Through Teamwork		Bataan Peninsula State of University		1785	\N	2015-01-30	2015-01-30	\N	0	0	0	
1860	Development of Managerial Skills		Bataan Peninsula State of University		1785	\N	2015-01-30	2015-01-30	\N	0	0	0	
1861	Seminar of E-Marketing as an Effective Strategy for MSMEs (Website/Social Media)		Department of Trade and Industry		1785	\N	2017-02-21	2017-02-21	\N	0	0	0	
1862	How to Start a Business		Department of Trade and Industry		1785	\N	2017-03-04	2017-03-04	\N	0	0	0	
12317	Radio Communication Registration & Licensing/NTC		NTC		1738	\N	2017-08-20	2017-08-20		0	0	0	
12318	NCII Driving		Tesda		1738	\N	2018-09-09	2018-09-23		0	0	0	
12328	Achieving Good Vibes in our Dental Practice		University of the Philippines Dental Alumni Association		1415	\N	2018-10-21	2018-10-21	\N	0	0	0	
12329	Basic Life Support Training, First-Aid		Bataan Dental Chapter		1415	\N	2018-07-11	2018-07-11	\N	0	0	0	
12330	 Data Privacy Act and Safeguarding Patient's Data		University of the Philippines Dental Alumni Association		1415	\N	2018-06-27	2018-06-27	\N	0	0	0	
12331	1st Dr. Primo E. Gonzales Memorial Lecture		Bataan Dental Chapter		1415	\N	2018-06-18	2018-06-18	\N	0	0	0	
12332	4th Internationa River Summit	Technical	Department of Environment and Natural Resources		362	\N	2018-11-22	2018-11-24	24	0	0	0	Technical
12333	Orientation/Workshop on Regional Cave Strategy & Action Plan Cum Gender Development	Technical	Department of Environment and Natural Resources		362	\N	2018-07-16	2018-07-18	24	0	0	0	Technical
2113	"Updates on Bureau of Internal Revenue Rules and Regulations", Philippine Financial Reporting Standards" and "ISA: Making Governance a Shared responsibility"				21	\N	2017-07-19	2017-07-19	\N	0	0	0	
12334	Attented and Participipated in the Preparation of the 6th National Report (6NR) To the Convention on Biological Diversity (CBD) and Localization of the Philippine Strategy and Action Plan (PBSAP 2015-20128)	Technical	Department of Environment and Natural Resources-BMB		362	\N	2018-06-25	2018-06-27	24	0	0	0	Technical
12335	Seminar-Workshop for Marine Turtle Conservation & Hatchery Establishment & Management	Technical	Department of Enviroment and Natural Resources		362	\N	2014-10-28	2014-10-29	16	0	0	0	Technical
12336	Training Seminar Wildlife Law Enforcement and Other Related Laws for Wildlife Enforcement Officers (WEO's) and Selected DENR Frontline in the Province of Bataan	Technical	Department of Environment and Natural Resources		362	\N	2014-10-28	2014-10-29	16	0	0	0	Technical
12337	Capacity Building on Community Based Integrated Pest	Technical	Department of Environment and Natural Resources (FRDC)		362	\N	2013-05-08	2013-05-10	24	0	0	0	Technical
12338	DAO 97-32	technical	Department of Environment and Natural Resources (FMS)		362	\N	2013-04-11	2013-04-12	16	0	0	0	technical
12339	Orientation, Training, Cum Workshop for NGP Implementers	Technical	Department of Environment and Natural Resources		362	\N	2012-05-28	2012-06-01	40	0	0	0	Technical
12341	Anti Trafficking in Person and Anti - Violence Against Women and Their Children		Provincial Engineers Office		298	\N	2018-05-11	2018-05-12	\N	0	0	0	
4913	Usapang Sessions And Free Family Planning Services		Bataan Peninsula State University		184	\N	2018-09-28	2018-09-28	\N	0	0	0	
2207	SEMINAR WORKSHOP ON STRATEGIC PERFORMANCE MANAGEMENT SYSTEM (SPMS)	SUPERVISORY 	CIVIL SERVICE COMMISSION, REGIONAL OFFICE III		573	\N	2013-10-29	2013-10-29	\N	0	0	0	SUPERVISORY 
2100	Amendments to the Corporate Governance Code: Weighing the Challenges and Issues		Philippine Institute of Certified Public Accountants (PICPA)		21	\N	2017-11-24	2017-11-24	\N	0	0	0	
2101	Digital Transformation Imperative to the Accounting Proffession 		Philippine Institute of Certified Public Accountants (PICPA)		21	\N	2017-11-24	2017-11-24	\N	0	0	0	
2102	The Parable of the Sadhu: Ethics in the Real World		Philippine Institute of Certified Public Accountants (PICPA)		21	\N	2017-11-24	2017-11-24	\N	0	0	0	
2103	The Journey of an Unexpected Leader		Philippine Institute of Certified Public Accountants (PICPA)		21	\N	2017-11-24	2017-11-24	\N	0	0	0	
12321	Primavera P6 R8.2	Technical	ICAD Training Center		994	\N	2015-02-15	2015-02-22	30	0	0	0	Technical
12322	Auto CADD 2014 With Color Rendering	Technical	 Microcadd Insitute Inc.		994	\N	2014-08-07	2014-08-08	94	0	0	0	Technical
12323	STAAD. PRO v8i	Technical	Microcadd Insitute Inc.		994	\N	2014-06-07	2014-07-27	30	0	0	0	Technical
12324	Comprehensive Brdige Engineering	Technical	FEU- East Asia College		994	\N	2013-07-31	2013-07-31	8	0	0	0	Technical
12325	Technology for the Prevention of Detorioration of Concrete Stractures	Technical	FEU-East Asia College		994	\N	2013-07-24	2013-07-24	8	0	0	0	Technical
12326	Wastewater Engineering:Septage Management	Technical	FEU-East Asia College		994	\N	2013-07-24	2013-07-24	8	0	0	0	Technical
12327	the 8th Annual Civil Engineering Talk	Technical	Blue Ocean Chemtrade, Incorporated		994	\N	2012-02-18	2012-02-18	8	0	0	0	Technical
12340	Natrional Certificate II Driving		Technical Education and Skills Development Authority		1649	\N	0001-01-01	0001-01-01	\N	0	0	0	
4964	23RD MIDYEAR CONVENTION		PHILIPPINE ASSOCIATION OF MEDICAL TECHNOLOGY		189	\N	2018-05-10	2018-05-12	\N	0	0	0	
4965	QUALITY IMPRESIVEMENT TRAINING WORKING ON HEMATOLOGY		PHILIPPINE ASSOCIATION OF MEDICAL TECHNOLOGIST		189	\N	2018-05-09	2018-09-11	\N	0	0	0	
2106	Opening Ceremony		Philippine Institute of Certified Public Accountants (PICPA)		21	\N	2017-11-23	2017-11-23	\N	0	0	0	
1919	On The Job Training (RTC)				742	\N	2003-12-01	2004-01-05	\N	0	0	0	
1936	Treasury Operations Support System (TOSS)		Geodata Solutions INC		748	\N	2017-06-10	2017-06-10	\N	0	0	0	
2107	Current State and Opportunities for the Filipino Professional 		Philippine Institute of Certified Public Accountants (PICPA)		21	\N	2017-11-23	2017-11-23	\N	0	0	0	
2108	What's New with Standard-Settlers and Regulators 		Philippine Institute of Certified Public Accountants (PICPA)		21	\N	2017-11-23	2017-11-23	\N	0	0	0	
1943	Orientation on GAD Basic Concepts and Issue Cum Team Building of Sangguniang Panlalawigan Staff	Technical	Provincial Government of Bataan		752	\N	2016-05-27	2017-05-28	\N	0	0	0	Technical
1944	Information Technology Literacy Program (Computer Fundamentals)	Tehcnical 	Overseas Workers Welfare Administration - RWO III		752	\N	2015-08-10	2015-08-26	\N	0	0	0	Tehcnical 
1945	The Power Within: Empowering the Provincial Board Members Secretaries 	Technical	ACSerna Consultancy Co. / Provincial Government of Bataan		752	\N	2014-02-06	2014-02-07	\N	0	0	0	Technical
1949	WASAR Training		PDRRMO		1790	\N	2014-01-01	2014-01-01	\N	0	0	0	
1964	THE POWER WITHIN: EMPOWERING THE PROVINCIAL BOARD MEMBER SECRETARIES & THE SANGGUNIANG PANLALAWIGAN STAFF	TECHNICAL	AC SERNA CONSULTANCY/PROVINCIAL GOVERNMENT OF BATAAN		750	\N	2014-02-06	2014-02-07	\N	0	0	0	TECHNICAL
1965	DISBURSEMENT TRANSACTIONS OF THE PROVINCIAL GOVERNMENT OF BATAAN	TECHNICAL 	PROVINCIAL GOVERNMENT OF BATAAN		750	\N	2014-05-09	2014-05-09	\N	0	0	0	TECHNICAL 
1966	ORIENTATION ON GAD BASIC CONCEPTS & ISSUE CUM TEAM BUILDING OF SANGGUNIANG PANLALAWIGAN STAFF	TECHNICAL	PROVINCIAL GOVERNMENT OF BATAAN		750	\N	2016-05-27	2016-05-28	\N	0	0	0	TECHNICAL
6731	Community Based Disaster Risk Reduction and Management (CB-DRRM) Training of Trainors		Provincial Disaster Risk Reduction and Management Council`		421	\N	2016-05-23	2016-05-27	\N	0	0	0	
1991	Best Practice Of Philam Prof.		San Fernando, Pampanga		565	\N	1998-01-03	1998-01-03	\N	0	0	0	
1992	Employee Orientation		Labor Department/SBMA		565	\N	2000-01-03	2000-01-03	\N	0	0	0	
1993	Levant Sales Conference 		AGE Head Office/Lebanon		565	\N	2005-12-05	2005-12-09	\N	0	0	0	
1994	Software Desgin Inventory & Acctg. Module 		ARAB Gulf Educa.		565	\N	2006-08-15	2006-08-17	\N	0	0	0	
2109	"Transforming the Government Financial Sector in the Era of Asean Integration"		Association of Government Accountants of the Philippines, Inc. (AGAP_		21	\N	2017-10-18	2017-10-21	\N	0	0	0	
2110	General Accounting and Auditing System 		Geodata Solutions Inc.		21	\N	2017-10-10	2017-10-10	\N	0	0	0	
2111	Training on Mainstreaming Green Growth in Development Planning ( Part 1 )		Global Green Growth Institute		21	\N	2017-09-05	2017-09-07	\N	0	0	0	
2112	Provincial Leadership and Governance Program (PLGP) Core Group Meeting 		Department of Health Regional Office III		21	\N	2017-08-16	2017-08-16	\N	0	0	0	
2114	Consultative Meeting for Selected LGUs with Unutilized Fund 		Department oh Health Regional Office III		21	\N	2017-04-24	2017-04-24	\N	0	0	0	
1979	Seminar / Workshop on Effective Procedures in Managing Public Records		Government Records Officers's Association of the Philippines Inc. (GROAP)		17	\N	2018-10-15	2018-10-17	\N	0	0	0	
1981	Executive Briefing on Philippine Public Sector Accounting Standards 		Commission on Audit - Region III		17	\N	2015-12-08	2015-12-10	\N	0	0	0	
1982	Preparing for the Unexpected: The Financial Implication of Disaster Management 		Association of Government Accountants of the Philippines Incorporated 		17	\N	2014-10-21	2014-10-24	\N	0	0	0	
1983	How to Implement 5s in the Work Place 		Business Coach Incorporated Quality Business Training 		17	\N	2014-08-22	2014-08-22	\N	0	0	0	
1984	Capacity Building on Preparation of the SRE Through Reconciliation with New Government Accounting System 		Department of Finance - Bureau of Local Government Finance		17	\N	2012-06-13	2012-06-15	\N	0	0	0	
1985	Anti-Terrorism Bomb Detection and Awareness Seminar 		Provincial Disaster Coordinating Council 		17	\N	2005-03-18	2005-03-18	\N	0	0	0	
2116	Utilization Conference on the 2016 Seal of Good Local Governance Held at Lou-is Restaurant, City of Balanga Bataan 		Department of the Interior and Local Government (DILG)		21	\N	2017-02-27	2017-02-27	\N	0	0	0	
2117	71st PICPA  Annual National Convention Held at SMX Convention Center, SMX Premiere, Lanang Davao City		Philippine Institute of Certified Public Accountants (PICPA)		21	\N	2016-11-24	2016-11-26	\N	0	0	0	
2118	Supervisory Development Course Track I Held at Crown Royale Hotel City of Balanga, Bataan		Civil Service Commission- Region III		21	\N	2016-11-15	2016-11-17	\N	0	0	0	
2119	Seminar on Gender and Development at the Provincial Accountant's Office		Provincial Accountant's Office 		21	\N	2016-05-27	2016-05-27	\N	0	0	0	
2120	38th Annual National Convention with the Theme "Building Global Partnership Through Knowledge Sharing"		Government Association of Certified Public Accountant ( GACPA)		21	\N	2016-04-27	2016-04-30	\N	0	0	0	
2007	Seminar on Civil Service Law and Rules 		Civil Service Commission - Region III		18	\N	2011-03-09	2011-03-09	\N	0	0	0	
2008	Training Course - GAAMS,LAN		SPIDC / IBM Philippines Incorporated 		18	\N	2003-08-27	2003-08-27	\N	0	0	0	
2009	Stress Management and Self Empowerment		PICPA Bataan Cghapter Balanga City, Bataan 		18	\N	2003-03-28	2003-03-28	\N	0	0	0	
2123	Bolstering Good Governance Through Public Expenditure Management Reforms -AGAP Convention Seminar		Association of Government Accountants of the Philippines, Inc. (AGAP)		21	\N	2015-10-21	2015-10-24	\N	0	0	0	
2124	12th Anual National Conference : Strategic  Fiscal Management Towards Dynamic and Transparent Local Government Units"		Philippine Association of Local Government Accountants , Inc. (PHALGA)		21	\N	2015-05-26	2015-05-29	\N	0	0	0	
2125	Procurement Training for PPMIU and BAC of LGUs		Philippine Rural Development Project (PRDP)		21	\N	2015-04-14	2015-04-15	\N	0	0	0	
2126	69th PICPA Annual National Convention " Leap and Beat the Odds"		Philippine Institute of Certified Public Accountants (PICPA)		21	\N	2014-11-26	2014-11-29	\N	0	0	0	
2127	Preparing for the Unexpected: The Financial Implication of Disaster Management		Association of Government Accountants of the Philippines, Inc. (AGAP)		21	\N	2014-10-21	2014-10-24	\N	0	0	0	
2128	Orientation / Seminar on the Procedures for the Disbursement Transactions		Provincial Government of Bataan 		21	\N	2014-05-09	2014-05-09	\N	0	0	0	
2129	8th Northern Luzon  Geographical Conference 		Philippine Association of Local Government Accountants Inc. (PHALGA)		21	\N	2014-03-12	2014-03-14	\N	0	0	0	
2130	Compliance Seminar on Records Management		Provincial Cooperative Development Office ( PCDO)		21	\N	2013-09-06	2013-09-06	\N	0	0	0	
2131	Capacity Building on Preparation of the SRE through Reconciliation with NGAS		Bureau of Local Government Finance 		21	\N	2012-06-13	2012-06-15	\N	0	0	0	
2208	69TH PICPA ANNUAL NATIONAL CONVENTION	TECHNICAL 	PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS		573	\N	2014-11-26	2014-11-29	\N	0	0	0	TECHNICAL 
2209	4TH QUARTER REGIONAL CONFERENCE / WORKSHOP OF PROVINCIAL CITY/ MUNICIPAL TREASURES/ ASSESORS AND PRESIDENTS OF MUNICIPAL TREASURERS/ASSESSORS LEAGUE, REGION III	MANAGERIAL 	BUREAU OF LOCAL GOVERNMENT FINANCE III, DEPARTMENT OF FINANCE		573	\N	2014-12-09	2014-12-10	\N	0	0	0	MANAGERIAL 
2210	PROCUREMENT TRAINING FOR PPMIU & BAC OF LGUs	SUPERVISORY	DEPARTMENT OF AGRICULTURE - PHILIPPINE RURAL DEVELOPMENT PROEJCT UNDER REGIONAL PROJECT COORDINATION OFFICE III		573	\N	2015-04-14	2015-04-15	\N	0	0	0	SUPERVISORY
4546	BEMONC		DOH		2134	\N	2012-07-01	2012-07-09	\N	0	0	0	
4866	Advancing Midwifery Services by Practicing Quality Maternal Care and Values		The Intergrated Midvies Association of the Philippines Bataan Chapter		168	\N	2018-05-18	2018-05-18	\N	0	0	0	
3042	56th Philippine Hospital Association National Convention 		Philippine Hospital Association		2092	\N	2005-11-24	2005-11-25	\N	0	0	0	
3043	54th Philippine Hospital Association Annual Convention		Philippine Hospital Association		2092	\N	2004-11-21	2004-11-22	\N	0	0	0	
3044	Stress Management		PICPA		2092	\N	2004-08-22	2004-08-22	\N	0	0	0	
3045	Philippine Hospital Association Regular Seminar		Philippine Hospital Association		2092	\N	2004-07-27	2004-07-27	\N	0	0	0	
2259	Skills and Development Training Program on Lcoal Treasury & Assessment Operation Phase IV	Technical	Bureau of Local Government Finance Region III		580	\N	1996-02-26	1996-03-02	\N	0	0	0	Technical
2260	Seminar on Workshop on Team Development 	Technical	Office of the Treasurer		580	\N	2005-12-17	2005-12-17	\N	0	0	0	Technical
2262	Values Restoration Program Public Accountability & Values Enhancement 	Supervisory	Civil Service Commission Region III		580	\N	2018-07-18	2018-07-20	\N	0	0	0	Supervisory
2263	Regional Year End Conference of Treasurer and Assessors of Region III		Bureau of Local Government Finance Region III		580	\N	2018-12-04	2018-12-06	\N	0	0	0	
2700	COMERCIAL DISPUTE RESOLUTION 		PDRCI		2060	\N	2017-03-11	2017-03-11	\N	0	0	0	
2727	TRANSABNOMINAL INJURY 	SUPERVISORY	PHILIPPINE COLLEGE OF RADIOLOGY		2069	\N	2012-10-21	2012-10-24	\N	0	0	0	SUPERVISORY
2728	HOSPITAL ISO QMS 	SUPERVISORY	BATAAN GENERAL HOSPITAL 		2069	\N	2012-11-22	2012-11-23	\N	0	0	0	SUPERVISORY
2729	IMAGING OF INFECTIOUS DISEASE	SUPERVISORY	PHILIPPINE COLLEGE OF RADIOLOGY		2069	\N	2017-02-16	2017-02-18	\N	0	0	0	SUPERVISORY
2730	DIABETES IN CHILDREN 	SUPERVISORY	PHILIPPINE PEDIATRIC SOCIETY 		2069	\N	2017-02-20	2017-02-20	\N	0	0	0	SUPERVISORY
2761	Strategic Action Planning Workshop		Department of Tourism		654	\N	2012-07-04	2012-07-04	\N	0	0	0	
2762	Comprehensive Seminar on Housekeeping		Department of Tourism		654	\N	2009-08-06	2009-08-07	\N	0	0	0	
2763	6th Regional First Aid and Basic Life Support Olympics		Province of Bataan Philippine Red Cross		654	\N	2009-07-23	2009-07-23	\N	0	0	0	
2764	Basic Life Support Adult Lay Resuers		Philippine National Red Cross		654	\N	2009-07-13	2009-07-14	\N	0	0	0	
2766	First Water Search Rescue Simulation Exercise		Regional Disaster Coordinating Council Region IV		654	\N	2009-07-08	2009-07-08	\N	0	0	0	
2767	Water Search and Rescue Training for Flood/Landslide Incidents		Olongapo City Disaster Coordinating Council Disaster Management Office		654	\N	2009-05-25	2009-05-29	\N	0	0	0	
2768	Parcipatory Coastal Clean up Assessment (PCRA) Training for the Province of Bataan		Department of Environment and Natural Resources III		654	\N	2008-09-29	2008-10-02	\N	0	0	0	
2344	National Conference of PHALTRA 		Bureau of Local Government Finance - Manila		584	\N	2019-04-03	2019-07-03	\N	0	0	0	
2345	National Conference of Phaltra 		Bureau of Local Government Finance - Manila		584	\N	2003-06-05	2003-09-05	\N	0	0	0	
2346	Seminar Workshop on Tax Collection Strategies 		Bureau of Local Government Finance - San Fernando		584	\N	2003-07-10	2003-08-10	\N	0	0	0	
2347	Seminar Workshop on Revenue Mobilization for Local Assessment of Treasury Officials & Senior Personnel of Region III		Bureau of Local Government Finance - San Fernando		584	\N	2002-06-08	2002-07-08	\N	0	0	0	
3046	Hospital Anti- TB Program		Reg Health Office		2092	\N	2003-08-10	2003-08-12	\N	0	0	0	
3047	Fix Combination Anti -TB Drugs		Reg Health Office		2092	\N	2004-09-13	2004-09-14	\N	0	0	0	
3048	Seminar Workshop  on  Dm Family Physician		EU		2092	\N	2004-07-30	2004-07-31	\N	0	0	0	
3049	Lactation Management Education Training 		Reg Health Office		2092	\N	2001-08-10	2001-08-10	\N	0	0	0	
3050	50Th PHA Annual Convention		Philippine Hospital Association		2092	\N	1999-11-05	1999-11-06	\N	0	0	0	
3051	Regular Seminar Dialogue		Philippine Hospital Association		2092	\N	1988-10-03	1998-10-03	\N	0	0	0	
3052	PSA Midyear Post Graduate Convention In Anesthesia		Philippine Society Of Anesthesia		2092	\N	1998-05-17	1998-05-18	\N	0	0	0	
3053	27Th Annual Convention Phil Society Of Anesthesia		Philippine Society Of Anesthesia		2092	\N	1993-12-08	1993-12-09	\N	0	0	0	
3054	In- Service Training in Anesthesia		Department Of Health		2092	\N	1984-06-01	1984-12-31	\N	0	0	0	
3055	3rd Annual Convention Refresher Course		Philippine Society Of Anesthesia		2092	\N	1982-12-05	1993-12-06	\N	0	0	0	
3401	68TH Annual Convention- Philippin Society of Pathologists	Technical	Philippine Society Pathologists		2103	\N	2017-04-26	2017-04-28	\N	0	0	0	Technical
3402	65TH Annual Convention- Philippin Society of Pathologists	Technical	Philippine Society of Pathologists		2103	\N	2016-04-27	2016-04-29	\N	0	0	0	Technical
3403	64TH Annual Convention- Philippin Society of Pathologists	Technical	Philippine Society Of Pathologists		2103	\N	2015-04-22	2015-04-24	\N	0	0	0	Technical
3404	63rd Annual Convention- Philippin Society of Pathologists	Technical	Philippine Society Of Pathlogists		2103	\N	2014-04-23	2014-04-25	\N	0	0	0	Technical
3405	62nd Annual Convention- Philippin Society of Pathologists	Technical	Philippine Society Of Pathologists		2103	\N	2013-04-10	2013-04-12	\N	0	0	0	Technical
3425	Internship	Intern	Undersec. for Imigrant Workers Affairs/ Deperment of Foreign Affairs		2104	\N	2010-04-02	2010-06-02	\N	0	0	0	Intern
3444	Mandatory Continuing Legal Education		IBP, Chant Robles Law Offices, Up Diliman College Of Law		2105	\N	2003-01-02	2019-01-02	\N	0	0	0	
3596	MANDATORY CONTINUING LEGAL EDUCATION		ARELLANO LAW FOUNDATION		2114	\N	0001-01-01	0001-01-01	\N	0	0	0	
3597	LEGAL RESEARCH & WRITTINGS		SUPREME COURT		2114	\N	0001-01-01	0001-01-01	\N	0	0	0	
9873	Fundamentals Of Coop		PCEDO		2173	\N	2011-04-01	2011-04-02	16	0	0	0	
9874	Coop Management and Governance 		PCEDO		2173	\N	2011-05-03	2011-05-04	16	0	0	0	
9875	National Coop Summit		PCC		2173	\N	2017-10-01	2017-10-03	24	0	0	0	
9876	1st National forum of Accredited Training Providers		CDA		2173	\N	2013-04-30	2013-04-30	8	0	0	0	
9877	Trainers Training on Policy Development		PCDEO		2173	\N	2013-04-25	2013-04-25	4	0	0	0	
9878	Trainers Training on Project Proposal Writing		PCEDO		2173	\N	2013-04-25	2013-04-25	4	0	0	0	
9879	Trainers Training on Strategic Planning		PCEDO		2173	\N	2013-03-21	2013-03-22	16	0	0	0	
9880	Training on Coop Educ Transport Operations		PCEDO		2173	\N	2013-03-07	2013-03-08	16	0	0	0	
9881	Conflict Management Seminar		PCEDO		2173	\N	2012-11-16	2012-11-17	16	0	0	0	
9882	Seminar on Labor Laws		PCEDO		2173	\N	2012-10-30	2012-10-30	4	0	0	0	
9883	Seminar on Policy Development		PCEDO		2173	\N	2012-10-30	2012-10-30	4	0	0	0	
9884	Internal Control seminar		PCEDO		2173	\N	2012-10-15	2012-10-17	24	0	0	0	
9885	Basic Accounting for Non Accountants		PCEDO		2173	\N	2012-09-06	2012-09-08	24	0	0	0	
9886	Trainers Training on Enterpreneurship and Bus Management		PCEDO		2173	\N	2012-08-16	2012-08-24	24	0	0	0	
4548	DOTS TRAINING FOR REFFERING CARE PROVIDERS		PHIL CAT		2134	\N	2011-05-04	2011-05-04	\N	0	0	0	
4549	PRIMARY CARE SURGERY MODULE INTERACTIVE LECTURE AND SKILLS WORKSHOP		PHIL ACADEMY OF FAMILY PHYSICIAN		2134	\N	2011-07-02	2011-07-02	\N	0	0	0	
2359	WORK ATITTUDE AND VALUES ENHANCEMENT 	TECHNICAL	PROVINCIAL HUMAN RESOURCE MANAGEMENT OFFICE		585	\N	2016-06-20	2016-06-21	\N	0	0	0	TECHNICAL
2360	VALUES RESTORATION PROGRAM - PUBLIC ACCOUNTABILITY & VALUES ENHANCEMENT 	TECHNICAL	CIVIL SERVICE COMMISSION REGION III		585	\N	2017-11-18	2018-11-20	\N	0	0	0	TECHNICAL
2361	39TH ANNUAL NATIONAL CONVENTION & SEMINAR WITH THE THEME: "GACPA MOVING UP A NOTCH FOR NATION BUILDING" 	TECHNICAL	GOVERNMENT OF ASSOCIATION OF CERTIFIED PUBLIC ACCOUNTANTS, INC. 		587	\N	2018-05-24	2018-05-27	\N	0	0	0	TECHNICAL
2362	72ND PICPA ANNUAL CONVENTION (ANC) AT PHILIPPINE INTERNATIONAL CONVENTION CENTER (PICC)	TECHNICAL	PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS		587	\N	2017-11-22	2017-11-25	\N	0	0	0	TECHNICAL
2363	SEMINAR ON TAX UPDATE - TAX ACCELERATION FOR INCLUSION OR TRAIN	TECHNICAL 	ASIAN INSTITUTE OF TAXATION		587	\N	2018-03-24	2018-03-24	\N	0	0	0	TECHNICAL 
2364	04TH ANNUAL NATIONAL CONVENTION & SEMINAR WITH THE THEME: "SUSTAINING UNITY IN NATION - BUILDING THROUGH SERVICES, HARMONY AND INNOVATION IN NURTURE ECONOMY (SUNSHINE)	TECHNICAL 	GOVERNMENT ASSOCIATION OF CERTIFIED PUBLIC ACCOUNTANTS, INC. 		587	\N	2018-05-23	2018-05-26	\N	0	0	0	TECHNICAL 
2365	73RD PICPA ANNUL NATIONAL CONVENTION (ANC) AT BACOLOD CITY, NEGROS OCCIDENTAL 	TECHNICAL	PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS 		587	\N	2018-11-22	2018-11-24	\N	0	0	0	TECHNICAL
2394	WORKSHOP ON DEVELOPMENT 		PROVINCIAL TREASURER'S OFFICE 		588	\N	2007-12-07	2007-12-07	\N	0	0	0	
2395	eSRE ROLL OUT TRAINING 	TECHNICAL	BUREAU OF LOCAL GOVERNANCE FINANCE, REGION III		588	\N	2009-10-20	2009-10-22	\N	0	0	0	TECHNICAL
2396	CAPCAITY ON BUILDING AND PREPARATION OF THE eSRE THROUGH RECONCILIATION WITH NGAS	TECHNICAL 	BUREAU OF LOCAL GOVERNANCE FINANCE, REGION III		588	\N	2012-06-13	2012-06-15	\N	0	0	0	TECHNICAL 
2397	TRAINING OF THE TRAINORS ON THE DEPLOYMENT AND USE OF ELECTRONIC STATEMENT OF RECEIPTS AND EXPENDITURES VERSION 2.1 (eSRE V2.1) SYSTEM 	TECHNICAL 	BUREAU OF LOCAL GOVERNANCE FINANCE, REGION III		588	\N	2013-09-16	2013-09-20	\N	0	0	0	TECHNICAL 
2398	TRAINING WORKSHOP ON THE DEPLOYMENT AND USE OF ENHANCED ELECTRONIC STATEMENT OF RECEIPTS AND EXPENDITURES VERSION 2.1 (eSRE V2.1) SYSTEM FOR LGUs	TECHNICAL 	BUREAU OF LOCAL GOVERNANCE FINANCE, REGION III		588	\N	2014-09-08	2014-09-10	\N	0	0	0	TECHNICAL 
2399	CLUSTER TRAINING FOR THE ROLL-OUT OF LGU INTEGRATED FINANCIAL TOOLS (LIFT) TO THE PROVINCES	TECHNICAL 	BUREAU OF LOCAL GOVERNANCE FINANCE, REGION III		588	\N	2016-11-08	2016-11-10	\N	0	0	0	TECHNICAL 
2401	REFRESHER TRAINING TO THE PROVINCE FOR THE ROLL OUT OF THE LIFT SYSTEM - CLUSTER I 	TECHNICAL	BUREAU OF LOCAL GOVERNANCE FINANCE, REGION III		588	\N	2017-11-27	2017-11-30	\N	0	0	0	TECHNICAL
4129	Entreprenuership and Business Management 		Manila Waater Foundation 		57	\N	2017-03-24	2017-03-24	\N	0	0	0	
4130	Training of Trainors Capability Building and Executive Training on PMES 		LCDOP/CDA 		57	\N	2017-01-26	2017-01-27	\N	0	0	0	
4557	HUMAN IMMUNODEFICIENCY VIRUS (HIV)TRAINING		PROVINCIAL HEALTH OFFICE		497	\N	2018-03-07	2018-03-09	\N	0	0	0	
12353	Local Legislation for Development: Propel for the Best		Department of Interior and Local Government		2179	\N	2017-04-26	2017-04-28	24	0	0	0	
10481	Training on Good Agricultural Practices on fruits and Vegetable 		Department of Agriculture - Regional Field Office III		63	\N	2016-11-23	2016-11-25	\N	0	0	0	
10482	Training on Good Agricultural Practices on Mango Producction 		Provincial Agriculturist Office		63	\N	2016-11-03	2016-11-04	\N	0	0	0	
10483	Training on Good Angricultural Practices for Banana Production 		Provincial Agriculturist Office		63	\N	2016-06-28	2016-06-30	\N	0	0	0	
6732	Government Radio Operator Certificate (GRDC)`		National Telecommunication Commission- TNC		421	\N	2017-05-19	2017-05-19	\N	0	0	0	
6733	Disaster Preparedness Training on First Aid, Lifting and Moving, Bandaging With Basic Life Support		Provincial Disaster Risk Reduction and Management Council		421	\N	2015-02-13	2015-02-14	\N	0	0	0	
6734	USP Smart CAD Supervision, Admin Seminar		Smartmatic		421	\N	2015-06-24	2015-06-24	\N	0	0	0	
6735	3 Day Collapse Structure Search And Rescue And Vehicular Extrication Rescue Training		Olongapo City Risk and Reduction Office and Smart Guard		421	\N	2015-12-12	2015-12-14	\N	0	0	0	
6736	ASSR 201 and 202: Intermediate Staff Program		SGV and Co.		377	\N	2016-12-01	2016-12-01	\N	0	0	0	
6737	Tools and Techniques on Internal Auditing		Association of the Government Internal Audits		377	\N	2018-02-28	2018-03-02	\N	0	0	0	
6738	Seminar on Tax Updates		Philippine Institute of Certified Public Accountant		377	\N	2018-01-27	2018-01-27	\N	0	0	0	
3079	PEMSA Network Of Local Governments (PNLG)Forum 2013				2094	\N	2013-09-30	2013-10-02	\N	0	0	0	
3080	Dumpise Design & Management and Waste  Treatment Plant		Office of the provincial Governor of Bataan		2094	\N	0001-01-01	0001-01-01	\N	0	0	0	
3081	Farmer Field in School on Integrated Post  Management Program 		Department of Agriculture		2094	\N	0001-01-01	0001-01-01	\N	0	0	0	
3082	Delegate on the 85th International City / Country Management Association		ICMA Portlan, Oregon		2094	\N	1999-09-26	1999-09-29	\N	0	0	0	
3083	Values Orientation Workshop 		Civil Service Commission Region III		2094	\N	1999-06-01	1999-06-01	\N	0	0	0	
3084	Workshop on Presidential Executive Action For Coastal Resource Management				2094	\N	1999-05-26	1999-05-28	\N	0	0	0	
3085	Seminar on Technical Cooperation On Investment Promotion and EcoZone Development 		Department of Trade and Industry		2094	\N	1998-08-14	1998-08-16	\N	0	0	0	
3086	Seminar on Effective Legislation and Local Fiscal and Administration		DILG Region III		2094	\N	1995-10-01	1995-10-01	\N	0	0	0	
3087	Supervisory Training Program 		Development Academy Of the Philippines		2094	\N	1974-04-01	1974-04-04	\N	0	0	0	
3088	Food Storage Seminar		UNDP, Manila		2094	\N	1975-04-21	1975-04-25	\N	0	0	0	
3089	1st National Workshop on Rice Post Produciton Technology		N.G.A. - U.P. Los Banos		2094	\N	1975-08-17	1975-08-20	\N	0	0	0	
3090	Farm Storage/ Safety Symposium 		safety Organization of the Philippines		2094	\N	1975-11-18	1975-11-22	\N	0	0	0	
3091	FAO Workshop For Prevention of  Post Harvest  Rice Losses		FAO		2094	\N	1977-03-12	1977-03-30	\N	0	0	0	
3098	Semmianr On Project Feasibility Studies		NFA		2094	\N	0001-01-01	0001-01-01	\N	0	0	0	
3099	Seminar on Post Construction / Installation / Audit Of Post Harves And Processing Plants		NFA		2094	\N	0001-01-01	0001-01-01	\N	0	0	0	
4552	SOCIAL SYSTEMS THINGKING WORKSHOP, MODULE 1	TECHNICAL	NATIONAL RESILIENCY COUNCIL		2136	\N	2019-02-28	2019-03-01	\N	0	0	0	TECHNICAL
4553	TRAINING ON SDN REFERRAL SYSTEM	TECHNICAL	BATAAN GENERAL HOSPITAL AND MEDICAL CENTER		2136	\N	2019-02-15	2019-02-15	\N	0	0	0	TECHNICAL
4554	CONTINUOUS QUALITY IMPROVEMENT WORKSHOP/SEMINAR	TECHNICAL	PHILIPPINE SOCIETY FOR QUALITY IN HEALTHCARE		2136	\N	2018-03-21	2018-03-23	\N	0	0	0	TECHNICAL
4556	BLS/ACLS TRANING	TECHNICAL 	ASHI		2136	\N	2017-07-22	2017-07-23	\N	0	0	0	TECHNICAL 
12354	24th National Convention of Vice Mayor's League		Vice Mayor's League of the Philippines		2179	\N	2017-02-16	2017-02-18	24	0	0	0	
12355	Regular Regional Consultative Meeting and Workshop		Department of Interior and Local Government		2179	\N	2017-01-12	2017-01-12	8	0	0	0	
12356	Local Legislative Conference		Vice Mayor's League of the Philippines		2179	\N	2016-12-01	2016-12-03	24	0	0	0	
12358	Effective Local Legislation for Local Tourism and Development				2181	\N	0001-01-01	0001-01-01		0	0	0	
2402	ROLL-OUT TRAINING ON THE DEPLOYMENT AND USE OF THE eSRE VERSION 3 UNDER LIFT SYSTEM 	TECHNICAL	BUREAU OF LOCAL GOVERNANCE FINANCE, REGION III		588	\N	2018-03-21	2018-03-23	\N	0	0	0	TECHNICAL
2408	Workshop on Team Development 		Provincial Treasurer's Office 		589	\N	2005-12-17	2005-12-18	\N	0	0	0	
2409	Fundamentals of Cooperatives 		CEMBA		591	\N	2018-06-01	2018-06-06	\N	0	0	0	
2410	FINANCIAL MANAGEMENT 		CEMBA		591	\N	2017-10-03	2017-10-03	\N	0	0	0	
2411	RISK MANAGEMENT SEMINAR 		CEMBA		591	\N	2017-08-18	2017-08-18	\N	0	0	0	
2412	WORKSHOP ON TEAM DEVELOPMENT 		PROVINCIAL TREASURER'S OFFICE 		591	\N	2007-12-17	2007-12-17	\N	0	0	0	
2455	Supervisory Development Course (SDC) Track II	Supervisory	11142018		592	\N	2018-11-14	2019-11-16	\N	0	0	0	Supervisory
2456	Basic Training on Treasury Operations Support System	Technical 	GEODATA Solutions INC.		593	\N	2017-10-06	2017-10-06	\N	0	0	0	Technical 
3108	Enhanced Community Immersion Program		PEO		1819	\N	2018-02-16	2018-02-16	\N	0	0	0	
4146	Bomb Identification and IED		Bataan Police Provincial Office		443	\N	2009-03-24	2009-03-25	\N	0	0	0	
6739	Training-Workshop on the Implementation of Internal Audit for Provinces Under the CMGP Program		DILG and DBM		377	\N	2017-11-26	2017-11-30	\N	0	0	0	
4147	Water Search and Rescue Training for Flooding/Landslide Incidents		Olongapo City Disaster Management Office		443	\N	2009-05-25	2009-05-29	\N	0	0	0	
4150	Basic Life Support Adult-Lay Rescuers		Redcross		443	\N	2009-07-13	2009-07-14	\N	0	0	0	
4151	Re-Training Course		Augef Security Training Center Inc.		443	\N	2010-10-13	2010-10-15	\N	0	0	0	
4152	Gun Safety and Responsible Gun Handling with Live Firing		AMGSCOR Shooting Range		443	\N	2010-10-15	2010-10-15	\N	0	0	0	
4153	Orientation on Supervision and Team Management		Provincial Engineer's Office		443	\N	2011-09-15	2011-09-15	\N	0	0	0	
4154	Basic Life Support Training Lay Rescuer		DOH		443	\N	2009-12-11	2009-12-12	\N	0	0	0	
3324	Executive Role in the Internet Age, Advance Business Institue		Palisades NY, USA		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3325	IBM Tivoli Pulse, System Management Summit		Sentosa Singapore		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3326	Systems Automation Summit, Opto22		Temacula Ca, USA		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3327	Entrepreneurial Leadership and Strategic Management		AIM, Makati City		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3328	Capability Maturity Model Integration		LST, Pasig City		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3329	Service Level Management - WhiteStone Technologies		WST, Singapore		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3330	Doing Business in Tougher Times by Tom Peter's		Makati Shangri- La		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3331	E- Business University - IBM Software Group Asia Pacific		Shanghai China		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3332	IBM Advance Media Training, Quezon City  Philippines, Red Shoe Media		IBM Philippines.		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3333	The Future 3rd Generation Networks, Telefocal, Concorde Hotel Singapore		Singapore		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3334	IBM Integrated Costumer Management System		IBM New Zealand		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3335	CommunicAsia 2001		Singapore Expo Ctr		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3336	Tekecommunications Billing Show		KL, Malaysia		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3337	Succeeding as a CIO, Advance Business Institute		Palisades NY, USA		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3338	Designing A Multi- Channel Distribution Portal, IBM International E		Palisades NY, USA		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
4803	ALL CASE RATES		PHIC BAS		163	\N	2014-03-25	2014-03-25	\N	0	0	0	
4794	ORIENTATION OF HOSPITAL AMBULATORY SURGICAL CLINICS AND FREE STANDING DIALYSIS CLINCS		PHILHEALTH		163	\N	2016-05-19	2016-05-19	\N	0	0	0	
4795	ROUND TABLE DISCUSSION		PHILHEALTH		163	\N	2016-02-14	2016-02-14	\N	0	0	0	
4802	THE IMPORTANCE OF ANATOMY PHYSIOLOGY AND MEDICAL TERMINOLOGY ON HEALTH INFORMATION MANAGEMENT		NFHIMPI		163	\N	2014-09-04	2014-09-05	\N	0	0	0	
4807	PHILHEALTH DESK ORIENTATION		PHILHEALTH		163	\N	2012-03-23	2012-03-23	\N	0	0	0	
4797	ICD 10 TRAINING FOR MEDICAL RECORD OFFICER OF LGU HOSPITAL		PHILHEALTH		163	\N	2015-11-16	2015-11-20	\N	0	0	0	
4796	BAS UPDATEDS		DOH REGION III		163	\N	2016-12-09	2016-12-09	\N	0	0	0	
4809	NEW CASES RATES AND ECLAIMS		PHIILHEALTH		163	\N	2011-08-06	2011-08-06	\N	0	0	0	
4793	UPCM & ECLAIMS		PHILHEALTH-BAS SECTION		163	\N	2016-09-21	2016-09-21	\N	0	0	0	
4810	PHIC UPDATES		PHILHEALTH		163	\N	2009-12-04	2009-12-04	\N	0	0	0	
4804	ALL CASES RATES		PHILHEALTH		163	\N	2013-09-01	2013-09-01	\N	0	0	0	
4799	ICD TRAINING		NFHIMPI		163	\N	2015-05-25	2015-05-29	\N	0	0	0	
4939	Post Gramule Workshop		False RW Hospital		141	\N	2001-05-01	2002-04-01	\N	0	0	0	
4940	Resident n Family Medical		Ospital ng Angeles		141	\N	2005-12-01	2009-12-05	\N	0	0	0	
6751	Follow Through Activity on the Finalization of the Provincial Governance Reform Roadmap (PGRR)AND THE Conduct of Local Road Performance Assessment Through a Focus Group Discussion		Department of the Interior and Local Government		423	\N	2018-10-10	2018-10-11	\N	0	0	0	
6752	Writeshop for the Completion of  Provincial Governance Reform  Roadmap (PGRR)		Department of the Interior and Local Government		423	\N	2018-09-25	2018-09-26	\N	0	0	0	
6753	Internal Qualty Auditors Enhancement Training		NEO AMCA Solution Corporation		423	\N	2018-08-29	2018-08-29	\N	0	0	0	
7043	Provincial Avian Influenza Contigency Planning Workshop, Balibago, Angeles		DA Region III		325	\N	2009-04-02	2009-04-03	16	0	0	0	
2475	LOCAL DISASTER RISK REDUCTION AND MANAGEMENT PLAN WRITESHOP 	MANAGERIAL 	BAT. PDRRMC IN COLLABORATION WITH OFFICE OF CIVIL DEFENSE 3 RDRRMC3		597	\N	2014-01-16	2014-01-17	\N	0	0	0	MANAGERIAL 
2476	SEMINAR ON THE PROCEDURES FOR THE DISBURSEMENT TRANSACTIONS OF THE PROVINCIAL GOVERNMENT OF BATAAN	TECHNICAL 	PROVINCIAL GOVERNMENT OF BATAAN		597	\N	2014-05-09	2014-05-09	\N	0	0	0	TECHNICAL 
2477	PROVINCIAL DISASTER RISK REDUCTION & MANAGEMENT SUMMIT FOR LOCAL CHIEF EXECUTIVE OF BATAAN	MANAGERIAL	OFFICE OF THE CIVIL DEFENSE REG III RDRRMC III		597	\N	2014-05-22	2014-05-23	\N	0	0	0	MANAGERIAL
2478	MANPOWER TRAINING 	MANAGERIAL 	PROVINCIAL HEALTH OFFICE 		597	\N	2014-09-10	2014-09-12	\N	0	0	0	MANAGERIAL 
2479	SUPERVISORY DEVELOPMENT COURSE TRACK I 	SUPERVISORY	PROVINCIAL HUMAN RESOURCE MANAGEMENT OFFICE 		597	\N	2016-11-15	2016-11-17	\N	0	0	0	SUPERVISORY
2544	SEMINAR WORKSHOP ON REVISED RULES ON ADMINISTRATIVE CASES (RRACCS)		CIVIL SERVICE COMMISSION		2050	\N	2017-06-15	2017-06-17	\N	0	0	0	
10495	Investment Concepts	Technical	DA RFO III		35	\N	2019-02-12	2019-02-15	32	0	0	0	Technical
2480	12TH NATIONAL CONVENTION AND CPD SEMINAR ON REAL PROPERTY APPRAISAL AND ASSESMENT	SUPERVISORY 	PHILIPPINE ASSOCIATION OF ASSESSING OFFICERS INC. IN COORDINATION WITH THE BLGF		597	\N	2017-05-02	2017-05-05	\N	0	0	0	SUPERVISORY 
2481	TRAINING ON MAINSTREAMING GREEN GROWTH IN DEVELOPMENT PLANNING (PART I)	SUPERVISORY	GLOBAL GREEN GROWTH INSTITUTE		597	\N	2017-09-05	2017-09-07	\N	0	0	0	SUPERVISORY
8957	Certified Health Care Provider		Bataan Peninsula State University		1133	\N	2004-03-31	2004-03-31		0	0	0	
2482	RAPID DAMAGE ASSESSMENT AND NEEDS ANALYSIS & POST-DISASTER NEEDS ASSESSMENT TRAINING COURSE	MANAGERIAL	OFFICE OF THE CIVIL DEFENSE REG. III RDRRMC III		597	\N	2018-01-29	2018-06-22	\N	0	0	0	MANAGERIAL
3110	Fourth National Convention of the Center Of Excellence, Centers Of Development, Centers Of Training And Association Of Local Colleges  and Universities		Dep ED, Teacher Education Council		2095	\N	2011-04-11	2011-04-12	\N	0	0	0	
3111	Training Workshop on Teaching Strategey, Medthodology and Pedagody in Contextualizing Tech-Voc Subject  in English, Science and Mathematics		DEP ED III		2095	\N	2011-04-26	2011-04-29	\N	0	0	0	
3112	Public Accountability and Values Enchacement Seminar		Council for the Restoration Filipino Values		2095	\N	2011-07-26	2011-07-28	\N	0	0	0	
3113	First National Secondary Level Special Education Conference - Workshop		Bureau of Secondary Education		2095	\N	2011-10-26	2011-10-28	\N	0	0	0	
3114	Annual Conference of the School Heads of Science and Technology		Bureau of Secondary Educuation		2095	\N	2012-06-28	2012-06-30	\N	0	0	0	
3115	Program Orientation Cum Training on STVEP for 48 Tech- Voc School Administrators		DEP ED		2095	\N	2012-07-17	2012-07-18	\N	0	0	0	
2495	School Seminar on hild Protection Policy	Technical	Bataan National High School		1801	\N	2016-07-11	2016-07-11	\N	0	0	0	Technical
2496	Seminar on Bomb Identification Improvised Explosive Device (IED)	Technical	Bataan Police Provincial Office		1801	\N	2010-03-24	2010-03-25	\N	0	0	0	Technical
2502	Hospital Billing System	Technical 	Department of Health		602	\N	2017-04-05	2017-04-07	\N	0	0	0	Technical 
2553	BASIC AND FIRE RESCUE BRIGADE MANAGEMENT AND OPERATION 	TECHNICAL 	AFP/PA RESCOM		2051	\N	2008-11-15	2008-12-15	\N	0	0	0	TECHNICAL 
2554	INTRODUCTION TO FIRE AND RESCUE BRIGADE MANAGEMENT AND OPERATION 	TECHNICAL	AFP/PA RESCOM		2051	\N	2008-06-01	2008-06-05	\N	0	0	0	TECHNICAL
2555	TACTICAL FIRE FIGHTING SEMINAR/WORKSHOP 	TECHNICAL 	AFP/PA RESCOM		2051	\N	2008-05-15	2008-05-20	\N	0	0	0	TECHNICAL 
3118	Revised SBM Framework, Assesment Process And Tool		DEP ED, Division Of Balanga		2095	\N	2013-02-11	2013-02-11	\N	0	0	0	
3116	2012 National Literacy Conference and  Awards		DEP ED Literacy Coordinating Center		2095	\N	2012-09-18	2012-09-20	\N	0	0	0	
3117	4TH International Professors and Educators Conference		Global Peace Festival Foundation Ched, DEP ED , PUP		2095	\N	2012-11-01	2012-11-16	\N	0	0	0	
2526	Seminar Workshop on Team Development 		Provincial Treasurer's Office 		604	\N	2005-12-17	2005-12-18	\N	0	0	0	
2527	Work Attitude and Values Enhancement 		Provincial Human Resources and Management Office 		604	\N	0216-06-20	2016-06-21	\N	0	0	0	
2528	TRAINING COURSES WITH EXCELLENCE ON FOLLOWING MODULES: SPIDC - GOVT APPLICATION SOFTWARE, REAL PROPERTY TAX ADMINISTRATION SYSTEM; MICROSOFT WINDOWS XP OPERATING SYSTEM; IBM PERSONAL COMPUTER OPERATIONS; BASIC COURSE; LOCAL AREA NETWORKING	TECHNICAL 	PROVINCIAL GOVERNMENT OF BATAAN; SYSTEM AND PLAN INTEGRATOR DEVELOPMENT COMPANY & IBM PHILIPPINES INC.		605	\N	2003-12-08	2003-12-08	\N	0	0	0	TECHNICAL 
2529	SEMINAR WORKSHOP ON TEAM DEVELOPMENT 	TECHNICAL 	PROVINCIAL TREASURER'S OFFICE 		605	\N	2005-12-07	2005-12-07	\N	0	0	0	TECHNICAL 
2530	PERFORMANCE MONITORING & COACHING 		PROVINCIAL TREASURER'S OFFICE 		605	\N	2017-02-22	2017-02-22	\N	0	0	0	
2532	PERFORMANE MONITORING & COACHING 		PROVINCIAL TREASURER'S OFFICE 		605	\N	2017-09-19	2017-09-19	\N	0	0	0	
2534	PERFORMANCE MONITORING & COACHING		PROVINCIAL TREASURER'S OFFICE 		605	\N	2017-12-04	2017-12-04	\N	0	0	0	
2535	PERFROMANCE MONITORING & COACHING 		PROVINCIAL TREASURER'S OFFICE 		605	\N	2017-12-13	2017-12-13	\N	0	0	0	
2537	SEMINAR/WORKSHOP ON EFFECTIVE PROCEDURE INN MANAGING PUBLIC RECORDS 	TECHNICAL	GOVERNMENT RECORDS OFFICERS ASSOCIATION OF THE PHILIPPINES, INC. (GROAP)		605	\N	2018-10-15	2018-10-17	\N	0	0	0	TECHNICAL
2538	PROPERTY ASSESSMENT AND TAX ADMINISTRATION SYSTEM (PATAS) PROCESS FLOW TRAINING PROGRAM	TECHNICAL 	PGB - ASSOCIATION OF MUNICIPAL ASSESSORS OF BATAAN, INC. 		605	\N	2018-12-11	2018-12-11	\N	0	0	0	TECHNICAL 
2539	INTEGRATED BAR OF THE PHILIPPINES CENTRAL LUZON REGIONAL CONVENTION AND MANDATORY CONTINUING LEGAL EDUCATION 		INTEGRATED BAR OF THE PHILIPPINES		2050	\N	2016-03-16	2016-03-19	\N	0	0	0	
2540	MISSION, VISION AND VALUES WORKSHOP FOR PERFORMANCE GOVERNANCE SYSTEM OR PGS 		INSTITUTE OF SOLIDARITY IN ASIA OR ISA		2050	\N	2017-09-29	2017-09-30	\N	0	0	0	
2541	GENDER AND DEVELOPMENT ORIENTATION AND PLANNING		DEPARTMENT OF HEALTH		2050	\N	2017-01-23	2017-01-24	\N	0	0	0	
2543	GLOBAL AND REGIONAL INTEGRATION OF LEGAL SERVICES: "CHALLENGING THE PHILIPPINES STATUS QUO"		INTEGRATED BAR OF THE PHILIPPINES 		2050	\N	2017-03-23	2017-03-26	\N	0	0	0	
2545	GENDER AND DEVELOPMENT SEMINAR AND TRAINING ON GENDER ASSESSMENT TOOL: GENDER MAINSTREAMING EVALUATION FRAMEWOR (GMEF)		DEPARTMENT OF HEALTH		2050	\N	2017-06-20	2017-06-21	\N	0	0	0	
2546	COMMAND AND STAFF OPERATIONS LAW COURSE	MANAGERIAL 	ARMED FORCES OF THE PHILIPPINES 		2051	\N	2016-05-16	2016-05-26	\N	0	0	0	MANAGERIAL 
2547	COMMUNITY DISASTER PREPAREDNESS TRAINING CAMP	TECHNICAL 	PHILIPPINE PUBLIC SAFETY AND ORDER SUPPORT GROUP		2051	\N	2016-05-16	2016-05-24	\N	0	0	0	TECHNICAL 
2548	EMERGENCY MEDICAL FISRT RESPONDER COURSE	TECHNICAL	PHILIPPINE PUBLIC SAFETY AND ORDER SUPPORT GROUP		2051	\N	2015-05-17	2015-05-24	\N	0	0	0	TECHNICAL
2549	FIRE SAFETY PRACTITIONER COURSE 	TECHNICAL 	ARMED FORCES OF THE PHILIPPINES NORTHERN LUZON COMMAND (NOLCOM)		2051	\N	2013-11-18	2013-11-23	\N	0	0	0	TECHNICAL 
2550	EMERGENCY MEDICAL FIRST RESPONDER COURSE 	TECHNICAL 	NATIONAL FIRE TRAINING INSTITUTE (BUREAU OF FIRE PROTECTION) 		2051	\N	2013-08-25	2013-09-22	\N	0	0	0	TECHNICAL 
2551	DISASTER PREPAREDNESS INSTRUCTIONS TRAINING/SEMINAR 	TECHNICAL	BFP/JICA/OCID/PAG-ASA		2051	\N	2011-05-08	2011-05-29	\N	0	0	0	TECHNICAL
2556	BASIC WATER RESCUE AND SAFETY WITH PROPER BOAT HANDLING TRAINING	TECHNICAL	AFP/PM/PA RESCOM 		2051	\N	2008-05-10	2008-05-10	\N	0	0	0	TECHNICAL
2557	MARKSMANSHIP, PROPER GUN HANDING AND SAFETY SEMINAR	TECHNICAL 	AFP/PA RESCOM		2051	\N	2008-01-13	2008-01-13	\N	0	0	0	TECHNICAL 
2558	DISASTER EMERGENCY ASSISTANCE RELIEF AND RESCUE TRAINING	TECHNICAL 	AFP/PA RESCOM		2051	\N	2007-12-29	2008-01-04	\N	0	0	0	TECHNICAL 
16467	DISTRICT VIII SPORTS TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
2559	REGIONAL PLANNING WORKSHOP/SEMINAR AND CONSULTATIVE CONFERENCE ON HIGHER EDUCATION	SUPERVISORY	CHED R4A		2051	\N	2003-04-23	2003-04-25	\N	0	0	0	SUPERVISORY
2560	GUIDANCE SEMINAR 	TECHNICAL 	AUP		2051	\N	2003-06-08	2003-06-08	\N	0	0	0	TECHNICAL 
2561	DISASTER PREPARENESS/FIRE PREVENTION TRAINING/SEMINAR	TECHNICAL 	AUP		2051	\N	1998-03-11	1998-03-11	\N	0	0	0	TECHNICAL 
2562	VALUES FORMATION SEMINAR 	SUPERVISORY	PNP		2051	\N	1997-08-03	1997-08-05	\N	0	0	0	SUPERVISORY
2563	DRUG DEMAND REDUCTION SEMINAR	TECHNICAL 	DANGEROUS DRUGS BOARD 		2051	\N	1993-09-14	1993-09-16	\N	0	0	0	TECHNICAL 
2564	MASTER GUIDE TRAINING PROGRAM 	TECHNICAL 	PUC		2051	\N	1986-06-15	1987-03-11	\N	0	0	0	TECHNICAL 
3119	Regional Congress on the SBM Implementation and Other Academic Programs For Secondary School		DEP ED III		2095	\N	2013-04-09	2013-04-11	\N	0	0	0	
3120	Regional Trainign In Special Educaiton 		DEP ED III		2095	\N	2013-05-28	2013-05-29	\N	0	0	0	
3121	Regional Orientation In Education In Emergecny		Plan International Philippines		2095	\N	2013-06-28	2013-06-28	\N	0	0	0	
3122	Overview of the Fy 2015 Planning Cycle And Pre- Planning For Senior High School Implementation		DEP ED III		2095	\N	2013-08-02	2013-08-02	\N	0	0	0	
3123	6TH Foreign Language for Implenters of the Special Program in Foreign Language		Bureau of Secondary Education		2095	\N	2013-08-12	2013-08-14	\N	0	0	0	
3124	PSSPA III, INC. Annual Convetion		PSSPA III		2095	\N	2013-12-16	2013-12-18	\N	0	0	0	
4161	PATAS Premium	Administrative	GEODATA		66	\N	2017-06-05	2017-06-16	\N	0	0	0	Administrative
4162	SPIDC Government Application Software- Real Property Tax Administration System (RPTAS); Microsoft Windows XP Operating System; IBM	Technical	Bataan Provincial Government, SPIDC & IBM Phil.		66	\N	2003-09-01	2003-09-05	\N	0	0	0	Technical
2576	LEGAL INTERNSHIP, UNIVERSITY OF THE EAST LEGAL AID CLINIC 		UNIVERSITY OF THE EAST		2052	\N	2004-06-01	2004-10-01	\N	0	0	0	
2577	ENGLISH ACCENT TRAINING		TELEDEVELOPMENT 		2052	\N	2005-11-23	2005-11-29	\N	0	0	0	
2578	SEMINAR WORKSHOP ON PMS-OPES TRACK II		CIVIL SERVICE COMMISSION REGIONAL OFFICE NO. 3		2052	\N	2009-01-20	2009-01-22	\N	0	0	0	
2579	INFORMATION DISSEMINATION ON R.A. 9470		NATIONAL ARCHIVES OF THE PHILIPPINES 		2052	\N	2009-02-13	2009-02-13	\N	0	0	0	
2782	RURAL CRITICAL CARE COURSE 		SOCIETY OF RURAL PHYSICIANS OF CANADA		2073	\N	2008-02-19	2008-02-22	\N	0	0	0	
2580	PROCEDURES FOR DIBURSEMENT TRANSACTIONS OF THE PROVINCIAL GOVERNMENT OF BATAN		PROVINCIAL GOVENRMENT OF BATAAN BIDS AND AWARDS COMMITTEE		2052	\N	2014-05-09	2014-05-09	\N	0	0	0	
4163	MAP Info Professional	Technical	Systems Technology Research Corporation & Provincial Assessors Office, Bataan		66	\N	2003-01-15	2003-01-17	\N	0	0	0	Technical
4164	Banking Operation Office Practicum	Banking	BPI & Tomas Del Rosario College		66	\N	1996-11-06	1997-02-19	\N	0	0	0	Banking
3343	3rd Generation Technical Workshop, UTI Telecoms		Hongkong		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3344	Signature Selling Methodology Workshop		IBM Philippines		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3345	Asia Pascific e- Business University, ABM ASEAN/SA		Bangkok Thailand		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3346	Asia Pacific Wireless Kickoff, IBM ASIA Pacific		Tokyo Japan		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3347	Asia Pacific Wireless e-Business University, IBM Asia Pacific		Singapore		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3348	IOTU Telecoms 2000		Hongkong RC		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3349	WAP Congress - Operator Summit ,IBC Global Conferences		Seville Spain		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3350	Wap Forum Developer's Symposium, IBM Global Conferences		Seville Japan		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3351	Telecom Global 2000 Singapore, eCEntric.com Ple Ltd		Singapore		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3352	Unbelievable Power Selling Workshop, Rod Koffman, Team Asia		Shangri-La Manila		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3353	Knowledge Management College,Advance Business Institute		Palisades NY ,USA		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3354	The Service Difference, Achieve Global Training		IBM Philippines		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3355	IBM Telecoms University, IBM ASEAN/SA Singapore		IBM SIngapore		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3356	Application Framework for e-Business Technology, IBM Global Services		IMB Singapore		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3357	Selling to Business - IBM Global Sales School		IBM Singapore		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3358	New Work Habits in the Information Technology Age		IBM Philippines		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3359	E- Business an Executive Perspective, IBM Learning Services		IBM Singapore		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3360	Application Driven Networks & Application Network Service Provider Solution		IBM Singapore		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3361	Preparing & Delivering High Impact Presentation, Professional System		PSPI, Makati		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
2611	BRIEFING ON B.S.P CIRCULAR 706: UPDATED A.M.I. RULES AND REGULATIONS 		RURAL BANKERS RESEARCH AND DEVELOPMENT FOUNDATION INCORPORATED 		2054	\N	2014-08-14	2014-08-14	\N	0	0	0	
2612	UPDATE ON ANTI-MONEY LAUNDERING		JIN HOTEL, ROXAS BLVD.		2054	\N	2017-08-27	2017-08-27	\N	0	0	0	
2827	BULLETPROOF LEADERSHIP TRAINING 				2082	\N	2018-01-01	2019-01-01	\N	0	0	0	
2673	Philippine Society of Anesthesiologist Midyear Convention		Philippine Society of Anesthesiologist 		2057	\N	2018-04-20	2018-04-22	\N	0	0	0	
2674	Philippine Society of Anesthesiologist Annual Convention 		Philippine Society of Anesthesiologist 		2057	\N	2018-11-23	2018-11-25	\N	0	0	0	
3134	Philippine 101 Ecotourism		Bayfront Hotel Cebu City		2096	\N	2017-07-01	2017-07-05	\N	0	0	0	
3135	Asean Toursm Standards		Widus Hotel Clark CIty, Pampanga		2096	\N	2017-07-12	2017-07-12	\N	0	0	0	
3136	Performance Governance System-Visioning Workshop		Institute for Solidarity in Asia		2096	\N	2013-11-26	2013-11-27	\N	0	0	0	
3137	Tourist Reception and Guiding Techniques 		Department of Toursm Balanga City, Bataan		2096	\N	0001-01-01	0001-01-01	\N	0	0	0	
3138	Philippine Tourism In Millenium		Traders Hotel, Roxas Blvd. Pasay City.		2096	\N	0001-01-01	0001-01-01	\N	0	0	0	
3139	Business Policy and Tourism Industry Toward a New Competetive World		Centro Escolar University		2096	\N	0001-01-01	0001-01-01	\N	0	0	0	
3140	Pre- Practicum Orientation 2000		Aasociation Of Toursm		2096	\N	0001-01-01	0001-01-01	\N	0	0	0	
3141	Career Plus Seminar 21:A seminars on how to get an edge in job Hunting		Centro Escolar University		2096	\N	0001-01-01	0001-01-01	\N	0	0	0	
3142	Association of Tourism Student		Centrol Escolar University		2096	\N	0001-01-01	0001-01-01	\N	0	0	0	
3164	Professional Selling Skills	Technical	Rentokil Initial Philippines		2097	\N	2001-05-15	2001-05-17	\N	0	0	0	Technical
3165	Global Call Center Education Program	Technical	Cybercity Teleservice Inc		2097	\N	2004-02-01	2004-03-01	\N	0	0	0	Technical
3166	Developing Your Platform Skiils Training	Technical	Cybercity Teleservice Inc		2097	\N	2007-09-21	2007-09-23	\N	0	0	0	Technical
3167	WOW! Costumer Service Enchancement Training	Supervisory	OCD - Regional Office 3		2097	\N	2007-12-06	2007-12-07	\N	0	0	0	Supervisory
3168	Basic Incident Command System (ICS) Training Course	Managerial	OCD - Regional Office 3		2097	\N	2012-09-03	2012-09-06	\N	0	0	0	Managerial
3169	Integrtated Planning Course On ICS	Managerial	OCD - Regional Office 3		2097	\N	2013-04-15	2013-04-19	\N	0	0	0	Managerial
3170	Postion Title Course (ICS) Training 	Managerial	OCD - Regional Office 3		2097	\N	2013-04-22	2013-04-26	\N	0	0	0	Managerial
3171	Basic Life Support Training (BLS)	Technical	DOH Region 3		2097	\N	2013-11-13	2013-11-14	\N	0	0	0	Technical
3174	Post Disaster Needs assessment (PDNA) Training	Technical	OCD - CBTS  - Central Office 		2097	\N	2014-01-08	2014-01-10	\N	0	0	0	Technical
3175	Sphere Training(TOT)	Technical	RED R Australia		2097	\N	2014-04-07	2014-04-11	\N	0	0	0	Technical
3176	Induction and Refresher Course for Newly Hired & Other OCD Employees	Technical	OCD - CBTS - Central Office		2097	\N	2015-03-18	2015-03-20	\N	0	0	0	Technical
3177	Writeshop  to Echancement Contingency Planning (CP), RDANA, & PDNA Materials	Technical	OCD - CBTS - Central Office		2097	\N	2015-04-20	2015-04-24	\N	0	0	0	Technical
3178	Basic DRRM Course	Technical 	OCD - CBTS -  Central Office		2097	\N	2015-05-25	2015-05-27	\N	0	0	0	Technical 
3179	(Enchanced) Basic ERapid Damage and Needs Assesment Training 	Technical	OCD - CBTS - Central Office		2097	\N	2015-06-01	2015-06-04	\N	0	0	0	Technical
3180	Writeshop on the Accreditation Guidelines Of DRRM Training Institute (NDRRMTI)	Technical	OCD - CBTS - Central Office		2097	\N	2015-12-08	2015-12-10	\N	0	0	0	Technical
3181	Writeshop On the Development of the Disaster Risk Reduction and Management (DDRM) Training Policies and Guidelines, Training Course Design and Modules	Supervisory	OCD - CBTS - Central Office		2097	\N	2015-12-14	2015-12-17	\N	0	0	0	Supervisory
3182	SEMINAR ON TIME MANAGEMENT ESSENTIALS	Supervisor	CIVIL SERVICE COMMISION R3		2097	\N	2016-02-23	2016-02-23	\N	0	0	0	Supervisor
3183	WRITESHOP TO DVELOP THE DRRM TRAINING RESEARCH AGENDA	Supervisory	OCD - CBTS - CENTRAL OFFICE		2097	\N	2016-06-20	2016-06-23	\N	0	0	0	Supervisory
3184	WORKSHOP ON PROGRAM IMPLEMENTATION REVIEW	Supervisor	OCD - CBTS - CENTRAL OFFICE		2097	\N	2016-11-21	2016-11-25	\N	0	0	0	Supervisor
3185	TRAINING FOR INSTRUCTION (TFI)	Technical	OCD - CBTS - CENTRAL OFFICE		2097	\N	2017-02-13	2017-02-17	\N	0	0	0	Technical
3186	Consultation - Workshop for the NDRRMP Review, Regional DRRMP Assesment, And Formulation of a National Disaster Prevention Mitigation Plan (NDPMP) (LUZON CLUSTER)	Technical	OCD - POLICY DEVELOPMENT & PLANNING SERVICE - CENTRAL OFC		2097	\N	2017-09-18	2017-09-20	\N	0	0	0	Technical
3187	Writeshop to Develop Training Course Design For ICS Ladderized Courses	Supervisory/Technical	OCD - CBTS - CENTRAL OFFICE		2097	\N	2017-09-24	2017-09-29	\N	0	0	0	Supervisory/Technical
3188	PC/CNA Deployment Guidelines Writeshop and Pre -Disaster Recovery and Rehabilitation Framework and Review of Related Policies Workshop	Technical	OCD - RECOVERY & REHABILITATION MANAGEMENT & SERVICE		2097	\N	2017-12-18	2017-12-21	\N	0	0	0	Technical
3189	Basic Occupation Safety & Health (BOSH)	Technical	Ayllon- Delos Reyes Safety Management Consultancy Service(DOLE Accreditation)		2097	\N	2017-12-18	2017-12-21	\N	0	0	0	Technical
3362	Managerial Enchancement Program, Core Career Consultants		CCC, Makati		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3363	Asia Pacific Regional Internet Conference on Operational technologies		Internic Singapore		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3364	Managing your Market and Managing Profitablity and Cost Management Trans		TGD, Manila		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3365	Total Quality Management, Developing You Team and Managing your Market		TGD, Manila		2099	\N	0001-01-01	0001-01-01	\N	0	0	0	
3366	Orientation on the Local Gov't Code				2101	\N	0001-01-01	0001-01-01	\N	0	0	0	
3367	Cooperative Deds Program				2101	\N	0001-01-01	0001-01-01	\N	0	0	0	
3368	Legislative Procedure Techniques				2101	\N	0001-01-01	0001-01-01	\N	0	0	0	
3369	Effective Local Legislation				2101	\N	0001-01-01	0001-01-01	\N	0	0	0	
3370	Developer Planning				2101	\N	0001-01-01	0001-01-01	\N	0	0	0	
3371	Pre. Service For Devt Workers	Tech Support	PACD		2101	\N	1969-07-02	1970-01-31	\N	0	0	0	Tech Support
3372	Men, Women And Developement		British Council		2101	\N	1992-09-18	1992-12-11	\N	0	0	0	
3414	Business Plan Preparation Trainng/ Seminar		Department of Agriculture - Philippine Rural Development Program		367	\N	2014-11-24	2014-11-28	\N	0	0	0	
3415	Training on Feasibility Study, Detailed  Engineering Design, Social Environment Safeguards, Applied GEO-Tagging Technology under Philippine		Department of Agriculture - Philippine Rural Development Program		367	\N	2014-10-24	2014-11-28	\N	0	0	0	
3416	Regional Consultation on National Forest Certification		Department of Environment and Natural Resources - Forest Management Bureau		367	\N	2014-08-19	2014-08-20	\N	0	0	0	
3417	Awareness on Local Food Consumption and Utilization		Department of Agriculture, Region III		367	\N	2014-02-25	2014-02-25	\N	0	0	0	
3418	Barangay Food Terminal Summit		Department of Agriculture, Region III		367	\N	2013-08-13	2013-08-14	\N	0	0	0	
3419	Training on Social and Environmental Safeguards		Department of Agriculture - Philippine Rural Development Program		367	\N	2013-04-14	2013-04-15	\N	0	0	0	
10470	Seminar for Valet Parking Service Personnel		Philippine Amusement and Gaming Corporation		294	\N	1996-11-18	1996-11-22	\N	0	0	0	
10471	Workshop on Performance Evaluation System		Civil Service Commission		294	\N	2001-02-19	2001-02-21	\N	0	0	0	
10472	Alternative Learning System (ALS)		Department of Education		294	\N	2006-05-24	2006-06-07	\N	0	0	0	
10473	44th PICE National Convention  "Integrating, Advance & Digital Technology in Building Infrastructure"	Technical	Philippine Institute of Civil Engineer		301	\N	2018-10-29	2018-10-31	\N	0	0	0	Technical
16468	DISTRICT VIII INSERVICE TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
10474	Construction Occupational Safety & Health Course	Technical	LABSPEAK Safety management Incorporated		301	\N	2018-07-10	2018-07-13	\N	0	0	0	Technical
10475	Seminar on Anti - Trafficking in PErson and Anti- Violence Against Women and their Children 	Administrative	Provincial Goverment of Bataan		301	\N	2018-05-11	2018-05-12	\N	0	0	0	Administrative
10476	43rd Natinal PICE Convention - Build Build Build for Smart, Strong , And Sustainable Societies (BBB for SSSS)"	Technical	Philippine Institute of Civil engineers, Inc. (PICE)		301	\N	2017-11-28	2017-11-30	\N	0	0	0	Technical
10477	Seminar on Contract Management and Construction Supervision	Technical	Department of Trade and Industry		301	\N	2017-10-05	2017-10-05	\N	0	0	0	Technical
10478	Seminar - Workshop on Road Safety Audit under CMGP Program	Technical	Department of Interior and Local Government		301	\N	2017-09-18	2017-09-22	\N	0	0	0	Technical
2701	Fellowship in Gastroenterology 		Cardinal Santos Medical Center (Department of Medicine Section of Gastroenterology)		2064	\N	2016-04-01	2018-03-31	\N	0	0	0	
2702	POST GRADUATE COURSE ON  "THE FINE ARTS OF CARDIOVASCULAR EXAMINATION FOR THE PRATICING PHYSICIAN 	TECHNICAL 	UST HOSPITAL SECTION OF CARDIOLOGY 		2065	\N	1988-06-13	1988-06-15	\N	0	0	0	TECHNICAL 
2705	23RD ANNUAL POSTGRADUATE COURSE, "INTERNAL MEDICINE FROM BENCH TO BEDSIDE"	TECHNICAL 	UST HOSPITAL DIVISION OF MEDICINE 		2065	\N	1995-01-26	1995-01-28	\N	0	0	0	TECHNICAL 
2706	POST GRADUATE COURSES ON UPDATE, ACUTE MI	TECHNICAL 	PHILIPPINE COLLEGE OF PHYSICIANS 		2065	\N	1996-11-01	1996-11-08	\N	0	0	0	TECHNICAL 
2707	SERVIER CARDIOLOGY ON HEART FAILURE 	TECHNICAL 	PHILIPPINE HEART CENTER FOR ASIS		2065	\N	1999-10-23	1999-10-23	\N	0	0	0	TECHNICAL 
2708	23RD CONGRESS OF THE INTERNAL SOCIETY MEDICINE 	TECHNICAL 			2065	\N	2000-02-26	2000-02-28	\N	0	0	0	TECHNICAL 
2709	ANNUAL CONVENTION ON " FAMILY PHYSICIANS CHARTING NEW DIRECTION IN HEALTH CARE" 	TECHNICAL 			2065	\N	2000-12-17	2000-12-19	\N	0	0	0	TECHNICAL 
2710	2ND LHB - UPAO CONFERENCE BUILDING PARTNERSHIP TOWARD UDHA COMPLIANCE		PCUP - PRESIDENTIAL COMMISSION ON URABN POOR, EUROTEL BAGUIO CITY		2066	\N	2016-10-25	2016-10-27	\N	0	0	0	
2711	SOLVING THE SQUATING PROBLEM AND BUILDING LIVEABLE CITIES WITH LINA LAW (R.A. 7279) 		ESTRA THINIK RESEARCH CENTER 		2066	\N	2017-07-11	2017-07-11	\N	0	0	0	
2712	FAB-PIAC COMMITTEE ON RELOCATION RESETTLEMENT PLANNING AND IMPLEMENTATION WORKSHOP		AFAB - AUTHORITY OF THE FREEPORT AREA OF BATAAN, MARIVELEZ		2066	\N	2018-05-21	2018-05-22	\N	0	0	0	
2713	LUZON WIDE STAKEHOLDER HOUSING SUMMIT 		PRESIDENTIAL COMMISSION FOR THE URBAN POOR		2066	\N	2018-11-06	2018-11-08	\N	0	0	0	
2714	LATEST INNOVATION IN POWER BACK-UP SOLUTION	TECHNICAL	IIEEE BATAAN CHAPTER 		2067	\N	2009-11-14	2009-11-14	\N	0	0	0	TECHNICAL
2715	ENVIRONMENTAL HEALTH AND SAFETY	PERSONAL EFFECTIVENESS 	IIEE BATAAN CHAPTER 		2067	\N	2009-11-14	2009-11-14	\N	0	0	0	PERSONAL EFFECTIVENESS 
2716	PNEUMATICS AND CONTROL SYSTEM	TECHNICAL	BATAAN PENINSULA STATE UNIVERSITY 		2067	\N	2010-07-17	2010-07-17	\N	0	0	0	TECHNICAL
2717	SEMINAR WORKSHOP ON RESEARCH CONCEPTUALIZATION 	TECHNICAL	BATAAN PENINSULA STATE UNIVERSITY 		2067	\N	2010-09-23	2010-09-23	\N	0	0	0	TECHNICAL
2718	ORIENTATION ON SUPERVISION AND MANAGEMENT 	SUPERVISORY 	PROVINCIAL GOVERNMENT OF BATAAN		2067	\N	2011-09-15	2011-09-15	\N	0	0	0	SUPERVISORY 
2719	COMMON PROVISION OF PEC FOR RESIDENTIAL AND COMMERCIAL DESIGN 	TECHNICAL	IIEE BATAAN CHAPTER 		2067	\N	2014-03-01	2014-03-01	\N	0	0	0	TECHNICAL
2720	ESTIMATE AND MATERIAL TAKE OFF ON RESIDENTIAL AND COMMERICAL ELECTRICAL SYSTEM	TECHNICAL	IIEE BATAAN CHAPTER 		2067	\N	2014-03-01	2014-03-01	\N	0	0	0	TECHNICAL
2721	2014 IIEE NATIONAL MID-YEAR CONVENTION	TECHNICAL	IIEE CEBU CHAPTER, CEBU CITY		2067	\N	2014-05-23	2014-05-24	\N	0	0	0	TECHNICAL
2722	2015 IIEE NATIONAL MID YEAR CONVENTION: "IIEE @ 40: A JOURNEY OF SERVICE FOR EXCELLENCE"	TECHNICAL	IIEE DAVAO CHAPTER, DAVAO CITY		2067	\N	2015-05-21	2015-05-23	\N	0	0	0	TECHNICAL
2723	ISO 9001:2015 ORIENTATION	PERSONAL EFFECTIVENESS 	MARITIME ACADEMY OF ASIA AND THE PACIFIC 		2067	\N	2015-12-11	2015-12-11	\N	0	0	0	PERSONAL EFFECTIVENESS 
2724	2016 IIEE NATIONAL MID YEAR CONVENTION: "SOARING HIGH TOWARDS GLOBALIZATION"	TECHNICAL	IIEE NORTHERN LUZON CHAPTER, BAGUIO CITY		2067	\N	2016-05-26	2016-05-28	\N	0	0	0	TECHNICAL
2725	IMO MODEL COURSE 6.10: TRAIN THE SIMULATOR TRAINER AND ASSESSOR 	TECHNICAL	MARITIME ACADEMY OF ASIA AND THE PACIFIC		2067	\N	2017-08-15	2017-08-18	\N	0	0	0	TECHNICAL
2726	2018 IIEE REGIONAL CONFERENCE 	TECHNICAL	IIEE NUEVA ECIJA CHAPTER 		2067	\N	2018-07-13	2018-07-14	\N	0	0	0	TECHNICAL
2754	LEADERSHIP TRAINING SEMINAR , VILLA EDEN CABCABEN, BATAAN 		SPONSORED BY THE COLLEGE OF EDUCATION STUDENT COUNCIL 		2070	\N	1993-03-21	1993-03-23	\N	0	0	0	
2755	GLOBAL ADVOCACY FOR THE DEVELOPMENT OF HUMAN POTENTIAL UP DILIMAN QUEZON CITY 		DR. NORAH METER ON GIFTED & TALENTED EDUCATION		2070	\N	1995-12-12	1995-12-12	\N	0	0	0	
2756	ENGLISH PLUS SEMINAR, TARLAC 		COMMISSION ON HIGHER EDUCATION REGION III		2070	\N	1999-06-01	1999-06-01	\N	0	0	0	
2757	CURRENT TREND ON CLASSROOM APPLICATION OF TEST & MEASUREMENT & OTHER ASSESSMENT 				2070	\N	1999-03-08	1999-03-09	\N	0	0	0	
2758	TRAINING ON EFFECTIVE PUBLIC SPEAKING FOR THE K-12 SPEAKERS BUREAU, DEPARTMENT OF EDUCATION WITH THE ASIAN INSTITUTE OF JOURNALISM AND COMMUNICATION LOS BAÑOS LAGUNA				2070	\N	2014-08-06	2014-08-08	\N	0	0	0	
2759	COMPUTER LITERACY CENTER,N UP DILIMAN, QUEZON CITY CERTIFICATES FOR THE FOLLOWING COURSES: (INTRODUCTION TO MICROCOMPUTERS: LOTUS 123; MS WORD III; FRAMEWORK III; DBASE III + (INTERACTIVE): FUNDAMENTALS OF PROGRAMMING 				2070	\N	1990-06-01	1990-10-01	\N	0	0	0	
2760	INTELLIGENCE & DATA COLLECTION TRAINING HEAD QUARTERS. 3RD REGIONAL COMMUNITY DEFENSE GROUP, TARLAC CITY				2070	\N	2011-09-17	2011-10-08	\N	0	0	0	
10479	Radio Communicaiton Registration and Licensing	Technical	Provincial Government of Bataan		301	\N	2017-08-10	2017-08-10	\N	0	0	0	Technical
10480	Philippine Rapid Damage Assesment and Needs Analysis (PRDANA)	Technical	Office of Civil Defence 3 - Regional Disaster Risk Reduction and Mangement Council		301	\N	2015-08-25	2015-08-28	\N	0	0	0	Technical
4402	Information and Communication Technology Center		Provincial Social Welfare and Development Office		1833	\N	2007-08-01	2007-09-01	\N	0	0	0	
3476	Diabetic Management		Terrapharma		2107	\N	2007-08-11	2007-08-11	\N	0	0	0	
3477	PSA Midyear Convention 		Philippine Society of Anesthesiologists		2107	\N	2007-04-19	2007-04-21	\N	0	0	0	
3478	Basic evaluation & Training in Trauma & Emergency Response		Philippine College of Surgeons		2107	\N	2016-06-07	2016-07-07	\N	0	0	0	
3666	Internal Medicine Residency				2117	\N	2014-01-14	2017-01-02	\N	0	0	0	
3623	Environmental Management Plan		DA-NMIS		963	\N	2011-12-07	2011-12-09	\N	0	0	0	
3374	Strategic Performance Management System Leaders		Provincial Human Resource Management Office and Civil Service Commission		2100	\N	2016-10-28	2016-10-28	\N	0	0	0	
3375	Orientation / Seminar on Magna Carta of Women (RA9710) & Anti-violence Against Women & Children ( RA9262)		Provincial Population Office		2100	\N	2016-04-15	2016-04-15	\N	0	0	0	
3376	Seminar Workshopon Mainsteaming Gender & Development Program Through Identifying GAD Issues, Gender and Development Analysis, Plan		Provincial Population Office		2100	\N	2015-05-14	2015-05-15	\N	0	0	0	
3377	Industry Enviro-Congress		Environmental management Bureau, Region3		2100	\N	2015-08-12	2015-08-12	\N	0	0	0	
9887	Financial Management Seminar		PCEDO		2173	\N	2012-05-09	2012-05-11	24	0	0	0	
9888	Seminar on Meat Cutting and Processing		1530 Multipupose Cooperative		2173	\N	2001-10-25	2001-10-26	16	0	0	0	
9890	DTI: Seminar on E-marketing as an effective startegy for MSME's		DTI-Bataan		1927	\N	2017-02-21	2017-02-21	\N	0	0	0	
2784	BASIC EMERGENCY MEDICINE FOR NEWBORN CARE 		DEPARTMENT OF HEALTH		2073	\N	2011-05-23	2011-05-27	\N	0	0	0	
2798	SYSTEMATIC MANAGERIAL ANALYSIS COURSE (SMA) A SHORT COURSE ON OOFICE MANAGEMENT AND CONTROL	MANAGERIAL	ASIA BUSINESS CONSULTANT & DEV. ACADEMY OF THE PHILIPPINES		2074	\N	1986-01-01	1986-03-01	\N	0	0	0	MANAGERIAL
2799	BUSINESS MANAGEMENT PROCESS (BMP) A SHORT COURSE IN MANAGERIAL PROCESS AND STRATEGY	MANAGERIAL 	ASIAN INSTITUTE OF MANAGEMENT 		2074	\N	1989-01-01	1989-06-01	\N	0	0	0	MANAGERIAL 
2800	PRINCIPLES AND PRATICES OF EEFECTIVE LEARNING 	MANAGERIAL 	MARITIME ACADEMY OF ASIA AND THE PACIFIC 		2074	\N	2012-06-04	2012-06-08	\N	0	0	0	MANAGERIAL 
2801	TRAINING FOR MARITIME INSTRUCTORS IMO MODEL 3.12 ASSESSMENT, EXAMINATION AND CERTIFICATION OF SEAFARERS	MANAGERIAL/TECHNICAL	PHILIPPINE ASSOCIATION OF MARITIME TRAINING CENTERS, INC (PAMTCI)		2074	\N	2015-07-28	2015-08-07	\N	0	0	0	MANAGERIAL/TECHNICAL
2802	MARINE HIGH VOLTAGE SAFETY TRAINING 	MANAGERIAL/TECHNICAL 	PHILIPPINE ASSOCIATION OF MARITIME TRAINING CENTERS, INC (PAMTCI)		2074	\N	2015-10-19	2015-10-23	\N	0	0	0	MANAGERIAL/TECHNICAL 
2803	SEMINAR ON "HOW SHIPS OF THE FUTURE WILL BE OPERATED AND MAINTAINED"	MANAGERIAL 	SPONSORED BY AMOSSUP, IN COOPERATION WITH IMarEST, ASIA PACIFIC		2074	\N	2016-11-24	2016-11-24	\N	0	0	0	MANAGERIAL 
2804	SOCIAL COMMUNITY AWARENESS SEMINAR 	MANAGERIAL 	SPONSORED BY MARITIME ACADEMY OF ASIA AND THE PACIFIC 		2074	\N	2015-05-28	2015-05-28	\N	0	0	0	MANAGERIAL 
2805	ORIENTATIONAND CAPACITY BUILDING OF LAWYERS FROM PUBLIC ATTORNEY'S OFFICE WHO WILL HANDLE CASES FOR THE PROJECT ENTITLED: "NATIONAL LEGAL SUPPORT NETWORK FOR FISHERFOLKS"		BUREAU OF FISHERS AND AQUATIC RESOURCES 		2075	\N	2016-12-19	2016-12-22	\N	0	0	0	
2806	SEMINAR ON THE REVISED PUBLIC ATTORNEY'S OFFICE OPERATIONS MANUAL AND CODE OF CONDUCT 		PUBLIC ATTORNEY'S OFFICE 		2075	\N	2017-03-20	2017-03-22	\N	0	0	0	
2807	BEST PRACTICES IN CORPORATE HOUSEKEEPING	MANAGERIAL 	CENTER FOR GLOBAL BEST PRACTICES		2076	\N	2018-08-07	2018-08-08	\N	0	0	0	MANAGERIAL 
2808	PREPARING YOUR BUSINESS COMPETITIVENESS FOR 2015 ASEAN INTEGRATION 	MANAGERIAL 	ARIVA! EVENTS MANAGEMENTS, INC. 		2076	\N	2014-09-17	2014-09-17	\N	0	0	0	MANAGERIAL 
2809	MANDATORY CONTINUING LEGAL EDUCATION 	MANAGERIAL 	ACLEX		2076	\N	2018-06-19	2018-07-10	\N	0	0	0	MANAGERIAL 
2810	BAOC EMERGENCY OBSTENTRIES & NEWBORN CARE (BEMONC) SKILLS TRAINING PROGRAM 	TECHNICAL 	DOH, REGION IX		2078	\N	0016-11-21	2016-12-01	\N	0	0	0	TECHNICAL 
2811	CONSULTATIVE WORKSHOP ON NON COMMUNICABLE DISEASE 	TECHNICAL	DOH, CHD, CAGAYAN DE ORO		2078	\N	2012-10-28	2012-10-28	\N	0	0	0	TECHNICAL
2812	SMOKE-FREE ORDINANCE OF MISAMIS OCCIDENTAL: 3 DAY TRAINING PROGRAM 	TECHNICAL	INTEGRATED PROVINCIAL HEALTH OFFICE OF OZAMIS CITY 		2078	\N	2011-10-03	2011-10-05	\N	0	0	0	TECHNICAL
2813	ACUTE INFERCTIOUS DIARHEA & COMMON INTESTINE PARASITISM 	TECHNICAL	UMEP, OZAMIS CITY		2078	\N	2011-08-10	2011-08-10	\N	0	0	0	TECHNICAL
2814	57TH POST GRADUATE COURSE - BENCH TO BEDSIDE: BEST EVIDENCE, BEST EXPERIENCE	TECHNICAL	NORTHERN MINDANAO MEDICAL CENTER, CAGAYAN DE ORO		2078	\N	2011-04-28	2011-04-29	\N	0	0	0	TECHNICAL
2815	PROVINCE-BASED ROOL OUT ORIENTATION OF THE UPDATED GUIDELINES MANUAL DIAGNOSIS AND TREATMENT FOR PUBLIC MEDIUM PRACTITIONERS 		DEPARTMENT OF HEALTH REGION IX		2078	\N	2010-09-14	2010-09-15	\N	0	0	0	
2816	JOINT RURAL CRITICAL CARE CONFERENCE II	TECHNICAL	SOCIETY OF RURAL PHYSICIANS OF CANADA		2078	\N	2009-02-09	2009-02-12	\N	0	0	0	TECHNICAL
2817	JOINT RURAL CRITICAL CARE CONFERENCE II 	TECHNICAL 	SOCIETY OF RURAL PHYSICIANS OF CANADA		2078	\N	2008-02-19	2008-02-22	\N	0	0	0	TECHNICAL 
2818	BLS 		RED CROSS 		2079	\N	2013-01-01	2013-01-01	\N	0	0	0	
2819	PUBLIC PRIVATE PARTNERSHIP MANUAL CAPACITY BUILDING PROGRAM PART II	SUPERVISORY	ASIAN DEVELOPMENT BANK		2080	\N	2013-08-27	2013-08-28	\N	0	0	0	SUPERVISORY
2820	PUBLIC ATTORNEY'S OFFICE MANDATORY CONTINUING LEGAL EDUCATION 	SUPERVISORY	PUBLIC ATTORNEY'S OFFICE 		2080	\N	2014-10-13	2014-10-17	\N	0	0	0	SUPERVISORY
2821	TRAINING FOR THE NEWLY APPOINTED PUBLIC ATTORNEY'S	SUPERVISORY	PUBLIC ATTORNEY'S OFFICE 		2080	\N	2015-09-29	2015-10-01	\N	0	0	0	SUPERVISORY
2822	SEMINAR ON THE REVISED PUBLIC ATTORNEY'S OFFICE OPERATIONS MANUAL & CODE OF CONDUCT 	SUPERVISORY 	PUBLIC ATTORNEY'S OFFICE 		2080	\N	2017-03-20	2017-03-22	\N	0	0	0	SUPERVISORY 
2823	JAPAN EAST AISA NETWORK OF EXCHANGE FOR STUDENTS 		JAPAN INTERNATIONAL COOPERATION CENTER 		2081	\N	2014-05-05	2014-06-04	\N	0	0	0	
2824	LEAD LIKE JESSE LEADERSHIP PROGRAM	LEADERSHIP	ATENEO SCHOOL OF GOVERNMENT AND KAYA NATIN		2081	\N	2013-04-25	2013-04-29	\N	0	0	0	LEADERSHIP
2825	WATSON INSTITUTE (ENTREPRENUERSHIP)	TECHNICAL	WATSON INSTITUTE 		2081	\N	2015-06-01	2015-07-01	\N	0	0	0	TECHNICAL
2826	FIRST STEP, START RIGHT: LEADERSHIP AND EVENTS ORGANZIING SEMINAR 	MANAGERIAL 	ASIAN MEDICAL STUDENTS ASSOCIATION 		2081	\N	2016-10-01	2016-10-01	\N	0	0	0	MANAGERIAL 
2828	7TH IMMAP SUMMIT MOBILE AND MARKETING 		FIERRA DE MANILA INC		2082	\N	2013-01-01	2013-01-05	\N	0	0	0	
2829	FACEBOOK BLUEPRINT		FACEBOOK PHILIPPINES		2082	\N	2016-01-01	2016-01-04	\N	0	0	0	
2830	BEROBACK SCHOOL LEADERSHIP PROGRAM 		DDB GROUP PHILIPPINES 		2082	\N	2018-08-01	2018-08-03	\N	0	0	0	
4225	Electronic Drug Price Monitoring System (EDPMS)		Otel Pampanga		101	\N	2016-09-14	2016-09-14	\N	0	0	0	
10489	Documentation of Best Practices in Technology Transfer & Commercialization of Cosortium Member Insitutions(CMIs)	Technical	CLAARDEC		56	\N	2018-01-17	2018-01-19	\N	0	0	0	Technical
10490	Farm Tourism 101 with Farm Guiding	Technical	International School of Sustainable Tourism		56	\N	2018-01-30	2018-02-02	\N	0	0	0	Technical
10491	Training on rice Crop Manager(RCM) Dissemination	Technical	International rice Research Institute		56	\N	2018-06-20	2018-06-21	\N	0	0	0	Technical
10492	Training on Agrop-Hydrology and Dam Design		Department of Agriculture-Regional Field Office III		56	\N	2018-11-19	2018-11-24	\N	0	0	0	
10493	E-Learning Course on Waste Management in Agribusiness	Technical	Development Academy of the Philippines		56	\N	2018-12-11	2018-12-14	\N	0	0	0	Technical
2851	MULTI-SECTORAL CAPACITY BUILDING LAWS AND THE RULES AND PROCEDURES FOR ENVIRONMENTAL CARES		PHILIPPINE JUDICIAL ACADEMY 		2084	\N	2011-05-25	2011-05-27	\N	0	0	0	
2852	COMPREHENSIVE PROGRAM ON CHILD PROTECTION 		UNITED NATIONS CHILDRENS FUNDS 		2084	\N	2012-02-15	2012-06-17	\N	0	0	0	
2853	SEMINAR WORKSHOP ON CODES AND REFERENCES FOR PUBLIC ATTORNEY'S OFFICE 		PUBLIC ATTORNEY'S OFFICE 		2084	\N	2012-06-18	2012-06-18	\N	0	0	0	
2854	2013 2ND PAGBA QUARTERLY SEMINAR AND MEETING 		NATIONAL COORDINATING COUNCIL/NATIONAL ECONOMIC DEVELOPMENT AUTHORITY REGION III		2084	\N	2013-04-03	2013-04-06	\N	0	0	0	
2857	2015 2ND PAGBA QUARTERLY SEMINAR AND MEETING		NATIONAL COORDINATING COUNCIL/NATIONAL ECONOMIC DEVELOPMENT AUTHORITY, REGION III		2084	\N	2015-07-22	2015-07-25	\N	0	0	0	
2858	2016 1ST PAGBA QUARTERLY SEMINAR AND MEETING 		PHILIPPINE ASSOCIATION FOR GOVERNMENT BUDGET ADMINISTRATION INCORPORATED		2084	\N	2016-03-29	2016-04-02	\N	0	0	0	
2859	SEMINAR ON THE REVISED PUBLIC ATTORNEYS OFFICE OPERATIONS MANUAL AND CODE OF CONDUCT		PUBLIC ATTORNEY'S OFFICE 		2084	\N	2017-03-20	2017-03-22	\N	0	0	0	
2860	6TH MANDATORY CONTINUING LOCAL EDUCATION AND NATIONAL CONVENTION OF PUBLIC ATTORNEY		PUBLIC ATTORNEY'S OFFICE 		2084	\N	2017-09-18	2017-09-22	\N	0	0	0	
2888	57TH ANNUAL CONVENTION: ENRICHING PRIMARY CARE THROUGH FAMILY MEDICINE 		PHILIPPINE ACADEMY OF FAMILY PHYSICIANS 		2085	\N	2016-02-18	2016-02-20	\N	0	0	0	
2889	ANIMAL BITE MODULE 		PHILIPPINE SOCIETY OF PRIMARY CARE PHYSICIANS IN TROPICAL MEDICINE		2085	\N	2016-04-02	2016-04-20	\N	0	0	0	
2890	DENGUE TRAINING MODULE 		PHILIPPINE SOCIETY OF PRIMARY CARE PHYSICIANS IN TROPICAL MEDICINE		2085	\N	2016-05-19	2016-05-19	\N	0	0	0	
3388	Geographical Informantion System Training Workshop		Provincial Government of Bataan & Maritime Academy of Asia  and the Pacific		2100	\N	2012-03-13	2012-03-16	\N	0	0	0	
2891	STANDARD FIRST AID TRAININGM ASIC EXTRACTION, ORIENTATION ON SAN LAZARO HOSPITAL EMERGENCY PREPAREDNESS,RESPONSE AND RECOVERY PLAN, MASS CASUALTY MANAGEMENT, AND FIRE & EARTHQUAKE SAFETY LICETURE AND DRILL		SAN LAZARO HOSPITAL 		2085	\N	2016-10-19	2016-10-21	\N	0	0	0	
2893	58TH ANNUAL CONVENTION: C.A.R.E.S		PHILIPPINE ACADEMY OF FAMILY PHYSICIANS 		2085	\N	2017-03-01	2017-03-03	\N	0	0	0	
2894	57TH ANNUAL CONVENTION: PATHWAYS TO EXCELLENCE IN HEALTHCARE 		PHILIPPINE ACADEMY OF FAMILY PHYSICIANS 		2085	\N	2018-03-02	2018-03-04	\N	0	0	0	
2895	CUSTOMER SERVICE SKILLS TRAINING 		SAN LAZARO HOSPITAL 		2085	\N	2018-03-22	2018-03-23	\N	0	0	0	
2896	COACHING AND MENTORING FOR LEADER 		SAN LAZARO HOSPITAL 		2085	\N	2018-04-12	2018-04-13	\N	0	0	0	
2897	GOOD CLINICAL PRATICES ENTITLED: GUIDELINES FOR THE STREAMLINED RESEARCH ETHICS REVIEW PROCESS IN THE DEPARMENT OF HEALTH 		SAN LAZARO HOSPITAL 		2085	\N	2018-03-09	2018-03-09	\N	0	0	0	
2898	BASIC COURSE IN OCCUPATIONAL MEDICINE 		PHILIPPINE COLLEGE OF OCCUPATIONAL MEDICINE - VALENZUELA CHAPTER 		2085	\N	2019-01-02	2019-01-26	\N	0	0	0	
2899	58TH ANNUAL CONVENTION: FAMILY PHYSICIANS: ADVANCING THE LIVES OF FILIPINOS THROUGH UNIVERSAL HEALTH CARE 		PHILIPPINE ACADEMY OF FAMILY PHYSICIANS 		2085	\N	2016-03-06	2016-03-09	\N	0	0	0	
8370	Supply Chain and Cost Structure Analysis Training Workshop 		Deparment of Agriculture Regional Field Office III		50	\N	2017-03-08	2017-03-10	\N	0	0	0	
8371	Preparation of Agribusiness Investement Proposals 		Deparment of Agriculture Regional Field Office III		50	\N	2017-01-25	2017-01-27	\N	0	0	0	
9376	Basic Occupational Safety and Health Course 		LabSpeak Safey Management Inc.		2176	\N	2014-12-15	2014-12-19	\N	0	0	0	
2965	Anesthesia In-service program		Jose B Lingad Memorial Hospital		130	\N	1991-01-02	1991-06-30	\N	0	0	0	
4326	NATIONAL TV PROGRAM(NTP) DATA VALIDATION		PROVINCIAL HEALTH OFFICE		108	\N	2017-01-12	2017-01-12	\N	0	0	0	
9377	BLS Training		iNet Center		2176	\N	2014-06-12	2014-06-13	\N	0	0	0	
9378	ACLS Training		iNet Center		2176	\N	2014-06-12	2014-06-13	\N	0	0	0	
9379	Basic Emergency Cardiovascular Pharmacology Training		iNet Center		2176	\N	2014-06-12	2014-06-13	\N	0	0	0	
9380	Basic ECG Reading Training		iNet Center		2176	\N	2014-06-12	2014-06-13	\N	0	0	0	
9381	Electrical Therapy RAED Operation Training		iNet Center		2176	\N	2014-06-12	2014-06-13	\N	0	0	0	
9382	Advanced Airway Management and Endotracheal Intubation Training		iNet Center		2176	\N	2014-06-12	2014-06-13	\N	0	0	0	
9383	Overcoming the Roadblocks in Infusion Therapy Promoting Safe and Quality Practices (IVT Renewal)		Association of NSG. Service Administrators of the Philippines, Inc		2177	\N	2018-07-20	2018-07-20	\N	0	0	0	
9384	Reflect, Reinvent, Redesign Nursing Leadership from Inside Out		Association of NSG. Service Administrators of the Philippines, Inc 		2177	\N	2018-03-15	2018-03-15	\N	0	0	0	
9386	Moving Forward Through Changing Times		Bataan Medical Society		2177	\N	2017-09-29	2017-09-29	\N	0	0	0	
9387	Nursing Leaders Toolkit for the 21st Century		Association of NSG. Service Administrators of the Philippines, Inc 		2177	\N	2017-08-25	2017-08-25	\N	0	0	0	
12403	Mandatory Continuing Legal Education 6		Ateneo Law School		2182	\N	2016-04-01	2016-04-30	36	0	0	0	
8343	Training on SDN Referral System		Bataan General Hospital and Medical Center		195	\N	2019-02-15	2019-02-15	\N	0	0	0	
8344	 Gatekeeping in Primary Health Care as Effective Tool for Service Delivery Network Training Workshop		Bataan General Hospital and Medical Center		195	\N	2019-02-13	2019-02-13	\N	0	0	0	
8345	ABTC Coordinators Meeting for 2018		Provincial Health Office		195	\N	2018-11-07	2018-11-07	\N	0	0	0	
8346	Patient Management and Quality Assurance in Health Services in Accordance with the new ISO 9001:2015 BS EN 15224:2016		Healthcore		195	\N	2018-10-29	2018-10-29	\N	0	0	0	
4874	HIV Counseling and Resting Maining		DOH		2154	\N	2018-07-13	2018-07-13	\N	0	0	0	
8347	 Unified Disease Registry Systems Project Implementation Review		Department of Health, Knowledge Management and Information Technology Service		195	\N	2018-10-18	2018-10-18	\N	0	0	0	
8348	World Rabies Day Celebration		Provincial Health Office Bataan		195	\N	2018-10-11	2018-10-11	\N	0	0	0	
8349	Service Delivery Network-Technical Working Group Meeting		Provincial Health Office-Bataan		195	\N	2018-10-05	2018-10-05	\N	0	0	0	
3378	Business Plan Preparation Training / Workshop		Philippine Rural Development Project Department of Agriculture Region 3		2100	\N	2014-11-24	2014-11-28	\N	0	0	0	
3381	Provincial Council on Disability Affairs Team Enhancement Seminar		Provincial Social Welfare and Development Office		2100	\N	2014-02-11	2014-02-11	\N	0	0	0	
3382	Training on Social  & Environmental Safeguards under Philippine Rural Development Program		Philippine Rural Development Project Department of Agriculture Region 3		2100	\N	2013-04-14	2013-04-15	\N	0	0	0	
3383	Workshop on the Preparation of Waste Analysis & Characterization Study Plan 		Department of Interior & Local Government		2100	\N	2013-11-14	2013-11-15	\N	0	0	0	
3384	Strategic Performance Management System ( SPMS)		Civil Service Commission R3		2100	\N	2013-10-29	2013-10-29	\N	0	0	0	
3385	Seminar Workshop on Knowledge Enhancement on Solid Waste Management for Prov'l Solid Waste Mgt. Boards		National Solid Waste Commission & Department of Environment & Natural Resources R3		2100	\N	2012-09-11	2012-09-13	\N	0	0	0	
3386	Seminar on Energy Efficiency & Conservation		Department of Energy		2100	\N	2012-05-17	2012-05-17	\N	0	0	0	
3387	Training on Social & Environmental Safeguards under Philippine Rural Development Program		Philippine Rural Development Project Department of Agriculture Region 3, Luzon A		2100	\N	2012-04-14	2012-04-15	\N	0	0	0	
12404	Mandatory Continuing Legal Education 5		Integrated Bar of the Philippines		2182	\N	2013-04-01	2013-04-30	36	0	0	0	
8351	Rabies Prevention and Control Program Meeting		Provincial Health Office-Bataan		195	\N	2018-09-14	2018-09-14	\N	0	0	0	
8352	Blood Letting Program		 Orani District Hopsital		195	\N	2018-08-28	2018-08-28	\N	0	0	0	
8353	Rabies Prevention and Control Program (RPCP) Data Validation and Updates on National Rabies Prevention and Control Program-Manual of Procedures (NRPCP-MOP)		Department of Health, Region III		195	\N	2018-05-17	2018-05-18	\N	0	0	0	
8355	LOG IN-: Overview to Concepts Trends and Issues of Nursing Informatics		Philippine Nurses Association, Inc, Bulacan Chapter		195	\N	2017-12-08	2017-12-08	\N	0	0	0	
8356	Emergency Trauma Care: Saving Lives		Philippine Nurses Association, Inc, Bulacan Chapter		195	\N	2017-12-08	2017-12-08	\N	0	0	0	
8357	29th Regional Annual Convention		Philippine Nurses Association, Inc, Bulacan Chapter		195	\N	2017-12-08	2017-12-08	\N	0	0	0	
8358	Literacy Health Teaching and Gift Giving		 Gordon College, Institute of Graduate Studies		195	\N	2017-12-02	2017-12-02	\N	0	0	0	
8359	Old and New Perspective in Nursing and Healthcare: Challenges the New Era.		Ang Nars, Inc.		195	\N	2017-10-28	2017-10-28	\N	0	0	0	
8360	 Nurses at the Forefront Transforming Healthcare for the Filipinos and the World		Philippine Nurses Association, Inc.		195	\N	2017-10-17	2017-10-19	\N	0	0	0	
8361	 World Rabies Day Celebration		Provincial Health Office-Bataan		195	\N	2017-09-28	2017-09-28	\N	0	0	0	
8362	Rabies Prevention and Control Quarterly Meeting		Provincial Health Office-Bataan		195	\N	2017-09-19	2017-09-19	\N	0	0	0	
8363	Training on Management of Rabies Exposure and Animal Bites		Department of Health, Region III		195	\N	2017-08-08	2017-08-11	\N	0	0	0	
8364	Continuing Professional Development Act of 2016		 Philippine Nurses Association, Inc. Region III Council		195	\N	2017-07-21	2019-07-29	\N	0	0	0	
8426	Consultative Meeting on Hepatitis B Treatment in Central Luzon		 World Health Organization		194	\N	2019-03-01	2019-03-01	\N	0	0	0	
8427	Gatekeeping in Primary Health Care 		Bataan General Hospital and Medical Center		194	\N	2019-02-13	2019-02-13	\N	0	0	0	
8428	Oplan Iwas Paputok		Provincial Health Office-Bataan		194	\N	2018-12-11	2018-12-11	\N	0	0	0	
8429	Refresher Course for PIDSR, VPDS and ESR with Specimen Collection and Doffing and Donning of PPE for Public Health Workers		Provincial Health Office-Bataan		194	\N	2018-10-03	2018-10-03	\N	0	0	0	
8430	Provider Initiated Counselling and Testing Training for HealthCare Providers		Philippine Business for Social Progress		194	\N	2018-05-01	2018-05-04	\N	0	0	0	
8431	Advanced Cardiac Life Support Course		St. Jude Hospital, Olongapo, Zambales		194	\N	2018-03-05	2018-03-06	\N	0	0	0	
8432	Basic ECG Reading		St. Jude Hospital, Olongapo, Zambales		194	\N	2018-03-05	2018-03-05	\N	0	0	0	
8433	Basic Life Support Course		St. Jude Hospital, Olongapo, Zambales		194	\N	2018-03-05	2018-03-05	\N	0	0	0	
8434	Advanced Airway Management		St. Jude Hospital, Olongapo, Zambales		194	\N	2018-03-06	2018-03-06	\N	0	0	0	
9619	Solid Waste Management		PENRO & ENRO Bataan		26	\N	1997-07-15	1997-07-16	\N	0	0	0	
9620	Peace in the World		Bataan Library & Museum		26	\N	1986-06-30	1986-07-01	\N	0	0	0	
9639	First Responder Training		Bataan General Hospital		27	\N	2017-10-17	2017-10-19	\N	0	0	0	
9640	Radio Communication Registration and Licensing (Restricted Land Mobile Radiotelephone Operation for Land Mobile Service)		National Telecommunications Commission & Prov'l. General Services Office		27	\N	2017-08-10	2017-08-10	\N	0	0	0	
9641	USP Smartcad CCTV Operator and Dispatch Operator		Bataan Command Center		27	\N	2017-01-30	2017-01-30	\N	0	0	0	
9642	USP Smartcad CCTV Operator 		Bataan Command Center		27	\N	2015-05-27	2015-05-27	\N	0	0	0	
9643	Small Business Management Seminar		Asia Pacific College of Advanced Studies, Balanga City, Bataan		27	\N	2014-09-04	2014-09-04	\N	0	0	0	
8372	Preparation of Business Model form the Provincial Commodity Investment Plan (PCIP) 		Deparment of Agriculture Regional Field Office III		50	\N	2017-01-11	2017-01-13	\N	0	0	0	
8373	Modernizing Agriculture for Improved Food Security and Livelihood in the Philippines 		Bataan Polytechnic State University 		50	\N	2016-09-21	2016-09-21	\N	0	0	0	
8374	Training on Financial Management 		Deparment of Agriculture Regional Field Office III		50	\N	2016-07-21	2016-07-22	\N	0	0	0	
8375	LGU PCIP/CCIP Module Encoding Session with NPCO, PSO RPCOs, and PPMIU,s		Department of Agriculture Philippine Rural Development Project Regional Project Coordination Office III		50	\N	2017-04-24	2017-04-28	\N	0	0	0	
8376	Asean Economic Community 2016 "Forum on Updates, Challeges and Opportunities on Food Security and Trade Liberalization 		Deparment of Agriculture Regional Field Office III		50	\N	2016-06-21	2016-06-24	\N	0	0	0	
3479	Writeshop/Workshop of the FAB- PIAC committee on Relocation Ressetlement Planning And Implementation		AFAB		2108	\N	2018-05-21	2018-05-22	\N	0	0	0	
3617	Records Management		Provincial Cooperative Development Office		963	\N	2013-09-06	2013-09-06	\N	0	0	0	
3480	Training on Mainstreaming Green Growth in Dev't Planning (Modules 1-6)		Global Green Growth Institute		2108	\N	2018-01-29	2018-06-22	\N	0	0	0	
10494	Training/Workshop on Generation of Commodity Investment Plan & Agribuss				35	\N	0001-01-01	0001-01-01		0	0	0	
10496	Rapid Market Assesment (RMA) Training	Technical	DA RFO III		35	\N	2018-08-28	2018-08-31	24	0	0	0	Technical
10497	Hands On Tmg on Google Sheet Reporting for R.O.	Technical	DA RFO III		35	\N	2018-09-11	2019-09-13	24	0	0	0	Technical
10498	Preparation of Agribusiness Proposal	Technical	DA RFO III		35	\N	2017-01-25	2017-01-27	24	0	0	0	Technical
10499	Preparation for Business Model from the PCIP	Technical	DA RFO III		35	\N	2017-01-11	2017-01-13	24	0	0	0	Technical
4415	Effective Social Work Writing in Medical Setting, Enriching Documentation		Association of Medical Social		2125	\N	2017-11-09	2017-11-10	\N	0	0	0	
4416	Skills for Improved Service Delivery		Workers of the Philippine Inc.		2125	\N	0001-01-01	0001-01-01	\N	0	0	0	
4417	Quality Family Planning Services Management of Post Partum Hemorhage Midwifer Care		Olongapo City Chapter Imap		2126	\N	2017-03-28	2017-03-28	\N	0	0	0	
4418	Training on Newborn Screening		Department of Health Regional Office 3 San Fernando, Pampanga		2126	\N	2016-11-17	2016-11-18	\N	0	0	0	
4205	ORIENTATION ON DOMINING AND DOFFING OF PPE				97	\N	2018-05-02	2018-05-04	\N	0	0	0	
4206	LACTATION MANAGEMENT TRAINING SEMINAR 		OTEL PAMPANGA, SAN FERNANDO/DOH		97	\N	2017-07-25	2017-07-28	\N	0	0	0	
4207	EXPANDED PROGRAM IMMUNIZATION EPI COORDINATORS QUALITY MEETING		PROVINCIAL HEALTH OFFICE PHO-BALANGA MCH CONFERENCE ROOM		97	\N	2017-02-09	2017-02-09	\N	0	0	0	
4208	SERVICE DELIVERY NETWORK MEETING DURING THE CELEBRATION OF WORLD AIDS DAY 2016 WITH A THEME "HANDS UP FOR HIV PREVENTION"		BATAAN GENERAL HOSPITAL BGH CINFERENCE ROOM BALANGA CITY		97	\N	2016-12-01	2016-12-01	\N	0	0	0	
4209	EPI-COORDINATORS QUARTERLY MEETING		PROVINCIAL HEALTH OFFICE BALANGA CITY		97	\N	2016-10-07	2016-10-07	\N	0	0	0	
4210	GOVERNMENT HOSPITALS DENGUE SCHOOL BASED IMMUNIZATION MEETING		DEPARTMENT OF HEALTH REGIONAL OFFICE III PAMPANGA		97	\N	2016-08-07	2016-08-07	\N	0	0	0	
4212	ORIENTATION ON MEASLES/RUBELLA ORAL POLIO VACCINE MASS IMMUNIZATION		DEPARTMENT OF HEALTH PHO BALANGA CITY		97	\N	2014-08-01	2014-08-01	\N	0	0	0	
4213	(MP-OPV-MI)STROKE CAN VICTIMIZE ANYONE(A SEMINAR ON CVA PREVENTION AND MANAGEMENT)		BATAAN PENINSULA STATE UNIVERSITY - THE GRADUATE SCHOOL MASTER OF ARTS		97	\N	2009-02-07	2009-02-07	\N	0	0	0	
4214	HEMODYNAMIC MONITORING		FLORENCE CONSULTANCY CENTER FOR NURSES SAN FERNANDO PAMPANGA		97	\N	2009-06-28	2009-06-28	\N	0	0	0	
4215	SEMINAR ON MANAGEMENT OF EDUCATIONAL INSTITUTION/SYSTEM:SHARED PUBLIC/PRIVATE EXPERIENCES		BATAAN PENINSULA STATE UNIVERSITY SCHOOL OF ADVANCED STUDIES		97	\N	2008-08-23	2008-08-23	\N	0	0	0	
4216	TRAINING ON THE MANUAL OF THE STANDARDS AND GUIDELINES IN THE MANAGEMENT OF THE HOSPITAL EMERGENCY DEPARTMENT		DEPARTMENT OF HEALTH NATIONAL CENTER FOR THE HEALTH FACILITY DEVELOPMENT		97	\N	2007-07-03	2012-07-06	\N	0	0	0	
4217	84TH FOUNDATION ANIVERSARY AND NATIONAL ANNUAL CONVENTION ROLE OF PNA IN FORGING GLOBAL PARTNERSHIP FO A PREPARED FUTURE IN HEALTH		PHILIPPINE NURSES ASSOCIATION INC(PNA)		97	\N	2006-10-23	2006-10-27	\N	0	0	0	
4218	31st Integrated Orientation and Updates to RA 9709 and Catergory A New Born Hearing Screening Personnel Certifying Course		Philippine National Ear Institute		98	\N	2018-12-16	2018-12-16	\N	0	0	0	
4219	M Power Training		Provincial Health Office		98	\N	2018-02-06	2018-02-08	\N	0	0	0	
4220	Meeting Challange of Continuing Professional Development		Philippine Association of Radiologic Technologist, Inc.		98	\N	2017-12-09	2017-12-10	\N	0	0	0	
4221	Revisiting the Past Glimpse of the Future for Service Excellence		Radiologic Philippine Association of Radiologic Technologist		98	\N	2014-11-27	2014-11-30	\N	0	0	0	
4222	Records Management Training For Level 1 Hospitals and Infirmaries in Region 3		Redd Manor Condotel City Of San  Fernando Pampanga		99	\N	2017-09-27	2017-09-29	\N	0	0	0	
4223	Lactation Management Education Training		Provincial Health Office		99	\N	2001-08-08	2001-08-10	\N	0	0	0	
4224	Capitol Review Class For Civil		Capitol Balanga City		101	\N	2016-09-10	2016-09-24	\N	0	0	0	
8378	Financial Management for Local Government Units 		Department of Agriculture Philippine Rural Development Project Regional Project Coordination Office III		50	\N	2016-05-18	2016-05-20	\N	0	0	0	
8379	Cluster a Food Terminal Summit 		Deparment of Agriculture Regional Field Office III		50	\N	2015-11-11	2015-11-13	\N	0	0	0	
8380	Business Plan Preparation Training / Workshop 		Department of Agriculture Philippine Rural Development Project Regional Project Coordination Office III		50	\N	2015-11-02	2015-11-06	\N	0	0	0	
8381	14th National Vegetable Congress 		Normin Veggies Marketing Cooperative, DA-RFO10 and Philippines Vegetable Industry Development Board 		50	\N	2015-01-16	2015-11-20	\N	0	0	0	
8382	Training on Cassava Food Processing 		Department of Agriculture Regional Field Officer III		50	\N	2015-11-11	2015-11-13	\N	0	0	0	
8383	Work and Financial Plan and Procuremeent Plan Preparation Training / Workshop 		Department of Agriculture Philippine Rural Development Project Regional Project Coordination Office III		50	\N	2015-11-02	2015-11-06	\N	0	0	0	
8384	Seminar on Organic Trading Post Management and Organic Agriculture Awareness Program 		Deparment of Agriculture Regional Field Office III		50	\N	2015-09-16	2015-09-18	\N	0	0	0	
10500	Orientation on GAP	Technical	DA RFO III		35	\N	2017-07-11	2017-07-12	16	0	0	0	Technical
10501	Data Rice Management Forum	Technical	DA RFO III		35	\N	2017-03-16	2017-03-17	24	0	0	0	Technical
8385	Doing Business in free trade areas and doing business with the eu using generalized scheme of preference plus 		Deparment of Agriculture Regional Field Office III		50	\N	2015-09-09	2015-09-09	\N	0	0	0	
8386	Credit Appraisal and Monitoring Course 		Bangko Sentral ng Pilipinas and Provincial Cooperative Enterprise Development Office 		50	\N	2015-07-28	2015-07-31	\N	0	0	0	
8391	Training on Feasibility Study/Detailed Engineering Design; Economic and Financial Analysis Social and Environmental Safeguards; Applied Geo-Tagging Technology Under the Philippine Rural Development Project Intensified Building Up of Infrastructure and Log		Department of Agriculture Philippine Rural Development Project Regional Project Coordination Office III		50	\N	2014-10-27	2014-10-31	\N	0	0	0	
3618	Financial Resilience		Local Government Unit- Balanga City		963	\N	2013-08-29	2013-08-29	\N	0	0	0	
8392	Training on Expanded Vulnerability and Suitability Assessment 		Department of Agriculture Philippine Rural Development Project Regional Project Coordination Office III		50	\N	2014-09-25	2014-09-26	\N	0	0	0	
8393	Training on Value Chain Analysis 		Department of Agriculture Philippine Rural Development Project Regional Project Coordination Office III		50	\N	2014-08-12	2014-08-15	\N	0	0	0	
8394	Advance Information Technology Trainig on Excel 2010 Pivot Tables and Charts 		Department of Agriculture-Office of the Secreatary		50	\N	2014-04-02	2014-04-04	\N	0	0	0	
8395	Writeshop for the Preparation of the National Action Plan to Combat Desertification, Land Degration and Drought 		Department of Soils and Water Management 		50	\N	2014-03-19	2014-03-21	\N	0	0	0	
8396	Training Cum Workshop on Soil Smapling Analysis and Mapping 		Bureau of Soils and Water Management Bureau of Agricultural Research 		50	\N	2014-02-24	2014-02-25	\N	0	0	0	
8397	Training Workshop on Project Development and Evaluation 		Department of Agriculture University of the Philippines Institute for small Scale Industries 		50	\N	2013-11-18	2013-11-21	\N	0	0	0	
8398	Review and Planning Workshop of Gawad SAKA 		Department of Agriculture		50	\N	2013-02-19	2013-02-22	\N	0	0	0	
8399	Seminar- Workshop on Sustainable land ad water management (SLM), Preventing Land Degradation and Securing water for future generation 		Bureau of Soils and Water Management		50	\N	2013-06-07	2013-06-07	\N	0	0	0	
3602	PHILIPPINE BIODIVERSITY CONSERVATION		DENR		2114	\N	0001-01-01	0001-01-01	\N	0	0	0	
8400	Training on Geotagging Technology for Agricultural Development Projects 		Bureau of Soils and Water Management		50	\N	2012-07-24	2012-07-26	\N	0	0	0	
8401	Wocat Asocon Workshop 		Bureau of Soils and Water Management		50	\N	2012-03-26	2012-03-28	\N	0	0	0	
8402	Soil and Land Resources Survey Training Course 		Austarlian Center for International Agriculturl Research		50	\N	2012-02-13	2012-02-17	\N	0	0	0	
10502	RBO and 4H Reg'l Consultative and Org'l, Strengthening	Supervisory	ATI-RTC		35	\N	2017-03-06	2017-03-08	16	0	0	0	Supervisory
10503	3 Days Tmg on GAP on Fruits and Veg	Technical	PRDP/DA RFO III		35	\N	2016-11-23	2016-11-25	24	0	0	0	Technical
10504	Reg'l Stakeholder Consulation Cum Prog. Assessment and Planning	Technical 	ATI-RTC		35	\N	2016-11-08	2016-11-09	16	0	0	0	Technical 
10505	Tmg on the Utilization of Geomapping Technology	Technical	PRDP/DA RFO III		35	\N	2016-06-14	2016-06-16	24	0	0	0	Technical
10506	Orientation on GAD	Supervisory	ATI-RTC		35	\N	2016-06-17	2016-06-17	16	0	0	0	Supervisory
10507	Strategic Project Planning/Taining Workshop	Technical	DAP/DA RFO III		35	\N	2016-05-10	2016-05-12	24	0	0	0	Technical
10509	Cluster Appreciation Coyurse on VCA & CIP for Provincial PPMIU's	Technical	 PRDP		35	\N	2016-09-06	2016-09-09	32	0	0	0	Technical
10510	Expanded Vulnerability & Suitability Assessment (E-VSA)	Technical	PRDP		35	\N	2015-09-22	2015-09-25	32	0	0	0	Technical
10511	Retooling on Damage Assessment & Reporting System	Technical	DA RFO III		35	\N	2015-08-27	2015-08-28	16	0	0	0	Technical
10514	Provincial Voluntary Blood Service Program Quarterly Meeting		Department of Health		240	\N	2018-10-31	2018-10-31	8	0	0	0	
10515	Basic Malaria Microscopy Training Course		Department of Health		240	\N	2018-09-16	2018-09-28	96	0	0	0	
10516	12th PAMET North Luzon Regional Conference		Pamet Phils		240	\N	2018-01-13	2018-07-14	16	0	0	0	
10517	Training in Donor Recreuitment, Care and retention		Department of Health		240	\N	2017-07-13	2018-11-07	36	0	0	0	
10518	Refresher Course on HIV Proficiency and Other Blood-Borne STI's (Hepatitis B/C and Syphilis)		Department of Health NRL SACCL		240	\N	2018-06-19	2018-06-19	8	0	0	0	
10519	4th Quater Meeting on Provincial Voluntary Blood Service Program		Department of Health - PHO		240	\N	2018-06-19	2018-06-19	8	0	0	0	
10520	53th Pamet Annual Convention		Pamet Phils		240	\N	2017-11-22	2017-11-22	8	0	0	0	
10521	Updates on Infectious Disease Programs with Data Validation		Department of Health		240	\N	2017-10-10	2017-10-11	16	0	0	0	
10522	Workshop on Parasitology		Pamet Bataan		240	\N	2017-09-23	2017-09-25	36	0	0	0	
3584	Pagsasanay Sa korespondensya ng Opisyal at Kautusang Tagapagpaganap Blg. 335	Technical	Komisyon sa Wikang Filipino		2110	\N	2015-09-29	2015-09-29	\N	0	0	0	Technical
6744	Training Auto-Cad		Community Live Hood Program		313	\N	2008-11-03	2009-02-06	\N	0	0	0	
6745	Barangay Newly Elected Officeal (BNEO) Program		Liga ng Barangay		313	\N	2011-02-23	2011-02-25	\N	0	0	0	
6746	Barangay Accounting and Financial Managements System		BPALGA		313	\N	2011-05-05	2011-05-06	\N	0	0	0	
6747	Orientation on Basic Siesmology and Siesmological Hazards		CDRRM		313	\N	2011-06-15	2011-06-15	\N	0	0	0	
6748	Occupation Safety and Health Awareness		Provincial Engineering Office		313	\N	2018-03-26	2018-03-26	\N	0	0	0	
10523	3rd Quarter Meeting of the Provincial Voluntary Blood Service Program		Department of Health -PHO		240	\N	2017-09-06	2017-09-06	8	0	0	0	
10524	1st Continuing Professional Development Seminar		Pamet Bataan		240	\N	2017-07-09	2017-07-09	8	0	0	0	
6749	Trafficking in Person and Anti - Violence Against Women and their Children		Provincial Engineering Office		313	\N	2018-05-11	2018-05-12	\N	0	0	0	
3592	Writeshop On Emergency Preparedness Plan for New Cattle Disease		Central Luzon State University		962	\N	2018-07-11	2018-07-11	\N	0	0	0	
3593	Kapatid Mentor Me-Module 1-Enterpreneurial Mindsetting		DTI-Bataan		962	\N	2018-04-20	2018-04-20	\N	0	0	0	
3594	Kapatid Mentor Me-Module 2- Marketing		DTI-Bataan		962	\N	2018-04-20	2018-04-20	\N	0	0	0	
3595	2016 24D In-House Review		Philippine Carabao Center		962	\N	2016-06-18	2016-06-18	\N	0	0	0	
3610	Personality Development Excellence		Local Government Unit- Balanga City		963	\N	2015-04-01	2015-04-01	\N	0	0	0	
3611	Frontline Service Management		Local Government Unit- Balanga City		963	\N	2014-09-05	2014-09-05	\N	0	0	0	
3612	14th Meat Inspector Congress		DA-NMIS		963	\N	2014-08-12	2014-08-14	\N	0	0	0	
3613	Good Hygienic Slaughjterhouse Practices		DA-NMIS		963	\N	2014-06-24	2014-06-25	\N	0	0	0	
3614	Public Service Ethics and Accountabilities		Civil Service Commission		963	\N	2014-06-19	2014-06-20	\N	0	0	0	
3615	Public Speaking Skills Enhancement		Local Government Unit- Balanga City		963	\N	2014-03-05	2014-03-06	\N	0	0	0	
3616	Audit Management		Provincial Cooperative Development Office		963	\N	2013-09-27	2013-09-29	\N	0	0	0	
3619	Government Procurement Reform Act		Local Government Unit- Balanga City		963	\N	2013-03-25	2013-03-26	\N	0	0	0	
3620	Work and the Individual		Local Government Unit- Balanga City		963	\N	2013-03-11	2013-03-11	\N	0	0	0	
3621	Organization Internal Control System		Local Government Unit- Balanga City		963	\N	2012-02-03	2012-02-03	\N	0	0	0	
3622	Manual Packaging		DA-NMIS		963	\N	2011-10-11	2011-10-13	\N	0	0	0	
3624	Computer Aided Financial and Economic Analysis Training		DA-NMIS		963	\N	2010-10-26	2010-10-29	\N	0	0	0	
3626	Mid-Term Conference on the Meat Establishment Improvement Program Implementation		DA-NMIS		963	\N	2010-05-26	2010-05-28	\N	0	0	0	
3627	Seminar Workshop on Good Manufacturing Practices (GMP)		DA-NMIS		963	\N	2010-02-23	2010-02-26	\N	0	0	0	
3628	12th Meat Inspection Congress		DA-NMIS		963	\N	2009-10-06	2009-10-08	\N	0	0	0	
3629	Seminar on Bio-Digester		DA-Main		963	\N	2009-08-18	2009-08-18	\N	0	0	0	
3598	REFORMS ON JUDICIAL SYSTEM		U.P. INSTITUTE ON JUDICIAL ADMINISTRATION		2114	\N	0001-01-01	0001-01-01	\N	0	0	0	
3599	ELECTION LAWS OF THE PHILIPPINES		COMELEC		2114	\N	0001-01-01	0001-01-01	\N	0	0	0	
3600	GOVENMENT PROCUREMENT REMORFS		BRITISH COUNCIL		2114	\N	0001-01-01	0001-01-01	\N	0	0	0	
3601	PHILIPPINE LABOR CODE REFORMS		CONG. COMISSION ON LABOR		2114	\N	0001-01-01	0001-01-01	\N	0	0	0	
3603	U.N. CONVENTION ON THE LAW OF THE SEAS		DFA		2114	\N	0001-01-01	0001-01-01	\N	0	0	0	
3604	PHILIPPINE AGENDA 21		DENR		2114	\N	0001-01-01	0001-01-01	\N	0	0	0	
3605	LAND ADMINISTRATION & MANAGEMENT		DOJ, LAMP		2114	\N	0001-01-01	0001-01-01	\N	0	0	0	
3606	KYORO PROTOCOL		DENR		2114	\N	0001-01-01	0001-01-01	\N	0	0	0	
3607	LEGAL TRAINING ON TOBACCO CONTROL AT THE LOCAL LEVEL		DOH AND HEALTH JUSTICE PHILIPPINES		2114	\N	0001-01-01	0001-01-01	\N	0	0	0	
3608	MCLE LECTURE SERIES (YEAR 2013)		UP COLLEGE OF LAW		2114	\N	0001-01-01	0001-01-01	\N	0	0	0	
3609	MCLE LECTURE SERIES (YEAR 2016)		UP COLLEGE OF LAW		2114	\N	0001-01-01	0001-01-01	\N	0	0	0	
4226	Personality Development & Good Grooming WorkShop		Las Casal Filipinas De Acuzar		101	\N	2012-09-24	2012-09-24	\N	0	0	0	
4227	Competency Building on The Use Of Online Health Facilities Statistical Reporting System for Various Infirmaries		Department of  Health - Health Facilities & Service Regulatory Bureau		102	\N	2016-11-24	2016-11-24	\N	0	0	0	
4228	Negotiation Skills 101		Sistematic Asia		102	\N	2009-09-24	2009-09-24	\N	0	0	0	
4229	Emerging Technology		Sistematic Asia		102	\N	2009-09-24	2009-09-24	\N	0	0	0	
4230	Leadership,Attitues and Integrity		University of the Philippines- Information Technology Training Center		102	\N	2009-09-11	2009-09-11	\N	0	0	0	
4231	Philippine Youth Congress in Information Technlogy 2009		University of the Philippines - Information Technology Center		102	\N	2009-09-11	2009-09-11	\N	0	0	0	
4232	Basic Emergency Obstetric & Newborn Care (BEmONC) Skills Trainign Course		Jose B. Lingad Memorial Regional Hospital		103	\N	2018-06-04	2018-06-14	\N	0	0	0	
4233	Training On HIV Services(HIV Counseling and Testing)		Crown Royale Balanga City Bataan		103	\N	2018-03-06	2018-03-06	\N	0	0	0	
4234	Workshop in Setting Up of Family Planning Service in the Hospital		DOH		103	\N	2016-02-11	2016-02-12	\N	0	0	0	
4248	Review and Revision of Policies and Standards of Hospital Pharmacy Management Manual for Chapter on Financial Management and Risk Management		Department of Health		104	\N	2018-09-18	2018-09-20	\N	0	0	0	
4249	Tobacco Control Leadership Seminar/Workshop 		Provincial Health Office		104	\N	2018-07-04	2018-07-05	\N	0	0	0	
4251	2017 PPHA Continuing Professional Development Seminar		Crowne Royale Bataan		104	\N	2017-08-22	2017-08-22	\N	0	0	0	
4252	Optimum Health Outcomes Through Medication Safety 2		Plaza Hotel Balanga Bataan		104	\N	2017-07-27	2017-07-27	\N	0	0	0	
4253	2017 Sympsium on Public Accountability and Governance		Barangay Tala, Orani Bataan		104	\N	2017-03-24	2017-03-24	\N	0	0	0	
4254	FDA Licensing Seminar  A.O 34		Drug Store Association of the Phillippines		104	\N	0001-01-01	0001-01-01	\N	0	0	0	
4255	Electronic Drug Price Monitoring System		Department of Health-FDA		104	\N	0001-01-01	0001-01-01	\N	0	0	0	
4256	Work Attitude and Values Enchancement Training		Provincial Human Resource Management		104	\N	2016-02-20	2016-02-21	\N	0	0	0	
4258	Collaborative Medication Management		Subic Bay Exhibition and Convention Center		104	\N	2016-02-25	2016-02-27	\N	0	0	0	
4275	Supervisory Development Course	Supervisory/Managerial	Civil Service Commision Region 3		105	\N	2017-10-09	2018-09-14	\N	0	0	0	Supervisory/Managerial
4286	Orientation on Local Investment Plan for Real Health (LIPH) CUM Service Delivery Network Meeting		Provincial Health Office		106	\N	2018-12-06	2018-12-06	\N	0	0	0	
4287	Patient Management And Quality Assurance in Health Services- ISO 9001:2015 BS EN 15224:2016		Healthcare		106	\N	2018-10-29	2018-10-29	\N	0	0	0	
4288	Seminar/Workshop on Continuous Quality  Improvement(CQI) in Healthcare		Philippine Society For Quality in Healthcare		106	\N	2018-03-21	2018-03-23	\N	0	0	0	
4289	Coordination Meeting for Health Facilities Enchancement Program 2018		DOH - 3		106	\N	2018-01-22	2018-01-26	\N	0	0	0	
4290	Orientation of Hospitals, Ambulatory Surgical Clinical and Free Standing Dialisys Clinics		Philhealth		106	\N	2017-06-08	2017-06-08	\N	0	0	0	
4291	All - Hazard Incident Management Team Course		Regional Disaster Risk Reduction and Management  Council 3		106	\N	2018-01-22	2018-01-26	\N	0	0	0	
4292	Incident Command Training	Technical	DILG		106	\N	2017-02-06	2017-02-10	\N	0	0	0	Technical
4293	Healthcare Providers Orientation on Electronic Medical Records (EMR)		Philhealth		106	\N	2017-02-01	2017-02-01	\N	0	0	0	
11619	Flepowphil National Conference		POPCOM		525	\N	2015-04-22	2015-04-24	24	0	0	0	
4294	Updates in Pulmunary Medicine	Clinical	Manical Doctors Hospital		106	\N	2016-07-26	2016-07-29	\N	0	0	0	Clinical
4295	Infectous DSE Emergency Aberrance & Stewardship	Clinical	Manila Doctors Hospital		106	\N	2016-06-23	2016-06-23	\N	0	0	0	Clinical
4296	Pedriatic Infectious Scenarios	Clinical	Pedriatic Infectious Disease Society of the Philippines		106	\N	2016-02-17	2016-02-18	\N	0	0	0	Clinical
4297	Skills Training Course on Progestin Only Subdermal Implant	Clinical	Dr.Jose Fabella Memorial Hospital		106	\N	2014-11-17	2014-11-18	\N	0	0	0	Clinical
4298	Revised Dengue Clinical Case Management Training	Clinical	DOH-RO3		106	\N	2015-09-16	2015-09-18	\N	0	0	0	Clinical
4299	Basic Emergency Obstetric & Newborn Care(BEMONC)Skills Training Course		DOH-RO3		106	\N	2012-06-11	2012-06-21	\N	0	0	0	
4300	126/		UP-PGH		106	\N	2011-11-10	2011-11-10	\N	0	0	0	
4301	DOT Training For Referring Car Providers 		Philippine Coaliton Againts TB		106	\N	2011-05-25	2011-05-25	\N	0	0	0	
4302	Essential Intrapartum & Newborn Care Workshop		BGH		106	\N	2011-04-07	2011-04-07	\N	0	0	0	
4303	QUALITY IMPROVEMENT TRAINING WORKSHOP ON HEMATHOLOGY(FACILITATOR)		CROWN ROYALE HOTEL BALANGA BATAAN		107	\N	2018-03-09	2018-03-11	\N	0	0	0	
4304	TRAINING ON HIV TESTING SERVICES (HIV COUNSELING & TRUSTING)		CROWN ROYALE HOTEL BALANGA BATAAN		107	\N	2018-03-06	2018-03-09	\N	0	0	0	
4305	PROVINCIAL VECTORE BORNE DISEASES PROGRAM IMPLEMENTATION REVIEW		PAN RESORT ABUCAY BATAAN		107	\N	2017-11-21	2017-11-23	\N	0	0	0	
4306	REFRESHER COURSE ON MALARIA MICROSCOPY FOR MED TECH		KING'S ROYALE HOTEL SAN FERNANDO PAMPANGA		107	\N	2017-11-06	2017-11-10	\N	0	0	0	
4307	TRAINING ON HIV PROFIENCY FOR MEDICAL TECHNOLOGIST 		NRL-SACCL SAN LAZARO MANILA		107	\N	2017-10-01	2017-10-10	\N	0	0	0	
4308	WORKSHOP ON PASASITOLOGY(FACILITATOR)		BATAAN LIBRARY		107	\N	2017-09-23	2017-09-25	\N	0	0	0	
4309	NEWBORN SCREENING SEMINAR OREINTATION TRAINING		REGIONAL HEALTH OFFICE III		107	\N	2016-11-17	2016-11-18	\N	0	0	0	
4310	WORKSHOP ON QUALITY MANAGEMENT SYSTEM AND UPDATES ON NEW ASSEMENTS TOOL IN CLINICAL LABORATORY		REGIONAL HEALTH OFFICE III		107	\N	2016-08-16	2016-08-17	\N	0	0	0	
3630	Social Preparation Orientation Workshop for MEIP Recipients		DA-NMIS		963	\N	2009-08-12	2009-08-14	\N	0	0	0	
3631	NC II- Bread and Pastry Production		TESDA- Bataan		964	\N	2015-10-13	2020-10-12	\N	0	0	0	
3632	NC II- Food Processing		TESDA- Bataan		964	\N	2016-04-20	2016-04-21	\N	0	0	0	
3633	Pre-Employment Orientation Seminar 2017 Entitled- Hire- Helping Individuals Reach for Employment: Empowering the New Members of the Labor Force		Bataan Peninsula State University (Main Campus)		964	\N	2017-03-01	2017-03-01	\N	0	0	0	
3634	9th Students Research Colloquim		Bataan Peninsula State University (Main Campus)		964	\N	2016-02-17	2016-02-17	\N	0	0	0	
3635	Seminar on Basic Occupational Safety and Health Standards (OSHS)		Bataan Peninsula State University (Main Campus)		964	\N	2016-04-21	2016-04-29	\N	0	0	0	
3636	Pre-Employment Orientation Seminar 2015 Entitled " Survive and Thrive: Power Plan for Career Success"		Bataan Peninsula State University (Main Campus)		964	\N	2015-12-01	2015-12-01	\N	0	0	0	
3637	Seminar on Basic Recording & Bookkeeping		DTI- Bataan		964	\N	2018-03-16	2018-03-16	\N	0	0	0	
3638	Basic Life Support Provider		Healthcare Advantage Institute Kapitolyo Pasig		2116	\N	0001-01-01	0001-01-01	\N	0	0	0	
3640	Basic Occupational Safety & Health 		Synerquest Management Consultancy Sevice, Inc.		2116	\N	2013-07-22	2013-07-26	\N	0	0	0	
3641	Fire, Earthquake, Tsunami Emergency Reponse Training 		Club Paradise Resort Coron, Palawan		2116	\N	2014-02-18	2014-02-19	\N	0	0	0	
3642	Basic & Advanced Course on ECG Training		University of the Philippines/Philippines General Hospital(Cardiology Department)		2116	\N	2017-08-10	2017-08-11	\N	0	0	0	
3643	HIV Basic Management & Counceling		Research Institute For Tropical Medicine		2116	\N	2017-03-31	2017-04-02	\N	0	0	0	
3644	Understanding the Latest Practice Guidelines Based on Diagnostic & Therapeutic Evidences		Quirono Memorial Medical Center Department OF Internal Medicine		2116	\N	2017-08-31	2017-09-01	\N	0	0	0	
4492	FIRST REGIONAL CONVENTION AND PARENTAL ASSOCIATION OF THE PHILS CHAPTER CARAVAN		PERINATAL ASSN OF THE PHILS		133	\N	2018-07-20	2018-07-20	\N	0	0	0	
4496	EMPOWERED FAMILY PHYSICIAN , MOVING BEYOND BORDERS OF CARE		PHIL ACADEMY OF FAMILY PHYSICIAN		133	\N	2018-11-18	2018-11-18	\N	0	0	0	
4495	PMA - UNILAB CPD		UNILAB- CENTRAL  LUZON		133	\N	2017-11-26	2017-11-26	\N	0	0	0	
4493	PROVIDER INITIATED HIV COUNSELLING AND TESTING		DEPARTMENT OF HEALTH 		133	\N	2018-07-11	2018-07-13	\N	0	0	0	
4491	VIRAL HEPATITIS WORKSHOP		DEPARMENT OF HEALTH III		133	\N	2018-11-22	2018-11-22	\N	0	0	0	
4499	NOVEL COMBINATION OF EMPA - LINA TO BRING ENCHANCED GLUCOSE CONTROL AND CV RISK REDUCTION IN TYPE 2 DIABETES MELLITUS PATIENTS		OLONGAPO MEDICAL SOCIETY		133	\N	2017-09-27	2017-09-27	\N	0	0	0	
3689	Training on HIV Testing Service (Counseling and Testing)		DOH Region III		124	\N	2018-09-25	2018-09-28	\N	0	0	0	
3691	Basic Life Support 		American Safety and Health Institute		124	\N	2018-08-25	2018-08-25	\N	0	0	0	
3694	Newborn Hearing Test		UP-PGH Manila 		124	\N	2017-12-09	2017-12-09	\N	0	0	0	
3696	Training on Rabies and Animal Bite Management		DOH Center for Health 		124	\N	2010-08-17	2010-08-19	\N	0	0	0	
3704	Philippine Red Cross Basic Life Support -CPR Training for Adult-Lay Rescuers	Technical	Philippine Red Cross		1781	\N	2017-11-24	2017-11-24	\N	0	0	0	Technical
3705	GAD Basic Concepts and Issues	Managerial	Ms. Rosana Verdida- POP Officer		1781	\N	2016-07-01	2016-07-01	\N	0	0	0	Managerial
3707	Capacity Development -Proper Grooming and Work Attitude Values Enhancement	Supervisory	Mr. Alfredo Solomon Jr.		1781	\N	2017-10-29	2017-10-30	\N	0	0	0	Supervisory
3709	Enhanced Community/Immersion Program (ECIP)	Supervisory			1781	\N	2018-02-16	2018-02-16	\N	0	0	0	Supervisory
3711	Bomb-Threat Awareness Seminar	Supervisory	Bataan PNP		1781	\N	2018-04-27	2018-04-27	\N	0	0	0	Supervisory
4490	OPTIMIZING CLINICAL PRACTICE IN PRIMARY HEALTH CARE AS EFFECTIVE TOOL FOR SERVICE DELIVERY NETWORK SDN		BGH		133	\N	2019-01-14	2019-01-14	\N	0	0	0	
12428	Propel for the 	Best Local Legislation 101	DILG-Region 3		2180	\N	2017-04-26	2017-04-28	20	0	0	0	Best Local Legislation 101
12429	Young leaders for Good Governance Fellowship Program		Jesse Robredo Foundation		2180	\N	2017-01-12	2017-01-13	16	0	0	0	
4504	Hospital Billing System Training 		DOH		170	\N	2017-03-05	2017-03-07	\N	0	0	0	
12421	54 Hour Intensive Training Course In Advanced Communications For Internation E-Business		Columbian College		636	\N	2013-07-13	2013-10-01		0	0	0	
12422	Students For The Advancement Of Global Entrepreneurship		Columbian College		636	\N	2014-02-27	2014-02-27		0	0	0	
12423	Unleashing Within The Youth Greart Potentials In Becoming Great Leaders Of Tomorrow		Olongapo City, Convention Center		636	\N	2014-03-05	2014-03-05		0	0	0	
3747	2019 FLEPOWPHIL National Conference and Planning Workshop 		League National Population, Davao City 		515	\N	2019-02-26	2019-02-28	\N	0	0	0	
3749	Seminar on Integrity Transparency and Accountability in Public Service		LGU-Dinalupihan		515	\N	2018-04-12	2018-04-12	\N	0	0	0	
3750	Training of Trainers on Gender Responsible Population Strategies		POPCOM Region III		515	\N	2017-11-15	2017-11-17	\N	0	0	0	
3751	Bahay Bahay Strategy Orientation for Health Service PProvider at the Local Level 		POPCOM Region III		515	\N	2017-06-21	2017-06-22	\N	0	0	0	
3752	Refresher Course on Pre Marriage Counselling for PMC Counsellor of Bataan		POPCOM-Baguio		515	\N	2016-02-08	2016-02-10	\N	0	0	0	
3753	GAD Training		Provincial (Baler) 		515	\N	2016-03-18	2016-03-20	\N	0	0	0	
3754	KATROPA Seminar ( Region III)		POPCOM Region III		515	\N	2015-11-05	2015-11-05	\N	0	0	0	
3755	KATROPA Seminar (Bataan) 		Provincial (Bataan)		515	\N	2015-03-05	2015-03-05	\N	0	0	0	
3756	Federation of the League of Population		League National POPCOM - Manila		515	\N	2015-04-22	2015-04-24	\N	0	0	0	
3757	Population Development Planning Workshop for Brgy. Officials		Region POPCOM (B.C.)		515	\N	2014-07-18	2014-07-20	\N	0	0	0	
3758	ISO/ISM Quality and Safety Management System	Supervisory	Limay Bataan/PNOC		1784	\N	1998-03-10	1998-03-10	\N	0	0	0	Supervisory
3759	Effective Physical Control Systems in Warehouse Operation	Supervisory	Makati City/Human Technology Dev. Center		1784	\N	1993-11-18	1993-11-19	\N	0	0	0	Supervisory
3760	Employee Orientation on HRMD Services	Supervisory	Limay Bataan/PNOC		1784	\N	1993-03-12	1993-03-12	\N	0	0	0	Supervisory
3761	PIC Leadership Course	Supervisory	Limay Bataan/PNOC		1784	\N	1990-06-19	1990-06-21	\N	0	0	0	Supervisory
3762	General System Workshop	Supervisory	BED Databank/PNOC		1784	\N	1987-05-27	1987-05-29	\N	0	0	0	Supervisory
3763	PNOC Files Improvement Program	Supervisory	MLA. OFC/PNOC		1784	\N	1985-06-08	1985-06-08	\N	0	0	0	Supervisory
3764	Budgeting	Supervisory	Mandarin Hotel MLA/PNOC		1784	\N	1980-07-25	1980-07-25	\N	0	0	0	Supervisory
3765	Lockheed Detective and watchman Agency, INC		Provincial Engineer Office		1800	\N	2012-09-11	2012-09-11	\N	0	0	0	
3766	Enchanced Community Immersion Program (ECIP)		Philippine National Police		1800	\N	2016-02-16	2016-02-16	\N	0	0	0	
3767	Raduio Communication Registration and Licensing restricted LAN Mobile radio telephone Operation fior Land Mobile Services (RLM cert.)		NTC		1800	\N	2017-08-10	2017-08-10	\N	0	0	0	
3791	BASIC LIFE SUPPORT - CPR FOR HEALTHCARE PROVIDER 		PHILIPPINE NATIONAL REDCROSS AT PRC TRAINING CENTER BALANGA CITY BATAAN		2011	\N	2010-08-10	2010-08-10	\N	0	0	0	
3792	FIRST AID TRAINING - STANDARD 		PHILIPPINE NATIONAL REDCROSS AT PRC TRAINING CENTER BALANGA CITY BATAAN		2011	\N	2010-04-10	2010-07-10	\N	0	0	0	
3793	COMPUTER LITERACY TRAINING OF SCHOOL HEALTH ADN NUTRITION UNIT		GSP BUILDING		2011	\N	2018-11-12	2018-11-12	\N	0	0	0	
3794	DIVISION ORIENTATION ON SCHOOL BASED FEEDING PROGRAM FY. 2018		CROWN ROYAL HOTEL, BALANGA CITY BATAAN		2011	\N	2018-06-27	2018-06-27	\N	0	0	0	
3795	REGIONAL ELCTRONIC KASAYSAYAN LOKAL SYMPOSIUM		LA VISTA BALANGA, INLAND RESORT BALANGA CITY		2011	\N	2018-05-25	2018-05-25	\N	0	0	0	
3796	QUALITY MANAGEMENT SYSTEM ISO 9001:2015 AWARDING AND RECOGNITION		CENTRAL ATRIUM RESIDENCES		2011	\N	2018-04-04	2018-04-04	\N	0	0	0	
3798	STRATEGIC PLANNING & FINALIZATION OF PROGRAM & PROJECT OF SHN		VISTA TALA RESORT, ORANI, BATAAN		2011	\N	2018-01-24	2018-01-25	\N	0	0	0	
3800	CONSULTATIVE MEETING ON ENHANCING PERFORMANCE FOR HARMONIZED SCHEDULE & COMBINED MASS DRUG ADMINISTRATION (HS CMDA)		PAN RESORTS HOTEL & EVENTS PLACE		2011	\N	2016-06-29	2017-06-29	\N	0	0	0	
3801	REORIENTATION SEMINAR ON THE OPERATION & MANAGEMENT OF SCHOOL CANTEENS		VILLA AMANDA RESORT & RESTAURANT, ABUCAY, BATAAN		2011	\N	2017-06-21	2017-06-21	\N	0	0	0	
3802	STAKEHOLDERS & HRH POINTPERSON ENGAGEMENT FOR THE IMPLEMENTATION OF HEALTH PROGRAMS		BATAAN DOH AT CROWN ROYAL HOTEL CITY OF BALANGA CITY, BATAAN		2011	\N	2017-06-02	2017-06-02	\N	0	0	0	
3803	UPDATES & REFORMULATION OF SCHOOL HEALTH & NUTRITION PROGRAMS & PROJECTS OF SDO BATAAN		SINAGTALA FARM RESORT ORANI, BATAAN		2011	\N	2017-05-02	2017-05-23	\N	0	0	0	
3804	INTERNATIONAL SEMINAR - WORKSHOP ON RESEARCH AND PUBLICATION		ILEAD - TEACHERS CAMP AT BAGUIO CITY		2011	\N	2017-05-12	2017-05-14	\N	0	0	0	
3805	NATIONAL SCHOOL DEWORMING DAY		CROWN ROYAL HOTEL, BALANGA CITY OF BATAAN		2011	\N	2015-06-22	2015-06-22	\N	0	0	0	
3806	Orientation on Gender and Development Basic Concepts and Issues				1779	\N	0001-01-01	0001-01-01	\N	0	0	0	
3807	Basic Life Support-CPR Training for Adult Lay Rescuers		Philippine Red Cross		1779	\N	2017-11-24	0001-01-01	\N	0	0	0	
3809	Radio Communication Registration and Licensing (Restricted Land Mobile Radiotelephone Operation for Land Mobile Service RLM Certificate		NTC REG III- Engr. Wilson O. Lejarde		1779	\N	2017-08-10	0001-01-01	\N	0	0	0	
3810	Orientation Seminar on Magna CARTA of Women (R.A. 9710) and Anti Violence Against Women & Children (R.A. 9262)		Provincial Tourism Office		651	\N	2016-07-11	2016-07-11	\N	0	0	0	
3812	Orientation Workshop on the Tourism Guidebook for Local Government Units		Department of Tourism Region III		651	\N	2016-11-22	2016-11-22	\N	0	0	0	
3813	17th Association of Tourism Officers of the Philippines National Convention		Association of Tourism Officers of the Philippines		651	\N	2016-10-04	2016-10-07	\N	0	0	0	
3814	16th Association of Tourism Officers of the PPhilippines National Convention		Association of Tourism Officers of the Philippines		651	\N	2015-10-03	2015-10-06	\N	0	0	0	
3815	3rd Association of Tourism Officers of Central Luzon Regional Conference		Association of Tourism Officers of Central Luzon		651	\N	2015-08-19	2015-08-20	\N	0	0	0	
3816	15th Association of Tourism Officers of the Philippine National Convention		Association of Tourism Officers of the Philippines		651	\N	2014-10-02	2014-10-04	\N	0	0	0	
3817	Orientation Workshop for the National Eco-Tourism Strategy and Action Plan 2013-2022		Department of Tourism- Department of Environment and natural Resources National		651	\N	2014-09-25	2014-09-26	\N	0	0	0	
3818	Two Day Eco-Tourism and Business Planning Workshop for Bataan National Park		Department of Environment and Natural Resources Region III		651	\N	2014-07-31	2014-08-01	\N	0	0	0	
3819	Workshop on the Filipino Brand of Service Module 2		Department of Tourism National		651	\N	2014-04-29	2014-04-30	\N	0	0	0	
3820	The Filipino Brand of Service		Department of Tourism National		651	\N	2014-02-27	2014-02-28	\N	0	0	0	
3821	Orientation Workshop for the Preparation of Provincial Foreshore and Development and Management Plan		PENRO Bataan		651	\N	2017-09-15	2017-09-15	\N	0	0	0	
3905	First Aid Training		Philippine National Red Cross - Manila Chapter		87	\N	2008-09-08	2008-09-11	\N	0	0	0	
3822	18th Association of Tourism Officers of the Philippines National Convention		Association of Tourism Officers of the Philippines		651	\N	2017-10-04	2017-10-07	\N	0	0	0	
3823	2017 Educational Forum		Department of Tourism		651	\N	2017-10-17	2017-10-17	\N	0	0	0	
3824	Seminar on Gender and Development A Must Towards A Violence Free Environment		Provincial Tourism Office		651	\N	2017-12-14	2017-12-14	\N	0	0	0	
4312	PROVINCIAL MALARIA CONTROL END ELIMINATION PROGRAM IMPLEMENTATION IN THE PROVINCE OF BATAAN		REGIONAL HEALTH OFFICE III		107	\N	2016-05-19	2016-05-20	\N	0	0	0	
3825	Cluster Roll Out of NTDP M and E and Tourism Rapid Assessment Manual		Office of Tourism Development Planning Research and Information Management		651	\N	2018-03-21	2018-03-22	\N	0	0	0	
3830	5h Association of Tourism Officers of Central Luzon Regional Conference		Association of Tourism Officers of Central Luzon		651	\N	2018-08-30	2018-08-31	\N	0	0	0	
3831	The Asia Pacific Drive Tourism Conference, Auto and Travel Show 		Department of Tourism National 		651	\N	2014-01-29	2014-01-31	\N	0	0	0	
3832	Tourism Product Development Workshop 		Department of Tourism Region 3 and Provincial Government of Bataan		651	\N	2013-12-11	2013-12-12	\N	0	0	0	
3833	Consultation Forum Integrated Coastal Resources Management Project Travel Industry Orientation for Ecotourism 		Department of Environment and Natural Resources Region 3		651	\N	2013-12-10	2013-12-10	\N	0	0	0	
3834	Tour Package Development and Delivery Seminar for Bataan 		Department of Tourism Region 3		651	\N	2013-11-20	2013-11-20	\N	0	0	0	
10527	Basic Course on Direct Spatum Smear		DOH Pampanga		240	\N	2017-03-24	2017-03-24	8	0	0	0	
3835	2nd Association of Tourism Officers of Central Luzon Regional Conference 		Association of Tourism Officers of Central Luzon 		651	\N	2013-11-16	2013-11-16	\N	0	0	0	
3836	Seminar Workshop on Strategic Performance Management System 		Civil Service Commission 		651	\N	2013-10-29	2013-10-29	\N	0	0	0	
3837	Regional Symposium on Property Data Banking for Tourism Investments 		Deprtment of Tourism National 		651	\N	2013-10-24	2013-10-24	\N	0	0	0	
3838	14th Association of Tourism Officers of the Philippines National Covention 		Association of Tourism Officers of the Philippines		651	\N	2013-10-02	2013-10-05	\N	0	0	0	
3839	Tourism Awareness and Capability Building Seminar for Local Government Units Pursuant to Republic Act. 9593, Otherwise Known as		Department of Tourism Region 3		651	\N	2013-02-28	2013-03-01	\N	0	0	0	
3840	1st Association of Tourism Officers of Central Luzon Regional Conference 		Association of Tourism Officers of Central Luzon 		651	\N	2012-08-16	2012-08-17	\N	0	0	0	
3841	Strategic Action Planning Workshop 		Department of Tourism Region 3		651	\N	2012-07-03	2012-07-04	\N	0	0	0	
4419	Regional Convention and Scientific Meeting		Philippine League of Government and Private MIdwife		2126	\N	2015-11-27	2015-11-27	\N	0	0	0	
4420	2 Scientific Seminar Advancing Midwifery Service by Practicing Quality Maternal Care and Values		The Integrated Midwives Association of the Philippine Bataan Chapter		2126	\N	2018-05-18	2018-05-18	\N	0	0	0	
4421	4 IMAP Advancing Midwifery Service by Practicing Quality Maternal Care Values		Integrated Midwives association of the Philippine, Inc - Region 3		2126	\N	2018-08-11	2018-08-11	\N	0	0	0	
4422	Challeges in Midwifery Profession:Now and Beyond		IMAP, City of San Fernando Pampanga		2126	\N	2017-12-01	2017-12-01	\N	0	0	0	
3851	Commercial Abritration Seminar		The Philippin Institute Of Arbitrators and IBP Central Luzon		2120	\N	2018-08-17	2018-08-18	\N	0	0	0	
3852	Commercial Arbitrators Seminar		The Philippin Institute Of Arbitrators and IBP Central Luzon		2120	\N	2018-08-23	2018-08-24	\N	0	0	0	
3853	TRAINING SEMINAR FOR THE REVISED GUIDELINES FOR CONTINOUS TRIAL OF CRIMINAL CASES	TECHNICAL	PHIJA USAID SUPREME COURT		2120	\N	2017-05-25	2017-05-25	\N	0	0	0	TECHNICAL
3854	MCLE COMPLIANCE V	TECHNICAL	PUBLIC ATTORENEY'S OFFICE		2120	\N	2017-03-20	2017-03-22	\N	0	0	0	TECHNICAL
3855	PRODUCTIVITY & 5S: THE PRACTICE OF GOOD HOUSE KEEPING	TECHNICAL	AFAB		2120	\N	2015-08-06	2015-08-06	\N	0	0	0	TECHNICAL
3856	Arbitration 101: TIps, Trivks And Traps	Technical	Baker Mackenzie/ Quisumbing Torres		2120	\N	2015-06-30	2015-06-30	\N	0	0	0	Technical
3857	GENDER SENSTIVITY & EQUALITY AND CONFLICT MANAGEMENT TOWARDS PRODUCTIVITY ECHANCEMENT	TECHNICAL	AFAB AND REGIONAL CONCILLIATION AND MDIATION BOARD		2120	\N	2015-04-16	2015-04-16	\N	0	0	0	TECHNICAL
3858	PRE- PILOT SEMINAR WORKSHOP FOR RULES 22 AND 24 OF THE PROPOSED REVISED RILES OF CIVIL PROCEDURE	TECHNICAL	PHILJA		2120	\N	2015-02-02	2015-02-03	\N	0	0	0	TECHNICAL
3859	ON THE JOB TRAINING	TECHNICAL	BAREAU OF IMMIGRATION		2120	\N	2002-11-04	2003-01-22	\N	0	0	0	TECHNICAL
3860	Department Of Surgery DOH Dr		DOH Philippine College & Surgeons		2119	\N	2004-09-02	2008-09-02	\N	0	0	0	
3861	Mandatory Contrijual Education I to 0 		IBP		2115	\N	0001-01-01	0001-01-01	\N	0	0	0	
3862	Tobes Contes		DOH		2115	\N	0001-01-01	0001-01-01	\N	0	0	0	
3875	BASIC EMERGENCY OBSTETRIC & NEWBORN CARE (BEmONC) SKILLS TRAINING COURSE		JOSE B. LINGAD MEMORIAL REGIONAL HOSPITAL		84	\N	2018-06-04	2018-06-14	\N	0	0	0	
3876	TRAINING ON DATA QUALITY CHECK FOR FP KEY INDICATION		DEPARTMENT OF HEALTH		84	\N	2017-04-18	2017-04-20	\N	0	0	0	
3877	REGIONAL CONVENTION IMAP REGION 3		IMAP REGION 3		84	\N	2016-11-30	2016-11-30	\N	0	0	0	
3878	BASIC EMERGENCY OBSTETRIC & NEWBORN CARE (BEMONC)SKILLS TRAINING COURSE		PHILIPPINE SOCIETY OF NEW BORN MEDICINE,INC./UNICEF		84	\N	2008-03-27	2008-03-27	\N	0	0	0	
3879	LACTATION MANAGEMENT EDUCATION TRAINING		NCR MIDWIFES ASSOCIATION		84	\N	1997-03-14	1997-03-14	\N	0	0	0	
3880	KOMADRONA KABALIKAT SA PANGANANGALAGA NG KALUSUGAN NG INA		NCR MIDWIVES ASSOCIATION		84	\N	1996-10-04	1996-10-05	\N	0	0	0	
3881	MIDWIVES ESSENTIAL HEALTH PROFESSIONALS IN THE NEW MILLENIUM		NCR MIDWIVES ASSOCIATION		84	\N	1996-10-04	1996-10-05	\N	0	0	0	
3882	MENOPAUSE AND SUTURING		BATAAN MIDWIVES ASSOCIATION		84	\N	1996-05-02	1996-05-02	\N	0	0	0	
3883	REVISED GUIDELINES GOBERNING THE COTINUING PROFESSIONAL EDUCATIONAL REGISTERED		BATAAN MIDWIVES ASSOCIATION		84	\N	1995-07-23	1995-07-29	\N	0	0	0	
3884	PREMATURE RUPTURE OF MEMBRANES/DENGUE HEMORRHAGIC FEVER IMMUNIZATION		INTEGRATED MIDWIVES ASSOCIATION OF THE PHILIPPINES		84	\N	1995-06-23	1995-06-23	\N	0	0	0	
3885	FIRST AID TRAINING		PHILIPPINE NATIONAL RED CROSS		84	\N	1994-03-16	1994-03-18	\N	0	0	0	
4423	Quality Family Planning Services; Management of Post Partum Hemorrhage & Respectful Midwifery Care		IMAP, Olongapo Chapter		2126	\N	2017-03-28	2017-03-28	\N	0	0	0	
3902	40TH FEU-NRMF ANNUAL ALUMNI HOMECOMING SCIENTIFIC SEMINAR		FEU-NRMF MEDICAL ALUMINI SOCIETY		87	\N	2015-01-22	2015-01-23	\N	0	0	0	
3906	Nursing Care of Critically Ill Patient		Philippin Nurses Association		87	\N	0001-01-01	0001-01-01	\N	0	0	0	
3907	Evidence Based Clinical Management of Medical Surgical Conditions in A Hospital Based Nursing Practice		World Trade Center		87	\N	0001-01-01	0001-01-01	\N	0	0	0	
4311	SITUATIONAL ANALYSIS ON BLOOD SERVICE PROGRAM IMPLEMENTAION IN THE PROVINCE OF BATAAN		REGIONAL HEALTH OFFICE III		107	\N	2016-06-22	2016-06-22	\N	0	0	0	
4313	QUALITY ASSURANCE SYSTEM REVIEW AND CONSULTATIVE WORKSHOP		REGIONAL HEALTH OFFICE III		107	\N	2015-02-12	2015-02-13	\N	0	0	0	
4314	PAMET NORTH LUZON 9TH REGIONAL CONFERENCE		PAMET PHILIPPINES		107	\N	2015-07-23	2015-07-25	\N	0	0	0	
4315	REFRESHER TRAINING ON MALARIA MICROSCOPY FOR MEDICAL TECHNOLOGIST		REGIONAL HEALTH OFFICE III		107	\N	2014-10-12	2014-10-14	\N	0	0	0	
4316	ORIENTATION ON THE UPDATES OF LICENSING REGULATION OF LABARATORY FACILITIES FOR MEDICAL TECHNOLOGIST		REGIONAL HEALTH OFFICE		107	\N	2014-09-26	2016-09-26	\N	0	0	0	
4317	BASIC MALARIA MICROSCOPY TRAINING FORMEDICAL TECHNOLOGIST		REGIONAL HEALTH OFFICE III		107	\N	2011-11-13	2011-11-18	\N	0	0	0	
4318	BASIC EMERGENCY OBSTETRIC 7 NEWBORN CARE (BEMONC)SKILLS TRAINING COURSE		JOSE B. LINGAD MEMORIAL REGIONAL HOSPITAL		108	\N	2018-06-04	2018-06-14	\N	0	0	0	
4319	RECOGNITION AND MANAGEMENT OF ACUTE SCHEMIC STRRONG CARDIOVASCULAR CARE		MEDICAL TRAINING AND LEARNING INSTITUTE		108	\N	2018-03-25	2018-03-25	\N	0	0	0	
4320	BASIC ECG AND DYSHRYTHMIA RECOGNITION		MEDICAL TRAINING AND LEARNING INSTITUTE		108	\N	2018-03-25	2018-03-25	\N	0	0	0	
3933	Unified Dieases Registry Systems Project Implementation Review		DOH - KMITS		88	\N	2018-10-18	2018-10-18	\N	0	0	0	
3934	Training on Dengvaxia Surveillance and PIDSR		Department of Health, Region III		88	\N	2018-09-27	2018-09-28	\N	0	0	0	
3935	Provider Initiated Counselling and Testing		Department of Health		88	\N	2018-07-10	2018-07-13	\N	0	0	0	
3936	Seminar/Workshop on Continous Quality Improvement (CQ) in Healthcare		Philippine Society for Quality in Healthcare		88	\N	2018-03-21	2018-03-23	\N	0	0	0	
3937	Training on the Updates on Integrated Hospital  Operations and Management Information System (HOMIS)		Deparment of Health  - KTMITS		88	\N	2016-11-08	2016-11-10	\N	0	0	0	
3939	Roll- Out Training Online Event- Based Surveillance and Response Version 2.0		Department of Health, Region III		88	\N	2016-08-09	2016-08-10	\N	0	0	0	
3940	2nd Annual Convetion of the Psychiatric: Mental Health nurses Association of the Philippines				88	\N	0001-01-01	0001-01-01	\N	0	0	0	
3941	Unified Disease Registry System Training		Department of Healh		88	\N	2017-04-27	2017-04-28	\N	0	0	0	
4325	ADMINISTRATION OF APROPRIATE DRUGS WITHIN THE ACLS ALGORITHMS		MEDICAL TRAINING AND LEARNING INSTITUTE		108	\N	2018-03-25	2018-03-25	\N	0	0	0	
3942	MAINSTREAMING MENTAL HEALTH IN THE COMMUNITY: NURSES AS FRONT LINERS IN HEALTHCARE 		Philippine Health Insurance Corporation		88	\N	2015-10-13	2015-10-13	\N	0	0	0	
8412	Systematic Records MGP Training		PHRMO		128	\N	2017-07-25	2017-07-26	\N	0	0	0	
8413	SDC Track II		PHRMO and CSC R3		128	\N	2018-11-12	2018-11-13	\N	0	0	0	
8414	SDC Track III		PHRMO and CSC R3		128	\N	2018-11-14	2018-11-16	\N	0	0	0	
8415	SDC Track I		PHRMO & CSC R3		128	\N	2016-11-15	2016-11-17	\N	0	0	0	
8416	Communication Development (Oral and Written) Training		PHRMO		128	\N	2016-11-09	2016-11-10	\N	0	0	0	
8417	Orientation on LIPH Manual		DOH Reg 3		128	\N	2016-08-22	2016-08-23	\N	0	0	0	
3959	GATEKEEPING IN PRIMARY HEALTH CARE AS EFFECTIVE TOOL FOR SERVICE DELIVERY NETWORK		BATAAN GENERAL HOSPITAL		89	\N	0019-02-13	2019-02-13	\N	0	0	0	
3960	SAFE MOTHERHOOD WEEK CELEBRATION: REGIONAL MATERIAL DEATH DISSEMINATION FORUM		DEPARMENT OF HEALTH		89	\N	2018-05-09	2018-05-09	\N	0	0	0	
3961	MAKING DATA MEANINGFUL: ANALYSIS AND PLANNING WORKSHOP FOR THE REGIONAL/PROVINCIAL/CITY MATERNSL DEATH SURVEILLANCE AND RESPONSE		DEPARTMENT OF HEALTH		89	\N	2017-09-30	2017-10-01	\N	0	0	0	
3962	ADVANCED CARDIAC LIFE SUPPORT		NKL-STARS INTERNATIONAL MEDICAL TRAINING INSTITUTE		89	\N	2017-09-30	2017-10-01	\N	0	0	0	
3964	QUARTERLY MEETING WITH RABIES PREVENTION AND CONTROL PROGRAM COORDINATORS		PROVINCIAL HEALTH OFFICE		89	\N	2017-03-28	2017-03-28	\N	0	0	0	
3965	STAKE HOLDERS ORIENTATION ON REPUBLIC ACT.9482:ANTIRABIES ACT OF 2007		PROVINCIAL HEALTH OFFICE		89	\N	2016-12-14	2016-12-14	\N	0	0	0	
3966	RABIES PREVENTION AND CONTROL PROGRAM		PROVINCIAL HEALTH OFFICE		89	\N	2016-09-09	2016-09-09	\N	0	0	0	
3967	RABIES PREVENTION AND CRONTROL PROGRAM		PROVINCIAL HEALTH OFFICE		89	\N	2016-06-30	2016-06-30	\N	0	0	0	
3981	Commercial Cooking NCII				90	\N	2010-07-05	2010-07-16	\N	0	0	0	
3987	Orientation of Health Care Workers on TB Dots Reffering Hospital		Biato Caulan Hospital		91	\N	0001-01-01	0001-01-01	\N	0	0	0	
3988	Essentials the Practice of Internal Medicine		Quirino Memorial MEdical Center		91	\N	0001-01-01	0001-01-01	\N	0	0	0	
3991	"Thrill of the Skills"  Basics on Ambulatory Care		Manila Doctors Hospital		91	\N	0001-01-01	0001-01-01	\N	0	0	0	
3992	"Untabgling Medical Dilemmas in Medical Practice" 7th Post Graduate Course in Internal Medicine		Manila Doctors Hospital		91	\N	2010-07-22	2010-07-23	\N	0	0	0	
8419	Orientation/Seminar on Magna Carta for Women (RA 9710) and Anti Violence against Women and Children (RA 9262)		POPCOM BATAAN		128	\N	2016-04-15	2016-04-15	\N	0	0	0	
8420	Stakeholders Meeting and Update on the new assessment tool and harmonized work instructions		DOH R3		128	\N	2015-10-13	2015-10-13	\N	0	0	0	
8421	Pagsasanay sa Korespondensiya Opisyal at Implementasyon ng KT bilang 335		Komisyon ng Wikang Pilipino		128	\N	2015-09-29	2015-09-29	\N	0	0	0	
8422	Seminar Workshop on Mainstreaming GAD		POPCOM BATAAN		128	\N	2015-05-14	2015-05-15	\N	0	0	0	
8423	Orientation in the New Application Forms for Hospital and other ancillary services		DOH REG 3		128	\N	2014-09-16	2014-09-16	\N	0	0	0	
8424	Seminar Workshop in Strategic Performance Management System (SPMS)		CSC		128	\N	2013-10-29	2013-10-29	\N	0	0	0	
6750	Behaviour - Based Safety Seminar		Provincial Engineering Office		313	\N	2018-12-04	2018-12-04	\N	0	0	0	
7044	6th Region III Technical  Conference : " PICE Region III:Moving Towards Global Progress"		PICE Region III		325	\N	2007-09-14	2007-09-15	16	0	0	0	
4331	Capacity Development		Provincial Government of Bataan		1791	\N	2017-09-29	2017-09-30	\N	0	0	0	
7045	Refresher Course and Updates on Material Quality Control in Project Implementation		Virgilio N. Valencia		325	\N	2006-09-09	2006-09-09	8	0	0	0	
7046	Project Orientation & Data Base Workshop, Orchids Garden, Manila		DIR. Normando J. Tuledo		325	\N	2002-08-06	2002-08-06	8	0	0	0	
7047	Materials Engineering & Quality Control MPWH, San Fernando , Pampanga		Engr. Alfeo Dominguez		325	\N	1991-03-04	1991-04-02	0	0	0	0	
7048	Planning Programming & Budgeting System, San Fernando, Pampanga		Engr. A. Careon		325	\N	1990-12-17	1990-12-17	12	0	0	0	
7049	Development Project Fund Secretarist , Hiyas, Bulacan		Mrs. Bernadette Lopez		325	\N	1983-11-07	1983-11-08	24	0	0	0	
7050	Soil Materials Quality Control Technician Level MPWH, San Fernando, Pampanga		Engr. Rivera		325	\N	1983-10-10	1983-10-21	0	0	0	0	
8425	Philhealth Desk Orientation		PHIC Reg 3		128	\N	2012-03-23	2012-03-23	\N	0	0	0	
8968	Gatekeeping in Primary Health Care as Effective Tool for Service Delivery Network Training - Workshop		Bataan General Hospital		1134	\N	2019-02-13	2019-02-13		0	0	0	
8969	BMT Learning Injective Medicines; Prescribing, Preparing and Administering		Qatar Council for Healthcare Professional		1134	\N	2017-05-10	2017-05-10		0	0	0	
8970	BMT Learning Basic; Practical Skills; Injection Techniques		Qatar Council for Healthcare Professional		1134	\N	2017-05-09	2017-05-09		0	0	0	
4321	ADVANCE CARDIAC LIFE SUPPORT		AMERICAN SAFETY AND HEALTH INSTITUTE		108	\N	2018-03-25	2018-03-25	\N	0	0	0	
4322	ADVANCE CARDIOVASCULAR LIFE SUPPORT - EMERGENCY CARDIOVASCULAR CARE		MEDICAL TRAINING AND LEARNING INSTITUTE		108	\N	2018-03-25	2018-03-25	\N	0	0	0	
4323	RECOGNITION AND MANAGEMENT OF ACUTE CORNARY SYNDROME 		MEDICAL TRAINING AND LEARNING INSTITUTE		108	\N	2018-03-25	2018-03-25	\N	0	0	0	
4324	AIRWAY ENDOTRACHEAL INTUBATION AND MANAGEMENT ACLS		MEDICAL TRAINING AND LEARNING INSTITUTE		108	\N	2018-03-25	2018-03-25	\N	0	0	0	
8971	BMT Learning Quick Tips; Initiating Insulin the Type 2 Diabetes in Primary Care		Qatar Council for Healthcare Professional		1134	\N	2017-05-09	2017-05-09		0	0	0	
8972	Immediate Life Support Provider Course		European Resuscitation Council		1134	\N	2016-09-24	2016-09-24		0	0	0	
8987	Tobacco Control Leadership Seminar/Workshop		Provincial Health Office		1135	\N	2018-07-04	2018-07-05		0	0	0	
8988	Pedicatric Advance Life Support		National Guard Health Affairs International Life Support Training Center		1135	\N	2017-05-01	2017-05-01		0	0	0	
8990	Regular IV Training Program		Bataan General Hospital		1135	\N	2016-05-03	2016-05-03		0	0	0	
8991	Canadian Triage and Acuity Scale		National Guard Health Affairs International Life Support Training Center		1135	\N	2015-08-12	2015-08-12		0	0	0	
8992	Regional Oral Health Month Celebration		Clark Pampanga		255	\N	2019-02-28	2019-02-28	8	0	0	0	
8993	National Oral Health Month		Municipality of Pilar Bataan		255	\N	2019-02-26	2019-02-26	8	0	0	0	
8994	Ngiting Ganda Para kay Ate at Kuya		Orani National High School Annex		255	\N	2019-02-21	2019-02-21	8	0	0	0	
8995	Flourine/Oral Prophylaxis		 Orani South Elementary School		255	\N	2018-11-29	2018-11-29	8	0	0	0	
4327	CONSULTATIVE 8 PLANNING WORKSHOP ON TB IN JAILS & PRISON		PROVINCIAL HEALTH OFFICE		108	\N	2016-12-14	2016-12-14	\N	0	0	0	
4328	SUPERVISORY DEVELOPMENT COURSE (SDC) TRACK I		CIVIL SERVICE COMMISSION III		108	\N	2016-11-15	2016-11-17	\N	0	0	0	
4329	NATIONAL TB PROGRAM (NTP) QAS DATA QUALITY CHECK		PROVINCIAL HEALTH OFFICE		108	\N	2016-07-18	2016-07-18	\N	0	0	0	
4330	TRAINING ON THE REVISED NTP MANUAL PROCEDURES 5TH EDITION		DEPARTMENT OF HEALTH OFFICE III		108	\N	2014-10-15	2014-10-17	\N	0	0	0	
4424	Blood Safety: Sustaining The Advocacy, Sharing the Responsibility 		Philippine Blood Coordinating Counsel		2127	\N	2017-08-23	2017-08-25	\N	0	0	0	
4425	Training on New Born Screening		Department of Health		2127	\N	2018-03-21	2018-03-22	\N	0	0	0	
4426	Provider Initiated HIV Counseling and Testing Training		Philippine Business For Social Progress		2127	\N	2018-05-08	2018-05-11	\N	0	0	0	
4427	Reasearch Forum	 	Philippine Womes University		2127	\N	2018-05-26	2018-05-26	\N	0	0	0	 
4428	HIV Surveillance		Department of Health 		2127	\N	2018-08-23	2018-08-24	\N	0	0	0	
4429	Total Quantity Management for Blood Service Facilities		Philippine Blood Coordinating Counsel		2127	\N	2018-08-30	2018-09-02	\N	0	0	0	
4430	Proficiency Training on HIV and Other Blood-borne STI's (Hepatitis B/C and Syphilis)Rapid/Immunochrotography Testing		Philippine Business for Social Progress, National Reference Laboratory - San Lazaro Hospita/ STD AIDS Cooperative Central Laboratory		2127	\N	2018-09-10	2018-09-14	\N	0	0	0	
10533	Quality Management System Training Phil, Red Cross-National Blood Center		Phils Redcross National Head Quarters		240	\N	2014-06-19	2014-07-03	96	0	0	0	
10534	The National Blood Services Specialization Training Phil. Redcross-national Blood		Phils Redcross National Head Quarters		240	\N	2013-07-01	2013-07-13	96	0	0	0	
10535	Basic Life Support Phil. Red Cross-Zambales Chapter		Phils Redcross National Head Quarters		240	\N	2013-09-05	2013-09-06	16	0	0	0	
10536	Consultative Meeting of hospital Stakeholders and Other Health Facilities	Supervisory	DOH3-Regulation and Licensing Enforcement Division		241	\N	2018-08-09	2018-08-09	8	0	0	0	Supervisory
4537	HEMODIALYSIS NURSE TECHNICIAN		ST. THERESA DIALYSIS CENTEC INC.		2132	\N	2018-06-05	2018-09-05	\N	0	0	0	
10537	Basic/Advance Written and Oral Commuincation with Powerpoint Presentation	Supervisory	Provincial HUman Resources Management		241	\N	2018-04-18	2018-04-19	16	0	0	0	Supervisory
10538	19th Philippine National Immunization Conference	Technical	Philippine Pediatric Society		233	\N	2018-11-15	2018-11-16	16	0	0	0	Technical
10539	Hands up for Human Immunodeficiency Virus Prevention/Service Delivery Network	Technical	Department of Health/Bataan General Hospital		233	\N	2016-12-01	2016-12-01	8	0	0	0	Technical
10540	Consultative Meeting on Updates of Emerging Infectious Diseases (ZIka Virus and Japanes Encephalitis)	Technical	Department of Health		233	\N	2016-07-15	2016-07-15	8	0	0	0	Technical
10541	Orientation-Workshop in Setting up of Family Planning Services in the Hospital	Technical	Department of Health		233	\N	2016-02-11	2016-02-12	8	0	0	0	Technical
10542	Gender and Development Basic Concepts and Issues	Technical	Provincial Population Office		233	\N	2016-06-24	2016-06-24	4	0	0	0	Technical
10543	Training on Revised Dengue Clinical Management Guidelines	Technical	Department of Health		233	\N	2015-07-15	2015-07-17	24	0	0	0	Technical
4332	Vacation Bible School Seminar		Discipleship Training Institute		1791	\N	2017-03-10	2017-03-11	\N	0	0	0	
4432	Refresher Course for VPDS, and ESR with Speciment Collection and Doffing and Domning of PPE for Publice Health Worker		Department of Health, Provincial Health Office Bataan		2127	\N	2018-10-03	2018-10-05	\N	0	0	0	
4442	Training Workshop on Statistical Tool For Agricultural Research 		Dept. of Agriculture - Region III		2128	\N	2016-11-22	2016-11-22	\N	0	0	0	
4443	Intelectual Property Rights		Bataan Peninsula State University		2128	\N	2016-08-25	2016-08-25	\N	0	0	0	
4444	Moderizing Agriculture for Improved Food Security and Livelihood in the Philippines		Bataan Peninsula State University		2128	\N	2016-09-21	2016-09-21	\N	0	0	0	
4585	FACILITIES IN THE BATAAN SERVICE DELIVERY NETWORK 		REFORM CONTRACT (EU - PHSRC)		2139	\N	0001-01-01	0001-01-01	\N	0	0	0	
4464	Training of Trainers on Good Agricultural Practices for Banana Production 		Agricultural Training Institute Regional Training Center III		2130	\N	2014-09-15	2014-09-17	\N	0	0	0	
4465	Training Courses on Good Agricultural Practices for Mango		Agricultural Training Institute Regional Training Center III		2130	\N	2014-08-11	2014-08-13	\N	0	0	0	
4466	Rice Black Bug Summit 		Philippine Rice Research Institute 		2130	\N	2014-04-24	2014-04-24	\N	0	0	0	
4467	Training Course on Cashew Production and Utilization 		Agricultural Training Institute Regional Training Center III		2130	\N	2013-06-04	2013-06-06	\N	0	0	0	
4468	Training of Trainers on Integrated Diversified Organic Farmiing Systems for Agricultural Extension Workers and Farmer Leaders of Region III 		Agricultural Training Institute Regional Training Center III		2130	\N	2013-04-08	2013-04-12	\N	0	0	0	
4469	Training Workshop on Values Formation and Team Building 		Agricultural Training Institute Regional Training Center III		2130	\N	2013-03-07	2013-03-08	\N	0	0	0	
4470	Retooling on Crop Protection Coordinators Regarding Pest and Diseases of Rice 		Department of Agriculture Regional Field Office III		2130	\N	2012-07-10	2012-07-12	\N	0	0	0	
4471	Regional Training of Trainers on Organic Agriculture Internal Control System for Small Holder Groups-Phase II		Agricultural Training Institute Regional Training Center III		2130	\N	2012-05-07	2012-05-11	\N	0	0	0	
4473	Training on Bamboo Nursery Establishment 		Bataan Peninsula State University Abucay Campus 		2130	\N	2012-03-21	2012-03-22	\N	0	0	0	
4516	3rd Leg of Pamana: World Heritage and Biosphere Reserve Nomination Series		Philippine National Commission for United Nations Educational, Scientific and Cultural Organization		371	\N	2017-03-23	2017-03-24	\N	0	0	0	
4517	Water Quality Checker, Aquaread Model: AP 800		De Leon Import and Export Corporation		371	\N	2017-08-03	2017-08-03	\N	0	0	0	
4518	Bataan		Provincial Government Environment and Natural Resources Office		371	\N	2017-02-23	2017-02-24	\N	0	0	0	
4519	Global Youth Forum 2017 Youth on Sustainable Tourism		International School of Sustainable Tourism		371	\N	2017-02-20	2017-02-21	\N	0	0	0	
4520	Provincial Government Environment and natural Resources Office Year end Gender and Development Seminar		Population Commision and Provincial Government Environment and Natural Resources Office		371	\N	2016-12-19	2016-12-20	\N	0	0	0	
4521	Emission Inventory Training for LGUS		Environmental Management Bureau, Region 3		371	\N	2016-11-23	2016-11-24	\N	0	0	0	
4522	2nd Leg of Pamana: World Heritage and Biosphere Reserve Nomination Series 		Philippine National Commission for United Nations Educational, Scientific and Cultural Organization		371	\N	2016-09-15	2016-09-16	\N	0	0	0	
4523	Silicon Valley Exposure Trip		City Government of Balanga and Science and technology Advisory Council (STAC) Silicon Valley		371	\N	2015-06-29	2015-07-02	\N	0	0	0	
4502	OREINTATION ON THE REVISED DENGUE CLINICAL MANAGEMENT GUIDELINES FOR PUBLIC AND PRIVATE HOSPITAL IN CLINICAL MANAGEMENT		DEPARTMENT OF HEALTH		133	\N	2016-10-03	2016-10-04	\N	0	0	0	
4527	TOBACCO CONTROL LEADERSHIP TRAINNG(MPOWER)		PROVINCIAL HEALTH OFFICE		2132	\N	2018-02-06	2018-02-08	\N	0	0	0	
4528	ADVANCED CARDIAC LIFE SUPPORT TRAINING		AMERICAN SAFETY & HEALTH INTITUTE		2132	\N	2017-09-30	2017-10-01	\N	0	0	0	
4529	BASIC LIFE SUPPORT TRAINING		AMERICAN SAFETY & HEALTH INSTITUTE		2132	\N	2017-10-02	2017-10-03	\N	0	0	0	
4530	BREASTFEEDING SEMINAR FOR BABY FRIENDLY HOSPITAL		BATAAN PENINSULA MEDICAL CENTER		2132	\N	2017-10-02	2017-10-03	\N	0	0	0	
4531	NEWBORN SCREENING TRAINING		DOH- REGIONAL OFFICE 3		2132	\N	2017-10-03	2017-10-04	\N	0	0	0	
4532	THE STROKE SOCIETY OF THE PHILIPPINES 17TH ANNUAL CONVENTION:"PRIORITIES,PROGRESS AND PROMISE OF THE REHABILITATION ADN RECOVERY AFTER STROKE"		THE STROKE SOCIETY OF THE PHILIPPINES		2132	\N	2017-10-04	2017-10-05	\N	0	0	0	
4533	PMHNAP 2ND ANNUAL CONVENTION:"MAINTREAMNG MENTAL HEALTH IN THE COMMUNITY:NURSING AS FRONT LINERS IN HEALTH CARE."		BPSU - GRADUATE STUDY		2132	\N	2017-10-05	2017-10-06	\N	0	0	0	
4534	REGULAR IV THERAPY TRAINING		BAGUIO GENERAL HOSPITAL AND MEDICAL CENTER		2132	\N	2017-10-06	2017-10-07	\N	0	0	0	
4535	FORUM ON ISSUES AND CONCERNS AFFECTING NURSING PROFESSION IN CELEBRATION OF THE  2009 INTERNATIONAL NURSE DAY		PHILIPPINE NURSES ASSIOCIATION - BAGUIO CHAPTER		2132	\N	2017-10-07	2017-10-08	\N	0	0	0	
4538	2019 GAD PLANNING AND BUDGETING, GAD ANALYSIS CUM MONITORING AND EVALUATUIN USING HGDG		PROVINCIAL GOVERNMENT OF BATAAN		2133	\N	2018-09-03	2018-09-05	\N	0	0	0	
4539	PROVIDER INTIATED COUNSELING AND TESTING SEMINAR AND TRAINING		PBSB		2133	\N	2018-05-04	2018-05-08	\N	0	0	0	
4540	BASIC FIRST AID 		NKL STAR		2133	\N	2018-08-25	2018-08-25	\N	0	0	0	
4541	LACTATION MANAGEMENT TRAINING 		DEPARTMENT OF HEALTH		2133	\N	2017-10-11	2017-10-13	\N	0	0	0	
4542	BLS AND ACLS TRAINIGN		NKL STARTS		2133	\N	2017-09-30	2017-10-01	\N	0	0	0	
4543	TRAINING ON THE MANAGEMNET OF RABIES EXPOSURE AND ANIMAL BITE (DIDATIC PHASE)		DEPARTMENT OF HEALTH		2133	\N	2017-08-08	2017-08-09	\N	0	0	0	
4544	TRAINING ON MANAGEMENT OF RABIES EXPOSURE ON ANIMAL BITES (PRACTICUM PHASE)		DEPARTMENT OF HEALTH		2133	\N	2017-08-10	2017-08-11	\N	0	0	0	
10544	Consultative meeting on Middle East Respiratory Syndrome Coronavirus for Private and Government Hospitals	Technical	Department of Health		233	\N	2015-06-22	2015-06-22	8	0	0	0	Technical
10545	Orientation On the Expanded New Born Screening	Technical	Department of Health		233	\N	2015-06-04	2015-06-05	16	0	0	0	Technical
10546	Newborn Screening Cluster Meeting	Technical	Department of Health 		233	\N	2014-10-15	2014-10-15	8	0	0	0	Technical
10547	Training on the National Tubercolosis Program Manual of Procedures,5th Edition	Technical	Department of Health		233	\N	2014-08-18	2014-08-20	24	0	0	0	Technical
10548	Basic Life Support With(AED)		Crown Royale Balanga City Bataan		234	\N	2018-11-20	2018-11-23		0	0	0	
10549	NC II (Driving) TESDA		TESDA		234	\N	2018-08-26	2018-08-26		0	0	0	
4579	QUALITY IMPROVEMENT TRAINING WORKSHOP ON HEMATOLOGY 		PHILIPPINE ASSOCIATION OF MEDICAL TECHNOLOGISTS, INC. (BATAAN CHAPTER)		2138	\N	2018-03-09	2018-03-11	\N	0	0	0	
4580	TRAINING IN NEWBORN SCREENING		DEPARTMENT OF HEALTH REGIONAL OFFICE 3		2138	\N	2018-03-21	2018-03-22	\N	0	0	0	
4581	PROVIDER INITIATED HIV COUNSELING AND TESTING TRAINING		PHILIPPINE BUSINESS FOR SOCIAL PROGRESS		2138	\N	2018-05-09	2018-05-11	\N	0	0	0	
4582	BASIC LABORATORY DIAGNOSIS OF SEXUALLY TRANSMITTED INFECTIONS		DEPARTMENT OF HEALTH REGIONAL OFFICE 3		2138	\N	2018-07-09	2018-07-11	\N	0	0	0	
4583	PROFICIENCY TRAINING ON HIV AND OTHER BLOOD-BORNE STI'S		DEPARTMENT OF HEALTH REGIONAL OFFICE 3		2138	\N	2018-09-10	2018-09-14	\N	0	0	0	
4584	DESIGNING AND PLANNING THE IMPLEMENTATION OF PRIMARY CARE SERVICE		EUROPEAN UNION PHIL HEALTH SECTOR		2139	\N	2018-07-10	2018-07-10	\N	0	0	0	
4588	HEALTH FACILITY ENCHANCEMENT PRAGRAM 2017 COORDINATING MEETING		DOH		2140	\N	2017-03-14	2017-03-14	\N	0	0	0	
4589	POSITION TITLE COURSE PROVIDERS ORIENTATION ON ELECTRONIC MEDICAL RECORDS (RMR)		RDRRMC		2140	\N	2017-03-06	2017-03-10	\N	0	0	0	
4590	HEALTH CARE PROVIDERS ORIENTATION ON ELECTRONIC MEDICAL RECORDS (EMR)		PHIC		2140	\N	2017-02-01	2017-02-01	\N	0	0	0	
4591	HEALTH CARE PROVIDERS ORIENTATION ON HEALTH INFORMATION TECHNOLOGY PROVIDER(HTTP)		PHIC		2140	\N	2017-01-31	2017-01-31	\N	0	0	0	
4592	PROVINCIAL MATERNAL DEATH REVIEW		PHD		2140	\N	2018-10-30	2018-10-30	\N	0	0	0	
4593	CONSULTATIVE MEETING OF HOSPITAL STAKEHOLDERS AND OTHER HEALTH FACILITATION		DOH		2140	\N	2018-08-09	2018-08-09	\N	0	0	0	
4594	HEALTH LEADERSHIP AND GOVERNANCE PROGRAM BRIDGING LEADERS FOR PUBLIC HEALTH MODULE 2(BLPHH)		DOH		2140	\N	2018-05-22	2018-05-23	\N	0	0	0	
4595	CONTINOUS QUALITY IMPROVEMENT (CQ1) IN HEALTHCARE ORGANIZATION		MDH,PHIL SOCIETY FOR QUALITY IN HEALTH, PSQUA		2140	\N	2018-03-21	2018-03-23	\N	0	0	0	
4596	MODULE 1 A RESILLEINCY PREPAREDNESS CERTIFICATE PROGRAM		PDRRMC		2140	\N	2018-03-12	2018-03-14	\N	0	0	0	
4597	PRE-PROCUREMENT CONFERENCE FOR HFEP 2018 EQUIPMENT		DOH		2140	\N	2018-02-23	2018-02-23	\N	0	0	0	
4598	ALL-HAZARD INCIDENT MANAGEMENT TEAM COURSE ON INCIDENT COMMAND SYSTEM		RDRRMC		2140	\N	2018-01-22	2018-01-26	\N	0	0	0	
4599	DOR RED ORCHID AWARD		DOH		2140	\N	2017-11-08	2017-11-10	\N	0	0	0	
4600	CONSULTATIVE MEETING ON LOCALIZATION OF HIV AIDS RESPONSE		PHO		2140	\N	2017-10-02	2017-10-02	\N	0	0	0	
4601	MOVING FORWARDS THRU CHANGING TIME		BMS		2140	\N	2017-09-29	2017-09-29	\N	0	0	0	
4602	STAKEHOLDERS AND HRH POINT PERSON ENGAGEMENT FOR THE IMPLEMENTATION OF HEALTH PROGRAMS		DOH		2140	\N	2017-08-15	2017-08-15	\N	0	0	0	
4603	NATIONAL HOSPITAL SUMMIT		DOH		2140	\N	2017-08-12	2017-08-12	\N	0	0	0	
4604	MALARIA UPDATES ON MOP AND TREATMENT PROTOCOL		PHO		2140	\N	2017-08-01	2017-08-03	\N	0	0	0	
4605	ASEAN DENGUE DAY 2017		PHO		2140	\N	2017-06-30	2017-06-30	\N	0	0	0	
4609	WORLD NO TOBACCO DAY & WORLD NO SMOKING MONTH CELEBRATION		PHO		2140	\N	2017-06-06	2017-06-06	\N	0	0	0	
12453	High Impact Team Seminar with Dr. John Maxwell		Dr. John Maxwell/Cong.Albert S. Garcia		399	\N	0001-01-01	0001-01-01		0	0	0	
4719	EXPERT WORKING GROUP WORKSHOP FOR THE IMPLEMENTATION OF WORKLOAD INCATORS OF STAFFING NEEDS IN THE PHILLIPINES		ODH,USAID,ITHR,2030,WHO		2143	\N	2019-01-21	2019-01-24	\N	0	0	0	
4720	HEALTH INFO. PRIVACY & SECURITY OF ELECTRONIC MEDICAL RECORDS(EMR)		PHILIPPINE MEDICAL RECORDS ASSOCIATION		2143	\N	2018-11-16	2018-11-16	\N	0	0	0	
4721	ORIENTATION ON ONLINE HEALTH FACILITY STATISTICAL REPORTING SYSTEM(OHSRS)		PHILIPPINE MEDICAL RECORDS ASSOCIATION		2143	\N	2018-11-17	2018-11-17	\N	0	0	0	
4723	TRAINING ON DONNING & DOFFING OF PERSONAL PROTECTIVE EQUIPMENT & SPECIMEN COLLECTION		DEPARTMENT OF HEALTH		2143	\N	2018-09-28	2018-09-28	\N	0	0	0	
4724	TRAINING ON DENGVAXIA SURVEILLANCE & PHILIPPINE INTEGRATED DISEASE SURVEILLANCE & RESPONSE IMPLEMENTATION		DEPARTMENT OF HEALTH		2143	\N	2018-09-28	2018-09-28	\N	0	0	0	
4726	MUNICIPAL LEADERSHIP & GOVERNANCE PROGRAM (MCGP) BRIDGING LEADERSHIP FOR PUBLIC HEALTH		ZUELLIG FAMILY FOUNDATION		2143	\N	2018-05-25	2018-05-26	\N	0	0	0	
4727	PROVINCIAL LEADERSHIP & GOVERNANCE PROGRAM(MCGP)BRIDGING LEADERSHOP & GOVERNANCE PROGRAM(PLGP) BRIDGING LEADERSHIP FOR PUBLIC HEALTH, MODULE 2		ZUELLIG FAMILY FOUNDATION		2143	\N	2018-05-23	2018-05-24	\N	0	0	0	
4728	COMPETENCY DEVELOPMENT IN HEMODIALYSIS		NATIONAL KIDNEY TRANSPLANT INSTITUTE		2143	\N	2018-01-15	2018-05-04	\N	0	0	0	
4729	INTEGRATED NTDs DATA VALIDATION 		DEPARTMENT OF HEALTH		2143	\N	2017-10-03	2017-10-03	\N	0	0	0	
4730	BLS AND ACLS TRAINING		NKL STARS		2143	\N	2017-09-30	2017-10-01	\N	0	0	0	
12454	7 Habits of Highly Effective People		Ateneo De Manila		399	\N	0001-01-01	0001-01-01		0	0	0	
4731	TRAINING ON NATIONAL RABIES INFORMATION SYSTEM (NaRIS) AND INTEGRATED LEPROSY INFORMATION SYSTEM (ILIS)		ZUELLIG FAMILY FOUNDATION		2143	\N	2017-05-09	2017-05-09	\N	0	0	0	
4732	PROVINCIAL LEADERSHIP & GOVERNANCE PROGRAM (MCGP)BRIDGING LEADERSHIP & GOVERNANCE PROGRAM (PLGP)BRIDGING LEADERSHIP FOR PUBLIC HEALTH, MODULE 1		ZUELLIG FAMILY FOUNDATION		2143	\N	2017-05-09	2017-05-10	\N	0	0	0	
4733	HOSPITAL BILLING SYSTEM TRAINING		DEPARTMENT OF HEALTH		2143	\N	2017-04-05	2017-04-07	\N	0	0	0	
4734	STRATEGIC PERFORMANCE MANAGEMENT SYSTEM SYSTEM FOR LEADERS		PROVINCIAL HUMAN RESOURCE MANAGEMENT OFFICE		2143	\N	2016-10-28	2016-10-28	\N	0	0	0	
4735	ROLL-OUT TRAINING ON ONLINE EVENT-BASED SURVEILLANCE AND RESPONSE VERSIO 2.0		DEPARTMENT OF HEALTH		2143	\N	2016-08-08	2016-08-10	\N	0	0	0	
4736	ASEAN DENGUE SUMMIT 2016		DEPARTMENT OF HEALTH		2143	\N	2016-07-01	2016-07-01	\N	0	0	0	
6754	40 Hour Basic Pollution  COntrol Office (PCO) Training	Technical 	Innogy Solutions Incorporated		300	\N	2019-02-26	2019-03-01	\N	0	0	0	Technical 
6755	Rapid Damage Assesment and Needs Analysis (RDANA) Training	Disaster Preparedness	Regional Disaster Risk  Reduction and Management Council 3		300	\N	2018-12-05	2018-12-07	\N	0	0	0	Disaster Preparedness
6756	Occupational Health and Safety Awareness	Safety	Engr. Jerome Tuazon(PEO OSH Focal Person)		300	\N	2018-11-21	2018-11-22	\N	0	0	0	Safety
6757	Environmental Aspects Identification and Impact Evaluation	Technical 	Rubylene Oslla / SGS Philippines Incorporated		300	\N	2018-01-31	2018-01-31	\N	0	0	0	Technical 
6758	Performance Management System	Supervisory	Maria Ishikawa / Sumimoto		300	\N	2017-09-14	2017-09-14	\N	0	0	0	Supervisory
6759	Basic Problem Solving Seminar(Structured Problem Solving)	Supervisory	Jane Hips		300	\N	2016-02-19	2016-02-19	\N	0	0	0	Supervisory
6760	QC and Explatory Data Analysis Tools (Module 2)	Technical	Peter Awayan / Onconductor		300	\N	2011-11-08	2011-11-08	\N	0	0	0	Technical
6761	Basic Statistic (Module I)	Technical	Peter Awayan / On Semiconductor		300	\N	2011-11-07	2011-11-07	\N	0	0	0	Technical
6762	Image Enchancement Workshop	Supervisory	Luisa Moguel/ Moguel Management Consultancy		300	\N	2008-11-13	2008-11-14	\N	0	0	0	Supervisory
6763	Basic Can Making Seminar	Technical	Robert Lactao / United Container Corporation		300	\N	2007-05-11	2007-05-11	\N	0	0	0	Technical
6764	Supervisory Development Programs	Supervisory	Oralando Pena / Asia Business Consultancy		300	\N	2005-12-16	2005-12-17	\N	0	0	0	Supervisory
6765	Preventive Maintenance of Electrical  Machines & Equipments	Technical	Engr.Camilo Ragacho / PETCON Corporation		300	\N	2005-11-15	2005-11-15	\N	0	0	0	Technical
6766	Basic Programming of AC 800m Distributed Control System 	Technical	Ronal Cadre / Asea Bron Boveri		300	\N	2002-06-08	2002-06-08	\N	0	0	0	Technical
6767	ACS 600  Frequency  Drive 	Technical	Roger Edrinal / Asea Brown Boveri		300	\N	2002-07-29	2002-07-29	\N	0	0	0	Technical
4740	Capacity Building for LGU's on Tourism Investment 		Department of Tourism Region III		653	\N	2018-12-04	2018-12-06	\N	0	0	0	
4741	19th National Convention of the Association of Tourism Officers of the Philippines 		Association of the Tourism Officers of the Philippines 		653	\N	2018-10-03	2018-10-06	\N	0	0	0	
4742	5th Association of Tourism Officer of Central Luzon Convention 		Association of the Tourism Officers of the Philippines 		653	\N	2018-08-30	2018-08-31	\N	0	0	0	
4743	Inface Culture - Based Governance Training		National Commission for Culture and the Arts 		653	\N	2018-06-07	2018-06-09	\N	0	0	0	
4875	Infectious Disease Nurse		DOH SAN CATALINA MEDICAL CENTRAL		2154	\N	2018-08-05	2018-09-05	\N	0	0	0	
4876	BCIS/BLS				2154	\N	0001-01-01	0001-01-01	\N	0	0	0	
4930	TESDA  (Electrical and Installation Maintenance				1846	\N	2018-09-01	2019-02-01	\N	0	0	0	
4931	CPR Training for Adult Lay Rescuers				1846	\N	2017-11-24	2017-11-24	\N	0	0	0	
4933	Capacity Development (Proper Grooming and Work Attitude Values Enhancement				1846	\N	2017-09-30	2017-09-30	\N	0	0	0	
4753	Tour Package Development and Delivery Seminar 		Deoartment of Tourism Region IIII		653	\N	2013-11-20	2013-11-20	\N	0	0	0	
4754	Integrated Coastal Resources Management Project ( ICRMP Industry Orientation for Ecotourism ) 		Department of Environment and Natural Resources 		653	\N	2013-10-12	2013-10-12	\N	0	0	0	
4755	2nd Association of Tourism Officer of Central Luzo Regional Conference 		Association of the Tourism Officers of Central Luzon 		653	\N	2013-11-16	2013-11-16	\N	0	0	0	
4756	Regional Tourism Summit 		Tourism Infrastructure and Enterprise Zone 		653	\N	2013-09-27	2013-09-27	\N	0	0	0	
4757	Tourism Awareness and Capability Building Seminar for LGU's Pursuant RA 9592		Department of Tourism Region III		653	\N	2013-02-28	2013-03-01	\N	0	0	0	
4758	National Tourism Statistics Conference		Department of Tourism Region III		653	\N	2013-02-16	2013-02-17	\N	0	0	0	
4760	1st Association of Tourism Officer of Central Luzon Regional Conference 		Association of the Tourism Officers of Central Luzon 		653	\N	2012-08-16	2012-08-17	\N	0	0	0	
4763	Orientation/ Seminar on Magna Carta of Women & Anti-Violence Against Women & Children		Provincial Government of Bataan		655	\N	2016-07-01	2016-07-01	\N	0	0	0	
4764	Gender Sensitivity Training Seminar		Department of Tourism Region III		655	\N	2015-11-23	2015-11-23	\N	0	0	0	
4765	Seminar on Personality Development		Department of Tourism Region III		655	\N	2015-11-11	2015-11-11	\N	0	0	0	
4767	Tourism Product Development Workshop		Department of Tourism Region III		655	\N	2013-12-11	2013-12-12	\N	0	0	0	
4768	Tour Package Development and Delivery Seminar Workshop		Department of Tourism Region III		655	\N	2013-11-19	2013-11-20	\N	0	0	0	
4769	2nd Association of Tourism Officers of Central Luzon (ATOCEL) Regional Conference		Association of Tourism Officers of Central Luzon (ATOCEL) 		655	\N	2013-11-16	2013-11-16	\N	0	0	0	
4770	Association of Tourism Officers of the Philippines 14th National ATOP Convention		Association of Tourism Officers of THE pHILIPPINES (ATOP)		655	\N	2013-10-02	2013-10-05	\N	0	0	0	
4771	Regional Tourism Summit		Tourism Infrastructure & Enterprise Zone Authority (TIEZA)		655	\N	2013-09-27	2013-09-27	\N	0	0	0	
4772	Tourism Awareness and Capability Building Seminar		Department of Tourism Region III		655	\N	2013-02-28	2013-03-01	\N	0	0	0	
4773	1st Association of Tourism Officers of Central Luzon Regional Conference		2nd Association of Tourism Officers of Central Luzon (ATOCEL) Regional Conference		655	\N	2012-06-16	2012-06-17	\N	0	0	0	
8458	Unified Disease Registry Systems Project Implementation Review		King Fahad Armed Forces Hospital 		1393	\N	2017-05-23	2019-05-23	\N	0	0	0	
8459	Infection Control System		King Fahad Armed Forces Hospital 		1393	\N	2017-06-01	2017-06-01	\N	0	0	0	
8460	Intravenous Therapy		Saudi Council for Health Specialists		1393	\N	2006-03-14	2006-03-14	\N	0	0	0	
10559	Orientation on Culture Sensititvity For Health Workers		Department of Health - RO III		236	\N	2018-08-07	2018-08-09		0	0	0	
10560	Capacity Building of Health Care Institution on the Philhealth Costing Framework and Tool		Phil. Health Insurance Corporation		236	\N	2018-05-21	2018-05-22		0	0	0	
10561	4th Quarter MAFP Consultative Meeting		Department of Health - RO III		236	\N	2016-12-15	2016-12-15		0	0	0	
10562	DOH-MHCAP Regional Consultative Meeting		Department of Health - RO III		236	\N	0216-01-04	2016-01-22		0	0	0	
4840	Philippine Red Cross Basic Life Support-CPR Training for Adult-Lay Rescuers	Technical	Philippine Red Cross -Bataan		1841	\N	2017-11-24	2017-11-24	\N	0	0	0	Technical
4842	Anti-Trafficking in Person and Anti-Violence against Women and their Children	Supervisory			1841	\N	2018-04-20	2018-04-21	\N	0	0	0	Supervisory
4856	Capacity Development -Proper Grooming and Work Attitude Value Enhancement	Supervisory	Alfredo Solomon Jr.		1842	\N	2017-10-29	2017-10-30	\N	0	0	0	Supervisory
4857	Team effectiveness and Magna Carta for Women	Technical			1842	\N	2017-11-17	2017-11-17	\N	0	0	0	Technical
4858	Philippine Red Cross Basic Life Support -CPR Training for Adult-Lay Rescuers 	Technical	Philippine Red Cross Bataan		1842	\N	2017-11-24	2017-11-24	\N	0	0	0	Technical
4845	Human Immuno Virus (HIV)		Department Of Health		182	\N	2018-03-07	2018-03-09	\N	0	0	0	
4792	CLAIMS STATUS REPORT MODULE BAS CIRCULAR		PHILHEALTH-BAS SECTION		163	\N	2018-06-29	2018-06-29	\N	0	0	0	
4863	Advancing Midwifery Service by Practicing Quality Maternal Care and Values 		IMAP		148	\N	2018-05-18	2018-05-18	\N	0	0	0	
4864	Unfaltering Engagement Stand and Deliver		PLGPMI		148	\N	2019-03-11	2019-03-14	\N	0	0	0	
4862	Training on HIV Testing Service (HIV Counseling and Testing)		DOH		148	\N	2018-03-06	2018-03-09	\N	0	0	0	
4865	Advancing Midwifery Services By Practicing Quality Maternal Care & Values		Integrated Midwives Association of the Philippines Inc. Region 3		2152	\N	2018-08-11	2018-08-11	\N	0	0	0	
4880	Contact Center Services NCII		Eastwood, Dinalupihan Bataan TESDA		1843	\N	2017-06-27	2017-07-24	\N	0	0	0	
4881	Shielded Metal Arc Welding Smaw NCI		NCI TESDA		1843	\N	2017-01-29	2019-01-28	\N	0	0	0	
4882	Shielded Metal Arc Welding SMAW NCII		NCII TESDA		1843	\N	2017-03-26	2019-03-28	\N	0	0	0	
4906	Start Up 101: Transforming Ideas Into Ventures		BPSU-CICT		1845	\N	2016-08-23	2016-08-23	\N	0	0	0	
4907	ICT Industry and Business Modeling		BPSU -CICT		1845	\N	2016-10-21	2016-10-21	\N	0	0	0	
4908	iTech: Connect the Unconnected		BPSU -CICT		1845	\N	2016-11-10	2016-11-10	\N	0	0	0	
4909	Unplug: Breaking Into the Real World		BPSU -CICT		1845	\N	2016-11-23	2016-11-23	\N	0	0	0	
4929	Technician Training on the Maintenance of Medical Equipments(Level1)				2163	\N	2014-04-21	2014-05-02	\N	0	0	0	
4960	Radio Communication Registration and Licensing Restricted Land Mobile Radio Telephone Operation for Land Mobile Services (RLM Cert.)		NTC		1847	\N	2017-08-10	2017-08-10	\N	0	0	0	
4911	Responsableng Pagplaplano ng Pamilya		Gordon College of Allied Health Studies		184	\N	2008-10-24	2018-10-24	\N	0	0	0	
4910	Expert Working Group Workshop for the Implementation of Workload Indicators of Staffing Needs (WISN) in the Philippines	Technical	Department of Health, Usaid, World Health Organization		184	\N	2019-01-21	2019-01-24	\N	0	0	0	Technical
4915	Midwives Leading the Way to Quality Care		Integrated Midwives Association of the Philippines		184	\N	2018-05-01	2018-05-03	\N	0	0	0	
4916	International Midwifery Scientific Seminar		International Midwifery Scientific Conference		184	\N	2018-05-03	2018-05-05	\N	0	0	0	
4917	Scientific Semminar		Integrated Midwives Association of the Philippines		184	\N	2018-02-10	2018-02-10	\N	0	0	0	
4912	Building Society of Competent and Globally Recognized Filipino Mifwives		Integrated Midwives association of the Philippines		184	\N	2018-10-17	2018-10-19	\N	0	0	0	
4914	Advancing Midwifery Services By Practicing Quality Maternal Care		Integrated Midwives Association of the Philippines		184	\N	2018-05-18	2018-05-18	\N	0	0	0	
4899	PERINATAL ASSOCIATION OF THE PHIL CARAVAN		PERINATAL ASSOCIATION OF THE PHIL		174	\N	2017-12-12	2017-12-12	\N	0	0	0	
4903	ADVANCE CARDIA LIFE SUPPORT		AMERICAN SAFETY AND HEALTH INSTITUE		174	\N	2017-07-22	2017-07-23	\N	0	0	0	
4902	BASIC ECG READING		AMERICAN SAFETY AND HEALTH INSTITUE		174	\N	2017-07-22	2017-07-22	\N	0	0	0	
4895	PRIMARY CARE TRAINING OF ADULT CLIENT WITH HIV INFECTION		DEPARTMENT OF HEALT R.O. III		174	\N	2018-09-11	2018-09-14	\N	0	0	0	
4869	Quality Family Planning Services; Managemnet of the Post-Partum Hemorrhage and Respectful Midwifery Care		Integrated Midwaves Association of the Phil. Inc.		168	\N	2017-03-28	2017-03-28	\N	0	0	0	
4867	Challeges in Midwifery Profession Now And Beyond		Ubtegrated Midwives Association of the Philippines Inc. PRC		168	\N	2017-12-01	2017-12-01	\N	0	0	0	
4868	IMAP Defining its Core Values: Integrety, Motivation, Accountability and PRofessionalism		Integrated Midwives Association of the Philippines Bataan Chapter		168	\N	2017-07-07	2017-07-07	\N	0	0	0	
4943	BASIC LIFE SUPPORT AND ADVANCED CARDIAC LIFE SUPPORT		AMERICAN SAFETY AND HEALTH INSTITUTE TRAINING PROGRAM		149	\N	2017-09-30	2017-10-01	\N	0	0	0	
4941	GATEKEEPING IN PRIMARY HEALTH CARE AS EFFECTIVE TOOL FOR SERVICE DELIVERY NETWORK TRAINING- WORKSHOP		BATAAN GENERAL HOSPITAL AND MEDICAL CENTER		149	\N	2019-02-13	2019-02-13	\N	0	0	0	
4942	HEMODIALYSIS TECHNICIAN		ST.THERESA DIALYSIS CENTER INC. CITY OF SAN FERNANDO PAMPANGGA		149	\N	2018-05-07	2018-09-07	\N	0	0	0	
4884	Maining on HIV Testing Service		Department of Human		171	\N	2018-04-03	2018-04-06	\N	0	0	0	
4885	Training on Basic Malaria Rapid Daignostic Test		Department of Health		171	\N	2018-03-23	2018-03-24	\N	0	0	0	
4886	WorkShop 		Philippine Association of Human Technologist		171	\N	2017-09-23	2017-09-25	\N	0	0	0	
4887	Basic Laboratory		Philippine Association		171	\N	2016-09-16	2016-09-16	\N	0	0	0	
4888	Basic Cause on Deult Spectrum 		Department of Health Region III		171	\N	2014-11-17	2014-11-21	\N	0	0	0	
4883	RAPID PROFIENCE TRAINING ON HIV AND OTHER BLOOD-BORNE STI's 		National Reference Laboratory		171	\N	2018-07-23	2018-07-27	\N	0	0	0	
4961	Capacity Development Proper Grooming and Work Attitude Value Enhancement 		PNP		1847	\N	2017-09-30	2017-09-30	\N	0	0	0	
4962	Bom Threat Awareness		PNP		1847	\N	2018-04-27	2018-04-27	\N	0	0	0	
4981	Orientation Seminar for Security Guards		Camp Crame		1851	\N	2014-11-06	2014-11-07	\N	0	0	0	
4982	Safety Orientation Seminar 		City of Dreams Manila		1851	\N	2014-09-01	2014-09-01	\N	0	0	0	
4983	Bank Security Training Course		East West Bank		1851	\N	2010-05-02	2010-05-05	\N	0	0	0	
4984	Re-Training Course for Security Guards		Stargold Security Training Center		1851	\N	2016-04-01	2016-04-01	\N	0	0	0	
4991	Anti Narcotic		Camp Crame		1849	\N	1991-01-01	1993-01-01	\N	0	0	0	
4992	Mike Delta Force		Camp Crame		1849	\N	1993-01-01	1995-01-01	\N	0	0	0	
4994	Radio Communication Registration & Licensing		NTC		1772	\N	2017-08-10	2017-08-10	\N	0	0	0	
4995	Capacity Development Proper Grooming & Work Attitude Values Enhancement		PNP		1772	\N	2017-09-30	2017-09-30	\N	0	0	0	
4998	Radio Communication Registration and Licensing Land Mobile				1773	\N	2018-08-10	0001-01-01	\N	0	0	0	
5065	HANDS ON TRAINING ON IMPROVED AND MODIFIED TILAPIA HATCHERY MANAGEMENT	TECHNICAL	BUREAU OF FISHERIES AND AQUATIC RESOURCES		33	\N	2017-06-28	2017-06-30	\N	0	0	0	TECHNICAL
5066	HANDS ON TRAINING ON TILAPIA HATCHERY MANAGEMENT	TECHNICAL	BUREAU OF FISHERIES AND AQUATIC RESOURCES		33	\N	2014-09-29	2014-09-30	\N	0	0	0	TECHNICAL
5067	UPDATES AND TRAINING ON GET EXCELL 2010 TILAPIA HATCHERY MANAGEMENT	TECHNICAL	BEREAU OF FISHERIES AND AQUATIC RESOURCES		33	\N	2011-11-07	2011-11-11	\N	0	0	0	TECHNICAL
12501	Mango Fruit Bagging and Pruning		Bataan State College		2189	\N	0001-01-01	0001-01-01		0	0	0	
5068	2ND CONSULTATIVE MEETING AND WORKSHOP IF/THR PRIVATE HATCHERY OPERATORS OF REGION 3	TECHNICAL	BUREAU OF FISHERIES AND AQUATIC RESOURCES		33	\N	2006-02-16	2006-02-17	\N	0	0	0	TECHNICAL
5069	NATIONAL TRAINING ON ADVANCE AQUALTURE TECHNOLOGIES	TECHNICAL	BUREAU OF FISHERIES AND AQUATIC RESOURCES		33	\N	2000-09-24	2000-09-29	\N	0	0	0	TECHNICAL
5070	TRAINING OF TRAINERS ON RICE CROP MANAGEMENT		AGRICULTURAL TRAINING INSTITUE, REGIONAL TRAINING CENTER III		31	\N	2016-11-14	2016-11-18	\N	0	0	0	
12506	Soap Making		Alumni Society of Maap Soveneas		2189	\N	0001-01-01	0001-01-01		0	0	0	
5071	TRAINING ON BASIC EXPERIMENTAL DESIGNS ANALYSIS USING STATISTICAL TOOL FOR AGRICULTURAL RESEARCH (STAR) AND PLANT BREEDING TOOLS(PBTOOLS)		DEPARTMENT OF AGRICULTURE, REGIONAL FIELD OFFICE III		31	\N	2016-06-01	2016-06-03	\N	0	0	0	
5072	TRAINING OF TRAINORS(TOT) ON ENCHANCED/CLIMATE SMART FARMERS FIELD SCHOOL		DEPARTMENT OF AGRICULTURE, REGIONAL FIELD OFFICE III		31	\N	2016-05-23	2016-05-27	\N	0	0	0	
5073	RETOOLING/TRAINING ON PARTICIPATORY VERIETAL SELECTION-RESEARCH MANAGED UNDER ACCELERATING THE DEVELOPMENT AND ADOPTION OF NEXT GENERATION(NEXT GEN)RICE		DEPARTMENT OF AGRICULTURE, PHILRICE OF SCIENCE CITY OF MUNOZ, NUEVA ECIJA		31	\N	2016-04-11	2016-04-15	\N	0	0	0	
5074	TRAINING-WORKSHOP ON AGRICULTURE RESEARCH, DEVELOPMENT AND EXTENSION(RDE)PROPOSAL		DEPARTMENT OF AGRICULTURE, REGIONAL FIELD OFFICE III		31	\N	2014-09-29	2014-10-02	\N	0	0	0	
8975	Basic Water Safety	Technical	Golden Success Wilderness Emergency Medical Services		1686	\N	2017-10-07	2017-10-07	\N	0	0	0	Technical
8976	Basic Emergency Medical Technician (EMT-B) ID and Certification	Technical	Golden Success Wilderness Emergency Medical Services		1686	\N	2017-09-30	2017-09-30	\N	0	0	0	Technical
8977	40-Hour Wilderness EMS Upgrade (WEMS)	Technical	Golden Success Wilderness Emergency Medical Services		1686	\N	2017-09-20	2017-09-24	\N	0	0	0	Technical
8979	Earthquake and Landslide Search and Rescue Orientation Course	Technical	Golden Success Wilderness Emergency Medical Services		1686	\N	2017-09-02	2017-09-03	\N	0	0	0	Technical
8980	Ambulance Operations 	Technical	Golden Success Wilderness Emergency Medical Services		1686	\N	2017-08-27	2017-08-27	\N	0	0	0	Technical
4966	MIDYEAR CONTINUING PROFESSIONAL DEVELOPMENT 2010		PHILIPPINE ASSOCIATION OF MEDICAL TECHNOLOGY		189	\N	2018-06-23	2018-06-23	\N	0	0	0	
4967	NURSING LINES THROUGH THE SUPREME TECHNOLOGY		PHILIPPINE ASSOCIATION OF MEDICAL TECHNOLOGY		189	\N	2018-05-04	2018-05-04	\N	0	0	0	
4963	16TH NEWBORN SCREENING		SOCIETY OF THE PHILLIPINES		189	\N	2018-06-23	2018-06-23	\N	0	0	0	
4969	INTRODUCTION TO REGIONAL CLINICAL LABORATORY 		LUNG CENTER OF THE PHILIPPINES		189	\N	2018-05-23	2018-05-23	\N	0	0	0	
4968	REFRESHER COURSE ON MEDICAL MICROSCOPY FOR MEDICAL TECHNOLOGIST		PHILIPPINE ASSOCIATION OF MEDICAL TECHNOLOGY		189	\N	2018-05-04	2018-05-04	\N	0	0	0	
4979	ADVANCED CARIO LIFE SUPPORT		NKL STARS		188	\N	2018-08-25	2018-08-26	\N	0	0	0	
4980	FINEST REGIONAL CONVENTIONAL PRENATAL ASSOCIATION PHILIPPINES CHAPTER CARAVAN		PRENATAL ASSOCIATION OF THE PHILIPPINES		188	\N	2018-07-20	2018-07-20	\N	0	0	0	
4978	BASIC LIFE SUPPORT 		NKL STARS		188	\N	2018-08-25	2018-08-25	\N	0	0	0	
12455	Farmer Field School for Rice		Kasaganahan ng Sakahan at Kalikasan		399	\N	0001-01-01	0001-01-01		0	0	0	
12456	1st National Workshop on Civil Registration		Subic Bay Metropolitan Authority		399	\N	0001-01-01	0001-01-01		0	0	0	
12457	Enhancing LGU Conciousness towards Environmental Presentation		Subic Bay Freeport Zone		399	\N	0001-01-01	0001-01-01		0	0	0	
12458	Jumpstarting Development Managing Presentation		Local Government of Angeles		399	\N	0001-01-01	0001-01-01		0	0	0	
12459	Focus Group Discussion/Workshop on People's Participation in the Local Development Council		Local Government of Balanga Bataan		399	\N	0001-01-01	0001-01-01		0	0	0	
12460	Enhanced Community Immersion	Supervisory			1788	\N	2018-02-16	2018-02-16	\N	0	0	0	Supervisory
12465	Radio Communication Registration and Licensing Restricted Landmobile Radio Telephone Operation for Landmobile Services (RLM Cert.)		NTC		1788	\N	2017-08-10	2017-08-10	\N	0	0	0	
5094	Training on Natural Family Planning among Population Program Officer / Workers 		Comission on Population Region III		516	\N	2018-10-22	2018-10-26	\N	0	0	0	
5095	Training Workshop on Gender Analysis Tools 		Provincial Population Office Bataan 		516	\N	2018-09-03	2018-09-05	\N	0	0	0	
5096	Basic Customer Service Skills Training 		Provincial Human Resource Management Office 		516	\N	2018-07-05	2018-07-05	\N	0	0	0	
5100	Systematic Records Management Training / Workshop		Provincial Human Resource Management Office 		516	\N	2017-07-25	2017-07-26	\N	0	0	0	
5101	Skills Competency Gaps Analysis Workshop 		Provincial Human Resource Management Office 		516	\N	2017-07-21	2017-07-21	\N	0	0	0	
5102	Monitoring and Coaching / Individual Development Planning		Provincial Human Resource Management Office 		516	\N	2017-07-19	2017-07-19	\N	0	0	0	
5103	Online RP-FP Monitoring System  Training 		Comission on Population Region III		516	\N	2016-12-07	2016-12-08	\N	0	0	0	
5104	Philippine Population Management Program (PPMP)Monitoring & Evaluation System Training		Comission on Population Region III		516	\N	2016-11-29	2016-11-30	\N	0	0	0	
5105	Gender and Development (GAD) Basic Concepts 		Provincial Populatin Office Bataan		516	\N	2016-05-06	2016-05-07	\N	0	0	0	
5106	Orientation / Seminar on Magna Carta of Women (RA9710) and Anti-Violence Against Women and Children (RA 9262)		Provincial Population Office Bataan 		516	\N	2016-04-15	2016-04-15	\N	0	0	0	
5107	Training on Basic Technical Writing and Computer Skills		Comission on Population Region III		516	\N	2016-03-01	2016-03-04	\N	0	0	0	
8511	Consumer and Standard Blitz Seminar 		Department of Trade and Industry		54	\N	2016-07-15	2016-07-15	\N	0	0	0	
5108	Seminar - Workshop on : Mainstreaming GAD Programs Through Identifying GAD Issues, GAD Analysis and GAD Plan and Budget 		Provincial Population Office Bataan 		516	\N	2015-05-14	2015-05-15	\N	0	0	0	
12467	Philippine Red Cross Basic Life Support CPR Training for Adult Lay Rescuers 	Technical	Philippine Red Cross		1788	\N	2017-11-24	2017-11-24	\N	0	0	0	Technical
5948	Introductory Training on Impact Evaluation		DOLE		260	\N	2017-03-01	2017-03-01	\N	0	0	0	
6768	First Aid and Basic Life Support with AED (Automated External Defirillator) Training	Skills Training	Provincial Disaster Risk Reduction and Management Training Council		314	\N	2018-11-20	2018-11-23	\N	0	0	0	Skills Training
8461	11th World Asthma Day		Saudi Council for Health Specialists		1393	\N	2013-02-25	2013-02-25	\N	0	0	0	
8462	Master Class of Neonatal Ventilation		 Saudi Council for Health Specialists		1393	\N	2016-12-26	2016-12-26	\N	0	0	0	
12502	Pagsasanay sa Pamumuno		ATI-RTCIII		2189	\N	0001-01-01	0001-01-01		0	0	0	
12503	I Care Community Outreach Program		I Care Inc.		2189	\N	0001-01-01	0001-01-01		0	0	0	
12504	Conserving IP Heritage with Pride		Entrepreneur Volunteer Assistance Charity Foundation		2189	\N	0001-01-01	0001-01-01		0	0	0	
12505	Training on Aerobic Rice Technology		Bulacan  Agricultural State College		2189	\N	0001-01-01	0001-01-01		0	0	0	
12507	Regional Multi-Stakeholders Congress		Central Luzon State University		2189	\N	0001-01-01	0001-01-01		0	0	0	
12508	Seminar-Workshop on Biodiversity Conservation		Bataan Peninsula State University		2189	\N	0001-01-01	0001-01-01		0	0	0	
12509	Regional Philhealth Consultation and Workshop Seminar		Department of Health		2189	\N	0001-01-01	0001-01-01		0	0	0	
12510	Bamboo Nursery and Plantation Technology		Bataan Peninsula State University		2189	\N	0001-01-01	0001-01-01		0	0	0	
12511	Supervisory Development Couse track II & III		Civil Service Commission, Regional Office No. 3		2191	\N	2018-11-14	2018-11-16	24	0	0	0	
12512	End Users Training for Land Registration Authority  (LRA)- Bataan Provincial Title & Parcel- Map Data Supply Project		Land Registration System, Inc (LARES)		2191	\N	2016-09-28	2016-09-28	8	0	0	0	
8463	12th HOTH Topics of Neonatal Medicine		Saudi Council for Health Specialists		1393	\N	2016-12-24	2016-12-24	\N	0	0	0	
8982	Basic Life Support (BLS)	Technical	Golden Success Wilderness Emergency Medical Services		1686	\N	2017-07-22	2017-07-22	\N	0	0	0	Technical
8983	Philippine Red Cross Standard First Aid and Basic Life Support-CPR Training for Professional Rescuers	Technical	Philippine National Red Cross Training Center -Bataan		1686	\N	2016-02-29	2016-03-04	\N	0	0	0	Technical
8464	Consultative Meeting on Hepatitis 3 Tx		Dr. Maria Nerissa Dominguez		1399	\N	2019-03-01	2019-03-01	\N	0	0	0	
8557	 Training Methodology 1		TESDA-MHC		1407	\N	2015-04-20	2015-05-30	\N	0	0	0	
8558	Regional Forum of Private School Administration		CLAPSA		1407	\N	2016-11-24	2016-11-25	\N	0	0	0	
8559	2017/INSET SHS Teacher in rivate School		DEPED AND PEAC		1407	\N	2017-04-28	2017-04-30	\N	0	0	0	
8560	STEM Education Training Program Regional Rollout		CHED		1407	\N	2017-05-29	2017-06-03	\N	0	0	0	
8561	Training Methodology 1 Refresher (Every Saturday)		La- Academia Bulacan		1407	\N	2017-08-01	2017-12-01	\N	0	0	0	
8562	Regional Summit of Private SHS Implementers		DEPED Region III		1407	\N	2017-11-27	2017-11-27	\N	0	0	0	
8563	Bread and Pastry Production NCII		MCBT- Balanga Bataan		1407	\N	2017-12-01	2018-02-01	\N	0	0	0	
8564	Training of Trainerson Skillpreneurship		TESDA Bataan		1407	\N	2018-03-12	2018-03-14	\N	0	0	0	
6769	Seminar on Anti- Trafficking in Person and Anti - Violence Against Women and Their Children	Knowledge	Population Commission 		314	\N	2018-05-11	2018-05-12	\N	0	0	0	Knowledge
6770	Basic Costumer Service Skills Training	Skills Training	Provincial Human Resource Office		314	\N	2018-05-07	2018-05-07	\N	0	0	0	Skills Training
6771	Occupational Safety and Health Awareness of the Provincial Engineer's Office 	Skills Training	Provincial Engineers Office		314	\N	2018-03-26	2018-03-27	\N	0	0	0	Skills Training
6772	Crash Coarse For Speech Improvement and Bussiness Correspondence and Writing for Bataan Provincial Capitol Employee	Skills Training 	Provincial Government of Bataan		314	\N	2016-11-23	2016-12-09	\N	0	0	0	Skills Training 
6773	Records and Filing Management Training	Skills Training 	Business Coach, Inc		314	\N	2016-09-01	2016-09-01	\N	0	0	0	Skills Training 
6795	Records and Filing Management				315	\N	2016-10-01	2016-10-01	\N	0	0	0	
6796	Instrumentation and Control				315	\N	2013-03-27	2013-03-27	\N	0	0	0	
6797	Basic Occupational Safety and Health For Constraction Site Safety Officer				315	\N	2013-02-25	2013-03-01	\N	0	0	0	
6805	44th PICE National Convention "Integrating,Advanced & Digital Technlology  in Building Infrastracture"	Technical	Philippine Instittute of Civil Engineer		316	\N	2018-10-29	2018-10-31	\N	0	0	0	Technical
6806	Construction Health Course	Technical	LABSPEAK Safety & Management Inc. In Partnership with Bataan Provincial Government		316	\N	2018-07-10	2018-07-13	\N	0	0	0	Technical
6807	43rd PICE National Convention "Build Build Build for Smart, Strong & Sustainable Societies"	Technical 	Philippine Institute of Civil Engineers		316	\N	2017-11-28	2017-11-30	\N	0	0	0	Technical 
6808	Loss Control Management Course	Technical	LABSPEAK Safety and Management INC. In Partnership with Bataan Provincial Government		316	\N	2017-05-02	2017-05-05	\N	0	0	0	Technical
6809	Training for Planning & Designing of Flood Control Projects with Project Impact Analysis	Technical	Department of Works and Highways thru Provincial Government of Bataan & PICE-Bataan		316	\N	2016-09-26	2016-09-30	\N	0	0	0	Technical
6810	Seminar Workshop on Preparation of Deatiled Engineering Design (DED) for Provincial Roads	Technical	Department of the Interior & Local Government(Office of Project Development Service)		316	\N	2016-08-22	2016-08-26	\N	0	0	0	Technical
6811	2016 PICE National Midyear Convention - "Responsible Civil Engineering Practices Admist Climate Change".	Technical	Philippine Institute of Civil Engineers		316	\N	2016-06-16	2016-06-18	\N	0	0	0	Technical
6812	Seminar WorkShop on Contract Management, Construction Supervision & Refresher Code on Procurement(RA 914)	Tedchnical	Department of the Interior & Local Government(Office of the Project Development Service)		316	\N	2016-04-28	2016-04-28	\N	0	0	0	Tedchnical
6813	Vision & Planning Workshops , Risk Assessment & Spatial Strategy Formulation Workshops and Project Harmonization and Prioritization	Technical	Municipality of Dinalupihan and U.P Planning and Development Foundation Inc. (UP Planades)		316	\N	2016-04-28	2016-04-28	\N	0	0	0	Technical
6814	Seminar Workshop o Engineering Design for Roads & Bridges	Technical	Department of Interior & Local Government		316	\N	2015-11-23	2015-11-27	\N	0	0	0	Technical
6815	Green Building Referral Code Multi-Stake Holders Consultation	Technical	Department of Public Works & Highway in Cooperation with International FInance Corporation		316	\N	2015-03-11	2015-03-11	\N	0	0	0	Technical
6816	Seminar-Workshop on the National Building Code of the Philippine (P.D. 1096) & It's Implementation Rules and Regulation(IRR)	Technical	Department of Publc Works And Highways in Cooperation with Philippines Association of Building Officials(PABO)		316	\N	2015-03-09	2015-03-13	\N	0	0	0	Technical
8565	 Seminar-Workshop on Learner's Information System and Enhanced Basic Education Information System For SY 2019-2019		DEPED Balanga City		1407	\N	2018-08-28	2018-08-28	\N	0	0	0	
8984	3 Day Collapse Structure Search and Rescue and Vehicular Extrication Rescue Training	Technical	1Bataan Command Center -PDRRMO		1686	\N	2015-12-12	2015-12-14	\N	0	0	0	Technical
8985	Basic Incident Command System (ICS)	Technical	Morong DRRMO		1686	\N	2015-08-14	2015-08-16	\N	0	0	0	Technical
8986	Basic Safety Training 	Technical	Mariners Polytechnic Training Center		1686	\N	2009-12-14	2009-12-20	\N	0	0	0	Technical
8573	Philebotomy Training Course		Philippine Red Cross Bataan Chapter		1113	\N	2016-10-16	2016-10-18	24	0	0	0	
9204	53rd Pamet Annual Convention  " Raising the Gold Standard for World Class Medical Technologists	Technical	Philippine Association of Medical Technologists National		247	\N	0217-11-22	2017-11-22	8	0	0	0	Technical
9205	Proficiency Training on HIV and other Blood-Borne STI's (Hepatitis B/C and Syphilis)	Technical	NRL - SLH/ SACCL		247	\N	2017-10-02	2017-10-10	58	0	0	0	Technical
9206	Worskhop on Parasitology 	Technical	Philippine Association of Medical Technologist Bataan Chapter		247	\N	2017-09-23	2017-09-25	24	0	0	0	Technical
9207	Advocacy Forum on the Strategic Plan of the Regional laboratotry Network Council in Regional Laboratory Network Council in Region III	Technical	Department of Health Regional Office III		247	\N	2017-09-07	2017-09-07	8	0	0	0	Technical
9208	Orientation on the On-Line Survey on Lab Containment of Polio Virus	Technical	Department of Health Regional Office III		247	\N	2017-05-23	2017-05-23	8	0	0	0	Technical
9209	Bridging Leader for Public Health Module 1	Technical	Department of Health Regional Office III		247	\N	2017-05-09	2017-05-10	16	0	0	0	Technical
9210	World Malaria Day Commmeration for Central Luzon 	Technical	Provincial Health Office		247	\N	2017-04-25	2017-04-25	8	0	0	0	Technical
6775	Communication and Development Training (Oral and Written)		Provincial Human Resource Management Office		425	\N	2016-11-09	2016-11-10	\N	0	0	0	
6776	Orientation Seminar on Magna Carta of Women (R.A. 9710) and Anti Violence Against Women and Children (R.A. 9262)		Provincial Government of Bataan and Provincial Population Office		425	\N	2016-04-15	2016-04-15	\N	0	0	0	
6777	Seminar on Code of Conduct and Ethical Standards with the Revised Rules on Administrative Cases in Civil Service		CSC Region/HRMO		425	\N	2015-10-28	2015-10-29	\N	0	0	0	
6778	Pagsasanay sa Korespondensiya Opisyal at Implementasyon ng Kautusang Tagapagpaganap Blg. 335		Komisyon sa Wikang Pilipino		425	\N	2015-09-29	2015-09-29	\N	0	0	0	
8466	Management of Small and Medium Enterprise Industry Forum 		Bureau of Fisheries and Aquatic Resources III		53	\N	2016-10-21	2016-10-21	\N	0	0	0	
8467	Training on Mangrove with Actual Validation 		Bureau of Fisheries and Aquatic Resources III		53	\N	2016-06-25	2016-06-26	\N	0	0	0	
8468	Training on Gender and Development Mainstreaming  (GAD PLANNING AND BUDGETING) 		Agricultural Training Institute 		53	\N	2016-09-07	2016-09-09	\N	0	0	0	
8469	Fisheries Women Enterpreneurs Forum Developing the Interpreneurial Skills of SME's for Enhanced Export Market		Bureau of Fisheries and Aquatic Resources III / Department of Science and Technology		53	\N	2016-06-30	2016-07-01	\N	0	0	0	
8470	Sythesis Workshop om Technology Commercialization on Wheels		Bureau of Agriculture Research		53	\N	2017-02-09	2017-02-09	\N	0	0	0	
8471	1st Philippine Aquaculture Summit 		Bureau of Fisheries and Aquatic Resources III		53	\N	2016-06-07	2016-06-08	\N	0	0	0	
8473	Orientation on GAD Basic Concepts and Issues Cum Teambuilding for Agriculture Office Staff 		Provincial Government of Bataan		53	\N	2016-06-17	2016-06-18	\N	0	0	0	
7067	MIDYEAR COOPERATIVE FORUM		CMRC, INC.		262	\N	2007-06-25	2007-06-25	8	0	0	0	
7068	MEMBERS SAVINGS OPERATION SEMINA		BATAAN COOPERATIVE BANK		262	\N	2007-07-20	2007-07-20	8	0	0	0	
7074	BASIC/ADVANCED WRITTEN AND ORAL COMMUNICATION WITH POWERPOINT PRESENTATION		PROVINCIAL HUMAN RESOURCE MANAGEMENT OFFICE		262	\N	2018-04-18	2018-04-18	8	0	0	0	
8474	Greening the Gender Responsive Value Chain Workshop Great Women Project 2		Department of Trade and Industry - 3		53	\N	2016-05-23	2016-05-24	\N	0	0	0	
8475	Capacitating Gad Advocates on the use of Gad Maintreaming Tools 		Regional Research & Development Consortium 		53	\N	2016-05-19	2016-05-21	\N	0	0	0	
8476	Fisheries / Coastal Resource Management (F/CM) Training, Planning and Development of LGU F/CM Plans Under Save Manila Bay Program		Bureau of Fisheries and Aquatic Resources III		53	\N	2016-03-29	2016-03-31	\N	0	0	0	
8477	National Fisheries Industry Summit and 1st Bangus Congress 		Bureau of Fisheries and Aquatic Resources III		53	\N	2016-02-03	2016-02-05	\N	0	0	0	
8478	Forum on the Challenges and Opportunities of the Asian Freetrade Agreement in Central Luzon 		Central Luzon Agricultural Regional Research Concortium		53	\N	2015-06-01	2015-06-01	\N	0	0	0	
8479	Regional Research Development and Extension Work Consultation Meeting and Technical Report Writing Workshop 		Bureau of Fisheries and Aquatic Resources III		53	\N	2015-06-22	2015-06-25	\N	0	0	0	
8480	Developing Marketing Strategies 		Department of Trade & Industry		53	\N	2015-06-26	2015-06-26	\N	0	0	0	
8481	Seminar on Code of Conduct and Ethical Standards with the Revised Rules on Administrative Cases in the Civil Service 		Provinciaal Government of Bataan		53	\N	2015-09-20	2015-09-20	\N	0	0	0	
8482	1st National CPAR Congress 		Bureau of Agriculture Research		53	\N	2014-02-20	2014-02-21	\N	0	0	0	
8483	Workshop on Zonal Management in Aquaculture and Orientation to PNS Good Aquaculture Practices 		Bureau of Fisheries and Aquatic Resources III		53	\N	2014-10-22	2014-10-24	\N	0	0	0	
8509	Ugnayan gri-Credit sa Probinsya 		Provincial Agriculturist Office		54	\N	2014-10-15	2014-10-16	\N	0	0	0	
8514	NTC Briefing 		Department of Trade and Industry		54	\N	2015-10-22	2015-10-22	\N	0	0	0	
8515	Seminar on Mandatory Product Standards 		Department of Trade and Industry		54	\N	2015-09-24	2015-09-24	\N	0	0	0	
8517	Regional Consultaation and Organizational Strengthening for P4MP Officers and Members and Provincial P4MP Coordinators in Region 3 		Agricultural Training Institute RTC-III		54	\N	2014-02-25	2014-02-26	\N	0	0	0	
8518	Seminar Workshop on Strategic Performance Management System (SPMS) 		Civil Service Commission		54	\N	2013-10-29	2013-10-29	\N	0	0	0	
8519	Training Workshop on Values Formtion and Team Building 		Provincial Agriculturist Office		54	\N	2013-03-07	2013-03-08	\N	0	0	0	
8520	Seminar on Effective Communications for Consumer Groups 		Department of Trade and Industry		54	\N	2016-08-09	2016-08-09	\N	0	0	0	
8521	Training Workshop on Simple Bookkeeping and Financial Management 		Department of Agriculture Region 3		54	\N	2013-02-21	2013-02-22	\N	0	0	0	
8522	Barangay Food Terminal Management Team Training		Department of Agriculture Region 3		54	\N	2013-02-12	2013-02-13	\N	0	0	0	
8523	Livelihood Skills Training on Cassava Processing 		Department of Agriculture Region 3		54	\N	2012-11-20	2012-11-20	\N	0	0	0	
8524	Meat Processing Training 		Department of Agriculture Region 3		54	\N	2012-11-15	2012-11-16	\N	0	0	0	
8525	Writeshop on Profiling of Agri-Product Suppliers/Buyers of Region III		Department of Agriculture Region 3		54	\N	2012-04-16	2012-04-19	\N	0	0	0	
8526	Training Course on Computer Based Data Management for Rice Agricultural Extension Workers 		Agriculturak Training Institute RTC-III		54	\N	2012-01-10	2012-01-12	\N	0	0	0	
8996	Fit and Fissure Sealant		Kaparangan Elementary School		255	\N	2018-11-14	2018-11-14	8	0	0	0	
8997	Oral Health Cleaning Fro Buntis		Orani District Hospital		255	\N	2018-08-01	2018-08-01	8	0	0	0	
5347	Anti-Terrorism and Bombs Awareness Seminar		Provincial Governement of Bataan		564	\N	2005-03-18	2005-03-18	\N	0	0	0	
5362	Season-long training of trainiers on integrated crop management for corn with NC III		Agricultural training institute regional training center III		34	\N	2018-03-12	2018-07-25	\N	0	0	0	
5363	Technology updates on corn integrated crop management cum value-adding tecnology		Agricultural training institute regional training center III		34	\N	2017-06-20	2017-06-22	\N	0	0	0	
5364	Trainin on operation maintenance and troubleshooting of corn and cassava machineries and facilities		Agricultural training institute regional training center III		34	\N	2017-05-10	2017-05-12	\N	0	0	0	
5365	Training of trainors on philippine standard good agricultural practices for corn and cassava and code of practice on the reduction of HCN in Cassava		Agricultural training institute regional training center III		34	\N	2017-04-19	2017-04-21	\N	0	0	0	
5366	Training courseon value adding technology Cassava processing cum HACCP/SSOP/CGPM		Agricultural training institute regional training center III		34	\N	2017-03-21	2017-03-23	\N	0	0	0	
5367	Gap protocol updates for corn and cassava cum experiencial learning		Agricultural training institute regional training center III		34	\N	2016-09-26	2016-09-30	\N	0	0	0	
5370	Gender - Based effectiveness skills training for corn coordinators of region III		Agricultural training institute regional training center III		34	\N	2016-03-16	2016-03-18	\N	0	0	0	
5371	Farmers Field in School on Corn Production		Department of Agriculture Regional Field Office III		34	\N	2015-01-10	2015-01-14	\N	0	0	0	
5373	Orientation on Gender and Development Basic Concept and Issues Cum Team Building for Agriculture Office Staff		Office of the Porvincaial Agriculture		36	\N	2016-06-17	2016-06-18	\N	0	0	0	
5374	Hands-on Training on Shell Craft(Kapis) Industry		Bureau of Soils and Water Management.		36	\N	2011-08-05	2011-08-05	\N	0	0	0	
5375	Marine Mammal Strading Response Workshop		Provincial Veterinary Office		36	\N	2010-10-13	2010-10-15	\N	0	0	0	
5376	Refresher Course on Fishery Law Enforcement		Bureau of Fisheries an Aquatic Resources Regional III		36	\N	2010-09-02	2010-09-03	\N	0	0	0	
8998	Dental Mission 		Bagac Bataan		255	\N	2018-06-21	2018-06-21	8	0	0	0	
8999	Self Defense Program 		Camp Tolentino Balanga City		255	\N	2018-04-20	2018-04-20	8	0	0	0	
9000	Smoking Cessation Seminar		DOH		254	\N	2018-10-11	2018-10-12	16	0	0	0	
9001	Initiated Counselling and Testing		Region III (DOTS FACILITIES)		254	\N	2018-05-01	2018-05-04	32	0	0	0	
12521	Rural Impact Sourcing Workshop		Department of Information and Communications Technology- Luzon Cluster II		2192	\N	2017-11-28	2017-11-28	8	0	0	0	
12522	Entity Level Greenshouse Gas Emissions Inventory Workshop		Provincial Government Environmental and Natural Resources Office		2192	\N	2018-04-03	2018-04-03	8	0	0	0	
5433	Orientation Seminar on the Procedures for the disbursement transaction of the provincial government of bataan				37	\N	0001-01-01	0001-01-01	\N	0	0	0	
5434	BASIC/ADVANCED WRITTEND AND ORAL COMMUNICATION WITH POWERPOINT PRESENTATION		PROVINCIAL HUMAN RESOURCE MANAGEMENT OFFICE		38	\N	2018-04-18	2019-04-19	\N	0	0	0	
5435	19TH NATIONAL MANGO CONGRESS		Philippin mango industry foundation(PMIFI)		38	\N	2017-11-27	2017-11-29	\N	0	0	0	
5436	Forum on the Develoment of Coffee Industry in Bataan		Department of Trade Industry		38	\N	2017-10-13	2017-10-13	\N	0	0	0	
5452	BATAAN MEDICAL SOCIETY AT THE FRONTLINE: MOVING FORWARD THRU CAHNGING TIMES		BATAAN MEDICAL SOCIETY		2023	\N	2017-09-29	2017-09-29	\N	0	0	0	
5453	DIVISION ORIENTATION ON SCHOOL-BASED FEEDING PROGRAM FY 2018		DEPARTMENT OF EDUCATION 		2023	\N	2018-06-27	2018-06-27	\N	0	0	0	
5454	DIVISION SEMINAR WORKSHOP ON PSYCHOLOGICAL FIRST AID		DEPARTMENT OF EDUCATION		2023	\N	2018-11-07	2018-11-07	\N	0	0	0	
5456	TESDA BREAD AND PASTRY PRODUCTION		PATS-TESDA		1977	\N	2018-01-09	2018-01-11	\N	0	0	0	
5459	UPDATES AND REFORMATION OF SCHOOL HEALTH AND NUTRITION PROGRAM AND PROJECT OF SDO BATAAN 2017-2018		SINAGTALA RESORT		1977	\N	2017-05-22	2017-05-22	\N	0	0	0	
5460	DEWORMING PROGRAM OF DOH TOGETHER WITH DEPED BALANGA 		SCHOOLS DIVISION OFFICE 		1977	\N	2015-07-23	2015-07-23	\N	0	0	0	
5462	FISRT AID TRAINING STANDARD/BASIC LIFE SUPPORT, CPR FOR HEALTH CARE PROVIDERS		PHILIPPINE NATIONAL REDCROSS TRAINING CENTER, BALANGA CITY, BATAAN		2042	\N	2008-07-07	2008-07-12	\N	0	0	0	
5463	COMPREHENSIVE COURSE ON BASIC EMERGENCY CARE/BASIC LIFE SUPPORT FOR RESCUE MEDICS		MUNICIPAL HEALTH OFFICER, MARIVELEZ RESCUE MEDICS UNIT, MARIVELEZ BATAAN		2042	\N	2009-02-24	2009-03-03	\N	0	0	0	
5464	ENTERPRENEURSHIP: A CONTINUING TREND AT ALL TIMES		BATAAN PENINSULA STATE UNIVERSITY , GRADUATE SCHOOL, BALANGA CITY, BATAAN		2042	\N	2011-09-03	2011-09-03	\N	0	0	0	
5465	PSYCHOLOGICAL FIRST AID 		PYSCHIATRIC-MENTAL HEALTH NURSES ASSOCIATION OF THE PHILIPPINES, INC . REGION III		2042	\N	2014-02-15	2014-02-15	\N	0	0	0	
5466	BASIC CARDIA RHYTM RECOGNITION (ECG READING)		INSTITUTE FOR NURSING ENRICHMENT TRAINING CENTER		2042	\N	2014-06-12	2014-06-12	\N	0	0	0	
5949	Behavior Based Safety		FABILA HR and Training Council		260	\N	2016-10-05	2016-10-05	\N	0	0	0	
5467	ELECTRICAL THERAPY AND AED OPERATION		INSTITUTE FOR NURSING ENRICHMENT TRAINING CENTER		2042	\N	2014-06-12	2014-06-12	\N	0	0	0	
5468	BASIC LIFE SUPPORT FOR HEALTH CARE PROVIDERS 		INSTITUTE FOR NURSING ENRICHMENT TRAINING CENTER		2042	\N	2014-06-12	2014-06-12	\N	0	0	0	
5469	BASIC EMERGENCY CARDIOVASCULAR PHARMACOLOGY		INSTITUTE FOR NURSING ENRICHMENT TRAINING CENTER		2042	\N	2014-06-12	2014-06-12	\N	0	0	0	
5470	EMERGENCY OXYGEN ADMINISTRATION		INSTITUTE FOR NURSING ENRICHMENT TRAINING CENTER		2042	\N	2014-06-12	2014-06-12	\N	0	0	0	
5471	ADVANCED AIRWAY MANAGEMENT AND ENDOTRACHEAL INTUBATION		INSTITUTE FOR NURSING ENRICHMENT TRAINING CENTER		2042	\N	2014-06-12	2014-06-12	\N	0	0	0	
5472	ADVANCED CARDIOVASCULAR LIFE SUPPORT 		INSTITUTE FOR NURSING ENRICHMENT TRAINING CENTER		2042	\N	2014-06-13	2014-06-13	\N	0	0	0	
5473	BASIC OCCUPATIONAL SAFETY AND HEALTH COURSE		CORPORATE OCCUPATIONAL SAFETY, HEALTH AND ENVIRONMENT MANAGEMENT ASSOCIATION OF THE PHILIPPINES, INC.		2042	\N	2014-06-16	2014-06-20	\N	0	0	0	
5474	BASIC INTRAVENOUS THERAPY 		ASSOCIATION OF NURSING SERVICE ADMINISTRATION OF THE PHILIPPINES, V.L MAKABALI MEMORIAL HOSPITAL, INC.		2042	\N	2014-11-05	2014-11-07	\N	0	0	0	
5475	ORIENTATION ON DENGUE SCHOOL-BASED IMMUNIZATION		PROVINCIAL HEALTH OFFICE, BALANGA CITY, BATAAN		2042	\N	2016-03-02	2016-03-02	\N	0	0	0	
5476	DIVISION ROLLOUT TRAINING AND ORIENTATION ON RANDOM DRUG TESTING IN SCHOOLS/WORKPLACES		SCHOOL DIVISION OF BATAAN		2042	\N	2017-05-09	2017-05-09	\N	0	0	0	
5477	DIVISION TRAINING ON NUTRITIONAL ASSESMENT 		SCHOOL DIVISION OF BATAAN		2042	\N	2017-05-11	2017-05-11	\N	0	0	0	
5478	INTERNATIONAL SEMINAR-WORKSHOP ON RESEARCH AND PUBLICATION		INSTITUTE OF LEADERS IN EDUCATIONAL ADVANCEMENT AND DEVELOPMENT		2042	\N	2017-05-12	2017-05-14	\N	0	0	0	
5485	SFCI Basic Training Course		Sarimanok Feeds Company, Inc.		961	\N	2004-09-27	2004-10-09	\N	0	0	0	
5486	TESDA Certificate on Basic Course in House/ Construction Painting		TESDA/ Dutch Boy Philippines Incorporated		961	\N	2000-10-23	2000-10-27	\N	0	0	0	
5487	Business Writing "Say it the Write Way"		Power Skills Inc.		961	\N	2012-06-04	2012-06-05	\N	0	0	0	
5488	Fast Accreditation Program		The Insular Life Assurance Co. LTD		961	\N	2017-11-10	2017-11-10	\N	0	0	0	
5489	How to Start and Operate a Meat Shop		Business Coach		961	\N	2010-11-06	2010-11-06	\N	0	0	0	
5490	TALAKAYAN sa RADYo, DZMM-ABS-CBN		Buhay sa Kabukiran Foundation, Inc./ DZMM-ABS CBN		961	\N	2008-01-06	2008-01-06	\N	0	0	0	
5491	2 Day Multi- Sectoral Leaders Workshop and Planning Conference		Angeles City Clean and green Council		961	\N	1999-03-24	1999-03-25	\N	0	0	0	
5492	SOLID WASTE CHARACTERIZATION 	TECHNICAL 	SAVE OUR FUTURE FOUNDATION		595	\N	1991-07-21	1991-07-21	\N	0	0	0	TECHNICAL 
5493	EFFECTIVE ADMINISTRATIVE & SUPPLY MANAGEMENT PROGRAM	TECHNICAL 	NATIONAL ADMINISTRATIVE & SUPPLY ASSOCIATION OF THE PHILIPPINES, INC. (NAGASOAPI)		595	\N	1995-08-22	1995-08-24	\N	0	0	0	TECHNICAL 
5494	PREPARATION OF INFORMATION EDUCATION MATERIALS FOR PROTECTED AREAS	TECHNICAL 	WORLD WIDE FOUNDATION (WWF)		595	\N	1996-05-20	1996-05-24	\N	0	0	0	TECHNICAL 
5495	CLERICAL DEVELOPMENT COURSE 	TECHNICAL 	CIVIL SERVICE COMMISSION (CSC) REG 5		595	\N	1997-09-03	1997-09-04	\N	0	0	0	TECHNICAL 
5496	SKILLS DEVELOPMENT TRAINING ON REVENUE GENERATION 	TEHCNICAL 	BUREAU OF LOCAL GOVERNMENT FINANCE, REG 5		595	\N	2011-11-23	2011-11-25	\N	0	0	0	TEHCNICAL 
5497	FISCAL ADMINISTRATION & REVENUE MANAGEMENT 	TECHNICAL 	BUREAU OF LOCAL GOVERNMENT FINANCE, REG 5		595	\N	2012-05-16	2012-05-18	\N	0	0	0	TECHNICAL 
5498	SEMINAR WORKSHOP ON EFFECTIVE PROCEDURES IN MANAGING PUBLIC RECORDS	TECHNICAL 	GOVERNMENT RECORDS OFFICERS ASSOCIATION OF THE PHILIPPINES, INC. (GROAPI)		595	\N	2018-10-15	2018-10-17	\N	0	0	0	TECHNICAL 
5499	SUPERVISORY DEVELOPMENT COURSE (SDC) TRACK 2	SUPERVISORY	PROVINCIAL HUMAN RESOURCES MANAGEMENT OFFICE 		595	\N	2018-11-12	2018-11-15	\N	0	0	0	SUPERVISORY
12527	On the Job Trainee			CSWD Olongapo City	2197	\N	0001-01-01	0001-01-01	120	0	0	0	
7254	Seminar on Anti-Trafficking in Person and Anti - Violence Against Women and Their Children	Personal Development	Provincial Human Resource Management Office - Provincial Government of Bataan		329	\N	2018-11-05	2018-12-05	16	0	0	0	Personal Development
7255	Basic/Advanced Written and Oral Communication with Powerpoint Presentation	Personal Development	Provincial Human Resource Management Office - Provincial Government of Bataan		329	\N	2018-04-18	2019-04-19	16	0	0	0	Personal Development
7256	Refresher Workshop of Construciton Operational Safety and Health Training	Safety Training	Provincial Engineer's Office - Provincial Government of Bataan		329	\N	2018-02-22	2018-02-22	4	0	0	0	Safety Training
7257	All-Hazard Incident Management Team Course on Incident Command System	Technical	Office of Civil Defense -Regional Disaster Risk Reduction and Management Council 3		329	\N	2018-01-22	2018-01-22	40	0	0	0	Technical
8527	Water Search and Rescue (Wasar)	Technical	Metropolitan Manila Development Authority		1669	\N	2016-06-27	2016-07-01	\N	0	0	0	Technical
8528	Basic Traffic Management Course	Technical	City Government of Balanga		1669	\N	2015-11-23	2015-11-27	\N	0	0	0	Technical
8529	Brief Advice on Smoking Cessation	Technical	Dr. Mariano Antonio T. Banzon		1669	\N	2015-07-23	2015-07-23	\N	0	0	0	Technical
8530	Basic Refresher Course on the Enforcement and Implementation Laws and Ordinances 	Technical	Hon. Jose Enrique S. Garcia III (City Mayor)		1669	\N	2015-07-27	2015-07-27	\N	0	0	0	Technical
8531	Water Search and Rescue (WASAR)	Technical	Ms. Josefina T. Timoteo		1669	\N	2015-05-20	2015-05-23	\N	0	0	0	Technical
8533	Frontline Service Management 	Technical	Hon. Jose Enrique S. Garcia III (City Mayor)		1669	\N	2014-09-05	2014-09-05	\N	0	0	0	Technical
8534	I am Ready Maghanda, Magimpok at Magtipid	Technical	Hon. Jose Enrique S. Garcia III (City Mayor)		1669	\N	2013-08-29	2013-08-29	\N	0	0	0	Technical
8535	Standard Operating Procedure on Peace and Order and Security Matter	Technical	Hon. Jose Enrique S. Garcia III (City Mayor)		1669	\N	2012-07-31	2012-07-31	\N	0	0	0	Technical
8536	Bomb Identification, Improvised Explosive (IED) Recognition Techniques and Bomb Threat	Technical	Mr. Arnold D. Gunnacao		1669	\N	2010-03-24	2010-03-31	\N	0	0	0	Technical
8537	Road to Prosperity Track I	Technical	Hon. Jose Enrique S. Garcia III (City Mayor)		1669	\N	2009-06-24	2009-06-24	\N	0	0	0	Technical
8538	Balanga City Marshall Orientation Course	Technical	Hon. Jose Enrique S. Garcia III (City Mayor)		1669	\N	2007-08-06	2007-09-14	\N	0	0	0	Technical
7089	Rapid Damage Assessment and Need Analysis (RDNA) Training 		Office of Civil Defense - Region III		327	\N	2018-12-04	2018-12-07		0	0	0	
7090	Anti - Trafficking in Person and Anti - Violence Against Women and Their Children Seminar (GAD Training)		Provincial Government of Bataan		327	\N	2018-05-11	2018-05-12		0	0	0	
7091	Basic Incident Command System Course Training (ICS)		Office Of the Civil Defense - Region III		327	\N	2016-09-20	2017-09-22		0	0	0	
7092	Records Filing Management Training		Business Coach, Inc		327	\N	2016-09-01	2016-09-01		0	0	0	
7093	Emergency 117 Dispatches Training		Dept. of the Interior & Local Gov't		327	\N	2009-05-25	2009-05-29		0	0	0	
9003	Expanded Local Health Board Meeting	Technical	Provincial Health Office Balanga City, Bataan		252	\N	2019-02-06	2019-02-06	4	0	0	0	Technical
9004	Basic Life Support and Advance Cardiac Life Support	Technical	American Safety & Health Institute		252	\N	2018-12-07	2018-12-08	16	0	0	0	Technical
9005	Supervisory Development Course Track II & III	Supervisory	Civil Service Commission Region III		252	\N	2018-11-12	2018-11-16	40	0	0	0	Supervisory
9006	Unified Disease Registry Systems Project Implementation Review-Luzon	Technical	Department of Health, Knowledge Management and Information Technology Service		252	\N	2018-10-18	2018-10-18	8	0	0	0	Technical
5595	Hands On Training on Planning- Harvesting Reports Using Google Sheets		Department of Agriculture - Regional FIeld Office		39	\N	2018-09-11	2018-09-13	\N	0	0	0	
5596	2017 Agriculture Fisheries, Forestry, Natural Resources (Affair) Extensio Symposium		Philippine Extension and Advisory Services Network, Inc.		39	\N	2017-10-03	2017-10-04	\N	0	0	0	
5597	2017 DA-RFO III R & D in- House Review		Department of Agriculture - Regional Field Office III		39	\N	2017-09-13	2017-09-15	\N	0	0	0	
5598	Training Of Trainers(TOT) on Climate Smart Farm Business School(CSFBS)		Agricultural Training Institute - Regional Training Center		39	\N	2017-06-19	2017-06-28	\N	0	0	0	
5599	Prism Regional Training for Data Collectors of Region III		Department of Agriculture - Regional Fiend Office III		39	\N	2017-05-02	2017-05-06	\N	0	0	0	
5600	Training on Project Proposal Development in Extension and Result-Based Monitoring and Evaluation		Agricultural Training Institute - Regional Field Office III		39	\N	2017-04-25	2017-05-28	\N	0	0	0	
5601	Orientation on Gender and Development Basic Concepts and Issues Cum Team Building for Agriculture Office Staff		Provincial Government of Bataan; Office of the Provincial Agriculturist; Provincial Population Commission Office		39	\N	2016-06-17	2016-06-18	\N	0	0	0	
5602	Training on Basic Experimental Designs and Data Analysis Using Statistitical Tool For Agricultural Research (STAR) and Plant Breeding Tools (PBTOOLS)		Department of Agriculture - Regional Field Office III		39	\N	2016-06-01	2016-06-03	\N	0	0	0	
5603	Training of Trainors (TOT) on Enchancement/Climate Smart Farmers Field School		Department of Agriculture - Regional Field Office III		39	\N	2016-05-23	2016-05-27	\N	0	0	0	
5604	Retooling/Training on Participatory Variatal Selection - Research Managed Under Accelerating The development and Adoption of Next Generation(Next - Gen) Rice Varieties for the Major Ecosystem in the Philippines		Department of Agriculture - Regional Field Office III		39	\N	2016-04-11	2016-04-15	\N	0	0	0	
5605	Retooling Course on the Philippine Rice Information System (PRISM) Component A  and Component B Implementers		Department of Agriculture - Regional Field Office III		39	\N	2016-04-25	2016-04-29	\N	0	0	0	
5606	Training For Agricultural Extension Workers (AEWS) Under the Project Accelerating The Development and Dissemination of Associated Technology in Rice Production That Are Resource -Use Efficient		Department of Agriculture - Regional Field Office III		39	\N	2015-08-27	2015-08-28	\N	0	0	0	
5607	Training/Retooling of Next-Gen Project Researchers		Department of Agriculture - Regional Field Office III; PhilRice ; IRRI		39	\N	2015-03-23	2015-03-27	\N	0	0	0	
5608	Skills Training Course on the Operation and Maintenance of Selected Agricultural Machineries		Philippine Center for PostHarvest Dvelopment and Mechanization		39	\N	2014-10-27	2014-10-31	\N	0	0	0	
5609	Training on Data Collection, Monitoring and Vlaidation Component A of Philippine Rice Information system		Department of Agriculture - Regional Field Office III; Philrice; IRRI		39	\N	2014-06-03	2014-06-06	\N	0	0	0	
5610	Training on Managing the Agri-Pinoy Rice Processing Complex		The New National Agribusiness Corporation; Department of Agriculture-Regional Field Office III		39	\N	2013-09-16	2013-09-20	\N	0	0	0	
5611	Training on Farm To Market Road Development Program(FMRDP) Using Applied GEO-Tagging Technology		Department of Agriculture - Regional Field Office III		39	\N	2013-05-02	2013-05-03	\N	0	0	0	
5619	Orientation on Gender & Development Basic Comcepts and Issues Cum		Provincial Government  of Bataan		45	\N	0001-01-01	0001-01-01	\N	0	0	0	
5620	Team Building for Agriculture Office Staff		Office of the Provincial Agriculturist and Provincial Population Office		45	\N	2018-05-18	2018-05-19	\N	0	0	0	
5621	Three-Day Training on Good Agricultural Practices (GAP)Banana Production		Provincial Agriculturist Office		45	\N	2016-06-28	2016-06-30	\N	0	0	0	
5622	Two-Day Training on Good Agricultural Practices(GAP) Mango Production		Provincial Agriculturist Office		45	\N	2016-11-03	2016-11-04	\N	0	0	0	
5623	Three-Day Training on Good agricultural Practices(GAP) Frutis and Vegetables		DA-RFO 3		45	\N	2016-11-23	2016-11-25	\N	0	0	0	
5624	Pagsasanay sa Korsepondesnya Opisyal		Komisyon ng Wikang Filipino/Provincial Governors Office		45	\N	2015-09-29	2015-09-29	\N	0	0	0	
5625	Orientation/Seminar on the Procedures of the Disbursement transaction of the Provincial Goverment of Bataan		Provincial Engineer's Office and Provincial Accounting Office		45	\N	2014-05-09	2014-05-09	\N	0	0	0	
5629	Training Course on Inbred Rice Seed Production and Certification For Seed Inspector		National Seed Quality Control Services Central Office and Region III		44	\N	2019-02-25	2019-03-01	\N	0	0	0	
5630	Rice Refresher Course Training 2018		Bayer Cropscience, INC		44	\N	2018-03-06	2018-03-08	\N	0	0	0	
5631	Rice Refresher Course Training 2015		Bayer Cropscience, INC		44	\N	2015-08-18	2015-08-20	\N	0	0	0	
7223	WRITESHOP FOR THE Completion of the PGRR		DILG (RegionIII)		916	\N	2018-09-25	2018-09-26	\N	0	0	0	
7458	PhilGEPS Training for Buyers	Technical	PhilGEPS 		341	\N	2017-02-02	2017-02-28	16	0	0	0	Technical
7463	Training on PRDP Standard Forms and Specification and I-Build Coordination Meeting, Subic Bay, Zambales	Technical	Dept of Agriculture - PRDP, San Fernando, Pampanga		341	\N	2014-04-10	2014-04-11	8	0	0	0	Technical
7465	PICE 2013 National Midyear Cionvention, PICE; Gearing for Cross Border Practices	Technical	PICE		341	\N	2013-06-27	2013-06-29	20	0	0	0	Technical
7466	SCURP 2013 - A Basic Course in Urban & Regional Planning (ABC in URP)	Technical	UP - SCURP		341	\N	2013-03-11	2013-03-15	40	0	0	0	Technical
7467	Geographical Information System Training Workshop	Technical	PGB - MAAP		341	\N	2012-03-13	2012-03-16	32	0	0	0	Technical
5664	Anti -Violence Againts Women and Anti Sexual Harasment Act Cum Team Effectiveness of Agriculture Employees		Office of the Provincial Agriculturist Population Commission		62	\N	2018-05-18	2019-05-19	\N	0	0	0	
7480	Anti - Trafficking in Person and Anti - Violence Against Women Their Children		Provincial Government of Bataan		342	\N	2018-05-11	2018-05-12	16	0	0	0	
8555	1st Continuing Professional Development Seminar For 2017		DOH Region III		1111	\N	2017-07-09	2017-07-09	10	0	0	0	
7498	Green Design Strategies for Architects and Sketcup 3D Made Easy	Technical	Bataan Peninsula State University/United Architect of the Philippines		343	\N	2007-09-20	2007-09-20	8	0	0	0	Technical
5959	Basic Management Course		DOLE Bataan		260	\N	2012-10-24	2012-10-25	\N	0	0	0	
7499	Green Building Referral Code Multi - Stakeholders Consultation	Technical	Crown Royale Hotel Balanga Bataan/DPWH/International Finance Corporation		343	\N	2015-03-11	2015-03-15	8	0	0	0	Technical
7500	Construction Occupational Safety and Health Training Course 	Technical	Crown Royale Hotel, Balanga LABSpeak Safety Management INC. 		343	\N	2016-02-08	2016-05-08	40	0	0	0	Technical
7501	Training Program on Advanced Geographic Information System (GIS) For Disaster Preparedness Response	Technical	Emiramona Garden Hotel Tagaytay City/DILG Local Governement  Academy		343	\N	2016-08-15	2016-08-19	40	0	0	0	Technical
5665	Magna carta of Women Cum Team Effectiveness Of Agriculture Employees		office of the Provincial Agriculturist Population Commission		62	\N	2017-09-29	2017-09-30	\N	0	0	0	
5669	Preparation of Business Model From the Provincial Commodity Investement Plan (PCIP)		Department of Agriculture Regional Filed Office III 		59	\N	2017-01-11	2017-01-13	\N	0	0	0	
5670	Crash Course for Speech Improvement and Business Correspondence and Writing for Bataan Provincial Capitol Employee 		Provincial Government of Bataan		59	\N	2016-11-21	2016-12-09	\N	0	0	0	
5671	Gender - Based Effectiveness Skills Training (G-BEST) For AFC- Volunteers 		Philippine Council for Agriculture and Fisheries		59	\N	2016-12-01	2016-12-02	\N	0	0	0	
5672	Three-Day Training of Good Agricultural Practices (GAP) On fruits and Vegetables 		Department of Agriculture Regional Field Office III		59	\N	2016-11-23	2016-11-25	\N	0	0	0	
5674	AFC Coordinators Facilitation Skills Training		Agricultural Training Institute 		59	\N	2015-03-16	2015-03-18	\N	0	0	0	
5675	Training Course on Entrepeneurial Development Cum Slef- Assessment For Aews of Region III		Agricultural Training Institute		59	\N	2015-02-25	2015-02-27	\N	0	0	0	
5676	Training on Feasibility Study/Detailed Engineering Design; Economic and Financial Analysis Social and Environmental Safeguards; Applied Geo-Tagging Technology Under the Philippine Rural Development Project Intensified Building Up of Infrastructure and Logistic for Development 		Department of Agriculture Regional Field Office III		59	\N	2014-10-27	2014-10-31	\N	0	0	0	
5679	Training Course on Capacitating Agricultural Extenson Workers 		Agricultural Training Institute 		59	\N	2014-06-09	2014-06-11	\N	0	0	0	
5680	Training on Coconut- Based Farming System		Agricultural Training Institute 		59	\N	2014-05-28	2014-05-30	\N	0	0	0	
5681	Training Course on Para Extensionist for Key Farmer Leaders		Agricultural Training Institute 		59	\N	2014-05-19	2014-05-21	\N	0	0	0	
5682	Training Course on inbred and three line hybrid rice (CMS) Seed Production and Certification for Seed Inspectors 		Bureau of Plant Industry 		60	\N	2017-04-02	2017-04-07	\N	0	0	0	
5683	Rice Data Management Forum 		Department of Agriculture - Regional Field Office III		60	\N	2017-03-16	2017-03-17	\N	0	0	0	
8586	Seminars on Analysis of Causes of National Death For Action	Technical	Local Civil Registry Office		1115	\N	2018-02-23	2018-02-23	4	0	0	0	Technical
5684	Orientation on Gender and Development Basic Concepts and Issues Cum Team Building for Agriculture Office Staff 		Provincial Government of Bataan, Office of the ProvincialAgriculturist and Provincial Population Office 		60	\N	2016-06-17	2016-06-18	\N	0	0	0	
5685	Training Course on inbred Rice Seed Production and Certification for Seed Inspectors Under the Project Enhanching the Capacity of production and Distribution of High Quality Rice Seeds		Bureau of Plant Industry, Philippine Rice Research Institute and Korea International Cooperation Agency		60	\N	2016-04-04	2016-04-08	\N	0	0	0	
5686	Gender Base Effectiveness Skills Training (G-Best) for Rice Coodrinatorsof Region III		Agricultural Training Institute 		60	\N	2015-09-08	2015-09-10	\N	0	0	0	
5687	Basic Training on Open Pollinated Varieties (OPV) Corn Seed Production and Certification for Seed Inspectors and Seed Growers 		Department of Agriculture - Regional Field Office III / Bureau of Plant Industry 		60	\N	2015-06-16	2015-06-20	\N	0	0	0	
5688	Refresher Training on Inbred Rice Seed Production and Certification for Seed Inspectors		Department of Agriculture Regional Field Office III / Bureau of Plant Industry		60	\N	2015-02-24	2015-02-27	\N	0	0	0	
5691	Seminar Workshop on Science and Technoogy Updates on Rice Production Technologists with Emphasis on water management - Alternate Wetting and Drying 		Philippine Rice Research Institute, International Rice Research Institute and Department of Agriculture Regional Field Office III		60	\N	2013-06-05	2013-06-06	\N	0	0	0	
5693	Training and Workshop on Quick Acquisition of Rice Data Information System 		Philippine Rice Research Institute, International Rice Research Institute and Department of Agriculture Regional Field Office III		60	\N	2013-02-26	2013-02-27	\N	0	0	0	
5719	Psychology of Attitude and it's Assessment		Cognescere Psychological Services	Completed	1938	\N	2018-11-10	2018-11-11	\N	0	0	0	
5720	Magna Carta for Women/Team Effectiveness		Provincial Government of Bataan	Completed	1938	\N	2019-03-22	2019-03-22	\N	0	0	0	
5721	@InvestBalanga: Franchising		City Government of Bataan		1938	\N	2019-05-24	2019-05-24	\N	0	0	0	
8540	Electrical Installation and Maintenanace NC-II	Technical	Mosaics Training and tradetest Center inc.		1109	\N	2018-10-02	2018-11-26	196	0	0	0	Technical
8545	Refresher Course for PIDSR, VPDS, & ESR With Specimen Collection 		DOH Region III		1111	\N	2018-10-03	2018-10-05	24	0	0	0	
8546	HIV Surveillance Orientation Among HIV Testing & Treatment Facilities		DOH Region III		1111	\N	2018-08-23	2018-08-24	24	0	0	0	
8547	Rapid Proficiency Training On HIV and Other Blood-BORN STI's		DOH Region III		1111	\N	2018-07-23	2018-07-27	40	0	0	0	
8548	Midyear Continuing  Professional Development Seminar 2018		PAMET Bataan Chapter		1111	\N	2018-06-23	2018-06-23	8	0	0	0	
8549	Basic Malaria Microscopy Training Course of Medical Technologist		DOH Region III		1111	\N	2018-06-18	2018-06-29	80	0	0	0	
8550	Training on HIV Services (Counseling and Testing)		DOH Region III		1111	\N	2018-04-03	2018-04-06	24	0	0	0	
8551	Orientation on Malaria Diagnosis (RDT & Micoscopy) 		DOH Region III		1111	\N	2018-03-22	2018-03-23	16	0	0	0	
8552	Quality Improvement Training Workshop on Hematology		PAMET Bataan Chapter		1111	\N	2018-03-09	2018-03-09	9	0	0	0	
8553	Advocacy Forum on the Strategic Plan of the Regional Laboratory 		Doh Region III		1111	\N	2017-09-07	2017-09-07	8	0	0	0	
8554	11th North Luzon Reginal Conference: Enchancing Capabilities Unfolding Global Opportunities		PAMET Tarlac Chapter		1111	\N	2017-07-14	2017-07-15	16	0	0	0	
8556	Orientation on the ON-LINE Survey on the Laboratory Containment of Polioviruses in Region 3		DOH Region III		1111	\N	2017-05-23	2017-05-23	9	0	0	0	
8574	Occupational First aid and BLS CPR		Philippine Red Cross Bataan Chapter		1113	\N	2016-07-18	2016-07-20	24	0	0	0	
8575	International Humanitarian Law 		Philippine Red Cross		1113	\N	2016-06-22	2016-06-24		0	0	0	
8576	Zoll AED  Plus Application Training		City Disaster Risk Reduciton Management - Balanga		1113	\N	2016-02-02	2016-02-02		0	0	0	
6872	Seminar on Anti -Trafficking in Person and Anti - Violence Against Women and Their Children	Managerial	Provincial Engineering Office		320	\N	2018-05-11	2018-05-12	\N	0	0	0	Managerial
6875	PSME National Convention 2018		Philippine Society of Mechanical Engineers		321	\N	2018-10-17	2018-10-20	\N	0	0	0	
8577	Symposium on HIV/Aids and Mercov		BPSU- Main Campus		1113	\N	2015-08-20	2015-08-20	8	0	0	0	
8578	Career Personality Development Training		BPSU - Main Campus		1113	\N	2015-08-11	2018-08-11	9	0	0	0	
8579	First Aid Training 		City Disaster Risk Reduction Management - Balanga		1113	\N	2015-07-02	2015-07-03		0	0	0	
8580	Basic Life Support and First Aid Training 		Red Cross/ PDRRMO		1114	\N	2018-11-20	2018-11-23		0	0	0	
6952	Occupational Sasfety and Health Awareness		PEO		322	\N	2018-04-19	2018-04-20	\N	0	0	0	
6953	Radio Communication Registration and Licensing Seminar		PGSO		322	\N	2017-08-10	2018-08-10	\N	0	0	0	
6954	Behaviour Based Safety Seminar		LABSPEAK Safety Management inc.		322	\N	2018-12-04	2018-12-07	\N	0	0	0	
6955	Electrical Installation and Maintenance		TESDA		322	\N	2015-11-17	2015-11-18	\N	0	0	0	
6956	Seminar on Anti -Trafficking in Person and Anti-Violence Against Women and Their Children 		Provincial Government of Bataan		323	\N	2018-11-05	2018-11-05	\N	0	0	0	
8582	Farmers Field School-FFS Integrated Pest Mangement-IPM		Kalikasan Bagac Bataan		1114	\N	1997-12-17	1998-03-24		0	0	0	
8583	Emergency Fire Brigade Training		NPC Training Center Bagac Bataan		1114	\N	1992-03-12	1992-03-13		0	0	0	
8584	Installation of Ihomis to Central Supply	Technical	Bagac Community and Medicare Hospital		1115	\N	2018-04-30	2018-04-30	8	0	0	0	Technical
8585	Ihomis Training	Technical 	Orani District Hospital		1115	\N	2018-04-25	2018-04-25	8	0	0	0	Technical 
8587	Filling out of Certificate of Live Birth and Certifacte of Death	Technical	Local Civil Registry Office		1115	\N	2018-02-23	2018-02-23	4	0	0	0	Technical
8588	Bank Trainee	Technical	Rural Bank of Bagac, Inc.		1115	\N	1998-09-29	1999-01-29	360	0	0	0	Technical
9007	Service Deliver Network - TWG Meeting	Technical	Provincial Health Office Balanga City, Bataan		252	\N	2018-10-05	2018-10-05	4	0	0	0	Technical
9008	Service Delivery Netowrk- TWG Meeting	Technical	Provincial Health Office Balanga City, Bataan		252	\N	2018-06-13	2018-06-13	4	0	0	0	Technical
5769	Crash Course for Speech Improvement and Business Correspondence and Writing for Bataan Provincial Capitol Employee		Office of the Provincial Governor, Capitol, Balanga City, Bataan		503	\N	2016-11-21	2016-12-09	\N	0	0	0	
5771	Writeshop for the Completion of the Provincial Governance Reform Roadmap (PGRR)		Department of Interior and Local Governance, Region III-Province of Bataan		503	\N	2018-09-25	2018-09-26	\N	0	0	0	
5773	Workshop on Integrated Provincial Health System and Development Program (IPHSDP) Project Charter for the Province of Bataan		Provincial Health Office, Balanga City, Bataan		503	\N	2019-07-12	2019-07-12	\N	0	0	0	
5774	Guarding Your Identity: Data Privacy Act Seminar		Provincial Human Resource Mgt. Office, Balanga City, Bataan		503	\N	2019-03-21	2019-03-21	\N	0	0	0	
8544	Significance of Imaging Science to Total Healthcare and Hospital Management 		Phil Assoc of Radiologic Technologists		129	\N	2011-12-02	2011-12-04	\N	0	0	0	
9009	Provincial Local Health Board Meeting	Technical	Provincial Health Office Balanga City, Bataan		252	\N	2017-11-16	2017-11-16	4	0	0	0	Technical
9010	LGU Scorecard Validation	Technical	Provincial Health Office Balanga City, Bataan		252	\N	2017-11-16	2017-11-16	4	0	0	0	Technical
9532	Orientation-Seminar in Barangay Budgeting		DBM / ALBO - Bataan		118	\N	2019-01-28	2019-01-30	24	0	0	0	
5784	Strengthening of the Mun. Barangay Councils for the Protection		Municipal Health office		480	\N	2016-08-22	2016-08-22	\N	0	0	0	
5785	Basic New Born Resuscitation Course for Midwives		Philippine Society of Newborn Medicine		480	\N	2018-03-27	2018-03-27	\N	0	0	0	
5786	The Revised NTP Manual of Procedure, 5th Edition		Municipal Health Office		480	\N	2014-09-24	2014-09-26	\N	0	0	0	
5787	Re-orientation Seminar on the Fnctuality of the Barangay Council for the Protection of Children		Municipal Council for the Protection of Children		480	\N	2016-12-21	2016-12-21	\N	0	0	0	
5788	Basic Life Support Training Health Care Providers		Department of Health (Emergency Management Staff)		480	\N	2018-01-26	2018-01-27	\N	0	0	0	
5789	The Role of Midwive Disaster Responsiveness, Contraception in Teenage Pregnancy		Imap Bataan Chapter		480	\N	2017-08-05	2017-08-05	\N	0	0	0	
5790	IMAP Defining its Core Values, Integrity, Motivation, Accountability and Professionalism		IMAP Bataan Chapter		480	\N	2017-07-07	2017-07-07	\N	0	0	0	
5791	19th Phil. National Immunization Conference, the Landscapes of Immunization in the Philippines		Phil. Pediatric Society		480	\N	2018-11-15	2018-11-16	\N	0	0	0	
5792	Refresher Course on Updated Field Health Services Information		Municipal Health Office		480	\N	2018-11-27	2018-11-27	\N	0	0	0	
5793	Training on Integrated DOTS with standard short treatment regimen		Municipal Health Office		480	\N	2018-12-13	2018-12-14	\N	0	0	0	
8595	Workshop and Consultative Meeting on Hepa B Treatment		WOH and DOH R3		131	\N	2019-02-26	2019-03-01	\N	0	0	0	
8597	Training on Food Safety		DOH R3		131	\N	2018-10-16	2018-10-18	\N	0	0	0	
8598	Primary Care Training of Adult Client with HIV INfection		DOH R3		131	\N	2018-08-23	2018-08-24	\N	0	0	0	
8600	Training on HIV Screening		DOH R3		131	\N	2018-06-27	2018-06-29	\N	0	0	0	
8601	Training on HIV Testing Service		DOH R3		131	\N	2018-04-03	2018-04-06	\N	0	0	0	
8602	Primary Care Training on Sexually Transmissible Infections		DOH R3		131	\N	2018-03-13	2018-03-16	\N	0	0	0	
9011	28th Regional Convention of the Phil Nurses Association	Technical	Phil Nurses Association, Inc PNA-REgion III		252	\N	2016-12-03	2016-12-03	8	0	0	0	Technical
9012	Online Event - Based Surveillance and Response Version 2	Technical	DOH Region III		252	\N	2016-08-09	2016-08-10	16	0	0	0	Technical
9214	Gad Basic Concepts and Issues	Technical	Provincial Government of Bataan		247	\N	2016-06-17	2016-06-17	8	0	0	0	Technical
9215	Perinital Association of The Philippines Chapter	Technical	Perinital Association of the Philippines Inc.		204	\N	2018-07-20	2018-07-20	8	0	0	0	Technical
9216	Advanced Midwifery Service by Practicing Quality Maternal Care	Technical	Integrated Midwives Association of the Philippines Inc.		204	\N	2018-05-18	2018-05-18	8	0	0	0	Technical
9217	Challenges in Midwifery Profession New and Beyond	Technical	Integrated Midwives Association of the Philippines Inc.		204	\N	2017-12-01	2017-12-01	8	0	0	0	Technical
9218	Moving Forward Thru Changing times	Technical	Bataan Medical Society		204	\N	2017-09-29	2017-09-29	8	0	0	0	Technical
9219	Essential Impartum and Newborn Care Provider Training For Midwife	Technical	Integrated Midwives Association of the Philippines Inc.		204	\N	2017-08-25	2017-08-25	16	0	0	0	Technical
9220	The Role of Midwife in DIsaster Reponsiveness Contraception in Teenage Pregnancy	Technical	Integrated Midwives Association of the Philippines Inc.		204	\N	2017-08-05	2017-08-05	8	0	0	0	Technical
9221	IMAP Care Values, Integrity,Motivation,Accountability Professionalism	Technical	Integrated Midwives Association of the Philippines Inc.		204	\N	2016-11-30	2016-11-30	8	0	0	0	Technical
9222	Gestational Diabetes,Postnatal Care and Perineal Tear	Technical	Integrated Midwives Association of the Philippines Inc.		204	\N	2016-11-17	2016-11-17	8	0	0	0	Technical
9225	Maternal Mobidity and Morality During the Third and Fourt State of Labor	Technical	Phil Leauge of Governemnt and Private Midwives . Inc		204	\N	2015-11-27	2015-11-27	8	0	0	0	Technical
9233	 Examplifying Knowledge, Skill and Attitute in Radiologic Technology	Convention	Phil Society of Governemnt Radiologic Technologist		206	\N	2017-11-08	2017-11-11	28	0	0	0	Convention
9234	Radiology Mobility:Learning Through Allied Health Professionals	Convention	Phil Association of Radiologic Technologist Inc		206	\N	2016-12-02	2016-12-04	24	0	0	0	Convention
9235	Work Attitute and Values Enchancement Training	Convention	Provincial Human Resources Management Office		206	\N	2016-06-20	2016-06-21	16	0	0	0	Convention
9236	Form X-ray Technician to Radiologic Technologist Profession	Convention	Phil Association of Radiologic Technologist Inc.		206	\N	2015-12-03	2015-12-05	24	0	0	0	Convention
9253	19th Philippine National Immunization Conference "The Changing Landscapes of immunization in the Philippines	Technical	Philippine Foundation for Vaccination INC.		207	\N	2018-11-15	2018-11-16	16	0	0	0	Technical
9254	National Tubercolosis Program Data	Technical 	Department of Health Region III		207	\N	2018-07-19	2018-07-20	16	0	0	0	Technical 
5902	Supervisory Development Course (SDC) Track III		CSCFO, PHRMO		261	\N	2018-11-14	2018-11-16	\N	0	0	0	
5903	Financial Literacy for Cooperatives		PCEDO		261	\N	2018-10-23	2018-10-24	\N	0	0	0	
5904	1st Central Luzon Regional Cooperative Congress		Provincial Government of Bulacan		261	\N	2018-10-16	2018-10-17	\N	0	0	0	
5905	Financial Literacy Training for the Farmers of Bataan and Nueva Ecija		Agricultural Training Institute Regional Training Center III		261	\N	2018-10-10	2018-10-11	\N	0	0	0	
5906	Climate and Disaster Risk Assessment Training		National resilience Council		261	\N	2018-10-09	2018-10-09	\N	0	0	0	
5907	14th National Cooperative Summit "Overcoming Challenges, Succeeding Together Under One Apecs"		Cooperative Development Authority		261	\N	2018-10-03	2018-10-05	\N	0	0	0	
5908	Internal Control for Cooperatives		PCEDO		261	\N	2018-09-28	2018-09-28	\N	0	0	0	
5909	Skills Enhancement Training for CDO's in Central luzon		LCDOP, CDA		261	\N	2018-05-17	2018-05-18	\N	0	0	0	
5910	Training on Mainstreaming Freen growth on Development Planning (Module 1)		Global Green Growth Institute		261	\N	2018-01-29	2018-01-31	\N	0	0	0	
5911	Business permitting and Licensing System Workshop on Revised Standards		DTI Bataan		261	\N	2017-08-31	2017-08-31	\N	0	0	0	
5912	Monitoring and Evaluation foe LoGIC Network Members Workshop		Konrad Adanauer Stiftung		261	\N	2017-07-19	2017-07-20	\N	0	0	0	
5915	Project Management		DTI Bataan		261	\N	2015-12-03	2015-12-03	\N	0	0	0	
5916	Seminar-Workshop on RRAC in the Civil Service		CSCFO		261	\N	2015-10-28	2015-10-29	\N	0	0	0	
5918	Winning Strategy for a World-Class Customer		DTI Bataan		261	\N	2015-10-13	2015-10-13	\N	0	0	0	
5919	CBT on Investment Promotion Focus on Project Plan		Board of Investments		261	\N	2015-10-08	2015-10-08	\N	0	0	0	
5920	Investments Assistance Service/Couseling/Briefing		Board of Investments		261	\N	2015-10-07	2015-10-07	\N	0	0	0	
5921	Entrepreneurship and Management Training Program for MSEs		CITI microenterprise Development Center		261	\N	2015-10-02	2015-10-02	\N	0	0	0	
5922	7th national Tripartite Conference Program for Cooperatives		LCDOP, CDA		261	\N	2015-09-09	2015-09-11	\N	0	0	0	
5923	Workshop on Fiscal Management through Transparency and Reforms		APEC National Organizing Council		261	\N	2015-06-09	2015-06-12	\N	0	0	0	
5943	Supervisory Development Course (SDC) Tracks 2 & 3		Civil Service Commission Field Office		260	\N	2018-11-12	2018-11-16	\N	0	0	0	
5944	SMX Convention Center		PMAP, Inc.		260	\N	2018-10-25	2018-10-27	\N	0	0	0	
5945	Capability enhancement Training on the Overseas Employment Program		Phil. Overseas Employment Administration		260	\N	2018-08-17	2018-08-18	\N	0	0	0	
5946	Year-End Performance Assessment and Awareness Ceremonies of Public Employment Service Office		PESO Managers Federation of Central Luzon		260	\N	2018-03-15	2018-03-16	\N	0	0	0	
5947	Incident Command System Training		Regional DRRM Council III		260	\N	2017-03-06	2017-03-10	\N	0	0	0	
5951	Luzon K to 12 Interagency Roadshow		Commission on Higher Education Region 3		260	\N	2016-09-09	2016-09-09	\N	0	0	0	
5952	Incident Command System Tarining		Regional DRRM Council III		260	\N	2016-08-15	2016-08-19	\N	0	0	0	
5953	Code of Conduct and Ethical Standard		Civil Service Commission		260	\N	2015-10-20	2015-10-20	\N	0	0	0	
5954	Living, Loving and Servicng as a Leader		Civil Service Commission		260	\N	2015-10-20	2015-10-20	\N	0	0	0	
5955	Supervisory Development Course (SDC) Track 1		Civil Service Commission		260	\N	2015-10-05	2015-10-07	\N	0	0	0	
5956	Labor Market Analysis		DOLE Bataan		260	\N	2015-06-18	2015-06-18	\N	0	0	0	
6279	Disaster Management Training		Rescue 922		1610	\N	2017-01-23	2017-01-23	\N	0	0	0	
5957	Anti-Illegal Recruitment/Anti-Traficking in Person Campaign Seminar		POEA - RO3		260	\N	2014-11-25	2014-11-25	\N	0	0	0	
5958	Advance Management Course		DOLE Bataan		260	\N	2011-10-30	2011-10-31	\N	0	0	0	
5960	Resource Person Development on the Mechanization on Rice Crop Establishment 		Philippine Center for Postharvest  Development and Mechanization		61	\N	2019-02-19	2019-02-21	\N	0	0	0	
5961	Seminar on Anti - Violence Againts Women and Children Act and Anti Sexual Harassment Act Cum Team Effectiveness of Agriculture Employees		Provincial Government of Bataan, Office of the Provincial Agriculturist and Provicnial Population Office		61	\N	2018-05-18	2018-05-19	\N	0	0	0	
5962	Training of Trainers on Hybrid Rice Production for AEW's in Region III		Agricultural Training Institute - Regional Training Center		61	\N	2018-04-30	2018-05-04	\N	0	0	0	
5963	Training Course on Inbreed and Hybreed(CMS)) and (TGMS) Rice Seed Production and Certification for Seed Inspectors		Bureau of pLant Industry		61	\N	2018-03-05	2018-03-09	\N	0	0	0	
5964	Seminar on Magna Carta of Women Cum Team Effectiveness of Agriculture Employees		Provincial Government of Bataan, Office of the Provincial Agriculturist and Provincial Office		61	\N	2017-09-29	2017-09-30	\N	0	0	0	
5965	Specialized Course on Rice Seed Production and Extesnion Methods		International RIce Research Institute; Philippine Rice Research Institute and Japan International Cooperation Agency		61	\N	2017-07-31	2017-09-22	\N	0	0	0	
5966	Geotagging Training With Road Design Management		Department of Agriculture Regional Field Office III		61	\N	2017-07-05	2017-07-08	\N	0	0	0	
5967	Training Of Trainers on Rice Crop Manager		agricultural Training Institute - Regional Training Center III		61	\N	2017-06-19	2017-06-28	\N	0	0	0	
5968	Ortientation on Gender and Development Basic Concepts and Issues Cum Team Building for Agriculture Office Staff		Provincial Government of Bataan Office of the Provincial Agriculturist and Provincial Population Office		61	\N	2016-06-17	2016-06-18	\N	0	0	0	
5969	Rodent Management Specialist Training Course and Socio-Economic Analysis of Different Control Methods in Region III		Regional Crop Protection Center		61	\N	2016-03-28	2016-04-01	\N	0	0	0	
5970	Project Management Seminar		Department of Trade and Idustry		61	\N	2015-01-03	2015-12-03	\N	0	0	0	
5971	Trainin on Use of GPS to Determine Area of Rice Fields and Increase the Benifits of RCM to Farmers		Department of Agriculture Regional Field Office III		61	\N	2015-11-04	2015-11-05	\N	0	0	0	
5972	Applied Geo Tagging Toll - PRDP		Department of Agriculture Regional Field Office III		61	\N	2015-09-03	2015-09-04	\N	0	0	0	
5973	Specialized Training Course on Enteprenuerial Development Cum Self- Assesment 		Philippine Center for Post Harvesnt Development Mechanization		61	\N	2015-05-11	2015-05-15	\N	0	0	0	
5979	Seminar on Anti- Trafficing in Person and Anti-Violence Against Women and their Children	managerial	P.E.O.		271	\N	2018-05-11	2018-05-12	\N	0	0	0	managerial
5980	Anti-Trafficing in Person and Anti-Violence against Women and their Children		PGB-PEO		272	\N	2018-05-11	2018-05-12	\N	0	0	0	
5981	Autocadd 2009 with Color Rendering Level 1&2		Microcadd Technologies CO.		272	\N	2008-06-28	2008-08-23	\N	0	0	0	
5983	Seminar-Workshop on Revise Performance Evaluation System CSC MC(No.25,S.1999)		Provincial Human Resource Management Office & Civil Service Commission , Provincial Field Office		272	\N	2001-02-26	2001-02-26	\N	0	0	0	
8618	Gatekeeping in Primary Health Care as Effective Tool for Service Delivery Network Training Workshop		Bataan General Hospital and Medical Center		199	\N	2019-02-13	2019-02-13	\N	0	0	0	
8619	Oplan Iwas Paputok Fireworks Display ang Patok/Dengue Summit		Provincial Health Office		199	\N	2018-12-11	2018-12-11	\N	0	0	0	
5987	Pipe Fitting		Tesda Trainign Center		273	\N	2009-09-07	2009-10-05	\N	0	0	0	
5988	Trauma Care: from Pre-Hospital to the Emergency Room				1602	\N	2018-06-30	2018-07-01	\N	0	0	0	
5991	Instrumentation and Control Servicing - NC II		Electro Technical Institute		275	\N	2013-04-29	2013-06-11	\N	0	0	0	
5993	Seminar of Anti-trafficing in PErson and Anti Violence Against Women and their Children		PEO		1094	\N	2018-05-12	2018-05-12	\N	0	0	0	
5994	Three-Day/Intermediate Incident Comman System (ICS) Training Course	Technical	PE/PDRRMC Bataan		276	\N	2013-02-11	2013-02-13	\N	0	0	0	Technical
5995	Anti- Trafificing in Person and Anti - Violence Against  Women's and their Children	Managerial	Procvicnial Enginneers Office		277	\N	2018-05-11	2018-05-12	\N	0	0	0	Managerial
5997	Seminar on Anti-Trafficing in Person and Anti-Violence Against Women and Their Children		Provincial Engineering		278	\N	2018-05-11	2018-05-12	\N	0	0	0	
5998	Orientation/Seminar of Occupational Safety and Health Awareness		Provincial Enginnering		278	\N	2018-03-26	2018-03-27	\N	0	0	0	
5999	Orientation/Seminar On the Effectiveness and Magna Carta For Women		Provincial Engineering		278	\N	2017-10-28	2017-10-28	\N	0	0	0	
6000	Orientation Seminar on Procedures For the Disbursement of Transactions of the Provincial Goverment of Bataan		Provincial Government of Bataan		278	\N	2014-05-09	2014-05-09	\N	0	0	0	
8622	Bridging Leadership for Public Health Module 2		Department of Health, Region III		199	\N	2018-05-22	2018-05-23	\N	0	0	0	
8623	Non-Communicable Disease Control and Prevention Program/ Prov'l Tobacco Control Program		Provincial Health Office		199	\N	2018-05-08	2018-05-08	\N	0	0	0	
8624	Seminar/Workshop on Continuos Quality Improvement (CQI) in Healthcare Organization		Philippine Society of Quality Healthcare		199	\N	2018-03-21	2018-03-23	\N	0	0	0	
8625	Seminar/Workshop on Insulin Therapy, Recommendation and Technique and self-blood Glucose Monitoring		Association of Diabetes Nurse Education of the Philippines		199	\N	2018-01-25	2018-01-26	\N	0	0	0	
6008	Seminar on Anti Trafficing in Person and Anti Violence Againts Womens and their Childre	Managerial	Provincial Engineering Office		281	\N	2018-05-11	2018-05-12	\N	0	0	0	Managerial
12543	Basic First Aid Training Course		PDRRMC/MDRRMC		2194	\N	2012-07-24	2012-07-24	16	0	0	0	
6274	Standard First Aid Training		Rescue 922		1610	\N	2017-01-16	2017-01-18	\N	0	0	0	
6275	Safety Officer		Emerlink Management and Consultancy Inc.		1610	\N	2017-01-05	2017-01-09	\N	0	0	0	
6276	Rescue Training Crashed Vehicle/Extragation Rescue Training		Rescue 922		1610	\N	2017-06-03	2017-06-08	\N	0	0	0	
6277	Basic Boat Operation		Rescue 922		1610	\N	2017-01-25	2017-01-25	\N	0	0	0	
6278	Barangay Emergency Operation		Rescue 922		1610	\N	2017-01-24	2017-01-24	\N	0	0	0	
6280	Basic Fire Fighting Training		Rescue 922		1610	\N	2017-01-22	2017-01-22	\N	0	0	0	
6281	Ambulance Operation and Management Training		Rescue 922		1610	\N	2017-01-20	2017-01-21	\N	0	0	0	
6282	Basic Life Support Training		Rescue 922		1610	\N	2017-01-19	2017-01-19	\N	0	0	0	
12544	Ms Application, Adobe Photoshop and Internet		Integrated Microcomputer Educational Development System		2194	\N	2011-05-21	2011-06-25	30	0	0	0	
6017	Occupational Safety and Health Awareness of the Provincial Engineers Office		Provincial Engineers Office Balanga CIty		282	\N	2018-08-30	2018-08-31	\N	0	0	0	
6018	Seminar on Anti-Trafficing in the person and Anti Violence Against Women and Their Children		Provincial Government of Bataan		282	\N	2018-05-11	2018-05-12	\N	0	0	0	
6019	Seminar of Effective and Magna Carta for Women		Provincial Government of Bataan		282	\N	2017-10-27	2017-10-28	\N	0	0	0	
6032	Fishery Law Enforcement Training and Capability Building Workshop		BFAR 3		48	\N	2018-09-18	2018-09-19	\N	0	0	0	
6033	5th Tilapia Congress		BFAR 3		48	\N	2017-10-12	2017-10-13	\N	0	0	0	
6034	Orientation on Good Agricultural Practices		DA RFO 3		48	\N	2017-07-11	2017-07-12	\N	0	0	0	
6035	National Fisheries Industry Summit/1st Bangus Congress		BFAR Central Office		48	\N	2016-02-03	2017-02-05	\N	0	0	0	
6036	Regional Training Course on Brackishwater Aquaculture with Emphasis on Organic Culture of Milkfish and Mangrove Crab		BFAR 3		48	\N	2016-12-01	2016-12-02	\N	0	0	0	
6037	Training on Good Agricultural Practices(GAP		DA RFO 3		48	\N	2016-11-23	2016-11-25	\N	0	0	0	
6038	Training on Productivity Enchancement Measures for Carabao Mango				48	\N	0001-01-01	0001-01-01	\N	0	0	0	
6045	Training of trainers on Rice Crop Manager		Agricultural Training Institue, Regional Training Center III		1504	\N	2016-11-14	2016-11-18	\N	0	0	0	
6046	Training on Basic Experimental Designs and Data Analysis using Statistitcal Tool for Agricultural Research(STAR) and Plant Breeding Tools (PBTools)		Department of Agriculture,Regional Field Office III		1504	\N	2016-06-01	2016-06-03	\N	0	0	0	
6047	Training of Trainors(TOT) on Enchanced/ Climate Smart Farmers Field School		Department of Agriculture, Regional Field Office III		1504	\N	2016-05-23	2016-05-27	\N	0	0	0	
6048	Retooling/Training on Participatory Varietal Selection-Research Managed Under Accelerating the Development and Adoption of Next Generation(Next Gen) Rice		Department of Agriculture, Regional Field Office III		1504	\N	2016-04-11	2016-04-15	\N	0	0	0	
6049	Training/ Retooling of Next-Gen Project Researchers		department of Agriculture,Philrice of Science City of Muñoz, Nueva Ecija		1504	\N	2015-03-23	2015-03-27	\N	0	0	0	
6050	Training-Workshop on Agriculture Research, Development and Extension(RDE)Proposal Preparation Cum Technical training		Deparment o Agriculture ,Regional Field Office III		1504	\N	2014-09-29	2014-10-02	\N	0	0	0	
6055	Integrating Advanced and Digital Technology in Building Infrastracture 44th National Convention	Technical	Philippine Insitute Of Civil Engineers(PICE)		283	\N	2018-10-29	2018-10-31	\N	0	0	0	Technical
6057	Construction Occupational Safety and Health Course	Technical	LABSPEAK Safety Management Inc.		283	\N	2018-07-10	2018-07-13	\N	0	0	0	Technical
6058	Anti - Trafficing in Person and Anti - Violence Against Women and their Children	Technical	Provincial Government of Bataan		283	\N	2018-05-11	2018-05-12	\N	0	0	0	Technical
6059	Occupational Safety and Heath Awareness	Technical	Provincial Government of Bataan		283	\N	2018-03-26	2018-03-28	\N	0	0	0	Technical
6060	Build Build Build For Smart , Strong & Sustainable Societies 43rd National Convention	Technical	Philippine Institute of Civil Engineers(PICE)		283	\N	2017-11-28	2017-11-30	\N	0	0	0	Technical
6061	PEO Team Effectiveness and Magna Carta For Women Seminar	Technical	Provincial Government of Bataan		283	\N	2017-10-28	2017-10-28	\N	0	0	0	Technical
6062	Road Survey Using Autocad Civil 3D	Technical	Department of the Interior and Local Government		283	\N	2016-09-25	2016-09-29	\N	0	0	0	Technical
6063	Local Road Maintenance Management	Technical	Department of Interior and Local Governement 		283	\N	2017-05-15	2017-05-19	\N	0	0	0	Technical
6064	Loss Control Management	Technical	LabsSpeak Safety Management INC.		283	\N	2017-05-02	2017-05-05	\N	0	0	0	Technical
6065	Planning and Deisgn of Flood Control Projects with Project Impact Analysis	Technical	Department of Public Woks and Highway(DPWH)		283	\N	2016-09-26	2016-09-30	\N	0	0	0	Technical
6070	Occupational Safety and Health Awareness 	Technical	Provincial Engineers Office		287	\N	2018-04-26	2018-04-27	\N	0	0	0	Technical
6071	Seminar on Anti-Trafficking in Person and Anti - Violence against Women and Their Chidren	Managerial	Provincial Engineers Office		287	\N	2018-05-11	2018-05-12	\N	0	0	0	Managerial
6073	Seminar on Civil Service Law and Rules		CSCRO Region III at San Fernando, Pampanga		285	\N	2016-06-20	2016-06-21	\N	0	0	0	
6074	Information Dissemination of RA-9470		National Archives  of  the Phils. and Prov'l Government of Bataan		285	\N	2009-02-13	2009-02-13	\N	0	0	0	
6075	Seminar Workshop on PMS-OPES Track II		CSCRO Region III at San Fernando, Pampanga		285	\N	2009-01-20	2009-01-22	\N	0	0	0	
6076	Leave Administration Course for Effectiveness (LACE)		CSCRO Region III at San Fernando, Pampanga		285	\N	2007-11-06	2007-11-07	\N	0	0	0	
6077	Performance  Evaluation System CSC MC(Nov 25,5)		Provincial Human Resource Management Office		285	\N	2001-02-26	2001-02-26	\N	0	0	0	
6078	Symposium of the New GSIS Act. of 1997(R.A.. 82.91)		Government Sevice Insurance System, Dinalupihan, Bataan		285	\N	1997-09-09	1997-09-09	\N	0	0	0	
6095	PICE 2018 National Midyear Convention and 2018 Midyear National Technical Conference	Technical	PICE National		292	\N	2018-06-13	2018-06-15	\N	0	0	0	Technical
6097	Seminar on Anti-Trafficking in Person and Anti -Violence against Womend and their Children	Managerial	Provincial Government of Bataan		292	\N	2018-05-11	2018-05-12	\N	0	0	0	Managerial
6098	Refresher Workshop  of Construction Operational Safety and Health Training	Supervisory	Provincial Government of Bataan		292	\N	2018-02-22	2018-02-22	\N	0	0	0	Supervisory
6099	PICE 43rd National Convention held at Mall of Asia Arena, Mall of Asia Complex, Pasay City	Technicanl	Pice National		292	\N	2017-11-28	2017-11-30	\N	0	0	0	Technicanl
6101	Training Workshop on Local Road Mapping and Completion on the LRDNP	Technical	DILG-Region 3		292	\N	2017-10-09	2017-10-13	\N	0	0	0	Technical
6102	Consultation-Workshop on the Implementation of Agency Procurement Compliance and Performance Indicator(APCPI) System	Supervisory	DILG-OPDS		292	\N	2016-10-11	2016-10-13	\N	0	0	0	Supervisory
6103	Seminar Workshop on Implementation of Agency Procurement Compliance and Performance Indicator(APCPI) System	Supervisory	DILG-OPDS		292	\N	2016-10-11	2016-10-13	\N	0	0	0	Supervisory
6104	Seminar-Workshop on the Construction Safety and Health Training Course(COSH)	Technical	PGB-LABSPEAK Safety Management, Inc.		292	\N	2016-08-02	2016-08-05	\N	0	0	0	Technical
6106	Seminar-Workshop on Contract Management Construction Supervision and Refresher Course on Procurement(RA 9184)	Supervisory	DILG-OPDS		292	\N	2016-05-23	2016-05-27	\N	0	0	0	Supervisory
6107	Workshop on Preparation of the Provincial Road Network Development Plan (PRNDP) for Local Government Unit	Supervisory	DILG-Region 3		292	\N	2016-08-24	2016-08-26	\N	0	0	0	Supervisory
6108	Training/Workshop on the Work and Financial Plan and Procurement Plan	Supervisory	DA-PRDP-RPCO III		292	\N	2015-07-27	2015-07-31	\N	0	0	0	Supervisory
6109	2015 PICE National Mid-Year Convention	Technical	PICE- National		292	\N	2015-05-28	2015-05-30	\N	0	0	0	Technical
6110	Training on Material Testing and Quality Control at Widus Hotel, Clark Field, Angeles City, Pampanga	Technical	PRDP-PSO-DA		292	\N	2015-05-11	2015-05-15	\N	0	0	0	Technical
6111	Training Course on Rapid Damage Assessment and Needs Analysis (RDANA) at Subic Holidays Villas Subic Bay Freeport Zone	Supervisory	OCD III - RDRRMC III		292	\N	2014-11-11	2014-11-13	\N	0	0	0	Supervisory
6112	Trainer - Five Day DRRM Capacity Echancement Project "Community-Based Disaster Risk Reduction and Management Training of Trainers' held at Subic Holiday Villas, SBMA, Olongapo City	Supervisory	OCD III - JICA III		292	\N	2014-08-11	2014-08-15	\N	0	0	0	Supervisory
6113	Seminar - Workshop on Disaster Risk Reduction and Management(DRRM) Summit for Local Chief Executive (LCE's) of Bataan held at Crown Royale Hotel, San Jose, Balanga City	Supervisory	OCD III - RDRRMC III		292	\N	2014-05-22	2014-05-23	\N	0	0	0	Supervisory
6114	Contigency Planning Formulation Workshop (CPFW) held at Crown Royale Hotel, San Jose, Balanga City	Supervisory	PDRRMC - OCD III-RDRRMC - III		292	\N	2014-02-19	2014-02-21	\N	0	0	0	Supervisory
6115	Local Risk Reduction and Management Plan (LDRRMP) Writeshop held at Crown Royale Hotel, San Jose, Balanga City, Bataan	Supervisory	PDRRMC-OCD III- RDRRMC III		292	\N	2014-01-16	2014-01-17	\N	0	0	0	Supervisory
12545	Business Application Software		AMA Computer Learning Center of Balanga		2194	\N	2008-04-01	2008-04-04	16	0	0	0	
12546	Governance, Business Ethics, Risk Management and Internal Contro		Philippine Institute of Certified Public Accountant		2201	\N	2019-03-09	2019-03-09	8	0	0	0	
12548	Propoerty Assessment and Tax Administration System (PATAS) Process flow Training Program		Provincial Government of Bataan	Technical ID	2204	\N	2018-11-12	2018-11-12	8	0	0	0	
6131	Seminar on Anti -Trafficking in Person and Anti - Violence against Women and their		Provincial Government of Bataan		295	\N	2018-05-11	2018-05-12	\N	0	0	0	
6132	Children of the Provincial Engineer's Office of Republic Act. No. 9184		Balanga City, Bataan		295	\N	0001-01-01	0001-01-01	\N	0	0	0	
6133	Seminar/Workshop on Effective Procedures in Managing Public Records at Days Hotel Tagaytay , National Highway, Tagaytay City, Province of Cavite		Government Records Officer's Association of the Philippines, Inc(GROAP)		295	\N	2018-10-15	2018-10-17	\N	0	0	0	
6134	Training of the Updates on the Revised Implementing  Rule & Regulations		Provincila Government of Bataan Balanga City, Bataan		295	\N	2017-04-20	2017-04-21	\N	0	0	0	
6135	Record Filling Management		Bussiness Coach, Inc. Quality Business Training Unit 201 Richbel Tower 17 Annapolis St. Grenhills, San Juan City Metro Manila		295	\N	0001-01-01	0001-01-01	\N	0	0	0	
6136	Phil. Government Electronic Procurement System (PhilGEPS) V1.1 Training for Buyers 		EBBSI Training Center , Shaw Blvd., Manadaluyong City 		295	\N	2014-01-27	2014-01-28	\N	0	0	0	
8626	HEPO and HIV Program Quarterly Meeting		Provincial Health Office		199	\N	2017-12-18	2017-12-18	\N	0	0	0	
8627	Central Luzon Chapter Caravan: Perinatal Association of the Philippines		Prenatal Association of the Philippines		199	\N	2017-12-12	2017-12-12	\N	0	0	0	
8628	Moving Forward thru Changing times		Bataan Medical Society		199	\N	2017-09-29	2017-09-29	\N	0	0	0	
8629	World no Tobacco Day and Worl no Smoking Month Celebration		Provincial Health Office		199	\N	2017-06-06	2017-06-06	\N	0	0	0	
8630	Tobacco Control Program Quarterly Meeting		Provincial Health Office		199	\N	2017-05-12	2017-05-12	\N	0	0	0	
8631	Bridging Leadership for Public Health Module 1		Department of Health, Region III		199	\N	2017-05-09	2017-05-10	\N	0	0	0	
8632	HEPO's Quarterly Meeting		Provincial Health Office		199	\N	2017-04-20	2017-04-20	\N	0	0	0	
6146	Radio Communication Registration and Licensing Restricted Land Mobile		Provincial Government of Bataan and National Telecommunications Commission		1606	\N	2017-08-10	2017-08-10	\N	0	0	0	
6147	International Academies of Emergency Dispatch -Emergency Telecommunicator (ETC) Course		Department of the Interior and Local Government/911 Pilipinas		1606	\N	2017-03-29	2017-04-04	\N	0	0	0	
6148	Collapse Structure Search and Rescue and Vehicular Extrication Rescue Training				1606	\N	0001-01-01	0001-01-01	\N	0	0	0	
6149	USP Smartcad (Administration Reports) Training Course		Smartcad		1606	\N	2015-05-28	2015-05-28	\N	0	0	0	
6164	Internal Auditors: Enablers of Accountable and Progressive Transformation in the Government		Association of Government Internal Auditors (AGIA)		372	\N	2018-10-09	2018-10-12	\N	0	0	0	
6173	Foundational Elements for Internal Auditors		Center for Internal Audit Philippines		372	\N	2018-01-19	2018-01-20	\N	0	0	0	
6174	Internal Control and Fraud Detection		Philippine Institute of Certified Public Accountant (PICPA)		372	\N	2015-05-29	2015-05-29	\N	0	0	0	
6175	The Philippine Standards for Auditing and the Audit Process		Philippine Institute of Certified Public Accountant (PICPA)		372	\N	2015-05-27	2015-05-27	\N	0	0	0	
6176	Accountancy Profession:Cases and Application		Philippine Institute of Certified Public Accountant (PICPA)		372	\N	2015-05-05	2015-05-05	\N	0	0	0	
6177	Audit of Cooperatives Financial Statements		Philippine Institute of Certified Public Accountant (PICPA)		372	\N	2015-04-30	2015-04-30	\N	0	0	0	
6508	Basic Safety Training		Southern Institute of Maritime Studies, Inc.		306	\N	2010-08-10	2019-08-18	\N	0	0	0	
12556	NCII- Bread and Pastry Production		TESDA- BATAAN		2207	\N	2015-10-13	2020-10-13		0	0	0	
6178	Seminar on Anti - Trafficking in Person and Anti - Violence Against Women and Their Children	Managerial	Provincial Engineering Office		296	\N	2018-05-11	2018-05-12	\N	0	0	0	Managerial
6181	Seminar On Gender and Development		Provincial Population Office-Capitol		373	\N	2016-06-17	2016-06-17	\N	0	0	0	
6182	Seminar Workshop on Team Development		Provincial Treasurer's Office-Capitol		373	\N	2015-12-17	2015-12-17	\N	0	0	0	
6186	BNSAT - MPWH Cooperative Training on Drafting Technology		Ministry of Public Works and Highways		299	\N	1986-01-14	1986-03-14	\N	0	0	0	
9266	BLS-CPR Training		Red Cross Cavite Chapter		1419	\N	2017-03-13	2017-03-19	\N	0	0	0	
6187	Distance Learning Program n Personnel Administration		Civil Service Field Office Bataan 		299	\N	2001-06-20	2001-06-24	\N	0	0	0	
12558	Pre Employment Orientation Seminar 2017entitled "Helping Individuals Reach for Employment" Empowering the new members of the labor force		BPSU MAIN		2207	\N	2017-03-01	2017-03-01	8	0	0	0	
12559	9th Students Research Colloguim		BPSU MAIN		2207	\N	2016-02-17	2016-02-17	8	0	0	0	
12560	Seminar on Basic Occupatiinal Safety and Health Standards		BPSU MAIN		2207	\N	2016-04-21	2016-04-29	54	0	0	0	
6191	Capability Enhancement Training on the Overseas Employment Program		Philippine Overseas Employment Administration (POEA)		530	\N	2018-10-17	2018-10-18	\N	0	0	0	
6192	Supervisory Development Course Tracks II and III		Civil Service Commission-Regional Office		530	\N	2018-11-14	2018-11-16	\N	0	0	0	
6194	Gender and Development (GAD) Seminar CUM Team Building		Provincial Government of Bataan		530	\N	2017-12-29	2017-12-29	\N	0	0	0	
6195	Governance that Delivers		Institute for Solidarity in Asia		530	\N	2017-07-21	2017-07-21	\N	0	0	0	
6196	Public Governance Revalidas		Institute for Solidarity in Asia		530	\N	2017-06-21	2017-06-21	\N	0	0	0	
6197	Training on Census and Survey Processing System (CSPro) Using Public Utility Files		Philippine Statistics Authority- Bataan		530	\N	2017-03-07	2017-03-07	\N	0	0	0	
6198	Communication Development Training (Oral and Written)		PHRMO		530	\N	2016-11-09	2016-11-10	\N	0	0	0	
6434	Disaster Preparedness Training		Bataan Provincial Disaster Risk Reduction and Management Council		1619	\N	2015-12-13	2015-12-14	\N	0	0	0	
6200	OSM Planning Workshop		Institute for Solidarity in Asia		530	\N	2016-01-14	2016-01-16	\N	0	0	0	
6201	Information Technology Literacy Program (Computer Fundamentals Course)		Overseas Workers Welfare Administration (OWWA)		530	\N	2015-07-27	2015-08-07	\N	0	0	0	
6202	Public Governance Forum		Institute for Solidarity in Asia		530	\N	2015-05-04	2015-05-04	\N	0	0	0	
8633	Consultative Meeting on Red Orchids Award		Department of Health, Region III		199	\N	2017-03-28	2017-03-29	\N	0	0	0	
8634	Regional Tobacco Control Network (RTCN) Meeting		Department of Health, Region III		199	\N	2016-11-28	2016-11-28	\N	0	0	0	
8635	Ngiting Matamis para sa mga Buntis		Orani District Hopsital		199	\N	2016-11-11	2016-11-11	\N	0	0	0	
8663	Gatekeeping in Primary Healthcare as effective tool for service Delivery Network Training Workshop		Bataan General Hospital and Medical Center		200	\N	2019-02-13	2019-02-13	\N	0	0	0	
8665	Renal Technician Symposium		 National Kidney and Transplant Institute		200	\N	2018-06-16	2018-06-16	\N	0	0	0	
8666	Managing Pitfalls on Intravenous Therapy		V.I. Makabali Memorial Hospital, Inc.		200	\N	2018-02-23	2018-02-23	\N	0	0	0	
8667	Evidence based guidelines in Clinical Practice Related to Infusion Therapy Devices		V.I. Makabali Memorial Hospital, Inc.		200	\N	2018-02-22	2018-02-22	\N	0	0	0	
6215	ISO 9001:2015 Internal Quality Audit		PGO		374	\N	2017-08-30	2017-08-30	\N	0	0	0	
6216	Radio Coomunication Registration and Licensing`		PGSO		374	\N	2017-08-10	2017-08-10	\N	0	0	0	
6225	International Marketing and Branding Conference		STUP UP International Services Inc.		374	\N	2013-02-16	2013-02-16	\N	0	0	0	
6226	Group Dynamics Workshop		BPSU-CBA		374	\N	2012-11-30	2012-12-01	\N	0	0	0	
6227	1st Big Educircle International Convention on Business: Marketing and Advertising		International Center for Communication Studies		374	\N	2012-09-01	2012-09-01	\N	0	0	0	
6228	W/WAG Business Week		Bato Balani Foundation		374	\N	2012-06-08	2012-06-08	\N	0	0	0	
6230	Seminar on Anti-Money Laundering Act for Non-Convered Institutions		Land Bank of th Philippines		375	\N	0001-01-01	0001-01-01	\N	0	0	0	
6234	Basic/ Advanced Written and Oral Communication with Powerpoint Presentation		Office of the Provincial Governor-Conference Room, Capitol Compound, Balanga City, Bataan		378	\N	2018-04-19	2018-04-19	\N	0	0	0	
6235	Participating in Workplace Communication Prepare Interpret Technical Drawing apply quality standards		Electrotechnical Institue		378	\N	2013-04-29	2013-04-30	\N	0	0	0	
6236	Instrumentation and Control Sevicing NC IIInstrumentation and Control Sevicing NC II		TESDA/PESFA		378	\N	2013-04-29	2013-06-11	\N	0	0	0	
6268	Web Development Training using Wordpress		Orion Tech4Ed Center, Orion, Bataan		379	\N	2019-02-26	2019-02-26	\N	0	0	0	
6269	Supervisory Development Course Track 2 & 3		Civil Service Commission Rill		379	\N	2018-11-12	2018-11-16	\N	0	0	0	
6270	Training Workshop on Greenhouse Gas (GhG)		NEDA/GGGI		379	\N	2018-08-01	2018-08-03	\N	0	0	0	
6271	Training on Mainstreaming Green Growth in Development Planning (Module 4)		NEDA/GGGI		379	\N	2018-03-20	2018-03-23	\N	0	0	0	
6272	Training on Mainstreaming Green Growth in Development Planning (Module 3)		NEDA/GGGI		379	\N	2018-02-26	2018-02-28	\N	0	0	0	
6273	Training on Mainstreaming Green Growth in Development Planning (Module 1&2)		NEDA/GGGI		379	\N	2018-01-29	2018-01-31	\N	0	0	0	
6283	Rapid Development Rescue (RADAR) Provincial Risk Reduction Management Office		PDRRMO Command Center Orai Bataan		380	\N	2017-03-02	2017-03-02	\N	0	0	0	
6284	In Sevice Training In House Refresher Seminar Private Security Training		Lockheed Detective and Watchman Agency Inc.		380	\N	2012-09-10	2012-09-11	\N	0	0	0	
6285	Motorcycle Riding Orientation (MRO)		Camp Cirillo S. Tolentino Balanga Ciity, Bataan		380	\N	2017-05-28	2017-05-28	\N	0	0	0	
6286	Executive Motorcycle Riding Course CL-17-20014		Camp Cirillo S. Tolentino Balanga Ciity, Bataan		380	\N	2014-07-07	2014-07-07	\N	0	0	0	
6287	Fundamental Award Knowledge and Gun Handling and Safety Firing		Camp Crame Quezon City		380	\N	2009-10-05	2009-10-10	\N	0	0	0	
6326	AMLA Seminar for Non-Covered Counter Parties		Land Bank of The Philippines		511	\N	2019-05-09	2019-05-09	\N	0	0	0	
6289	PDEA-Anti-Illegal Drug Operation and Investigation		No. 3-AFAB Mariveles, Bataan		380	\N	2016-10-28	2016-10-28	\N	0	0	0	
6290	Seminar Workshop on Detailed Procurement Process, Priority and Supply Management and Legal Remedies in Audit		JPLCV Center for Academic Values Foundation, INC.		382	\N	2017-07-04	2017-07-06	\N	0	0	0	
6291	User Basic Training on Supply Management Support System		Geodata Solutions, INC.		382	\N	2017-10-09	2017-10-09	\N	0	0	0	
6292	Seminar on Anti-Trafficking in person and Anti-Violence against Women and their Children		Provincial Engineer's Office		382	\N	2018-05-11	2018-05-12	\N	0	0	0	
6297	English Crash Course 		Provincial Government of Bataan 		383	\N	2016-11-21	2016-12-12	\N	0	0	0	
6310	Technical Planning Workshop on Special Economic Zone Development Mapping		Philippine Economic Zone Authority		385	\N	2019-02-21	2019-02-22	\N	0	0	0	
6311	Countrywide Development of a Culture of Integrity Through Multi-Sectoral Local Government Integrity Circles Introductory Training		KAS-Logic Network and Asian Institute of Management		385	\N	2019-01-14	2019-01-16	\N	0	0	0	
6312	Tourism Investment Capacity Building Seminar		Department of Tourism-Region III		385	\N	2018-12-04	2018-12-06	\N	0	0	0	
6314	PPP Capacity Building for LGUs in Bataan		Public-Private Partnership		385	\N	2018-10-24	2018-10-25	\N	0	0	0	
6315	Duterte's Revised PPP Program		Center for Global Best Practices		385	\N	2018-08-10	2018-08-10	\N	0	0	0	
12561	Pre Employment Orientation Seminar 2015 entitled "Survive and Thrive" : Powerplan for career sucess		BPSU MAIN		2207	\N	2015-12-01	2015-12-01	8	0	0	0	
8637	Capacity Building for LGU's on Tourism Investment "Smarter Tourism: The Art and Science of Pitching"		Department of Tourism		656	\N	2018-12-04	2018-12-06	\N	0	0	0	
8638	Inface Cultur-Based Governance Training: Community Based Informal and Non-Formal Cultural Education		National Commission for Culture and the Arts		656	\N	2018-07-06	2018-07-08	\N	0	0	0	
8639	Advanced Torism Statistics Training		Department of Tourism Region III		656	\N	2018-03-19	2018-03-21	\N	0	0	0	
8640	Tourism Marketing Seminar on Regional Branding		Department of Tourism, Tourism Promotions Board Philippines and up Asian Institute of Tourism		656	\N	2017-04-12	2017-04-14	\N	0	0	0	
8645	Inface Culture Based Governance Training Community Based Informal and Non- Formal Cultural Education 		National Commission for Culture and the Arts		656	\N	2017-03-08	2017-03-10	\N	0	0	0	
8646	Global Youth Forum 2017 Youth on Sustainable Tourism 		International School of Sustainable Tourism		656	\N	2017-02-20	2017-02-21	\N	0	0	0	
8648	Orientation - Workshop on the Tourism GuideBook for Local Government Units 		Department of Tourism Region III		656	\N	2016-11-22	2016-11-22	\N	0	0	0	
8649	Communication Development Training 		Provincial Human Resource Management Office		656	\N	2016-11-09	2016-11-10	\N	0	0	0	
8650	17th Association of Tourism Officers of the Philippines National Convention  		ATOP-Department of Tourism		656	\N	2016-10-04	2016-10-07	\N	0	0	0	
8651	Basic Toursim Statistics Training 		Department of Tourism Region III		656	\N	2016-08-30	2017-09-16	\N	0	0	0	
8652	Orientation Seminar on Magna Carta of Women		Provincial Tourism Office 		656	\N	2016-07-01	2016-07-01	\N	0	0	0	
8653	Seminar Workshop on the Preparation of LGU Tourism Development Plan and How to Organize Convention 		Department of Tourism Region 3		656	\N	2016-04-22	2016-04-22	\N	0	0	0	
8654	16th Association of Tourism Officers of the Central Luzon Regional Covention 		ATOP - Department of Tourism		656	\N	2015-10-01	2015-10-04	\N	0	0	0	
8655	3rd Association of Tourism Officers of the Central Luzon Regional Covention 		Atocel - Department of Tourism		656	\N	2015-08-19	2015-08-20	\N	0	0	0	
8656	Festival Planning and Management Seminar Workshop 		Department of Tourism Region 3		656	\N	2014-09-09	2014-09-12	\N	0	0	0	
8657	Tourist Reception and Guiding Techiques Seminar 		Department of Tourism Region 3		656	\N	2013-08-27	2014-08-30	\N	0	0	0	
8659	Tour Package Development and Delivery Seminar - Workshop 		Department of Tourism Region 3		656	\N	2013-11-19	2013-11-20	\N	0	0	0	
8660	Construction Safety Training 		Department of Labor and Employment Region III		656	\N	2013-06-03	2013-06-07	\N	0	0	0	
9556	Budget Operation Support System		GEODATA Solutions Inc.		121	\N	2017-10-05	2017-10-05	4	0	0	0	
12562	Seminar on basc recording and bookkeeping		DTI- BATAAN		2207	\N	2018-03-16	2018-03-16	8	0	0	0	
7188	Anti Trafficking in Person and Anti Violence Againts Women and their Children		Provincial Engineer's Office		1064	\N	2018-05-12	2018-05-12	8	0	0	0	
7189	Occupational Safety and Helath Awareness		Provincial Engineer's Office		1064	\N	2018-03-22	2018-03-23	24	0	0	0	
6317	Exemplifying/Illuminating the Role of International Assessment in Maintaining Organized Quality and Excellence		Bataan Perninsula State University-Graduate School		385	\N	2018-03-24	2018-03-24	\N	0	0	0	
6318	Networking Investments for Local Executives (NILE) Seminar		Department of Trade and Industry-Central Luzon		385	\N	2018-03-19	2018-03-19	\N	0	0	0	
6320	Learning Session on: Attaining Performance Excellence through Improving Operational Capabilities in the 21st Century		Department of Trade and Industry-Competitiveness Bureau		385	\N	2017-03-22	2017-03-22	\N	0	0	0	
6321	Workshop on Populating Public-Private Partnership for the People Initiative for Local Governments (LGU P4) Database/ Portal for LGUs and Priavte/Business Sector		Department oof the Interior and Local Government		385	\N	2017-10-26	2017-10-26	\N	0	0	0	
6327	Seminar on Magna Carta for Women/Team Effectiveness		POPCOM-Provincial Government of Bataan		511	\N	2019-03-22	2019-03-22	\N	0	0	0	
6328	Guarding Your Identity: A Data Privacy Act Seminar		PHRMO-Provincial Government of Bataan		511	\N	2019-03-21	2019-03-21	\N	0	0	0	
6329	Enriching Counseling Practice and Strengthening Mental Health Advocacy		Guidance and Counseling Association-Pampanga Chapter		511	\N	2017-11-23	2017-11-24	\N	0	0	0	
6330	Senior High School Immersion; Principles, Procedures and Troubleshooting		Diocesan Schools of Bataan		511	\N	2017-10-21	2017-10-21	\N	0	0	0	
6331	Survive and Thrive; Powerplan for Career Success		BPSU Placement Office		511	\N	2015-12-09	2015-12-09	\N	0	0	0	
6332	Tools in Psychological Assessment; Its Importance and Implication to Actual Practice		Succeed Review Center		511	\N	2016-03-05	2016-03-05	\N	0	0	0	
6333	Going beyond Borders; A Psychological Approach towards Bridging the Theoretical Concepts in the Art of Actual Practice		Succeed Review Center		511	\N	2015-01-27	2015-01-27	\N	0	0	0	
6359	Smart 3 Day Training for IOS Application		Smartmatic		387	\N	2014-02-09	2014-02-21	\N	0	0	0	
6360	Introduction to GIS Manifold		NAMRIA		387	\N	2007-01-22	2007-01-26	\N	0	0	0	
6361	Instrumentation and Servicing NCII		Technical Education, Skills Development Authority		387	\N	2013-04-29	2013-06-11	\N	0	0	0	
8661	Tourism Awareness and Capability Building Seminar 		Department of Tourism Region 3		656	\N	2013-02-28	2013-03-01	\N	0	0	0	
9026	Advancing Midwifery Sevice by Practicing Quality Maternal Care	Technical	Integrated Midwives Association of the Philippines, INC.		244	\N	2018-05-18	2018-05-18	8	0	0	0	Technical
9027	Hiv Testing Services (HIV Counselling and Testing)	Technical	Provincial Health Office		244	\N	2018-03-06	2018-03-09	24	0	0	0	Technical
6386	Orientation/Seminar on Magna Carta of Women (R.A. 9710) and Anti Violence Against Women and Children		Provincial Population Office		392	\N	2016-04-15	2016-04-15	\N	0	0	0	
6411	Pagsasanay sa Korespondensiya at Implementasyon  ng Kautusan Tagapagpaganap Blg. 335 		Komisyon sa Wikang Pilipino		389	\N	2015-09-29	2015-09-29	\N	0	0	0	
9029	Moving Forward Thru Changing Times	Technical	Bataan Medical Society		244	\N	2017-09-29	2017-09-29	8	0	0	0	Technical
6431	Rapid Deployment Aftermath Rescue		Smart Guard		1619	\N	2017-02-28	2017-03-02	\N	0	0	0	
8668	Infusion Therapy for Children		 V.I. Makabali Memorial Hospital, Inc.		200	\N	2018-02-21	2018-02-21	\N	0	0	0	
8669	Fluids and Electrolytes Management in Elderly Patient		V.I. Makabali Memorial Hospital, Inc.		200	\N	2018-02-20	2018-02-20	\N	0	0	0	
8670	Dressmaking		Technical Education and Skills Development Authority		200	\N	2017-10-23	2017-12-08	\N	0	0	0	
8674	BMS at the frontline "Moving Forward thru changing Times		 Bataan Medical Society		200	\N	2017-09-29	2017-09-29	\N	0	0	0	
8676	Training  on the Management of Rabies Exposure and Animal Bites		Department of Health		200	\N	2017-08-08	2017-08-11	\N	0	0	0	
8677	Which way to go: Nursing Ethics in Education, Practice and Research		 Bataan Peninsula State University (Graduate School Facilitator)		200	\N	2017-07-22	2017-07-22	\N	0	0	0	
8678	World no Tobacco Day and World no Smoking Month Celebration		Provincial Health Office-Bataan		200	\N	2017-06-06	2017-06-06	\N	0	0	0	
8679	Quarterly meeting with Rabies Prevention and Control Program Coordinators		Provincial Health Office-Bataan		200	\N	2017-03-28	2017-03-28	\N	0	0	0	
8680	EPI Coordinators Quarterly Meeting		Provincial Health Office-Bataan		200	\N	2017-02-09	2017-02-09	\N	0	0	0	
8682	IV Therapy Documentation		V.I. Makabali Memorial Hospital, Inc.		200	\N	2015-11-27	2015-11-27	\N	0	0	0	
8696	Occupational Medicine		Philippine College of Occupational Medicine		197	\N	2016-09-03	2016-09-10	\N	0	0	0	
8702	BIORAD-Basic Quality Control		Lifeline Diagnosis Supplies		196	\N	2018-08-29	2018-08-29	\N	0	0	0	
6473	Intelli-Cad		STI College of Balanga		397	\N	2007-06-01	2007-06-30	\N	0	0	0	
6474	On-the-job Training		Freeport 200 INC.		397	\N	2002-10-01	2003-04-01	\N	0	0	0	
6475	Bataan Center For Advanced Computer Studies Windows/MS Word Course		Bataan National High School		397	\N	0001-01-01	0001-01-01	\N	0	0	0	
6652	Responsible Civil Engineering Practices Admidst Climate Change 	Professional	Philippine Institute of Civil Engineers, Incorporated		309	\N	2016-06-16	2016-06-18	\N	0	0	0	Professional
6477	Seminar on Radio Communication Registration & Licensing (Restricted Land Mbile RadoTelephone Operation for Land Mobile Service(RLM CERTIFICATE)	Technical	Engr. Nelson Lejarde(Chief Engineer, NTC Region III)		302	\N	2017-08-08	2017-08-08	\N	0	0	0	Technical
6478	Seminar on Anti - Trafficking in Person and Anti - Violence against Women and their Children		OGB -PEO		302	\N	2018-05-11	2019-05-12	\N	0	0	0	
6479	Operations And Management Audit		Association of Government Internal Auditor, INC.		398	\N	2018-11-12	2018-12-13	\N	0	0	0	
6480	Effective Documentation Practices for Secretariats in Local Government Units		LGCD Initatives		398	\N	2018-02-12	2018-05-12	\N	0	0	0	
6481	Follow-Through Training on Internal Audit : Institutionalizing Key LGU Internal Control Systems Through Effective Documentation		Department of the Interior and Local Government-Region III-Bataan		398	\N	2018-11-27	2018-11-28	\N	0	0	0	
6482	Risk-Based Thinking Seminar		NEO AMCA Innovative Solutions Cooperation		398	\N	2018-11-15	2018-11-15	\N	0	0	0	
6483	Internal Auditors: Enablers of Accountable and Progressive Transformation in the Government (National Convention CUM Seminar)		Association of Government Internal Auditor, INC.		398	\N	2018-09-10	2018-12-10	\N	0	0	0	
6484	IS O 9001: 2015 Awareness and Documentation Seminar		NEO AMCA Innovative Solutions Cooperation		398	\N	2018-03-09	2018-03-09	\N	0	0	0	
6491	The General Employee Training		Naitonal Power Corporation		304	\N	1985-09-03	1985-09-06	\N	0	0	0	
6492	Occupational Safety and Health Awareness  of Provincial Engineers Office		Provincial Government of Bataan		305	\N	2018-04-19	2018-04-20	\N	0	0	0	
6501	Behavior Based Safety Seminar		Labspeak Safety Management INC.		306	\N	2018-12-04	2018-12-07	\N	0	0	0	
6504	Gender and Development Effectiveness and Magna Carta for Women		Provincial Governent of Bataan		306	\N	2018-10-28	2018-10-28	\N	0	0	0	
6505	Provincial Stakeholders Consilataion Workshop for the Formulation of the Core Road Network of Provincial		Provincial Governemnt of Bataan		306	\N	2015-10-15	2015-10-15	\N	0	0	0	
6506	Orientation/Seminar on the Procedure for the Disbursement Transactions of the Porvincial Government of Bataan		Provincial Government of Bataan		306	\N	2014-05-09	2014-05-09	\N	0	0	0	
6507	Strategic Performace Management System(SPMS)		Civil Service Commision		306	\N	2013-10-29	2013-10-29	\N	0	0	0	
6509	Standard First Aid and Basic Life Support Training		Word Citi Medical Center		306	\N	2008-05-09	2008-05-13	\N	0	0	0	
6510	Behavior - Based Safety Seminar		LabSpeak Safety Management		307	\N	0001-01-01	0001-01-01	\N	0	0	0	
6511	Seminar Workshop on Detailed Project Process, Property & Supply Management		JPLCV Center for Academic Values		307	\N	0001-01-01	0001-01-01	\N	0	0	0	
6521	PICE 44th National Convention 	Professional	Philippine Institute of Civil Engineers		308	\N	2018-10-29	2018-10-31	\N	0	0	0	Professional
6522	Seminar on Sustainable Storm Water Management, Planning & Design	Technical	Upswing Learning Center		308	\N	2018-10-14	2018-10-14	\N	0	0	0	Technical
6523	Seminar on Anti - Trafficking in Perosn and Anti - Violence Against Women and their Children	Manegerial	Provincial Government of Bataan		308	\N	2018-05-11	2018-05-12	\N	0	0	0	Manegerial
6524	Training - Workshop on Traffic Engineering and Management under the CMGP Program	Technical	Department of Interioir and Local Governenment		308	\N	2018-04-16	2018-04-20	\N	0	0	0	Technical
6525	Occupational Safety Awareness	Technical 	Provincial Engineer's Office Bataan		308	\N	2018-03-26	2018-03-27	\N	0	0	0	Technical 
6527	Workshop on Local Road Maintenance Management	Technical	Department of Interior and Local Government		308	\N	2017-05-15	2017-05-19	\N	0	0	0	Technical
6529	Planning and Design of Flood Control Projects with Project Impact Analysis	Technical	Department of Public Works & Highway		308	\N	2016-09-26	2016-09-30	\N	0	0	0	Technical
6530	2016 National Midyear Convention	Professional 	Philippine Instititute of Civil Engineers		308	\N	2016-06-16	2016-06-18	\N	0	0	0	Professional 
6531	Auto Cad 2014 Module | Basic 2d Drawing and Lay Outing	Technical	Microcity College of Business and Technlogy, Inc.		308	\N	2016-04-21	2016-04-30	\N	0	0	0	Technical
8684	Integrated Hospital Operation Management Information System Training		DOH - Knowledge Managemnt and Information Technology Service		1116	\N	2018-04-23	2018-04-27	40	0	0	0	
6642	Behavior- Based Safety Terminal	Safety	Labspeak Safety Management Incorporated in Cooperation W/ PGB		309	\N	2018-12-04	2018-12-07	\N	0	0	0	Safety
6643	44th PICE National Convention  and Technical Conference	Professional 	Philippine Institute of Civil Engineers, Incorporated		309	\N	2018-10-29	2018-10-31	\N	0	0	0	Professional 
6644	Workshop on Safety Progam Evaluation /Audit	Safety	Labspeak Safety Management Incorporated in Cooperation W/ PGB		309	\N	2018-08-15	2018-08-17	\N	0	0	0	Safety
6645	Refresher Workshop of Cosh 	Professional	Provincial Government of Bataan		309	\N	2018-02-22	2018-02-22	\N	0	0	0	Professional
6646	Build Build Build ofr Smart ,Strong & Sustainable Societies	Professional	Philippine Institute of Civil engineers Incorporated		309	\N	2017-11-28	2017-11-30	\N	0	0	0	Professional
6647	PEO Team Effectiveness Magna Carta for Women	Administrative	Provincial Governement of Bataan		309	\N	2017-10-28	2017-10-28	\N	0	0	0	Administrative
6648	Seminar - Workshop for the Accrediataion of Constructors Performance Evaluators (CPE's) For the Department of Interior and Local Government	Professional	Department of Trade and Industry  Construction Industry Authority of the		309	\N	2016-09-04	2016-09-08	\N	0	0	0	Professional
6650	Seminar -WorkShop for Planning & Design of Flood Control Projects W/ Projects Impact Analysis	Professional	DPWH Thru The Initiative of the Provincial		309	\N	2016-09-26	2016-09-30	\N	0	0	0	Professional
6651	Construction Occupational Safety & Health  Training Course	Safety	LabSpeak Safety Management Incorporated in Cooperation w/ PGB		309	\N	2016-08-02	2016-08-05	\N	0	0	0	Safety
6653	Financial Management for Local Government Unit Under PRDP	Managerial	Department of Agriculture - Philippine Rural Development of Project		309	\N	2016-05-18	2016-05-20	\N	0	0	0	Managerial
6654	Seminar - Workshop on Engineering Design for Roads and Bridges	Professional	Department of the Interior and Local Government		309	\N	2015-11-23	2015-11-27	\N	0	0	0	Professional
12596	Invest Balanga- Franchise Negosyo para sa Balanga		City Economic Investment and Development Office- Balanga city		2208	\N	2018-06-08	2018-06-08	4	0	0	0	
12597	Water Safety Plan Orientation & Development Seminar		Local Water Utilities Administration		2208	\N	2015-12-15	2015-12-17	24	0	0	0	
12598	Orientation and Workshop on Harmonized Gender and Development Guidelines		Philippine Associatin of Water Districts- Human Resources Practitioner		2208	\N	2017-02-02	2017-02-02	8	0	0	0	
6572	Follow-Through Activity on the Finalization of Provincial Governance Reform Roadmap (PGRR)		Department of Interior and Local Government (Region III- Province Of Bataan)		416	\N	2018-10-10	2018-10-11	\N	0	0	0	
6577	A Capability Development Training Program on Documentation in Local		Local Governance and Community Development Initiatives		547	\N	2018-12-03	2018-12-05	\N	0	0	0	
6581	Province of La Union Mini Bootcamp		Provincial Government of La Union		547	\N	2018-01-30	2018-01-31	\N	0	0	0	
6584	ISO 9001: 2015 And Risk and Opportunities Management		Bataan General Hospital		547	\N	2016-08-24	2016-08-26	\N	0	0	0	
6586	Office of the Strategy Management (OSM) Planning Workshop		Institute for Solidarity in Asia		547	\N	2016-01-14	2016-01-16	\N	0	0	0	
6588	Seminar- Workshop on Revised Rules on Administrative Cases in Civil Service		Civil Service Commission-Regional Office		547	\N	2015-10-28	2015-10-29	\N	0	0	0	
6589	Conference on Building on Entrepreneurial Leadership Towards Competitiveness for More Sustainable, Green, and Inclusive Growth		Department of Interior and Local Government (Region III- Province Of Bataan)		547	\N	2015-10-23	2015-10-23	\N	0	0	0	
6590	Senior Finance Officials' Meeting and the Workshop on Financial Management Through Transparency and Reforms During APEC Summit		Department of Finance and National Organizing Council 		547	\N	2015-06-09	2015-06-12	\N	0	0	0	
6591	Held On: Public Governance Forum (Proficiency Stage)		Institute for Solidarity in Asia		547	\N	2015-05-04	2015-05-04	\N	0	0	0	
6592	Building Momentum (Compliance Stage)		Institute for Solidarity in Asia		547	\N	2014-10-21	2014-10-21	\N	0	0	0	
6593	Pre-Revalida Session  (Compliance Stage)		Institute for Solidarity in Asia		547	\N	2014-10-10	2014-10-10	\N	0	0	0	
8748	Philhealth the Reachout Project 2014	Technical	Philhealth		1120	\N	2014-10-01	2014-10-01	8	0	0	0	Technical
6594	Take The Lead: Public Governance Forum (Initiation Stage)		Institute for Solidarity in Asia		547	\N	2014-04-11	2014-04-11	\N	0	0	0	
6606	IFRS vs. GAAP Part 2		Accelera: The Global Professional		417	\N	2018-12-08	2018-12-08	\N	0	0	0	
6607	IFRS vs. GAAP Part 1		Accelera: The Global Professional		417	\N	2018-12-08	2018-12-08	\N	0	0	0	
6608	Leadership Lesson 3: Personality and Leadership Styles		Accelera: The Global Professional		417	\N	2018-12-09	2018-12-09	\N	0	0	0	
6609	Capacity Building for LGUs on Tourism Investment		PWC/ Department of Tourism		417	\N	2018-12-04	2018-12-08	\N	0	0	0	
6610	Tax Updates on Implementation of Train 1A, Overview of 1B and TRAIN2 		PICPA Olongapo Chapter		417	\N	2018-10-27	2018-10-27	\N	0	0	0	
6611	Bridging The Gap Between the PFRS and Tax Accounting as Amended by TRAIN Law		PICPA Olongapo Chapter		417	\N	2018-10-20	2018-10-20	\N	0	0	0	
6613	PPP Capacity Building for LGUs in Bataan Module 1: PPP 101 Seminar		PPP Center		417	\N	2018-10-24	2018-10-25	\N	0	0	0	
6614	Ease of Doing Business (EODB) Forum		Department of the Interior and Local Government		417	\N	2018-10-09	2018-10-09	\N	0	0	0	
6615	Take Charge of your Future: Making You Financially Capable		PICPA Olongapo Chapter		417	\N	2018-10-06	2018-10-06	\N	0	0	0	
6616	Seminar  on Tax Updates- Tax Reform for Acceleration and Inclusion (TRAIN Law)		PICPA Bataan Chapter		417	\N	2018-03-24	2018-03-24	\N	0	0	0	
6617	Workshop on Quality Asuurance Review (QAR) Program		PICPA Pampanga Chapter		417	\N	2018-02-23	2018-02-23	\N	0	0	0	
6618	Data Analysis and Computerized Accounting and Auditing Digitization		PICPA Pampanga Chapter		417	\N	2018-02-03	2018-02-03	\N	0	0	0	
6619	2017 Business Strategic Planning		Bataan Development Bank		417	\N	2017-11-13	2017-11-14	\N	0	0	0	
6620	Seminar  on PFRS Updates and PFRS for SMEs		PICPA Pampanga Chapter		417	\N	2017-11-13	2017-11-14	\N	0	0	0	
6621	Seminar on Competitive Financial Intelligence		PICPA Pampanga Chapter		417	\N	2017-10-06	2017-10-06	\N	0	0	0	
6622	Seminar on How to Handle BIR Audit and Investigation and Tax Updates		PICPA Olongapo Chapter		417	\N	2017-08-06	2017-08-06	\N	0	0	0	
6623	Seminar on AMLA Reporting		Bangko Sentral ng Pilipinas		417	\N	2016-10-13	2016-10-13	\N	0	0	0	
6624	Seminar on Preparation of Financial Statements		PICPA Pampanga Chapter		417	\N	2016-06-30	2016-06-30	\N	0	0	0	
6625	Seminar on Philippine Standards on Auditing		PICPA Mandaluyong City		417	\N	2016-05-21	2016-05-21	\N	0	0	0	
6626	Leadership for Emerging Leader		Bataan Development Bank		417	\N	2015-10-10	2015-10-10	\N	0	0	0	
6627	Seminar on PFRS Updates		PICPA Mandaluyong City		417	\N	2015-09-17	2015-09-17	\N	0	0	0	
6628	Seminar-Workshop on Credit Risk Management		Bataan Development Bank		417	\N	2015-03-28	2015-03-28	\N	0	0	0	
6629	Briefing on Bangko Central ng Pilipinas (BSP) Denomination Program, Security Features of New Generation Currencies, Coin Re-circulation Program and other BSP Advocacies		Bangko Sentral ng Pilipinas		417	\N	2015-03-11	2015-03-11	\N	0	0	0	
6630	Community-Based Monitoring System Enhancement Training		Provincial Planning and Development Office		419	\N	2007-09-26	2007-09-27	\N	0	0	0	
6631	Trainor's Training on Food Photography and Packaging and Label Design		DOST and BPSU		419	\N	2017-01-11	2017-01-13	\N	0	0	0	
6632	Training on Label Design Development for Different Packaging Format		DOST and BPSU		419	\N	2017-06-27	2017-06-28	\N	0	0	0	
6633	National Information Convention		Philippine Information Agency		419	\N	2018-02-19	2018-02-21	\N	0	0	0	
6634	Data Awareness and Compliance Workshop		Yisrael Solutions and Constituting, Inc.		420	\N	2018-09-18	2018-09-18	\N	0	0	0	
8685	BGHIMC-Service Delivery Network Referral System Orientation-Workshop		Bataan General Hospital & Medical Center		1116	\N	2019-02-15	2019-02-15	5	0	0	0	
8686	The Great Northern Tour Conference		Trends, MEC, Aruba Network Solutions Fortinet Security and Alcatel Telephony		1116	\N	2018-08-29	2018-08-29	5	0	0	0	
8687	Training on Programming and Database Management for Designated System Administrators of IHOMIS		DOH - Knowledge Management and Information Technology Services		1116	\N	2018-05-16	2018-05-25	80	0	0	0	
8688	IHOMIS Training		DOH - Knowledge Management and Information Technology Services		1116	\N	2018-04-23	2018-04-26	40	0	0	0	
8689	IHOMIS Program Implementation Review		DOH - Knowledge Management and Information Technology Services		1116	\N	2018-04-10	2018-04-13	32	0	0	0	
8690	On-The-Job Trainee (IT)		Bataan Peninsula State University - BPSOURCE, INC		1116	\N	2016-04-06	2016-06-06	360	0	0	0	
7173	ISO 9001: 2015 Risk Based Thinking Seminar 	Technical	NEO AMCA Innovative Solutions		317	\N	2018-11-15	2018-11-15	\N	0	0	0	Technical
7174	ISO 9001:2015 Internal Quality Auditor's Enchancement Training	Technical	NEO AMCA Innovate Solutions Incorporated		317	\N	2018-08-29	2018-08-29	\N	0	0	0	Technical
7175	Workshop on Safety Program Audit	Technical	Provincial Government of Bataan Coordination With LabSpeak Safety Management Incorporation		317	\N	2018-08-15	2018-08-17	\N	0	0	0	Technical
7176	Seminar on Anti-Trafficking in Person and Anti- Violence Against Women and Their Children	General 	Provincial  Population Commission		317	\N	2018-05-11	2018-05-12	\N	0	0	0	General 
7177	Workshop on Unfied Construction Fee	Technical	Provincial Government of Bataan		317	\N	2018-05-17	2018-05-18	\N	0	0	0	Technical
7178	Refresher  Workshop of Construction Operational and Safety and Health Training	Technical	Provincial Government of Bataan		317	\N	2018-02-22	2018-02-22	\N	0	0	0	Technical
7179	ISO:9001:2015 Internal Quality Audit	General 	Neo AMCA Innovate Solutions Incorporated		317	\N	2017-08-30	2017-08-30	\N	0	0	0	General 
8700	Basic Life Support for Health Care				1119	\N	2010-11-12	2010-11-13		0	0	0	
8729	Expanded Primary Care Benefit Orientation	Technical	Philhealth		1120	\N	2019-02-04	2019-02-04	2	0	0	0	Technical
7185	Construction Occupational Safety and Health Training Course	Technical	Provincial Governemnt of Bataan Coordination With LabSpeak Safety Mnagment INC		317	\N	2016-05-02	2016-05-05	\N	0	0	0	Technical
7186	Orientation Seminar on the Procedures for the Disbursement Transactions of the Provincial Government of Bataan	General	Provincial Government of Bataan		317	\N	2014-05-09	2019-08-24	\N	0	0	0	General
7229	Follow though: Training-WorkShop  on  the Implementation of Internal audit For Provinces Under the CMGP Program	Technical	Department of the Interior and Local Government		329	\N	2017-11-26	2017-11-30	40	0	0	0	Technical
7232	Performance Governance System Monthly Strategy Review Meeting Cum Team Building	Skills Training	Office of Strategy Management - Provincial Government of Bataan		329	\N	2017-11-10	2017-11-10	8	0	0	0	Skills Training
7233	ISO 9001: 2005 Internal Quality Audit	Skills Training	NEO AMCA Innovative Solutions Corporation and Provincial Government of Bataan		329	\N	2016-07-29	2016-07-30	16	0	0	0	Skills Training
7234	ISO 9001:2005 Awareness Seminar	Skills Training	Neo Amca Innovative Solutions Corporation and Provincial Government of Bataan		329	\N	2016-07-27	2016-07-27	8	0	0	0	Skills Training
7235	Systematic Records managemnt Training/Workshop	Personal Development	Provincial Human Resource Management Office - Provincial Government of Bataan		329	\N	2017-07-25	2017-07-26	16	0	0	0	Personal Development
7237	Strategic Perfomance  Management System for Leaders	Skills Training	 Provincial Human Resource Managment Office - Provincial Government of Bataan		329	\N	2016-10-28	2016-10-28	8	0	0	0	Skills Training
7298	PEO Team Effectiveness and Magna Carta for Women Seminar	Managerial	Provincial Government of Bataan		333	\N	2017-10-27	2017-10-28	16	0	0	0	Managerial
7238	Integrated Planning Course On Incident Command System 	Technical	Office of Civil Defense - Regional Disaster Risk Reduction and Management Council 3		329	\N	2016-08-15	2016-08-19	40	0	0	0	Technical
7258	Local Disaster Risk Unit Reduction and Management and Plan (LDRRMP) Writeshop	Technical	Bataan Provincial Disaster Risk Reduction and Management Council Office of the Civil Defense and Regional Disaster  Risk Reduction & Management Council 3		329	\N	2014-01-16	2014-01-17	16	0	0	0	Technical
8775	Gate Keeping in Primary Health Care as Effective Tool For Service Delivery Network Training Workshop		Bataan General Hospital		1126	\N	2019-02-13	2019-02-13		0	0	0	
7259	Training on Feasibility study and Pet Detailed Engineering Design for Farm to Market Road -, Communal Irrigation Syste, and Potable Water System Under the Philippine Rural Development Program (PRDP)	Technical	Department of Agriculture  -Philippine Rural Development Program		329	\N	2013-12-03	2013-12-06	32	0	0	0	Technical
9284	Personal Leadership Training Program		Innovasia Manpower		1420	\N	2017-10-27	2017-10-27	\N	0	0	0	
7260	Training/Orientation on Value Chain Analysis	Technical	Department of Agriculture - Provincial field Office		329	\N	2013-09-17	2013-09-18	16	0	0	0	Technical
7261	Appreciation Course in IMS (Quality - Environment, Health and Safety Management System -ISo 9001;2008, ISO 14001:2004 and Ohsas 18001:2007)	Quality Training	RPM MSDS Methods, Strategies and Ducumentation Services and Philippine National Oil Company - Philippine Alternative Fuels Corporation		329	\N	2013-07-24	2013-07-25	16	0	0	0	Quality Training
7262	Position Tilte Course on Incident Command System (ICS)	Skills Training	Regional Disaster Risk Reduction Managemnt Council 3 and Office of Civil Defense Region 3		329	\N	2013-04-22	2013-04-26	40	0	0	0	Skills Training
7263	Three - Day Basic/Itnermidiate Incident Command System(ICS) Training Course	Skills Training	Regional Disaster Risk Reduction Management Council 3 and Office of Civil Defense Region 3		329	\N	2013-02-11	2013-02-13	24	0	0	0	Skills Training
7264	Seminar -Workshop on the Use of Automatic Weather Station(AWS)Data For Disaster Preparedness	Skills Training	Department of Science and Technology - ASTI, PAG-ASA , and Provincial Government  of Bataan		329	\N	2012-11-07	2012-11-07	8	0	0	0	Skills Training
7266	Basic Geographic Information System (GIS) Operation and Global Postioning System (GPS)	Skills training	Department of Environment and Natural Resources - Manila Bay Coordinating Office		329	\N	2011-04-11	2011-04-15	40	0	0	0	Skills training
8703	Mid Year Continuing Professional Development Seminar 2018		Philippine Association of Medical Technologist		196	\N	2018-06-23	2018-06-23	\N	0	0	0	
8704	53rd PAMET Annual Convention		 Philippine Association of Medical Technologist		196	\N	2017-11-22	2017-11-22	\N	0	0	0	
8705	CPD Seminar: The Power of 3: PAMET North Luzon Experience		Philippine Association of Medical Technologist		196	\N	2017-10-14	2017-10-14	\N	0	0	0	
8708	2nd CPD Seminar of 2017		Philippine Association of Medical Technologist		196	\N	2017-03-24	2017-03-24	\N	0	0	0	
8723	Pharmacy Services Going Beyond Medicines		Philippine Pharmacists Association		1450	\N	2018-08-11	2018-08-11	\N	0	0	0	
8724	Advaning the Competencies of Pharmacists in Ensuring Medication Adherence and Medication Management for Patients with Syndrome X and Microbial Infection		Philippine Pharmacists Association		1450	\N	2018-08-22	2018-08-22	\N	0	0	0	
8725	Migning Pharmacy Practice with Current Regulatory Reforms		Philippine Pharmacists Association		1450	\N	2017-08-12	2017-08-12	\N	0	0	0	
8727	Standard Operating Procedure and Risk Management Plan for Drug Outlets		Philippine Pharmacists Association (Bataan Chapter)		1450	\N	2017-07-22	2017-07-22	\N	0	0	0	
8728	Food and Drug Administration Ricensing Seminar for Drugstore and Outlet		Food and Drug Administration		1450	\N	2017-04-21	2017-04-21	\N	0	0	0	
9031	Essential Intrapartum and Newborn Care Provider Training for Midwife	Technical	Inegratd Midwives association of the Philippines, Inc.		244	\N	2017-08-25	2017-08-27	16	0	0	0	Technical
9032	1st IMAP Bataan Scientific Seminar	Technical	Integrated Midwives Association of the Philippines Bataan Chapter		244	\N	2017-07-07	2017-07-07	8	0	0	0	Technical
9034	Red Orchid Award's Consultative Meeting	Technical	Department of Health		244	\N	2015-03-24	2015-03-25	16	0	0	0	Technical
9035	Regional Tobacco Control Network Meeting	Technical	Department of Health		244	\N	2015-02-13	2015-02-13	8	0	0	0	Technical
9036	Smoking Cessation Training	Technical	Provincial Health Office		244	\N	2014-11-04	2014-11-05	16	0	0	0	Technical
9037	Basic Life Suppoort for Hospital Ambulance Drivers in Region III	Technical	DOH- Pampanga		246	\N	2017-09-12	2017-09-13	16	0	0	0	Technical
12600	ISO 9001: 2015 Quality Management Systems Awareness and Documentation		TUV RHEINLAND		2208	\N	2017-01-16	2017-01-17	16	0	0	0	
7276	Internation Lightning Association of the World (ILAW Conference)		United Architects of the Philippines		330	\N	2011-02-03	2011-02-04	8	0	0	0	
7281	NATCON 44 "Sagisag"		United Architects of the Philippines		330	\N	2018-04-12	2018-04-14	32	0	0	0	
8732	Claims Status Report Module and Bus Circulars	Technical	Philhealth		1120	\N	2018-06-29	2018-06-29	8	0	0	0	Technical
8733	Orientation of Philhealth Accredited Hospital, Ambulatory Surgical Clinics and Free Standing Dialysis Center	Technical	Philhealth		1120	\N	2018-06-07	2018-06-07	8	0	0	0	Technical
8734	IHOMIS Implementation	Technical	Bagac Community and Medicare Hospital		1120	\N	2018-04-30	2018-04-30	8	0	0	0	Technical
8735	Attend e-Claims Training	Technical	Orani District Hospital		1120	\N	2018-04-25	2018-04-25	8	0	0	0	Technical
12601	Seminar-Workshop on RA 9184 & Its IRR		Department of budget and management RO III		2208	\N	2016-10-17	2016-10-19	24	0	0	0	
12602	Orientation Course on ISO 9001:2015 Quality Management System		Development Academy of the Phiippines		2208	\N	2016-08-19	2016-08-19	8	0	0	0	
7291	Strong and United GEP to Sustain Global Competence	Technical	Geodetic Engineers of the Philippines - North Luzon Area		333	\N	2018-11-22	2018-11-23	16	0	0	0	Technical
7292	Follow - Through Activity on Local Road Mapping Using the Unified Mapping Program of Namria	Technical	Department of the Interior and Local Government		333	\N	2018-09-12	2018-09-13	16	0	0	0	Technical
7293	Seminar on Anti- Trafficking in Person and Anti - Violence Against Women and  their Children	Managerial	Provincial Government of Bataan		333	\N	2018-05-11	2018-05-12	16	0	0	0	Managerial
7294	GNSS Positioning with Philippine Active  Geodetic Network Seminar 	Technical	Geodetic Engineers of the Philippine National Capital Region		333	\N	2018-04-20	2018-04-21	16	0	0	0	Technical
7295	Bringing Technology to the Grassroots for World Class Professionals	Technical	Geodetic Engineers of the Philippines-Region 3		333	\N	2018-03-16	2018-03-17	16	0	0	0	Technical
7296	Refresher Workshop of Construction Operational Safety and Health Training	Technical	Provincial Government of Bataan		333	\N	2018-02-22	2018-02-22	8	0	0	0	Technical
7299	Field to Finish: A Training Workshop on Road Survey using Autocad Civil 3D Under the CMGP Program	Technical	Department of the Interior and Local government		333	\N	2017-09-25	2017-09-29	40	0	0	0	Technical
7300	Seminar on Radio Communication Registration and Licensing	Technical	national Telocommuncations Commission		333	\N	2017-08-10	2017-08-10	8	0	0	0	Technical
9250	Tech Caravan		Bataan Peninsula State University		1408	\N	2017-09-23	2017-09-24	\N	0	0	0	
7301	Training - Workshop on Bridge Design with Computer Application (Using Staad Pro V8i Select Series 6) Under the CMGP Program	Technical	Department of Interior and Local Government		333	\N	2017-05-29	2017-06-02	40	0	0	0	Technical
7302	Enchanced E-Survey Plan and GE-Survey Program Training Workshop	Technical	Geodetic Engineers of the Philippines- NCR		333	\N	2015-02-27	2016-02-28	16	0	0	0	Technical
7303	Ensuring Competitiveness of Filipino Geodetic Engineers in the Gobal Practice Thru Effective Continuing Professional Development	Technical	Geodetic Engineers of the Philippines- Region 3		333	\N	2015-02-27	2015-02-28	16	0	0	0	Technical
7304	Quality, Environment, Safety and Health (QESH) Guidelines and Processes	Technical	Phinma Property Holdings Corporation		333	\N	2014-08-11	2014-08-12	16	0	0	0	Technical
7305	Shifting to High Gear Towards Integrity and Excellence in the Geodetic Engineering Profession	Technical	Geodetic Engineers of the Phillipines - Region 3		333	\N	2014-02-28	2014-03-01	16	0	0	0	Technical
7306	Basic Occupational Safety and Health for Coins and Truction Safety Officer	Technical	Department of Trade and Industry CMDF		333	\N	2013-08-09	2013-08-11	40	0	0	0	Technical
7307	Application of GIS in Engineering and Architecture 	Technical	Saint Louis University School of Engineering and Architecture - Ages		333	\N	2011-11-19	2011-11-19	8	0	0	0	Technical
7308	The Comprehensive Agrarian Reform Program Seminar	Technical	Junior Philippine Economics Society		333	\N	2008-09-14	2008-09-14	8	0	0	0	Technical
7309	PEO Team Effectiveness and Seminar On Anti - Trafficking in Person and Anti-Violence Against Women and Their Childrens 		Provincial Engineer's Office		334	\N	2018-05-11	2018-05-12	8	0	0	0	
7311	PEO Team Effectiveness and Magna Carta for Women's Seminar 		Provoncoal Engineer's Office		334	\N	2017-10-28	2017-10-28	8	0	0	0	
7312	Pagsasanay sa Korespondensiya Ospiyal at Implementasyon ng Kutusang Tagapagpaganap BLG 335		Komisyon sa Wikang Pilipino at Pamahalaalaang Lalawigan ng Bataan		334	\N	2015-09-29	2015-09-29	8	0	0	0	
7313	Seminar on Records and Filing Management		Business Coach, Inc.		334	\N	2016-09-01	2016-09-01	8	0	0	0	
12604	Work Attitude and Values Enhancement (WAVE) Seminar		Civil Service Commission		2208	\N	2015-12-16	2015-12-16	8	0	0	0	
8736	Attend Round the Table Discussion	Technical 	Philhealth		1120	\N	2017-12-29	2017-12-29	4	0	0	0	Technical 
7394	OCCUPATIONAL FIRST AID AND BLS-CPR WITH AED OPERATION TRAINING FOR ADULT-LAY RESCUERS 		PHILIPPINE RED CROSS		2172	\N	2016-04-25	2016-04-28	\N	0	0	0	
7395	MAAB UPDATE ADN REVIEW 		PHILIPPINE RED CROSS		2172	\N	2016-10-10	2016-10-11	\N	0	0	0	
8738	Round Table Discusion	Technical	Philhealth		1120	\N	2017-12-19	2018-12-19	5	0	0	0	Technical
8739	POS-Orientation	Technical	Philhealth		1120	\N	2017-07-03	2017-07-03	4	0	0	0	Technical
8740	Orientation of Hospital, Ambulatory Surgical Clinics and Free Standing Dialysis Clinics	Technical	Philhealth		1120	\N	2017-06-08	2017-06-08	10	0	0	0	Technical
8749	Trainee, Quest Consultancy and Training Center		Quest Consultancy		1121	\N	2004-06-03	2005-07-31		0	0	0	
8750	Primcare Trianing and Development Center		Prima Care		1121	\N	2003-09-04	2004-01-04		0	0	0	
8751	Standard First Aid Traiming		Philippine National Red Cross		1121	\N	2003-08-15	2003-08-22		0	0	0	
8752	Basic Life Support Training 		Philippine National Redcross		1121	\N	2003-08-07	2003-08-14		0	0	0	
8753	Basic First Aid Training		Philippine National Red Cross		1121	\N	1998-02-16	1998-02-23		0	0	0	
8754	 Conmitnuing Prof. Dev Seminar		Ritemed		1122	\N	2017-07-29	0001-01-01		0	0	0	
8755	Align Pharm Practice with Current Reg. Ref		PPHA Assoc		1122	\N	2017-02-28	0001-01-01		0	0	0	
8756	Optimum Health Outcome Through MEdiccaiton		Unimed		1122	\N	2017-07-29	0001-01-01		0	0	0	
8757	SOP and RMP Plan for Drug Outlet		PPHA Assoc		1122	\N	2017-02-28	0001-01-01		0	0	0	
8758	Licensing Seminar For Drugstore Outlet		FDA		1122	\N	2008-02-28	0001-01-01		0	0	0	
8760	Philippine Nautical Training Institute 				1123	\N	2011-10-25	2011-11-01		0	0	0	
12605	Philgeps training for buyers		EBlackboards Solution Inc.		2208	\N	2015-11-12	2015-11-13	16	0	0	0	
12606	Effective Communication Through Media Networking		Local Water Utilities Administration		2208	\N	2015-07-29	2015-07-30	16	0	0	0	
7338	Tobaco Control Leadership Seminar/Workshop		Provincial Government of Bataan		652	\N	2018-07-04	2018-07-05	\N	0	0	0	
7340	MPower Training		Provincial Government of Bataan		652	\N	2018-02-06	2018-02-08	\N	0	0	0	
7341	Orientation/Seminar on MAGNA Carta of Woman (RA 9710)		Provincial Government of Bataan		652	\N	2016-07-01	2016-07-01	\N	0	0	0	
7342	Work Atitute and Values Enhacement Training 		Provincial Government of Bataan 		652	\N	2016-06-20	2016-06-21	\N	0	0	0	
7343	Orientation / Seminar on Magna Carta of Women (RA.9262)		Provincial Government of Bataan		652	\N	2016-04-15	2016-04-15	\N	0	0	0	
7344	Seminar-Workshop on Revised Rules on Administrative in the Civil Service		Department of Tourism Region 3 		652	\N	2015-10-28	2015-10-29	\N	0	0	0	
7345	Orientation Seminar on the Procedures for the Disbursement Transaction of the Government of Bataan 		Civil Service Commission 		652	\N	2014-05-09	2014-05-09	\N	0	0	0	
7348	Trends and Updates for SME Roving Academy 		Department of Trade and Industry 		652	\N	2013-07-24	2013-07-24	\N	0	0	0	
8761	Free Prevention and Fire Fighting		10252011		1123	\N	2011-10-25	2011-11-01		0	0	0	
8762	Elementary First Aid				1123	\N	2011-10-25	2011-11-01		0	0	0	
8763	Personal Survival Techniques				1123	\N	2011-10-25	2011-11-01		0	0	0	
8764	House Keeping				1123	\N	2009-02-01	2009-02-28		0	0	0	
8766	Advanced Cardiac Life Su[pport		American Safety and Health Institute		1125	\N	2017-10-27	2017-10-27		0	0	0	
8768	Professional Summit 2015		Bataan Peninsula State University		1125	\N	2015-05-16	2015-05-16		0	0	0	
8769	Embracing Diversity in Nursing Practice		Bataan Peninsula State University		1125	\N	2015-03-07	2015-03-07		0	0	0	
8770	Dom't Worry, Be Happy		Bataan Peninsula State University		1125	\N	2015-02-09	2015-02-09		0	0	0	
8771	Health Congress		Bataan Peninsula State University		1125	\N	2014-10-20	2014-10-20		0	0	0	
8772	Intavenouse Therapy		ANSAP		1125	\N	2012-05-17	2012-05-19	32	0	0	0	
9249	Youth for Information Technology		SMX Convention Center Manila		1408	\N	2017-09-07	2017-09-07	\N	0	0	0	
8776	Saudi Health Exhibition and Conference		Riyadh International Convention and Exhibition Center		1126	\N	2016-05-16	2016-05-18		0	0	0	
9285	Food Safety and Sanitation		The Oriental Bataan Hotel		1420	\N	2017-03-28	2017-03-28	\N	0	0	0	
7384	Crisis Response Management Training (SWAT)		Bataan Police Provincial Office		1644	\N	2004-09-08	2004-10-25	\N	0	0	0	
7385	Basic Jail Management Seminar 		Bataan Police Provincial Office (BJMP)		1644	\N	2006-11-16	2006-11-18	\N	0	0	0	
7386	Restricted Land Mobile Radio Telephone Operation		Provincial General Service Office		1644	\N	2017-08-10	2017-08-10	\N	0	0	0	
7387	Helecopter Underwater Escape Training Survival at Sea (HUET and SAS)		OPEANS Safety Training Center (Africa)		1644	\N	2014-10-30	2014-10-30	\N	0	0	0	
7388	First Aid Training (BLS)		MBDA Medic Command Center		1644	\N	2017-10-19	2017-10-20	\N	0	0	0	
7389	Traffic Management 		Balanga Police Station and LTO Pilar		1644	\N	2008-10-08	2008-10-08	\N	0	0	0	
7390	VIP Security		Balanga Police Station		1644	\N	2003-04-15	2003-04-15	\N	0	0	0	
7391	Patrol 117 Operative Balanga City Call Center		Balanga Public Safety Office, PNP		1644	\N	2002-03-21	2003-03-22	\N	0	0	0	
8792	Basic Cardia Life Support Provider		DR. Soliman Fakeeh Academic Center,Saudi heart Association		1129	\N	2012-08-01	2014-07-01		0	0	0	
8793	Saudi Neonatal Resusciation Program Provider Course (SNRP)		National		1129	\N	2012-04-23	2012-04-23		0	0	0	
7356	On - The  - Job Training		Petron Bataan Refinery Corporation		335	\N	1995-06-01	1995-12-30	1080	0	0	0	
7357	Follow - Through Activity on Local Road maintenance Management		Department of Interior and Local Government		335	\N	2018-12-10	2018-12-11	16	0	0	0	
7359	Standard First Aid and CPR/AED		Philippine RedCross		335	\N	2018-11-20	2018-11-22	24	0	0	0	
7360	Wheel Alignment and Wheel Balancing		Civiv Tire Center and Services		335	\N	2015-11-25	2015-11-27	24	0	0	0	
7361	Radio Communication Registration and Licensing Restricted Land Mobile Radio Telephone Operation for Land Mobile Services - RLM Certificate		National Telecommunication Commision/Provincial Government Office of Bataan		335	\N	2017-08-10	2017-08-10	8	0	0	0	
7367	Occupational Safety & Health Awareness of the Provincial Engineering Office as One of the Strategies Iniatives for Cy 2018		(P.E.O) Provincial Engineering Office		336	\N	2018-03-22	2018-03-23		0	0	0	
7396	Writeshop for the Compleiton of Provincial Governance Reform Roadmaps	Managerial	Department of the Interior Local Government		340	\N	2018-09-25	2018-09-26	16	0	0	0	Managerial
7397	Writeshop for the Completion of Provincial Governance Reform Roadmaps	Managerial	Department Of Interior and Local Government		340	\N	2018-07-24	2018-07-27	32	0	0	0	Managerial
7398	Construction Occupational Safety and Health Course (40 Hours)	Technical	LABSPEAK SAFTERY MANAGEMENT INCORPORATED		340	\N	2018-07-10	2018-07-13	40	0	0	0	Technical
7399	Orientation on the Roads and Bridges Information System (RBIS) for Provincial LGU'S Batch I	Technical	Department of the Interior and Local Governement		340	\N	2018-05-22	2018-05-25	32	0	0	0	Technical
7400	Seminar on Anti - Trafficking in Person and Anti- Violence against Women and Children	Managerial	Provincial Government of Bataan		340	\N	2018-05-11	2018-05-12	16	0	0	0	Managerial
7401	Occupational Safety and Health awareness of the Provincial Engineer's Office	Tecnical	Provincial Governemnt office		340	\N	2018-04-26	2018-04-27	16	0	0	0	Tecnical
7402	43rd Philippine Institute of Civil Engineers National Convention	Technical	Philippine Institute of Civil Service		340	\N	2017-11-28	2017-11-30	24	0	0	0	Technical
7404	Seminar-Workshop on Bridge Design with Computer Application (Using STAAD PRO V8i Elect Series 6 Under the CMGP Program)	Technical	Department of Interior and Local		340	\N	2017-05-29	2017-06-02	40	0	0	0	Technical
7407	Planning and Design of Flood Control Projects, Projects with Project Impact Analysis	Technical	Department of Public Works and Highways		340	\N	2016-09-26	2016-09-30	40	0	0	0	Technical
7408	Seminar-Workshop on the Preparation of Detailed Engineering Deisgn (DED) for Provincial Projects	Technical	Department of the Interior and Local Department		340	\N	2016-08-22	2016-08-26	40	0	0	0	Technical
7409	National Building Code of the Philippines (PD 1096) and It's Implementing Rules and Regulations	Technical	Department of Public Works and Highways		340	\N	2015-03-09	2015-03-13	40	0	0	0	Technical
7410	Basic Occupational Safety and Health for Construction Site Safety Officers	Technical	Department of Labor and Employment		340	\N	2014-02-03	2014-02-07	40	0	0	0	Technical
7411	Autocad 2012	Technical	Microcadd Pampanga		340	\N	2012-02-11	2014-04-14	70	0	0	0	Technical
7452	Behaviour-Based Safety Seminar 	Supervisory	LABSPEAK Safety Management Incorporated		341	\N	2018-12-04	2018-12-07	40	0	0	0	Supervisory
7454	Seminar-Workshop on the Development of Costumized Provincial Procurement Operations Manual under the CMPG Program	Supervisory	DILG		341	\N	2018-07-23	2018-07-27	40	0	0	0	Supervisory
7455	Construction Occupational Safety & Healt Course	Supervisory	LABSPEAK Safety Management Incorporated		341	\N	2018-07-10	2018-07-13	40	0	0	0	Supervisory
7457	Seminar Workshop on Detailed Procurement Process Property & Supply Management & Legal Remedies in Audit	Supervisory	JCAV		341	\N	2017-07-04	2017-07-06	24	0	0	0	Supervisory
7492	Seminar In The 7 Habits Of Highly Effective People		Peninsula Electric Cooperative		618	\N	2006-09-07	2006-09-08	16	0	0	0	
7493	Seminar On Falling Forward		Peninsula Electric Cooperative		618	\N	2004-10-14	2004-10-14	16	0	0	0	
7494	Seminar On Winning Attitude		Peninsula Electric Cooperative		618	\N	2004-11-27	2004-11-27	16	0	0	0	
7495	Seminar On Leadership		Peninsula Electric Cooperative		618	\N	2003-10-16	2003-10-17	16	0	0	0	
7496	Seminar On Basic Costumer Service, Ppi, Safety Proper Care Anf Trouble Shooting Of Vehicles		Peninsula Electric Cooperative		618	\N	2001-06-07	2001-06-08	16	0	0	0	
7497	Seminar Ion Consumer Relations Program		Peninsula Electric Cooperative		618	\N	2000-11-20	2000-11-21	16	0	0	0	
7502	UAP National Convention-Shift Shaking up the Architecture  Practice	Technical	SMX Convention Center,MOA/United Architects of the Philippines		343	\N	2017-04-27	2017-04-29	24	0	0	0	Technical
7503	Radio Communication Registration and Licnesing restricted Land Mobile Radiotelephone  Operation Land Mobile Services (RLM Certificate)	Technical	Louis Resort and Restaurant Balanga City Bataan		343	\N	2017-08-15	2017-08-17	24	0	0	0	Technical
7504	Basic Course on Project Development  and Management for LGU's	Technical	Dap Building, Pasig City/DAP		343	\N	2017-08-15	2017-08-17	24	0	0	0	Technical
9259	Patient Assesment				1416	\N	2016-07-20	2016-07-20	\N	0	0	0	
9286	Ramadan Training Program		Chilis Ezdan Mall Qatar 		1420	\N	2014-08-01	2014-08-01	\N	0	0	0	
7505	Training on Mainstreaming Green Growth in Development Planning (Part 1)	Technical	Provincial Library Conference Room, Balanga Bataan		343	\N	2017-09-05	2017-09-07	24	0	0	0	Technical
9240	Basic Occupational Safety and Health Training Course				1410	\N	2014-07-15	2014-07-19	\N	0	0	0	
7506	Follow Through Activity on Local Road Mapping & Completion of the Local Road Network Development Plan(LRNDP)	Technical	Vista Marina Subic Bay Freeport Zone		343	\N	2017-10-09	2017-10-13	40	0	0	0	Technical
7507	Training on Mainstreaming Green Growth in Development Planning (Module 2,3,4 &5)	Technical	Crown Royale Hotel Balanga GGGI & Provincial Government of Bataan		343	\N	2018-02-26	2018-05-10	72	0	0	0	Technical
7508	Seminar Coaching Session 1 : Enchancement of the Provincial Development and Physical Framwork Plan	Technical	Crown Royale Hotel Balanga GGGI & Provincial Government of Bataan		343	\N	2018-08-13	2018-09-27	80	0	0	0	Technical
7509	Mainstreaming Green Growth in Development Planning Project, Final Evaluation	Technical	Astoria Plaza Hotel, Pasig City , GGGI		343	\N	2018-11-12	2018-11-14	24	0	0	0	Technical
7510	Mainstreaming Green Grownth in Development Planning Project,Final Evaluation	Technical	Astoria Plaza Hotel, Pasig City,GGGI		343	\N	2018-11-12	2018-11-14	24	0	0	0	Technical
12614	Strategic Planning Management		Philippine Cooperative Development Office- Bataan/ Land Bank		2208	\N	2009-05-13	2009-05-14	16	0	0	0	
12615	Human Resource Management (3rd module)		Philippine Cooperative Development Office- Bataan/ Land Bank		2208	\N	2007-10-18	2007-10-19	16	0	0	0	
12616	Member Savings Operation Seminar		Bataan Cooperative Bank		2208	\N	2007-07-20	2007-07-20	8	0	0	0	
12617	Coop Pesos Seminar		Bataan Cooperative Bank/ Land bank		2208	\N	2006-11-28	2006-11-29	16	0	0	0	
12618	Cooperative Governance Seminar		Bataan Cooperative Bank/ Land Bank/ Philippine Cooperative Development		2208	\N	2006-07-20	2006-07-21	16	0	0	0	
12619	Credit Management Orientation		Bataan Cooperative Bank		2208	\N	2005-03-08	2005-03-08	8	0	0	0	
12620	Effective Business Writing		Business One		2208	\N	2005-02-03	2005-02-03	8	0	0	0	
12621	Clerical Development and Secretsrial Enhancement Program		San Pabo City Water District		2208	\N	2004-06-22	2004-06-24	24	0	0	0	
12622	Tellers and Cashiers Seminar Workshop		Baguio City Water District		2208	\N	2004-03-10	2004-03-12	24	0	0	0	
12623	Basic Business Correspondence Seminar		Local Water Utilities Administration		2208	\N	2002-09-24	2002-09-26	24	0	0	0	
12624	Productivity Improvement Seminar		Department of Trade and Industry- Balanga		2208	\N	2002-03-19	2002-03-19	8	0	0	0	
12625	Seminar on Revised Policies on Performance evaluation System		Civil Service Commission		2208	\N	2002-01-10	2002-01-10	8	0	0	0	
8797	CPD:Streghtening the Roles of Pharmacist on Mental Health : No Health Without Mental Health		Centro Escolar University		1131	\N	2018-10-20	2018-10-20	8	0	0	0	
8799	Training on Learning Package on Pament Education on Adolescent Health and Development for DOH III Local Health Service Providers		Commission on Population		1439	\N	2018-07-16	2018-07-20	\N	0	0	0	
8800	Focused on Accelerated Strategies to Reduce Unmet Need for Family Planning (FP Fast Run)		Department of Health, Region III		1439	\N	2018-05-16	2018-05-17	\N	0	0	0	
8801	Youth for Youth		Department of Health, Region III/Commission on Population		1439	\N	2018-04-02	2018-04-06	\N	0	0	0	
8802	5th RCMC National Infection Control Symposium		Royal Commission Medical Center, Infection Control Department		1439	\N	2016-11-02	2016-11-03	\N	0	0	0	
8803	Cardiopulmonary Resuscitation		Saudi Heart Assocation		1439	\N	2016-02-02	2016-02-02	\N	0	0	0	
8804	 International Patient Safety Goals (IPSG)		Al-Haisus Education and Training Institute		1439	\N	2015-06-02	2015-06-02	\N	0	0	0	
8805	Hazardous Materials (HAZMAT)		Al-Haisus Education and Training Institute		1439	\N	2015-06-16	2015-06-16	\N	0	0	0	
8806	Fire Safety Training		Al-Haisus Education and Training Institute		1439	\N	2015-07-01	2015-07-01	\N	0	0	0	
8807	Infection Control		Al-Haisus Education and Training Institute		1439	\N	2015-06-09	2015-06-09	\N	0	0	0	
8808	Faculty Management and Safety		Al-Haisus Education and Training Institute		1439	\N	2015-06-30	2015-06-30	\N	0	0	0	
8809	Appropriate Use of Personal Protective Equipment (PPE)		Al-Haisus Education and Training Institute		1439	\N	2015-06-23	2015-06-23	\N	0	0	0	
8810	Occurrence Variance Report (OUR) and Sentinel Events		Al-Haisus Education and Training Institute		1439	\N	2015-07-21	2015-07-21	\N	0	0	0	
7536	RECORDS MANAGEMENT		PCEDO, COA		264	\N	2013-09-06	2013-09-06	8	0	0	0	
7537	AUDIT MANAGEMENT		PCEDO, COA		264	\N	2013-06-26	2013-06-28	24	0	0	0	
7538	PROJECT PROPOSAL WRITING		PCEDO, COA & IPCSED		264	\N	2013-04-25	2013-04-25	4	0	0	0	
7539	POLICY DEVELOPMENT		PCEDO, COA & IPCSED		264	\N	2013-04-25	2013-04-25	4	0	0	0	
7540	STRATEGIC PLANNING		PCEDO & DOLE		264	\N	2013-03-21	2013-03-22	20	0	0	0	
7541	ORIENTATION SEMINAR ON LABOR AND OTHER RELATED LAWS		PCEDO, COA		264	\N	2012-10-30	2012-10-30	4	0	0	0	
7542	INTERNAL CONTROL		PCEDO, COA		264	\N	2012-10-15	2012-10-17	24	0	0	0	
7543	BASIC ACCOUNTING NFOR NON ACCOUNTANTS		PCEDO, COA		264	\N	2012-09-06	2012-09-08	24	0	0	0	
7544	COOPERATIVE MANAGEMENT AND GOVERNANCE		PCEDO, COA		264	\N	2012-06-26	2012-06-28	24	0	0	0	
7545	LEADERSHIP AND VALUES RE-ORIENTATION SEMINAR		PCEDO, COA		264	\N	2012-05-28	2012-05-29	16	0	0	0	
7546	FINANCIAL MANAGEMENT		PCEDO, COA		264	\N	2012-05-09	2012-05-11	28	0	0	0	
12626	Data Privacy Act		BPSU- Graduate School Master in Public Administration		2209	\N	2019-07-20	2019-07-20	3	0	0	0	
9227	Gatekeeping in Primary Healthcare as Effective Tool for Service Delivery Network Training Workshop		BGHMC		1411	\N	2019-02-13	2019-02-13	\N	0	0	0	
9231	Hirarc and Oshas 18001 Awareness Training		AVIE Training and Consultancy Training		1413	\N	2017-12-23	2017-12-23	\N	0	0	0	
9237	The Changing Landscape of Immunization in the Philippines				1410	\N	2018-11-15	2018-11-16	\N	0	0	0	
9239	Occupational First Aid CPR Course				1410	\N	2016-05-31	2016-06-03	\N	0	0	0	
9246	On the Job Training		Bataan General Hospital		1408	\N	2017-06-04	2017-08-08	\N	0	0	0	
9247	Expect Reality		Louis Resort and Restaurant		1408	\N	2017-10-14	2017-10-14	\N	0	0	0	
9248	A Day in the Life of a Sofware Test		Louis Resort and Restaurant		1408	\N	2017-10-14	2017-10-14	\N	0	0	0	
9260	Basic Life Support Provider Course				1416	\N	2015-04-08	2015-04-08	\N	0	0	0	
9288	FQAS Forum		DOH-Lung Center of the Philippines 		1421	\N	2018-03-22	2018-03-22	\N	0	0	0	
9289	Forum on Strategic Plan of Regional Laboratory Network Council in Region 3		DOH Region III		1421	\N	2017-09-07	2017-09-07	\N	0	0	0	
9290	Orientation on the Online Survey of Laboratory Containment of Poliovirus		DOH Region III		1421	\N	2017-05-23	2017-05-23	\N	0	0	0	
9291	Workshhop on Quality Management System 		DOH Region III		1421	\N	2016-08-16	2016-08-16	\N	0	0	0	
12627	Seminar on Anti-trafficking in Person and Anti-Violence Against Women and Children		Provincial Government of Bataan		2209	\N	2018-05-11	2018-05-12	16	0	0	0	
12629	Contract Management and Construction Supervision		DILG		2209	\N	2017-11-13	2017-11-17	32	0	0	0	
12630	Effectiveness Training for Magna Carta for Women		Provincial Government of Bataan		2209	\N	2017-11-27	2017-11-28	16	0	0	0	
12631	National Civil Engineering Symposium		University of the Philippines- Diliman		2209	\N	2015-09-10	2015-09-10	8	0	0	0	
12644	Department of Agriculture, Mapagmalasakit Program: Back to BasicsL Livestock Production Advocacy Seminar		Department of Agriculture- Agricutural Training Institute		2211	\N	2019-07-03	2019-07-03	8	0	0	0	
12645	Forage and Pasture and Goat Production		Department of Agriculture, Region III		2211	\N	2019-04-10	2019-04-10	8	0	0	0	
12646	Skills Training on Diversity Farming		Provincial Social Welfare and Development Officer		2211	\N	2019-02-24	2019-02-26	24	0	0	0	
12647	Fast Start Accreditation Program		The Insular Life Assurance Company,  Ltd.		2211	\N	2017-11-10	2017-11-10	8	0	0	0	
7638	Training Program on Mainstreaming Green Growth in Development Planning Project	MSMED Planning 	DTI		883	\N	2018-05-29	2018-05-30	16	0	0	0	MSMED Planning 
7639	Training on Mainstream Green Growth  in Development Planning Project	Planning Development	Global Green Growth Institute/PGENRO		883	\N	2017-09-05	2017-09-07	24	0	0	0	Planning Development
7750	On the Job Training(MUSHROOM)		AGRO STUDIES		879	\N	2014-04-26	2017-04-26		0	0	0	
7751	Proper Procedure of Soil Sample		Regional Soil Lab		879	\N	2018-09-27	2018-09-27	8	0	0	0	
12649	How to start and operate a meat shop		Business Coach		2211	\N	2010-11-06	2010-11-06	8	0	0	0	
12650	Talakayan sa Radyo, DZMM ABS CBN: "Swine Raising"		DZMM ABS CBN/ Buhay sa Kabukiran Foundation Inc.		2211	\N	2008-01-06	2008-01-06	8	0	0	0	
12651	SFCI: Basic Training Course		Sarimanok feeds company, Incorporated		2211	\N	2004-09-27	2004-10-09	112	0	0	0	
7796	Training of Trainers on Hybrid Rice Production for Agricultural Extension Workers	ATI-RTC III	Agricultural Training Institute Regional Training Center III		881	\N	2018-04-30	2019-04-18	96	0	0	0	ATI-RTC III
7797	Orientation on Good Agricultural Practices for Agricultural Extension Workers in Region III	DA-RFO III	Department of Agriculture Regional Field Office III		881	\N	2018-05-29	2018-05-30	10	0	0	0	DA-RFO III
7798	Training on Rice Crop Manager Dessemination	DA-RFO III	Department of Agriculture Regional Field Office III		881	\N	2018-06-20	2018-06-21	10	0	0	0	DA-RFO III
7640	Training of Trainers(TOT) on Hybrid Rice Production for AEW's in Region 3	TOT	Agriculture Training Institute		883	\N	2017-04-30	2017-05-04	40	0	0	0	TOT
7641	Good Agricultural Practice for Mango Production		Provincial Agriculturist Office		883	\N	2016-11-03	2016-11-04	16	0	0	0	
7642	Good Agricultural Practices For Banana Production		Provincial Agriculturist Office		883	\N	2016-06-28	2016-06-30	24	0	0	0	
8822	Regular Intravenous Training Program 		Association of Nursing Service Administrators of the Philippines		2022	\N	2016-08-03	2016-08-05	\N	0	0	0	
8823	Updates and Reformulation of School Health and Nutrition		Department of Education - Bataan		2022	\N	2017-05-22	2017-05-23	\N	0	0	0	
8824	Stakeholders and HRH Point Person Engagement for the Implementationof Health Progragms		Department of Health - Bataan		2022	\N	2017-05-02	2017-05-02	\N	0	0	0	
8825	Division Orientation Seminar on the Implementation and Management of School Canteen		Department of Education - bataan		2022	\N	2017-06-20	2017-06-20	\N	0	0	0	
8826	Consultative Meeting on Enhancing Performance for Harmonized Shedule and Combind Mass Drug Administration		Department of Health - Bataan		2022	\N	2017-06-29	2017-06-29	\N	0	0	0	
8827	Training of Trainors on Mental health and Psychological Support Service (MHPSS) - School Mental Health		Department of Education - Central Office		2022	\N	2017-08-29	2017-09-01	\N	0	0	0	
8828	Division Orientationon operational Guidelines on the Implementation of School-Based Feeding Program for 2017-2018		Department of Education - Bataan		2022	\N	2017-09-18	2017-09-18	\N	0	0	0	
8829	Quality Management System and ISO 9001:2005 Foundation Course		Department of Education - Bataan		2022	\N	2017-10-09	2017-10-09	\N	0	0	0	
8830	International Seminar-Workshop for Language Teaching and Research for Teachers in All Levels		Institute of Leaders in Educational Advancement and Development		2022	\N	2017-12-01	2017-12-03	\N	0	0	0	
8831	Trainingof Trainors on Hands Only Cardipulmonary Resuscitation		Provincial Disaster Risk Reduction and Management Council		2022	\N	2017-12-13	2017-12-13	\N	0	0	0	
8832	Resource Speaker in the Regional Training on Mental Health and Psycho-Social Support (MHPSS)		Department of Education - Region III		2022	\N	2017-12-19	2017-12-20	\N	0	0	0	
8833	Strategic Planning and Finalization of Programs and Project of School Health and Nutrition		Department of Education		2022	\N	2018-01-24	2018-01-25	\N	0	0	0	
8834	Department of Education Bataan Schools Division Office Team Enchancement		Department of Education - Bataan		2022	\N	2018-05-16	2018-05-18	\N	0	0	0	
8835	Resource Speaker on Hands Only CPR in Training-Workshop of Administrative Aides on Arts and Craft, Basic Electrical Wiring, Carpentry and Masonry		Department of Education  - Bataan		2022	\N	2018-05-24	2018-05-25	\N	0	0	0	
8836	Resource Speaker on Lecture about Hands Only CPR		Department of Education - Bataan		2022	\N	2018-05-30	2018-05-30	\N	0	0	0	
8837	Resource Speaker on Lecture About Hands Only CPR		Department of Education - Bataan		2022	\N	2018-05-31	2018-05-31	\N	0	0	0	
8838	Division Orientation on School-Based Feeding Program (SBFP) FY 2018		Department of Education - Bataan		2022	\N	2018-06-27	2018-06-27	\N	0	0	0	
7669	Training Farm Assestment and Planning Workshop Under the Project Capacity Enchancement of Agriculture		Department of Agriculture Regional Field Office III		873	\N	2018-12-05	2019-01-09	40	0	0	0	
7670	Training on Mass Production and Utilization of Biological Control Agent		Department of Agriculture Rice Crop Protection Center III		873	\N	2018-11-27	2018-11-28	16	0	0	0	
7671	5th Regional Organic Agriculture Congress		Department of Agriculture Regional Field Office III		873	\N	2018-09-25	2018-09-27	24	0	0	0	
7672	NCII Organic Agriculture Production		Agriculture Training Institute		873	\N	2018-05-19	2018-05-28	40	0	0	0	
7673	Orientation on Gender Development (GAD) Basic Concepts and Issues Cum Team Building for Agriculture Office Staff		Office of the Provincial Agriculturist/Provincial Population Office		873	\N	2018-05-18	2018-05-19	16	0	0	0	
7674	Training on Organic Livestock and Poultry Production		Department of Agriculture Regional Field Office III		873	\N	2018-04-25	2018-04-25	8	0	0	0	
7675	Trainig on Mushroom Processing 		Department of Agriculture Regional Field Offfice III		873	\N	2018-03-13	2018-03-13	8	0	0	0	
7676	Seeds Production Training		Department of Agriculture Regional Field Office III		873	\N	2018-02-21	2018-02-23	24	0	0	0	
7677	13th National Organic Agriculture Congress		Department of Agriculture REgional Field Office III		873	\N	2017-11-23	2017-11-25	24	0	0	0	
7888	Disaster Preparedness Training on First Aid, Lifting and Moving Bandaging with Basic Life Support		PDRRMC Bataan		1659	\N	2015-02-13	2015-02-14	\N	0	0	0	
7890	NC II Instrumentation and Control Servicing		Electro Technical Institute		1660	\N	2017-03-01	2017-04-01	\N	0	0	0	
12652	Basic Course in House/ Construction Painting		TESDA/ Dutch Boy Philippines		2211	\N	2000-10-23	2000-10-27	40	0	0	0	
12653	2-Day Multisectoral Leader's Workshop and Planning Conference		Angeles City Clean and Green Council		2211	\N	1999-03-24	1999-03-25	16	0	0	0	
12654	Visual Basic		Computer Dynamics		2211	\N	1999-10-02	1999-10-02	8	0	0	0	
12655	Seminar on the CPA Board Exams		Junior Philippine Institute of Accountants Republic Center Colleges Chapter		2211	\N	1999-03-13	1999-03-13	8	0	0	0	
7719	Fish Examiner's Training		Bureau of Fisheries and Aquatic Resources Reg III		874	\N	2018-11-05	2018-11-16	96	0	0	0	
7721	Attended 13th Agriculture and Fisheries and Technology Forum and Exhibition		Department of Agriculture-Bureau of Agricultural Research 		874	\N	2018-08-07	2018-08-07	8	0	0	0	
7722	Training on Bottling of Milfish and Overview on Current Good Manufacturing Practices		Bureau of Fisheries and Aquatic Resources Reg III		874	\N	2018-05-31	2018-05-31	8	0	0	0	
7723	Training Workshop on Investment Proposal Development from the PCIP		Department of agriculture Regional Field Office III		874	\N	2018-05-02	2018-05-04	24	0	0	0	
7724	Seminar-Workshop on News and Feauture Writing, Radio Broadcasting Basic Photography and Layouting		Central Luzon State University		874	\N	2017-07-05	2017-07-07	24	0	0	0	
7725	Orientation and Consultation on Mangrove Rehabilitation Projects With Emphasis Geo Tagging and Mapping		Bureau of Fisheries and Aquatic Resources Reg III		874	\N	2017-04-11	2017-04-12	16	0	0	0	
7726	Integrated Coastal Management Orientation		Provincial Government and NAtural Resources Office/Partnership in Environmental Management for Seas of East Asia (PAMSEA)		874	\N	2017-02-23	2017-02-24	16	0	0	0	
7727	Seminar on Soft-Shell And Mudcrab Fatteing		Bureau of Fisheries and Aquatic Resources Reg III		874	\N	2016-10-28	2016-10-28	8	0	0	0	
7728	Training on Soft Shell Crab Production and Management		Bureau of Fisheries and Aquatic Resources-National Brackish Water Fisheries Technology Center (BFAR-NBFTC)		874	\N	2016-08-23	2016-08-31	64	0	0	0	
7729	National Certificate in Aquaculture		Bataan School of Fisheries		874	\N	2016-03-05	2016-03-05	8	0	0	0	
7730	Seminar on Soft-Shell Crab Fattening,Vermiculture & Vermicast Production		Bureau of Fisheries and Aquatic Resources Reg III		874	\N	2015-12-14	2015-12-14	8	0	0	0	
7731	On the Job Training on Various Aquaculture and Post-Harvest Technlogies		Bureau of Fisheries and Aquatic Resources-National Integrated Fisheries Technology Development Center (BFAR-NIFTDC)		874	\N	2015-04-22	2015-05-28	24	0	0	0	
7732	Training/Seminar on Brakishwater Agriculture		Bureau of Fisheries and Aquatic Resources Reg III		874	\N	2015-03-17	2015-03-17	8	0	0	0	
7736	Workshop on Road Asset Management and Promoting Transparency and Integrity under the CMGP Program	Technical	Deprtment of Interior and Local Government		1087	\N	2018-06-04	2018-06-08	\N	0	0	0	Technical
7737	Philippine Institute of Civil Engineers' 2017 National Midyear Convention	Technical	Philippine Institute of Civil Engineers		1087	\N	2017-06-15	2017-06-17	\N	0	0	0	Technical
7738	Philippine Institute of Civil Engineers' 15th Region III TechnicL Conference	Technical	Philippine Institute of Civil Engineer		1087	\N	2017-05-26	2017-05-27	\N	0	0	0	Technical
7739	Business Tax Mapping Seminar	Technical	City Government of Bataan		1087	\N	2016-09-26	2016-09-26	\N	0	0	0	Technical
7740	Distance Learning Program on the Rules of Conduct and Ethical Behavior	Managerial	Civil Service Commission		1087	\N	2016-03-22	2016-05-02	\N	0	0	0	Managerial
7741	STAAD.PROv8I	Technical	MICROADD		1087	\N	2015-10-25	2015-11-29	\N	0	0	0	Technical
7742	Public Speaking	Technical	City Government of Bataan		1087	\N	2015-09-02	2015-09-02	\N	0	0	0	Technical
7743	AutoCAD 2015 with Color Rendering	Technical	MICROADD		1087	\N	2015-05-09	2015-07-07	\N	0	0	0	Technical
7744	Driving Lesson	Technical	ABG Driving School		1087	\N	2015-11-30	2015-12-07	\N	0	0	0	Technical
7745	Training Workshop on Geographic Information System	Technical	City Government of Balanga		1087	\N	2014-09-23	2014-09-30	\N	0	0	0	Technical
7749	Certificate of Agricultural Science 		Agro Studies BPSU		879	\N	2013-06-07	2015-04-26		0	0	0	
9255	Hospital TB Dots Training 	Technical	 Department of Health Region III		207	\N	2018-06-20	2018-06-21	12	0	0	0	Technical
9256	28th PNA Regioan III Annual Convetion "Health Care System " Resilience a Continuin Challenge for a Nurse	Technical	Philippine Nurses Association		207	\N	2016-12-03	2016-12-03		0	0	0	Technical
7826	Synchronization and Artificial Insemination of Carabao and Cattle	Technical	Deparmentt of Regional Agriculture Office III		884	\N	2018-09-17	2018-09-22		0	0	0	Technical
9167	Remote Support		Mrs. Rossette Sarmiento		1403	\N	2015-08-28	2015-08-28	\N	0	0	0	
9258	Intensive Trauning Recognigiton and of the Common Skin Disesase and Leprosy	Technical	Department of Health Research Institute for Tropical Medicine		207	\N	2014-11-10	2014-11-14	40	0	0	0	Technical
9269	Review and Revision of Policies and Standard of Hospital Pharmacy Management Manual for Chpater on Financial Management and Risk Management		DOH Healthy Facility Development Bureaus & Mariveles Mental Hospital		203	\N	2018-09-18	2018-09-20	24	0	0	0	
13707	Flower Arrangement and Candle Making	\N	MCDC	\N	0	\N	2018-10-26	2018-10-26	10	0	0	0	 
9270	Hospital Pharmacy Forum: Chemical Pharmacy and Anti Microbial Stewardship Strategies		The Philippines Society of Hospital Pharmacist		203	\N	2018-08-25	2018-08-25	8	0	0	0	
12657	AFC-CAPE Competency Advancement in Policy Making and Engagement for Agriultural and Fishery Council		Philippine Council for Agriculture and Fisheries (PCAF) and Center for Leadership, Citezenship and Democracy (CICD)		2214	\N	2018-12-09	2018-12-12	32	0	0	0	
12658	Training on Rice Crop Manager Dissemination		Department of Agriculture RFOIII		2214	\N	2018-06-20	2018-06-21	16	0	0	0	
12659	Orientation on Good Agricultural Practices (GAP) for AEW		Department of Agriculture RFOIII		2214	\N	2018-05-29	2018-05-30	16	0	0	0	
12660	Womens Leaders and Aspiring Women Leaaders "Comelec Gender and Development Seminar"		Commission on Elections Office of the Election Officer- Abucay Bataan		2214	\N	2018-03-21	2018-03-21	8	0	0	0	
12661	Capability Building on Bamboo Nursery and Plantation Technology		Department of Trade and Industry and BPSU Abucay Campus		2214	\N	2018-03-08	2018-03-09	16	0	0	0	
12662	Training on Charcoal Production and Briquetting		PHILMECH/ Bpsu Abucay Campus		2214	\N	2017-06-08	2017-06-09	16	0	0	0	
12670	Training on Mushroom Processing 		DA		2215	\N	2018-03-13	2018-03-13	8	0	0	0	
12671	Farmers Fied School on Organic Vegetables Production		DA/LGU/OPA		2215	\N	2016-11-24	2017-03-16	32	0	0	0	
12672	Experience Base Enhancement Training on Organic Agriculture		AM		2215	\N	2017-09-05	2017-09-07	24	0	0	0	
12673	Geo Tagging Training		DA		2215	\N	2017-08-25	2017-09-26	16	0	0	0	
7799	Rice Pest Management Training Course for Agricultural Extension Workers	DA-RFO III	Regional Crop Protection 		881	\N	2017-10-03	2017-10-05	72	0	0	0	DA-RFO III
7800	Playcheck Field School	OPA	Department of Agriculture Regional Field Office III		881	\N	2017-07-26	2017-10-26	80	0	0	0	OPA
7801	Consutation Workshop and Assesment on High Value Crops and Development Program	ATI-RTC 3	Agricultural Training Institute Regional Training Center III		881	\N	2019-02-19	2019-02-21	72	0	0	0	ATI-RTC 3
7802	Seminar on Philippine National Standards on Organic Agriculture	DA-RFO 3	Department of Agriculture Regional Field Office III		881	\N	2019-06-03	2019-07-03	48	0	0	0	DA-RFO 3
7803	AFC Cafe Competency Advantagement in Policy Making and Improvement for Agriculture and Fishery Council	Technical	Philippine Council for Agriculturaland Fishery (PCAF) and Center for Leadership Citizenship and Democracy (CLOD)		880	\N	2018-10-09	2018-10-12	32	0	0	0	Technical
7804	Training for Rice Crop Manager Dissemination	Technical	Department of Agriculture RFOIII		880	\N	2018-06-21	2018-06-22	16	0	0	0	Technical
7805	Orientation in Good Agricultural Practices (GAP) For New	Technical	Department of Agriculture RFOIII		880	\N	2018-05-29	2018-05-30	16	0	0	0	Technical
7806	Women Leaders and Aspiring Womens Leaders"and Development Seminar	Supervisory	Comelec Abucay Bataan		880	\N	2018-03-21	2018-03-21	8	0	0	0	Supervisory
7807	Capability Building on Bamboo Nursery and  Plantation Technology	Technical	BPSU Abucay Campus And DTI Balanga		880	\N	2018-08-03	2018-09-03	16	0	0	0	Technical
7821	Fisherly Law Enforcement Training and Capability Building Workshop	Technical	Bureau of Fisheries and Aquatic Resources III		877	\N	2018-09-18	2018-09-19	16	0	0	0	Technical
7822	Seminar on Post Harvest Technology 	Technology	Bataan Peninsula State University		877	\N	2015-02-06	2015-02-06	8	0	0	0	Technology
7823	On-The-Job Training	Technical	Bataan Peninsula State University		877	\N	2014-04-07	2014-05-23	360	0	0	0	Technical
7824	Training/Seminar on Brackishwater Culture	Technical	Bureau of Fisheries and Aquatic Resources III		877	\N	2015-02-02	2015-02-02	8	0	0	0	Technical
7825	Seminar on FIsh Deboning and Gourmet Preparation	Technical	Bataan Peninsula State University		877	\N	2013-11-07	2013-11-07	8	0	0	0	Technical
7827	Hands-on Training on Planting Harvesting Reports Using Google Sheets	Technical	Deparmentt of Regional Agriculture Office III		884	\N	2018-09-11	2018-09-13		0	0	0	Technical
7828	3rd Agricultural Extension Worker Congress (AEW's)	Technical	Provincial Agriculture Office		884	\N	2018-07-06	2018-07-06		0	0	0	Technical
7829	Retooling of Rice Crop Manager (RCM) Dessimination	Technical	Deparmentt of Regional Agriculture Office III		884	\N	2018-06-27	2018-06-28		0	0	0	Technical
7830	Orientation on Integrated Coastal Management	Technical 	Enro-BATAAN		884	\N	2018-03-27	2018-03-27		0	0	0	Technical 
7835	National Basic Meat Processing Seminar	Technical	Ati- International training enter on PIG Husbundry(Lipa,Batangas)		884	\N	2015-05-15	2017-05-17		0	0	0	Technical
7836	Organic Fertilizer Seminar	Technical	Deparmentt of Regional Agriculture Office		884	\N	2017-03-21	2017-03-23		0	0	0	Technical
7837	Geo-Referencing for Rice Crop Manager	Technical	Provincial Agriculture Office		884	\N	2017-06-05	2017-06-05		0	0	0	Technical
7838	Seminar For Geotagging of Rice	Technical	Provincial Agriculture Office at Angeles, Clark, Pampanga		884	\N	2016-08-25	2016-08-26		0	0	0	Technical
7839	Farmers Field school (Palay Check)	Technical	Provincial Agriculture Office		884	\N	2015-02-08	2015-05-15		0	0	0	Technical
7840	Training Course on Agricultural Practices for Mango	Technical	Provincial Agriculture Office		884	\N	2014-08-11	2014-08-13		0	0	0	Technical
7841	Training Course for Carabao Pregnancy Diagnosis and Artificial Insemmination	Technical	Philippine Carabao Center at Nueva Ecija		884	\N	2014-11-18	2014-12-11	0	0	0	0	Technical
7842	Special Course Diary Farm Management Trainee	Technical	Mindanao State University a Musuan Bukidnon Minadao		884	\N	2013-06-05	2013-10-18		0	0	0	Technical
7845	Traininers Training on Freshwater Aquaculture Livehood Technologies	Technical	BFA-RF3 and VillaSIPAG Foundation		882	\N	2019-01-22	2019-01-25	32	0	0	0	Technical
7847	Fishery Law Inforcement Training and Capability Workshop (Deputation of Fish Warden)	Technical	BFAR-RF3		882	\N	2018-09-18	2018-09-19	16	0	0	0	Technical
7848	Helping Individuals Reach for Employment:Empowering the New Members of the Labor Force		BPSU and Dole		882	\N	2018-04-12	2018-04-12	8	0	0	0	
7849	On the Job Training on Diverse Aquaculture and Post-Harvest Technologies	Technical	BFAR National Integrated Fiosheries Technology Development CEnter,Bonuan Binloc,Dagupan City		882	\N	2017-06-14	2017-07-24	240	0	0	0	Technical
7850	Seminar on Environmental Science and Management	Technical 	Bataan Peninsula State University - OC		882	\N	2017-03-22	2017-03-22	8	0	0	0	Technical 
9329	Professionalism Beyond Gender Issues	Technical	Provicnial Population Office 		237	\N	2016-06-24	2016-06-25		0	0	0	Technical
7851	Training and Field Tour on Soft Shelled Craw Production and Crab Fattening	Technical	BFAR-National Brakishwater Fisheries Technology CEnter,Pagbilao,Quezon Province		882	\N	2017-01-31	2017-02-03	32	0	0	0	Technical
7852	Seminar on Prohibited Drugs		Bataan Peninsula State University - OC		882	\N	2017-11-13	2017-11-13	8	0	0	0	
7853	Seminar on Anti Bullying and Cybercrime		Bataan Peninsula State University - OC		882	\N	2016-09-20	2016-09-20	8	0	0	0	
7854	Seminar on Volunteerism and Green Movement		Bataan Peninsula State University - OC		882	\N	2016-01-27	2016-01-27	8	0	0	0	
7858	Technical Conference on Agricultural Mechanization and Post Harvest Faculty		Philippine Center of Post Harvest Development and Mechanization		875	\N	2017-02-12	2017-02-15		0	0	0	
7859	Training on Rice Crop Manager(RCM) Dessemination		International Rice Research Institute		875	\N	2018-06-20	2018-06-21		0	0	0	
7860	Rice Machienery Operations (NCII)		Agricultural Training Institute		875	\N	0001-01-01	0001-01-01		0	0	0	
9279	National Hospital Advocacy: Ensuring the Safety. Efficiency and Quality of Drug Products through Regulation and Promoting and Irationalle mse		FDA DOH Region III Pampanga		203	\N	2015-08-29	2015-08-30	16	0	0	0	
9280	CPE:Filipino Pharmacist for the Filipino PEaople Ensuring Better Health Care Medicines and Services		CPE (PPHA) Bataan Chapter		203	\N	2015-08-08	2015-08-08	7	0	0	0	
9281	Unimed (Optimum HJealth Outcomes Through Medication Safety 2)		Unilab Medical Educaiton & Development		203	\N	2015-06-11	2015-06-11	4	0	0	0	
9282	CPE' Access to Pharmacist, Access to Better Health 		CPE (PPHA) Bataan Chapter		203	\N	2014-08-09	2014-08-09	8	0	0	0	
9283	Uplifting the Hospital Practice		PSHP - Laguna Center Quezon City		203	\N	2014-06-27	2014-06-27	3	0	0	0	
9300	Dangerous Drug Abuse Prevention & treatment Program Cooperators Orientation & Updates	Technical	Department of Health Regional Office III		253	\N	2018-06-26	2018-06-27	16	0	0	0	Technical
9301	Orientation on the Guidelines for Community-Based Treatment & Support Sevices for Persons Who use Drugs in Primary Health Care Setting	Technical	Department of Health Regional Office III		253	\N	2018-05-07	2018-05-08	16	0	0	0	Technical
9302	Program Implementation Review - Dangerous Drug Abuse Prevention and Treatment Program	Technical	Department of Health Regional Office III		253	\N	2018-03-20	2018-03-20	16	0	0	0	Technical
9303	Training on Screening & Evaluation of Drub Abusers	Technical	Department of Health Regional Office III		253	\N	2018-01-24	2018-01-26	24	0	0	0	Technical
9304	Substance Related and Addictive Disorders:Recognition and Management	Technical	Veterans Memorial Medical Center		253	\N	2017-04-21	2017-04-21	8	0	0	0	Technical
9305	Incident Comman System 3: Position Title Course	Managerial	Office of Civil Defense 3		253	\N	2017-03-06	2017-03-10	40	0	0	0	Managerial
9306	Integrated Planning Course on Incident Command System 	managerial 	Office of Civil Defense 3		253	\N	2016-08-15	2016-08-19	40	0	0	0	managerial 
9308	Bnb Consultative Meeting and Presentation of 2017  DOD BuB Menu of Programs 	Managerial	Civil Service Commission and Regional Office no 3		253	\N	2016-02-09	2016-02-09	8	0	0	0	Managerial
9309	Seminar Workshop on Revised Rules and Administrative Cases in the Civil Cases int he Civil Service	Managerial 	Civil Service Commission Regional Office No. 3		253	\N	2015-10-28	2015-10-29	16	0	0	0	Managerial 
9310	Hospital Stakeholders Meeting and Updates on the New Assessment Tool and Harmonized Work Instructions	Managerial	Department of Health Regional Office III		253	\N	2015-10-13	2015-10-13	8	0	0	0	Managerial
7931	In-House Training (In-House Refresher Seminar)		Lockheed		1863	\N	2012-09-10	2012-09-11	\N	0	0	0	
7932	Bomb Identification, Improvised Explosive Device (IED) Recognition Techniques and Bomb Threat Management		PNP Camp Tolentino		1863	\N	2010-03-24	2010-03-25	\N	0	0	0	
7934	Jail Management, Moral Recovery and Spiritual Awareness Seminar		Provincial Warden Office		1863	\N	2008-05-16	2008-05-17	\N	0	0	0	
7936	Disaster Preparedness Seminar for Local Chief Executive of Bataan		NDCC and Provincial Disaster Coordinating Council-Bataan		1863	\N	2005-05-12	2005-05-13	\N	0	0	0	
7937	Basic Computer Literacy		Softnet-CST/City of Balanga/TESDA Bataan		1863	\N	2003-05-19	2003-05-22	\N	0	0	0	
7939	Comprehensive Real Estate Seminar for Appraiser		CES Academy		78	\N	2015-04-24	2015-05-24	\N	0	0	0	
7940	14th National Convention"PAAO, Inc : Imparting a Legacy of Professionalism in Real Estate Service"	Techhnical	PAAO, Inc	32	78	\N	2019-01-29	2019-02-01	\N	0	0	0	Techhnical
7942	Managers Role in Capacity Building	Managerial	CSC/CSI		78	\N	2018-04-19	2018-04-20	\N	0	0	0	Managerial
7943	13th National Convention "PAAO, Inc: Igniting a Culture of Excellence in Real Estate Service"	Technical	PAAO, Inc		78	\N	2018-05-29	2018-06-01	\N	0	0	0	Technical
7944	12th National Convention " PAAO, Inc: Driving Professional Growth for LGU's Dynamism"	Technical	PAAO, Inc		78	\N	2017-05-02	2017-05-05	\N	0	0	0	Technical
7945	Supervisory  Developmental Course Track I	Supervisory	CSC/ PHRMO		78	\N	2016-11-15	2016-11-17	\N	0	0	0	Supervisory
7971	Orientation On Gad Basic Concepts		Team Building		649	\N	2016-05-27	2016-05-28	16	0	0	0	
7946	Cluster Training for the Roll out of LGU Integrated Fiscal Tools (LIFT)	Technical	BLGF		78	\N	2016-11-08	2016-11-22	\N	0	0	0	Technical
7947	Fiscal Managers: Taking Charge of Change		BLGF		78	\N	2016-07-21	2016-07-22	\N	0	0	0	
7948	Race to Finish-the Measure of Tomorrow		BLGF Region III		78	\N	2015-12-09	2015-12-10	\N	0	0	0	
7949	Property  Assessment and Tax Administration System User's Training and Distribution of Computer Hardwares		GEODATA SOLUTIONS, INC		78	\N	2015-11-09	2015-11-10	\N	0	0	0	
7950	3rd Quarter Regional Conference		BLGF Region III		78	\N	2015-09-29	2015-09-30	\N	0	0	0	
7952	2nd Quarter Regional Conference		BLGF Region III		78	\N	2015-07-07	2015-07-08	\N	0	0	0	
7953	Shifting Gears-Energizing your Performance		BLGF Region III		78	\N	2015-04-22	2015-04-24	\N	0	0	0	
9292	Related Learning Experience in Limay Emergency and Birthing Facility		Limay Polytechnic College		1423	\N	2014-02-17	2014-03-02	\N	0	0	0	
9325	Advanced Cardiac Life Support 	Technical 	Stars NKL Review Services and Consultancy		237	\N	2018-12-07	2018-12-08	12	0	0	0	Technical 
9327	Progestin - Containing Subdermal Implant Insertion and Removal	Technical	Department of Health Regional Office III		237	\N	2018-05-30	2018-05-31	12	0	0	0	Technical
9328	Family Planning competency - Based Level I	Technical	Department of Health Regional Office III		237	\N	2017-04-17	2017-04-21	40	0	0	0	Technical
9332	The Philippine National Immunization Conference		Philippine Pediatric Society Central  Luzon Chapter and Bataan Provincial Office		249	\N	2018-11-15	2018-11-16	16	0	0	0	
9333	Training on HIV Testing Services I HIV Counseling and Testing		Provincial Health Office		249	\N	2018-03-06	2018-03-09	32	0	0	0	
9334	2nd Scientific Seminar Advancing Midwifery Services by Practicing Quality Maternal Care and Values		Integrated Midwife Association of the Philippines		249	\N	2018-05-18	2018-05-18	8	0	0	0	
9335	Perinatal Association of  of the Philippines Chapter Caravan		Perinatal Association of the Philippines Inc.		249	\N	2017-12-12	2017-12-12	8	0	0	0	
9336	Region III Convention : Theme Challenge in MidWifery Profession; Now and Beyond		Integrated Midfiwe Assocaiton of the Philippines		249	\N	2017-12-01	2017-12-01	8	0	0	0	
7985	CONSULTATIVE MEETING ON ENHANCING PERFORMANCE FOR HARMONIZED SCHEDULE AND COMBINED MASS DRUG ADMINISTRATION		DOH AND DEPED 		2018	\N	2017-06-29	2017-06-29	\N	0	0	0	
9138	The Power Within: Empowering The Provincial Board Members Secretaries and The Sangguninag Panlalawigan Staff		Acserna Consultancy Company		1908	\N	2014-02-06	2014-02-07	\N	0	0	0	
9144	Orientation on Gender and Development (GAD) Basic Concepts and Issues`		Rosanna Verdida (POPCOM)		1889	\N	2016-05-27	2016-05-28	\N	0	0	0	
9145	Orientation on Gender and Development (GAD) Basic Concepts and Issues		Rosanna Verdida (POPCOM)		1889	\N	2017-08-04	2017-08-05	\N	0	0	0	
9147	Community Pharmacy Technician Course		The Generics Pharmacy		1395	\N	2009-11-09	2009-11-12	\N	0	0	0	
9148	Certificate of Completion as Pharmacy Assistant 		Generika Drugstore		1395	\N	2014-07-07	2018-07-08	\N	0	0	0	
9149	1st Pharmacy Workforce Summit		Generika Drugstore		1395	\N	2015-05-29	2015-05-29	\N	0	0	0	
9294	HP Laserjet Training Seminar		HP/COMPAQ and PCCOMSHOP		388	\N	2002-09-02	2002-09-04	\N	0	0	0	
9295	Panasonic RQ 960 Service Seminar		Panasonic and Nestor		388	\N	1997-03-20	1997-03-21	\N	0	0	0	
9296	Philips VCR Training Service Seminar		Philips and Nestor		388	\N	1995-06-20	1995-06-25	\N	0	0	0	
9297	Panasonic MX3-R / RQ-K840Service Seminar		Panasonic and Nestor		388	\N	1995-06-01	1995-07-21	\N	0	0	0	
8007	Communication Development Training (oral and written)		Provincial Human Resource Management Office		1658	\N	2016-11-09	2016-11-10	\N	0	0	0	
8011	Fine Dining-OJT		Rivera Masion Hotel		696	\N	2014-01-01	2014-01-01	\N	0	0	0	
8012	Hotel-OJT		Waterfront Manila Pavilion Hotel and Casino		696	\N	2014-01-01	2019-01-15	\N	0	0	0	
8014	Fast Food -OJT		Chowking Balanga		696	\N	2013-01-01	2013-01-01	\N	0	0	0	
8018	Orientation on GAD Basic Concepts		Team Building/GAD		643	\N	2016-05-27	2016-05-28	16	0	0	0	
8019	KATROPA: Kalalakihang Tapat sa Responsibilidad at Obligasyon sa Pamilya 		Popcom Central Office 		513	\N	2018-09-26	2018-09-27	\N	0	0	0	
8020	Central Luzon's Performance Tracking of Zero Unmet Need Campaign 		POPCOM Region IIII		513	\N	2017-11-28	2017-11-29	\N	0	0	0	
8021	Training of Trainers on Gender Responsive Population Strategies ( GRPOPS)		POPCOM Region III		513	\N	2017-11-15	2017-11-17	\N	0	0	0	
8022	Bahay Bahay Strategy Orientation for Health Service Providers at the Local Level		POPCOM Region III		513	\N	2017-06-21	2017-06-22	\N	0	0	0	
8023	Orientation on GAD Basic Concepts and Issues cum Team Building for Population Staff		PPO-Bataan		513	\N	2006-05-06	2016-05-07	\N	0	0	0	
8024	PMC Refresher Course for PMC Counselors of Bataan 		POPCOM Region III		513	\N	2016-02-08	2016-02-10	\N	0	0	0	
8025	Regional Population Development Summit		POPCOM Region III		513	\N	2015-11-27	2015-11-27	\N	0	0	0	
8026	National Conference FlewpowPhil		POPCOM Region III		513	\N	2015-04-22	2015-04-24	\N	0	0	0	
8057	Learning Activity on the wildlife Law Enforcement Manual of Operations		Department of Environment Natural Resources-Region 3		356	\N	2016-02-04	2016-02-05	\N	0	0	0	
8062	Workshop on the Preparation of Waste Analysis and Charaacterization Study Sampling Plan		Department of Interior and Local Government Region 3		356	\N	2013-11-14	2013-11-15	\N	0	0	0	
8063	Strategic performance Management System		Provincial Government of Bataan, Civil Service Commission		356	\N	2013-10-29	2013-10-29	\N	0	0	0	
8064	Information Officers and Media Practitioner's Orientation Workshop on Manila Bay IEC Plan		Department of Environment Natural Resources-Manila Bay Coordinating Office R3		356	\N	2013-10-04	2013-10-04	\N	0	0	0	
8065	Knowledge Enhancement on Solid Waste Management for Provincial Solid Waste Management Board		Department of Environment Natural Resources-R3, National Solid Waste Management Commission		356	\N	2012-09-11	2012-09-13	\N	0	0	0	
8088	5th National Tilapia Congress		BFAR		29	\N	2018-10-12	2018-10-13	\N	0	0	0	
8089	Hands -on Training on Mussel Culture using Longline Method		DOST/BFAR3		29	\N	2018-05-10	2018-05-11	\N	0	0	0	
8090	BFAR Conference on Harmful Algae Bloom, Monitoring & Mgt.		Bureau of Fisheries and Aquatic Resources III		29	\N	2018-05-28	2018-05-30	\N	0	0	0	
8091	Training on Fishkill Investigation, Monitoring and Reporting		Bureau of Fisheries and Aquatic Resources III		29	\N	2018-04-19	2018-04-19	\N	0	0	0	
8092	Supervisory Development Course (SDC) Track I 		Civil Service Commission Provincial Government of Bataan 		29	\N	2016-11-15	2016-11-17	\N	0	0	0	
8093	7th Aquatech: Aquaculture Expo & Convention Philippines 		Aquatech Philippines 		29	\N	2016-07-20	2016-07-21	\N	0	0	0	
9162	Labor Education for Graduating Students		Ms. Leilani Reynoso		1403	\N	2015-09-17	2015-09-17	\N	0	0	0	
8094	1st National Mudcrab Congress 		University of the Philippines Visayas, Marine Science Institute, Southeast Asian Fisheries Development Center 		29	\N	2015-11-16	2015-11-18	\N	0	0	0	
8095	Workshop on DA Work, Financial Plan for Manila Bay Rehab		Department of Agriculture		29	\N	2019-03-06	2019-03-08	\N	0	0	0	
8151	Seminar on Energy Efficiency and Conservation		Department of Energy		369	\N	2012-05-17	2012-05-17	\N	0	0	0	
8097	Workshop on Understanding The ICM Code and ICM System Certification Process 		Partnership in Environmental Management for the Seas of East Asia 		29	\N	2015-01-28	2015-01-29	\N	0	0	0	
8098	National Workshop on Harmful Algal Bloom (HAB) 		Bureau of Fisheries and Aquatic Resources Central Office		29	\N	2014-12-03	2014-12-05	\N	0	0	0	
8099	Resource Person Development on the Mechanization of Rice Crop Establishment		Department of Agriculture - Philippine Center for Postharvest Development and Mechanization		32	\N	2019-02-19	2019-02-21	\N	0	0	0	
13708	Cooperative Management and Governance	\N	PCEDO	\N	0	\N	2018-11-09	2018-11-09		0	0	0	 
8100	LUZON - WIDE LOCAL GOVENMENT UNITS SUMMIT : DUTIES AND RESPONSIBILITIES OF THE LGU'S ON AGRICULTURAL AND FISHERIES MECHANIZATION PROGRAM		DEPARTMENT OF AGRICULTURE - BUREAU OF AGRICULTURAL AND FISHERIES		32	\N	2018-11-25	2018-11-27	\N	0	0	0	
8101	NATIONAL CONSULTATION FOR THE GUIDELINES ON REGISTRATIONAND ISSUANCE OF PERMIT TO  OPERATE FOR AGRICULTURAL  AND FISHERIES MACHINERY MFADDIE's		Department of Agriculture  - Bureau of Agricultural and Fisheries Engineering		32	\N	2018-11-14	2018-11-16	\N	0	0	0	
8102	REFRESHER COURSE ON REPAIR AND MAINTENANCE OF SMALL FARM ENGINES WITH NC2		DEPARTMENT OF AGRICULTURE - PHILIPPINE CENTER FOR POSTHARVEST DEVELOPMENT AND MECHANIZATION/DEPARTMENT OF AGRICULTURE-AGRICULTURAL TRAINING INSTITUTE		32	\N	2018-09-19	2018-09-23	\N	0	0	0	
8103	RESOURCE PERSON DEVELOPMENT ON MECHANIZATION AND POSTHARVEST TECHNOLOGIES FOR COFFEE		DEPARTMENT OF AGRICULTURE - PHILIPPINE CENTER FOR POST HARVEST DEVELOPMENT AND MECHANIZATION		32	\N	2018-06-19	2018-06-22	\N	0	0	0	
8104	68TH PHILIPPINE SOCIETY OF AGRICULTURAL AND BIOSYSTEM ENGINEERS ANNUAL NATIONAL  CONVENTION		PHILIPPINE SOCIETY OF AGRICULTURAL AND BIOSYSTEMS ENGINEERS		32	\N	2018-04-23	2018-04-27	\N	0	0	0	
8105	TRAINING ON CONSTRUCTION SUPERVISION OF SMALL WATER IMPOUNDING PROJET(SWIP)		DEPARTMENT OF AGRICULTURE -REGIONAL FIELD OFFICE III		32	\N	2017-12-18	2017-12-22	\N	0	0	0	
8106	National Forum on the Implementation of Agricultural and Biosystems Engineering and Mechanization Regulations		PHILIPPINE SOCIETY OF AGRICULTURAL ENGINEERS		32	\N	2017-11-08	2017-11-09	\N	0	0	0	
8107	Training on Agro - Hydrology and Dam Design(SWIP)		Department of Agriculture- Agricultural Training Institute		32	\N	2017-09-18	2017-09-29	\N	0	0	0	
8108	Training on Rice Machinery Operation		Department of Agriculture - Agricultural Training Institute		32	\N	2017-06-19	2017-06-22	\N	0	0	0	
8109	Basic Experimental Design and Data Analysis Using Statistitacal Tool for Agricultural Research		Department of Agriculture - Regional Field Office III		32	\N	2017-06-07	2017-06-09	\N	0	0	0	
8110	67th Philippine Society of Agricultural Engineers Annual National Convention		Philippine Society of Agricultural Engineers		32	\N	2017-04-23	2017-04-29	\N	0	0	0	
8111	Training on the utilization of geo-mapping technology		Department of agriculture - Bureau of Soil and Water		32	\N	2016-05-24	2016-05-27	\N	0	0	0	
8112	37th Agency in - house - research and development review		Department of Agriculture - Philippine Center for Postharvest Development and Mechanization		32	\N	2016-05-23	2016-05-24	\N	0	0	0	
8113	Training on the use of global positioning system for rice crop manager		Department of agriculture - Regional field office III		32	\N	2015-11-04	2015-11-05	\N	0	0	0	
8114	Capability Building on the pre-assesment of potential subsidy applicant for third party certification		Department of agriculture - Regional field office III		32	\N	2015-09-28	2015-09-29	\N	0	0	0	
8127	Executive Training Program in Urban Policy, Governance and Green City Development for Senior Gov't Officials from the Phil.		Temasek Foundation-Nanyang Technological University		370	\N	2016-04-11	2016-04-22	\N	0	0	0	
8129	Integrated Salamin-Diwa Executive Leadership Training		Career Executive Service Board		370	\N	2015-03-03	2015-03-16	\N	0	0	0	
8130	Training for NEDA Regional Development Office		Philippine Center for Economic Development		370	\N	2013-11-05	2013-11-07	\N	0	0	0	
8131	International Advanced Course on Intellectual Property Rights in a Global Economy		World Intellectual Property Organization & Sweden International Development Agency		370	\N	2013-04-08	2013-04-26	\N	0	0	0	
8133	Basic Advanced Written and Oral Communication with Powerpoint Presentation		Provincial Human Resource Development Management Office - Bataan		368	\N	2018-04-18	2018-04-19	16	0	0	0	
8134	Waste Management Forum		European Chamber of Commerce of the Philippines		368	\N	2008-03-22	2018-03-22	8	0	0	0	
8135	Module 1: Resiliency Preparedness		National Resiliency Committee		368	\N	2018-03-12	2018-03-14	24	0	0	0	
8136	Post Disaster needs Assessment and Risk Disaster Needs Assessment		Provincial Disaster Risk Reduction Management Office Bataan		368	\N	2017-09-20	2017-09-22	24	0	0	0	
8137	Water Quality Chicker,Aquafied Model:Map 500		De Leo Import & Export Corporation		368	\N	2017-03-08	2017-03-08	8	0	0	0	
8138	Asia-Pacific Economic Cooperation-Bagac Bataan/Apec Secretariat		Department of Finance		368	\N	2015-06-09	2015-06-12	96	0	0	0	
8139	FBM Standard Training/Trainer		Mistsumi Philippines Inc.		368	\N	2014-03-27	2014-03-28	16	0	0	0	
8140	Working Your Way Up the Right Way: Proper Work Ethics and Values/ Coordinator		Bataan Peninsula State University- Balanga Campus		368	\N	2011-03-11	2011-03-11	8	0	0	0	
8141	Magnegosyo Tayo:BPSU's Youth Enterpreneurship Forum/Coordinator		Bataan Peninsula State University - Balanga Campus		368	\N	2011-02-11	2011-02-11	8	0	0	0	
8142	Water Quality Checker, Aqua Read Model : AP 800		De Leon Import and Export - Environment and natural Resources Office		369	\N	2017-03-08	2017-03-08	\N	0	0	0	
8144	Orientation and Training on Water Resource Utilization		Department of Environment and Natural Resources		369	\N	2016-07-13	2016-07-13	\N	0	0	0	
8145	Presentation of BAI-DAP Benchmarking Project & Workshop on Animal Waste Management		Bureau of Animal Industry  - Development Academy of the Philippines		369	\N	2016-06-28	2016-06-30	\N	0	0	0	
8146	Training Course on Animal Waste Management and Utilization 		Department of Agriculture / Bureau of Animal Industry		369	\N	2016-03-08	2016-03-10	\N	0	0	0	
8147	Training / Workshop on Domestic Wastewater Management		Department of Environment and Natural Resources / Environmental Management		369	\N	2015-04-14	2015-04-16	\N	0	0	0	
8148	Local Disaster Risk Reduction & Management Plan Writeshop		Bataan Provincial Disaster Risk Reduction Management Council		369	\N	2014-01-16	2014-01-17	\N	0	0	0	
8149	Consultation Workshop on Biogas Technology 		Department of Science and Technology Region III		369	\N	2013-09-25	2013-09-26	\N	0	0	0	
8150	Seminar -  Workshop on the Use of Automated Weather Station		Department of Science and Technology / Advance Science and technology Institute		369	\N	2012-07-11	2012-07-11	\N	0	0	0	
8152	Basic Geographic Information System (GIS) Operation  & Global Positioning System ( GPS)		Department of Environment and Natural Resources / Manila Bay Coordinating Office		369	\N	2011-04-11	2011-04-15	\N	0	0	0	
8153	National IEC Campaign on Biodigester Development for Pig Farms in the Philippines		Department os Science and Technology / Development Academy of the Philippines		369	\N	2010-10-14	2010-10-14	\N	0	0	0	
9856	Duterte Government's Revised PPP Program		Center for Global Best Practices		427	\N	2018-08-10	2018-08-10	\N	0	0	0	
8154	Science & Technology for Understanding & Intervention for Climate Risk Preparedness		The Philippine Council for Industry and Energy Research & Development / Department of Science and Technology		369	\N	2010-04-22	2010-04-22	\N	0	0	0	
8155	Provincial Avian Influenza Contingency Planning Workshops		Department of Agruculture  Field Unit III		369	\N	2009-04-02	2009-04-03	\N	0	0	0	
8156	Training on Introduction to Geographical Information System Using Manifold System		National Mapping & Resource Information Authority / Department of Environment and Natural Resource		369	\N	2007-01-22	2007-01-26	\N	0	0	0	
8157	Autocad 2007 with Color Rendering Level I & II		Microcadd Technologies Company, Inc.		369	\N	2006-07-29	2006-09-23	\N	0	0	0	
8158	Capacity Building Workshop on Coastal Zoning & Sea-Use Plan		University of the Philippines Planades		369	\N	2005-01-08	2005-01-09	\N	0	0	0	
8159	Work Attitute and Values Enhancement Training		Provincial Human Resource Management Office		365	\N	2016-06-20	2016-06-21	\N	0	0	0	
8160	Implementasyon ng Kautusang Taga Pagpaganap Bilang 335		Komisyon ng Wikang Pilipino		365	\N	2015-09-25	2015-09-25	\N	0	0	0	
8161	M. Power Training on Anti-Smoking Campaign		Provincial Healh Office		365	\N	2014-09-10	2014-09-12	\N	0	0	0	
8162	PDRRM Summit for Local Chief Executives of Bataan		Office of the Civil Defence Region III		365	\N	2014-04-22	2014-04-23	\N	0	0	0	
8163	Contingency Planning Formation Workshop		Provincial Disaster Risk Reduction Management Council		365	\N	2014-02-19	2014-02-21	\N	0	0	0	
8164	Local Disaster Risk Reduction and Management Plan Workshop		Bataan Provincil Management Council		365	\N	2014-01-16	2014-01-17	\N	0	0	0	
8165	Orientation Seminar on Processing for Disbursement Transaction of Provincial Government		Provincial Accounting Office		365	\N	2014-05-09	2014-05-09	\N	0	0	0	
8166	PG-Enro Year end GAD Seminar held on December 19-20, 2016		Provincial Population Office		365	\N	2016-12-19	2016-12-20	\N	0	0	0	
8178	Regional Training Workshop on Risk and Vulnerability Assesment 	Technical	Partnership in Evironment Management for the Seas of the East Asia (PAMSEA)		364	\N	2019-03-04	2019-03-05	16	0	0	0	Technical
8179	Competence Assessment Tool Orientation and Feedback of the MPA/N	Technical	SMARTSeas PH, UP-MSI		364	\N	2019-02-20	2019-02-21	16	0	0	0	Technical
8180	Mobile Continous Ambient Air Quality Monitoring System on Site Demo Training	Technical	BP Integrated Technologies Inc.		364	\N	2018-11-22	2018-11-22	8	0	0	0	Technical
8181	Fish Examinies Training	Technical	Bureau of Fisheries and Aquatic Resources (BFAR) Region III		364	\N	2018-11-05	2018-11-16	96	0	0	0	Technical
8182	Oil Spill Response Training and Marine Pollution Exercise (MARPOLEX)for Manila Bay Stakeholders	Technical	Provincial Environment and Natural Resources Office (Bataan)		364	\N	2018-06-18	2018-06-22	40	0	0	0	Technical
8183	Coastal Vulnerability Assesment of the Marine Turtle Nesting Sites in Morong	Technical	Provincial Government - Environment and Natural Resources Office (PG-Enro)- Bataan		364	\N	2018-06-06	2018-06-08	24	0	0	0	Technical
8184	Technical and Proposal Writting Training	Technical	Biodiversity Resource Infromation Network Group (BRING)		364	\N	2018-06-15	2018-06-15	32	0	0	0	Technical
10577	Telecommunications 		National Telecommunications Commission		1656	\N	2017-08-10	2017-08-10	\N	0	0	0	
8185	Seminar on the Sustainable Management of Groundwater Resources of the Province of Bataan	Technical	Provincial Governement - Environment and Natural Resources Office (Bataan)		364	\N	2018-12-04	2018-12-04	8	0	0	0	Technical
8186	Entity Level GreenHouse Gas Emissions Inverntory Workshop	Technical	DENR-EMB Region III		364	\N	2018-03-04	2018-03-04	8	0	0	0	Technical
8187	Training on Mainstreaming Green Growth in Development Planning (Modules 1-6)	Technical	Global Green Growth Institute		364	\N	2018-01-29	2018-06-22	144	0	0	0	Technical
8188	UP TCAGP - Training Course in GIS	Technical 	UP Diliman-Training Center of Applied Geodesy and Photogrammetry		363	\N	2018-01-29	2018-06-22	95	0	0	0	Technical 
8189	Trianing on Mainstream Green Growth In Development Planning (Modules 1-6)	Technical	Provincial Governement of Bataan/GGGI		363	\N	2018-01-29	2018-06-22	144	0	0	0	Technical
8190	Water Quality Checker, Aquaread Model, AP 800 - Seminar/Training	Technical	Provincial Governement of Bataan		363	\N	2017-03-08	2017-03-08	8	0	0	0	Technical
8191	Orientation on Integrated Coastal Management for the Porvince of Bataan	Technical	Provincial Governement of Bataan		363	\N	2017-02-24	2017-02-24	8	0	0	0	Technical
8192	Gender and Development Training/Seminar	Technical	Provincial Governement of Bataan		363	\N	2016-12-19	2016-12-20	16	0	0	0	Technical
8193	Emission Inverntory Training for LGU	Technical	Environmental Management Bureau Region III		363	\N	0116-11-23	2016-11-24	16	0	0	0	Technical
8194	Training Workshop on Geographic Information System (GISI)	Technical	Provincial Governement of Bataan		363	\N	2016-06-27	2016-06-30	32	0	0	0	Technical
9299	Microcontroller Symposium 		Asia Pacific College, Makati City		408	\N	2002-03-14	2002-03-14	\N	0	0	0	
9298	Competency Assessors Course 		Technical Education and Skills Development Authority 		408	\N	2005-04-26	2005-04-29	\N	0	0	0	
9155	E-Learning in a Virtual World				1400	\N	2012-10-06	2012-10-06	\N	0	0	0	
9156	Automation and Robotics Tech				1400	\N	2014-11-08	2014-11-08	\N	0	0	0	
9157	Dash Boarding with Business Analitics				1400	\N	2012-10-06	2012-10-06	\N	0	0	0	
9159	CCNA Routing and Switching Introduction to Netwotks				1400	\N	2014-10-28	2014-10-28	\N	0	0	0	
9160	Networking Essential With Introduction to CISCO Networking Devices				1400	\N	2014-10-20	2014-10-20	\N	0	0	0	
9161	Research Cluster Tech Trends		Dr. Gregorio Rodis		1403	\N	2015-06-28	2015-06-28	\N	0	0	0	
9163	Mobile Apps Development		Mr. Joseph John Calubay		1403	\N	2015-09-17	2015-09-17	\N	0	0	0	
9164	Search Engine Optimization and Online Marketing		Mr. Eduardo Pudal		1403	\N	2015-08-28	2015-08-28	\N	0	0	0	
9165	Gender Issue in the Technical Milieo		Dir. Magdalena Abella		1403	\N	2015-08-28	2015-08-28	\N	0	0	0	
9166	Device Agnostic App Development		Mr. Louie Pangalinan		1403	\N	2015-08-28	2015-08-28	\N	0	0	0	
9168	Teamwork Success		Dr. Ferdinand Bunag		1403	\N	2015-09-17	2015-09-17	\N	0	0	0	
9169	Lipid-Pro Competency Training		Yellowclub Bicutan Manila		1405	\N	2012-03-10	2012-03-10	\N	0	0	0	
9170	36th Joint Philippines- Japan Dental and Opthalmission		Lion's Cubs INT'L		1405	\N	2011-02-11	2011-02-11	\N	0	0	0	
14251	VALUATION with FSRM	\N	SGV and Co.	\N	0	\N	2016-09-16	2016-09-16	8	0	0	0	 
9347	Armani Birth Training(Perspective and Tools Supporting Physiologic Birth and Introduction to Water Birth Workshop)		Armani Birth Training Company		1426	\N	2017-02-27	2017-03-01	\N	0	0	0	
9348	26th Sardi Society of Obstetrics and Gynecolcay (Invitro Fertilization)		26th Sardi Society of Obstetrics and Gynecolcay 		1426	\N	2017-02-21	2017-02-23	\N	0	0	0	
9350	The Hotel Summit Marketing Mends				1428	\N	2017-08-03	2017-08-03	\N	0	0	0	
9351	The Hotel Summit Hospitality Mends				1428	\N	2017-08-03	2017-08-03	\N	0	0	0	
9354	Licensing in the Field of Mass Communication and Concepts of Property Rights, Copyright and Plagiarism		Aamon Bautista		1429	\N	0001-01-01	0001-01-01	\N	0	0	0	
9355	Learning Beyonf Materials: The Technicalities and Art of Feature and Editorial Writing		Jose Joel Sy Egco		1429	\N	2014-12-04	2014-12-04	\N	0	0	0	
9356	National Press Freedom Day Parade 1st Camp				1429	\N	0001-01-01	0001-01-01	\N	0	0	0	
9357	Civic Journalism Campaign on CLTV (Central Luzon Television) 36				1429	\N	0001-01-01	0001-01-01	\N	0	0	0	
9358	Journalism Exposition 2016: Shaping the Media Paradigm Through Honing				1429	\N	2016-01-27	2016-01-27	\N	0	0	0	
9359	Promoting Caliber Talents: Honing Skills and Potential of Future Media Practitioners				1429	\N	0001-01-01	0001-01-01	\N	0	0	0	
9360	College of Arts and Letters Media Arts Exposition 2017 with Ms. Karen Davila and Tristan Nodalo				1429	\N	0001-01-01	0001-01-01	\N	0	0	0	
9361	Evening for Research Problems and Matching Research Designs				1429	\N	2014-08-02	2014-08-02	\N	0	0	0	
9405	Financial Management for Local Government Units under Phil Rural Development Project (PRDP)		Department of Agriculture - Regional Project Coordination Office 3		109	\N	2016-05-18	2016-05-20	\N	0	0	0	
8230	Nationwide Mass Training on Cardiopulmonary Resuscitation		Philippine Heart Association Inc. Philippine College of Cardiology		1386	\N	2018-07-16	2018-07-16	\N	0	0	0	
8231	Bleeding Control Basic V 1.0 Course		American College of Surgeons Committee on Trauma		1386	\N	2018-07-07	2018-07-07	\N	0	0	0	
8239	Gender and Development  Seminar	Personal Development	Provincial Population Office/Environment and Natural Resource		995	\N	2018-12-18	2018-12-18	8	0	0	0	Personal Development
8240	2019 GAD Planning and Budgeting, GAD Analysis Cum Monitoring and Evaluation using HGDG	Technical	Pronvincial Population Office		995	\N	2018-09-03	2018-09-05	20	0	0	0	Technical
8243	Water Quality Checker,Aquared Model: AP800	Technical	De Leon Import & Export Corporation		995	\N	2017-08-03	2017-08-03	8	0	0	0	Technical
8244	Geneder and Development Seminar	Personal Development	Provincial Population Office/Environment and Natural Resource		995	\N	2017-12-19	2017-12-19	8	0	0	0	Personal Development
8245	Seminar-Workshop on Records Managment		Provincial Human Resource Managment Office		995	\N	2017-07-25	2017-07-26	16	0	0	0	
8252	Advanced Cardiac Life Support Training				198	\N	0001-01-01	0001-01-01	\N	0	0	0	
8253	Master's Degree in Hospital Administration		Philippine Christian University		198	\N	2017-07-01	2017-07-01	\N	0	0	0	
9185	Gatekeeping in Primary Healthcare as Effective Tool for Service Delivery Network Training - Workshop	Technical	Bataan General Hospital and Medical Center		238	\N	2019-02-13	2019-02-13	8	0	0	0	Technical
9186	Training on Dengvaxia Surveillance and Philippine Integrated Disese Surveillance and Response (PIDSR) Implementation Among Disease Reporting Units	Technical	Department of Health Region III		238	\N	2018-09-26	2018-09-28	24	0	0	0	Technical
9187	Training on Donning and Doffing of Personal Protective Equipment Equipment (PPE) and Specimen Collection	Technical	Department of Health Region III		238	\N	2018-09-28	2018-09-28	8	0	0	0	Technical
9188	Training on HIV Testing Service (Counceling and Testing)	Technical	Department of Health Region III		238	\N	2018-04-03	2018-04-06	32	0	0	0	Technical
9189	Establishing a Hemodialysis Center	Technical	Department of Health Region III		238	\N	2017-10-23	2017-10-24	16	0	0	0	Technical
9192	Pre Demonstration Workshop and Consultative Meeting on Hepatitis B Treatment in Central Luzon	Technical	World Health Oraganization - Philippines		247	\N	2019-02-26	2019-03-01	32	0	0	0	Technical
9193	Refresher Course on Malaria Microscopy	Technical	Department of Health Regional Office III		247	\N	2018-07-16	2018-07-20	40	0	0	0	Technical
9194	12th Pamet North  Luzon Regional Conference "Achieving Execellence Admist Global Challenges"	Technical	Philippine Association of Medical Technologists North Luzon		247	\N	2018-07-13	2018-07-14	16	0	0	0	Technical
9195	Basic Laboratory Daignosis of Sexually Transmitted Infections	Technical	NRL - SLH / SACCL		247	\N	2018-07-09	2018-07-11	24	0	0	0	Technical
9196	Health Leadership and Gvernance Program  BLPH Module 2	Technical	Department of Health Regional Office 3		247	\N	2018-05-22	2018-05-23	16	0	0	0	Technical
9197	Philippine Internation Aids Candleight Memorial 2018	Technical	Department of Health Regional Office III		247	\N	2018-05-18	2018-05-18	8	0	0	0	Technical
9198	Malaria Entomological Surveillance	Technical	Provincial Health Office		247	\N	2018-04-12	2018-04-13	16	0	0	0	Technical
9199	Training on HIV Testing  Service Counseling and Testing 	Technical	Department of Health Regional Office III		247	\N	2018-04-03	2018-04-06	32	0	0	0	Technical
9200	2017 NEQAS in Clinical Chemistry Mid Cycle Forum 	Technical	NRL - Lung Center of the Philippines		247	\N	2018-03-22	2018-03-22	8	0	0	0	Technical
9202	Advancing  Research in Graduate Education in an Era of Technological Innovation	Technical	Our Lady of Fatima University Graduate School		247	\N	2018-02-11	2018-02-11	8	0	0	0	Technical
9203	Firecracker Summit A:Step to Zero Injuires	Technical	Department of Health Regional Office III		247	\N	2017-12-07	2017-12-07	8	0	0	0	Technical
9401	Training on Mainstreaming Green Growth in Development Planning 		Global Green Growth Institute/ NEDA		109	\N	2018-01-29	2018-06-22	\N	0	0	0	
9402	Supervisory Development Course - Track I		Civil Service Commission Regional Office 3		109	\N	2016-11-15	2016-11-17	\N	0	0	0	
9403	General Assembly and Updates on the Latest Budgetary Issuances		Department of Budget Management Regional Office 3		109	\N	2016-12-05	2016-12-06	\N	0	0	0	
9852	Integrity Mechanism Workshop		Konrad-Adanauer-Siftung-Logic Network		427	\N	2019-02-15	2019-02-15	\N	0	0	0	
9404	Seminar-Workshop on Republic Act No. 9184 and its 2016 Revised Implementing Rules and Regulations		Department of Budget Management Regional Office 3		109	\N	2016-11-21	2016-11-23	\N	0	0	0	
9406	Seminar on Trends and Development in Local Government Budgeting		Department of Budget Management Regional Office 3		109	\N	2003-09-29	2003-10-01	\N	0	0	0	
9436	Orientation/Seminar on Magna Carta of Women (RA 9710) and Anti-Violence Against Women and Children (RA 9262)		Provincial Government of Bataan and Provincial Population Office		110	\N	2016-04-15	2016-04-15	\N	0	0	0	
9438	Seminar on Anti -Trafficing in Person and Anti-Violence Against WOmen and Ther Children		Provincial Government of Bataan		279	\N	2018-05-11	2018-05-12	\N	0	0	0	
9439	Seminar Workshop on Road Safety Audit Under the CMGP Program		DILG- Department of the Interior and Local Government		279	\N	2017-09-19	2017-09-22	\N	0	0	0	
9441	Planning and Design of Flood Control with Project Impacts Analysis		Provincial Government of Bataan		279	\N	2016-09-26	2016-09-30	\N	0	0	0	
9442	Conststruction Occupational Safety and Health Training Course		LabSpeak Safety Management		279	\N	2016-08-02	2016-08-05	\N	0	0	0	
9443	Nationa CE Symposium 2012		University of Philippines-DILIMAN		279	\N	2012-02-11	2012-04-14	\N	0	0	0	
9444	2019 GAD Planning and Budgeting, GAD Analysis cum Monitoring and Evaluation using HGDG		Provincial Government of Bataan and in collaboration with the Provincial GAD Office of Quezon Province		112	\N	2018-09-03	2018-09-05	\N	0	0	0	
9445	RDANA and PDNA Orientation for the Province of Bataan		Civil Defense Region III and RDRRM Council Region III		112	\N	2017-09-20	2017-09-22	\N	0	0	0	
9449	Orientation on Local Investment Plan for Health for the Province of Bataan		Department of Health and Provincial Health Office		112	\N	2016-08-22	2016-08-23	\N	0	0	0	
9450	Vision Aligned Circle Revalida		PGS - Provincial Governor's Office		112	\N	2016-07-25	2016-07-25	\N	0	0	0	
9453	Seminar on Code of Conduct and Ethical Standards/RAACS		Provincial Humnan Resource Management Office and Civil Service Commission Regional Office 3		112	\N	2015-10-28	2015-10-29	\N	0	0	0	
9454	Pagsasanay sa Korespondensiya Opisyal at Implementasyon ng Kautusang Tagapagpaganap		Office of the Provincial Governor and Komisyon ng Wikang Filipino		112	\N	2015-09-29	2015-09-29	\N	0	0	0	
9487	Briefing of New Generation Philippine Bank Note and the Role of Central Bank in the Economy		Bangko Sentral ng Pilipinas		114	\N	2012-12-12	2012-12-12	\N	0	0	0	
9510	Igniting the Heart of Teaching Seminar		Philippine Council of Evangelical Churches		115	\N	2019-01-26	2019-01-26	\N	0	0	0	
9514	Effective Procedure in Managing Public Records Workshop/Seminar 		Government Record's Association of the Philippines		115	\N	2018-10-15	2018-10-17	\N	0	0	0	
9515	Entity Level Greenhouse Gas Emmissions Inventory Workshop		Provincial Government-Environment and Natural Resources Office		115	\N	2018-04-03	2018-04-03	\N	0	0	0	
9516	Symposium on Public Accountability and Governance		Bataan Peninsula State University 		115	\N	2017-03-24	2017-03-24	\N	0	0	0	
9517	Consultative Meeting on Red Orchid Awards		Department of Health Region III		115	\N	2017-03-28	2017-03-29	\N	0	0	0	
9518	Tobacco Control Program		Provincial Health Office		115	\N	2017-02-21	2017-02-21	\N	0	0	0	
9519	Regional Tobacco Control Network (RTCN)		Department of Health Region III		115	\N	2016-11-28	2016-11-28	\N	0	0	0	
9520	Project Cycle Management / Project Design Matrix		Bataan Peninsula State University 		115	\N	2016-11-19	2016-11-19	\N	0	0	0	
9524	Consultative Meeting of Stakeholders & other health Facilities		Department of Health Region III		115	\N	2016-09-13	2016-09-13	\N	0	0	0	
9525	Recollection & Team Building		Bataan Peninsula State University 		115	\N	2016-07-02	2016-07-02	\N	0	0	0	
9526	Reach Out Orientation of Hospitals, Ambulatory Surgical Clinics and Free Standing Dialysis Clinics		Philhealth Region III		115	\N	2016-05-19	2016-05-19	\N	0	0	0	
9528	BuB Consultative Meeting and Presentation of 2017 DOH BuB Menu of Programs		Provincial Health office		115	\N	2016-02-09	2016-02-09	\N	0	0	0	
9530	Outcomes Based education Seminar on Syllabi Writing and Designing Rubrics		Bataan Peninsula State University 		115	\N	2015-06-01	2015-06-03	\N	0	0	0	
9531	Pump Up the Drive for Excellence/Leadership Seminar		Philippine Long Distance Telephone Company, Inc.		115	\N	2012-01-21	2012-01-24	\N	0	0	0	
9533	Seminar in Federalism with the theme "The Federalism in Philippine Context, Concepts and Implications"		Bataan Peninsula State University		118	\N	2018-11-17	2018-11-17	8	0	0	0	
9534	Follow Through Activity on the Finalization of the PGRR		Department of Interior and Local Government		118	\N	2018-10-10	2018-10-11	16	0	0	0	
9536	Workshop on the Formulation of the PGRR on the Local Road Management (LRM) and Public Financial Management (PFM)		United Nations Development Programme (UNDP)		118	\N	2018-07-24	2018-07-27	32	0	0	0	
9537	Timekeeping Training		Yanbu Aramco Sinopec Refining Co., Ltd. (YASREF)		118	\N	2014-12-13	2014-12-13	8	0	0	0	
9538	Commissioning Induction Training		Yanbu Aramco Sinopec Refining Co., Ltd. (YASREF)		118	\N	2014-10-22	2014-10-22	8	0	0	0	
9539	IT End User Training		Yanbu Aramco Sinopec Refining Co., Ltd. (YASREF)		118	\N	2013-06-15	2013-06-15	8	0	0	0	
9540	Government Association of Certified Public Accountants (GACPA) Chapter's Seminar 2009		Government Association of Certified Public Accountants & Commission on Audit		118	\N	2009-09-25	2009-09-26	16	0	0	0	
9541	Government Association of Certified Public Accountants (GACPA) Chapter's Seminar 2008		Government Association of Certified Public Accountants & Commission on Audit		118	\N	2008-10-17	2008-10-18	16	0	0	0	
9542	Training/Seminar on Budget Operations for Barangays		Department of Budget and Management		118	\N	2008-08-19	2008-08-20	16	0	0	0	
9544	9th National Information Technology Convention		STI College		118	\N	2004-02-17	2004-02-17	8	0	0	0	
9545	E-LGU Projects "Government Website Development Workshop"		National Computer Center and Department of Science and Technology		118	\N	2003-03-10	2003-03-10	8	0	0	0	
10287	EXIGENCY: AN EMERGENCY MEDICAL SERVICES AWARENESS SEMINAR 		MARIVELEZ RESCUE MEDICS 		2185	\N	2017-05-28	2017-05-28	8	0	0	0	
9549	Training on the Use of Agency Procurement Compliance and Performance Indicator System for the Province		APCPI/Department of Budget and Management (DBM)		119	\N	2013-07-30	2013-08-01	24	0	0	0	
9550	Consultative Meeting on Monitoring of Physical Accomplishment and Financial Utilization under the 2012 Harmonized Fund Transfer (HRT)		Department of Health		119	\N	2012-11-08	2012-11-08	8	0	0	0	
9551	Seminar on Updates on Compensation Issuances and Related Matters		Department of Budget and Management		119	\N	2004-07-27	2004-07-27	8	0	0	0	
9552	Provincial Workshop for the Central Luzon Development Summit on the Global Gateways		Regional Technical Working Group on the Global Gateways Initiative		119	\N	2004-01-21	2004-01-21	8	0	0	0	
9554	Seminar on the Updates on New Government Accounting System (NGAs)		Commission on Audit and Department of Budget and Management		119	\N	2002-10-14	2002-10-15	16	0	0	0	
9555	Seminar/Workshop on Fiscal Reform towards effective Local Governance		Commission on Audit and Department of Budget and Management		119	\N	2001-09-17	2001-09-19	24	0	0	0	
12756	ASEAN Cooperation on Agricultural and Biosystems Engineering (ACABE) and ASEAN Universities Consortium on Food and Agro Based Engineering and Technology Education (AUCFA)				2217	\N	2018-11-06	2018-11-08		0	0	0	
12757	Capability Building program for Prospective Lead Assessors (LAs) for Agricultural Machinery Operations NCII		TESDA		2217	\N	2018-09-05	2018-09-07	24	0	0	0	
12758	National Planning Workshop for the Formulation of Plans and Programs in Support to the Implementation of Agriculturall and Biosystems Engineering Law		Professional Regulatory Board of Agricultural and Biosystems Engineering and Philippine Society of Agricultural and Biosystems Engineers (PSABE)		2217	\N	2018-07-19	2018-07-20		0	0	0	
9565	Gender and Development (GAD) Planning and Workshop		Balanga GAD Council		24	\N	2019-05-07	2019-05-09	24	0	0	0	
9566	Writeshop for the Local Transport Route Plan of Balanga City		Balanga Public Transport Route Plan Team		24	\N	2019-01-29	2019-01-30	16	0	0	0	
9567	Local Housing Board/Management Committee Workshop		Balanga Housing Management Committee		24	\N	2018-11-15	2018-11-17	24	0	0	0	
9569	Incident Command System (ICS) Seminar-Workshop (Integrated Planning Course - Level II)		Balanga City Disaster Risk Reduction and Management Office		24	\N	2018-03-20	2018-03-20	8	0	0	0	
9570	2017 Rules on Administrative Cases in the Civil Service		Civil Service Commission Regional Office 3		24	\N	2018-03-13	2018-03-14	16	0	0	0	
9571	Climate and Disaster Risk Assessment Team Workshop for Mainstreaming of Climate Change Adaptatation & Disaster Risk Reduction into Local Development Plans		Balanga City Disaster Risk Reduction and Management Office		24	\N	2017-11-29	2017-11-29	8	0	0	0	
9572	National Literacy Conference : Lifelong Learning in a Digital World		Department of Education - Literacy Coordinating Council		24	\N	2017-11-07	2017-11-09	24	0	0	0	
9573	ISO 9001:2015 Foundation Course		Balanga City Human Resource Management Office		24	\N	2017-09-25	2017-09-26	16	0	0	0	
9574	Incident Command System (ICS) Seminar-Workshop 		Balanga City Disaster Risk Reduction and Management Office		24	\N	2017-09-20	2017-09-22	24	0	0	0	
9575	Invest PH: Public and Private Partnerships for Local Government Units		Public-Private Partnership Center		24	\N	2017-09-18	2017-09-18	8	0	0	0	
9576	Rapid Damage Assessment Needs Analysis (RDANA) & Post-Disaster Assessment Needs Analysis (PDANA) Training Workshop		Balanga City Disaster Risk Reduction and Management Office		24	\N	2017-06-21	2017-06-23	24	0	0	0	
9577	Seminar on How to Avoid COA Disallowances		Balanga CAIAO		24	\N	2017-05-31	2017-05-31	8	0	0	0	
9578	Seminar in Human Resource Management		Civil Service Commission Regional Office 3		24	\N	2017-03-09	2017-03-09	4	0	0	0	
9579	Leadership Literacy Seminar		Tomas Del Rosario College		24	\N	2017-03-07	2017-03-07	4	0	0	0	
9580	Seminar on Time Management Essentials		Balanga City Human Resource Management Office		24	\N	2015-11-03	2015-11-03	8	0	0	0	
9581	Workshop for School Governing Council		Synergia		24	\N	2015-08-18	2015-08-19	16	0	0	0	
9582	Capacity Building Seminar		National Association of Unesco Clubs in the Philippines		24	\N	2015-05-18	2015-05-18	4	0	0	0	
12759	Skills Training Course on the Performance Testing and Evaluation of PhilMech Corn and Cassava Technologies		Philippine Center for Postharvest Development and Mechanization		2217	\N	2018-04-10	2018-04-13		0	0	0	
12760	9th PSABE Bicol Chapter Regional Convention " Strengthening Agrcultural and Biosystems Engineers thru Continuing Professional Development Programs				2217	\N	2018-03-02	2018-03-03		0	0	0	
12761	Capability Building for Drying and Milling Plant Servicing NC III				2217	\N	2017-11-20	2017-11-25		0	0	0	
12762	National Forum on the Implementation of Agricultural and Biosystems Engineering and Mechanizations Regulations				2217	\N	2017-11-08	2017-11-09		0	0	0	
12763	Retooling of Project Implementers on the Conduct of Nationwide Survey of Arthropod Pest and Disease of Cassava		Bureau of Plant Industry		2217	\N	2017-09-19	2017-09-22		0	0	0	
12764	Specialized Training Couse on Testing and Evaluation of Agricultural and Fisheries Machinery				2217	\N	2017-08-08	2017-08-11		0	0	0	
12765	34th Conference of the ASEAN Federation of Engineering Organizations "ASEAN Community: Engineering Shining Through"		34th Conference of the ASEAN Federation of Engineering Organizations		2217	\N	2016-11-24	2016-11-24		0	0	0	
12766	National Capability Building on Summary Protocol and Esrly Warning on Cassava Arthropod Pests and Diseases		Bureau of Plant Industry		2217	\N	2016-09-12	2016-09-16		0	0	0	
12767	Study Mission on Cassava Crop Health  in Vietnam and Thailand		Centro Internacional De Agricultura Tropical and Department of Agriculture-Bureau of Agricultura Research Philippine Root Crop Research and Training Center Visayas State University		2217	\N	2016-04-26	2016-05-04		0	0	0	
12774	Season-Long Training of Trainers (TOT) on Corn Cum Goof Agriculture Practices with NCII Certification		Agricultural Training Institute		2217	\N	2015-05-11	2015-09-10		0	0	0	
12775	Training on Trainers on PNS: Good Agricultural Practices for Cassava and Code of Practice for the Reduction of HCN for Cassava Products		Agricultural Training Institute		2217	\N	2015-04-06	2015-04-09		0	0	0	
12777	Training Courses of Sugarcane and Cassava Processing		Ministry of Commerce, People's Republic of China		2217	\N	2008-07-14	2008-08-12		0	0	0	
9623	Cummincable Diseases and Snake Bite Manacurement	Technical	Research Institute for Tropical Medicine		257	\N	2018-11-22	2018-11-23	16	0	0	0	Technical
9624	19th Annual Philippine National Immunization Conference	Technical	Philippine Pedriatic Survey Central Luzon Chapter		257	\N	2018-11-15	2018-11-16	16	0	0	0	Technical
9625	Regional Maternal Death Dissemination Forum	Technical	Department of Health Regional Office III		257	\N	2018-05-09	2018-05-09	8	0	0	0	Technical
10626	USP Smartcad Network		Smartmatic		1612	\N	2015-06-03	2015-06-10	\N	0	0	0	
9626	Post Partum Family Planning	Technical	Dr. Pauuno Garcia Memorial Research and Medical Center		257	\N	2017-11-08	2017-11-08	8	0	0	0	Technical
9627	Family Planning Demant Orientation for Hospital	Technical	department of Health Regional Office III		257	\N	2017-03-16	2017-03-17	16	0	0	0	Technical
9628	Health Care System Resilence: A Continuing Challenge for Nurses	Technical	Philippine Nurses Association Region III		257	\N	2016-12-03	2016-12-03	8	0	0	0	Technical
9629	Stake Holder Orientation on RA.9482 and Consultative meeting on Rabies Prevention and Control Program	Technical	Provincial Health Office		257	\N	2016-12-02	2016-12-02	8	0	0	0	Technical
9630	Training on Maternal Death Reporting and Review System for Lous	Technical	Department of Health Regional Office III		257	\N	2016-07-05	2016-07-08	24	0	0	0	Technical
9632	Family Planning Cempetency - Based Training 	Technical	Department of Health Regional Office III		257	\N	2016-05-16	2016-05-20	32	0	0	0	Technical
9633	Orientation Seminar on Magna Carta of Women (RA9710)	Technical	Provincial Government of Bataan and Provincial Population Office		257	\N	2016-04-15	2016-04-15	8	0	0	0	Technical
9634	Seminar Workshop on Mainstreaming GAD Program Through Identifying GAD Issues, GAD Analysis and GAD Plan and Budget	Technical	Provincial Government of Bataan and Provincial Population Office		257	\N	2015-05-14	2015-05-15	16	0	0	0	Technical
9635	Fsats using a Hemodialyc Cwenter	Managerial	Dental Health 		250	\N	2018-10-23	2018-10-24		0	0	0	Managerial
9636	Revised Den Care Clinical Management 	Managerial	DOH		250	\N	2018-05-22	2018-05-23		0	0	0	Managerial
9637	BLS & ACLS Training	Managerial	Lagardo Safety and Resource caring Center		250	\N	2019-03-04	2019-03-04		0	0	0	Managerial
9638	Philippine College oh Physician (PCP)	Managerial	Philippine College of Physician		250	\N	2018-05-18	2018-05-18		0	0	0	Managerial
9650	Philippine College of Surgeon		PCL		256	\N	2018-11-30	2018-12-02		0	0	0	
9651	Follow of International Colleg of Surgeon		ICS 		256	\N	2015-11-15	2015-11-15		0	0	0	
9644	Latest Trade Development and International Trade Agreement and Computation Techniques and Formulas		Asia Pacific College of Advanced Studies, Balanga City, Bataan		27	\N	2013-11-21	2013-11-21	\N	0	0	0	
9645	Communication Skills Training with Group Dynamics and Team-building Session of Sangguniang Kabataan Officials of Orion		Baguio City		27	\N	2012-03-01	2012-03-04	\N	0	0	0	
9646	Integrated Sangguniang Kabataan Organizational Leadership and Re-orientation- basic Orientation Seminar for the SK Officials of Orion, Bataan		Baguio City		27	\N	2012-03-06	2012-03-09	\N	0	0	0	
9647	 Pagsasanay sa Korespondensiya Opisyal at Implementasyon ng Kautusang Tagapagpaganap Blg. 335		Komisyon sa Wikang Filipino  at Pamahalaang Lalawigan ng Bataan 		28	\N	2015-09-29	2015-09-29	\N	0	0	0	
9653	Anti-illegal Recruitment/Antitraficking in Persons Campaign Seminar 		Philippine Overseas Employment Administration		345	\N	2018-10-18	2018-10-18	\N	0	0	0	
9654	Digital Media Fundamental (ADOBE Photoshop)		Overseas Workers Welfare Administration		345	\N	2017-02-10	2017-02-22	\N	0	0	0	
9656	Computer Fundamentals Course		Overseas Workers Welfare Administration		345	\N	2016-09-27	2016-10-10	\N	0	0	0	
9659	Awarding Ceremony of Integrated Services for Livelihood Advancement (ISLA) and Tulong Panghanap sa ating Disadvantage (TUPAD) Workers		Provincial Government of Bataan		346	\N	2009-01-26	2009-01-26	\N	0	0	0	
9660	Anti-terrorism and Bomb Treat Seminar		Provincial Government of Bataan		346	\N	2005-03-18	2005-03-18	\N	0	0	0	
9661	Training on Project Development and Management		Department of Labor and Employment		347	\N	2018-12-05	2018-12-07	\N	0	0	0	
9662	Supervisory Development Course - Track III		Civil Service Commission Regional Office 3		347	\N	2018-11-14	2018-11-15	\N	0	0	0	
9701	Supevisory Development Coursre Track I		Provincial Human Resource Management Office/Civil Service Commission		350	\N	2016-11-15	2016-11-17	\N	0	0	0	
9702	Information Technology Literacy Program		Overseas Workers Welfare Administration 		350	\N	2016-05-26	2016-06-10	\N	0	0	0	
9703	Strategic Planning Seminar and Lakbay Aral		CEMBA Multi-Purpose Cooperative		350	\N	2015-12-03	2015-12-05	\N	0	0	0	
9704	Consultation Workshop on the Establishment of Regional Reintegration Network		Department of Labor and Employment		350	\N	2015-11-25	2015-11-25	\N	0	0	0	
9705	Workshop Training for Organizing and Approach of OFW and Members		Overseas Workers Welfare Administration		350	\N	2015-08-20	2015-08-22	\N	0	0	0	
9706	Region-wide Assessment on SPES Implementation Cum Team Building		Department of Labor and Employment		350	\N	2014-11-19	2014-11-21	\N	0	0	0	
9708	14th National PESO Congress		Department of Labor and Employment		350	\N	2014-10-22	2014-10-24	\N	0	0	0	
9709	Capability Building Orientation/Seminar for OFW Migrant Desk Officer		Overseas Workers Welfare Administration & Department of Labor and Employment		350	\N	2013-08-01	2013-08-02	\N	0	0	0	
9710	Strategic Planning		Provincial Cooperative Development Office		350	\N	2013-08-28	2013-08-29	\N	0	0	0	
9712	Advanced Management Course Training for PESO Managers and Staff 		DOLE Bataan Field Office 		350	\N	2013-10-30	2013-10-31	\N	0	0	0	
9714	Standard Training Curricular for Cooperative Officer		Provincial Cooperative Development Office		350	\N	2011-10-13	2011-10-14	\N	0	0	0	
9762	Information Dissemination RA 9470		Bataan National High School		683	\N	2007-02-13	2007-02-13	\N	0	0	0	
9785	Collapsed Structure Search and Rescue Training		Olongapo Disaster Risk Reduction and Management Office		269	\N	2015-12-12	2015-12-14	\N	0	0	0	
9786	Capacity Building Training		Globe Telecom and Weather Philippines		269	\N	2015-11-24	2015-11-24	\N	0	0	0	
9787	All Hazard Incident Management Team Training Course - Incident Command System Level IV		Office of the Civil Defense- Region III		269	\N	2015-11-09	2015-11-13	\N	0	0	0	
9788	Contingency Planning Training of Facilitator		Office of the Civil Defense- Region III		269	\N	2015-08-24	2015-08-26	\N	0	0	0	
9789	Position Title Course Training - Incident Command System Level III		Office of the Civil Defense- Region III		269	\N	2015-02-23	2015-02-27	\N	0	0	0	
10288	EARTHQUAKE DRILL		FREEPORT AREA OF BATAAN 		2185	\N	2016-04-21	2016-04-21	8	0	0	0	
9790	Basic Incident Command System Training Course - Incident Command System Level I		Office of the Civil Defense- Region III		269	\N	2014-06-18	2014-06-20	\N	0	0	0	
9851	1 Bataan Resilience Team Risk-Sensitive Investment Planning Workshop		Zuelig Family Foundation		427	\N	2019-02-28	2019-03-01	\N	0	0	0	
9854	PPP Capacity Building for LGUs in Bataan (PPP101 Seminar)		PPP Center of Philippines		427	\N	2018-10-24	2018-12-06	\N	0	0	0	
9855	Easeof Doing Business and Efficient Government Service Delivery Act of 2018		Department of Trade and Industry		427	\N	2018-09-13	2018-10-25	\N	0	0	0	
9857	Rural Impact Sourcing Technical Training		Department of Information and Communications Technology		427	\N	2017-08-08	2017-08-08	\N	0	0	0	
9858	Internet Marketing Bootcamp		US Auto Parts		427	\N	2008-02-16	2008-02-16	\N	0	0	0	
9859	4th Quarter Regional Conference		BLGF		74	\N	2015-12-09	2015-12-10	\N	0	0	0	
9861	PAMAS 8th National Conference -Seminar		PAMAS		74	\N	2015-05-26	2015-05-30	\N	0	0	0	
9862	82nd Annual National Commentor and Seminar Workshop		PHALTRA		74	\N	2015-02-03	2015-02-06	\N	0	0	0	
9863	BAsic Incident Command System (ICS) Training Course		PDRRMO		74	\N	2014-06-15	2014-06-20	\N	0	0	0	
9864	1st Quarter Regional Conference and Regate 3 Election of Officers for Provincial/ City/ Municipal Treasurer and their Assistant		BLGF		74	\N	2014-03-05	2014-03-07	\N	0	0	0	
9865	Master Class PGC Boot		Institute for Solidarity in Asia		74	\N	2014-07-03	2014-07-05	\N	0	0	0	
9991	2019 Gad Planning Ang Budgeting, Gad Analysis Cum Monitoring And Evaluation Using Hgdg		Provincial Gender And Development Office Of Quezon Province		613	\N	2018-09-03	2018-09-05	\N	0	0	0	
9992	Gender And Development Cum Team Building		Provincial Population Office		613	\N	2018-08-03	2018-08-04	\N	0	0	0	
9993	Basic/Advanced Written And Oral Communcations With Powerpoint Presentation		Provincia Human Resource Management Office		613	\N	2018-04-18	2018-04-19	\N	0	0	0	
9996	Governance And Management Of Cooperatives		Provincial Cooperative And Enterprise Development Office		613	\N	2018-05-12	2018-05-12	\N	0	0	0	
9997	Work Attitude And Values Enhancement Training		Provincia Human Resource Management Office		613	\N	2016-06-20	2016-06-21	\N	0	0	0	
9999	Orientation On Magna Carta Of Women And Anti Violence Against Women And Children		Provincial Government Of Bataan		613	\N	2016-04-15	2016-04-15	\N	0	0	0	
10001	Core Functions Of Records Management		Phil. Association Of Record Officers And Archivists		613	\N	2015-05-19	2015-05-21	\N	0	0	0	
10002	Supervisory Development Course Ii		Civil Service Commission		613	\N	2015-04-21	2015-04-23	\N	0	0	0	
10003	Empowering Sp Staff		Acserna Consultancy		613	\N	2014-02-06	2014-02-07	\N	0	0	0	
10004	Parliamentary Procedures		Provincial Cooperative Development Office`		613	\N	2013-12-12	2013-12-13	\N	0	0	0	
10023	Raining Of Human Security: Strategic National/Local Partnership For Housing		Provincial Board Members League Of The Philippines		625	\N	2011-12-01	2011-12-03	24	0	0	0	
10024	Training Seminar On Environmental Protection, Human Ecology And Security		Provincial Board Members League Of The Philippines		625	\N	2011-07-27	2011-07-30	24	0	0	0	
10025	Cooperative Transcend Through Invention The Challenge Of The Time		Cooperative Development Authority		625	\N	2010-10-01	2010-10-03	24	0	0	0	
10026	Training/Seminar In The Budget Operations Manual For Lgu'S		Department Of Budget And Management		625	\N	2010-07-14	2010-07-16	24	0	0	0	
10027	Seminar/Workshop On Raising The Standards Of Governance Improving Service Deliver On Public Service		Philippine League Of Secretaries To The Sanggunianq		625	\N	2009-11-25	2009-11-28	32	0	0	0	
10028	Seminar/Workshop Kabalikat Ng Lahat Tungo Sa Mahusay Na Pamumuno Ngayon At Bukas		Philippine League Of Secretaries To The Sanggunian		625	\N	2009-06-23	2009-06-26	32	0	0	0	
10029	Seminar On Strengthening Legislative Commitement To Environmental Sanitation		Philippine League Of Secretaries To The Sanggunian		625	\N	2007-11-20	2007-11-23	32	0	0	0	
10035	Consultative Meeting Re: Anti-Smoking At Grand Subic Hotel		Doh-Region III		637	\N	2015-03-24	2015-03-25	16	0	0	0	
10036	Mpower Training Re: Anti-Smoking		Pho		637	\N	2014-09-10	2014-09-12	24	0	0	0	
10044	Orientation On Gender And Development Basic Concepts And Issues Cum Team Building		Provincial Government Of Bataan		616	\N	2018-05-27	2018-05-28	\N	0	0	0	
10074	Radio Communication Registration & Licensing (Restricted) Land and Mobile Radio Telephone Operation for Land Mobile Services (RLM Certificate)		PGO & NTC		1744	\N	2017-08-10	2017-08-10		0	0	0	
10075	USP SMARTCAD CCTV OPERATOR 		1BATAAN COMMAND CENTER 		1744	\N	2015-05-27	2015-05-27		0	0	0	
10076	CAREER ORIENTATION SEMINAR 		ACLC		1744	\N	2014-02-26	2014-02-26		0	0	0	
10077	PRE EMPLOYMENT SEMINAR 		ACLC BALANGA 		1744	\N	2014-02-28	2014-02-28		0	0	0	
10084	English Proficiency Training for Effective Communication Skills		EPCST -English		1723	\N	2015-03-18	2015-03-18	8	0	0	0	
10092	Crisis Management on First Aid and Disaster Training				1724	\N	2008-07-07	2008-07-07		0	0	0	
10093	Related Old Concepts to New Ideas in an Evidence Based Hospital Practice				1724	\N	2008-01-19	2008-01-19		0	0	0	
10094	Pop Smear a Special Technique in Artrining Exploiting Cells 				1724	\N	2007-01-31	2007-01-31		0	0	0	
10095	Get Rid your Body Toxins				1724	\N	2007-01-31	2007-01-31		0	0	0	
10281	BASIC LIFE SUPPORT;ELECTRICAL THERAPY  BASIC ELECTROCARDIOGRAPHY		NURSING CENTER FOR CLINICAL LABORATORY EXPERIENCE INC.		2185	\N	2019-03-23	2019-03-23	8	0	0	0	
10282	THE CHANGING LANDSCAPE OF IMMUNIZATION IN THE PHILIPPINES 		PHILIPPINE FOUNDATION FOR VACCINATION 		2185	\N	2018-11-15	2018-11-16	16	0	0	0	
10283	CARDIOPULMONARY RESUCITATION TRAINING 		MARVELEZ RESCUE MEDICS 		2185	\N	2018-07-16	2018-07-16	8	0	0	0	
10284	TRAINING ON LEARNING PACKAGE ON PARENT EDUCATION 		COMMISSION ON POPULATION 		2185	\N	2018-02-26	2018-03-02	40	0	0	0	
10285	MOVING FORWARD THRU CHANGING TIMES 		BATAAN MEDICAL SOCIETY		2185	\N	2017-09-29	2017-09-29	8	0	0	0	
10286	MILLENIAL NURSES: THE POSITIVE NURSING PRACTICE IN TODAYS ENVIRONMENT 		BATAAN PENINSULA STATE UNIVERSITY		2185	\N	2017-08-05	2017-08-05	8	0	0	0	
11402	PDRRMC - Wasar				1563	\N	2011-03-06	2011-03-07		0	0	0	
10342	Orientation on FASIS & IClinic Sys Among Public Health Associates	Technical 	Department of Health		2048	\N	2017-02-23	2017-02-24	\N	0	0	0	Technical 
10343	ORIENTATION ON MEASLES RUBELLA SCHOOL BASED IMMUNIZATION	TECHNICAL 	DEPARTMENT OF HEALTH		2048	\N	2016-08-11	2016-08-11	\N	0	0	0	TECHNICAL 
10344	KP MDG PROGRAM IMPLEMENTATION REVIEW & UPDATES 	TECHNICAL 	DEPARTMENT OF HEALTH		2048	\N	2016-08-10	2016-08-11	\N	0	0	0	TECHNICAL 
10345	Exigency: An Emegency Medical Services Awareness Seminar	Technical	LGU - Marivelez Rescue Medics		2048	\N	2016-05-28	2016-05-28	\N	0	0	0	Technical
10346	Orientation on the Collection of the 2017 Health Facilty Profile 	Techncial	Department of Health		2048	\N	2017-07-27	2017-07-28	\N	0	0	0	Techncial
14379	Supervisory Development Course- Tracks 2 and 3	\N	CSC-NCR	\N	0	\N	2016-06-07	2016-06-10	32	0	0	0	 
10347	BMS at the Frontline "Moving Forward Thru Changing TImes"	Technical	Bataan Medical Society		2048	\N	2017-10-29	2017-10-29	\N	0	0	0	Technical
10624	Nurses Trusted to Care		Bataan Peninsula State University		1591	\N	2012-02-20	2012-02-20	\N	0	0	0	
10716	Instrumentation and Control Servicing		TESDA		1727	\N	0001-01-01	0001-01-01		0	0	0	
10348	Updates on Infectious Disease Program with Data Validation	Technical	Department of Health		2048	\N	2018-10-10	2018-10-10	\N	0	0	0	Technical
10349	19th Philippine National Immunization Conference "The Changing Landscapes of Immunization in th ePhilippines"	Technical	Bataan Provincial Health Office 		2048	\N	2018-11-15	2018-11-16	\N	0	0	0	Technical
10350	Recidency Training in Radiology 		Capitol Medical Center		224	\N	1998-06-14	2001-06-14		0	0	0	
10351	Training on the Revised Dengue		Angleles City		224	\N	2015-08-16	2015-08-18		0	0	0	
10356	Midwifery Service by PRacticing Quality Maternal Care and Values		Integrated Midwives Association of the Philippines		221	\N	2018-05-18	2018-05-18	8	0	0	0	
10357	Training on Hiv Testing Service		Department of Health		221	\N	2018-08-06	2018-08-09	32	0	0	0	
10358	Nutricare 2018		Department of Health		221	\N	2018-02-23	2018-02-24	16	0	0	0	
10359	Region III Challenges in Midwifery Profession Now and Beyond		Integrated Midwives Association of the Philippines		221	\N	2017-12-01	2017-12-01	8	0	0	0	
10361	BMS at the Frontline Movin Forward Thru Changing Time		Bataan Medical Society		221	\N	2017-09-29	2017-09-29	8	0	0	0	
10362	Role of Midwife in Disaster Responsiveness Contraception in Teenage Preg		Integrated Midwives Assocaition of the Philippines		221	\N	2017-08-05	2017-08-05	8	0	0	0	
10363	IMAP Definingh Core Values: Integrity Motivation Accountability PRofessionalsm		Integrated Midwives Association of the Philippines Bataan Chapter		221	\N	2017-07-07	2017-07-07	8	0	0	0	
10364	2016 NutriCamp		Perinital Association of the Philippines INC		221	\N	2016-03-19	2016-03-19	8	0	0	0	
10365	Nutrition & Diabetics : A Diverse Blend of Practice 		Department of Health - League of Registered Nutritionist Diabetitian. INC.		222	\N	2018-10-25	2018-10-27	24	0	0	0	
10366	PSND 2018 Conventional - Theme :"Adding More life to years": An Integrative Approach to non-Communicable Diseases (NCDs) Prevention"		Philippine Society of Nutritionist Diabetitians, Inc.		222	\N	2018-09-19	2018-09-20	16	0	0	0	
10367	34th Dp Annual Convention "A Journey Along the Metabolic Commincation Highway"		Diabetes Philippines Inc		222	\N	2017-11-23	2017-11-24	16	0	0	0	
10368	Service with Passion Towards a Nourished Nation		Nutritionist Diabetititans Association of the Phlippines		222	\N	2017-03-08	2017-03-10	24	0	0	0	
10369	Meat Processing Training		Department of Agriculture Regional Field Office III		222	\N	2012-11-20	2012-11-20	8	0	0	0	
10370	Livelihood Skills Training on Cassava Processing		Department of Agrilcuture Regional Field Office III		222	\N	2012-11-20	2012-11-20	8	0	0	0	
10371	Meat Processing and Preservation		Municipal Social Welfare and Development Office-Bataan		222	\N	0007-02-07	2007-02-20		0	0	0	
10372	Food Service Management		University of the Philippines-University Food Service		222	\N	0001-01-01	0001-01-01	120	0	0	0	
10373	Administrative and Therapeutic Diatetics				222	\N	1993-12-01	1993-12-20		0	0	0	
10374	19th Philippine National Immunization Conference "The Changing Landscapes of Immunization in the Philippines"		Philippines Pedricatic Society Central Luzon		212	\N	2018-11-15	2018-11-16		0	0	0	
10375	Training on Min Testing Services (HIV Counseling and Testing)		Provincial Health Officer		212	\N	2018-03-06	2018-03-09		0	0	0	
10376	43rd Annual Convention and 44th Midwifery Week Celebration: Theme:"IMAP Inc. Sustaining its Mission and Vision for 43yrs and Beyond"/1st Grand Bataan Medical Society Post Graduate Course BMS at the Frotline "Moving Forward Thru Changing Times"		SMA Convention Center Seashell LN Pasaya,1300		212	\N	2017-10-19	2017-10-21		0	0	0	
10377	Training Wokrshop on the Generation of Commodity Investment Plan(CIP) and Agribusiness Investment Concepts (AIC)		Department of Agriculture - Regional Field Office III		58	\N	0219-02-12	2019-02-15	\N	0	0	0	
10378	Rapit Market Assesment (RMA) Training		Department of Agriculture - Regional Field Office III		58	\N	2018-08-28	2018-08-31	\N	0	0	0	
10382	Updating of Provincial Commodity Ivestment Plan(PCIP)		Department of Agriculture  - Regional Field Office		58	\N	2018-02-13	2018-02-15	\N	0	0	0	
10383	Capability Echancement on Organizaitonal Managemnet and Sutainability Training		Department of Agriculture- Regional Field Office III		58	\N	2017-11-23	2017-11-25	\N	0	0	0	
10384	AFMA Planning Workshop		Department of Agriculture - Regional Field Office III		58	\N	2017-11-09	2017-11-10	\N	0	0	0	
10385	Cluster-Wide LGU PCIP/CCIP Module Encodeing Session th NCPO,PSO,RPCOs and PPMIU's		Department of Agriculture - Philippine Rural Development Project		58	\N	2017-10-07	2017-10-27	\N	0	0	0	
10386	Seminar on magna Carta Women Cum Team Effectiveness Of Agriculture Employees		Office of the Provincial Agriculturist - Population Commission		58	\N	2017-09-29	2017-09-30	\N	0	0	0	
10388	Basic GIS Training		Central Luzon State University		58	\N	2017-07-26	2017-07-29	\N	0	0	0	
10389	Training on Project Proposal Packaging		Department of Agriculture - Regional Field Office III		58	\N	2017-07-03	2017-07-06	\N	0	0	0	
10390	Trainer Training on Packaging and Labeling(Phase 2):Label Desgin for Different Packaging Formats		Department of Science and Technology - Bataan		58	\N	2017-06-27	2017-06-28	\N	0	0	0	
10391	Trainer Training on Packaging and Labeling(Phase 2):Creative Design in Photoshop		Department of Science and Technology - Bataan		58	\N	2017-06-13	2017-06-17	\N	0	0	0	
10392	Provincial Roll Out of RCM Use and Operation for AEWs		Department of Agriculture - Regional Field Office III; Office of the Provincial Agriculturist		58	\N	2017-06-06	2017-06-09	\N	0	0	0	
10393	Preaparation of Commodity Investment Profile		Department of Agriculture  - Regional Field Office III		58	\N	2017-05-10	2017-05-12	\N	0	0	0	
10394	LGU PCIP/CCIP Module Encoding Session With NPCO,PSO, RPCOs, And PPMIU's		Department of Agriculture - PhilippineRural Development Project		58	\N	2017-04-24	2017-04-28	\N	0	0	0	
10625	Radio Communication and Licensing		Provincial Government Services		1612	\N	2017-08-10	2017-08-10	\N	0	0	0	
10628	Network System and Security Management		Smartmatic		1612	\N	2015-06-01	2015-06-03	\N	0	0	0	
10717	USP Smartcad -Admin and Reports		Smartmatic		1680	\N	2015-05-28	2015-05-28	\N	0	0	0	
14380	Supervisory Development Course -Track 1	\N		\N	0	\N	2015-10-13	2015-10-16	32	0	0	0	 
10395	Training on Packaging and Labeling for Oraganic Post (OTP) Operators		Deparment of Agriculture - Regional Field Office III		58	\N	2017-04-19	2017-04-21	\N	0	0	0	
10396	RBO and 4h Regional Consultative and Organizational Strengthening		Agricultural Training Institute - Regional Training Center III		58	\N	2017-03-07	2017-03-08	\N	0	0	0	
10397	Preparation of Agribusiness Investment Proposals		Department of Agriculture - Regional Field Office III		58	\N	2017-01-25	2017-01-27	\N	0	0	0	
10398	Preparation of Bussiness Model from the Provincial Commodity Investment Plan(PCIP)		Department of Agriculture - Regional Field Office III		58	\N	2017-01-11	2017-01-13	\N	0	0	0	
10572	Calamity Preparedness		The Church of Jesus Christ of Latery Day Saints Apollo Ward Orani Bataan		1685	\N	2016-07-30	2016-07-30	\N	0	0	0	
10573	Radio Communication Registration and Licensing (Restricted Land Mobile Radio Telephone Operation for Land Mobile Services (RLM Certificate)		Provincial Goverment of Bataan and National Telecommunications Commission		1685	\N	2017-08-10	2017-08-10	\N	0	0	0	
10574	Trauma Care: from Pre Hospital to the Emergency Room		Phil. College of Surgeons and Phil. Society of General Surgeon Inc.		1685	\N	2018-06-30	2018-07-01	\N	0	0	0	
10575	Instrumentation and Control Servicing NC II				1656	\N	2015-09-07	2015-10-09	\N	0	0	0	
10578	Cisco Certified Network Associate with Comptia A+		Rivan School of Tehcnology 		1574	\N	2018-06-18	2018-06-22	\N	0	0	0	
10579	Basic Occupational Safety and Health for Reconstruction site safety officer 		Safeways Consultancy & Safety Services		1574	\N	2013-01-21	2013-01-25	\N	0	0	0	
10580	Bartending NC II		Asia Pacific College of Advanced Studies 		1574	\N	2015-09-07	2015-10-01	\N	0	0	0	
10581	Trauma Care from Pre Hospital to ER		Philippine College of Surgeons Central Luzon Chapter		1651	\N	2018-06-30	2018-07-01	\N	0	0	0	
10585	Disaster Preparedness Training on First Aid Lifting and Moving, Bandaging with Basic Life Support		Provincial Disaster Risk Reduction and Management Council		1721	\N	2015-02-12	2015-02-14	16	0	0	0	
10586	Basic Fire Fighting Course	Supervisory	Eric Gaviola		1615	\N	2009-04-23	2009-06-29	\N	0	0	0	Supervisory
10587	Toxic Substance and Hazardous Waste Caution	Technical	Mary Rose De Lima		1615	\N	2016-03-04	2016-03-04	\N	0	0	0	Technical
10588	Chromium Awareness Seminar	Technical	Orlando Samson		1615	\N	2009-07-24	2009-07-24	\N	0	0	0	Technical
10589	Fire Basic Service Course	Technical	Lt. Col Fausid Santiago		1615	\N	2000-01-15	2000-12-16	\N	0	0	0	Technical
10590	Permit to Work System-Refresher Course	Technical	Engr. Christian Escaler		1615	\N	2010-04-06	2010-04-06	\N	0	0	0	Technical
10591	Customer Service Relation, Gun Safety Report Writing and Leadership Training Course	Technical	Uniwide Security Agency Corporation		1681	\N	2014-04-12	2014-04-12	\N	0	0	0	Technical
10593	AMSCOR Shooting Range	Technical	AMSCOR Shooting Range and Gun Club Inc.		1681	\N	2015-06-26	2015-06-26	\N	0	0	0	Technical
10594	Radio Communication Registration and Licensing Restricted Land Mobile Radiotelephone, Operation for Land Mobile Services (RLM Certified)	Technical	Provincial Government of Bataan		1681	\N	2017-08-10	2017-08-10	\N	0	0	0	Technical
10612	Rural Impact Sourcing Technical Training 		Department of Information and Communications Technology		1730	\N	2017-08-11	2017-09-28	\N	0	0	0	
10613	Leadership Formation Training		Philippine Red Cross Bataan Chapter		1591	\N	2013-05-22	2013-05-24	\N	0	0	0	
10614	Deppressed or Refresh, A Dive to Soup Life's an Anti Suicidal Campaign		Natasha Goulbourn Foundation		1591	\N	2013-06-15	2013-06-15	\N	0	0	0	
10615	Personality Power Strong Influence in Nursing Career		Bataan Peninsula State University		1591	\N	2013-08-23	2013-08-23	\N	0	0	0	
10617	Standard First Aid and Basic Life Support CPR Training for Professional Rescuer		Philippine Red Cross		1591	\N	2015-05-13	2015-05-13	\N	0	0	0	
10618	Transcultural Nursing, its Application to Practice Education and Research		Bataan Peninsula State University		1591	\N	2014-01-20	2014-01-20	\N	0	0	0	
10619	4th PNS Future Nurses towards Global Competitiveness				1591	\N	2014-02-20	2014-02-20	\N	0	0	0	
10620	Emergency Disaster Preparedness, What Nurses should Know				1591	\N	2014-02-13	2014-02-13	\N	0	0	0	
10623	Stress Management Seminar		Lalawigan Elementary School		1591	\N	2013-11-12	2013-11-12	\N	0	0	0	
10630	USP Smartcad		Smart matic		1611	\N	2015-06-20	2015-06-20	\N	0	0	0	
10633	Call Center Training NC II				1662	\N	0001-01-01	0001-01-01	\N	0	0	0	
10634	Pipefitting		TESDA		1678	\N	2009-10-04	2009-12-04	\N	0	0	0	
10635	Instrumentation and Control Servicing NCIII		Technical Education and Skills Development Authority		1732	\N	2018-04-12	2018-05-13	176	0	0	0	
10636	Instrumentation and Control Servicing NCII		Technical Education and Skills Development Authority		1732	\N	2013-01-14	2013-02-15	238	0	0	0	
10637	Advanced Cardiac Life Support/Basic Life Support/Basic ECG and Dysrhythmia Recognition/Airway Adluncts, Endotracheal intubation and Management in ACLS/CPR and AED Training/Advanced Cardiovascular Life Support -Emergency Cardiovascular Care/Recognition and Management of Acute Ischemic Stroke Cardiovascular Care/Administration of Appropriate Drugs within the ACLS Algorithms/BLS for Health Care Providers/Recognition and Management of Acute Coronary Syndrome		American Safety and Health Institute		1638	\N	2018-02-06	2018-02-08	\N	0	0	0	
10638	First Aid Lifting/Moving Bandaging with BLS		PDRRMC Bataan		1582	\N	2015-02-13	2015-02-14	\N	0	0	0	
10641	Radio Communication Registration & Licencing 		national Communications Commissions 		1737	\N	2017-08-10	2017-08-10		0	0	0	
10642	Legislative Seminar for Good Governance		Liga ng mga Barangay		1632	\N	2013-02-18	2013-03-20	\N	0	0	0	
10645	Driving NC-II		RJCCL Mariveles TESDA		1632	\N	2018-09-08	2018-09-08	\N	0	0	0	
10646	USP Smartcard CCTV Operator		1Bataan Command Center Brgy. Doña Orani Bataan		1605	\N	2015-05-27	0001-01-01	\N	0	0	0	
10648	Seminar On Records Management		Peninsula Electric Cooperative		622	\N	2014-12-12	2014-12-12	8	0	0	0	
10649	Seminar Workshop On Disaster Preparedness		Peninsula Electric Cooperative		622	\N	2014-08-05	2014-08-06	16	0	0	0	
10650	The 7 Habits Og Highly Effective People		Peninsula Electric Cooperative		622	\N	2006-08-09	2006-08-09	8	0	0	0	
10653	Survive and Thrive Power Plan for Career Success 		Rodolfo Matacot/BPSU		1594	\N	2015-11-08	2015-12-08	\N	0	0	0	
10675	Emergency Medical Technician (EMT-B)	Technical	Golden Success		1579	\N	2018-02-11	2018-04-29	\N	0	0	0	Technical
10676	Ambulance Operations	Technical	Golden Success		1579	\N	2018-03-15	2018-03-15	\N	0	0	0	Technical
10678	Wilderness Emergency Med. Services	Technical	Golden Success		1579	\N	2018-04-21	2018-04-22	\N	0	0	0	Technical
10679	Disaster Preparedness	Technical	Golden Success		1579	\N	2018-04-14	0001-01-01	\N	0	0	0	Technical
10681	Fire Safety and Fire Suppression	Technical	Golden Success		1579	\N	2018-04-15	0001-01-01	\N	0	0	0	Technical
10683	Trauma Care: from Pre Hospital to Emergency Room	Technical	Phil. College of Surgeons Bataan Chapter		1579	\N	2018-06-30	2018-07-01	\N	0	0	0	Technical
10692	Pre Demonstration Workshop on Hepatitis B in Central Luzon		Department of Health		232	\N	2019-02-26	2019-03-01	32	0	0	0	
10693	Advance Cardiac Life Support and Basic Life Support Training		Orani District Hospital		232	\N	2018-12-07	2018-12-08	16	0	0	0	
10694	HIV Surveillance Orientation Among HIV Testing and Treatment Facilities		Department of Health		232	\N	2018-08-23	2018-08-24	16	0	0	0	
10695	First Regional Convention and Perinatal Association of the Philippines Chapter Caravan		PAP Central Luzon Chapter		232	\N	2018-07-20	2018-07-20	8	0	0	0	
10697	Primary Care Training on Sexually Tranmissible Infection		Department of Health		232	\N	2018-03-13	2018-03-16	32	0	0	0	
10700	MIS 500 MA X-Ray System Operation Technology		Robustan		1060	\N	2016-01-11	2016-01-11	10	0	0	0	
10701	2014 Annual Conference of Bio Medical Equipment Servicing, NAtional Certificate II - Holder		TESDA - Sab Fernando La Union		1060	\N	2014-06-05	2014-06-05	12	0	0	0	
10702	Technicians Training on Maintenance of Medical Equipments, DOH - MANILA		DOH - MANILA		1060	\N	2014-04-21	2014-05-02	100	0	0	0	
10703	Philippine Long Distance Telecom Company PLDT Co(OJT)		Balanga Exchange		1060	\N	1995-11-20	1996-01-28	80	0	0	0	
10709	First Regional Convention & PErinatal Association of the Philippines Chapter Caravan	Technical	Perinatal Association of the Philippines Inc.		216	\N	2018-07-20	2018-07-20	8	0	0	0	Technical
10711	Perinatal assocaition of the Philippines Chapter Caravan	Technical	Bataan Peninsula State University		216	\N	2017-07-22	2017-07-22	8	0	0	0	Technical
10792	Build Build Build For a Smart, Strong and Sustainable Societies 43rd National Convention	Technical	Philippine Institute of Civil Engineers		291	\N	2017-11-28	2017-11-30	\N	0	0	0	Technical
10793	Orientation and Consultative Workshop on the Build Back Better Operations Manual	Technical	Department of Interioir and Local Government - Region III		291	\N	2017-11-20	2017-11-22	\N	0	0	0	Technical
10795	Planning & Design of Flood Control Projects W/ Project Impact Analysis	Technical	Department  of Public Works & HighWays		291	\N	2016-09-26	2016-09-30	\N	0	0	0	Technical
10857	Virtual or Augmented Reality		Bataan Information and Communication Technology Development Council		1625	\N	2017-09-23	2017-09-24	\N	0	0	0	
10858	Engineer a Better Future: The 15th Youth Congress on Information Technology		UP System Information Technology Foundation		1625	\N	2017-09-07	2017-09-07	\N	0	0	0	
10718	Systematic Records Management		Arlene Pascual -BPSU/HRMO		1680	\N	2017-07-25	2017-07-26	\N	0	0	0	
10719	ISO 9001-2015 Awareness Seminar		NEO AMCA		1680	\N	2017-07-27	2017-07-27	\N	0	0	0	
10721	ISO 9001-2015 -Internal Quality Audit		NEO AMCA		1680	\N	2017-08-30	2017-08-30	\N	0	0	0	
10730	Pre-Hospital Trauma Care		Life Support Training International 		1752	\N	2016-03-28	2016-04-01	40	0	0	0	
10732	Emergency Medical Technician - Defibrillation 		Life Support Training International		1752	\N	2014-04-04	2014-04-08	40	0	0	0	
10733	Emergency Medical Technician - Basic 		Life Support Training International		1752	\N	2009-10-29	2009-11-29	320	0	0	0	
10746	Collapse Structure Search and Rescue and Vehicular Extrication		Smart Guard		1627	\N	2017-12-12	2017-12-14	\N	0	0	0	
10747	USP Smartcad Training		Smart Matic		1627	\N	2015-06-24	2015-06-24	\N	0	0	0	
10750	Radio Communication Registration Licensing		National Telecommunications Commission		1722	\N	2017-08-10	2017-08-10		0	0	0	
10779	Security Professionals Training Course Security Guard		Dubai Police Academy Dubai UAE	5 days	1636	\N	2010-04-18	2010-04-22	\N	0	0	0	
10780	Basic Law Enforcement and Security Training		Subic Bay Metropolitan Authority (LEO)	15 days	1636	\N	1998-10-29	1998-11-13	\N	0	0	0	
10781	Rapid Development Aftermath Rescue		PDRRMO		1643	\N	2017-02-28	2017-03-02	\N	0	0	0	
10784	Disaster Preparedness Training on First Aid and Lifting and Moving Bandaging with Basic Life Support		PDRRMO		1643	\N	2015-02-13	2015-02-14	\N	0	0	0	
10785	Radio Communication Registration and Licensing (Restricted Land Mobile Radiotelephone Operation for Land Mobile Services (RLM Certificate)		PGO and National Telecommunications Commission		1720	\N	2017-08-10	2017-08-10	\N	0	0	0	
10787	Entity Level Greenhouse Gas Emissions Inventory Workshop		PGO and Provincial Environment and Natural Resources 		1720	\N	2018-04-03	2018-04-03	\N	0	0	0	
10788	Rapid Damage Assessment and Needs Analysis (RDANA) Training		Regional Disaster Risk and Management Council 3 through the office of Civil Defense 3		1720	\N	2018-12-05	2018-12-07	\N	0	0	0	
10797	Trakhees Accreditation Program - Quality Control and Material Testing	Technical	Trakhees - Department of Planning and Development, Port & Costums & Freezone Corporation		291	\N	2016-11-10	2016-11-11	\N	0	0	0	Technical
10807	Unified Security Platform Smartycad		SMARTMATIC		1740	\N	2017-05-27	2017-05-27		0	0	0	
10808	Trauma Care: from Pre Hospital to ER		Philippine College of Surgeons Central Luzon Chapter		1733	\N	2018-06-30	2018-07-01	\N	0	0	0	
10809	First Responder Training 		Bataan General Hospital 		1733	\N	2017-10-17	2017-10-19	\N	0	0	0	
10811	National Certificate for Caregiving		TESDA		1733	\N	2018-03-13	2023-03-12	\N	0	0	0	
10812	TESDA NC II PHILIPPINE TVET COMPETENCY ASSESMENT AND CERTIFICATION SYSTEM 		TESDA/MBDA 		1747	\N	2018-09-08	2018-09-08		0	0	0	
10813	RADIO COMMUNICATION REGISTRATION AND LICENSING SEMINAR FOR RLM CERTIFICATE 		NTC/PGSO/MBDA 		1747	\N	2017-08-10	2017-08-10		0	0	0	
10814	RADAR MINI COMMAND CENTER TRAINING 		SMARTGUARD/PDRRMO 		1747	\N	2017-02-28	2017-03-01		0	0	0	
10815	WATER SEARCH AND RESCUE TRAINING		PCG/PDRRMO/MBDA		1747	\N	2017-02-20	2017-02-24		0	0	0	
10816	PRC SFA AND BL3-CPR TRAINING 		REDCROSS/PDRRMO		1747	\N	2016-02-29	2016-03-04		0	0	0	
10817	IOSH MANAGING SAFETY AWARENESS IOSH TRAINING COURSE		AVIE TRAINING & CONSULTANCY SERVICES/BPSU		1747	\N	2016-03-07	2016-03-08		0	0	0	
10818	GENERAL INDUSTRY SAFETY 		AVIE TRAINING & CONSULTANCY SERVICES/BPSU		1747	\N	2016-03-09	2016-03-11		0	0	0	
10819	PRINCIPLES OF SAFETY MANAGEMENT SYSTEM		AVIE TRAINING & CONSULTANCY SERVICES/BPSU		1747	\N	2016-12-23	2016-12-23		0	0	0	
10820	INTEGRATED PLANNING COURSE ON INCIDENT COMMAND SYSTEM II		OCD/PDRRMO		1747	\N	2016-08-15	2016-08-19		0	0	0	
10830	Radio Communication Registration and Licensing Restricted Land Mobile Radio-Telephone Operation for Land Mobile Services (RLM Certificate)	Technical 	Provincial Government of Bataan and National Telecommunications Commission		1661	\N	2017-08-10	2017-08-10	\N	0	0	0	Technical 
10831	USP Smartcad (CCTV Operator)		Smartmatic		1661	\N	2015-05-27	2015-05-27	\N	0	0	0	
10832	Philippine Red Cross First Aid and Basic Life Support -CPR Training 		Charlie Gatbunton Jr./ Red Cross Chapter Admin		1736	\N	2016-02-29	2016-03-04	\N	0	0	0	
10833	Water Search and Rescue Training Certificate of Attendance		Lt. Carlos Victor Carlos Philippine Coast Guard		1736	\N	2017-02-20	2017-02-24	\N	0	0	0	
10834	Rapid Deployment Aftermath Rescue Certificate of Completion		Lyle Opeña RADAR Technical Trainer		1736	\N	2017-02-28	2017-03-02	\N	0	0	0	
10835	Radio Communication Registration and Licensing NTC		Engr. Wilson Lejarde Chief Engineer, NTC Region III		1736	\N	2017-08-10	2017-08-10	\N	0	0	0	
10836	Philippine Society of General Surgeon; Trauma Care; from Pre Hospital to Emergency Room		Domingo Sampang MD -PSGS President Central Luzon Chapter, Ricardo Riego De Dios, MD PCS President Central Luzon Chapter		1736	\N	2018-06-30	2018-07-01	\N	0	0	0	
10837	3 Days Collapse Structure Search and Rescue Training				1682	\N	2015-12-12	2015-12-14	\N	0	0	0	
10838	Rapid Deployment  Aftermath Rescue (RADAR) Command Center Trailer Tent Training				1682	\N	2017-03-02	2017-03-02	\N	0	0	0	
10839	Radio Communication Registration and Licensing (Restricted Land Mobile Radiotelephone Operation for Land Mobile Services) RLM				1682	\N	2017-08-10	2017-08-10	\N	0	0	0	
10840	Trauma Care from Pre Hospital to the Emergency Room		Philippine College of Surgeons Central Luzon Chapter		1653	\N	2018-06-30	2018-07-01	\N	0	0	0	
10842	Radio Communication and Licensing Restricted Land Mobile Radio Telephone Operation		Provincial Government of Bataan/National Telecommunications Commission		1653	\N	2017-08-10	2017-08-10	\N	0	0	0	
10849	Radio Communication Registration and Licensing Restricted Land Mobile Radiotelephone Operation for Land Mobile Service (RLM Certificate)		Engr. Fernando Tanciongco -OIC Provincial General Service Office 		1692	\N	2017-08-10	2017-08-10	\N	0	0	0	
10850	Water Search and Rescue (WASAR) Training		Philippine Coast Guard		1676	\N	2017-02-20	2017-02-24	\N	0	0	0	
10851	National Certificate II (NCII) Driving		Technical Education and Skills Development Authority  (TESDA)		1676	\N	0001-01-01	0001-01-01	\N	0	0	0	
10852	First Respondend Training 		BA. Gen. 		1749	\N	2017-10-01	2017-10-01		0	0	0	
10853	Restricted land Mobile radio telephone operation for land mobile services				1749	\N	2017-08-01	2017-08-01		0	0	0	
10854	National Cert II in Driving 		Tesda 		1749	\N	2018-09-01	2018-09-01		0	0	0	
10855	Thesis Survival Guide Research Documentation and Presentation		Bataan Peninsula State University		1625	\N	2017-09-16	2017-09-16	\N	0	0	0	
10856	Optimizing Effectiveness and Productivity		Bataan Peninsula State University		1625	\N	2017-11-09	2017-11-09	\N	0	0	0	
10866	Unified Security Platform Smartcad		Smartmatic		1741	\N	2015-06-05	2015-06-05		0	0	0	
10867	Basic Advanced Written and Oral Communciation with Powerpoint Presentation		Provincial Human Resource Management Office		1741	\N	2018-04-18	2018-04-18		0	0	0	
10870	Work Attitude an Values Enchancement Training 		Human Resource Management Office 		552	\N	2016-06-20	2016-06-21	\N	0	0	0	
10871	Seminar / Workshop on the Preparation of LGU Tourism Development Plan and How to Organize Convention		Department of Tourism / Provincial Tourism Office 		552	\N	2016-04-22	2016-04-22	\N	0	0	0	
10872	Orientation Seminar on the Proceures for the isbursement Transaction of the Provincial Government of Bataan 		Provincial Accounting Office 		552	\N	2014-05-09	2014-05-09	\N	0	0	0	
10893	Training on Mainstreaming Green Growth in Devt Planning (Part I)	Technical	Global Green Growth Institute 		576	\N	2017-09-06	2017-09-07	\N	0	0	0	Technical
10894	Roll-out Training on the Deployment and Use of the eSRE Version 3 under LIFT System	Technical	Bureau of Local Government Finance, Region III		576	\N	2018-03-21	2018-03-23	\N	0	0	0	Technical
10895	Refresher Training to the Province for the Roll-outn of the LIFT system - Cluster I	Technical	Bureau of Local Government Finance, Region III		576	\N	2017-11-27	2017-11-30	\N	0	0	0	Technical
10905	Microsoft Windows XP Operating System IBM Personal computer		IBM Philippines Inc. 		577	\N	2003-12-01	2003-12-01	\N	0	0	0	
10906	Application Software: TOIMS: RPTAS 		System & Plan Integrator Development Co.		577	\N	0001-01-01	0001-01-01	\N	0	0	0	
12054	Strategic Performance Management System 		Provincial Government Office 		561	\N	2015-05-08	2015-05-08	\N	0	0	0	
10908	SEC AND BOA UPDATES - ENVIRONMENT OF THE PRACTICE - 4.0 AND ENABLING LAWS, RULES AND REGULATIONS - 4.0	TECHNICAL 	PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS (PICPA) PAMPANGA CHAPTER 		581	\N	2016-12-09	2016-12-09	\N	0	0	0	TECHNICAL 
10909	REGULATORS FORUM (SEC/BSP/IC/PDIC/BOA) - COMPETENCE ARE A- TECHNICAL COMPETENCE - 8.0	TECHNICAL	PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS (PICPA) NATIONAL 		581	\N	2017-01-25	2017-01-25	\N	0	0	0	TECHNICAL
10910	39TH ANNUAL NATIONAL CONVENTION - THEME: "GACPA MOVING UP A NOTCH FOR NATION BUILDING"	TECHNICAL 	THE GOVERNMENT ASSOCIATION OF CERTIFIED PUBLIC ACCOUNTANTS (GACPA) NATIONAL		581	\N	2017-05-24	2017-05-27	\N	0	0	0	TECHNICAL 
10911	72ND ANNUAL NATIONAL CONVENTION	TECHNICAL 	PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS (PICPA)  NATIONAL		581	\N	2017-11-22	2017-11-25	\N	0	0	0	TECHNICAL 
10912	DATA ANALYTICS & COMPUTERIZED ACCOUNTING & AUDITING DIGITIZATION 	TECHNICAL	PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS (PICPA) CENTRAL LUZON		581	\N	2018-02-03	2018-02-03	\N	0	0	0	TECHNICAL
10913	TAX UPDATE - TAX ACCELERATION FOR INCLUSION OR TRAIN 	TECHNICAL 	ASIAN INSTITUTE OF TAXATION 		581	\N	2018-03-24	2018-03-24	\N	0	0	0	TECHNICAL 
10914	40TH ANNUAL NATIONAL CONVENTION & SEMINAR - THEME: "SUSTAINING UNITY IN NATION - BUILDING THROUGH SERVICE, HARMONY AND IINOVATION TO NURTURE ECONOMY (SUNSHINE)	TECHNICAL 	THE GOVERNMENT ASSOCIATION OF CERTIFIED PUBLIC ACCOUNTANTS (GACPA) NATIONAL		581	\N	2018-05-23	2018-05-26	\N	0	0	0	TECHNICAL 
10915	73RN ANNUAL NATIONAL CONVENTION	TECHNICAL	PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACCOUNTANTS (PICPA) NATIONAL		581	\N	2018-01-01	2018-11-24	\N	0	0	0	TECHNICAL
10916	PROPERTY ASSESSMENT AND TAX ADMINISTRATION SYSTEM (PATAS) PROCESS FLOW TRAINING PROGRAM 	TECHNICAL 	PROVINCIAL GOVERNMENT OF BATAAN ASSOCIATION OF MUNICIPAL ASSESSORS OF BATAAN, INC.		581	\N	2018-12-11	2018-12-11	\N	0	0	0	TECHNICAL 
10926	SEMINAR ON GENDER AND DEVELOPMENT 	TECHNICAL 	PROVINCIAL POPULATION OFFICE - BATAAN		583	\N	2016-06-17	2016-06-17	\N	0	0	0	TECHNICAL 
10927	COACHING - SPECIAL TASK ON INVENTORY OF AUCTIONED PROPERTIES 	TECHNICAL 	PROVINCIAL TREASURER'S OFFICE - BATAAN		583	\N	2017-05-05	2017-05-05	\N	0	0	0	TECHNICAL 
10928	COACHING - BRIEF EVERYONE ON THE FLOW & REQUIREMENTS OF THE ISO AUDIT 	PROVINCIAL TREASURER'S OFFICE - BATAAN	TECHNICAL 		583	\N	2017-11-28	2017-11-28	\N	0	0	0	PROVINCIAL TREASURER'S OFFICE - BATAAN
10929	MONITORING - STEP-BY-STEP PROCEDURES STATED IN THE PROCESS FLOW SLIP	TECHNICAL 	PROVINCIAL TREASURER'S OFFICE - BATAAN		583	\N	2017-12-04	2017-12-04	\N	0	0	0	TECHNICAL 
10931	COACHING - SEX STRATEGIC INITIATIVES FOR CY 2018	TECHNICAL 	PROVINCIAL TREASURER'S OFFICE - BATAAN		583	\N	2018-01-19	2018-01-19	\N	0	0	0	TECHNICAL 
10932	COACHING - SIX STRATEGIC INITIATIVES FOR CY 2018	TECHNICAL 	PROVINCIAL TREASURER'S OFFICE - BATAAN		583	\N	2018-01-17	2018-01-17	\N	0	0	0	TECHNICAL 
10935	Tellering Course 	Managerial 	Rural Bank Association of the Philippines		599	\N	2010-09-03	2010-09-03	\N	0	0	0	Managerial 
10964	ISO 9001:2015 INTERNAL QUALITY AUDIT HELD AT PGO CONFERENCE ROOM, BULWAGAN NG ABAYAN, BALANGA CITY, BATAAN	TECHNICAL 	PROVINCIAL GOVERNMENT OF BATAAN		603	\N	2017-11-08	2017-11-09	\N	0	0	0	TECHNICAL 
10965	SEMINAR ON AUDIT DOCUMENTATION WITH CPD CREDIT UNITS ON II - STANDARDS APPLICABLE TO PROFESSIONAL PRACTICE - 8.0 HELD AT PICPA BUILDING, GREENFIELDS SQUARE SINDALAN, CITY OF SAN FERNANDO PAMPANGA 	TECHNICAL 	PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACOUNTANTS (PICPA) - PAMPANGA CHAPTER		603	\N	2016-02-19	2016-02-19	\N	0	0	0	TECHNICAL 
10966	WORKSHOP ON QUALITY ASSURANCE REVIEW (QAR) PROGRAM (MODULE FOR PRACTITIONERS) WITH CPD CREDIT UNITS ON: III - ETHICAL, GOVERNANCE AND QUALITY PRINCIPLES - 8.0 HELD AT PICPA BUILDING, GREENFIELDS SQUARE, SINDALAN, CITY OF SAN FERNANDO, PAMPANGA 	TECHNICAL	PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACOUNTANTS (PICPA) - PAMPANGA CHAPTER		603	\N	2016-02-20	2016-02-20	\N	0	0	0	TECHNICAL
10967	38TH GACPA ANNUAL NATIONAL CONVENTION WITH THE THEME, "BUILDING GLOBAL PARTNERSHIP THROUGH KNOWLEDGE SHARING" HELD AT IBALONG CENTRUM FOR RECREATION (ICR) LEGAZPI CITY, ALBAY	TECHNICAL 	GOVERNMENT ASSOCIATION OF CERTIFIED PUBLIC ACCOUNTANTS (GACPA)		603	\N	2016-04-27	2016-04-30	\N	0	0	0	TECHNICAL 
10968	INTERNATIONAL CONFERENCE AND CONFERMENT CEREMONY WITH THE THEME, "THE NEW PARADIGM ON GOOD GOVERNANCE AND ETHICS OF THE 21ST CENTURY CPAs" WITH CPD CREDIT UNITS ON: I - ENABLING LAWS, RULES AND REGULATIONS - 2.0 HELD AT ARZOBISPADO DE PAMPANGA, SAN JOSE, CITY OF SAN FERNANDO, PAMPANGA 	TECHNICAL 	ROYAL INSTITUTE OF ACCOUNTANTS - PHILIPPINES/SINGAPORE 		603	\N	2016-05-05	2016-05-05	\N	0	0	0	TECHNICAL 
10969	CRASH COURSE FOR SPEECH IMPROVEMENT AND BUSINESS CORRESPONDENCE AND WRITING FOR BATAAN PROVINCIAL CAPITOL EMPLOYEES HELD AT BULWAGAN NG BAYAN CONFERENCE 2 CAPITOL COMPOUND, BALANGA CITY, BATAAN	TECHNICAL 	PROVINCIAL GOVERNMENT OF BATAAN 		603	\N	2016-11-21	2016-12-09	\N	0	0	0	TECHNICAL 
10972	39TH ANNUAL NATIONAL CONVENTION WITH THE THEME: "GACPA MOVING UP A NOTCH FOR NATION BUILDING" HEALD TA ILOILO CONVENTION CENTER, ILOILO CITY 	TECHNICAL 	GOVERNMENT ASSOCIATION OF CERTIFIED PUBLIC ACCOUNTANTS (GACPA)		603	\N	2017-05-24	2017-05-27	\N	0	0	0	TECHNICAL 
10973	ISO 9001:2015 AWARENESS SEMINAR AT HELD AT PROVINCIAL GOVERNMENT OFFICE CONFERENCE ROOM, BULWAGAN NG BAYAN, BALANGA CITY, BATAAN	TECHNICAL 	NEO AMCA INNOVATIVE SOLUTIONS CORPORATION		603	\N	2017-07-27	2017-07-27	\N	0	0	0	TECHNICAL 
10974	ISO 9001:2015 INTERNAL QUALITY ADUIT HELD AT LOU-IS RESTAURANT, BALANGA CITY BATAAN	TECHNICAL 	PROVINCIAL GOVERNMENT OF BATAAN		603	\N	2017-08-30	2017-08-30	\N	0	0	0	TECHNICAL 
10975	72ND PICPA ANNUAL NATIONAL CONVENTION HEALD AT THE PICPA HEAD OFFICE AND PHILIPPINE INTERNATIONAL CONVENTION CENTER (PICC)	TECHNICAL 	PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACOUNTANTS (PICPA)		603	\N	2017-11-22	2017-11-25	\N	0	0	0	TECHNICAL 
10976	TAX UPDATE - TASX ACCELERATIONS FOR INCLUSION OR TRAIN - 8.0 CPD CREDIT UNITS ON COMPETENCE AREA A HELD AT PAN RESORT AND EVENTS PLACE CAPITANGAN, ABUCAY, BATAAN	TECHNICAL 	PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACOUNTANTS (PICPA) - BATAAN CHAPTER		603	\N	2018-03-24	2018-03-24	\N	0	0	0	TECHNICAL 
10977	BASIC/ADVANCED WRITTEN AND ORAL COMMUNICATION WITH POWERPOINT PRESENTATION HELD AT PGO, CAPITOL COMPOUND, BALANGA CITY, BATAAN	TECHNICAL 	PROVINCIAL HUMAN RESOURCE MANAGEMENT OFFICE 		603	\N	2018-04-18	2018-04-19	\N	0	0	0	TECHNICAL 
10978	40TH GACPA ANNUAL CIONVENTION AND SEMINAR HELD AT WATERFRONT HOTEL, LAHUG, CEBU CITY	TECHNICAL 	GOVERNMENT ASSOCIATION OF CERTIFIED PUBLIC ACOUNTANTS (GACPA)		603	\N	2018-05-23	2018-05-26	\N	0	0	0	TECHNICAL 
10979	INTERNAL QUALITY AUDITORS ENHANCEMENT TRAINING HELD AT PGO CONFERENCE ROOM, BULWAGAN NG BAYAN, BALANGA CITY OF BATAAN	TECHNICAL 	PROVINCIAL GOVERNMENT OF BATAAN		603	\N	2018-08-29	2018-08-29	\N	0	0	0	TECHNICAL 
10985	Training-Workshop on the Improvement of Revenue Generation Strategies of Provincial LGU's Under the CMGP Program		Department of the Interior and Local Government - Office of Project Development Servies		534	\N	2017-05-29	2017-06-02	\N	0	0	0	
10986	Grievance Redress Mechanism Training for PPMIUs-MLGU and BLGU		Philippine Rural Development Project - Regional Project Coordinating Office 3		534	\N	2017-06-05	2017-06-08	\N	0	0	0	
10987	Advanced GIS training Using ArcGIS (GTI-2003-1-0204)		National Mapping and Resource Information Authority - Geomatics Training Center		534	\N	2017-09-26	2017-09-29	\N	0	0	0	
10988	Training on the Involvement of Citizens in Monitoring Rural Infrastracture Subprojects 		Philippine Rural Development Project - Regional Project Coordinating Office III		534	\N	2017-10-24	2017-10-27	\N	0	0	0	
10989	Capacity Building in Urban and Regional Planning		National Economic and Development Authority - Region III		534	\N	2018-02-09	2018-03-16	\N	0	0	0	
10990	Orientation of Provincial Assesment teams on Enhancing LGU Capacity on Planning and Implementation of Lcoal Development Projects		Department of Interior and Local Government Region III		534	\N	2018-09-20	2018-09-20	\N	0	0	0	
10991	Orientation/Seminar for the Amendments to Rule 29 Part (A) of the Implementing Rules and Regulations of RA No. 9136		Department of Energy		534	\N	2018-10-09	2018-10-09	\N	0	0	0	
11403	Wasar/ Rescue Simulation Execise				1563	\N	2012-05-22	2012-05-22		0	0	0	
10992	Seal of Good Local Governance (SGLG) Utilization Conference and Action Planning		Department of the Interior and Local Government Bataan		534	\N	2019-03-01	2019-03-21	\N	0	0	0	
10993	Bataan Local Public Transport Route Plan Council Stakeholders Consultation Workshop		Land Transportation Franchising and Regulatory Board		534	\N	2019-03-05	2019-03-05	\N	0	0	0	
11406	Quality Assurance System (QAS) 		DILG R3		1565	\N	2019-02-12	2019-02-13		0	0	0	
10994	Capacity -Building Activity on Geodatabase Management		Regional Development Council 3-Pampanga River Basin Committee		534	\N	2018-11-27	2018-11-29	\N	0	0	0	
10997	Two-Day Orientation on Gender and Development (GAD) CUM Team Building	Technical 	Provincial Planning and Development Office		531	\N	2016-06-10	2016-06-11	\N	0	0	0	Technical 
10999	Training on CENSUS and Survey Processing System (CSPro) Using Public Utility Files	Technical 	Philippine Statistics Authority (PSA) - Bataan		531	\N	2017-03-07	2017-03-07	\N	0	0	0	Technical 
11000	Provincial Leadership and Governance Program (PLGP) Core Group Meeting	Technical 	Department of Health		531	\N	2017-08-16	2017-08-16	\N	0	0	0	Technical 
11001	Performance Governance System Monthly Strategy Review Meeting CUM Team Building 	Technical 	Provincial Governor's Office		531	\N	2017-10-11	2017-10-11	\N	0	0	0	Technical 
11002	Provincial Roll-Out of Peace and Order and Public Saftey Plan Policy Compliance Monitoring System (POS-PCMS)	Technical 	Department of Interior and Local Government 		531	\N	2017-10-26	2017-10-26	\N	0	0	0	Technical 
11003	Meeting on 2017 CMCI Ranking of LGU Bataan	Technical 	National Competitiveness Index and Department of Trade and Industry		531	\N	2017-10-27	2017-10-27	\N	0	0	0	Technical 
11004	Dialogue on Logistic Efficiency Indicator with the Theme "Road to Seamless Philippine Logistics: Analysis of Logistic Performance"	Technical	National Competitiveness Index and Department of Trade and Industry		531	\N	2017-11-09	2017-11-09	\N	0	0	0	Technical
11005	PPDO gender and Development (GAD) CUM - Team Building	Technical	Provincial Government of Bataan and Provincial Population Office		531	\N	2017-12-29	2017-12-29	\N	0	0	0	Technical
11006	Seal of Good Local Governance 9SGLG Utilization Conference	Technical	Department of Interior and Local Government 		531	\N	2018-02-15	2018-02-15	\N	0	0	0	Technical
11007	Peace and Order and Public Safety Plan (POPS PLAN) Cy 2019-2021	Technical 	Department of interior and Local Government		531	\N	2018-11-22	2018-11-23	\N	0	0	0	Technical 
11008	Presentation of the Final Reports of NEDA Regional Office No. 3 Research and Development Projects	Technical	National Economic and Development Authority		531	\N	2018-11-28	2018-11-28	\N	0	0	0	Technical
11009	2018 CMCI Central Luzon Regional Awarding Ceremonies	Technical	Department of Trade and Industry (DTI)		531	\N	2018-12-07	2018-12-07	\N	0	0	0	Technical
11346	Updates on Infectous Disease Progams With Data Validation	Technical	Department of Health Region 3		226	\N	2017-10-10	2017-10-11	16	0	0	0	Technical
11349	Hems Update and Orientation for he Province of Bataan	Technical	Department of Health Region 3		226	\N	2016-12-01	2016-12-02	16	0	0	0	Technical
11350	Training on Philippine Integrated Disease Surveillance and Response (PIDSR) Event-Based Surveillance and Reponse(ESR)	Technical	Department of Health Region 3		226	\N	2016-09-22	2016-09-23	16	0	0	0	Technical
11351	NTP QAS Data Quality Check	Technical	Provincial Health Office Bataan		226	\N	2016-07-15	2016-07-15	8	0	0	0	Technical
11352	World TB Day Celebration	Technical	Provincial Health Office Bataan		226	\N	2016-05-31	2016-05-31	8	0	0	0	Technical
11353	NTP QAS Quarterly Validation	Technical	Provincial Health Office Bataan		226	\N	2016-04-15	2016-04-15	8	0	0	0	Technical
11355	NTP Quarterly Meeting and Data Validation	Technical	Provincial Health Office Bataan		226	\N	2015-10-09	2015-10-09	8	0	0	0	Technical
10980	WRITESHOP FOR THE COMPLETION OF PROVINCIAL GOVERNANCE REFORM ROADMAP (PGRR) HELD AT VISTA MARINA, SUBIC BAY FREEPORT ZONE	TECHNICAL 	DEPARTMENT OF INTERIOR AND LOCAL GOVERNMENT (DILG)		603	\N	2018-09-25	2018-09-26	\N	0	0	0	TECHNICAL 
10981	FOLLOW THROUGH ACTIVITY ON THE FINALIZATION OF THE PROVINCIAL GOVERNANCE REFORM ROADMAP (PGRR) AND THE CONDUCT OF LOCAL ROAD PERFORMANCE ASSESSMENT HELD AT VISTA MARINA HOTEL, SUBIC BAY FREEPORT ZONE 	TECHNICAL	DEPARTMENT OF THE INTERIOR AND LOCAL GOVERNMENT UNIT (DILG) 		603	\N	2018-09-10	2018-09-11	\N	0	0	0	TECHNICAL
10982	FOLLOW THROUGH TRAINING ON INTERNAL AUDIT: INSTITUTIONALIZING KEY LGU INTERNAL CONTROL SYSTEMS THROUGH EFFECTIVE DOCUMENTATION HELD AT VISTA MARINA HOTEL AND RESORT, SUBIC BAY FREEPORT ZONE, OLONGAPO CITY 	TECHNICAL 	DEPARTMENT OF THE INTERIOR AND LOCAL GOVERNMENT(DILG)		603	\N	2018-11-27	2018-11-28	\N	0	0	0	TECHNICAL 
10983	73RD PICPA ANNUAL NATIONAL CONVENTION HELD AT BACOLOD CITY, NEGROS OCCIDENTAL 	TECHNICAL 	PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACOUNTANTS (PICPA)		603	\N	2018-11-22	2018-11-24	\N	0	0	0	TECHNICAL 
11052	Finding Light in the Shadow of Depression Seminar		Bataan Peninsula State University		519	\N	2018-04-07	2018-04-07	\N	0	0	0	
11053	Central Luzon's Performance Tracking FP Zero UNMET Need Campaign		Deartment of Health Region III		519	\N	2017-11-28	2017-11-29	\N	0	0	0	
11054	Population and Development (POPDEV) Summit		Regional Population Office		519	\N	2018-11-27	2018-11-29	\N	0	0	0	
11055	Bahay-bahay Strategy Orientation for Health Service Procedures		Regional Population Office		519	\N	2017-06-21	2017-06-22	\N	0	0	0	
11056	SMARTCAD System Training		Metro Bataan Development Authority		519	\N	2015-06-06	2015-06-06	\N	0	0	0	
11057	3Day Basic Intravenous Therapy Training Program for Nurses		Bataan General Hospital		519	\N	2014-02-21	2014-02-23	\N	0	0	0	
11067	POPDEV Summit		POPCOM		521	\N	2018-11-27	2018-11-29	\N	0	0	0	
11010	Regional Dialogue for the Anti-Drug Abuse Councils and Year-End Evaluation	Technical	Department of Interior and Local Government 		531	\N	2018-12-17	2018-12-17	\N	0	0	0	Technical
11011	RA 9262 or Anti-Violence Against Women and their Children Act of 2004 and Team Building	Technical	Provincial Government of Bataan and Provincial Population Office		531	\N	2018-12-29	2018-12-29	\N	0	0	0	Technical
11012	PLANNING WORKSHOP OF THE PROVINCIAL TECHNICAL WORKING GROUP ON ORGANIC AGRICULTURE 	TECHNICAL	OFFICE OF THE PROVINCIAL AGRICULTURE 		538	\N	2013-11-07	2013-11-07	\N	0	0	0	TECHNICAL
11013	AWARENESS SEMINAR ON LOCAL FOOD CONSUMPTION AND UTILIZATION 	TECHNICAL 	DEPARTMENT OF AGRICLUTURE		538	\N	2013-10-19	2013-10-19	\N	0	0	0	TECHNICAL 
11014	ORIENTATION SEMINAR ON THE PROCEDURES FOR THE DISBURSEMENT TRANSACTION OF THE PROVINCIAL GOVERNMENT OF BATAAN	TECHNICAL 	OFFICE OF THE PROVINCIAL ACCOUNTING 		538	\N	2014-05-09	2014-05-09	\N	0	0	0	TECHNICAL 
11015	PROVINCIAL RE-ORIENTATION WORKSHOP ON THE SOCIAL PROTECTION AND DEVELOPMENT REPORT OF LOCAL GOVERNMENT UNIT 	TECHNICAL 	DEPARTMENT OF SOCIAL WELFARE AND DEVELOPMENT - FILED OFFICE III		538	\N	2014-05-28	2014-05-28	\N	0	0	0	TECHNICAL 
11016	TRAINING ON FEASIBILITY DETAILED ENGINEERING DESIGN AND FINANCIAL ANALYSIS	TECHNICAL 	PHILIPPINE RURAL DEVELOPMENT PROJECT		538	\N	2014-09-27	2014-10-31	\N	0	0	0	TECHNICAL 
11017	SEMINAR ON ROAD MAP TO FINANCIAL FREEDOM	PERSONAL DEVELOPMENT	PROVINCIAL HUMAN RESOURCE MANAGEMENT OFFICE 		538	\N	2014-11-14	2014-11-14	\N	0	0	0	PERSONAL DEVELOPMENT
11018	BUSINESS PLAN PREPARATION TRAINING/WORKSHOP	TECHNICAL 	PHILIPPINE RURAL DEVELOPMENT PROJECT		538	\N	2014-11-24	2014-11-28	\N	0	0	0	TECHNICAL 
11019	ORIENTATION ON THE SURVEY PROCESS FOR LISTAHANG TUBIG PROJECT	TECHNICAL 	NATIONAL WEATHER RESOURCES BOARD		538	\N	2014-12-18	2014-12-18	\N	0	0	0	TECHNICAL 
11020	RETOOLING TRAINING FOR PROVINCIAL PROJECT MANAGEMENT IMPLEMENTATION UNIT RESORT BASE MONITORING ANDN EVALUATION	TECHNICAL 	PHILIPPINE RURAL DEVELOPMENT PROJECT		538	\N	2015-03-04	2015-03-05	\N	0	0	0	TECHNICAL 
11021	SECOND REGIONAL COORDINATING PROJECT OFFICE III-PROVINCIAL PROJECT MANAGEMENT IMPLEMENTATION UNIT COORDINATION MEETING	TECHNICAL 	PHILIPPINE RURAL DEVELOPMENT PROJECT		538	\N	2015-05-13	2015-05-13	\N	0	0	0	TECHNICAL 
11022	BUSINESS PLAN REVIEW AND PRE RPAB PRESENTATION, REVIEW AND APPROVAL FOR ENTERPRISE SUB PROJECT	TECHNICAL 	PHILIPPINE RURAL DEVELOPMENT PROJECT 		538	\N	2015-06-02	2015-06-05	\N	0	0	0	TECHNICAL 
11023	CLIMATE CHANGE EXPENDITURE TAGGING TRAINING OF TRAINORS	TECHNICAL 	WORLD BANK		538	\N	2015-07-31	2015-07-31	\N	0	0	0	TECHNICAL 
11024	PROVINCIAL COMMODITY INVESTMENT PLAN WORKSHOP AND PRESENTATION ON CASSAVA AND AROMATIC PIGMENTED RICE AND PROVINCIAL COMMODITY INVESTMENT PLAN REVIEW/FINALIZATION FOR TILAPIA	TECHNICAL 	PHILIPPINE RURAL DEVELOPMENT PROJECT		538	\N	2015-08-27	2015-08-28	\N	0	0	0	TECHNICAL 
11025	TRAINING/WORKSHOP ON TECHNICAL WRITING 	TECHNICAL 	PHILIPPINE RURAL DEVELOPMENT PROJECT		538	\N	2015-09-09	2015-09-11	\N	0	0	0	TECHNICAL 
11026	RETOOLING TRAINING ON EXAPNDEDED VULNERABILITY AND SUITABILITY ASSESMENT (E-VSA)	TECHNICAL 	PHILIPPINE RURAL DEVELOPMENT PROJECT		538	\N	2015-09-22	2015-09-25	\N	0	0	0	TECHNICAL 
11027	GENDER AND DEVELOPMENT (GAD) CUM TEAM BUILDING	PERSONAL DEVELOPMENT 	PROVINCIAL HUMAN RESOURCE AND MANAGEMENT OFFICE		538	\N	2016-06-10	2016-06-11	\N	0	0	0	PERSONAL DEVELOPMENT 
11028	WORK ATTITUDE AND VALUES ENHANCEMENT TRAINING	PERSONAL DEVELOPMENT 	PROVINCIAL HUMAN RESOURCE AND MANAGEMENT OFFICE		538	\N	2016-06-20	2016-06-21	\N	0	0	0	PERSONAL DEVELOPMENT 
11029	SYSTEMATIC RECORDS MANAGEMENT TRAINING WORKSHOP	PERSONAL DEVELOPMENT 	PROVINCIAL HUMAN RESOURCE AND MANAGEMENT OFFICE		538	\N	2017-07-25	2017-07-26	\N	0	0	0	PERSONAL DEVELOPMENT 
11030	GAD TEAM BUILDING SEMINAR	PERSONAL DEVELOPMENT	PROVINCIAL PLANNING & DEVELOPMENT OFFICE		538	\N	2018-12-27	2018-12-28	\N	0	0	0	PERSONAL DEVELOPMENT
11031	ORIENTATION ON RATIONALIZING LOCAL PLANNING SYSTEM CUM COMMUNITY BASED MONITORING SYSTEM (CBMS) FOTRN LPDC's AND LGOO's OF BATAAN	TECHNICAL 	PROVINCIAL GOVERNMENT OF BATAAN AND DEPARTMENT OF THE INTERIOR AND LOCAL GOVERNMENT (DILG) - BATAAN		539	\N	2009-04-20	2009-04-23	\N	0	0	0	TECHNICAL 
11032	COMMUNITY BASED MONITORING SYSTEM (CBMS) MODULE II TRAINING - ENCODING OF ACCOMPLISHED QUESTIONNAIRES AND DIGITIZING MAPS	TECHNICAL 	COMMUNITY BASED MONITORING SYSTEM (CBMS) NETWORK OFFICE 		539	\N	2009-07-01	2009-07-03	\N	0	0	0	TECHNICAL 
11033	SEMINAR WORKSHOP ON COMPREHENSIVE LAND AND WATER USE PLAN AND ZONING ORDINANCE PREPARATION/UPDATING	TECHNICAL 	LEAGUE OF LOCAL PLANNING AND DEVELOPMENT COORDIANTORS OF THE PHILIPPIES, INC. (LLPDCPI) - BATAAN CHAPTER		539	\N	2009-10-28	2009-10-30	\N	0	0	0	TECHNICAL 
11034	COMMUNITY BASED MONITORING SYSTEM (CBMS) MODULE II TRAINING - DATA PROCESSING AND CONSOLIDATION, POVERTY MAPPING AND BUILDING CBMS DATABASE	TECHNICAL 	PROVINCIAL GOVERNMENT OF BATAAN AND LEAGUE OF LOCAL PLANNING AND DEVELOPMENT COORDINATORS OF THE PHILIPPINES, INC. (LLPDCPI) - BATAAN CHAPTER		539	\N	2010-08-07	2010-08-09	\N	0	0	0	TECHNICAL 
11035	BASIC GEOGRAPHIC INFORMATION SYSTEM (GIS) OPERATION AND GLOBAL POSITIONING SYSTEM (GPS)	TECHNICAL 	DEPARMENT OF ENVIRONMENT AND NATURAL RESOURCES (DENR) - REGION III		539	\N	2015-04-11	2015-04-15	\N	0	0	0	TECHNICAL 
11036	HAZARD MAPPING WORKSHOP (MAPSHOT) - BATCH 3	TECHNICAL 	NATIONAL ECONOMIC AND DEVELOPMENT AUTHORITY (NEDA) - REGIONAL DEVELOPMENT COORDINATION STAFF		539	\N	2011-06-05	2011-06-11	\N	0	0	0	TECHNICAL 
11089	PROVINCIAL COMMODITY INVESTMENT PLAN ENHANCEMENT WORKSHOP	TECHNICAL	OFFICE OF THE PROVINCIAL AGRICULTURIST		541	\N	2016-05-05	2016-05-06	\N	0	0	0	TECHNICAL
11037	BRIEFING WORKSHOP AND HANDS-ON TRAINING ON LOCAL GOVERNANCE PERFORMANCE MANAGEMENT SYSTEM (LGPMS) VERSION 2.1: INTEGRATION OF LGU SCORECARD ON HEALTH AND LOCAL TOURISM STATISTICS IN LGPMS	TECHNICAL 	DEPARTMENT OF THE INTERIOR AND LOCAL GOVERNMENT (DILG) - BATAAN		539	\N	2011-05-25	2011-05-25	\N	0	0	0	TECHNICAL 
11038	GEOGRAPHICAL INFORMATION SYSTEM TRAINING WORSHOP	TECHNICAL 	PROVINCIAL GOVERNMENT OF BATAAN AND MARITIME ACADEMY OF ASIA AND THE PACIFIC		539	\N	2012-03-13	2012-03-16	\N	0	0	0	TECHNICAL 
11039	CLUSTER PLANNING APPROACH TO CLUP/ZONING ORDINANCE FORMULATION AND UPDATING - MODULE I, BATAAN CLUSTER	TECHNICAL 	HOUSING AND LAND USE REGULATORY BOARD (HLURB) - NORTHERN TAGALOG		539	\N	2012-07-04	2012-07-06	\N	0	0	0	TECHNICAL 
11040	MAINSTREAMING DISASTER RISK REDUCTION INTOM LOCAL DEVELOPMENT PLANNING PROCESS THROUGH THE PROVISION AND TRAINING ON THE USE OF RAPID EARTHQUAKE DAMAGE ASSESMENT SYSTEM (REDAS) SOFTWARE	TECHNICAL 	NATIONAKL ECONOMIC AND DEVELOPMENT AUTHORITY (NEDA) - RDO AND PHIVOLCS - DOST		539	\N	2013-01-06	2013-01-11	\N	0	0	0	TECHNICAL 
11041	9TH COMMUNITY BASED MONITORING SYSTEM (CBMS) PHILIPPINE NATIONAL CONFERENCE 	TECHNICAL 	COMMUNITY BASED MONITORING SYSTEM (CBMS) NETWORK OFFICE		539	\N	2013-01-22	2013-01-24	\N	0	0	0	TECHNICAL 
11042	MPOWER AND TOBACCO CONTROL TRAINING	TECHNICAL 	PROVINCIAL HEALTH OFFICE (PHO)		539	\N	2014-09-10	2014-09-12	\N	0	0	0	TECHNICAL 
11043	INFORMATION TECHNOLOGY LITERACY PROGRAM - COMPUTER FUNDAMENTALS 	TECHNICAL 	OVERSEAS WORKERS WELFARE ADMINISTRATION (OWWA) - RWO III		539	\N	2015-07-27	2015-08-07	\N	0	0	0	TECHNICAL 
11044	PROVINCIAL COMMODITY INVESTMENTPLAN (PCIP) ENHANCEMENT WORKSHOP	TECHNICAL 	OFFICE OF THE PROVINCIAL AGRICULTURIST		539	\N	2016-05-05	2016-05-06	\N	0	0	0	TECHNICAL 
11045	TWO-DAY ORIENTATION ON GENDER AND DEVELOPMENT (GAD) CUM TEAM BUILDING	PERSONAL DEVELOPMENT 	PROVINCIAL PLANNING AND DEVELOPMENT OFFICE		539	\N	2016-06-10	2016-06-11	\N	0	0	0	PERSONAL DEVELOPMENT 
11046	2015 CENSUS OF POPULATION DATA DISSEMINATION	TECHNICAL 	PHILIPPINE SATSTISTICS AUTHORAITY (PSA) - REGIONAL STATISTICAL SERVICE OFFICE III		539	\N	2016-10-07	2016-10-07	\N	0	0	0	TECHNICAL 
11047	2015 CENSUS OF POPULATION DATA DISSEMENATION IN CELEBRATION OF THE 27TH NATIONAL STATISTICS MONTH	TECHNICAL 	PHILIPPINE STATISTICS AUTHORITY (PSA) -BATAAN		539	\N	2016-10-26	2016-10-26	\N	0	0	0	TECHNICAL 
11048	TRAINING IN CENSUS AND SURVEY PROCESSING SYSTEM (CSPro) USING PUBLIC UTILITY FILES 	TECHNICAL 	PHILIPPINE STATISTICS AUTHORITY (PSA) - BATAAN		539	\N	2017-03-07	2017-03-07	\N	0	0	0	TECHNICAL 
11404	Technical Training				1563	\N	2016-03-16	2016-03-16		0	0	0	
11049	JOBSFIT 2022 PROVINCIAL STAKEHOLDERS CONSULTATION	TECHNICAL 	DEPARTMENT OF LABOR AND EMPLOYMENT - REGIONAL OFFICE AND BATAAN PROVINCIAL OFFICE		539	\N	2017-05-09	2017-05-09	\N	0	0	0	TECHNICAL 
11408	First Aid/Basic Life Support		Philippine Redcross (PRC Bataan)/ PDRRMO Bataan		1565	\N	2018-11-20	2018-11-23		0	0	0	
11101	28TH NATIONAL STATISTICS MONTH CLOSING CEREMONY	TECHNICAL	PHILIPPINE STATISTICS AUTHORITY - BATAANM		541	\N	2017-10-26	2017-10-26	\N	0	0	0	TECHNICAL
11050	RA 9262 OR "ANTI-VIOLENCE AGAINST WOMEN AND THEIR CHILDREN ACT OF 2004" AND TEAM BUILDING	TECHNICAL 	PROVINCIAL POPULATION OFFICE AND PROVINCIAL PLANNING AND DEVELOPMENT OFFICE		539	\N	2018-12-28	2018-12-29	\N	0	0	0	TECHNICAL 
11058	NCC Regional Roadshow on SWS 2016 Enterprises Survey on Corruption	Technical	Department of Trade and Industry		540	\N	2016-10-27	2016-10-27	\N	0	0	0	Technical
11059	Procedure for the Disbursement Transaction of the Provincial Government of Bataan	Technical	Provincial Government of Bataan		540	\N	2014-09-05	2014-09-05	\N	0	0	0	Technical
11060	Provincial Workshop for the Central Luzon Development Summit on the Global Gateways 	Technical	Subic Bay Metropolitan Authority/BCDA		540	\N	2004-06-21	2004-06-21	\N	0	0	0	Technical
11061	Launching Symposium New GSIS Act of 1997 R.A. 8291	Technical	Government Service Insurance System 		540	\N	1997-09-09	1997-09-09	\N	0	0	0	Technical
11063	ESP Management Seminar	Technical	Human Settlement		540	\N	1983-11-18	1983-11-20	\N	0	0	0	Technical
11064	New Performance Appraisal	Technical	Civil Service Commission		540	\N	1990-12-04	1990-12-04	\N	0	0	0	Technical
11065	Regional Development Investment Program Workshop 	Technical	National Economic and Development Authority		540	\N	1982-05-13	1982-05-13	\N	0	0	0	Technical
11066	Office and Technical Training	Technical	Provincial Development Staff		540	\N	1981-02-01	0001-01-01	\N	0	0	0	Technical
11069	SERVICE DELIVERY NETWORK MEETING	TECHNICAL	DEPARTMENT OF HEALTH III		541	\N	2017-11-03	2017-11-03	\N	0	0	0	TECHNICAL
11070	NEDA 3 STATISTICAL CAPACITY BUILDING PROGRAM FOR DECISION MAKING LECTURE CERIES I ON MACRO ECONOMIC ACCOUNTS	TECHNICAL	NATIONAL ECONOMIC AND DEVELOPMENT AUTHORITY III		541	\N	2017-11-10	2017-11-10	\N	0	0	0	TECHNICAL
11071	DIALOGUE ON LOGISTICS EFFICIENCY INDICATOR 	TECHNICAL	DEPARTMENT OF TRADE AND INDUSTRY		541	\N	2017-11-09	2017-11-09	\N	0	0	0	TECHNICAL
11072	TRAINING ON NUTRITION IN EMERGENCIES FOR THE MEMBERS OF THE NUTRITION CLUSTERS 	TECHNICAL	DEPARTMENT OF HEALTH AND NATIONAL NUTRITION COUNCIL		541	\N	2017-11-21	2017-11-24	\N	0	0	0	TECHNICAL
11073	ORIENTATION ON DATA PRIVACY ACT	TECHNICAL	DEPARTMENT OF SOCIAL WORK AND DEVELOPMENT III		541	\N	2017-11-24	2017-11-24	\N	0	0	0	TECHNICAL
11074	ORIENTATION  ON NATIONAL HOUSEHOLD AND TRAGETING SYSTEM	TECHNICAL	DEPARTMENT OF SOCIAL WORK AND DEVELOPMENT III		541	\N	2017-11-24	2017-11-24	\N	0	0	0	TECHNICAL
11075	TRAINING OF TRAINORS FOR THE LGU OF BATAAN AND DEPED BATAAN	TECHNICAL	DEPARTMENT OF EDUCATION		541	\N	2017-12-25	2017-12-25	\N	0	0	0	TECHNICAL
11076	EXTERNAL VALIDATION WORKSHOP LGU ROADMAP FOR THE SUSTAINABILITY OF HEALTH PROGRAM 	TECHNICAL	DEPARTMENT OF HEALTH III		541	\N	2018-03-02	2018-03-02	\N	0	0	0	TECHNICAL
11077	REGIONAL CONSULTATION WORKSHOP ON ENHANCING THE PHILIPPINE SOCIAL PROTECTION OPERATION 	TECHNICAL	DEPARTMENT OF SOCIAL WORK AND DEVELOPMENT III		541	\N	2018-09-18	2018-09-19	\N	0	0	0	TECHNICAL
11078	FEDERALISM IN THE PHILIPPINE CONTEXT: CONCEPTS AND DEVELOPMENT 	TECHNICAL	BATAAN PENINSULA STATE UNIVERSITY - GRADUATE SCHOOL		541	\N	2018-11-17	2018-11-17	\N	0	0	0	TECHNICAL
11079	SEMINAR ON CHILD WELFARE LAWS	TECHNICAL	PROVINCIAL COUNCIL FOR THE WELFARE OF CHILDREN		541	\N	2018-11-23	2018-11-23	\N	0	0	0	TECHNICAL
11080	PRESENTATION OF THE FINAL REPORTS ON NR03 RESEARCH AND DEVELOPMENT PROJECTS 	TECHNICAL	NATIONAL ECONOMIC AND DEVELOPMENT AUTHORITY III		541	\N	2018-11-28	2018-11-28	\N	0	0	0	TECHNICAL
11081	PROVINCIAL WORKSHOP ON CITY/MUNICIPALITY COMMITMENT SETIING ON SDG INDICATORS	TECHNICAL	DEPARTMENT OF INTERIOR AND LOCAL GOVERNMENT - BATAAN		541	\N	2018-12-07	2018-12-07	\N	0	0	0	TECHNICAL
11082	SEMINAR ON RA 9262 OR "ANTI-VIOLENCE AGAINST WOMEN AND THEIR CHILDREN ACT OF 2004"	PERSONAL DEVELOPMENT	PROVINCIAL POPULATION OFFICE 		541	\N	2018-12-28	2018-12-29	\N	0	0	0	PERSONAL DEVELOPMENT
11083	SEAL OF GOOD LOCAL GOVERNANCE UTILIZATION CONFERENCE AND ACTION PLANNING	TECHNICAL	DEPARTMENT OF INTERIOR AND LOCAL GOVERNANCE - BATAAN		541	\N	2019-03-01	2019-03-01	\N	0	0	0	TECHNICAL
11084	1ST QUARTER 2019 MEETING OF THE NATIONAL ANTI-POVERTY COMMISSION (RSC)	TECHNICAL	CENTRAL LUZON REGIONAL DEVELOPMENT COUNCIL		541	\N	2019-03-08	2019-03-08	\N	0	0	0	TECHNICAL
11085	ORIENTATION ON CHILD PROTECTION LAW	TECHNICAL	PROVINCIAL COUNCIL FOR THE WELFARE OF CHILDREN		541	\N	2016-02-09	2016-02-09	\N	0	0	0	TECHNICAL
11086	TECHNO-FORUMV AS PART OF THE DOST SCIENCE NATION TOUR	TECHNICAL	DEPARTMENT OF SCIENCE AND TECHNOLOGY - REGION III		541	\N	2016-04-12	2016-04-12	\N	0	0	0	TECHNICAL
11087	ORIENTATION/SEMINAR ON MAGNA CARTA OF WOMEN (RA 9710) AND ANTI-VIOLENCE AGAINST WOMEN AND CHILDREN (RA 9262)	TECHNICAL	PROVINCIAL POPULATION OFFICE 		541	\N	2016-04-15	2016-04-15	\N	0	0	0	TECHNICAL
11088	SEMINAR/WORKSHOP ON THE PREPARATION OF LGU TOURISM DEVELOPMENT PLAN AND HOW TO ORGANIZE CONVENTION	TECHNICAL	PROVINCIAL TOURISM OFFICE 		541	\N	2016-04-22	2016-04-22	\N	0	0	0	TECHNICAL
11090	SEMINAR ON ORGANIZATIONAL SUSTAINABILITY 	PERSONAL DEVELOPMENT	PROVINCIAL COUNCIL FOR THE WELFARE OF CHILDREN		541	\N	2016-05-12	2016-05-12	\N	0	0	0	PERSONAL DEVELOPMENT
11091	ORIENTATION ON GENDER AND DEVELOPMENT 	PERSONAL DEVELOPMENT 	PROVINCIAL POPULATION OFFICE 		541	\N	2016-06-10	2016-06-10	\N	0	0	0	PERSONAL DEVELOPMENT 
11092	REGIONAL CONSULTATION ON TVET REFORM AND DEVELOPMENT AGENDA AND SKILLS NEED AND PRIORITIES 	TECHNICAL	TECHNICAL EDUCATION AND SKILLS DEVELOPMENT AUTHORITY 		541	\N	2016-09-03	2016-09-03	\N	0	0	0	TECHNICAL
11093	CONSULTATION -WORKSHOP ON THE FORMULATION OF THE CENTRAL LUZON DEVELOPMENT PLAN 2017-2022	TECHNICAL	NATIONAL ECONOMIC AND DEVELOPMENT AUTHORITY -  REGION III		541	\N	2016-10-12	2016-10-12	\N	0	0	0	TECHNICAL
11094	CENSUS AND POPULATION DATA DISSEMINATION	TECHNICAL	PHILIPPINE STATISTICS AUTHORITY - BATAAN		541	\N	2016-10-26	2016-10-26	\N	0	0	0	TECHNICAL
11095	TRAINING ON CENSUS AND SRUVEY PROCESSING SYSTEM (CSPro) USING PUBLIC UTILITY FILES 	TECHNICAL	PHILIPPINE STATISTICS AUTHORITY - BATAAN		541	\N	2017-03-07	2017-03-07	\N	0	0	0	TECHNICAL
11096	2016 ANNUAL SURVEY OF PHILIPPINE BUSINESS AND INDUSTRY DATA DISSEMINATION AND RESPONDENTS FORUM	TECHNICAL	PHILIPPINE STATISTICS AUTHORITY - BATAAN		541	\N	2017-07-26	2017-07-26	\N	0	0	0	TECHNICAL
11097	TECHNICAL WORKING GROUP ON HEALTH EQUITY INFORMATION SYSTEM	TECHNICAL	ZUELLIG FAMILY FOUNDATION		541	\N	2017-07-04	2017-07-04	\N	0	0	0	TECHNICAL
11098	G4HD CORE GROUP WORKSHOP 	TECHNICAL	DEPARTMENT OF HEALTH - REGIONAL OFFICE III		541	\N	2017-07-11	2017-07-11	\N	0	0	0	TECHNICAL
11099	BASIC COURSE ON PROJECT DEVELOPMENT AND MANAGEMENT OF LGU's	TECHNICAL	DEVELOPMENT ACADEMY OF THE PHILIPPINES 		541	\N	2017-08-15	2017-08-18	\N	0	0	0	TECHNICAL
11100	LECTURE ON HEALTH AND CIVIL REGISTRATION IN CELEBRATION OF THE 28TH NATIONAL STATISTICS MONTH	TECHNICAL	PHILIPPINE STATISTICS AUTHORITY  - BATAAN		541	\N	2017-10-18	2017-10-18	\N	0	0	0	TECHNICAL
11102	MEETING ON CMCI RANKING OF LGU BATAAN 	TECHNICAL	NATIONAL COMPETITIVENESS COUNCIL		541	\N	2018-10-27	2018-10-27	\N	0	0	0	TECHNICAL
11103	Gender and Development (GAD) CUM TEAM BUILDING, MORONG STAR BEACH RESORT, MORONG BATAAN		PROVINCIAL GOVERNORS OFFICE 		545	\N	2016-06-10	2016-06-11	\N	0	0	0	
11104	ORIENTATION/SEMINAR ON THE PROCEDURE FOR THE DISBURSEMENT TRANSACTION		PROVINCIAL ACCOUTING OFFICE 		545	\N	2014-05-09	2014-05-09	\N	0	0	0	
11105	PMS-OPES TRACK II		CIVIL SERVICE COMMISSION 		545	\N	2009-01-19	2009-01-22	\N	0	0	0	
11106	TRAINING OF FEASIBILITY STUDY PREPARATION		PPDO & DTI 		545	\N	1994-10-26	1994-10-26	\N	0	0	0	
11109	TRAINOR'S TRAINING COURSE	TECHNICAL 	DEPARTMENT OF LOCAL GOVERNMENT AND COMMUNITY DEVELOPMENT/BARANGAY WATER PROGRAM		548	\N	1980-05-19	1980-05-23	\N	0	0	0	TECHNICAL 
11110	SEMINAR WORKSHOP ON THE PREPARATION OF FEASIBILITY STUDY AND DESIGN OF RURAL WATER SUPPLY SYSTEM	TECHNICAL 	RURAL WATERWORKS DEVELOPMENT CORPORATION		548	\N	1980-08-13	1980-08-15	\N	0	0	0	TECHNICAL 
11112	SEMINAR-WORKSHOP ON RURAL WATER SUPPLY PROGRAM DEVELOPMENT 	TECHNICAL	PROVINCIAL WATERWORKS COMMITTEE		548	\N	1983-10-21	1983-10-21	\N	0	0	0	TECHNICAL
11113	LAUNCHING AND SYMPOSIUM OF THE NW GSIS ACT OF 1997 (RA 8291)	TECHNICAL	GOVERNMENT SERVICE INSURANCE SYSTEM (GSIS)		548	\N	1997-09-09	1997-09-09	\N	0	0	0	TECHNICAL
11114	LOAN DELIQUENCY SEMINAR	TECHNICAL	CITY OF GOVERNMENT OF BALANGA/LANDBANK OF THE PHILIPPINES		548	\N	2005-11-25	2005-11-25	\N	0	0	0	TECHNICAL
11115	CREDIT MANAGEMENT SEMINAR	TECHNICAL	CITY OF GOVERNMENT OF BALANGA/LANDBANK OF THE PHILIPPINES		548	\N	2005-07-27	2005-07-27	\N	0	0	0	TECHNICAL
11116	ORIENTATION IN COOPERATIVE SALESMANSHIP SEMINAR	TECHNICAL	CITY OF GOVERNMENT OF BALANGA/LANDBANK OF THE PHILIPPINES		548	\N	2005-05-12	2005-05-12	\N	0	0	0	TECHNICAL
11117	TEAM BUILDING SEMINAR WORKSHOP 	TECHNICAL	PROVINCIAL GOVERNMENT OF BATAAN/CIVIL SERVICE COMMISSION		548	\N	2007-03-08	2007-03-09	\N	0	0	0	TECHNICAL
11118	INFORMATION DISSEMINATION OF RA 9470	TECHNICAL	NATIONAL ARCHIVES OF THE PHILIPPINES 		548	\N	2009-02-13	2009-02-13	\N	0	0	0	TECHNICAL
11119	TRAINORS TRAINING ON COMMUNITY BASED MONITORING SYSTEM  (CBMS) DATA COLLECTION	TECHNICAL	PEP - COMMUNITY BASED MONITORING SYSTEM (CBMS) NETWORK OFFICE		548	\N	2009-02-24	2009-02-26	\N	0	0	0	TECHNICAL
11120	RSBSA 3RD LEVEL TRAINING 	TECHNICAL	NATIONAL STATISTICS OFFICE - BATAAN		548	\N	2012-08-04	2012-09-08	\N	0	0	0	TECHNICAL
11121	2012 CAF CONSULTATIVE FORUM	TECHNICAL	NATIONAL STATISTICS OFFICE - BATAAN		548	\N	2012-10-18	2012-10-18	\N	0	0	0	TECHNICAL
11122	TOURISM PRODUCT DEVELOPMENT WORKSHOP	TECHNICAL	DEPARTMENT OF TOURISM		548	\N	2013-02-11	2013-02-12	\N	0	0	0	TECHNICAL
11123	TRAINING OF TRAINERS ON THE USE OF SOCIAL PROTECTION HANDBOOK	TECHNICAL	PROVINCIAL SOCIAL WELFARE AND DEVELOMENT OFFICE 		548	\N	2014-09-16	2014-09-20	\N	0	0	0	TECHNICAL
11124	2013 ANNUAL SURVEY OF PHILIPPINE BUSINESS AND INDUSTRY STAKE HOLDERS FORUM	TECHNICAL	PHILIPPINE STATISTICS AUTHORITY - BATAAN		548	\N	2014-10-16	2014-10-16	\N	0	0	0	TECHNICAL
11125	RBME RETOOLING TRAINING FOR PPMIU	TECHNICAL	DEPARTMENT OF AGRICULTURE/PHILIPPINE RURAL DEVELOPMENT PROJECT		548	\N	2015-03-04	2015-03-05	\N	0	0	0	TECHNICAL
11126	PROVINCIAL COMMODITY INVESTMENT PLAN (PCIP) WORKSHOP AND PRESENTATION ON CASSAVA AND AROMATIC/PIGMENTED RICE AND PCIP REVIEW/FINALIZATION FOR TILAPIA 	TECHNICAL	DEPARTMENT OF AGRICULTURE/PHILIPPINE RURAL DEVELOPMENT PROJECT		548	\N	2015-08-27	2015-08-28	\N	0	0	0	TECHNICAL
11128	TRAINING ON CENSUS AND SURVEY PROCESSING SYSTEM (CSPro) USING PUBLIC UTILITY FILES	TECHNICAL	PHILIPPINE STATISTICS AUTHORITY - BATAAN		548	\N	2017-03-07	2017-03-07	\N	0	0	0	TECHNICAL
11129	RA 9262 OR "ANTI-VIOLENCE AGAINST WOMEN AND THEIR CHILDREN ACT OF 2004" AND TEAM BUILDING 	PERSONAL DEVELOPMENT 	PROVINCIAL PLANNING AND DEVELOPMENT OFFICE		548	\N	2018-12-28	2018-12-29	\N	0	0	0	PERSONAL DEVELOPMENT 
11130	COMMUNICATION DEVELOPMENT TRAINING	TECHNICAL	CROWN ROYALE HOTEL, BALANGA CITY, BATAAN BY PHRMO		550	\N	2016-11-09	2016-11-10	\N	0	0	0	TECHNICAL
11131	TOURIST RECEPTION AND TOUR GUIDING TECHNIQUES SEMINAR	TECHNICAL	TOURISM OFFICE, BATAAN BY PTO		550	\N	2014-08-27	2014-08-30	\N	0	0	0	TECHNICAL
11132	WOMAN EMPOWERMENT LECTURE IN CELEBRATION OF 2015 NATIONAL WOMENS MONTH	TECHNICAL	AVON BLDG., BALANGA CITY, BATAAN BY PSA		550	\N	2015-03-16	2015-03-16	\N	0	0	0	TECHNICAL
11133	LEARNING EVENT ON THE USE OF GENDER TOOL FOR RESPONSIVE PLANNING AND IMPLEMENTATION IN PROTECTED AREAS AND NEW CONSERVATION AREAS	TECHNICAL	CROWN ROYALE BALANGA CITY, BATAAN/BY DENR-PENRO BATAAN		550	\N	2015-05-13	2015-05-14	\N	0	0	0	TECHNICAL
11134	TRAINING COMUTER FUNDAMENTAL COURSE	TECHNICAL	PESO OFFICE, CAPITOL, BALANGA CITY, BATAAN BYU OWWA		550	\N	2015-07-27	2015-08-07	\N	0	0	0	TECHNICAL
11135	PUBLIC-PRIVATE PARTNERSHIP TAINING/ORIENTATION WORKSHOP	TECHNICAL	NEDA REGION III, SAN FERNANDO, PAMPANGA BY NEDA REGION III		550	\N	2015-12-01	2015-12-01	\N	0	0	0	TECHNICAL
11136	ORIENTATION/SEMINAR ON MAGNA CARTA OF WOMEN AND ANTI VIOLENCE AGAINST WOMEN AND CHILDREN	TECHNICAL	CROWN ROYAL HOTEL, BALANGA CITY, BATAAN BY PPO		550	\N	2016-04-15	2016-04-15	\N	0	0	0	TECHNICAL
11137	GENDER SENSITIVITY TRAINING CUM TEAM BUILDING SEMINAR	TECHNICAL	MORONG STAR BEACH RESORT, MORONG BATAAN BY PPDO		550	\N	2016-05-10	2016-06-11	\N	0	0	0	TECHNICAL
11138	WORK, ATTITUDE AND VALUES ENHANCEMENT TRAINING	TECHNICAL	LOUIS RESORT AND RESTAURANT, BALANGA CITY, BATAAN/ BY PHRMO		550	\N	2016-06-20	2016-06-21	\N	0	0	0	TECHNICAL
11139	TRAINING AND WORKSHOP ON GIS FOR TALISAY WATERSHED CHARACTERIZATION STUDY	TECHNICAL	VILLA AMANDA RESORT, ABUCAY, BATAAN BY DENR-PENRO BATAAN		550	\N	2016-06-27	2016-06-30	\N	0	0	0	TECHNICAL
11140	SKILLS AND COMPETENCY GAPS ANALYSIS WORKSHOP	TECHNICAL	PROVINCIAL GOVERNORS OFFICE		550	\N	2017-07-21	2017-07-21	\N	0	0	0	TECHNICAL
11141	SEMINAR-WORKSHOP ON BASIC RECORDS AND ARCHIVE MANAGEMENT 	TECHNICAL	GSP, CAPITOL COMPOUND, CITY OF BALANGA, BATAAN		550	\N	2017-07-25	2017-07-26	\N	0	0	0	TECHNICAL
11142	WORKSHOP ON POPULATING PUBLIC-PRIVATE PARTNERSHIP FOR THE PEOPLE INITIATIVE FOR LOCAL GOVERNMENTS (LGU P4) PORTAL/DATABASE FOR LGUs AND PRIVATE/BUSINESS SECTOR	TECHNICAL	SUBIC BAY FREEPORTZONE		550	\N	2017-10-26	2017-10-26	\N	0	0	0	TECHNICAL
11143	GAD PLANNING AND BUDGETTING, GAD ANALYSIS CUM MONITORING AND EVALUATION USING HGDG	TECHNICAL	TAYABAS, QUEZON		550	\N	2018-09-03	2018-09-05	\N	0	0	0	TECHNICAL
11144	PDPFP Public Consultation Meeting	Technical	PPDO		925	\N	2019-02-22	2019-02-22	\N	0	0	0	Technical
11146	Training on Aerobic Rice Technology 	Technical	Department of Agriculture - Agricultural Training Institute 		924	\N	2014-12-26	2014-12-26	\N	0	0	0	Technical
11147	FARMERS TRAINING ON ORGANIC AGRICULTURE FOR UPLAND FARMERS	TECHNICAL 	AGRICULTURAL TRAINING INSTITUTE - REGIONAL OFFICE III		924	\N	2014-09-15	2014-10-17	\N	0	0	0	TECHNICAL 
11149	AGRICULTURAL ENGINEER : COMPETITIVE TO ARGO FISHERY INDUSTRY IN THE ASEAN COMMUNITY	TECHNICAL 	PHILIPPINE SOCIETY OF AGRICULTURAL ENGINEERS		924	\N	2015-01-20	2015-01-23	\N	0	0	0	TECHNICAL 
11150	LEADERSHIP AND TEAM BUILDING CUM: REGIONAL ASSESMENT OF LIVELIHOOD PROJECTS OF 4H CLASS OF 4TH CLUB RECIEPEINTS 	TECHNICAL 	DEPARTMENT OF AGRICULTURE - AGRICULTURAL TRAINING INSTITUTE 		924	\N	2015-03-24	2015-03-25	\N	0	0	0	TECHNICAL 
11151	AEROBIC RICE TRAINING AND MANAGEMENT	TECHNICAL 	BATAAN PENINSULA STATE UNIVERSITY		924	\N	2016-11-11	2016-11-11	\N	0	0	0	TECHNICAL 
11152	TRAINING/WORKSHOP FOR RETOOLING OF RPCO3, PPMIUs, ON THE TECHNICAL REVIEW IF IBUILD AND IREAP SUBPROJECTS	TECHNICAL 	DEPARTMENT OF AGRICULTURE - RPCO3		924	\N	2017-05-29	2017-06-02	\N	0	0	0	TECHNICAL 
11153	CAPACITY NEEDS ORIENTATION / WORKSHOP ON MAINSTREAMING GREEN GROWTH IN DEVELOPMENT PLANNING	TECHNICAL 	ENVIRONMENTAL AND NATURAL RESOURCE OFFICE - GGGCI		924	\N	2017-07-25	2017-07-26	\N	0	0	0	TECHNICAL 
11154	REGIONAL WORKSHOP ON NATIONAL REGIONAL STRATEGIC PRIORITIES AND SUSTAINABLE DEVELOPMENT GOALS (SDGs) ALIGNMENT 	TECHNICAL	DEPARTMENT OF INTERIOR AND LOCAL GOVERNMENT 		924	\N	2017-08-10	2017-08-11	\N	0	0	0	TECHNICAL
11155	TRAINING COURSEON PROJECT MONITORING AND EVALUATION FOR RESEARCH DEVELOPMENT AND EXTENSION STAKEHOLDERS (LUZON)	TECHNICAL	DEPARTMENT OF AGRICULTURE - AGRICULTURAL TRAINING INSTITUTE		924	\N	2014-11-11	2014-11-14	\N	0	0	0	TECHNICAL
11156	GLOBAL GREEN GROWTH INSTITUTE TRAINING AND WORKSHOP ON DVELOPMENTAL PLANNING 	TECHNICAL 	ENVIRONMENTAL AND NATURAL RESOURCES OFFICE - GGGI		924	\N	2017-09-05	2017-09-07	\N	0	0	0	TECHNICAL 
11157	STRATEGIC ACTION AND PLANNING WORKSHOP ON PROVINCIAL TOURISM 	TECHNICAL 	PROVINCIAL TOURISM OFFICE 		924	\N	2017-10-26	2017-10-27	\N	0	0	0	TECHNICAL 
11158	TRAINING ON ORGANIC FARMING: ORAGNIC INPUTS PRODUCTION AND UTILIZATION IN CROP CULTIVATION 	TECHNICAL 	RM CARES CENTRAL LUZON STATE UNIVERSITY 		924	\N	2017-12-19	2017-12-19	\N	0	0	0	TECHNICAL 
11159	PLANNING WORKSHOP AND SETTLING TIMELINES FOR THE OPERATIONALIZATION OF APPROVED REGULAR I-REAP SUBPROJECTS	TECHNICAL 	DEPARTMENT OF AGRICULTURE - RPCO3		924	\N	2018-01-11	2018-01-12	\N	0	0	0	TECHNICAL 
11160	PPP 101 TRAINING AND PROJECT CONCEPT NOTE DEVELOPMENT WORKSHOP	TECHNICAL 	PUBLIC PARTNERSHIP AND INVESTMENT CENTER		924	\N	2018-10-24	2018-10-25	\N	0	0	0	TECHNICAL 
11161	REGIONAL ORIENTATION AND WORKSHOP ON THE FORMULATION OF PROVINCIAL RESULT MATRICES ON THE LOCALIZATION OF PHILIPPINE DEVELOPMENT PLAN 2017-2022	TECHNICAL 	DEPARTMENT OF INTERIOR AND LOCAL GOVERNMENT 		924	\N	2018-11-14	2018-11-16	\N	0	0	0	TECHNICAL 
11162	LUZON A-CLUSTER I-PLAN ASSESMENT CUM PLANNING WORKSHOP WITH PPMIUs	TECHNICAL	DEPARTMENT OF AGRICULTURE - PRDP		924	\N	2018-11-29	2018-11-29	\N	0	0	0	TECHNICAL
11163	PROVINCIAL WORKSHOP ON CITY/MUNICIPALITY COMMITMENT SETTING	TECHNICAL	DEPARTMENT OF INTERIOR AND LOCAL GOVERNMENT 		924	\N	2018-12-07	2018-12-07	\N	0	0	0	TECHNICAL
11164	RISK MAPPING AND DATA GATHERING WORKSHOP	TECHNICAL	PROVINCIAL DISASTER RISK REDUCTION AND MANAGEMENT COUNCIL		924	\N	2019-01-29	2019-01-29	\N	0	0	0	TECHNICAL
11165	PRDP PSO-RPCO-PPMU GENERAL ASSEMBLY MEETING 	TECHNICAL	DEPARTMENT OF AGRICULTURE - PRDP		924	\N	2019-01-30	2019-01-30	\N	0	0	0	TECHNICAL
11166	BENCHMARKING: TARLAC AGRICULTURAL UNIVERSITY RE: CLEAN PLANTING MATERIALS ON SWEET POTATO	TECHNICAL	DEPARTMENT OF AGRICULTURE 		924	\N	2019-02-01	2019-02-01	\N	0	0	0	TECHNICAL
11167	TRAINING WORKSHOP ON GENERATION OF COMMODITY INVESTMENT PLAN AND AGRIBUSINESS CONCEPTS	TECHNICAL	DEPARTMENT OF AGRICULTURE 		924	\N	2019-02-12	2019-02-15	\N	0	0	0	TECHNICAL
11169	BATAAN LOCAL PUBLIC TRANSPORT ROUTE PLAN COUNCIL STAKEHOLDERS CONSULTATION WORKSHOP	TECHNICAL	LAND TRANSPORTATION FRANCHISING AND REGULATORY BOARD		924	\N	2019-03-05	2019-03-05	\N	0	0	0	TECHNICAL
11170	PROVINCIAL TRAINING OF TRAINERS ON GEOGRAPHIC INFORMATION SYSTEM (GIS) FOR CLIMATE AND DISASTER RISK AND VULNERABILITY REDUCTION	MANAGERIAL	DILG/LGA/UN-WFP		551	\N	2013-09-16	2013-09-20	\N	0	0	0	MANAGERIAL
11171	TRAINING ON FEASIBILITY STUDY/DETAILED ENGINEERING DESIGN; ECONOMIC AND FINANCIAL ANALYSIS; SOCIAL AND ENVIRONMENTAL SAFEGUARDS; APPLIED GEO TECHNOLOGY	TECHNICAL	DEPARTMENT OF AGRICULTURE PROJECT SUPPORT OFFICE LUZON A CLUSTER REGION III/PRDP		551	\N	2014-10-27	2014-10-31	\N	0	0	0	TECHNICAL
11172	TRAINING ON PHYSICAL PLANNING APPLICATION OF GEOGRAPHIC INFORMATION SYSTEM (GIS)	TECHNICAL	NATIONAL ECONOMIC AND DEVELOPMENT AUTHORITY (NEDA) III		551	\N	2015-07-21	2015-07-24	\N	0	0	0	TECHNICAL
11173	WORKSHOP ON THE PREPARATION OF THE PROVINCIAL ROAD NETWORK PLAN (PRNDP) FOR LOCAL GOVERNMENT UNITS	TECHNICAL	DEPARTMENT OF THE INTERIOR AND LOCAL GOVERNMENT		551	\N	2015-09-25	2015-09-28	\N	0	0	0	TECHNICAL
11175	42ND UNITED ARCHITECTS OF THE PHILIPPINES CONVENTION & ANNUAL BUSINESS MEETING "FILIPINO ARCHITECTS IN A RAPIDLY EVOLVING WORLD"	TECHNICAL	UNITED ARCHITECTS OF THE PHILIPPINES		551	\N	2016-04-12	2016-04-23	\N	0	0	0	TECHNICAL
11176	TRAINING ON THE UTILIZATION OF GEO MAPPING TECHNOLOGY	TECHNICAL	DA RPCO REGION III/PHILIPPINE RURAL DEVELOPMENT PROJECT		551	\N	2016-06-14	2016-06-16	\N	0	0	0	TECHNICAL
11177	CONSTRUCTION OCCUPATIONAL SAFETY AND HEALTH TRAINING COURSE 	TECHNICAL	LABSPEAK SAFTEY MANAGEMENT INC. / PEO BATAAN		551	\N	2016-08-02	2016-08-05	\N	0	0	0	TECHNICAL
11178	CLUSTER APPRECIATION COURSE ON VALUE CHAIN ANALYSIS (VCA) AND COMMODITY INVESTMENT PLANNING (CIP) FOR PROVINCIAL MANAGEMENT AND IMPLEMENTING UNITS (PPMIUs) UNDER PHILIPPINE RURAL DEVELOPMENT PROJECT	TECHNICAL	DEPARTMENT OF AGRICULTURE PHILIPPINE RURAL DEVELOPMENT PROJECT LUZON A (NORTH LUZON) CLUSTER		551	\N	2016-09-06	2016-09-09	\N	0	0	0	TECHNICAL
11179	TRAINING PROGRAM ON ADVANCED GEOGRAPHIC INFORMATION SYSTEM (GIS) FORN DISASTER PREPAREDNESS AND RESPONSE	TECHNICAL	DEPARTMENT OF INTERIOR LOCAL GOVERNMENT REGION (DILG) III / LOCAL GOVERNMENT ACADEMY (LGA)		551	\N	2016-09-15	2016-09-19	\N	0	0	0	TECHNICAL
11180	SUPERVISORY DEVELOPMENT COURSE (SDC) TRACK 1	SUPERVISORY	CSC REGION III / PHRMO BATAAN		551	\N	2016-11-15	2016-11-17	\N	0	0	0	SUPERVISORY
11181	43TH UNITED ARCHITECTS OF THE PHILIPPINES NATIONAL CONVENTION SHIFT "SHAKING UP THE ARCHITECTURE PRACTICE"	TECHNICAL	UNITED ARCHITECTS OF THE PHILIPPINES 		551	\N	2017-04-27	2017-04-29	\N	0	0	0	TECHNICAL
11182	7TH ECO FORUM 2017 "EMPOWERING OUR LEADERS; CRAFTING SUSTAINABLE SOLUTIONS FOR A BETTER FUTURE"	MANAGERIAL	BRIDGING LEADERS FOR SUSTAINBALE DEVELOPMENT 		551	\N	2017-05-25	2017-05-27	\N	0	0	0	MANAGERIAL
11183	SEMINAR -  WORKSHOP ON THE UPDATING OF THE LOCAL ROAD NETWORK DEVELOPMENT PLAN (LRNDP) FOR LGU'S	TECHNICAL	DILG-OPDS		551	\N	2017-05-29	2017-06-02	\N	0	0	0	TECHNICAL
11245	WRITESHOP FOR THE COMPLETION OF PROVINCIAL GOVERNANCE REFORM ROADMAP (PGRR)	TECHNICAL 	DEPARTMENT OF THE INTERIOR AND LOCAL GOVERNMENT 		922	\N	2018-09-25	2018-09-26	\N	0	0	0	TECHNICAL 
11324	RBO and 4-H Regional Consultative and Organizaitonal Streghthening		Agricultureral Training Insitute Regional Training Center 3		51	\N	2017-03-07	2017-03-08	16	0	0	0	
11185	STRENGTHENING FUNCTIONALITY OF LOCAL DEVELOPMENT COUNCILS (LDCs) IN THE LOCAL DEVELOPMENT PLANNING PROCESS: CONDUCT OF PROVINCIAL STRATEGIC DIRECTION SETTING CONFERENCE WORKSHOPS	TECHNICAL	DEPARTMENT OF INTERIOR LOCAL GOVERNMENT REGION (DILG) III		551	\N	2017-09-05	2017-09-06	\N	0	0	0	TECHNICAL
11186	TRAINING ON BUILDING RESILIENT LOCAL ECONOMY IN CHANGING CLIMATE 	TECHNICAL	DEPARTMENT OF ITNERIOR LOCAL GOVERNMENT REGION  (DILG) III / LOCAL GOVERNMENT ACADEMY (LGA)		551	\N	2017-09-25	2017-09-27	\N	0	0	0	TECHNICAL
11187	SEMINAR-WORKSHOP ON LOCAL ROAD MAPPING AND COMPLETION OF THE LOCAL ROAD NETWORK DEVELOPMENT PLAN (LRNDP) 	TECHNICAL	DEPARTMENT OF INTERIOR LOCAL GOVERNMENT REGION (DILG) III		551	\N	2017-10-09	2017-10-13	\N	0	0	0	TECHNICAL
11188	CAPACITY BUILDING IN URBAN AND REGIONAL PLANNING 	TECHNICAL	NATIONAL ECONOMIC AND DEVELOPMENT AUTHORITY (NEDA) III		551	\N	2018-02-23	2018-03-16	\N	0	0	0	TECHNICAL
11189	INTERNATIONAL CONFERENCEE IN URBAN AND REGIONAL PLANNING AND REGIONAL PKANNING: "PLANNING TOWARDS SUSTAINABILITY AND RESILIENCE"	MANAGERIAL 	SCHOOL OF URBAN AND REGIONAL PLANNING UNIVERSITY OF THE PHILIPPINES DILIMAN 		551	\N	2018-03-14	2018-03-15	\N	0	0	0	MANAGERIAL 
11190	MAINSTREAMING DISASTER RISK REDUCTION INTO LOCAL DEVELOPMENT PLANNING PORCESS, CONTINGENCY PLANNING AND EMERGENCY PREPAREDNESS THROUGH THE USE OF THE REDAS SOFTWARE FOR LUZON AND VISAYAS LGUS	TECHNICAL	PHILIPPINE INSTITUTE OF VOLCANOLOGY AND SEISMOLOGY (PHIVOCS)		551	\N	2018-04-16	2018-04-24	\N	0	0	0	TECHNICAL
11191	WORKSHOP/TRAINING ON THE FORMULATION OF PROVINCIAL GOVERNANCE REFORM ROADMAP (PGRR) ON THE LOCAL ROAD MANAGEMENT AND PUBLIC FINANCIAL MANAGEMENT 	TECHNICAL	DILG REGION III/UNITED NATIONS DEVELOPMENT PROGRAMME (UNDP)		551	\N	2018-07-24	2018-07-27	\N	0	0	0	TECHNICAL
11192	CLIMATE AND DISASTER RISK ASSESMENT FOR THE NATIONAL RESILIENCE COUNCIL RESILIENT LGU PROGRAM	TECHNICAL	MANILA OBSERVATORY, ATENEO DE MANILA UNIVERSITY, NATIONAL RESILIENCE COUNCIL		551	\N	2018-12-07	2018-12-12	\N	0	0	0	TECHNICAL
11193	TRAINING ON THE LOCAL CLIMATE CHANGE ACTION PLAN QUALITY ASSURANCE REVIEW FOR LOCAL GOVERNMENT 	TECHNICAL	DEPARTMENT OF INTERIOR LOCAL GOVERNMENT REGION (DILG) III/ LOCAL GOVERNMENT ACADEMY		551	\N	2018-11-07	2018-11-09	\N	0	0	0	TECHNICAL
11194	SUPERVISORY DEVELOPMENT COURSE (SDC) TRACK 2 	SUPERVISORY	CSC REGION III / PHRMO BATAAN		551	\N	2018-11-12	2018-11-13	\N	0	0	0	SUPERVISORY
11195	SUPERVISORY DEVELOPMENT COURSE (SDC) TRACK 3	SUPERVISORY	CSC REGION III/PHRMO BATAAN		551	\N	2018-11-14	2018-11-16	\N	0	0	0	SUPERVISORY
11196	Technical Drawing Using AUTOCAD 2014 Software	Technical 	MicroCADD - Pampanga 		927	\N	2014-04-29	2014-05-11	\N	0	0	0	Technical 
11197	Trainining Workshop on Traffic Engineering and Management 	Technical 	Department of Interior and Local Government		927	\N	2018-04-16	2018-04-20	\N	0	0	0	Technical 
11198	19th Likha ng Central Luzon	Social 	DTI		928	\N	2017-10-11	2017-10-11	\N	0	0	0	Social 
11201	Anti-Violence Against Women and Their Children Act	POPCOM	Social		928	\N	2018-12-28	2018-12-28	\N	0	0	0	POPCOM
11202	PDFFP Public Consultation Meeting	PPDO	Technical		928	\N	2019-02-22	2019-02-22	\N	0	0	0	PPDO
11216	MEETING WITH PROTECTED AREA MANAGEMENT BOARD	TECHNICAL	DEPARTMENT OF ENVIRONMENT AND NATURAL RESOURCES 		926	\N	2018-05-16	2018-05-16	\N	0	0	0	TECHNICAL
11217	SEMINAR ON PHILIPPINE NATIONAL STANDARDS	TECHNICAL	DEPARTMENT OF TRADE AND INDUSTRY		926	\N	2017-05-10	2017-05-10	\N	0	0	0	TECHNICAL
11218	MAINSTREAMING GREEN GROWTH IN DEVELOPMENT PLANNING PART 1 	TECHNICAL	GLOBAL GREEN GROWTH INSTITUTE		926	\N	2017-09-05	2017-09-07	\N	0	0	0	TECHNICAL
11219	NTDP 2016-2022 ROLL-OUT AND MONITORING AND EVALUATION WORKSHOP	TECHNICAL	DEPARTMENT OF TOURISM 		926	\N	2017-08-01	2017-08-02	\N	0	0	0	TECHNICAL
11220	SGLG ROLL-OUT AND ACTION PLANNING	TECHNICAL	DEPARTMENT OF INTERIOR AND LOCAL GOVERNMENT 		926	\N	2019-03-01	2019-03-01	\N	0	0	0	TECHNICAL
11221	PDFFP PUBLIC CONSULTATION MEETING 	TECHNICAL	PPDO		926	\N	2019-02-22	2019-02-22	\N	0	0	0	TECHNICAL
11222	REGIONAL CONSULTATION FOR TRIPPC 2020	TECHNICAL	DEPARTMENT OF PUBLIC WORKS AND HIGHWAYS AND DEPARTMENT OF TOURISM 		926	\N	2019-02-01	2019-02-01	\N	0	0	0	TECHNICAL
11223	REGIONAL CONSULTATION FOR ROLL-IT 2020	TECHNICAL	DEPARTMENT OF PUBLIC WORKS AND DEPARTMENT OF TRADE AND INDUSTRY		926	\N	2019-01-15	2019-01-15	\N	0	0	0	TECHNICAL
11224	ANTI-VIOLENCE AGAINST WOMEN AND THEIR CHILDREN ACT 	SOCIAL 	PROVINCIAL POPULATION OFFICE 		926	\N	2018-12-28	2018-12-29	\N	0	0	0	SOCIAL 
11225	CONSULTATION MEETING WITH DOT- DPWH CONVERGENCE PROGRAM	TECHNICAL	DEPARTMENT OF PUBLIC WORKS ANDN HIGHWAYS AND DEPARTMENT OF TOURISM		926	\N	2018-02-20	2018-02-20	\N	0	0	0	TECHNICAL
11226	CONSULTATION MEETING WITH DTI- DPWH CONVERGENCE PROGRAM	TECHNICAL	DEPARTMENT OF PUBLIC WORKS AND HIGHWAYS AND DEPARTMENT OF TRADE AND INDUSTRY		926	\N	2018-02-08	2018-02-08	\N	0	0	0	TECHNICAL
11227	GENDER AND DEVELOPMENT SEMINAR	SOCIAL	PROVINCIAL POPULATION OFFICE 		926	\N	2017-12-29	2017-12-29	\N	0	0	0	SOCIAL
11228	MAINSTREAMING GREEN GROWTH IN DEVELOPMENT PLANNING PART 2	TECHNICAL	GLOBAL GREEN GROWTH INSTITUTE		926	\N	2017-11-07	2017-11-09	\N	0	0	0	TECHNICAL
11229	JPIA:Exceeding Standard's, Coping with Global Trends		Junior Philippine Institute of Accountancy		923	\N	2017-08-15	2017-08-15	\N	0	0	0	
11230	Promoting Online Jobs in the Countryside		Department of Information and Communication Technology		923	\N	2017-11-28	2017-11-28	\N	0	0	0	
11231	Fundamentals of Cooperative Semiar		City of Balanga		923	\N	2018-12-11	2018-12-11	\N	0	0	0	
11232	PREPARE ARCHITECTURAL DRAWING USING CAD SYSTEM AND MANUAL DRAFTING METHOD LEADING TO TECHNICAL DRAFTING NC II	TECHNICAL 			922	\N	2014-12-21	2015-02-22	\N	0	0	0	TECHNICAL 
11233	ON-THE-JOB TRAINING / FULL BLAST TRADING & CONSTRUCTION	TECHNICAL			922	\N	2015-04-13	2015-05-30	\N	0	0	0	TECHNICAL
11234	COMPUTER - AIDED COST ESTIMATES	TECHNICAL	AMBER BUILDERS & CONSTRUCTION SUPPLY		922	\N	2017-07-10	2017-07-13	\N	0	0	0	TECHNICAL
11235	RAPID DAMAGE ASSESMENT AND NEED ANALYSIS (RDANA) & POST DISASTER NEEDS ASSESMENT (PDNA)	TECHNICAL	REGIONAL DISASTER RISK REDUCTION AND MANAGAMENT COUNCIL III		922	\N	2017-09-20	2017-09-22	\N	0	0	0	TECHNICAL
11236	BUILDING RESILIENT LOCAL ECONOMY IN CHANGING CLIMATE 	TECHNICAL	DEPARTMENT OF INTERIOR AND LOCAL GOVERNMENT 		922	\N	2017-09-25	2017-09-27	\N	0	0	0	TECHNICAL
11237	FOLLOW - THROUGH ACTIVITY ON LOCAL ROAD MAPPING COMPLETION OF LRNDP 	TECHNICAL	DEPARTMENT OF THE INTERIOR AND LOCAL GOVERNMENT III		922	\N	2017-10-09	2017-10-13	\N	0	0	0	TECHNICAL
11238	STATISTICAL CAPCAITY BUILDING PROGRAM FOR DECISION MAKING (MACRO-ECONOMIC ACCOUNTS)	TECHNICAL	NATIONAL ECONOMIC AND DEVELOPMENT AUTHORITY REGION III		922	\N	2017-11-10	2017-11-10	\N	0	0	0	TECHNICAL
11244	FOLOW-THROUGH ACTIVITY ON LOCAL ROAD MAPPING USING THE UNIFIED MAPPING PROGRAM (UMP) OF NAMRIA 	TECHNICAL 	DEPARTMENT OF THE INTERIOR AND LOCAL GOVERNMENT 		922	\N	2018-09-12	2018-09-13	\N	0	0	0	TECHNICAL 
11246	FOLLOW-THROUGH ACTIVITY ON THE FINALIZATION OF THE PROVINCIAL GOVERNANCE REFORM ROADMAP (PGRR) AND THE CONDUCT OF THE LOCAL ROAD	TECHNICAL	DEPARTMENT OF THE INTERIOR AND LOCAL GOVERNMENT 		922	\N	2018-10-10	2018-10-11	\N	0	0	0	TECHNICAL
11247	INTEGRATING ADVANCED AND DIGITAL TECHNOLOGY IN BUILDING INFRASTRUCTURE 	TECHNICAL 	PHILIPPINE INSTITUTE OF CIVIL ENGINEERS 		922	\N	2018-10-29	2018-10-31	\N	0	0	0	TECHNICAL 
11248	REGIONAL WORKSHOP ON THE FORMULATION OF PROVINCIAL RESULTS MATRICES ON THE LOCALIZATION OF THE PHILIPPINE DEVELOPMENT PLAN 2017-2022 AND THE SUSTAINABLE DEVELOPMENT GOALS	TECHNICAL	DEPARTMENT OF THE INTERIOR AND LOCAL GOVERNMENT 		922	\N	2018-11-14	2018-11-16	\N	0	0	0	TECHNICAL
11249	PRESENTATION OF PARTIAL REPORT FOR GROUNDWATER RESOURCES MANAGEMENT	TECHNICAL 	DEPARTMENT OF THE INTERIOR AND LOCAL GOVERNMENT 		922	\N	2018-12-07	2018-12-07	\N	0	0	0	TECHNICAL 
11250	RISK MAPPING WORKSHOP	TECHNICAL	PROVINCIAL DISASTER RISK REDUCTION AND MANAGEMENT OFFICE		922	\N	2019-02-28	2019-02-28	\N	0	0	0	TECHNICAL
11252	Seminar on Philippine Auditing Standards, Labor Mgmt, BOA Updates, COMELEC Updates and Election Awareness		PICPA-Central Luzon Region / Lou-is Resort & Reastaurant, Capitol Balanga City Bataan		1	\N	2010-04-29	2010-04-29	\N	0	0	0	
11253	Seminar on Bataan Information and Communications Technology Proj/Computerization		MIS and IBM Philippines Incorporated/ Crown Royale Hotel, Balanga City, Bataan		1	\N	2003-08-27	2003-08-27	\N	0	0	0	
11254	Seminar  on Stress Management and Self Empowerment		PICPA- Bataan Chapter / Crown Royale Hotel, Balanga City Bataan		1	\N	2003-03-28	2003-03-28	\N	0	0	0	
11256	PDRRMC 1st Quarter Full Council Meeting	Technical	Provincial Disaster Risk Reduction and Management Council		2	\N	2019-02-19	2019-02-19	\N	0	0	0	Technical
11257	Seminar on Gender and Development Provincial Accountant's Office	Technical	Provincial Government of Bataan		2	\N	2016-05-27	2016-05-27	\N	0	0	0	Technical
11258	Seminar on Philippine Auditing Standards Labor Management BOA Updates COMELEC Updates & Election Awareness	Technical	Philippine Institute of Certified Public Accountants		2	\N	2010-04-29	2010-04-29	\N	0	0	0	Technical
11259	Seminar on Government Application Software Government Appropriations & Accounting Management Software System	Technical	System & Plan Integrator Development Company & IBM Philippines Incorporated		2	\N	2003-12-08	2003-12-08	\N	0	0	0	Technical
11266	How to Implement 5s in the Workplace 		Business Coach, Inc.		3	\N	2014-08-22	2014-08-22	\N	0	0	0	
11267	Orientation / Seminar on the Procedures for the Disbursement Transactions of the Provincial Government of Bataan 		Provincial Accountants Office, Provincial Engineers's Office, and Provincial General Services Office 		3	\N	2014-05-09	2014-05-09	\N	0	0	0	
11268	Seminar on Philippine Auditing Standards, Labor Management, BOA Updates, Comelec Updates and Election Awareness 		Philippine Institute of Certified Accountants-Central Luzon Region 		3	\N	2010-04-29	2010-04-29	\N	0	0	0	
11269	Seminar - Workshop on Revised Performance Evaluation System CSC MC (No.25 S.1999)		Provincial Human Resource Management Office and Civil Service Commission		3	\N	2001-02-26	2001-02-26	\N	0	0	0	
11270	Seminar of Gender and Development 		Provincial Government of Bataan 		4	\N	2018-08-10	2018-08-10	\N	0	0	0	
11271	Mastering Withholding Tax, Vat and Income Tax and the Effect of Train Law		Philippine Institute of Certified Public Accountants-Metro Manila Region 		4	\N	2018-02-10	2018-02-10	\N	0	0	0	
11274	Manpower Training		Philippine National Police 		5	\N	2014-09-10	2014-09-12	\N	0	0	0	
11295	19th Philippine National Immunization Conference "The Changing Landscape of Immunization in the Philippines	Technical	Philippine Foundation for Vaccination		219	\N	2018-11-15	2018-11-16	16	0	0	0	Technical
11297	Nutricamp 2018	Technical	Integrated Midwives Association of the Philippines		219	\N	2018-02-23	2018-02-24	16	0	0	0	Technical
11298	Challenges in Midwifery Profession: Now and Beyond	Technical	Integrated Midwives Association of the Philippines		219	\N	2017-12-01	2017-12-01	8	0	0	0	Technical
11299	IMAP Inc: Sustaining its Mission and Vision for 43 Years and Beyond	Technical	Integrated Midwives Association of the Philippines		219	\N	2017-10-19	2017-10-21	24	0	0	0	Technical
11300	MNCHN: Essential Intrapartum and Newborn Care (EINC) Providers Training for Midwives	Technical	Integrated Midwives Association of the Philippines		219	\N	2017-08-25	2017-08-26	16	0	0	0	Technical
11301	Midwives Summit: Aligning with Global Trends	Technical	Integrated Midwives Association of the Philippines		219	\N	2017-08-11	2017-08-11	8	0	0	0	Technical
11302	IMAP Defining Its Core Values: Integritiy Motivation, Accountability and Professionalism	Technical	Integrated Midwives Association of the Philippines		219	\N	2017-07-07	2017-07-07	8	0	0	0	Technical
11309	107TH PDA Annual Convention	Managerial	Philippine Dental Association		214	\N	2016-05-25	2016-05-30	12	0	0	0	Managerial
11310	1st BDC Scientific Seminar	Dental	Philippine Dental Association		214	\N	2017-09-06	2017-09-06	2	0	0	0	Dental
11311	PEDO 101 Tips and Trids and Handling Pedo Patients	Managerial	Philippine College of Oral Maxillo Facial Surgery		214	\N	2017-11-29	2017-11-29	3	0	0	0	Managerial
11312	3rd Scientific Seminar	Managerial	Philippine Dental Association		214	\N	2017-07-08	2017-07-08	4	0	0	0	Managerial
11313	Innovation of Implants Dentistry	Mangerial 	PDA DIO Implant		214	\N	2017-12-14	2017-12-14	8	0	0	0	Mangerial 
11314	Embracing Clinical Challenges	Managerial	PDA Dolfinal Scientific		214	\N	2017-03-22	2017-03-22	4	0	0	0	Managerial
11315	Striding Oneself Into the Future of Dentistry	Managerial	Philippine Dental Association		214	\N	2018-06-18	2018-06-18	3	0	0	0	Managerial
11316	Pinasmile KId Caravan	Managerial	Philippine Pediatric Dental		214	\N	2018-08-07	2018-08-07	6	0	0	0	Managerial
11318	HIV Orientation for Dentist in Central Luzon	Managerial	Department of Health		214	\N	2018-09-10	2018-09-11	12	0	0	0	Managerial
11319	68th Farm Youth National Convention		Agriculture Training Institute Central Office		51	\N	2018-05-22	2018-05-24	24	0	0	0	
11320	4th Congress and Organizational Strengthening		Agricultural Training Institute Regioanl Training Center 3		51	\N	2018-04-18	2018-04-20	24	0	0	0	
11321	Systematic Records Management Training/WorkshopM		Povincial Human Resource Management Office		51	\N	2017-07-25	2017-07-26	16	0	0	0	
11322	Regional Techno Gabay Review and Evaluation		Philmech/Central Luzon Agriculture,Aquatic and Resources Research and Development Consortum		51	\N	2017-05-04	2017-05-05	16	0	0	0	
11323	4-H Regional Summer Youth Camp		Agricultureral Training Institute Training Center 3		51	\N	2017-04-18	2017-04-20	24	0	0	0	
11325	Three Day Training on Good Agricultureral Practices on Fruits and Vegetable		Department of Agriculture Regional Field Office 3		51	\N	2016-11-23	2016-11-25	24	0	0	0	
11326	Communication Development Trianing`		Provincial Human Resource Managment Office		51	\N	2016-11-09	2016-11-10	16	0	0	0	
11327	Regional Stakeholder Consultation Cum Program Assessment and Planning		Agriculutural Training Insitute Regional Training Center 3		51	\N	2016-11-08	2016-11-08		0	0	0	
11328	Two Day Trainin gon Good Agricultural Practices on Fruits and Vegetable 		Department of Agriculture Regional Field Office 3		51	\N	2016-11-23	2016-11-25	24	0	0	0	
11330	Regional StakeHolder Consultation Cum Program Assessment and Planning		Agricultureral Training Insitutute Regional Training Center 3		51	\N	2016-11-08	2016-11-08	8	0	0	0	
11331	Two Day Training on Good Agricultural Practices on Mango Production		Office of the Provincial Agriculturist		51	\N	2016-11-03	2016-11-04	16	0	0	0	
11332	Regional Training Course on Brackishwater Aquaculture with Emphasis on Organic Culture of Milkfish and Mangrove Crab 		Bureau of Fisheries Aquatic Resources 3		52	\N	2016-12-01	2016-12-02	\N	0	0	0	
11333	Orientation on Ecosystem Approach to Fisheries Management (EAFM) with Presentation of Coastal Resource Management  (CRM) Plan in Progess 		Bureau of Fisheries Aquatic Resources 3		52	\N	2016-08-22	2016-08-23	\N	0	0	0	
11334	Training on Mangrove with Actual Mangrove Validation in Support to the Philippine National Aquasilviculture Program (PNAP)		Bureau of Fisheries Aquatic Resources 3		52	\N	2016-06-25	2016-06-26	\N	0	0	0	
11336	Fisheries / Coastal Resource Management (f/crm) Training Planning and Development of LGU f/crm Plans Under Save Manila Bay Program 		Bureau of Fisheries Aquatic Resources 3		52	\N	2016-03-29	2016-03-31	\N	0	0	0	
11357	Provincial NTP Program Implementation Review	Technical	Provincial Health Office Bataan		226	\N	2015-04-21	2015-04-22	16	0	0	0	Technical
11358	Nurturing the Empowerd Women:The Subic Bay Experience	Technical	Philippine Obstetrical and Gynecologic Society (Foudnation). Inc.		226	\N	2015-04-16	2015-04-18	24	0	0	0	Technical
11359	Basic Wheelchair Training Course	Technical	Latter-Day Saint Charities		226	\N	2015-04-08	2015-04-08	8	0	0	0	Technical
11360	Training on the NTP Manual of Procedure,5th Edition	Technical	Department of Health Region 3		226	\N	2014-10-15	2014-10-17	24	0	0	0	Technical
11361	Professionalism Beyond Gender Issues: Breaking the Prejudice and Social Stigma	Technical	 Bataan Peninsula State University		226	\N	2014-06-28	2014-06-28	8	0	0	0	Technical
11362	Consultation Workshop on High Value Crops Development for Central Luzon 		Agricultural Training Institute - Regional Training Center III		55	\N	2017-03-01	2017-03-02	\N	0	0	0	
11363	Grassroots Economic Development Following Sufficiency Economy Philosophy (International Training Course 2016)		Faculty of Economics Kasetsart University, Bangkok, Thailand 		55	\N	2016-09-26	2016-10-22	\N	0	0	0	
11364	Specialized Training Course of Crop Protection Officers / Integrated Pest Management Coordinators for the Creation of Rice Pest Management Master Plan for Region III 		Department of Agriculture - Regional Crop Protection Center III		55	\N	2015-12-01	2015-12-04	\N	0	0	0	
11373	Awareness Seminar on Local Organic Food Consumption and Utilization 		Agricultural Training Institute Regional Training Center III		55	\N	2014-03-25	2014-03-25	\N	0	0	0	
11374	Training of Trainers on Farmers Field School For Organic Agriculture 		Agricultural Training Institute Regional Training Center III		55	\N	2014-01-27	2014-01-31	\N	0	0	0	
11376	11th National Vegetable Congress 		Department of Agriculture - Central Office		55	\N	2013-11-20	2013-11-23	\N	0	0	0	
11377	Training of Trainers on Integrated Diversified Organic Farming System for Agricultural Extension Workers and Farmer Leaders of Region III		Agricultural Training Institute Regional Training Center III		55	\N	2013-04-08	2013-04-12	\N	0	0	0	
11378	Retooling of Provincial and Municipal Integrated Pest Management Trainers		Bureau of Plant Industry / Regional Crop Protection Center		55	\N	2013-03-20	2013-03-22	\N	0	0	0	
11380	Reinforcement Training Course on Organic Agriculture for Provincial Focal Person and Stakeholders on Region III		Agricultural Training Institute Regional Training Center III		55	\N	2013-01-28	2013-01-30	\N	0	0	0	
11381	Job Enhancement Training Program for Middle Level Manager Wellness Program / Leadership and Management		Agricultural Training Institute - Central Office 		55	\N	2012-11-13	2012-11-17	\N	0	0	0	
11382	National Course on Organic Agriculture for Livestock Extentionist		International Training Center for PIG Husbandry		55	\N	2012-10-15	2012-10-19	\N	0	0	0	
11383	Philippine National Integrated Pest Management Program Conference 		Department of Agriculture - Central Office		55	\N	2012-09-28	2012-09-29	\N	0	0	0	
11384	Retooling on Crop Protection Coordination Re-pest and Diseases		Department of Agriculture - Regional Crop Protection Center III		55	\N	2012-07-10	2012-07-12	\N	0	0	0	
11385	Organic Agriculture Internal Control System for Small Holders Groups (Phase II)		Agricultural Training Institute Regional Training Center III		55	\N	2012-05-07	2012-05-11	\N	0	0	0	
11386	Consultative Planning Workshop on Organic Agriculture - Internal Control System (Phase I and II) for small Holders Groups		Agricultural Training Institute Regional Training Center III		55	\N	2012-04-17	2012-04-18	\N	0	0	0	
11387	Bataan Provincial Summit 2014 On Drrm At Crown Royale Hotel		Provincial Disaster Risk Reduction Council		626	\N	2014-05-22	2014-05-23	16	0	0	0	
11388	Disaster Preparedness Seminar Workshop		Provincial Disaster Risk Reduction Council		626	\N	2011-04-13	2011-04-15	24	0	0	0	
11389	Orientation On Gender And Development (Gad) Basic Concepts And Issues		Ms. Rosanna P. Verdida/Popcom		626	\N	2016-05-27	2016-05-28	16	0	0	0	
11394	First Aid and Basic Life Support Training	Technical	PDRRMO - Bataan/ Philippine Red Cross - Bataan Chapter		1560	\N	2018-11-20	2018-11-23	32	0	0	0	Technical
11396	CBDRRM Trining of Trainer's Samal		PDRRMO		1562	\N	2018-07-20	2018-07-23	40	0	0	0	
11397	CBDRRM Training of Trainer's Orani		PDRRMO		1562	\N	2018-12-10	2018-12-14	40	0	0	0	
11399	RDANA		PDRRMO		1562	\N	2018-12-04	2018-12-07	32	0	0	0	
11400	Society of Broadcast Journalist				1563	\N	2003-04-07	2003-04-09		0	0	0	
11401	Bataan Press Insitute				1563	\N	2002-08-18	2002-08-19		0	0	0	
11405	CBDRM Training of Trainors		PDRRMO Bataan		1565	\N	2019-03-04	2019-03-08		0	0	0	
11409	Trauma Care: From Pre- Hospital to the Emergency Room		Philippine Society of General Surgeon Inc		1687	\N	2018-06-30	2018-06-30	8	0	0	0	
11410	Radio Communication Registration and Licensing (Restricted Land Mobile Radotelephone Operation for land mobile Services RLM Certificate)		Provincial Governemnt of Bataan and National Telecommunication		1687	\N	2017-08-10	2017-08-10	8	0	0	0	
11411	Rapid Responder		University of Perpetual Help Dalta Medical Center Department of Emergency Medicine		1687	\N	2017-08-05	2017-08-05	8	0	0	0	
11417	Advanced Cardio Vascular Life Support - ACLS Training Basic Life Support For Health Care Providers Course		FDM Training Center for Allied Health Prof		1687	\N	2016-02-16	2016-02-17	16	0	0	0	
11418	3-Day Collapse Stracture Searcg and Rescue Vehicular Extrication Rescue Training		Smart Guard/PDRRMO		1687	\N	2015-12-12	2015-12-15	8	0	0	0	
11419	Standing First Aid And Basic Life Support -  CPR Training for Professional Course		Philippine National Red Cross		1568	\N	2016-02-29	2016-03-04	40	0	0	0	
11420	3-Day Colllapse Stracture Search and Rescue Vehicular Extrication Rescue Training		Smart Guard PDRRMO		1568	\N	2015-12-12	2015-12-15	24	0	0	0	
11427	Trauma Care form pre Hospital to Emergency Room		Philippine College or Surgeons		1578	\N	2018-06-30	2018-07-01		0	0	0	
11428	Contigency Planning Training of Facilitator		OCDR3, RDRRMC 3		1578	\N	2017-02-01	2017-02-03		0	0	0	
11429	Pre Hospital Emergency Trauma Care 		Life Support Training International 		1578	\N	2016-10-04	2016-10-07		0	0	0	
11430	Provider in Basic Life Support		Life Support Training International		1578	\N	2016-09-26	2016-09-30		0	0	0	
11431	Emergency Medical Technician -  Basic Training		Life Support Training International		1578	\N	2016-08-15	2016-09-30		0	0	0	
11433	Philippine Congress in Information Technology 2015		University of the Philippines		25	\N	2005-09-01	2005-09-01	8	0	0	0	
11434	Latest Computer Hardware & Software		University of the Assumption		25	\N	2004-03-01	2004-03-31		0	0	0	
11435	National Service Training Program		University of the Assumption		25	\N	2003-03-29	2003-03-29	8	0	0	0	
11436	Personality Development Seminar		University of the Assumption		25	\N	2003-01-24	2003-01-24	8	0	0	0	
11437	Basic Occupational Safety and Healthy (BOSH)	Technical	Organized by Aylion -Delos Reyes Safety Management		2187	\N	2018-03-20	2018-03-23	40	0	0	0	Technical
11438	PD/CNA Development Guidelines Writeshop and Pre-Disaster Recovery Rehabilitation Framework and Review of Related Policies Workshop	Technical	OCD-Recovery & Rehabilitation Management Office		2187	\N	0001-01-01	0001-01-01		0	0	0	Technical
11447	Philippine Psychology in Challenging Times 31sto Annual PAPVA Convention		Physchological Association of the Philippines -Junior Affliators		1872	\N	2018-01-26	2018-01-27		0	0	0	
11448	Volunteerism Seminar		BPSU		1872	\N	2016-01-29	2016-01-29		0	0	0	
11449	Anti-Bullying and Cybercrime Seminar		BPSU		1872	\N	2015-09-20	2015-09-20		0	0	0	
11450	Contact Center NC II		TESDA		1876	\N	2016-04-01	2016-05-01	40	0	0	0	
11451	Events Management Services NCIII		TESDA		1876	\N	2018-04-02	2018-05-04	29	0	0	0	
11457	AA Handbook and Tactics to Costumer Engagement 	Managerial	Condura Durables Inc.		1870	\N	2015-11-26	2015-11-26	6	0	0	0	Managerial
11458	Asc Assistant Admin Training	Mangerial/Technical	Condura Durables Inc.		1870	\N	2015-10-09	2015-10-09	8	0	0	0	Mangerial/Technical
11459	Professional Empowerment Through Teamworks	Managerial	Junior Philippine Council of Management		1870	\N	2005-01-30	2015-01-30	3	0	0	0	Managerial
11461	The Amazing Power of Speed Within you	Managerial	Junior Philippine Council of Management		1870	\N	2014-01-30	2014-01-30	6	0	0	0	Managerial
11462	Shipboard Welding Course 		Seaman International Training Insitute		1914	\N	2016-12-12	2016-12-16		0	0	0	
11463	Profiency in Survival Craft and Rescue Boat 		Excellence of Competency Training Center Inc.		1914	\N	2015-01-05	2015-01-09	31.5	0	0	0	
11464	Basic Training 		Excellence and Competency Training Center Inc,		1914	\N	2015-01-12	2015-01-20	60	0	0	0	
11465	Seaparers with Designated Security Duties with Security Awareness Training		Philippine Ceter for Advanced Maritime Simulation and Training Inc		1914	\N	2013-07-30	2013-07-30	8	0	0	0	
11466	ISO9001:2015 Documentation Seminar		Municipality of Orani		2188	\N	2019-02-07	2019-02-07		0	0	0	
11467	ISO9001:2015 Awareness Seminar		Municipality of Orani		2188	\N	2019-02-27	2019-02-27		0	0	0	
11468	Mission Vison and Values Workshop for Performance Governance  System		ISA or Insitute of Solidarity in ASIA		2188	\N	2017-09-29	2017-09-30	16	0	0	0	
11469	Gender and Development Seminar and Training on Gender Assessment Tool		Department of Health		2188	\N	2017-06-20	2017-06-21	16	0	0	0	
11471	Dangeroues Drug Abuse Summit		Department of Health		2188	\N	2017-02-07	2017-02-08	16	0	0	0	
11472	Gender and Development Orientation and Planning		Department of Health		2188	\N	2017-01-23	2017-01-24	16	0	0	0	
11473	Refresher Course on Inbred Rice Seed Production and Certification		NSQCS-PhilRice		400	\N	2014-10-01	2014-10-03	24	0	0	0	
11474	The Study and Practices of Public Administration in Asia and the Rest of the World		Asian Association for Public Administration		400	\N	2014-02-06	2014-02-08	24	0	0	0	
11475	Local Disaster Risk Reduction and Managment Plan I(LDRRMP)Writeshop		Bataan - PDRRMC		400	\N	2014-01-16	2014-01-17	16	0	0	0	
11476	Enterpreneural and Business Management		Provincial Cooperative Development Office		400	\N	2013-10-09	2013-10-11	24	0	0	0	
11477	Investment and Banking Procedures		Provincial Cooperative  Development Office		400	\N	2013-09-13	2013-09-13	8	0	0	0	
11479	Compliance Seminar on Audit Managment		Bataan Cooperative Development Council		400	\N	2013-06-26	2013-06-28	24	0	0	0	
11481	Strengthen Awareness: Fight HIV, Saves Lives		BPSU -  Graduate School		400	\N	2012-06-09	2012-06-09	8	0	0	0	
11482	Strengthening Human Relations Towards Professional Maturity		Federation of Graduate School		400	\N	2012-05-11	2012-05-11	8	0	0	0	
11776	Seminar on Story Telling and Puppetry		Dyali Justo		554	\N	2014-06-07	2014-06-09	\N	0	0	0	
11483	Upgrading Quality Research Output:Continuing Challage to Graduate Education		GEACCUP - Region III		400	\N	2011-09-24	2011-09-24	8	0	0	0	
11484	National Academic Colloqium : Enchancing Global Comptetitiveness Through Academic Exellence in Philippine Higher Education		Ramon Magsaysay Technological University - Iba, Zambales		400	\N	2010-02-11	2010-02-12	16	0	0	0	
11485	Regional Annual Convention of the GEACCUP-Region III		GEACCUP - Region III		400	\N	2008-09-06	2008-09-06	8	0	0	0	
11486	Launching the National Basketball Training Center (NBTC) Developmental Leauge		NBTC DEvelopmental Leauge		400	\N	2008-08-23	2008-08-23	8	0	0	0	
11487	Thesis Writting Seminar: Learning the Craft, Building Knowledge, and Diffusing Outputs.		Bataan Peninsula State University-GS		400	\N	2008-08-12	2008-08-12	8	0	0	0	
11488	Conference-Workshop on the Issues and Concerns in the Implementation of CHED Special Study Grant Program for Congressional Districts		Commission on Higher Education		400	\N	2008-06-24	2008-06-24	8	0	0	0	
11489	Tier 1 Course : Grassroots Coaches Accreditation System		Philippine Sports Commission		400	\N	2006-03-29	2006-03-30	16	0	0	0	
11490	Legal Issues and Problems in Philippine Education		BPSU - Graduate School		400	\N	2007-11-10	2007-11-10	8	0	0	0	
11491	Trainor's Training Methodology Course		TESDA		400	\N	2006-03-14	2006-03-16	24	0	0	0	
11492	Current Good Manufacturing/ Hazard Analysis & Critical Control Points		Department of Trade & Industry/PhilRice		400	\N	2006-07-25	2006-07-27	24	0	0	0	
11493	Follow- up Workshop on Monitoring & Evaluation(M&E) System using PCM Model		DOLE Reg. III/JIC		400	\N	2005-07-18	2005-07-20	24	0	0	0	
11494	Strengthening the capability of the CEDTPC Staff and other project Stakeholders in Managing the poverty Free Zone Pilot Training Center in Morong		DOLE Reg. III/JIC 		400	\N	2005-02-14	2005-02-19	40	0	0	0	
11495	Paralegal Training on Anti-Trafficking in Persons-R.A. 9208		Trade Union Congress of the Phils.		400	\N	2004-09-20	2004-09-23	32	0	0	0	
11496	The Government Procurement Reform Act. R.A. 9184 and it's IRR		Department of Budget and Mgt.		400	\N	2004-07-07	2004-07-08	16	0	0	0	
11497	The Seven Habits of Highly Effective People		International Assocaition for Continuing Education & Training (IACET)		400	\N	2003-07-02	2003-07-04	24	0	0	0	
11498	Regional Peso Assesstment and Planning Workshop		Department of Labor and Employment		400	\N	2002-12-10	2002-12-11	16	0	0	0	
11499	Values Formation		City of Gov't Of Balanga		400	\N	2002-09-17	2002-09-17	8	0	0	0	
11500	Orientation on Child Labor		Trade Union Congress of the Phils.		400	\N	2002-07-10	2002-07-12	24	0	0	0	
11501	Core Labor Standards/Core of Conduct		Trade Union Congress of the Phils.		400	\N	2002-04-24	2002-04-26	24	0	0	0	
11502	Different Scholarship Program		Commission on Higher Education		400	\N	2001-03-12	2001-03-12	8	0	0	0	
11503	Cooperative Leadership Training		City Gov't of Balanga		400	\N	1999-01-14	1999-01-15	16	0	0	0	
11504	Effective Legislation		Department of Interior and Local Govt.		400	\N	1999-10-15	1999-10-18	24	0	0	0	
11505	Cooperative Financial Management & Credit		Cooperative Development Authority		400	\N	1999-03-30	1999-03-31	16	0	0	0	
11506	Short Term Seminar on Transportation Planning & Traffic Management		Up National Center for Transportation Studies		400	\N	1999-03-24	1999-03-26	24	0	0	0	
11507	Forum on Overweight and Obesity Awareness 		Provincial Nutrition Committee		390	\N	2015-07-24	2015-07-24	8	0	0	0	
11508	Mainstreaming Gender & Development Through GAD Issues Plan Budgeting (2015-2016)		Provincial Population Office		390	\N	2015-05-14	2015-05-15	16	0	0	0	
11509	Responsible Parenthood & Family Planning Act of 2012 (RA)		Provincial Health Office		390	\N	2015-04-03	2015-04-03	8	0	0	0	
11510	Administrative Order No. 2010-0010 on the Revised Policy on Micronutrient Supplementation		Provincial Health Office		390	\N	2015-02-11	2015-02-11	8	0	0	0	
11511	Provincial Nutrition Committe Seminar 		DOST		384	\N	2006-08-17	2019-08-18	16	0	0	0	
11512	Skills Training on Coco Based Products Dev.		PGO		384	\N	2006-09-06	2006-09-06	8	0	0	0	
11513	Leadership & Development Training 		PSWDO		384	\N	2008-05-29	2008-05-30	16	0	0	0	
11514	Seminar Workshop on Social Health Insurance		PSWDO/Philhealth		384	\N	2008-11-05	2008-11-06	16	0	0	0	
11515	Livehood Training Seminar on Novelty Items		Cong. Spouse Foundation Inc.		384	\N	2010-06-10	2010-06-10	8	0	0	0	
11516	Orientation on Administrative Order 17 & 18		PSWDO		384	\N	2010-02-11	2010-02-11	8	0	0	0	
11517	Complementary Feeding Seminar		PHO/ABSNET		384	\N	2011-06-28	2011-06-29	16	0	0	0	
11518	Play Therapy Seminar		ABSNET		384	\N	2011-06-28	2011-06-29	16	0	0	0	
11520	Distance Learning Program (R.A. 6713)		Civil Service Commission		406	\N	1999-12-15	1999-12-16	40	0	0	0	
11521	Distributor Program		Sugarland and Ommi		406	\N	1997-07-20	1997-07-20	8	0	0	0	
11522	Advanced Industrial Calibration Seminar : Module 2	Technical	Gryke Scientific Inst Trading		1390	\N	2017-04-20	2017-04-22	10	0	0	0	Technical
11523	Trainers Training	Technical	CID Masumi Phils Inc		1390	\N	2015-11-20	2015-11-20	4	0	0	0	Technical
11524	Basic Math		CID Mitsumi Phils Inc		1390	\N	2015-08-14	2015-08-14	4	0	0	0	
11525	Basic Etiquette and Workplace Manner	Technical	CID Mitsumi Phils Inc.		1390	\N	2015-11-23	2015-11-23	4	0	0	0	Technical
11526	BS MT Internship Training 		Bulacan Medical Center 		1397	\N	2015-04-20	2015-10-20	\N	0	0	0	
11527	PCPS Smear: Screening TDOI for Patrology		Our Lady Of Fatima University		1397	\N	2015-03-11	2018-03-06	\N	0	0	0	
11528	Generika Retail Operation Training 		Generika Drugstore 		1397	\N	2018-02-28	2018-03-06	\N	0	0	0	
11529	Skills Enchancement Workshop For Caregivers in the Residential Care		My Fathers House In Ministry		1418	\N	2010-07-16	2010-07-17	0	0	0	0	
11530	Mental HEalth		St. Jude Training Center		1430	\N	2018-11-23	2018-11-25	24	0	0	0	
11537	PICE 39th National Convention "Civil Engineering for a Sustainable Future"	Technical	Philippine Institute of Civil Service		328	\N	2013-11-07	2013-11-09	22	0	0	0	Technical
11538	PICE 38th National Convention"75Th Years of PICE; Great Milestone in the Civil Service Profession"	Technical	Philippine Institute of Civil Service		328	\N	2015-11-22	2015-11-24	22	0	0	0	Technical
11539	PICE 2012 National Midyear Convention "Members First"	Technical	Philippine Institute of Civil Service		328	\N	2015-05-31	2015-06-02	22	0	0	0	Technical
11540	PICE 37th National Convention PICE at the Crest for Competitiveness, Resilience & Transparency	Technical	Philippine Institute of Civil Service		328	\N	2011-11-17	2011-11-19	22	0	0	0	Technical
11541	PICE 2011 National Midyear Convention  "PICE R.P Memebers Knowledge, Responsibility, Prestige"	Technical	Philippine Institute of Civil Service		328	\N	2011-06-30	2011-07-02	22	0	0	0	Technical
13706	Expanded Senior Citizens Act of 2010- RA 9994	\N	PSWDO	\N	0	\N	2018-09-30	2018-09-30	8	0	0	0	 
11542	PICE 2010 National Convention "PICE Advocacy for Project Green Engineering Works"	Technical	Philippine Institute of Civil Service		328	\N	2010-06-10	2010-06-12	22	0	0	0	Technical
11543	Gender and Development  Training		POPCOM - Bataan		520	\N	2018-04-27	2018-04-29	\N	0	0	0	
11544	Population and Development		POPCOM -DOH		520	\N	2018-11-27	2018-11-29	\N	0	0	0	
11545	Central Luzon Performance Tracking FPZERO UNMET need Campaign		DOH-Region III		520	\N	2017-11-28	2017-11-29	\N	0	0	0	
11546	KATROPA Seminar		POPCOM- Central		520	\N	2018-09-26	2018-09-27	\N	0	0	0	
11548	PMC Refresher Course 		POPCOM- Region III		520	\N	2016-02-08	2016-02-10	\N	0	0	0	
11551	FLEPOWPHIL National Conference and Planning Workshop		POPCOM and FLEPOWPHIL		522	\N	2019-02-26	2019-02-28	\N	0	0	0	
11553	Refresher and Deepening Course on Basic Demography and Situational Analysis among Technical Staff of Central Luzon Population Office		POPCOM		522	\N	2018-11-07	2018-11-09	\N	0	0	0	
11554	VTE Awareness and Risk Assessment  Workshop		Philippine Heart Center		522	\N	2017-02-23	2017-02-23	\N	0	0	0	
11557	Training on Screening and Evaluation Drug Users		Municipal Health Office		522	\N	2016-10-27	2016-10-28	\N	0	0	0	
11558	2019 FLEPOWPHIL National Conference and Planning Workshop		Commission on Population FLEPOWPHIL		523	\N	2019-02-26	2019-02-28	\N	0	0	0	
11560	Magna Carta of Women		Provincial Population Office		523	\N	2018-04-27	2018-04-29	\N	0	0	0	
11561	National Coucil for the Protection of Children		LGU Seminar		523	\N	2018-09-19	2018-09-21	\N	0	0	0	
11562	Population Congress		Commission o Population		523	\N	2018-11-27	2018-11-28	\N	0	0	0	
11565	Training of Trainors on Gender Responsive Population Strategies (GRPOPS)		Commission on Population Region 3		523	\N	2017-11-15	2017-11-17	\N	0	0	0	
11566	Bahay-bahay Strategy Orientation for Health Service Providers of the  Local Level		Commission on Population Region 3		523	\N	2017-06-21	2017-06-22	\N	0	0	0	
11567	Orientation on GAD Basic  Concepts & Issues CUM Team Building for Population Staff		Provincial Government of Bataan                                            Provincial Population Office		523	\N	2016-05-06	2016-05-07	\N	0	0	0	
11568	Refresher Course on Pre-marriage Counseling for Pre-counselors of Bataan				523	\N	0001-01-01	0001-01-01	\N	0	0	0	
11569	Young Abort Fertility and Sexuality Study (YAFSS)Dissemination Forum		Commission on Population		523	\N	2014-08-09	2014-08-09	\N	0	0	0	
11578	Secretarial and StaffEnhancement Course 				518	\N	1999-06-28	1999-06-30	\N	0	0	0	
11579	FlewpowPhil National Conference and Planning Workshop 		Commission on Population and FlepowPhil		517	\N	2019-02-26	2019-02-28	\N	0	0	0	
11580	Population and Development Summit 		Department of Health 		517	\N	2018-11-27	2018-11-29	\N	0	0	0	
11581	Orientation on Local Council for the Protection of Children 		LCDC Municipality of Hermosa 		517	\N	2018-07-18	2018-07-20	\N	0	0	0	
11582	2nd Scientific Seminar with the Theme of Advancing Midwifery Services by Practicing Quality Maternal Care and Values 		Integrated Midwives Association of the Philippines- Bataan Chapter 		517	\N	2018-05-18	2018-05-18	\N	0	0	0	
11583	Central Luzon's Performance Tracking FP Zero Unmet Need Campaign 		Department of Health Region III		517	\N	2017-11-28	2017-11-29	\N	0	0	0	
11584	Training of Trainers on Gender Responsive Population Strategies (GRPOPS)		Commission on Population Region III		517	\N	2017-11-15	2017-11-17	\N	0	0	0	
11585	Bahay-Bahay Strategy Orientation for Health Service Providers at the Local Level		Commission on Population Region III		517	\N	2017-06-21	2017-06-22	\N	0	0	0	
11586	National Family Planning Conference 		Commission on Population Region III, Department of Health, The Forum for Family Planning and Development,Inc.		517	\N	2016-11-20	2016-11-22	\N	0	0	0	
11590	Training Workshop on People-Centered Brgy. Gender and Development Planning, Budgeting and Analysis for Brgy. Officials 		Commission on Population Region III, Central Luzon Association of Population Officers and Workers (CLAPOW)		517	\N	2015-06-17	2015-06-19	\N	0	0	0	
11591	Federation of the League of Population Officer and Workers of the Philippines National Conference 		FLEPOW PHIL		517	\N	2015-04-22	2015-04-24	\N	0	0	0	
11592	Young Adult Fertility and Sexuality Study (YAFSS4) Dissemination Forum 		Commission on Population Region III		517	\N	2014-08-04	2014-08-04	\N	0	0	0	
11593	National LEPOW PHIL Confernce 		League of the Population Officers and Workers of the Philipines 		517	\N	2013-02-20	2013-02-22	\N	0	0	0	
11594	FLEPOWPHIL National Conference and Planning Workshop 		POPCOM and FLEPOWPHIL		514	\N	2019-02-26	2019-02-28	\N	0	0	0	
11596	Program Review on MCPC (Pilar) 		LGU Pilar 		514	\N	2017-06-21	2017-06-22	\N	0	0	0	
11597	Central Luzon Performance Tracking FP Zero Unmet Need Campaign 		Department of Health Region III		514	\N	2017-11-28	2017-11-29	\N	0	0	0	
11598	Training the Trainors on Gender Responsive Population Strategies 		POPCOM Region III		514	\N	2017-11-15	2017-11-17	\N	0	0	0	
11600	Refresher Course on Pre-Marriage Counseling for PMC Counselor		POPCOM Region III		514	\N	2016-02-08	2016-02-10	\N	0	0	0	
11601	Training Workshop on People Centered and Brgy. GAD Planning and Budgeting 		POPCOM Region III		514	\N	2015-05-29	2015-05-31	\N	0	0	0	
11602	Modules and Learning Package on Parent Education 		POPCOM Region III		514	\N	2015-08-22	2015-08-23	\N	0	0	0	
11603	KATROPA Orientation		POPCOM Region III		514	\N	2015-11-05	2015-11-05	\N	0	0	0	
11604	Regional Population Development Summit 		POPCOM Region III		514	\N	2015-11-27	2015-11-27	\N	0	0	0	
11612	2019 Flepowphil National Congress and Planning Workshop		Flepowphil		526	\N	2019-02-26	2019-02-28	24	0	0	0	
11613	2019 Flepowphil National Conference 		POPCOM		525	\N	2019-02-26	2019-02-28	24	0	0	0	
11614	2018 Training on Parent Teen Trail Roll out 		POPCOM R3		525	\N	2018-06-19	2018-06-22	32	0	0	0	
11615	2017 Bahay Bahay Strategy Orientation for Health Service Providers 		POPCOM R3		525	\N	2017-06-21	2017-06-22	16	0	0	0	
11616	2016 National Family Planning Conference		POPCOM R3		525	\N	2016-11-20	2016-11-22	24	0	0	0	
12956	ISO 9001: 2015 Internal Quality Audit		PGO		2239	\N	2017-08-30	2017-08-30	8	0	0	0	
11617	2016 Refresher Course on PMC Course for PMC Counsellors		POPCOM R3		525	\N	2016-02-08	2016-02-10	24	0	0	0	
11618	GRP Orientation 		RPO 3		525	\N	2016-05-06	2016-05-07	16	0	0	0	
12146	PHALTRA 80th Annual Convention and Seminar Workshop		Philippine Association of Local Treasurers Assessors (PHALTRA), Inc		79	\N	2013-02-18	2013-02-22	\N	0	0	0	
12055	Nationwide Orientation / Workshop on the Enhance Comprehensive Local Integration Program (E-CLIP)		Department of the Interior and Local Government		561	\N	2018-09-03	2018-09-05	\N	0	0	0	
12056	National Early Learning Curriculum 		Provincial Social Welfare and Development Office 		561	\N	2017-07-12	2017-07-14	\N	0	0	0	
12057	Orientation on LCPC Functionality Assessment Child Friendly Local Governance Audit and Search for the Most Functional BCPC		Provincial Social Welfare and Development Office 		561	\N	2017-05-31	2017-05-31	\N	0	0	0	
12058	Seminar on Educhild 		Provincial Social Welfare and Development Office 		561	\N	2017-05-19	2017-05-20	\N	0	0	0	
12059	Training of Trainers on the Utilization of the National Early Learning Curriculum and Orientation of Standards and Guidelines		Early Childhood Care and Development Council		561	\N	2017-11-16	2017-11-18	\N	0	0	0	
12060	Mainstreaming Child's Right in the Development Seminar Workshop		Local Government Unit-Samal		561	\N	2016-09-14	2016-09-16	\N	0	0	0	
12061	Early Childhood Educators Congress: Quality Beyond Boundaries 		Bataan Child Empowerment Council		561	\N	2016-02-16	2016-02-18	\N	0	0	0	
12062	Seminar on Curriculum Planning for Day Care Children Ages 3-4 years old 		Provincial Social Welfare and Development Office 		561	\N	2015-06-18	2015-06-19	\N	0	0	0	
12085	Social Pension Program Review an Evaluation Program		DSWD Field Office III		562	\N	2012-11-26	2012-11-28	\N	0	0	0	
12086	Philippine Disaster Risk Reduction and Management Act of 2010		Office of Civil Defense Reg.III		562	\N	2010-12-13	2010-12-14	\N	0	0	0	
12087	Consultation of Resource Training with Partners on Child Rights and Protection 		PREDA Olongapo		562	\N	2009-12-08	2009-12-08	\N	0	0	0	
12088	Anti Red Tape Act of 2007		Civil Service Reg.III		562	\N	2019-05-15	2019-05-15	\N	0	0	0	
12089	Seminar on Rapid Need Assessment		Office of the Civil Defence Reg.III		562	\N	2009-05-12	2009-05-13	\N	0	0	0	
12090	PMES OPES Performance Management System 		Civil Service Reg.III		562	\N	2009-01-20	2009-01-22	\N	0	0	0	
12091	Seminar Workshop on Philhealth Training 		Philhealth and Government Office 		562	\N	2008-11-05	2008-11-06	\N	0	0	0	
12092	PCWDP's Orientation on Programs and Service for DAP		DSWD Reg.III		562	\N	2008-09-16	2008-09-16	\N	0	0	0	
12093	Local Government Forum on Civil Service Rules and Law		Civil Service Reg.IIII and Bataan 		562	\N	2005-10-27	2005-10-28	\N	0	0	0	
12094	Trainers Training Information Technology Literacy Program (SCALA) for OSY and Youth with Disabilities		SCALA and DSWD Central Office 		562	\N	2005-05-25	2005-05-29	\N	0	0	0	
12095	Integrated Computer Training on out of School Youth 		SCALA and DSWD Central Office 		562	\N	2004-06-11	2004-07-09	\N	0	0	0	
11705	Loss Control Management 	Safety Training	LABSPEAK Safety Management INC. And Provincial Government in Bataan		344	\N	2017-05-02	2017-05-05	40	0	0	0	Safety Training
11706	Communication Develpment Training (ORAL & Written)	Skills Training	Provincial Human ResourceManagement Office - Provincial Goverment Of Bataan		344	\N	2016-11-09	2016-11-10	16	0	0	0	Skills Training
11714	Philippine Institute of Civil Engineers, INC - 2013 National MidYear Convention	Professional Training	Philippine Institute of Civil Engineers' Inc		344	\N	2015-05-28	2015-05-30	24	0	0	0	Professional Training
11715	Procurement Training For PPMIU & BAC of LGU's	Technical	Department of Agriculture - Philippine Rural Development Project - RPCO 3		344	\N	2015-04-14	2015-04-15	16	0	0	0	Technical
11716	Land Transport Infrastracture Development 	Technical	TRU Event Us		344	\N	2014-11-19	2014-11-20	16	0	0	0	Technical
11717	Rapid Damage Assessment and Needs Analysis (RDNA) Training Course	Skills Training	Office of Civil Defense Region III, Regional Disaster Risk Reduction and Management Council III		344	\N	2014-11-11	2014-11-13	24	0	0	0	Skills Training
11718	Disaster Risk Reduction and Management Capacity Enchancement Project "Community- Based Disaster Risk Reduction and Management Training of Trainer"	Managerial	National Disaster Risk Reduction & Management Council OCD & Japan International Cooperation Agency		344	\N	2014-08-11	2014-08-15	40	0	0	0	Managerial
11720	Provincial Goverment Association of Department Heads (PROGADH) Local Study Tour	Technical	Provincial Government of Bataan		344	\N	2014-05-28	2014-05-31	32	0	0	0	Technical
11721	Provincial Disaster Risk Reduction and Management (DRRM) Summit For Local Chief Executives(LCE's)of Bataan	Managerial 	Office of Civil Defense Region III, Regional Disaster Risk Reduction and Management Council III		344	\N	2014-05-22	2014-05-23	16	0	0	0	Managerial 
11722	Orientation/Seminar on the Procedures for the Disbursement Transactions of the Provincial Government of Bataan	Technical	Provincial Government of Bataan		344	\N	2014-09-05	2014-09-05	8	0	0	0	Technical
11723	Iba na ang panahon: Science for Safer Communities	Technical	Department of Science and Technology, Department of the Interior and Local Government and Office of Civil Defense		344	\N	2014-03-03	2014-03-04	16	0	0	0	Technical
11724	Constigency Planning Formulation Workshop (CPFW)	Managerial	Office of Civil Defense Region III, Regional Disaster Risk Reduction and Management Council III & Bataan PDRRMC		344	\N	2014-02-19	2014-02-21	24	0	0	0	Managerial
11725	Local Disaster Risk Reduction and Management Plan (LDRRMP) Writeshop	Managerial	Office of Civil Defense Region III Regional Disaster Risk Reduction and Management Council III & Bataan PDRRMC		344	\N	2014-01-16	2014-01-17	16	0	0	0	Managerial
11765	Visual Art Workshop		Bataan Tourism Office 		554	\N	2019-02-26	2019-02-26	\N	0	0	0	
11766	NELC Seminar 		Provincial Social Welfare and Development Office 		554	\N	2017-12-07	2017-12-07	\N	0	0	0	
11767	Seminar on Educhild		Provincial Social Welfare and Development Office 		554	\N	2017-05-19	2017-05-19	\N	0	0	0	
11769	Seminar on Parental Abilities ( ERPAT ) 		Provincial Social Welfare and Development Office 		554	\N	2016-08-12	2016-08-12	\N	0	0	0	
11770	Seminar on Emplowerment 		Provincial Social Welfare and Development Office 		554	\N	2016-08-12	2016-08-12	\N	0	0	0	
11771	Responsible Parenthood 		LGU-Samal 		554	\N	2016-06-30	2016-06-30	\N	0	0	0	
11772	BCPC Seminar 		LGU-Samal 		554	\N	2016-11-18	2016-11-20	\N	0	0	0	
11773	Mainstreaming on Chils right Rights		LGU-Samal		554	\N	2016-10-20	2016-10-20	\N	0	0	0	
11774	ECEP Training		ECCD Council		554	\N	2015-05-10	2015-06-08	\N	0	0	0	
11775	New Accreditation Tools for DCW/DCC		Zenaida Sampang 		554	\N	2014-07-08	2014-07-11	\N	0	0	0	
11777	New Teaching Behavioral Methods thru Behavioral Approaches for Children 		Elizabeth Joson 		554	\N	2014-06-27	2014-06-29	\N	0	0	0	
13291	Charcoal Production and Briqueting		FDRDI/DOST		650	\N	2011-11-16	2011-11-17		0	0	0	
11778	Rural Impact Sourcing Workshop-Balanga	Foundation	Department of Info. and Communications Technology -Luzon Cluster II		81	\N	2017-11-28	2017-11-28	\N	0	0	0	Foundation
11779	Entity Level Greeenhouse Gas Emissions Inventory Workshop	Technical	Provincial Government Environment and Natural Resources Office-Bataan		81	\N	2018-04-03	2018-04-03	\N	0	0	0	Technical
11899	Procedures for the Disbursement Transaction of PGO 		Provincial Accounting Office 		556	\N	2015-03-09	2015-03-09	\N	0	0	0	
11900	Pagsasanay sa Korespondensiya Opisyal at Implementasyon ng Kautusan Tagapagpaganap Blg.335		Komisyon ng Wikang Filipino		556	\N	2015-09-29	2015-09-29	\N	0	0	0	
11902	Comprehensive Updating of List of Establishments and Data Dissemination Forum 		PG -ENRO		556	\N	2018-04-03	2018-04-03	\N	0	0	0	
11904	Forum on Child Pornography		DSWD Field Office III		556	\N	2017-05-31	2017-05-31	\N	0	0	0	
11907	Orientation / Seminar on Magna Carta of Women (R.A.9710)and Anti-Violence Against Women & Children (R.A.9262)		Provincial Government of Bataan / Population Commission		556	\N	2016-04-15	2016-04-15	\N	0	0	0	
11954	Gender Responsive Case Management Training 		Department of Social Welfare and Development Office 		559	\N	2016-08-28	2016-08-28	\N	0	0	0	
11955	Skills Enhancement on Case Management for LSWDO's Discerment Tool for CICL		Department on Social Welfare and Development Office 		559	\N	2016-06-15	2016-06-17	\N	0	0	0	
11956	Mainstreaming Child's Right in the Development Seminar / Workshop 		Local Government Unit Samal		559	\N	2016-09-14	2016-09-16	\N	0	0	0	
11957	Strengthening of GAD Focal Point System		Department of the Interior and Local Government		559	\N	2016-02-02	2016-02-04	\N	0	0	0	
11959	Basic Counseling 		Center for the Prevention and Treatment of Child Sexual Abuse, Inc.		559	\N	2018-08-29	2018-08-31	\N	0	0	0	
11960	Forum on Child Pornography 		Department of Social Welfare and Development Office 		559	\N	2018-08-10	2018-08-10	\N	0	0	0	
11961	Training on Good Practice Documentation 		Department of Social Welfare and Development Office 		559	\N	2018-08-01	2018-08-03	\N	0	0	0	
11962	Mentor's Workshop 		Humanitarian Legal Assisstance Foundation Inc. 		559	\N	2018-06-13	2018-06-15	\N	0	0	0	
11964	Substance Related and Addictive Disorders Recognition and Management 		Medical Masterial Medical Center / Bataan Medical Society		559	\N	2017-04-21	2017-04-21	\N	0	0	0	
11965	Skills Enchancement on Case Management for DSWDO's on Discernment Tools for CICL Focus on Diversion / Intervention Implementation Substance Related Addictive Disorder		MMA Training Services		559	\N	2017-06-14	2017-06-16	\N	0	0	0	
11966	Education Kontra Droga 		Wesleyan University 		559	\N	2016-10-08	2016-10-08	\N	0	0	0	
11967	Refresher Course on Pre Marriage Counseling 		Provincial Population Commission 		559	\N	2016-04-27	2016-04-29	\N	0	0	0	
11968	Basic Team Management Approach in Handling Child Abuse Cases		Bataan General Hospital		559	\N	2015-10-23	2015-10-23	\N	0	0	0	
11969	Seminar Workshop on Case Management 		Department on Social Welfare and Development Office 		559	\N	2017-10-09	2017-10-09	\N	0	0	0	
11970	Training on R.A.7610		Department of Justice 		559	\N	2017-10-10	2017-10-11	\N	0	0	0	
11971	Women's Rights		Department on Social Welfare and Development Office 		559	\N	2015-03-01	2015-03-01	\N	0	0	0	
11972	Promoting Healthy Minds in the Community 		Psychiatry Department Veterans Hospital		559	\N	2010-04-23	2010-04-23	\N	0	0	0	
12096	AutoCAD 2018- 2D, 3D, Color Rendering, Plotting	Technical	Microcadd SM City Pampanga		686	\N	2017-02-12	2018-10-02	\N	0	0	0	Technical
12098	Local Area Networking (LAN)		System & Planning Integrated Development Compay & IBM PHIL. Incorporatiion with Provincial Government of Bataan		69	\N	2003-09-01	2003-09-05	\N	0	0	0	
12099	Governance, Business Ethics, Rick Management & Internal Control		Philippine Institute of Certified Public Accountant		706	\N	2019-03-09	2019-03-09	8	0	0	0	
12154	Mainstreaming GAD Programs through Identifying GAD Issues, GAD Analysis and GAD Plan aand Budgeting		Provincial Government of Bataan; POPCOM		687	\N	2015-05-14	2015-05-15	\N	0	0	0	
12102	SPIDC Government Application Software, Real Property Tax Administration System (RPTAS), Microsoft Windows XP Operating System, IBM Personal Computer Operation, Basic Course: Local Area Networking (LAN)		Provincial Government of Bataan with Systems and Plan intergrator Development Company and IBM Philippines, Inc.		80	\N	2003-09-01	2003-09-05	\N	0	0	0	
12103	Geographical Informationn System		City Government of Balanga		82	\N	2014-09-02	2014-09-30	\N	0	0	0	
12105	Geographical Information System		Provincial Government of Bataan ; Maap		82	\N	2012-03-13	2012-03-16	\N	0	0	0	
12106	Real Property Tax Administration and Real Estate Service Act and ITS Implementing Rules and Regulation as part of the continuing Professional Program		AOF-BLGF Region III		82	\N	2010-10-06	2010-10-08	\N	0	0	0	
12107	Module 1- The Planning Evironment		NEDA		82	\N	2009-07-15	2009-07-17	\N	0	0	0	
12108	PMS-OPES		CSC Region III		82	\N	2009-01-20	2009-01-22	\N	0	0	0	
12110	Introduction  of GIS usinng Manfold		NAMRIA		82	\N	2007-01-22	2007-01-23	\N	0	0	0	
12111	4th Quarter Reg Conference and Planning Workshop for Provincial / City Treasurer and Assessor of Region III		BLGF-Region III		82	\N	2003-12-16	2003-12-17	\N	0	0	0	
12112	National Leadership Training  for Student Government Organization	Leadership	Mr. Joey G. Pelaez Executive Director, DepEd		704	\N	2011-11-04	2011-11-09		0	0	0	Leadership
12113	Basic First Aide Training Course		PDRRMC/MDRRMC		698	\N	2012-07-24	2012-07-25	\N	0	0	0	
12114	MIS Application, Adobe Photoshop and Internet		Integrated Microcomputer Educational Development  System		698	\N	2011-05-21	2011-06-25	\N	0	0	0	
12137	10th PAMAS National Conference Seminar		PAMAS, Inc.		79	\N	2018-07-25	2018-07-28	\N	0	0	0	
12139	Internal Control System for Property and Supply Management (Appraisal and Disposal)		Association of Government Internal Auditors, Inc.		79	\N	2015-07-20	2016-07-22	\N	0	0	0	
12141	Skills Developmment Training on SMV Updating and Conduct of General Revision		BLGF-Department of Finance		79	\N	2016-10-19	2016-10-23	\N	0	0	0	
12142	Training on Basic Course on Mass Appraisal #2		Bureau of Local Government Finance (Department of Finance)		79	\N	2014-10-06	2014-10-10	\N	0	0	0	
12143	3rd PHALTRA National Sharing of Best Practices on Treasury and Assessment Operations and Wellness Program		Philipiine Association of Local Treasurers Assessors (PHALTRA), Inc		79	\N	2014-09-22	2014-09-26	\N	0	0	0	
12145	Training on Philippine Valuation Standards (28 CPE Credit Units)		Bureau of Local Government Fianance		79	\N	0001-01-01	0001-01-01	\N	0	0	0	
12147	Special Conference		Bureau of Local Government Finance (Department of Finance)		79	\N	2012-02-08	0001-01-01	\N	0	0	0	
12152	Property Assessment and Tax Administration System User's Training and Distribution of Computer Hardwares		GEODATA Soulutions Inc.		687	\N	2015-11-09	2015-11-10	\N	0	0	0	
12155	Pagsasanay sa korespondesiya at implementasyon ng kautusang tagapagpaganap BLG. 35		Komisyon sa Wikang Pilipino		687	\N	2015-09-29	2015-09-29	\N	0	0	0	
12157	Bataan Provincial Hospital		Imelda Realce		73	\N	1993-01-10	1993-03-30	\N	0	0	0	
12159	SPIDC Government Application Software, Real Property Tax Administration System (RPTAS), Microsoft Windows XP Operating System, IBM Personal Computer Operation, Basic Course: Local Are Networking (LAN)		Provincial Government of Bataan with Systems & Plan Integrator Development Company and IBM Philippines, Inc.		76	\N	2003-09-01	2003-09-05	\N	0	0	0	
12161	2019 GAD Planning and Budgeting, GAD Analysis CUM Monitoring and Evaluation using HGDG	Administrative	Provincial Gender and Development Office		70	\N	2018-09-03	2018-09-05	\N	0	0	0	Administrative
12162	Regional Year-End Conference of Treasurers and Assessors	Administrative	Bureau of Local Government Finance Region III		70	\N	2018-12-04	2018-12-06	\N	0	0	0	Administrative
12780	Priorities, Progress and Promise of Rehabilitation and Recovery After Stroke		The Stroke Society Philippines		2218	\N	2018-08-04	2018-08-06		0	0	0	
12781	Incident Command System Executive Course		OCD Region III		2218	\N	2017-10-19	2017-10-19		0	0	0	
12782	Disaster Response Managment operation		OCD Region IV-A		2218	\N	2017-03-03	2017-03-04		0	0	0	
12783	Community Based Disaster Risk Reduction and Management Training of Trainors		PDRRMC- Bataan		2218	\N	2016-05-23	2016-05-27		0	0	0	
12784	Refresher Course on Pre-marriage Counselling		POPCOM-Bataan		2218	\N	2016-02-08	2016-02-10		0	0	0	
12785	Training on Xpert MTB/RIF Assay`		DOH Region III		2218	\N	2015-07-07	2015-07-09		0	0	0	
12786	Training on NTP Manual of Procedures 5th Edition		DOH Region III		2218	\N	2014-10-15	2014-10-17		0	0	0	
12815	NCR/ Luzon Wide Partners 		Social Housing Finance Corp (SHFC)		2093	\N	2016-01-26	2016-01-29	\N	0	0	0	
12816	Meeting With Program Partners		Social Housing Finance Corp(SHFC)		2093	\N	2016-02-29	2016-03-02	\N	0	0	0	
12854	Provider Initiated HIV Counseling & Testing		Department of Health		2226	\N	2018-06-20	2018-06-22	24	0	0	0	
12855	Basic Life Suppor for Health Care & Advanced Cardiovascular Support		Stars NKL		2226	\N	2018-08-25	2018-08-25	8	0	0	0	
12856	Off-Grid Renewable Energy: Driver's of Agricultural Value Chain Development		Global Green Growth Institute		2227	\N	2019-06-20	2019-06-20	5	0	0	0	
12857	ICM System Orientation and Planning Workshop		PG-ENRO/ PEMSEA		2227	\N	2019-03-21	2019-03-21	8	0	0	0	
12858	Mobile Continuos Ambient Air Quality Monitoring System On-Site Demo Training		BP Integrated Technologies Inc.		2227	\N	2018-11-22	2018-11-22	8	0	0	0	
12859	National Certificate II (Agricultural Crop Production)		D' Planners Training Center		2227	\N	2018-10-17	2018-12-17	302	0	0	0	
12861	Introduction to Microsoft Windows Server 2012		Mirosoft Riyadh, KSA		2228	\N	2013-05-10	2013-05-10	8	0	0	0	
12864	Leadership Training Seminar		Sumi Philippines Wiring Systems Corporation		2231	\N	2014-10-11	2014-10-11	8	0	0	0	
12865	Inegrated Management System ISO 19001:2011- Internal Auditors Training		TUV Nord Philippines Incorporated/ Sumi Philippines Wiring systems Corporation		2231	\N	2018-06-25	2018-06-27	14	0	0	0	
12866	Basic ISO Awareness in House Training ISO 19001:2015/ ISO 14001:2015/ OHSAS 18001		TUV Nord Philippines Incorporated/ Sumi Philippines Wiring Systens Corporation		2231	\N	2017-10-28	2017-11-15	24	0	0	0	
12868	Appreticeship Training		Sumi Philippines Wiring Systems Corporation (Recognized by technical Education and skills development Authority)		2231	\N	2011-10-09	2012-07-11	1200	0	0	0	
12871	Visual Basic 6.0 Programming Workshop		Bataan Peninsula State University- Orani Campus		2231	\N	2008-12-01	2008-12-01	8	0	0	0	
12872	Database Management/Seminar Workshop		Bataan Peninsula State University-Orani Campus		2231	\N	2008-12-01	2008-12-01	8	0	0	0	
12878	Regional Consultation Workshop on Enhancing the Philippine Social Protection Operational Framework and Development of  SP Plan 		Department of Social Welfare and Development 		558	\N	2018-09-24	2018-09-26	\N	0	0	0	
12879	Training of Trainers on Multi-Disciplinary Team Approach in the Management of Trafficked Victim 		Department of Social Welfare and Development Regional Office 3		558	\N	2017-10-14	2017-10-16	\N	0	0	0	
12961	Collapse Struture Search and Rescue and Vehicular Extrication Rescue Training		PDRRMO		2239	\N	2015-12-12	2015-12-14	24	0	0	0	
12881	Training of Trainors on Local Council for the Protection of Children 		Department of Social Welfare and Development Regional Office 3 		558	\N	2016-03-31	2016-06-03	\N	0	0	0	
12882	Community-Based Risk Reduction and Management 		Provincial Disaster Risk Reduction Management Council-Bataan 		558	\N	2016-03-23	2016-03-27	\N	0	0	0	
12883	Workshop on the National Early Learning Curriculum, New Standard for Child Development Center 		Department of Social Welfare and Development Regional Office 3 		558	\N	2016-03-16	2016-03-21	\N	0	0	0	
12884	Skills Enhancement on Case Management and Referral System for Non-Government Organization, Social Welfare Agency and Local Government Unit Social 		Department of Social Welfare and Development Regional Office 3 		558	\N	2015-12-01	2015-12-03	\N	0	0	0	
12885	Basic Team Management Approach in Handling Child Abuse Cases 		Department of Health Regional Office 3 and Bataan General Hospital 		558	\N	2015-10-23	2015-10-23	\N	0	0	0	
12886	Seminar-Workshop on Mainstreaming GAD Programs through identifying GAD Issues, GAD Analysis and GAD Plan and Budgeting 		Provincial Government of Bataan 		558	\N	2015-03-14	2015-03-15	\N	0	0	0	
12887	Supervisory Development Course (SDC Track III)		Civil Service Commission Regional Office 3		558	\N	2014-12-08	2014-12-10	\N	0	0	0	
12888	Training on Gender Sensitivity and on Women Empowerment and Equality Framework 		Department of Social Welfare and Development Regional Office 3		558	\N	1999-02-08	1999-02-12	\N	0	0	0	
12889	Disaster Risk Reduction and Management Capasity Enhancement Project"Community-Based Disaster Risk Reduction and Management Training of Trainers 		National Disaster Risk Reduction and Management Council and Office of Civil Defense and Japan International Cooperation 		558	\N	2014-08-11	2014-08-15	\N	0	0	0	
12890	Seminar Workshop on Story Telling for Children Ages 3-4 in the Day Care Centers 		Provincial Social Welfare and Development of Bataan 		558	\N	2014-07-11	2014-07-11	\N	0	0	0	
12891	Provincial Disaster Risk Reduction and Management Summit for Local Chief Executives of Bataan 		Office of Civil Defense Region 3 and Regional Disaster Risk Reduction and Management Council III 		558	\N	2014-03-22	2014-03-23	\N	0	0	0	
12892	Working Empowering Local Government Units on Gender and Development Gender Responsive Planning and Budgetting 		Department of Interior and Local Government Regional Office III-Central Luzon 		558	\N	2014-03-07	2014-03-09	\N	0	0	0	
12893	Seminar Workshop on Project Planning and Economy using the Project Management Cycle		Bataan Peninsula State University-Graduate School 		558	\N	2014-04-12	2014-04-13	\N	0	0	0	
12896	National Training of Trainers on the Use of Manual for the standard Training of Day Care Workers 		United Nations International Children Educational Fund 		558	\N	2013-08-04	2013-08-10	\N	0	0	0	
12897	Women Weathering Climate Change: Governance and Accountability, Everyone's Responsibility during the Social Welfare and Development Forum 		Department of Social Welfare and Development Regional Office 3		558	\N	2012-04-12	2012-04-12	\N	0	0	0	
12898	Joint Regional Forum on RA 9775-Anti Child Pornography and RA 9208 Anti -Trafficking in Persons 		Department of Social Welfare and Development Regional Office 3		558	\N	2011-03-10	2011-03-10	\N	0	0	0	
12899	Social Welfare and Development Forum on Standards of SWD Service Delivery for LGUs and Social Protection and Development Report 		Department of Social Welfare and Development Regional Office 3		558	\N	2011-07-05	2011-07-05	\N	0	0	0	
12900	Seminar-Workshop on the Role  of Local Council for the Protection of Children towards Child Friendly Society 		Provincial Government of Bataan 		558	\N	2006-07-26	2006-07-27	\N	0	0	0	
12901	Training-Workshop for the Trainers on Community - Based Monitoring System 		Provincial Government of Bataan 		558	\N	2006-04-06	2006-04-06	\N	0	0	0	
12902	Workshop on Mainstreaming Child 21 and ECCD Investment Planning 		Department of Social Welfare and Development Regional Office 3		558	\N	2006-03-22	2006-03-24	\N	0	0	0	
12903	Echo Workshop on the Implementation Review of Four Gifts for Children / Quality Checklist and other RSCWC / LIPD Concerns 		Department of Social Welfare and Development Regional Office 3		558	\N	2004-11-18	2004-11-19	\N	0	0	0	
12904	Gender Sensitive Case Management Training 		Department of Social Welfare and Development Regional Office 3		558	\N	2002-04-17	2002-04-19	\N	0	0	0	
12905	Skills Enhancement on Case Management 		Department of Social Welfare and Development Regional Office 3		558	\N	2001-12-04	2001-12-07	\N	0	0	0	
12906	Basic Training for CIDSS Implementation 		Department of Social Welfare and Development Regional Office 3		558	\N	2000-09-25	2000-09-29	\N	0	0	0	
12907	Values Formation Seminar 		Department of Social Welfare and Development Regional Office 3		558	\N	1999-03-23	1999-03-23	\N	0	0	0	
12908	Training of Trainers on CEFE Approach 		Department of Trade and Industry and Deutche Gesellschaft Fur Technische zusammenarbeit, Federal Republic of Germany 		558	\N	1996-11-11	1996-12-06	\N	0	0	0	
12909	CHED 2nd Generation GE Training- Purposive Communication		Baliuag University, Gil Carlos Street, Balwiag Bulacan		2233	\N	2017-05-08	2017-05-26	56	0	0	0	
12910	COMM-ED Sessions (Year 2): Sessions on Film Making, New Media and Education		Colegio De San Juan De Letran, Abucay, Bataan		2233	\N	2014-09-11	2014-09-11	8	0	0	0	
12911	A Height for Preparedness for SY 2013-2015		Limay Polytechnic College		2233	\N	2013-05-26	2013-05-30	32	0	0	0	
12912	On Becoming a Global Teacher		Bulacan State University		2233	\N	2013-02-08	2013-02-08	8	0	0	0	
12913	Seminar-Workshop on Test Constrution and Performance-Based Assessment		Mabalacat College		2233	\N	2011-09-21	2011-09-21	8	0	0	0	
12914	A teacher/ an Instructor: A Leader, A Planner, A Model, A Facilitator, A Catalyst, A Monitor, Anv Evaluator, An Implementer		Limay Polytechnic College		2233	\N	2011-08-08	2011-08-08	8	0	0	0	
12928	Instrumentation and Control Servicing Training		Electrotechnical Institute Inc.		2236	\N	2019-06-18	2019-07-18		0	0	0	
12929	Introduction to Process Control Instrumentation		Microcity Institute of instrumentation Technology		2236	\N	2016-03-01	2016-03-01		0	0	0	
12930	Security, Safety and Instrumentation		Balanga City, Bataan		2236	\N	2016-10-01	2016-10-01		0	0	0	
12932	Pharmacy Care Training of Adult Client with HIV Infection		DOH		2234	\N	2018-09-11	2018-09-14	32	0	0	0	
12934	Advancing Competencies of Pharmacists in Ensuring Mediation Management with Patient with Syndrome X & Microbial Infection		Rite Med		2234	\N	2018-08-22	2018-08-22	8	0	0	0	
12935	Transforming Process & Outcomes		Rite Med		2234	\N	2018-04-12	2018-04-12	8	0	0	0	
12958	Enhane TMAS Training		MISO		2239	\N	2017-08-10	2017-08-10	8	0	0	0	
12959	ISO 9001: 2015 Awareness		PGO		2239	\N	2017-07-27	2017-07-27	8	0	0	0	
12962	Weather 101 & Tropical Cyclone 101 		Weather Philippines		2239	\N	2015-11-01	2015-11-01	8	0	0	0	
12964	Accountability, Credibility & Ethicality		BPSU		2239	\N	2014-03-01	2014-03-01	8	0	0	0	
12968	1st Big EdukCircle International Convention on Business: Marketing and Advertising		International Center for Communication Studies		2239	\N	2012-09-01	2012-09-01	8	0	0	0	
12969	Wiwag Business Week		Bato Balani Foundation		2239	\N	2012-06-08	2012-06-12	40	0	0	0	
12970	Rapid Development Rescue (RADAR)		PDRRMO		2241	\N	2017-03-02	2017-03-02		0	0	0	
12971	Anti- Illegal Drug Operation		PDEA		2241	\N	2016-10-28	2016-10-28		0	0	0	
12972	Basic Wasar		x		2241	\N	2015-12-01	2015-12-01		0	0	0	
12973	First Aid, Lifting and Moving Bandaging with BLG				2241	\N	2015-02-14	2015-12-15		0	0	0	
12974	Executive Motorycle Riding Course		Camp Tolentino		2241	\N	2014-05-28	2014-06-17		0	0	0	
12975	Motorcycle Riding Orientation		Camp Tolentino		2241	\N	2014-05-28	2014-06-17		0	0	0	
12976	English Crash Course		Provincial Government of Bataan		2242	\N	2016-11-21	2016-12-12	23	0	0	0	
12977	Gender and Development		DOH-Treatment and Rehabilitation Center		2243	\N	2017-01-23	2017-01-24	16	0	0	0	
12982	305 (BAT) Community Defense Group Center 3RCDG Arescom		COL/INT Artemio S. Cabantog Group Commandre		2246	\N	2003-01-11	2003-02-10	210	0	0	0	
12993	Search Engine Conference, Digital Marketing Conference		Fierra de Manila, Inc.		2251	\N	0001-01-01	2013-01-01	40	0	0	0	
12994	Local Education Policy		Union of Local Authorities		2251	\N	0001-01-01	2013-01-01		0	0	0	
12995	Cloud Computing Conference		Chief information Officers DOST-ICT		2251	\N	0001-01-01	2013-01-01	8	0	0	0	
12996	7th IMMAP Summit Internet Mobile and Marketing		University of the Philippines		2251	\N	0001-01-01	2013-01-01		0	0	0	
12997	Bataan Mission Vision Workshop		Institute of Asia and Solidrity		2251	\N	0001-01-01	2013-01-01	20	0	0	0	
12998	Smarter Cities international Conference		University of the Philippines, Urban Planning		2251	\N	0001-01-01	2013-01-01	40	0	0	0	
12999	Nuclear Power Forum 2010		Center for Energy Sustainability and Economics		2251	\N	0001-01-01	2011-01-01	8	0	0	0	
13000	Seminar on Nuclear Power in the Philippines		National Institute of Geological Science, University of the Philippines		2251	\N	0001-01-01	2011-01-01	80	0	0	0	
13001	Global iConnect Summit		VFS Global		2252	\N	2017-06-27	2017-06-28	16	0	0	0	
13029	Celebration Of Coop Month Cooperative Assembly@Forum		Cooperative		615	\N	2013-11-20	2013-11-20	\N	0	0	0	
13030	6Th National Thripartite Conference For Cooperative Development		Cooperative		615	\N	2013-10-09	2013-10-11	\N	0	0	0	
13031	Regional Planning  For Forth Coming Nmyl Region Assembly @Election		Mnyl Region 3		615	\N	2013-10-15	2013-10-16	\N	0	0	0	
13032	5Th National Thripartite Conference For Cooperative Development		Cooperative		615	\N	2011-09-21	2011-09-23	\N	0	0	0	
13033	Engaging The Pbmlp Into The Main Streams Of National Policy		Pbmlp		615	\N	2011-06-23	2011-06-25	\N	0	0	0	
13034	Pbmlp Regional Convention Of Region 10		Pbmlp		615	\N	2011-03-31	2011-04-02	\N	0	0	0	
13035	Cooperative Transcend Through Invention The Challenge Of The Tune @Philippine Cooperative Teamshop		Cooperative		615	\N	2010-10-01	2010-10-02	\N	0	0	0	
13036	Nmyl Regional Assembly Election		Nmyl		615	\N	2010-08-30	2010-08-30	\N	0	0	0	
13047	Supervisory Deveopment Course Track Iii		Civil Service Commission		617	\N	2016-11-23	2016-11-25	\N	0	0	0	
13212	Tmg. And Policy Discussion on Regional Risk and Vulnerability Assessment Guidelines, Bangkok Thailand				270	\N	2016-07-19	2016-07-22	\N	0	0	0	
13213	 Australia Pacific Disaster & Emcy. Commo. Forum, Christchurch, NZ		Christchurch, New Zealand & CLARIDEN		270	\N	2017-06-24	2017-06-29	\N	0	0	0	
13214	7th Meeting of Asean Committee on Dis. Mgt. Technical Working Group (ACDM TWG) on Recovery, Lao PDR		Assoc. of Southeast Asia Nation		270	\N	2017-04-02	2017-04-04	\N	0	0	0	
13215	1st & 2nd Workshop for Urban Resilience in ASEAN, Lao PDR		Assoc. of Southeast Asia Nation		270	\N	2016-12-08	2016-12-09	\N	0	0	0	
13217	1st Ex. Planning Meeting for the ASEAN Regional Dis. Emcy. Rdsponse Simulation Exercise, Brunei Darussalam				270	\N	2016-05-02	2016-05-05	\N	0	0	0	
13218	10th Meeting of ACDM TWG on Preparedness & Response, Jakarta, Indonesia				270	\N	2016-03-23	2016-03-23	\N	0	0	0	
13219	3rd Meeting of ACDM TWG on Military Cooperation, Jakarta, Indonesia				270	\N	2016-03-24	2016-03-24	\N	0	0	0	
13221	Cyber Security Roadshow Safe and Secure Cyberspace for Juan and All		DOST & ICT Info. & Commo. Trans Office		270	\N	2016-02-19	2016-02-19	\N	0	0	0	
13222	Basic Exercise Design		USFS, OCD/ NDRRMC		270	\N	2015-04-27	2015-05-01	\N	0	0	0	
13223	Strategic Emcy. Logistics Training		World Food Program		270	\N	2015-03-09	2015-03-14	\N	0	0	0	
13225	Workshop on the Dev. Of Framework on Coordinated Assessment among Government		UNOCHA, OCD/ NDRRMC		270	\N	2015-03-03	2015-03-05	\N	0	0	0	
13226	Forum on Institutionalizing and Funding Risk Reduction and Mgt. at the Local Level		OCD, DILG, UNDOP		270	\N	2015-02-20	2015-02-20	\N	0	0	0	
13227	Tmg. Of Trainers on Post Disaster Needs Analysis		OCD/ NDRRMC		270	\N	2014-11-19	2014-11-22	\N	0	0	0	
13228	Orientation on Pre-Disaster Risk Assessment		OCD/ NDRRMC		270	\N	2014-11-18	2014-11-18	\N	0	0	0	
13229	7th ACDM TWG Preparedness & Response, Kuala Lumpur, Malaysia		ASEAN		270	\N	2014-10-01	2014-10-01	\N	0	0	0	
13230	Advanced Security Cooperation (ASC) 14-2 Course, Honolulu, Hawaii		Daniel K Inouye Asia Pacific Cooperation of Security Studies		270	\N	2014-04-10	2014-05-16	\N	0	0	0	
13285	Roll-out training on budget operations manual for LGU'S 2016 Edition, Manual on setting up and operation of local economic enterprises and and local government internal audit manual.		Department of Budget and Management Region III		650	\N	2017-03-27	2017-03-30		0	0	0	
13287	Engaging the PBLMP into the mainstream of National Policy-making thru Thematic Concerns		PBLMP-National		650	\N	2017-02-27	2017-03-01		0	0	0	
13288	Seminar works on the budget process and IRR of R.A. 9184		DBM-Region III		650	\N	2013-07-17	2013-07-19		0	0	0	
13289	SME Roving Academy Region III Launching  and Negosyo Seminar		DTI-Region III		650	\N	2013-06-16	2013-06-16	0	0	0	0	
13290	SME Roving Academy Go Negosyo goes to Bataan		DTI-Balanga		650	\N	2013-05-13	2013-05-24		0	0	0	
13292	Citizen's Conference for Zero Waste and Chemical Safety		SSNC		650	\N	2010-05-13	2010-05-13		0	0	0	
13293	Second Multi-partite Monitoring Team (MMT) National Convention		PNOC-AFC MMT/DENR Region III		650	\N	2009-04-30	2009-04-30		0	0	0	
13294	Barangay Civil Defense Defutized Coordinator		RDCC		650	\N	2008-08-21	2008-08-21		0	0	0	
13295	Assessment and Planning Workshop for the Expanded Piloting of Co-op made Program		CDA		650	\N	2008-11-17	2008-11-21		0	0	0	
13296	Seminar on R.A. 7610 and R.A. 9377, Local Development Planning Workshop for Children and Team Building		MCPC		650	\N	2008-10-02	2008-10-03		0	0	0	
13297	Formation and Strengthening of the Barangay Council for the Protection of Children		PREDA		650	\N	2007-02-19	2007-02-19		0	0	0	
13298	"Pinagkalooban…Pangkabuhayan" (Value Formation Livelihood Seminar		TESDA		650	\N	2007-08-25	2007-08-26		0	0	0	
13299	Validation of th ICT Organizational Models for Local Governments		British Embassy Manila Economic Governance Fund		650	\N	2007-02-21	2007-08-26		0	0	0	
13300	Orientation on Governance for Local Chief Executive		DAP-NALEGOCL		650	\N	2017-02-19	2017-02-21		0	0	0	
13301	Seminar-Workshop On Fiscal Reforms Towards Effective Local Governance				635	\N	2001-09-17	2001-09-19	24	0	0	0	
13302	The 10 Point Agenda And Effective Local Legislation Parallel Bridge Towards Building The Future				635	\N	2005-02-17	2005-02-19	24	0	0	0	
13303	Orientation Of The Basic Of Local Legislation				635	\N	2004-02-11	2004-02-11		0	0	0	
13312	Pbmlp Seminars-Engaging The Pblmp Into The Mainstream Of National Policy-Making Thru Thematic Concerns				611	\N	2019-01-22	2019-01-24	\N	0	0	0	
13666	ALIGNING PHARMACY PRATICE WITH CURRENT REGULATORY REFORMS	\N	THE PHILIPPINE SOCIETY OF HOSPITAL PHARMACIST	\N	0	\N	2018-02-24	2018-02-25	16	0	0	0	 
13413	19th  Philippines National Immunization The Changing Landscape of Immunization 	Technical	Philippine Foundation for Vaccination		201	\N	2018-11-15	2018-11-16	16	0	0	0	Technical
13414	Advancing Midwifery Service by Practicing Maternal Care and Values	Technical	Association of the Philippines		201	\N	2018-05-18	2018-05-18	8	0	0	0	Technical
13415	Caution Management Training	Technical	Depaertment of Health	7	201	\N	2018-06-20	2018-06-22	72	0	0	0	Technical
13416	Nutri Camp 2018	Technical	Intercrated Midwifer Association of the Philippines		201	\N	2018-02-23	2018-02-24	16	0	0	0	Technical
13417	Challenges in Midwifery Profession:Now and Beyond	Technical	Integrated Midwives Association of the Philppines		201	\N	2017-12-01	2017-12-01	8	0	0	0	Technical
13418	Nutri Camp 2016	Technical	Perpetual Assumtion of the Philippines		201	\N	2016-03-19	2016-03-19	8	0	0	0	Technical
13419	Regional Convention and Scientific Meetin	Technical	Philippine Assumption Government 		201	\N	2015-11-27	2015-11-27	8	0	0	0	Technical
13480	Study Mission Of Federalism		Institute Of Federalism, University Of Fribourg Switzerland		620	\N	2018-11-05	2018-11-09	40	0	0	0	
13481	League Of Vice Governors Of The Philippines 70Th National Assembly		Vice-Governor Antonio T. Albano, National President Lvgp		620	\N	2018-10-19	2018-10-21	24	0	0	0	
13482	14Th National Cooperative Summit		Mr. Garibaldi O. Leonardo,Dba, Philippine Cooperative Center		620	\N	2018-10-03	2018-10-05	24	0	0	0	
13483	2017 Peace And Orer Councils Performance Audit Process Orientation For Regional And Provincial Audit Teams		Regional Director Julie Daquioag/Region Iii		620	\N	2018-08-28	2018-08-29	16	0	0	0	
13485	Preventing And Countering Violent Exterminism		Dir. Rodolfo Gande Santos Jr./Napolcom Regional Office Iii		620	\N	2018-06-03	2018-06-03	8	0	0	0	
13486	All Hazard Incident Management Team Course On Incident Command System		Disaster Risk Reuction Management Council		620	\N	2018-01-22	2018-01-26	40	0	0	0	
13487	Awards And Recognition On The Initiative Of Lgu For Public-Private Partnership		Director Anna Liza F. Bongagua/Dilg Main Office		620	\N	2017-08-12	2017-08-13	16	0	0	0	
13488	Establishing An Effective Disaster Risk Reduction And Response Team Facility Nationwide		Onito A. / Llanos Iii /Philippine Board Member League Of The Philippines		620	\N	2017-11-14	2017-11-16	24	0	0	0	
13489	Integrating Diversity Towards Good Governace And Participation		Pres. Antonio T.Albano/ League Of The Vice Governors Of The Philippines		620	\N	2017-10-19	2017-10-21	42	0	0	0	
13497	Strategic Performance Management System (Spms) Re-Orientation Course		Mr. Edgardo C. Cruz/ Prov'Lgovt. Of Bataan		620	\N	2015-06-16	2015-06-16	5	0	0	0	
13498	5S Orientation		Ms. Nelin O. Cabahug/ Provl Govt. Of Bataan		620	\N	2015-02-25	2015-02-25	4	0	0	0	
13499	Roadmap To Financial Freedom		Mr. Rex A. Mendoza/Prov'L Govt. Of Bataan		620	\N	2014-11-14	2014-11-14	4	0	0	0	
13500	Phil College of Surgeon 73rd Annual Clinical Congress		Phil College of Surgeon		242	\N	2017-12-03	2017-12-08		0	0	0	
13501	Antimicrobial				242	\N	0001-01-01	0001-01-01		0	0	0	
13502	External Validation Workshop on LGU Scorecard		Provincial Health Office(Subic Bay Travellers Hotel, Olongapo City)		251	\N	2018-02-27	2018-02-28	24	0	0	0	
13504	Records Management Training for Level 1 Hospitals and Infirmaries in Region III		Department of Health 		251	\N	2017-04-26	2017-04-28	36	0	0	0	
13505	Participation in the Lecture on GAD Basic Concepts and Issues		Hon. Albert S. Garcia		251	\N	2016-06-10	2016-06-10	4	0	0	0	
13506	Preparation of New NSO Certification of Live Birth Form		Ledesma L. Morante		251	\N	2012-02-17	2012-02-17	4	0	0	0	
13507	Basic Computer Operation		Miguel V. Elma		251	\N	2005-02-06	2005-02-06	4	0	0	0	
13509	Primary Care Training o Adult Cloient with HIV infection		DOH		2254	\N	2018-09-11	2018-09-14	32	0	0	0	
13510	Optimum Health Outcomes through Medication and Safety 3		Unilab		2254	\N	2018-08-12	2018-08-12	8	0	0	0	
13511	Advancing Competencies of Pharmacist in Ensuring Medication Adherence 2		Rite Med		2254	\N	2018-08-22	2018-08-22	8	0	0	0	
13512	Medication Management with Patients with Syndrome X- Microbial Infection		Rite Med		2254	\N	2018-08-22	2018-08-22	8	0	0	0	
13513	Transforming process and outcomes		Rite Med		2254	\N	2018-04-12	2018-04-12	8	0	0	0	
13514	Role of Pharmacist in Disaster Preparedness and Response		Young Pharmacist Group Intl. 		2238	\N	2018-10-29	2018-10-30	16	0	0	0	
13515	Exceeding Expectations: Embracing Professional Excellence in Pharmacy		UP Pharmaceutical Association		2238	\N	2017-02-15	2017-02-15	8	0	0	0	
13516	Optimum Health Outcomes thorugh Medication safety 3		United Laboratories		2238	\N	2018-12-07	2018-12-07	8	0	0	0	
13517	Transforming Process and Outcomes		Ritemed		2238	\N	2018-12-09	2018-12-09	8	0	0	0	
13518	Primary Core Training for adult clients with HIV Infection		DOH Region III		2238	\N	2019-07-15	2019-07-18	32	0	0	0	
13519	Breastfeeding and Lactation Mnagement		Bataan General Hospital and Medical Center		2220	\N	2019-07-27	2019-07-28	16	0	0	0	
13520	Provide initial Counseling and Testing (PICT) (HIV counseling and Testing)		H20 Hotel, Manila		2220	\N	2018-05-29	2018-06-02	72	0	0	0	
13522	Back to Basic Workshop/Training		Philippine Assocation of Central Services and Sterilization Management		2225	\N	2019-04-13	2019-04-13	8	0	0	0	
13523	Mpower and Smoking Cessation, Brief Tobacco Interventions (BTI's Training)		Provincial Health Officer (Balanga City, Bataan)		2225	\N	2019-03-18	2019-03-19	16	0	0	0	
13524	Advance Cardiac Life Support and Basic Life Support		STARS NKL Review Services & Consultancy		2225	\N	2018-08-25	2018-08-26	16	0	0	0	
13525	Providers Inititated and Counselling and Testing		Philippine Business for Social Progr3ess and Department of Heath		2225	\N	2018-05-29	2018-06-02	32	0	0	0	
13527	intravenous Therapy Training		AUF Medical Center Angeles Pampanga		2225	\N	2011-11-25	2011-11-27	24	0	0	0	
13528	Orientation on Culture Sensitivity for Health workers	Managerial	DOH		2255	\N	2019-08-07	2019-08-09	24	0	0	0	Managerial
13529	Competency Skills Under Basic First Aid	Technical	Stars NKL Review Services and Consultancy		2256	\N	2018-08-25	2018-08-25	4	0	0	0	Technical
13531	NC II in Driving	Technical	TESDA		2256	\N	2018-07-29	2018-07-29	8	0	0	0	Technical
13532	Basic Life Support for Hospital Ambulance Drivers in Region 3	Technical	Department of Health		2256	\N	2017-08-12	2017-08-13	16	0	0	0	Technical
13536	2nd Regional Convention and Perinatal Association of the Philippines Chapter Caravan 		Perinatal Association of the Pgilippines Luzon Chapter		2257	\N	2019-07-20	2019-07-20		0	0	0	
13537	10th Mid-year Conference and International Day of Midwife		Integrated Midwives Association of the Philippines Inc.		2257	\N	2019-05-03	2019-05-03		0	0	0	
13538	Hepatitis B Orientation for Midwives and Hepos Filipino Midwives 2019 and Beyong Unfalteering		Central Luzon Center for Health Development		2257	\N	2019-05-23	2019-05-23		0	0	0	
13539	Engagement Stand and Deliver Advancing Midwifery Services by Practicing Quality Maternal Cares and Values		Philippine League of Government and Private Midwives Inc.		2257	\N	2019-03-04	2019-03-04		0	0	0	
13540	2nd Scientific Seminar Advancing Mid. Services by Practicing Q0uality Maternal Care and Values1		Integrated Midwives Association of the Philippines Inc. Region 3		2257	\N	2018-08-11	2018-08-11		0	0	0	
13592	Perinatal Association of the Philippines		Perinatal Association of the Philippines		2261	\N	2013-12-12	2013-12-12	8	0	0	0	
13593	Challenge in Midwifery Profession		Integarted Midwives Association of the Philippines		2261	\N	2017-12-01	2017-12-02	8	0	0	0	
13594	Nutri Camp 2017		PAP		2261	\N	0001-01-01	2019-12-11	8	0	0	0	
13595	Essential Intrapartum and Newborn Care		Johnson and Johnson		2261	\N	2017-08-26	2017-08-27	16	0	0	0	
13596	Advance Midwifery Service by Practicing Quality Maternal Care and Values		IMAP		2261	\N	2017-05-18	0001-01-01	8	0	0	0	
13597	Lactation Management		Department of Health		2261	\N	2017-10-11	2017-10-13	24	0	0	0	
13599	Chapter Caravan		PAP		2261	\N	2018-07-20	2018-07-20	8	0	0	0	
13600	Advancing Midwife Services: The role of Midwife in Disaster Responsive Contraception in teen age pregnancy		IMAP		2261	\N	2017-05-05	2017-05-05	8	0	0	0	
13601	Second Regional Convention of Perinatal Association of the Philippines Chapter Caravan		PAP		2261	\N	2019-07-20	2019-07-20	8	0	0	0	
13613	Team Dynamic (Megacode Simulation)		NKL Stars International Medical Training Institute		2262	\N	2017-09-01	2017-10-01		0	0	0	
13616	Basic and Advance Airway Management		NKL Stars International Medical Training Institute		2262	\N	2017-09-01	2017-10-01		0	0	0	
13618	Lactation and Management Training		Jose C. Payumo Jr. Memorial Hospital		2262	\N	2019-06-29	2019-06-30	18	0	0	0	
13619	Bridging the Gap in Management of Mother's infant and neonates		Phils. PAP Central Luzon		2262	\N	2019-07-20	0001-01-01	8	0	0	0	
13634	FINANCIAL LITERACY TRAINIGN FOR THE FARMERS OF BATAAN & NUEVA ECIJA	\N		\N	0	\N	2018-10-16	2018-10-17	16	0	0	0	technical
13635	FINANCIAL LITERACY TRAINING FOR THE FARMERS OF BATAAN & NUEVA ECIJA	\N		\N	0	\N	2018-10-16	2018-10-17		0	0	0	technical
13636	GENDER AND DEVELOPMENT SEMINAR (RA 76107 RA7677) CUM TEAM BUILDING	\N	PROVINCIAL COOPERATIVE AND ENTERPRISE DEVELOPMENT OFFICE	\N	0	\N	2018-06-08	2018-06-09	16	0	0	0	technical
13637	AGRIBUSINESS INVESTMENT FORUM FOR OVERSEAS FILIPINO WORKERS (OFWs)	\N	DEPARTMENT OF AGRICULTURE	\N	0	\N	2019-03-05	2019-03-07	24	0	0	0	technical
13638	Department od health stakeholders meeting	\N		\N	0	\N	2020-02-23	2020-02-23		0	0	0	General
13639	QUALITY IMPROVEMENT TRAIANING ON HEMATOLOGY	\N	PHILIPPINE ASSOCIATION OF MEDICAL TECHNOLOGIST, INC.	\N	0	\N	2018-03-09	2018-03-11		0	0	0	 
13640	National Hospital Summit	\N		\N	0	\N	2017-08-10	2017-08-12	24	0	0	0	 
13641	Department of Health Stakeholders Meeting	\N		\N	0	\N	2017-08-15	2017-08-15	8	0	0	0	 
13642	QUALITY IMPROVEMENT TRAINING WORKSHOP ON HEMATOLOGY	\N	PHILIPPINE ASSOCATION OF MEDICAL TECHNOLOGIST, INC	\N	0	\N	2018-03-09	2018-03-11		0	0	0	 
13643	Malaria Updates on MOP and treatment protocol	\N	Department of Health Region III	\N	0	\N	2017-08-01	2017-08-03	24	0	0	0	 
13644	53RD PAMET ANNUAL CONVENTION	\N	PHILIPPINE ASSOCATION OF MEDICAL TECHNOLOGIST, INC	\N	0	\N	2017-11-23	2017-11-23		0	0	0	 
13645	Health Leadership Seminar	\N	Department of Health Region III/ZFFA	\N	0	\N	2017-07-19	2017-07-19		0	0	0	 
13646	Provincial Leadership and Governance Program (PLGP) Corwe group workshop	\N	Department of Health Region III/ZFF	\N	0	\N	2017-07-11	2017-07-11	8	0	0	0	 
13647	Scorecard meeting	\N	Provincial Health Office	\N	0	\N	2017-07-07	2017-07-07	8	0	0	0	 
13648	Deaprtment of Health Stakeholders Meeting	\N	Department of Health Region III	\N	0	\N	2017-06-23	2017-06-23	9	0	0	0	 
13649	1SR CONTINUING PROFESSIONAL DEVELOPMENT SEMINAR FOR 2017	\N	PHILIPPINE ASSOCATION OF MEDICAL TECHNOLOGIST, INC	\N	0	\N	2017-07-09	2017-07-09		0	0	0	 
13650	Philhealth Reach Out	\N	Philhealth insurance company	\N	0	\N	2017-06-08	2017-06-08	8	0	0	0	 
13651	Strategic Initiatives Review	\N	Provincial Governor's Office	\N	0	\N	2017-05-17	2017-05-18	16	0	0	0	 
13652	Provincial Leadership and Governance Program (PLGP) Core Group Workshop (Module I)	\N	Department of Health Region III/ZFF	\N	0	\N	2017-05-09	2017-05-10	16	0	0	0	 
13653	Service Delivery Network Seminar	\N	Provincial Health Office	\N	0	\N	2017-03-22	2017-03-22	8	0	0	0	 
13654	Health Facility Enhancement Progress Meeting	\N	Department of Health Region III	\N	0	\N	2017-03-14	2017-03-14	8	0	0	0	 
13655	Seal of good governance conference	\N	Provincial Governor's Office	\N	0	\N	2017-03-27	2017-03-27	8	0	0	0	 
13656	Philhealth Seminar	\N	Philhealth	\N	0	\N	2017-01-31	2017-02-01	16	0	0	0	 
13657	Mege Drug Rehabilitation Orientation	\N	Department of Health Region III	\N	0	\N	2016-12-01	2016-12-13	8	0	0	0	 
13658	ISO Orientation	\N	Provincial Governor's Office	\N	0	\N	2016-11-21	2016-12-01	8	0	0	0	 
13659	PGS Scorecard Meeting	\N	Provincial Governor's Office	\N	0	\N	2016-11-18	2016-11-21	8	0	0	0	 
13660	CATEGORY A PERSONNEL NEWBORN SCREENING CERTIFYING COURSE	\N	NATIONAL NEWBORN HEARING	\N	0	\N	2018-12-16	2018-12-16	8	0	0	0	
13661	PHA Annual Convention	\N	Philippine Hospital Association	\N	0	\N	2016-11-09	2019-11-16	24	0	0	0	 
13662	BASIC LIFE SUPPORT.	\N	STARS NKL REVIEW SERVICES AND CONSULTANCY	\N	0	\N	2018-12-07	2018-12-07	8	0	0	0	 
13663	PROVIDED INITIATED COUNSELING AND TESTING FOR DOTS FACILITIES	\N	PHILIPPINE BUSINESS FOR SOCIAL PROGRESS	\N	0	\N	2018-05-15	2018-05-19	40	0	0	0	 
13664	CLINICAL PHARMACY AND ANTI-MICROBIAL STEWARDSHIP STRATEGIES	\N	THE PHILIPPINE SOCIETY OF HOSPITAL PHARMACIST	\N	0	\N	2018-08-25	2018-08-25	8	0	0	0	 
13665	ORIENTATION ON THE ELECTRONIC DRUG PRICE MONITORING 	\N	DOH SAN FERNANDO	\N	0	\N	2019-07-19	2019-07-19	8	0	0	0	 
13765	CLIMATE SMART LIVESTOCK PRODUCTION	\N	AGRICULTURAL TRAINING INSTITUTE	\N	0	\N	2015-06-16	2015-06-18	24	0	0	0	technical
13667	SYNERGY OF CHARACTER AND COMPETENCE AVIDING ESCOLARIAN PHARMACIST	\N	CENTRO ESCOLAR UNIVERSITY	\N	0	\N	2016-10-15	2016-10-15	8	0	0	0	 
13668	ORIENTATION/SEMINAR ON THE ELECTRONIC DRUG PRICE MONITORING V. 3.2	\N	DOH SAN FERNANDO	\N	0	\N	2016-09-14	2016-09-14	8	0	0	0	 
13669	EASING THE BURDEN OF DISEASE-OPTIMIZING PHARMACIST CONTRIBUTION IN THE HEALTCARE SYSTEM	\N	TIME PHILIPPINE PHARMACIST ASSOCIATION	\N	0	\N	2016-08-13	2016-08-13	8	0	0	0	 
13670	FDA LICENSING SEMINAR FOR DRUGSTORE	\N	DOH NSAN FERNANDO	\N	0	\N	2016-06-17	2016-06-17	8	0	0	0	 
13671	PHARMACY PRACTICE STANDARDS; BASED ON SCIENCE DRIVEN BY EVIDENCE	\N	THE PHILIPPINE ASSOCIATION	\N	0	\N	2016-04-22	2016-04-22	24	0	0	0	 
13672	Optimum Health Outcomes Through Medication and Safety	\N	Unimed	\N	0	\N	2016-09-20	2016-09-20	5	0	0	0	 
13673	6th Pharmacist Forum Leadership Skills Workshop Therapeutic Commitee and Formulary Management	\N	Philippine society of hospital pharmacist	\N	0	\N	2016-09-25	2016-09-25		0	0	0	 
13674	Advance safety medication practice-future of hospital practice	\N	Philippine Society of Hospital Pharmacists	\N	0	\N	2015-02-27	2015-02-27		0	0	0	 
13675	ADVANCED CARDIAC LIFE SUPPORT.	\N	AMERICAN SAFETY & HEALTY INSTITUTE	\N	0	\N	2018-12-07	2018-12-08	12	0	0	0	 
13676	SEMINAR ON FOOD SAFETY	\N	DEPARTMENT OF HEALTH	\N	0	\N	2018-10-16	2018-10-16	16	0	0	0	 
13677	Regional Covention (Core Values)	\N	Integrated Midwifery Association of the Philippines	\N	0	\N	2016-11-30	2016-11-30	8	0	0	0	 
13678	Midwifery Week Celebration 39th Annual Convetion	\N	Intergrated Midwife Association of the Philippines	\N	0	\N	2013-01-10	2013-01-10	8	0	0	0	 
13679	Midwifery Week Celebration 39th Annual Convetioon	\N	Integrated Midwife Association of the Philippines	\N	0	\N	2013-11-10	2013-11-10		0	0	0	 
13680	Essential Intrapartum and newborn care orientation	\N	Department of Health	\N	0	\N	2011-07-04	2011-07-04	8	0	0	0	 
13681	ASHI BASIC LIFE SUPPORT (BLS)	\N	AMERICAN SAFETY & HEALTH INSTITUTE	\N	0	\N	2019-02-25	2019-02-25	5	0	0	0	
13682	EMERGENCY OXYGEN ADMINISTRATION.	\N	AMERICAN SAFTEY & HEALTH INSTITUTE	\N	0	\N	2019-02-25	2019-02-25		0	0	0	 
13683	ENDOTRACHEAL INTUBATION	\N	LINE HART LEARNING INSTITUTE	\N	0	\N	2019-02-25	2019-02-26	1	0	0	0	 
13684	ELECTRICAL THERAPY AND AED OPERATION.	\N	LINE HEART LEARNING INSTITUTE	\N	0	\N	2019-02-25	2019-02-26	1	0	0	0	 
13685	ADVANCED AIRWAY MANAGEMENT 	\N	LINE HEART AND LEARNING INSTITUTE	\N	0	\N	2019-02-25	2019-02-26	1	0	0	0	 
13686	BASIC CARDIAC RHYTHM RECOGNITION	\N	LINE HEART LEARNING INSTITUTE	\N	0	\N	2019-02-25	2019-02-26	1	0	0	0	 
13687	EMERGENCY CARDIOVASCULAR MEDICATIONS	\N	LINE HEART LEARNMING INSTITUTE 	\N	0	\N	2019-02-25	2019-02-26	1	0	0	0	 
13688	ASHI ACLS - ADVANCED CARDIAC LIFE SUPPORT	\N	AMERICAN SAFTEY & HEALTH INSTITUTE	\N	0	\N	2019-02-26	2019-02-26	16	0	0	0	 
13689	PERINATAL ASSOCIATION OF THE PHILIPPINES CHAPTER CARAVAN	\N	PERINATAL ASSOCIATION OF THE PHILIPPINES INC	\N	0	\N	2017-12-12	2017-12-12	8	0	0	0	 
13690	Updates of implementation of newly approved laws and bills for the integrated growth and development of the agricultural and biosystems engineering	\N		\N	0	\N	2016-09-08	2016-09-08	5	0	0	0	 
13691	Profession in the Phliippines	\N	BPSU	\N	0	\N	2016-09-08	2016-09-08	4	0	0	0	 
13692	Profession in the Philippines: Implementation of Provincial Ordinance on poultry and piggery project	\N	BPSU	\N	0	\N	2016-09-08	2016-09-08	4	0	0	0	 
13693	BLS CARE FOR ADULT INFANT AND CHILD	\N	STARS NKL REVIEW SERVICES AND CONSULTANCY	\N	0	\N	2018-12-07	2018-12-07	16	0	0	0	 
13694	AUTOMATED EXTERNAL DEFIBRILLATION OPERATION	\N	STARS NKL REVIEW SERVICES AND CONSULTANCY	\N	0	\N	2018-12-07	2018-12-07	16	0	0	0	 
13695	BLS TEAM APPROACH WORKSHOP	\N	STARS NKL REVIEW SERVICES AND CONSULTANCY	\N	0	\N	2018-12-07	2018-12-07	16	0	0	0	 
13696	FOREIGN AIRWAY OBSTRUCTION MANAGEMENT 	\N	STARS NKL REVIEW SERVICES AND CONSULTANCY	\N	0	\N	2018-12-07	2018-12-07	16	0	0	0	 
13697	BASIC AND ADVANCED AIRWAY MANAGEMENT 	\N	STARS NKL REVIEW SERVICES AND CONSULTANCY	\N	0	\N	2018-12-07	2018-12-07	16	0	0	0	 
13698	CARDIOPHARMACOLOGY	\N	STARS NKL REVIEW SERVICES AND CONSULTANCY	\N	0	\N	2018-12-07	2018-12-07	16	0	0	0	 
13699	DYSRHYTMIA RECOGNITION	\N	STARS NKL REVIEW SERVICES AND CONSULTANCY	\N	0	\N	2018-12-07	2018-12-07	16	0	0	0	 
13700	ELECTRICAL THERAPY	\N	STARS NKL REVIEW SERVICES AND CONSULTANCY	\N	0	\N	2018-12-07	2018-12-07	16	0	0	0	 
13701	TEAM DYNAMICS	\N	STARS NKL REVIEW SERVICES AND CONSULTANCY	\N	0	\N	2018-12-07	2018-12-07	16	0	0	0	 
13702	Training on Health and Wellness for Senior Citizens	\N		\N	0	\N	2014-05-05	2014-05-07	24	0	0	0	 
13703	Team Enhancement	\N		\N	0	\N	2017-07-29	2017-07-29	8	0	0	0	 
13704	Good Governance and Management	\N	PSWDO	\N	0	\N	2017-06-29	2017-06-29	8	0	0	0	 
13705	Expanded Senior citiznes Act of 2010- RA 9994	\N	PSWDO	\N	0	\N	2018-09-30	2017-09-30	8	0	0	0	 
13709	Fundamentals of Cooperative	\N	Cooperative Development Authority	\N	0	\N	2018-11-08	2018-11-08	8	0	0	0	 
13710	CONSULTATIVE MEETING ON MEASLES CASES	\N	PROVINCIAL HEALTH OFFICE - BATAAN	\N	0	\N	2019-02-15	2019-02-15		0	0	0	 
13711	PROVIDER INITIATED COUNSELING AND TESTING FOR DOTS FACULTIES	\N	PHILIPPINE BUSINESS FOR SOCIAL PROGRESS	\N	0	\N	2018-05-15	2018-05-19		0	0	0	 
13712	SERVICE DELIVERY NETWORK CONSULTATIVE MEETING	\N	PROVINCIAL HEALTH OFFICE - BATAAN	\N	0	\N	2018-03-22	2018-03-22		0	0	0	 
13713	LGU SCORECARD VALIDATION 	\N	PROVINCIAL HEALTH OFFICE - BATAAN	\N	0	\N	2017-07-07	2017-07-07		0	0	0	 
13714	ICD-10 CODE TRAINING COURSE FOR MEDICAL RECORDS OFFICER OF LGU HOSPITAL	\N	DEPARTMENT OF HEALTH REGION III	\N	0	\N	2015-11-16	2015-11-20		0	0	0	 
13715	Priorities Progress and Promise of Rehabilitation and Recovery After Stroke (17th Annual Stroke Society of the Philippines Convention)	\N	Stroke society of the Phliippines	\N	0	\N	2016-08-04	2016-08-06	24	0	0	0	 
13716	Basic Emergency Obstetric and New Born Care 	\N	Department of Health	\N	0	\N	2012-07-01	2012-07-10	72	0	0	0	 
13717	DOTS Training for referring care providers	\N	Phil. Cat	\N	0	\N	2011-05-24	2020-02-23	4	0	0	0	 
13718	3RD CONTINUING PROFESSIONAL DEVELOPMENT (cpd) SEMINAR 2018	\N	PHILIPPINE ASSOCIATION OF MEDICAL TECHNOLOGIST	\N	0	\N	2018-09-18	2018-09-18	6	0	0	0	 
13719	MOLECULAR MECHANISMS AND DIAGNOSIS OF ANTI BIOTIC RESISTANCE IN CLINICAL PATHOGENS AND IMMUNODIAGNOSTICS CURRENT TRENDS AND APPLICATIONS	\N	ANGELES UNIVERSITY FOUNDATION	\N	0	\N	2019-02-16	2019-02-16	8	0	0	0	 
13720	PROFIENCY TRAINING ON HIV AND OTHER BLOOD-BORNE STI's (HEPATITIS B/C AND SYPHILLS) RAPID/IMMUNOCHROMATOGRAPHY TESTING	\N	DEPARTMENT OF HEALTH 	\N	0	\N	2018-07-23	2018-07-27	45	0	0	0	 
13721	RAISING THE GOLD STANDARD FOR WORLD CLASS MEDICAL TECHNOLOGIST	\N	PHILIPPINE ASSOCIATION OF MEDICAL TECHNOLOGIST	\N	0	\N	2017-11-23	2017-11-23	9	0	0	0	 
13722	ALIGNING PHARMACY PRATICES WITH CURRENT REGULATORY SYSTEM	\N	THE PHILIPPINE PHARMACIST ASSOCIATION	\N	0	\N	2017-08-12	2017-08-12	8	0	0	0	 
13723	OPTIMUM HEALTH OUTCOMES THROUGH MEDICATION SAFETY I	\N	UNILAB MEDICAL EDUCATION AND DEVELOPMENT	\N	0	\N	2016-09-29	2016-09-29	8	0	0	0	 
13724	ACCESS TO PHARMACISTS ACCESS TO BETTER HEALTH	\N	THE PHILIPPINE PHARMACISTS ASSOCIATION	\N	0	\N	2014-08-16	2014-08-16	8	0	0	0	 
13725	OPTIMUM OUTCOMES THROUGH MEDICATION SAFETY III	\N		\N	0	\N	2018-02-27	2018-02-27		0	0	0	 
13726	TRANSFORMING PROCESSES AND OUTCOMES	\N		\N	0	\N	2018-02-12	2018-02-12		0	0	0	 
13727	PHARMACY PRACTICE	\N		\N	0	\N	2017-02-24	2017-02-24		0	0	0	 
13728	THE FILIPINO PHARMACISTS FOR THE PEOPLE: ENSURING BETTER HEALT CARE, MEDICINES AND SERVICES	\N		\N	0	\N	2015-08-08	2015-08-08		0	0	0	 
13729	TRAINING WORKSHOP ON BASIC VIROLOGIC TECHNIQUES	\N	RITM	\N	0	\N	2018-01-01	2018-01-01		0	0	0	 
13730	BEST PRACTICES IN PHERIPERAL BLOODSMEAR AND BONE NARROW STAINING AND MICROSCOPY AND SPIRITUAL NOURISHMENT AND PROFESIIONALISM IN ACCORDANCE WITH TRUE HUMANITARIUM	\N	PAMET	\N	0	\N	2017-01-01	2017-01-01		0	0	0	 
13731	THE POSTANALYTIC PHASE OF URINALYSIS: THE INTERPRETATION THE CORRELATION AND THE REPORT	\N	PAMET	\N	0	\N	2018-01-01	2018-01-01		0	0	0	 
13732	QUALITY IMPROVEMENT IN SEDIMENTS EXAMINATION OF URINE LABORATORY CORRELATION IN THE DIAGNOSIS OF KIDNEY DISEASE STANDARDIZATION OF URINALYSIS	\N	PMET	\N	0	\N	2017-01-01	2017-01-01		0	0	0	 
13733	BENCH TRAINING ON ESSENTIAL OF PHLEBOTOMY FOR MEDICAL TECHNOLOGIES WITH LABORATORY SAFETY	\N	PSMS	\N	0	\N	2017-01-01	2017-01-01		0	0	0	 
13734	53RD PAMET ANNUAL CONVENTION.	\N	PAMET NATIONAL	\N	0	\N	2018-10-18	2018-10-20	24	0	0	0	 
13735	TOTAL QUALITY MANAGEMENT	\N	PHILIPPINE BLOOD COORDINATING COUNCIL	\N	0	\N	2018-10-18	2018-10-20	24	0	0	0	 
13736	NURSING ETHICS IN EDUCATION, PRATICE AND RESEARCH 	\N	BATAAN PENINSULA STATE UNIVERSITY - GRADUATE SCHOOL	\N	0	\N	2017-07-22	2017-07-22	8	0	0	0	 
13737	AVIAN INFLUEZA (AI) SIMULATION EXERCISES AND AI RISK COMMUNICATION  TRAINING WORKSHOP FOR LUZON 	\N	BUREAU OF ANIMAL INDUSTRY	\N	0	\N	2018-08-07	2018-08-09	24	0	0	0	 
13738	TRAINING ON POULTRY DISEASE DIAGNOSTICS AND STRAY DOG MANAGEMENT	\N	CENTRAL LUZON STATE UNIVERSITY	\N	0	\N	2018-07-30	2018-07-31	16	0	0	0	 
13739	REINFORCING PARTNERSHIPS WITH LOCAL GOVERNMENT UNIT PARTNERS OF CARABAO-BASED ENTERPRISING COMMUNITIES FOR SUSTAINABLE CARABAO INDUSTRY IN REGION 3	\N	CENTRAL LUZON STATE UNIVERSITY	\N	0	\N	2018-07-19	2018-07-02	16	0	0	0	 
13740	REINFORCING PARTNERSHIPS WITH LOCAL GOVERNMENT UNIT PARTNERS OF CARABAO-BASED ENTERPRISING COMMUNITIES FOR SUSTAINABLE CARABAO INDUSTRY IN REGION III	\N	CENTRAL LUZON STATE UNIVERSITY	\N	0	\N	2018-07-19	2018-07-20	16	0	0	0	 
13741	SOCIAL ENTERPRENEURSHIP AND GLOBAL VALUE CHAIN	\N	UNIVERSITY OF ASIA AND THE PACIIC CENTER FOR FOOD AND AGRI BUSINESS	\N	0	\N	2018-07-13	2018-07-14	16	0	0	0	 
13742	3RD BATAAN AEW CONGRESS 2018	\N	DEPARTMENT OF AGRICULTURE REGIONAL FIELD OFFICE III	\N	0	\N	2018-07-06	2018-07-06	8	0	0	0	 
13743	PROVINCIAL, CITY AND MUNICIPAL VETERINARIAN'S LEAGUE OF THE PHILIPPINES 16TH ANNUAL CONVENTION AND SCIENTIFIC CONFERENCE	\N	PROVINCIAL CITY AND MUNICIPAL VETERIANARIANS LEAGUE OF THE PHILIPPINES 	\N	0	\N	2018-05-18	2018-05-18	8	0	0	0	SUPERVISORY
13744	85TH PVMA SCIENTIFIC CONFERENCE & ANNUAL CONVENTION	\N	PHILIPPINE VETERINARY MEDICAL ASSOCIATION	\N	0	\N	2014-02-14	2014-02-26	24	0	0	0	SUPERVISORY
13745	6TH NATIONAL GOAT AND SHEEP CONGRESS	\N		\N	0	\N	2017-07-23	2017-07-23	8	0	0	0	SUPERVISORY
13746	2ND BATAAN AEW CONGRESS 2017	\N	DEPARTMENT OF AGRICULTURE REGIONAL FIELD OFFICE III	\N	0	\N	2017-07-25	2017-07-26	8	0	0	0	Tehcnical 
13747	RETOOLING OF RABIES VACCINATORS IN BATAAN	\N	BUREAU OF ANIMAL INDUSTRY	\N	0	\N	2017-05-25	2017-05-26	16	0	0	0	Tehcnical 
13748	83RD PVMA SCIENTIFIC CONFERENCE & ANNUAL CONVENTION	\N	PHILIPPINE VETERINARY MEDICAL ASSOCIATION	\N	0	\N	2016-02-17	2016-02-19	24	0	0	0	SUPERVISORY
13749	WHAT'S UP AND NEW IN PHILIPPINE MINING	\N	DENR MINES & GEOSCIENCE BUREAU REGIONAL FIELD OFFICE III	\N	0	\N	2015-07-10	2015-07-10	8	0	0	0	SUPERVISORY
13750	SECOND LEVEL TRAINER'S TRAINING ON OUTBREAK INVESTIGATION AND MANAGEMENT	\N	BUREAU OF ANIMAL INDUSTRY	\N	0	\N	2014-10-14	2014-10-17	32	0	0	0	SUPERVISORY 
13751	80TH PVMA ANNUAL CONVENTION & SCIENTIFIC CONFERENCE	\N	PHILIPPINE VETERINARY MEDICAL ASSOCIATION	\N	0	\N	2013-02-20	2013-02-20	24	0	0	0	SUPERVISORY
13888	Values Orientation Workshop	\N	PHRMO	\N	0	\N	1997-07-15	1997-07-17	24	0	0	0	 
13752	MAIGSING PAGSASANAY SA PANGANGALAGA AT PAMAMAHALA NG MGA GATASANG KALABAW	\N	PHILIPPINE CARABAO CENTER CENTRAL LUZON STATE UNIVERSITY	\N	0	\N	2012-12-10	2012-12-11	16	0	0	0	SUPERVISORY
13753	79TH PVMA ANNUAL CONVENTION AND SCIENTIFIC CONFERENCE 	\N	PHILIPPINE VETERINARY MEDICAL ASSOCIATION	\N	0	\N	2012-02-15	2012-02-17	32	0	0	0	SUPERVISORY
13754	Basic Accounting	\N	Eastwoods College of Science and Technology	\N	0	\N	2016-05-17	2016-05-31	40	0	0	0	 
13755	New born screening orientation and training program	\N	Department of Health Region III	\N	0	\N	2016-11-17	2016-11-18	16	0	0	0	 
13756	Government Hospitals School based immunization meeting	\N	Department of Health Region III	\N	0	\N	2016-06-03	2016-06-03	8	0	0	0	 
13757	BRIGADA ESKWELA 2018	\N	MARIVELES NATIONAL HIGH SCHOOL	\N	0	\N	2017-05-28	2017-05-28	8	0	0	0	technical
13758	PROCESSING "PORK TOCINO" PIG AND GOAT RAISING	\N	PROVINCIAL GOVERNMENT OF BATAAN PROVINCIAL VETERINARY OFFICE`	\N	0	\N	2014-11-17	2014-11-17	8	0	0	0	technical
13759	KAMBING ANG SAGOT SA KAHIRAPAN 	\N	CITY VETERINARY OFFICE	\N	0	\N	2014-09-05	2014-09-05	8	0	0	0	technical
13760	TRAINING ON FARM ASSESMENT AND PLANNING WORKSHOP UNDER THE PROJECT "CAPACITY ENHANCEMENT OF AGRICULTURE EXTENSION WORKERS TOWARDS A STRENGTHENED AND GENDER RESPONSIVE ORGANIC  AGRICULTURE PROGRAM	\N	DA-RFO III	\N	0	\N	2018-12-05	2019-01-09		0	0	0	technical
13761	Mpower Training	\N	DOH	\N	0	\N	2015-10-01	2015-10-02	16	0	0	0	 
13762	RETOOLING OF FARMERS LIVESTOCK SCHOOL ON GOAT ENTERPRISE MANAGEMENT FACILITATORS	\N	PHILIPPINE COUNCIL FOR AGRICULTURE AQUATIC AND NATURAL RESOURCES RESEARCH DEVELOPMENT	\N	0	\N	2018-09-24	2018-09-28	40	0	0	0	technical
13763	SEMINAR ON ANIMAL WASTE MANAGEMENT: MANILA BAY CLEAN UP PROGRAM	\N	BUREAU OF ANIMAL INDUSTRY	\N	0	\N	2016-10-28	2016-10-28	8	0	0	0	technical
13764	CATALYZING DEVELOPMENT OF RURAL COMMUNITIES RATIFICATION OF NEAP AND OPERATIONALIZING AFE STRATEGIC PLAN FOR 2017-2022	\N	AGRICULTURAL TRAINING INSTITUTE 	\N	0	\N	2016-02-29	2016-03-01	32	0	0	0	technical
13766	LAYING THE GROUNDWORK FOR STRONG AND VIBRANT COMMUNITIES; LIVESTOCK AND POULTRY SECTOR EXTENSION STRATEGIC PLANNING FOR 2017-2022	\N	INTERNATIONAL TRAINING CENTER ON PIG HUSBANDRY	\N	0	\N	2015-04-22	2015-04-24	24	0	0	0	technical
13767	TRAINING ON TRAINERS ON MEAT AND DAIRY GOAT PRODUCTION FOR FFS FACILITATORS	\N	AGRICULTURAL TRAINING INSTITUTE	\N	0	\N	2015-01-27	2015-02-06	112	0	0	0	technical
13768	REGIONAL FACILITATOR TRAINING COURSE ON FARMERS LIVESTOCK SCHOOL ON GOAT ENTERPRISE MANAGEMENT (FLS-GEM)	\N	PHILIPPINE COUNCIL FOR AGICULTURE AQUATIC AND NATURAL RESOURCES RESEARCH DEVELOPMENT 	\N	0	\N	2013-08-19	2013-08-30	112	0	0	0	technical
13769	COURSE ON ORGANIC AGICULTURE FOR LIVESTOCK TECHNICIANS 	\N	INTERNATIONAL TRAINING CENTER ON PIG HUSBANDRY	\N	0	\N	2013-07-15	2013-07-19	40	0	0	0	technical
13770	REGIONAL TRAINING ON TRAINERS ON ORGANIC AGRICULTURE INTERNAL CONTROL SYSTEM FOR SMALL HODLER GROUPS (PHASE 2)	\N	AGRICULTURAL TRAINING INSTITUTE 	\N	0	\N	2012-05-07	2012-05-11	40	0	0	0	 TECHNICAL
13771	REGIONAL TRAINING ON TRAINERS ON ORGANIC AGRICULTURE INTERNAL CONTROL SYSTEM FOR SMALL HODLER GROUPS (PHASE 1)	\N	AHRICULTURAL TRAINING INSTITUTE	\N	0	\N	2012-03-12	2012-03-16	40	0	0	0	 TECHNICAL
13772	TRAINING ON APPLIED GEO-TAGGING FOR BROILER AND SWINE INFORMATION AND EARLY WARNING SYSTEM (BSI-EWS) UNDER LIVESTOCK PROGRAM	\N	DEPARTMENT OF AGRICULTURE REGIONAL FIELD OFFICE III, PAMPANGA	\N	0	\N	2016-02-18	2016-02-19	16	0	0	0	 SKILLS TRAINING
13773	EFFECTIVE PRESENTATION OF STATISTICAL REPORT	\N	PHILIPPINE STATISTICAL RESEARCH AND TRAINING INSTITUTE	\N	0	\N	2016-06-20	2016-06-24	36	0	0	0	Skills training
13774	Orientation Seminar for Population Control and Health Care Facilities	\N	DENR	\N	0	\N	2006-03-28	2006-03-29	16	0	0	0	 
13775	Seminar workshop on the revised policies on qualification standard	\N	CSC	\N	0	\N	2006-03-11	2006-03-12	16	0	0	0	 
13776	3RD AEW CONGRESS	\N	PROVINICAL AGRICULTURIST OFFICE	\N	0	\N	2018-07-06	2018-07-06	8	0	0	0	 TECHNICAL
13777	SEMINAR ON FREE-RANGE CHICKEN	\N	CITY VETERINARY OFFICE	\N	0	\N	2018-06-26	2018-06-26	8	0	0	0	 TECHNICAL
13778	BASIC MEAT PROCESSING DEMONSTRATION AND PROPER MEAT HANDLING	\N	DEPARTMENT OF AGRICULTURE	\N	0	\N	2018-06-06	2018-06-07	16	0	0	0	 TECHNICAL
13779	BASIC MEAT PROCESSING DEMONSTRATION AND PROPER MEAT HANDLING.	\N	DEPARTMENT OF AGRICULTURE	\N	0	\N	2018-04-12	2018-04-13	16	0	0	0	 TECHNICAL
13780	TRAINER'S TRAINING ON BASIC MEAT PROCESSING DEMONSTRATION AND PROPER MEAT HANDLING	\N	DEPARTMENT OF AGRICULTURE	\N	0	\N	2017-11-16	2017-11-17	16	0	0	0	 TECHNICAL
13781	PGS MONTHLY STRATEGY REVIEW MEETING CUM TEAM BUILDING	\N	PROVINCIAL GOVERNOR'S OFFICE	\N	0	\N	2017-10-11	2017-10-11	8	0	0	0	 TECHNICAL
13782	 BASIC MEAT PROCESSING DEMONSTRATION AND PROPER MEAT HANDLING	\N	DEPARTMENT OF AGICULTURE	\N	0	\N	2016-09-30	2016-09-30	8	0	0	0	 TECHNICAL
13783	SEMINAR ON PROPER TECHNOLOGY PACKAGE	\N	DEPARTMENT OF AGRICULTURE	\N	0	\N	2016-03-29	2016-03-30		0	0	0	 TECHNICAL
13784	REGIONAL GOOD ANIMAL HUSBADNRY PRACTICES (GAHP) TEAM TRAINING AND WORKSHOP FOR REGION III	\N	DEPARTMENT OF AGRICULTURE, BUREAU OF AGRICULTURE AND FISHERY STANDARDS	\N	0	\N	2015-07-20	2015-07-22	24	0	0	0	 TECHNICAL
13785	DOING BUSINESS IN FREE TRADE AREAS AND DOING BUSINESS WITH THE EU USING GENERALIZED SCHEME OF PREFERENCE PLUS	\N	DEPARTMENT OF TRADE AND INDUSTRY, BATAAN PROVINCIAL OFFICE	\N	0	\N	2015-03-22	2015-03-22	8	0	0	0	 TECHNICAL
13786	ACADEMIC PROGRAM OF AGRO STUDIES	\N	AGRO-STUDIES ISRAEL	\N	0	\N	2013-10-01	2014-09-01	0	0	0	0	 TECHNICAL
13787	CERTIFICATE OF ACHIEVEMENT UNDER THE COLLABORATION OF AGROSTUDIES	\N	AGRO-STUDIES ISRAEL	\N	0	\N	2013-10-01	2014-09-01		0	0	0	 
13788	PILGRIM CERTIFICATE	\N	AGRO-STUDIES ISRAEL	\N	0	\N	2013-10-01	2014-09-01		0	0	0	 
13789	1ST PCC AND CLSU CALF DROP SUMMIT	\N	PHILIPPINE CARABAO CENTER	\N	0	\N	2018-12-06	2018-12-07	16	0	0	0	 TECHNICAL
13790	REINFORCING PARTNERSHIP WITH LOCAL GOVERNMENT UNIT PARTNERS OF CARABAO BASED ENTERPRISING COMMUNITIES FOR A SUSTAINABLE CARABAO	\N	PROVINCIAL AGRICULTURIST OFFICE	\N	0	\N	2018-07-06	2018-07-06	8	0	0	0	 TECHNICAL
13791	TRAINING OF TRAINERS ON NATURAL PIG FARMERS	\N	AGRICULTURAL TRAINING INSTITUTE	\N	0	\N	2016-06-22	2016-06-26	40	0	0	0	 TECHNICAL
13792	ARTIFICIAL INSEMINATION AND PREGNANCY DIAGNOSIS IN WATER BUFFALOS	\N	PHILIPPINE CARABAO CENTER	\N	0	\N	2015-10-26	2015-11-19	176	0	0	0	 TECHNICAL
13793	CONSULTATIVE MEETING AND WORKSHOP FOR THE HARMONIZATION AND IMPLEMENTATION OF NATIONAL AND LOCAL GOVERNMENT LIVESTOCK PROGRAMS AND PROJECTS	\N	BUREAU OF ANIMAL INDUSTRY	\N	0	\N	2019-01-29	2019-02-02	32	0	0	0	 TECHNICAL
14202	Performance Monitoring and coaching	\N	Ms. Maria Rosarip Carlos	\N	0	\N	2018-03-14	2018-03-14	1.25	0	0	0	 
13794	AGRIBUSINESS EXECUTIVES PROGRAM SPECIAL LECTURE SERIES SOCIAL ENTREPRENEURSHIP AND GLOBAL VALUE CHAIN	\N	UNIVERSITY OF ASIA AND THE PACIFIC CENTER FOR FOOD AND AGRIBUSINESS	\N	0	\N	2018-07-14	2018-07-14	8	0	0	0	MANAGERIAL
14247	PRE-EMPLOYMENT SEMINAR	\N	ACLC COLLEGE BALANGA	\N	0	\N	2014-02-28	2014-02-28	8	0	0	0	 Personal Development
13795	1ST SEMESTER PHYSICAL AND FINANCIAL ASSESMENT CUM REGIONAL TEAM BUILDING	\N	REGIONAL FIELD OFFICE III	\N	0	\N	2018-06-29	2018-06-30	16	0	0	0	MANAGERIAL
13796	PHILIPPINE VETERINARY MEDICAL ASSOCIATION CONVENTION	\N	PHILIPPINE VETERINARY MEDICAL ASSOCIATION	\N	0	\N	2017-05-25	2017-05-25	32	0	0	0	 TECHNICAL
13797	NATIONAL FOOT AND MOUTH DISEASE (FMD) AND AVIAN INFLUENZA (AI) COORDINATORS MEETING	\N	BUREAU OF ANIMAL INDUSTRY	\N	0	\N	2016-12-06	2016-12-08	24	0	0	0	 TECHNICAL
13798	BASIC TRAINING COURSE ON ARTIFICIAL INSEMINATION, PREGNANCY DIAGNOSIS AND ESTRUS SYNCHORINAZATION IN BUFFALOES	\N	PHILIPPINE CARABAO CENTER	\N	0	\N	1997-12-01	1998-01-17		0	0	0	 TECHNICAL
13799	HRIS Intensive Training	\N	PHRMO	\N	0	\N	2020-01-28	2020-01-28	8	0	0	0	 TECHNICAL
13800	ARTIFICIAL INSEMINATION AND PREGNANCY DIAGNOSIS IN WATER BUFFALOES	\N	PHILIPPINE CARABAO CENTER	\N	0	\N	2018-02-28	2018-06-21	176	0	0	0	 TECHNICAL
13801	GOOD MANUFACTURING PRACTICES/SANITATION STANDARD OPERATING PROCEDURES FOR LRME ORIENTATION SEMINAR	\N	NATIONAL MEAT INSPECTION SERVICES (NMIS) RFU III	\N	0	\N	2018-12-06	2018-12-06	8	0	0	0	 TECHNICAL
13802	BRIGADA ESKWELA 2018 PET VACCINATION	\N	JC PAYUMKO MEMORIAL HIGH SCHOOL	\N	0	\N	2018-05-28	2018-05-28	8	0	0	0	 TECHNICAL
13803	ORIENTATION AND CAMPAIGN SEMINAR FOR STRENGTHENING IMPLEMENTATION AND COMPLIANCE WITH RA 1556 AND FOOD SAFETY AC OF 2013	\N	BUREAU OF OF ANIMAL INDUSTRY	\N	0	\N	2017-12-05	2017-12-05	8	0	0	0	 TECHNICAL
13804	FOOT AND MOUTH DISEASE (FMD) RISK AND CRISIS COMMUNCIATION WORKSHOP & AVIAN INFLUENZA (AI) TABLETOP SIMULATION EXERCISES	\N	BUREAU OF ANIMAL INDUSTRY	\N	0	\N	2016-04-19	2016-04-22	32	0	0	0	 TECHNICAL
13805	PHILIPPINE ANIMAL HEALTH INFORMATION SYSTEM 3RD CONFERENCE 	\N	BUREAU OF ANIMAL INDUSTRY	\N	0	\N	2015-11-25	2015-11-26	16	0	0	0	 TECHNICAL
13806	REGIONAL CONSULTATION OF AGRILCULTURE & FISHERIES EXTENSION FOR 2016-2017	\N	AGRICULTURAL TRAINING INSTITUTE REGIONAL TRAINING CENTER III, BATAAN	\N	0	\N	2015-10-08	2015-10-08		0	0	0	 TECHNICAL
13807	MEAT INSPECTION TRAINING	\N	NATIONAL MEAT INSPECTION SERVICES (NMIS) RFU III	\N	0	\N	2015-05-04	2015-05-29	160	0	0	0	 TECHNICAL
13808	TRAINING COURSE ON GOOD ANIMAL HUSBANDRY PRACTICES (GAMP)	\N	BUREAU OF ANIMAL INDUSTRY	\N	0	\N	2017-05-25	2017-05-26	24	0	0	0	
13809	TRAINING COURSE ON GOOD ANIMAL HUSBANDRY PRACTICES (GAMP).	\N	ATI-RTC III	\N	0	\N	2016-03-16	2016-03-18	24	0	0	0	 
13810	REGIONAL GOOD ANIMAL HUSBANDRY PRACTICES (GAHP) TEAM	\N	BUREAU OF AGRICULTURE AND FISHERIES	\N	0	\N	2015-07-22	2015-07-22	8	0	0	0	 
13811	PHILAHIS CONFERENCE AND TECHNOLOGY UPDATES	\N	BUREAU OF ANIMAL INDUSTRY	\N	0	\N	2018-10-25	2018-10-26	16	0	0	0	 TECHNICAL
13812	HANDS-ON AND SYSTEM TURNOVER OF PHILAHIS INFORMATION SYSTEM	\N	BUREAU OF ANIMAL INDUSTRY	\N	0	\N	2017-06-05	2017-06-05	40	0	0	0	 TECHNICAL
13813	ORIENTATION AND HANDS ON TRAINING OF THE NEW PHILIPPINE ANIMAL HEALTH INFORMATION SYSTEM	\N	BUREAU OF ANIMAL INDUSTRY	\N	0	\N	2018-06-05	2018-06-08	32	0	0	0	 TECHNICAL
13814	TRAINING ON COMMUNICATION STATISTICS USING INFOGRAPHICS	\N	DA-RFO3	\N	0	\N	2017-11-27	2017-12-01	40	0	0	0	 TECHNICAL
13815	Training on Mainstreaming Green Growth in Dev't Planning	\N	GLOBAL GREEN GROWTH INSTITUTE	\N	0	\N	2017-05-09	2017-07-09	24	0	0	0	 TECHNICAL
13816	Nutrition Camp 2017	\N	MEAD JOHNSON	\N	0	\N	2017-10-02	2017-11-02		0	0	0	 
13817	integrated Midwives Association of the Philippines Core Values (Integrity, Motivation, Accountability, Professionalism)	\N	Integrarted Midwives Association of the Philippines	\N	0	\N	2016-11-20	2020-02-29		0	0	0	 
13818	Integrated Midwives Assocaiton of the Philippines Core Values (integrity, motivation, accountability and professionalism)	\N	Integrated Midwives Association of the Philippines	\N	0	\N	2016-11-20	2016-11-20		0	0	0	 
13819	Maternal Morbidity and Mortality	\N	Philippine Leauge of Government and private midwive incorporated	\N	0	\N	2016-11-27	2016-11-27		0	0	0	 
13820	REGIONAL ORGANIC AGRICULTURE CONGRESS	\N	ORGANIC AGRICULTURE REGIONAL OFFICE	\N	0	\N	2018-09-25	2018-09-27	24	0	0	0	 TECHNICAL
13821	2019 AFE WORK AND FINANCIAL PLAN CLAFEN CONSULTATION WORKSHOP	\N	ATI - RFO III	\N	0	\N	2018-09-19	2018-09-20	16	0	0	0	MANAGERIAL
13822	BPSU RESEARCH AND DEVELOPMENT STAKHOLDERS CONSULTATION	\N	BPSU MAIN CAMPUS	\N	0	\N	2018-08-29	2018-08-29	8	0	0	0	SUPERVISORY 
13823	TRAINING WORKSHOP ON STATISTICAL ANALYSIS USING THE SPSS SOFTWARE FOR QUANTITATIVE AND SOCIAL RESEARCH	\N	BPSU MAIN CAMPUS	\N	0	\N	2018-05-15	2018-05-16	16	0	0	0	MANAGERIAL
13824	STATISTICS FOR DECISION MAKERS	\N	PHILIPPINE STATISTICS RESEARCH AND TRAINING INSTITUTE	\N	0	\N	2016-12-12	2016-12-16	40	0	0	0	 TECHNICAL
13825	ORIENTATION SEMINAR ON ANIMAL WELFARE ACT RULES AND REGULATIONS 	\N	DEPARTMENT OF AGRICULTURE - RFU III	\N	0	\N	2016-09-08	2016-09-08	8	0	0	0	 
13826	TRAINING OF TRAINORS ON NATURAL PIG FARMING FOR FARMERS FIELD SCHOOL (FFS) FACILITATORS	\N	AGRICULTURAL TRAINING INSTITUTE - RTC III	\N	0	\N	2016-08-22	2016-08-26	40	0	0	0	 
13827	3RD CPP POULTRY PRODUCTION COURSE	\N	SIKHU LEARNING CENTER POULTRY BUSINESS GROUP, CPF, THAILAND	\N	0	\N	2015-08-17	2015-09-01	80	0	0	0	SUPERVISORY
13828	Continous Quality Improvement Trainingq	\N	PSQVA	\N	0	\N	2018-03-21	2018-03-23	24	0	0	0	 
13829	Basic and Advance Cardiac Life Support training	\N	ASHI	\N	0	\N	2007-08-09	2007-08-11	24	0	0	0	 
13830	SUPERVISORY DEVELOPMENT COURSE II 	\N	CIVIL SERVICE COMMISION/PROVINCIAL HUMAN RESOURCES MANAGEMENT OFFICE 	\N	0	\N	2018-12-11	2018-12-13	16	0	0	0	SUPERVISORY
13831	TRAININGS TRAINEE ON HUMANE DOG CATCHING, ANIMAL WELFARE AOS RELATED TO RABIES VACCINATION	\N	BUREAU OF ANIMAL INDUSTRY	\N	0	\N	2018-01-23	2018-01-25	24	0	0	0	 TECHNICAL
13832	24th PVMA ANNUAL CONVENTION & CONFERENCE	\N	PHILIPPINE VETERINARY MEDICAL ASSOCIATION	\N	0	\N	2017-02-21	2017-02-24	24	0	0	0	 TECHNICAL
13833	Stakeholder Orientation on Republic Act 9482: anti-rabies act of 2017	\N	Provincial Health Office	\N	0	\N	2016-01-02	2016-12-02	8	0	0	0	 
13834	4TH BREEDER MANAGEMENT SEMINAR & WORKSHOP	\N	BOUNTY FRESH FOOD, INC.	\N	0	\N	2015-07-02	2015-07-02	16	0	0	0	 TECHNICAL
13835	82ND PVMA ANNUAL CONVENTIONA AND CONFERENCE	\N	PHILIPPINE VETERINARY MEDICAL ASSOCIATION	\N	0	\N	2015-02-18	2015-02-20	24	0	0	0	 TECHNICAL
13836	Family Planning Competency Based Training I	\N	Department of Health	\N	0	\N	0206-07-04	2016-07-08	45	0	0	0	 
13837	3RD BREEDER MANAGEMENT SEMINAR & WORKSHOP	\N	BOUNTY FRESH FOOD, INC.	\N	0	\N	2014-07-08	2014-07-08	8	0	0	0	 TECHNICAL
13838	NATIONAL LEADERSHIP TRAINING SEMINAR	\N	VENERABLE KNIGHT/LADY VETERINARIANS FRATERNITY/SORRORITY	\N	0	\N	2012-09-15	2012-09-15	8	0	0	0	 
13839	8TH NATIONAL CONGRESS OF VETERINARY MEDICINE STUDENTS	\N	NATIONAL CONGRESS OF VETERINARY MEDICINE STUDENS	\N	0	\N	2012-02-08	2012-02-11	24	0	0	0	 
13840	3RD ANNUAL CONVENTION OF AGRICULTURAL EXTENSION WORKERS	\N	DEPARTMENT OF AGRICULTURE 	\N	0	\N	2018-07-06	2018-07-06	8	0	0	0	 TECHNICAL
13841	GHG CARBON EMISSION ORIENTATION	\N	DEPARTMENT OF ENVIRONMENTAL & NATURAL RESOURCES 	\N	0	\N	2018-04-03	2018-04-03	4	0	0	0	 TECHNICAL
13842	TRAINER'S TRAINING ON CARES AND FAIR TRADE LAWS	\N	DEPARTMENT OF TRADE AND INDUSTRY	\N	0	\N	2016-08-19	2016-08-19	8	0	0	0	MANAGERIAL
13843	PROPER TECHNOLOGY PACKAGE SEMINAR	\N	REGIONAL FIELD OFFICE III	\N	0	\N	2016-03-29	2016-03-30	48	0	0	0	 TECHNICAL
13844	SEMINAR ON HOW TO HANDLE CONSUMER'S COMPLAINT 	\N	DEPARTMENT OF TRADE AND INDUSTRY	\N	0	\N	2015-10-02	2015-10-02	2	0	0	0	MANAGERIAL
13845	CONSUMER AWARENESS AND RESPONSIVENESS SEMINAR	\N	DEPARTMENT OF TRADE AND INDUSTRY	\N	0	\N	2015-10-02	2015-10-02	2	0	0	0	MANAGERIAL
13846	RETAILER'S SEMINAR	\N	DEPARTMENT OF TRADE AND INDUSTRY	\N	0	\N	2015-10-02	2015-10-02	2	0	0	0	MANAGERIAL
13847	Secretarial and Staff Enhancement Course	\N	CSC Regional Office No. 3	\N	0	\N	2001-04-02	2001-04-04	24	0	0	0	 
13848	PhRO III- PhilHealth First Semester UPDATES	\N	Philhealth	\N	0	\N	2010-05-20	2010-05-20	8	0	0	0	 
13849	Seminar workshop on PMS-OPES Track II	\N	CSCRO No. 3	\N	0	\N	2009-01-20	2009-06-22	24	0	0	0	 
13850	Unified Disease Registry System training	\N	Department of Health	\N	0	\N	2014-05-20	2014-05-23	32	0	0	0	 
13851	Procedures for the disbursement transactions	\N	Provincial Govfernment of Bataan	\N	0	\N	0147-05-09	2014-05-09	8	0	0	0	 
13852	Provincial Dengue Prevention and Control Program Implementation Review (Bataan)	\N	Provincial Health Office	\N	0	\N	2016-11-03	2016-11-04	16	0	17	0	 
13853	MAGNA CARTA FOR WOMEN AND TEAM EFFECIVENESS	\N	PROVINCIAL GENERAL SERVICES OFFICE	\N	0	\N	2016-04-18	2016-04-18	4	0	0	0	PERSONAL DEVELOPMENT
13854	YOUTH CONGRESS ON INFORMATION TECHNOLOGY	\N	UNIVERSITY OF THE PHILIPPINES	\N	0	\N	2016-09-18	2016-09-18	8	0	0	0	Skill ENHANCEMENT
13855	BUSINESS ANALYTICS INFORMATION	\N	BATAAN PENINSULA STATE UNIVERSITY - ACADEMIC AFFAIRS	\N	0	\N	2013-07-23	2013-07-23	8	0	0	0	MANAGERIAL
13856	PROGRAMMING AND WEBSITE SECURITY 	\N	BATAAN PENINSULA STATE UNIVERSITY - ACADEMIC AFFAIRS	\N	0	\N	2013-07-03	2013-07-03	8	0	0	0	Skill ENHANCEMENT
13857	BATAAN PENINSULA STATE UNIVERSITY COLLEGE ON INFORMATION & COMMUNICATION - RESEARCH CLUSTER 	\N	BATAAN PENINSULA STATE UNIVERSITY - ACADEMIC AFFAIRS	\N	0	\N	2013-05-18	2013-05-18	8	0	0	0	Skill ENHANCEMENT
13858	BASIC TRAINING ON SUPPLY MANAGEMENT SUPPORT SYSTEM 	\N	GEODATA SOLUTIONS INC	\N	0	\N	2017-10-09	2017-10-09	8	0	0	0	Skill ENHANCEMENT
13859	MAGNA CARTA FOR WOMEN AND TEAM EFFECTIVENESS	\N	PROVINCIAL GENERAL SERVICES OFFICE	\N	0	\N	2018-04-13	2018-04-13	4	0	0	0	PERSONAL DEVELOPMENT
13860	GENDER AND E\\\\DEVELOPMENT PROGRAM AND BASIC CONCEPT	\N	PROVINCIAL GENERAL SERVICES OFFICE	\N	0	\N	2016-04-22	2016-04-23	16	0	0	0	PERSONAL DEVELOPMENT 
13861	GENDER AND E\\\\DEVELOPMENT PROGRAM AND BASIC CONCEPT	\N	PROVINCIAL GENERAL SERVICES OFFICE	\N	0	\N	2016-04-22	2016-04-23	10	0	0	0	PERSONAL DEVELOPMENT 
13862	GENDER AND DEVELOPMENT PROGRAM AND BASIC CONCEPTS	\N	PROVINCIAL GENERAL SERVICES OFFICE	\N	0	\N	2016-04-22	2016-04-23	10	0	0	0	PERSONAL DEVELOPMENT 
13863	Update on PIDSR Refresher Course 	\N	Department of Health 	\N	0	\N	2012-03-17	2014-03-18	16	0	0	0	 
13864	SEMINAR ON BIR TAX UPDATES AND HOW TO HANDLE TAX AUDIT/INVESTIGATION 	\N	PHILIPPINE INSTITUTE OF CERTIFIED PUBLIC ACCOUTANT - BATAAN CHAPTER	\N	0	\N	2010-02-02	2010-02-02	8	0	0	0	MANAGERIAL
13865	SEMINAR ON MORAL VALUES A KEY TO BETTER SOCIETY	\N		\N	0	\N	2010-02-12	2010-02-12	8	0	0	0	MANAGERIAL
13866	64TH PICPA ANNUAL NATIONAL CONVERnTION	\N		\N	0	\N	2009-11-30	2009-12-02	8	0	0	0	MANAGERIAL
13867	Quality Improvement Training Workshop on hematology	\N	Philippie Association of Medical Technologist Bataan Chapter	\N	0	\N	2018-03-09	2018-03-11	24	0	0	0	 
13868	SUPERVISORY DEVELOPMENT COURSE (SDC) TRACK III	\N	CIVIL SERVICE COMMISSION - REGION III	\N	0	\N	2015-05-13	2015-05-15	24	0	0	0	SUPERVISORY 
13869	Training on Basic STI Microscopy	\N	Department of Health	\N	0	\N	2018-07-08	2018-07-08	32	0	0	0	 
13870	APPRECIATION COURSE ON SUPPLY AND PROPERTY MANAGEMENT	\N	BCL CONSULTANCY AND TRAINING CENTER	\N	0	\N	2014-11-28	2014-11-29		0	0	0	MANAGERIAL
13871	HIV Proficiency Trainig for Registered Medical Technologist	\N	Philippine Business for Social Progress	\N	0	\N	2018-09-10	2018-09-14	40	0	0	0	 
13872	Training on Malaria Diagnosis	\N	PHO	\N	0	\N	2018-10-22	2018-10-22	8	0	0	0	 
13873	Technician Training on the Maintenance of Medical Equipments	\N		\N	0	\N	2019-09-21	2019-09-22	9	0	0	0	 
13874	WORK ATITTUDE AND VALUES ENHANCEMENT TRAINING	\N	PROVINCIAL HUMAN RESOURCE MANAGEMENT OFFICE	\N	0	\N	2016-06-20	2016-06-21	16	0	0	0	 TECHNICAL
13875	NATIONAL SIMULTANEOUS EARTHQUAKE DRILL (NSED) 2016	\N	PROVINCIAL DISASTER RISK REDUCTION AND MANAGEMENT COUNCIL	\N	0	\N	2016-07-21	2016-07-21	8	0	0	0	 TECHNICAL
13876	BASIC COOPERATIVE COURSE	\N	PROVINCIAL COOPERATIVE & ENTERPRISE DEVELOPMENT OFFICE	\N	0	\N	2015-09-17	2015-09-18	16	0	0	0	 TECHNICAL
13877	STRATEGIC PEFROMANCE MANAGEMENT SYSTEM (PMS)	\N	CIVIL SERVICE COMMISSION	\N	0	\N	2013-10-29	2013-10-29	8	0	0	0	 TECHNICAL
13878	Strategic Performance Management System for leaders	\N	PHRMO	\N	0	\N	2016-10-28	2016-10-28	8	0	0	0	 
13879	Roll-out training on online event-based surveillance and response version 2.0	\N	Department of Health	\N	0	\N	2016-08-09	2016-08-10	16	0	0	0	 
13880	Asean Dengue Summit 2018	\N	Provincial Health Office	\N	0	\N	2016-07-01	2016-07-01	8	0	0	0	 
13881	Seminar-workshop on revised rules on administrative cases in the civil service	\N	Civil Service Commision	\N	0	\N	2015-10-28	2015-01-29	16	0	0	0	 
13882	Training on vaccine preventable disease surveillance	\N	Department of Health	\N	0	\N	2015-07-23	2015-07-23	8	0	0	0	 
13883	Surveillance update among disease reporting units	\N	Department of Health	\N	0	\N	2015-04-16	2015-04-16	8	0	0	0	 
13884	Red Orchid Award Consultative Meeting	\N	Department of Health	\N	0	\N	2015-03-24	2015-03-24	8	0	0	0	 
13885	SPECIAL PROGRAM FOR EMPLOYMENT OF STUDENTS (SPES)	\N	DEPARTMENT OF LABOR AND EMPLOYMENT	\N	0	\N	2012-04-10	2012-04-10	280	0	0	0	 TECHNICAL
13886	Merit Promotion Plaris/ System of Ranking Positions 	\N		\N	0	\N	1995-12-12	1995-12-15	32	0	0	0	 
13887	Counsellors Course and Sexual Harassment Seminar	\N	Council of Personnel Officers of Bataan	\N	0	\N	1996-11-04	1996-11-08	40	0	0	0	 
13889	5's Productivity Improvement Seminar Symposium on Public Sector Unionism	\N	Dept. of Trade and Industry Confederation of Independent Unions	\N	0	\N	1998-02-13	1998-02-13	8	0	0	0	 
13890	Training Workshop on Research/Project Proposal Preparation:Social Research	\N	Bataan Polytechnic State College/ Research & Development	\N	0	\N	2005-04-25	2005-04-27	24	0	0	0	 
13891	Local Government Forum on Civil Service Law and Rules 	\N	Civil Service Commission 	\N	0	\N	2005-06-27	2005-06-28	16	0	0	0	 
13892	3rd PAGSO National Convention Effective Physical Inventory Taking 	\N	Phil.Association of GSO INC> Human Tech Development Center	\N	0	\N	2008-05-14	2008-05-18	40	0	0	0	 
13893	Disposal of Unserviceable Fixed Assets 4th PAGSO National Convention 	\N	Phil. Association of GSO Inc.	\N	0	\N	2009-05-13	2009-05-17	40	0	0	0	 
13894	1st Regional Meeting Of PAGSO Officers 	\N		\N	0	\N	2009-07-09	2009-07-09	8	0	0	0	 
13895	2nd Regional Conference of PAGSO	\N	PAGSO Region III	\N	0	\N	2011-03-09	2011-03-11	24	0	0	0	 
13896	3rd Regional Conference of PAGSO 	\N	PAGSO REgion III	\N	0	\N	2012-02-17	2012-02-17	8	0	0	0	 
13897	7th PAGSO National Convention	\N	Phil.Association of GSO Inc.	\N	0	\N	2012-05-23	2012-05-26	32	0	0	0	 
13898	Strategic Performance  Management System Orientation / Seminar on the Procedures 	\N	Civil Service Commission	\N	0	\N	2013-10-29	2013-10-29	8	0	0	0	 
13899	For the Dibursement Transactions of the Provincial Gov't. of Btaan	\N	Provincial Government of Bataan	\N	0	\N	2014-05-09	2014-05-09	8	0	0	0	 
13900	MPower Training 10th PAGSO National Convention	\N	Provinvial Health Office Phil.Association of GSO Inc.	\N	0	\N	2014-08-10	2014-08-12	24	0	0	0	 
13901	ELECTRICAL INSTALLATION MAINTENANCE N.C II	\N	SIR JUN SANTUYO	\N	0	\N	2013-11-11	2013-11-13	8	0	0	0	 TESDA, ORION, BATAAN
13902	Seminar Training for the Updates on the Revised Implementing Rules & Regulations of Republic Act No. 9184	\N	Provincial Government of Bataan	\N	0	\N	2017-04-20	2017-04-21	16	0	0	0	 TECHNICAL
13903	3rd PNA Annual Convention (thje vevolving notes of the nurses "Service, Education and Research") in Asean Community	\N	Philippine Nurses Associationh	\N	0	\N	2015-07-31	2015-07-31	8	0	0	0	 
13904	Menu Planning	\N	Trinity College of quezon City High School Cafeteria	\N	0	\N	1978-06-04	1978-09-04		0	0	0	 
13905	Diet Therapy	\N	St. Lukes Hospital	\N	0	\N	1979-07-12	1979-10-12		0	0	0	 
13906	Advance Cookery	\N	D&E Restaurant	\N	0	\N	1979-12-06	1980-12-08		0	0	0	 
13907	Division Orientation Seminar on the Weekly Iron foric Acid CW IF A7 Suplementation for Female	\N	DepEd Bataan	\N	0	\N	2017-06-29	2017-06-29	8	0	0	0	Techhnical
13908	Division Re Oriented Seminar on the Implementation and Management of School Canteens 	\N	DepEd Bataan	\N	0	\N	2017-06-20	2017-06-21	16	0	0	0	Techncial
13909	Substance Related and Addictive Disorders Recognition and Management	\N	Veterans Memorial Medical Center	\N	0	\N	2017-04-21	2017-04-21	8	0	0	0	 TECHNICAL
13910	Orientation Seminar on Magna Carta of Women (RA 9710) and Anti-Violence Against Women and Children (RA 9262	\N	Provincial Population Office 	\N	0	\N	2016-04-15	2016-04-15	8	0	0	0	 TECHNICAL
13911	Gestational Diabete Mellitus (GDM) Postnatal Care, Perinatal Care	\N	Integrated Midwives Association of the Philippines	\N	0	\N	2016-11-17	2016-11-17	8	0	0	0	 
13912	Quality Family Planning Services Management of postpartum hemorrhage and respectful midwifery care	\N	Integrated Midwives Association ofo the Philippines	\N	0	\N	2016-03-28	2016-03-28	8	0	0	0	 
13913	Orientation Workshop of the Regional, Provincial and City Bantay As in task forces	\N	National Nutrition Council	\N	0	\N	2015-12-09	2015-12-10	16	0	0	0	technical
13914	Integrated Midwives cAssociation of the Philippines Regional Convention	\N	Integrated Midwives Association of the Philippines	\N	0	\N	2015-11-30	2015-11-30	8	0	0	0	 
13915	Training on the NTP Manual of Procedures, 5th Edition 	\N	Department of Health 	\N	0	\N	2020-09-15	2015-09-17	24	0	0	0	 TECHNICAL
13916	Team Building on Magna Carta for Women and Team Effectiveness Seminar (GAD)	\N	Provincial Government of Bataan	\N	0	\N	2017-04-18	2017-04-18	2	0	0	0	 TECHNICAL
13917	Gender Development Program and Basic Concepts	\N	Provincial Government of Bataan	\N	0	\N	2020-03-03	2020-03-03	16	0	0	0	 TECHNICAL
13918	Gender and Development Program and Basic Concepts	\N	Provincial Government of Bataan	\N	0	\N	2016-04-22	2016-04-23	16	0	0	0	 TECHNICAL
13919	Procedures of Disbursements of Transactiions	\N	provinvial Accountant Office	\N	0	\N	2014-02-09	2014-02-21	8	0	0	0	 TECHNICAL
13920	Contingency Planning Formulation Workshop (CDFW)	\N	Provinvial Risk Reduction Office	\N	0	\N	2014-02-09	2014-02-21	24	0	0	0	 TECHNICAL
13921	Local Disaster reduction Management Plan (LDRRMP) Writeshop	\N	Provincial Disaster Risk Reduction Office	\N	0	\N	2014-01-16	2014-01-17	16	0	0	0	 TECHNICAL
13922	ISO 9001: 2015 AWARENESS SEMINAR	\N	Provinvial Government of Bataan	\N	0	\N	2017-07-27	2017-07-27	8	0	0	0	 TECHNICAL
13923	MAGNA CARTA FOR WOMEN AND TEAM EFFECTIVENES SEMINAR	\N	PROVINCIAL GOVERNMENT OF BATAAN	\N	0	\N	2017-04-18	2017-04-18	2	0	0	0	 TECHNICAL
13924	ICT RESOURCE ACQUISITION - PROJECT TERMS OF REFERENCE SEMINAR	\N	DEPARTMENT OF INFORMATION AND COMMUNICATIONS TECHNOLOGY - REGION 3	\N	0	\N	2016-12-05	2016-12-09	40	0	0	0	 TECHNICAL
13925	MAGNA CARTA FOR WOMEN (RA 9710) ANTI VIOLENCE AGAINST WOMEN AND CHILDREN (RA 9262)	\N	PROVINVIAL GOVERNMENT OF BATAAN	\N	0	\N	2016-04-15	2016-04-15	8	0	0	0	 TECHNICAL
13926	STREAMLINING PROCUREMENT OF MICROSOFT PRODUCTS AND SERVICES FOR PHILIPPINE GOVERNMENT AGENCIES	\N	DEPARTMENT OF BUDGET AND MANAGEMENT PROCUREMENT SERVICE	\N	0	\N	2015-08-07	2015-08-07	8	0	0	0	 TECHNICAL
13927	GENDER AWARENESS AND DEVELOPMENT PROGRAM	\N	BATAAN GENERAL HOSPITAL	\N	0	\N	2013-04-30	2013-04-30	8	0	0	0	 TECHNICAL
13928	HOSPITAL ISO-QMS ORIENTATION SEMINAR	\N	BATAAN GENERAL HOSPITAL	\N	0	\N	2012-11-22	2012-11-22		0	0	0	 TECHNICAL
13929	GOVERNMENT PROPERTY AND SUPPLY MANAGEMENT SEMINAR	\N	PHILIPPINE ASSOCIATION OF GENERAL SERVICES OFFICERS, INC.	\N	0	\N	2010-12-09	2010-12-09	24	0	0	0	 TECHNICAL
13930	EXECUTIVE FORUM	\N	CORONA MANAGEMENT CENTER OF THE PHILS.	\N	0	\N	2008-05-20	2008-05-22	24	0	0	0	 TECHNICAL
13931	Appreciation Course ON Supply and Property Management	\N	BCL CONSULTANCY AND TRAINING	\N	0	\N	2007-02-21	2007-02-23		0	0	0	 TECHNICAL
13932	Procedures for Disbursement 	\N		\N	0	\N	2014-05-19	2014-05-19	8	0	0	0	 
13933	Leadership Seminar and Continuing Quality Improvement Lecture	\N		\N	0	\N	2006-08-11	2006-08-11	8	0	0	0	 
13934	Seminar Training for the Updates on the Revised Implementing Rules and Regulations of Republic Act No.9184	\N	Provinvial Government of Bataan	\N	0	\N	2017-04-20	2017-04-21	16	0	0	0	 TECHNICAL
13935	Magna Carta for Women and Team Effectiveness Seminar	\N	Office of Provincial Governor	\N	0	\N	2017-10-28	2017-04-21	16	0	0	0	 TECHNICAL
13936	Crash Course for Speech Improvement and Business Correspondence and Writings for Provincial capitol Employee	\N	Office of the Provincial Governor	\N	0	\N	2016-11-21	2016-12-09	28	0	0	0	 TECHNICAL
13937	2016 PGSO Team BUilding and Seminar on Gender Development Program and Basic Concepts	\N	Provincial Government of Bataan and Provincial General Services Office	\N	0	\N	2016-04-22	2016-04-23	16	0	0	0	 TECHNICAL
13938	Streamline Procurement of Microsoft Products and Services for Philippine Government Agencies	\N	Procurement Service Philippine Government Electronic Procurement System	\N	0	\N	2015-08-07	2015-08-07	4	0	0	0	 TECHNICAL
13939	Procurement Training for PPMIU & BAC of LGUS'	\N	Philippine Rural Development Project (PRDP), regional Project Coordination Office 3 (RPCO-3)	\N	0	\N	2015-04-14	2015-04-15	8	0	0	0	 TECHNICAL
13940	Orientation/ Seminar on the Procedures for the Disbursement Transactions of the Provincial Government of Bataan	\N	Provinvial Government of Bataan	\N	0	\N	2014-05-19	2014-05-09	8	0	0	0	 TECHNICAL
13941	Philippine Government Electronic Procurement System (PHILGEPS) V1.1 Training for Buyers	\N	EBBSI Training Center	\N	0	\N	2014-01-27	2014-01-28	8	0	0	0	 TECHNICAL
13942	Effective Physical Inventory Taking and Disposal of Unserviceable Fixed Assets	\N	Human Technology Development Center	\N	0	\N	2008-06-06	2008-06-07	8	0	0	0	 TECHNICAL
13943	SPIDC Government Application Software, Procurement Monitoring/ Supplies Management Inevntory System (PMSMIS), Microsoft Windows XP Operating System, IBM Personal Computer Operation, Basic Course: Local Area Networking (LAN)	\N	Provincial Government of Bataan with Systems and Plan Integrator Development Company and IBM Philippines Inc.	\N	0	\N	2020-03-03	2020-03-03	8	0	0	0	 TECHNICAL
13944	Training for Human Resource Management System (HRMS)	\N		\N	0	\N	2020-01-29	2020-01-29	8	0	12	1	 TECHNICAL
14495	Basic Firefighting and SCBA Refresher Course	\N	8	\N	0	\N	2017-08-23	2017-08-23	8	0	0	0	 
13945	Intensive Training on New Human Resources Information System (HRIS)	\N		\N	0	\N	2020-01-29	2020-01-29		0	26	1	 TECHNICAL
13946	FY 2021 HVCDP Planning and Workshop	\N	DARFO lll	\N	0	\N	2020-01-07	2020-01-08	16	0	25	1	 
13947	Procedure for the Disbursement Transactions	\N	Provinvial Government of Bataan	\N	0	\N	2014-05-09	2014-05-09	8	0	0	0	 
13948	The Power within-Empowering the Provincial Board Members Secretary and SP Staff	\N	AC Serna Consultancy Co.	\N	0	\N	2014-02-06	2014-02-07		0	0	0	 
13949	Transforming Processes and Outcome	\N	Philippine Pharmacist Association	\N	0	\N	2018-04-12	2018-04-12	8	0	0	0	 TECHNICAL
13950	Crash Course Speech Improvement and Business Correspondence	\N	Office of the Provinvial Governor	\N	0	\N	2016-11-21	2016-12-09	30	0	0	0	 TECHNICAL
13951	Briefing on BSP Demonetization Program	\N	Drugstore Association of the Philippines	\N	0	\N	2015-03-13	2015-03-13	8	0	0	0	 TECHNICAL
13952	Knowing/Understanding Your Customer	\N	Pharex Corporation	\N	0	\N	2012-04-18	2012-04-18	8	0	0	0	 Supervisory
13953	Access to Pharmacist/Access to Better Health	\N	Philippine Pharmacist Association	\N	0	\N	2011-11-29	2011-11-29	8	0	0	0	 TECHNICAL
13954	Licensing of Drug Establishment	\N	Department of Health	\N	0	\N	2007-11-29	2007-11-29	8	0	0	0	 TECHNICAL
13955	Upscaling Bantay Dagat for New DecadeSeminar for Developing Programs and Project	\N	LGU-Mariveles	\N	0	\N	2020-01-09	2020-01-10	16	0	0	0	Administrative
13956	Seminar Workshop on the Promotion of Aquashade Technology in Luzon to Increase Tilapia Seed Production during Warm Month	\N	BPSU-Abucay	\N	0	\N	2020-01-27	2020-01-27	8	0	25	0	 SKILLS TRAINING
13957	Intensive Training for the Use of New HRIS	\N	NSPIRE and PHRMO 	\N	0	\N	2020-01-28	2020-01-28	8	0	25	0	 TECHNICAL
13958	Intensive Training of using New HRIS	\N	NSPIRE and PHRMO 	\N	0	\N	2020-01-28	2020-01-28	8	0	29	0	 TECHNICAL
13959	Intensive Training for the use of  New HRIS	\N	NSPIRE and PHRMO	\N	0	\N	2020-01-28	2020-01-28	8	0	10	0	 TECHNICAL
13960	Seminar/Training for the Updates on the Revised Implementing Rules & Regulations of the Republic Act.9184	\N	Povinvial Government of Bataan	\N	0	\N	2017-04-20	2017-04-21	16	0	0	0	 TECHNICAL
13961	Provincial General Services Office (PGSO) Team Building and Seminar on Magna Carta for Women and Team Effectiveness Seminar	\N	Provincial Government of Bataan	\N	0	\N	2017-04-18	2017-04-18	8	0	0	0	 Team Training
13962	FMIS Benchmarking Held at the City of Santa Rosa, Laguna	\N	Cit Government of Santa Rosa, Laguna	\N	0	\N	2017-02-16	2017-02-16	8	0	0	0	 TECHNICAL
13963	Consultation - Workshop on the Preparation of Governance Reform Targets Required for 2017 Conditional Matching  Grant to Provinces (CMGP) and other Opds Locally - Funded Road Projects	\N	Department of the Interior and Local Government	\N	0	\N	2016-07-12	2016-09-12	24	0	0	0	 TECHNICAL
13964	Orientation on the Enhanced Public Financial Management (PFM) Assessment Tool for Local Government Units and the Latest PFMAT Software at DBM ROIII Conference Room	\N	Department of Budget and Management	\N	0	\N	2016-11-11	2016-11-11	8	0	0	0	 
13965	16 Hours of Communication Development Training (Oral & Written)	\N	Provincial Human Resource management Office	\N	0	\N	2016-09-11	2016-10-11	16	0	0	0	 Personal Development
13966	Strategic Performance Management System For Leaders	\N	Provinvial Human Resource Management  Office	\N	0	\N	2016-10-28	2016-10-28	8	0	0	0	 
13967	Harmonization and Planning Workshop for UHC Implementation	\N	PHO	\N	0	\N	2020-01-15	2020-01-17	24	0	20	0	 Supervisory
13968	Bataan-BGHMC SDN Program Implementation Review	\N	BGHMC	\N	0	\N	2020-01-06	2020-01-06	8	0	18	0	 
13969	Re-Orientation of Procurement Process Held	\N	Philippine Rural Bank Development Project	\N	0	\N	2016-05-10	2016-05-10	8	0	0	0	 TECHNICAL
13970	NTP Data Validation	\N	PHO	\N	0	\N	2020-01-17	2020-01-17	8	0	18	0	 
13971	Emergency Coordination Meeting on Surviellance/Monitoring and Prevention of Coronavirus	\N	PHO	\N	0	\N	2020-01-28	2020-01-28	8	0	18	0	 TECHNICAL
13972	What You Must Know about Procurement law and Its IRR Helad at Edsa Shangri - La Hotel, Mandaluyong City, Philippines	\N	Center for Global Best Practices	\N	0	\N	2016-09-29	2016-09-30	16	0	0	0	 TECHNICAL
13973	Orientation on Essential of PPA	\N	PPDO	\N	0	\N	2020-01-31	2020-01-31	8	0	18	0	 TECHNICAL
13974	Philippine Association of General Services Officers (PAGSO) 11th National Convention	\N	Philippine Association of General Services Officers (PAGSO), Inc.	\N	0	\N	2016-06-15	2016-06-18	32	0	0	0	 TECHNICAL
13975	Seminar on Living, Loving and Serving as A Leader	\N	Civil Service Commission Reginal Office No. 3	\N	0	\N	2015-10-20	2015-10-20	8	0	0	0	 Managerial
13976	Retooling for Procurement Process For PPMIU & BAC of LGUS Cum Pre-Procurement Conference	\N	Philippine Rural Development Project Under Regional Project Coordination Office 3	\N	0	\N	2020-03-03	2020-03-03		0	0	0	 TECHNICAL
14248	ASSR 101 AND 102: NEW STAFF PROGRAM 	\N	Commission on Audit	\N	0	\N	2015-12-06	2015-12-12	80	0	0	0	 TECHNICAL
13977	Philippine Association of General Services Officers (PAGSO) National Convention	\N	Philippine Association of General Services Officers Inc.	\N	0	\N	2015-05-13	2015-05-16	32	0	0	0	 TECHNICAL
13978	Procurement Training For PPMIU and BAC LGUS held at Eurotel Hotel, Angeles City, Pampanga	\N	Philippine Rural Development Project Coordination Office 3	\N	0	\N	2015-04-15	2015-04-15		0	0	0	 TECHNICAL
13979	Program Implementation Review in BataanGHMC-SDN Online Referral System	\N	Bataan General Center and Medical Center	\N	0	\N	2020-01-06	2020-01-06	8	0	21	0	 TECHNICAL
13980	Magna Carta For Women and Team Effectiveness Seminar	\N	Provincial General Services Office	\N	0	\N	2018-04-14	2018-04-13	4	0	0	0	 Personal Development
13981	Supply Management Support System	\N	Treasury Office of Province of Bataan	\N	0	\N	2018-10-09	2018-04-18	8	0	0	0	 Training
13982	Magna Carta For Women and Team effectiveness Seminar	\N	Provincial General Services Office	\N	0	\N	2017-04-18	2017-04-18	4	0	0	0	 Personal Development
13983	Training on the Operation and Maintenance for Civil Works	\N	PDRRMO, PRDP	\N	0	\N	2020-02-17	2020-02-21	40	0	10	0	 
13984	Freedom of Information (FOI) Conference for Local Government Units (LGUs)	\N	Presidential Communications Operations Office (PCOO)-Freedom of Information-Project Management Office (FOI-PMO)	\N	0	\N	2020-02-21	2020-02-21	8	0	15	0	 
13985	Orientation on Ease of Doing Business and Efficient Government Service Delivery Act of 2018	\N	Council of Personnel Officers, Dir. Maria Luisa Salonga - Agamata	\N	0	\N	2020-02-27	2020-02-27	8	0	8	0	 
13986	Training on Nutrition Cluster Information Management for the Local Level	\N	DOH National Nutrition Council	\N	0	\N	2020-02-18	2020-02-20	24	0	17	0	 
14496	Work Permit System/ LOTOTO Training	\N		\N	0	\N	2017-02-10	2017-02-10	3	0	0	0	technical
13987	Training on Data Analysis Management, and Utilization for Family Planning Program Managers	\N	Central Luzon Center for Health Development (CLCHD)	\N	0	\N	2020-02-18	2020-02-21	32	0	17	0	 
13988	Training on Philippine Integrated Disease Surveillance and Response-Batch 2	\N	Central Luzon Center for Health Development (CLCHD)	\N	0	\N	2020-02-10	2020-02-13	32	0	17	0	 
13989	Consultative Meeting with Lvel 1, 2, 3 Hospitals on Novel Coronavirus	\N	DOH	\N	0	\N	2020-02-05	2020-02-05	8	0	19	0	 
13990	Zonal Blood Service Network Meeting	\N	PHO	\N	0	\N	2020-02-07	2020-02-07	8	0	19	0	 
13991	Clubfoot Seminar: SDN Orientation & Casting Workshop	\N	JBLMGH	\N	0	\N	2020-02-19	2020-02-19	8	0	19	0	 
13992	Orientation on Procurement, Obligation Request and Disbursement Procedures	\N	PBO	\N	0	\N	2020-02-26	2020-02-26	8	0	19	0	 
13993	Training on the Operation & Maintenance for Civil Works	\N	DA Region III	\N	0	\N	2020-02-17	2020-02-21	40	0	29	0	 
13994	TRAINING ON PHILIPPINE INTEGRATED DISEASE SURVEILLANCE AND DISPATCH BATCH 2	\N	DOH	\N	0	\N	2020-02-10	2020-02-13	32	0	20	0	 
13995	Writeshop for the Formulation of Operations Manual in the Institutionalization of 1 Bataan Community-Based Maintenance Contracting	\N	PEO	\N	0	\N	2020-01-31	2020-01-31	8	0	11	0	 
13996	MPOWER TRAINING.	\N	N/A	\N	0	\N	2018-05-08	2018-05-10		0	0	0	 TECHNICAL
13997	Actual Observing system and technical training work course for hemodialysis technician	\N	Sta Ana Enterprises St. Theresa Dialysis Center Inc. Branch Dolores City of San Fernando, Pampanga	\N	0	\N	2018-05-02	2018-09-07		0	0	0	 
13998	SMOIKING CEASSATION TRAINING	\N	N/A	\N	0	\N	2020-05-10	2020-05-11		0	0	0	 TECHNICAL
13999	TOBACCO CONTROL PROGRAM 1ST QUARTERLY MEETING	\N		\N	0	\N	2019-02-27	2019-02-27		0	0	0	 TECHNICAL
14000	Philippine Dental Association	\N	Philippine Dental Association	\N	0	\N	2016-05-25	2016-05-30	48	0	0	0	 
14001	CONSULTATION MEETING WITH NTP STAKE HOLDERS PROVISION OF FREE X-RAY THRU X-RAY VOUCHER SYSTEM	\N	DOH -REGION III	\N	0	\N	2020-03-03	2020-03-03		0	0	0	 TECHNICAL
14002	107th Annual Convention and Scientific Sessions	\N		\N	0	\N	0001-01-01	0001-01-01		0	0	0	 
14003	MAKING DATA MEANINGFUL : ANALYSIS AND PLANNING WORKSHOP FOR THE REGIONAL/PROVINCIAL/CITY MATERIAL DEATH SURVEILLANCE AND RESPONSE 	\N	DOH REGION III	\N	0	\N	2018-04-03	2018-04-04	16	0	0	0	 TECHNICAL
14004	Orientation on AO No. 2016-0043: Guidelines for the Nationwide Implementation on Dengue Rapid Diagnostic Test (RDT)	\N	Department of Health Regional Office III	\N	0	\N	2017-04-20	2017-04-21		0	0	0	 TECHNICAL
14005	QUARTERLY MEETING AMONG DISEASE SURVEILLANCE	\N	PHO - BALANGA	\N	0	\N	2017-09-18	2017-09-18	8	0	0	0	 TECHNICAL
14006	Training on Maternal Death Reporting and Review System for LGU's	\N	Department of Health Regional Office III	\N	0	\N	2016-07-05	2016-07-08	24	0	0	0	 TECHNICAL
14007	THEME: NURSING LEADERSHIP OF THE 21ST CENTURY POWER OF THE PAST, FORCE OF THE PRESENT, AND SHAPE OF THE FUTURE	\N	ANSAP	\N	0	\N	2017-03-12	2017-03-12	8	0	0	0	 TECHNICAL
14008	NTP VALIDATION.	\N	PHO - BALANGA	\N	0	\N	2017-01-02	2017-01-02	8	0	0	0	 TECHNICAL
14009	Pilot Testing of Online Event Based Surveillance and Response (OESR) Version 2	\N	Department of Health Epidemiology Bureau	\N	0	\N	2016-03-08	2016-03-11	32	0	0	0	 TECHNICAL
14010	CONSULTATIVE AND PLANNAING WORKSHOP ON TB IN JAILS AND PRISONS	\N	PHO - BALANGA	\N	0	\N	2016-12-14	2016-12-14	8	0	0	0	 TECHNICAL
14011	Back to Basics	\N	Makati Medical Center	\N	0	\N	2015-11-06	2015-11-06	8	0	0	0	 TECHNICAL
14012	28TH PNA REGION 3 ANNUAL CONVENTION WITH THE THEME: "HEALTH CARE SYSTEM'S RESILIENCE: A CONTINUING CHALLENGE FOR NURSES"	\N	PNA	\N	0	\N	2016-12-03	2013-12-03	8	0	0	0	 TECHNICAL
14013	Integrated Tuberculosis Information System (IT IS) Users Training	\N	Department of Health Regional Office III	\N	0	\N	2015-07-29	2015-07-31	24	0	0	0	 TECHNICAL
14014	Online Event Based Surveillance and Response (ESR) Training for Local Government Units	\N	Department of Health Epidemology Bureau	\N	0	\N	2015-03-08	2015-03-13	40	0	0	0	 TECHNICAL
14015	Accountancy Profession: Case and Applications	\N	Philippine Institute of Certified Public Accountants (PICPA0	\N	0	\N	2015-04-18	2015-04-18	8	0	0	0	 
14016	Board of Accountancy Updates and Accreditation of CPA's	\N	Philippine Institute of Certified Public Accountants (PICPA)	\N	0	\N	2015-04-21	2015-04-21	8	0	0	0	 
14017	The Philippine Standards of Audting and the Audit Process	\N	Philippine Insttite of Certified Public Accountants (PICPA)	\N	0	\N	2015-04-24	2015-04-24	8	0	0	0	 
14018	Basic Knowwledge and Audit of Cooperatives	\N	Philippine Institute of Certified Public Accountants (PICPA)	\N	0	\N	2015-04-29	2015-04-30	16	0	0	0	 
14019	Board of Accountancy Updates and Accrediation of CPA's	\N	Philippine Institute of Certified Public Accountants (PICPA)	\N	0	\N	2015-04-21	2015-04-21	8	0	0	0	 
14020	Basic Knowledge and Audit of Cooperatives	\N	Philippine Institute of Certified Public Accountants (PICPA)	\N	0	\N	2015-04-29	2015-04-30	16	0	0	0	 
14249	INTRODUCTION TO ASSET MANAGEMENT	\N	SGV and CO.	\N	0	\N	2016-06-06	2016-06-08	40	0	0	0	 TECHNICAL
14021	Moving Up to A New Horizon: An 8-day Seminar for CPA's in Commerce and Insdustry	\N	R.G Manabat & Co.	\N	0	\N	2016-04-19	2016-06-30	47	0	0	0	 
14022	How to handle BIR Audit and Investigation	\N	Philippine Institute of Certified Public Accountants (PICPA)	\N	0	\N	2017-02-04	2017-02-04	8	0	0	0	 
14023	How to Handle BIR Audit of Cooperatives	\N	Philippine Institue of Certified Public Accountants (PICPA)	\N	0	\N	2017-02-04	2017-02-04	8	0	0	0	 
14024	The Tax Exemption Aspect of Non- Stock, Non- Profit Organizations	\N	The Philippine Institute of Certified Public Accountants (PICPA)	\N	0	\N	2017-02-06	2017-02-06	8	0	0	0	 
14025	Financial Reporting Vs Tax Reporting	\N	Philippine Institute of Certified Public Accountants (PICPA)	\N	0	\N	2017-02-11	2017-02-11	8	0	0	0	 
14026	Values Formation Workshop	\N	Management Visions, Inc.	\N	0	\N	2016-08-26	2016-08-27	16	0	0	0	 
14027	English 201: Business Wrinting Workshop	\N	SMC Consolidated Power Corporation	\N	0	\N	2017-03-09	2017-03-09	4	0	0	0	 
14028	Clamping our Ties with Stakeholders; Strengthening Their Bipartite Mechanism	\N	Department of Labor and Employment	\N	0	\N	2017-05-26	2017-05-26	8	0	0	0	 
14029	Values Integration and Enhancement Workshop	\N	Management Visions, Inc.	\N	0	\N	2017-06-15	2017-06-16	16	0	0	0	 
14030	Integrated Coastal Management Systems (ICMS) Level 2 Certification Woekshops	\N	Partnership in Environment Mnagement for the Seas of East Asia (PEMSEA)	\N	0	\N	2019-12-13	2019-12-13	8	0	0	0	 
14031	PICPA Annual National Conference 	\N	Philippine Institute of Certified Public Accountants (PICPA)	\N	0	\N	2019-10-08	2019-10-11	24	0	0	0	 
14032	Internal Audit Resilience and Accountable Governance, Six Decades After	\N	Association of Government Internal Auditors (AGIA)	\N	0	\N	2019-10-08	2019-10-11	24	0	0	0	 
14033	Internal Audit Standards for Philippine Public Sector with Philippine Application Guidelines	\N	Commission on Audit	\N	0	\N	2019-08-28	2019-08-30	24	0	0	0	 TECHNICAL
14034	Forums on Heads of Internal Audit in the Public Sector	\N	Association of Government Internal Auditors	\N	0	\N	2019-08-16	2019-08-16	4	0	0	0	 TECHNICAL
14035	Training Workshop on Local Road Asset Management	\N	Department of Interior and Local Government (DILG)	\N	0	\N	2019-07-23	2019-07-25	24	0	0	0	 
14036	RA 9710 "Magna Carta of Women Act of 2009"	\N	Provincial Population Office	\N	0	\N	2019-07-12	2019-07-13	8	0	0	0	 TECHNICAL
14037	GUARDING YOUR IDENTITY; A Data Privacy Act Seminar	\N	National Privacy Commission 	\N	0	\N	2019-03-21	2019-03-21	8	0	0	0	 TECHNICAL
14038	INTERNAL AUDITORS: Enablers of Accountable and Progressive Transformation in the Government	\N	Association of Government Internal Auditors	\N	0	\N	2018-10-09	2019-10-12	32	0	0	0	 
14039	Writeshop for the Completion of Provincial Governance Reform Roadmap	\N	Department of Interior and Local Government (DILG)	\N	0	\N	2018-09-25	2018-09-26	16	0	0	0	 TECHNICAL
14040	3rd reginal Convention Of Central Luon BPLOs and LEIPOs	\N	Association of Business Permit and Licensing Officers, Inc.Region 3	\N	0	\N	2019-11-12	2019-11-13	16	0	0	0	 TECHNICAL
14041	Financial Literacy Seminar	\N	Provincial Government of Bataan	\N	0	\N	2019-11-20	2019-11-20	4	0	0	0	 
14042	Internal Audit Resilience and Accountable Governance, Six Decades After  (National Convention Cum Seminar)	\N	Association of Government Internal Auditors Inc.	\N	0	\N	2019-10-08	2019-10-11	32	0	0	0	 TECHNICAL
14043	Preparation of the Auditors In the Performance of Audit Planning, Actual Audit Fieldwork, Audit Writing and Audit Feedback / Exit Conference	\N	Department of the Interior and Local Government - Region III - Bataan	\N	0	\N	2019-09-11	2019-09-13	24	0	0	0	 TECHNICAL
14044	RA 9710 or the "Magna Carta of Women Act of 2009" and Team Effectiveness	\N	Provincial Government of Bataan	\N	0	\N	2019-07-12	2019-07-13	16	0	0	0	 
14045	Audit on Procurement	\N	Association of Government Internal Auditors Inc.	\N	0	\N	2018-12-11	2018-12-13	24	0	0	0	 
14046	Operations and Management Audit	\N	Association of Government Internal Auditors	\N	0	\N	2018-12-11	2018-12-13	24	0	0	0	 TECHNICAL
14047	Follow Through Training on Internal Audit: Instutionalizing Key LGU Internal Control Systems Through Effectiveness Documentation	\N	Department of the Interior and Local Government - Region III - Bataan	\N	0	\N	2018-11-27	2018-11-28	16	0	0	0	 
14048	Risk Based Thinking Seminar	\N	Neo Amca Innovative Solutions Corporation	\N	0	\N	2018-11-15	2018-11-15	8	0	0	0	 
14049	Internal Auditors Enablers of Accountable and Progressive Transformation in the Government (National Convention Cum Seminar)	\N	Department of the Interior and Local Government - Region III - Bataan	\N	0	\N	2018-11-27	2017-11-28	16	0	0	0	 
14050	Risk - Based Thinking Seminar 	\N	Neo Amca Innovative Solutions Corporation	\N	0	\N	2018-11-15	2018-11-15	8	0	0	0	 
14051	Effective Team Leaders Guide to Teamwork & Team Building	\N	Business Coach Inc.	\N	0	\N	2019-06-04	2019-06-14	8	0	0	0	 Supervisory
14052	Basic Leadership training	\N		\N	0	\N	2019-06-11	2019-06-11	8	0	0	0	 TECHNICAL
14053	Effctive Team Leaders Guide to Teamwork & Team Building	\N	Business Coach	\N	0	\N	2019-06-14	2019-06-14	8	0	0	0	 Supervisory
14054	Fundamentals of Organizational Dev'l	\N	Business Coach Inc.	\N	0	\N	2018-06-09	2018-06-09	8	0	0	0	 Supervisory
14055	Effective Team Leaders Guide To Teamwork & Team Building	\N	Business Coach Inc.	\N	0	\N	2019-06-14	2019-06-14	8	0	0	0	 Supervisory
14056	BasiC Leadership Training	\N	Business Coach Inc.	\N	0	\N	2019-06-11	2019-06-11	8	0	0	0	 Supervisory
14057	Fundamentals of Organizational Development	\N	Business Coach Inc.	\N	0	\N	2019-06-10	2019-06-10	8	0	0	0	 Supervisory
14058	Advanced Supervisory Skills	\N	Business Coach Inc.	\N	0	\N	2019-06-09	2019-06-09	8	0	0	0	 Supervisory
14059	Year - End Conference Regata: BLGF 2018  Cum Gad Training	\N	Bureau of Local Gov't. Finance	\N	0	\N	2018-12-10	2018-12-14	40	0	0	0	 TECHNICAL
14060	11th Pamas National Conference Seminar Facing the Challenge of Change	\N	Bureau of Local Gov't Finance	\N	0	\N	2018-04-17	2018-04-18	16	0	0	0	 TECHNICAL
14061	Cluster Training for Provincial Roll Out Lift	\N	Bureau of Local Gov't Finance 	\N	0	\N	2017-02-14	2017-02-16	24	0	0	0	 TECHNICAL
14062	Philippine Valuation Standard	\N	Bureau of Local Gov't Finance	\N	0	\N	2016-08-23	2016-08-26	32	0	0	0	 TECHNICAL
14063	Regata: BLGF Mimaropa Treasures and Assesors Exhibiting It's Resiliency Amidts	\N	Bureau of Local Gov't Finance	\N	0	\N	2016-03-16	2016-03-18	24	0	0	0	 TECHNICAL
14064	Comprehensive Real Estate Seminar	\N	Bureau of Local Gov't Finance	\N	0	\N	2015-02-13	2015-03-29	120	0	0	0	 TECHNICAL
14065	2019 Agia Annual Convention Cum Seminar	\N	Association of Government Internal Auditors, Inc.	\N	0	\N	2019-10-08	2019-10-11	24	0	0	0	 
14066	Internal Control Standard for Philippine Public Sector (ICSPPS) with Philippine Application Guidelines (PAG)	\N	Commission on Audit - Central Office	\N	0	\N	2019-09-25	2019-09-27	24	0	0	0	 
14067	Preparation of teh Auditors in the Performance of Audit Planning Actual Audit Fieldwork, Audit Report Writing	\N	Department of Interior and Local Government - Region III	\N	0	\N	2019-09-11	2019-09-13	24	0	0	0	 
14068	Government Procurement Reform Act (RA 9184) and Its IRR Updates	\N	Association of Government Internal Auditors	\N	0	\N	2019-04-24	2019-04-26	24	0	0	0	 
14069	Audit of Procurement	\N	Association of Government Internal Auditors	\N	0	\N	2019-04-02	2019-04-04	24	0	0	0	 
14070	Operations Management Audit	\N	Association of Government Internal Auditors	\N	0	\N	2018-12-11	2018-12-13	24	0	0	0	 
14071	Capability Development Training Program on Documentation in Local Governance	\N	Local Governance and Community Development Iniatives Inc.	\N	0	\N	2018-12-03	2018-12-05	24	0	0	0	 
14072	Institutionalizing Key LGU Internal Control Systems Through Effective Documentation	\N		\N	0	\N	2018-11-27	2018-11-28	16	0	0	0	 
14073	Writeshop for teh Completion of Provincial Governance Reform Roadmap for 2019 - 2022	\N	Department of Interior and Local Government - Bataan	\N	0	\N	2018-09-25	2018-09-26		0	0	0	 
14074	Intergrated Coastal Management Systems (ICMS) Level 2 Certification Workshops	\N	Partnership in Environment Management for the Seas of East Asia (PEMSEA)	\N	0	\N	2019-12-13	2019-12-13	8	0	0	0	 TECHNICAL
14075	Forum for Heads of Internal Audit in the Public Sector	\N	Association of Government Internal Auditors	\N	0	\N	2019-08-16	2019-08-16	4	0	0	0	 TECHNICAL
14076	RA 9710 "Magna carta of Women Act of 2009"	\N	Provincial Population Office	\N	0	\N	2019-07-12	2019-07-13	8	0	0	0	 TECHNICAL
14077	GUARDING YOUR IDENTITY: A data Privacy Act Seminar	\N	national Privacy Commission	\N	0	\N	2019-03-21	2019-03-21	8	0	0	0	 TECHNICAL
14078	INTERNAL AUDITORS: Enablers of Accountables and Progressive Transformation in the Government	\N	Association of Government Internal Auditors	\N	0	\N	2018-10-09	2019-10-12	32	0	0	0	 TECHNICAL
14079	Documentation on Local Governance	\N	Local Governance and Community Development Iniatives, Inc	\N	0	\N	2018-12-03	2018-12-05	24	0	0	0	 TECHNICAL
14080	Training - Workshop on the Implementation of Internal Control System of Provinvial LGUs the CMGP Program	\N	DILG	\N	0	\N	2017-03-27	2017-03-31	40	0	0	0	 
14081	Training - Workshop on the Implementation of Internal Audit and Internal Control of Provincial LGUs Under the CGMP Program	\N	DILG	\N	0	\N	2017-03-27	2017-03-31	40	0	0	0	 
14082	Roll - Out of Training on Budget Operations Manual for LGUs 2016 Edition	\N	DBM	\N	0	\N	2017-02-27	2017-03-02	32	0	0	0	 
14083	Consultation - Workshop on the Preparation of Governance Reform Targets for 2017 CMGP and other OPDS Locally - Funded Road Projects	\N	DILG	\N	0	\N	2016-12-07	2016-12-09	24	0	0	0	 
14084	Intergrated Planning Course on Incident Command System 2	\N	OCD 3/ RDRRMC 3	\N	0	\N	2016-08-15	2016-08-19	40	0	0	0	 
14085	Updates in Procurement and Regulatory Matters in the Civil Service	\N	JPLCV Center for Academic Values Foundation Inc.	\N	0	\N	2014-03-25	2014-03-27	24	0	0	0	 
14086	Preparation of Project Procurement Management Plan and Annual Procurement Plan	\N	SGCE Training Center	\N	0	\N	2014-07-22	2014-07-25	32	0	0	0	 
14087	Preparation of Poject Procurement Management Plan and Annual Procurement Plan	\N	SGCE Training Center	\N	0	\N	2014-07-22	2014-07-25	32	0	0	0	 
14088	Local Disaster Risk and Reduction Management Plan (LDRRMP) Writeshop	\N	Reginal Disaster Risk Reduction and Management Council 3	\N	0	\N	2014-01-16	2014-01-17	16	0	0	0	 
14089	Supervisory Development CoursE (SDC) Track III	\N	Civil Service Commission - Region III	\N	0	\N	2015-05-13	2015-05-15	24	0	0	0	 
14090	Seminar on BIR Tax Updates and How to HAndle Tax Audit / Ivestigation	\N	Philippine Institute of Certified Public Accountant - Bataan Chapter	\N	0	\N	2010-02-02	2010-02-02	8	0	0	0	 
14091	MAGNA CARTA FOR W0MEN AND TEAM EFFECTIVENESS	\N	Provincial General Services Office	\N	0	\N	2017-04-18	2017-04-18	4	0	0	0	 
14092	MAGNA CARTA F0R W0MEN AND TEAM EFFECTIVENESS	\N	Provincial General Services Office	\N	0	\N	2017-04-18	2017-04-18	4	0	0	0	 
14093	MAGNA CARTA FOR WOMEN AND TEAM EFFECTiVENESS	\N	Provincial Government of Bataan 	\N	0	\N	2017-04-18	2017-04-18	4	0	0	0	 
14094	3 ANNUAL CONVENTION WITH THE THEME: HEALTH CARE SYSTEM'S RESILIENCE: A CONTINUING CHALLENGE FOR NURSES	\N	PNA	\N	0	\N	2016-12-03	2016-12-03	8	0	0	0	 TECHNICAL
14095	ORIENTATION ON PHILIPPINE HEALTH AGENDA PROVINCE OF BATAAN	\N	DOH - BATAAN	\N	0	\N	2016-11-09	2016-11-09	8	0	0	0	 TECHNICAL
14096	NTP DATA VALIDATION.	\N	PROVINCIAL HEALTH OFFICE 	\N	0	\N	2020-03-05	2020-03-05	8	0	0	0	 TECHNICAL
14097	QUARTERLY MEETING WITH DISEASE SURVEILLANCE COORDINATORS	\N	PROVINCIAL HEALTH OFFICE - BALANGA	\N	0	\N	2016-09-13	2016-09-13	8	0	0	0	 TECHNICAL
14098	SEMINAR ON CHILD PROTECTION POLICY	\N	Bataan National High School Guidance Personel	\N	0	\N	2016-07-11	2016-07-11	8	0	0	0	 TECHNICAL
14099	SEMINAR 0N CHILD PR0TECTION POLICY	\N	Bataan National High School Guidance Personel	\N	0	\N	2016-07-11	2016-07-11	8	0	0	0	 TECHNICAL
14100	10th PAGSO National Convention	\N	Philippine Association of GSO	\N	0	\N	2015-05-13	0205-05-16	32	0	0	0	 
14101	10th PAGS0 National Convention	\N	Philippine Association of GSO Inc.	\N	0	\N	2015-05-13	2015-05-16	32	0	0	0	 
14102	CONSULTATIVE MEETING ON THE UPDATES OF EMERGING INFECTIOUS DISEASE (ZIKA VIRUS AND JAPANESE ENCEPHALITITS) FOR PHO'S, PRIVATE & GOVERNMENT	\N	PHO - BALANGA	\N	0	\N	2016-07-01	2016-07-01	8	0	0	0	 TECHNICAL
14103	GAD BASIC CONCEPTS & ISSUES	\N	PGO - PPO - BALANGA	\N	0	\N	2016-06-24	2016-06-24	2	0	0	0	 TECHNICAL
14104	GOVERNMENT HOSPITAL DENGUE SCHOOL BASED IMMUNIZATION MEETING	\N	DOH - REGION III	\N	0	\N	2016-06-03	2016-06-03	8	0	0	0	 TECHNICAL
14105	MEETING WITH DENGUE SCHOOL BASED IMMUNIZATION STAKEHOLDERS	\N	DOH - REGION III	\N	0	\N	2016-03-28	2016-03-28	8	0	0	0	 TECHNICAL
14106	Magna Carta for Women and Team Effectiveness	\N	Provincial Government of Bataan	\N	0	\N	2017-04-21	2017-04-21		0	0	0	 
14107	EMERGENCY CONSULTATIVE MEETING ON DENGUE AMONG STAKEHOLDERS	\N	DOH - REGION III	\N	0	\N	2015-10-27	2020-10-27	8	0	0	0	 TECHNICAL
14108	Magna CArta for Women and Team Effectiveness	\N	Provincial Government of Bataan	\N	0	\N	2017-04-21	2017-04-21		0	0	0	 
14109	ORIENTATION OV EVENT - BASED SURVEILLANCE AND RESPONSE (ESR)	\N	PHO & DOH REGION III	\N	0	\N	2015-09-08	2015-09-08	8	0	0	0	 TECHNICAL
14110	EMERGENCY CONSULTATIVE MEETING ON MERS - COV	\N	PHO - BALANGA	\N	0	\N	2015-07-01	2015-07-01	8	0	0	0	 TECHNICAL
14250	ASSR 101 and 102: NEW STAFF PROGRAM	\N	SGV and Co.	\N	0	\N	2016-12-06	2016-12-12	40	0	0	0	 
14111	Magna Carta for WOmen and Team Effectiveness	\N	Provincial General Services Office	\N	0	\N	2017-04-18	2017-04-18	4	0	0	0	 Personal Development
14112	Gender and Development Program and Basic Concrete	\N	Provincial General Services Office	\N	0	\N	2016-04-22	2016-04-22	10	0	0	0	 
14113	Track I Supervisory Development Course	\N	Civil Service Comission	\N	0	\N	2016-11-15	2016-11-17	24	0	0	0	 
14114	Finalization of FM MNCHN Referral	\N	Bataan General Hospital/ Department of Health	\N	0	\N	2016-10-18	2016-10-19	16	0	0	0	 
14115	Training on Hospital Infection Control	\N	Department of Health	\N	0	\N	2016-08-25	2016-08-26	16	0	0	0	 
14116	Validation of Red Orchid Award	\N	Department of Health	\N	0	\N	2015-03-24	2015-03-25	16	0	0	0	 
14117	Team Building on Magna Carta for Women and Effectiveness Seminar (GAD)	\N	Provinvial Government of Bataan	\N	0	\N	2017-04-18	2017-04-18	2	0	0	0	 TECHNICAL
14118	Supervisory Development Course (ADC) Track	\N	Civil Service Commission - Region 3	\N	0	\N	2017-11-15	2017-11-17	24	0	0	0	 Supervisory
14119	Supervisory DEvelopment Course (SDC) Track 1	\N	Civil Service Commission - Region III	\N	0	\N	2016-11-15	2016-11-17	24	0	0	0	 
14120	Gender and Development Program and Basic COncepts	\N	Provincial Government of Bataan	\N	0	\N	2016-04-22	0206-04-23	16	0	0	0	 TECHNICAL
14121	Procedures for Disbursement of Transactions	\N	Provincial Accountant Office	\N	0	\N	1014-05-09	2014-05-09	8	0	0	0	 TECHNICAL
14169	CODE OF CONDUCT AND ETHICAL STANDARDS	\N	PROVINCIAL HUMAN RESOURCE AND MANAGEMENT OFFICE	\N	0	\N	2015-10-28	2015-10-29	16	0	0	0	Professional
14122	SEMINAR-WORKSHOP IN ORAL & WRITTEN COMMUNICATION THEME: "LETS TALK & WRITE EFFECTIVELY" 	\N	MARITIME ACADEMY OF ASIA AND THE PACIFIC	\N	0	\N	2019-10-18	2019-10-18	8	0	0	0	 TECHNICAL
14123	Integrated HIV and Program Collaborations, Strategic Directions and Updates for Medtech	\N	Department of Health - Regional Office III	\N	0	\N	2017-04-18	2017-04-20	24	0	0	0	 TECHNICAL
14124	ISO 9001 - 2015 Awareness Seminar	\N	Provincial Government of Bataan	\N	0	\N	2017-07-27	2017-07-27	8	0	0	0	 TECHNICAL
14125	CONVERSATIONS WITH LOCAL CHIEF EXECUTIVES THEME " RATIONALIZING HUMAN RESOUCES ACTIONS IN THE LOCAL GOVERNMENT UNITS IN REGION III	\N	CIVIL SERVICE COMMISSION 	\N	0	\N	2019-10-09	2019-10-10	8	0	0	0	 TECHNICAL
14126	ICT Resource Acquisition - Project Terms of Reference Seminar	\N	Provincial Government of Bataan	\N	0	\N	2017-04-18	2017-04-18	2	0	0	0	 TECHNICAL
14127	ICT REsource Acquisition - Project Terms of Reference Seminar	\N	Department of Information and Communications Technology - Region 3 	\N	0	\N	2016-12-05	2016-12-09	40	0	0	0	 TECHNICAL
14128	Work Attitude and Values ENhancement Training	\N	Civil Service Commission	\N	0	\N	2016-06-20	2016-06-21	16	0	0	0	 TECHNICAL
14129	Magna Carta for Women (RA 9710) 7 Anti Violence Against Women & Children (RA 9262)	\N	Provincial Government of Bataan	\N	0	\N	2016-04-15	2016-04-15	8	0	0	0	 TECHNICAL
14130	Streamlining Procurement of Microsoft Products and Sevices for Philippine Government Agencies	\N	Department of Budget and Management  - Procurement Service	\N	0	\N	2015-08-07	2015-08-07	8	0	0	0	 TECHNICAL
14131	2019 PUBLIC SECTOR HR SYMPOSIUM "MOVING TOGETHER TOWARDS AMIBITIONNATION 2040"	\N	CIVIL SERVICE COMMISSION 	\N	0	\N	2019-07-24	2019-07-26	24	0	0	0	 TECHNICAL
14132	2018 PUBLIC SECTOR HR SYMPOSIUM "ACHIEVING BREAKTHROUGH RESULTS THROUGH STRATEGIC HUYMAN RESOURCE"	\N	CIVIL SERVICE COMMISSION	\N	0	\N	2018-07-18	2018-07-20	16	0	0	0	
14133	SEMINAR WORKSHOP ON REVISED RULES ON ADMINISTRATIVE CASES IN THE CIVIL SERVICE 	\N	CIVIL SERVICE COMMISSION	\N	0	\N	2015-10-28	2015-10-29	16	0	0	0	 
14134	THE HEARTWARE OF MANAGING PROJECTS	\N	CIVIL SERVICE COMMISSION	\N	0	\N	2019-03-20	2019-03-20	8	0	0	0	 
14135	2017 LOCAL EXECUTIVES PROGRAM	\N	CIVIL SERVICE COMMSSION	\N	0	\N	2017-09-04	2017-09-05	16	0	0	0	 
14136	Transforming Processes and Outcomes	\N	Philippine Pharmacist Association	\N	0	\N	2018-04-12	2018-04-12	8	0	0	0	 TECHNICAL
14137	2016 REGIONAL COUNCIL OF PERSONNEL OFFICERS CAPABILITY BUILDING SEMINAR 	\N	CIVIL SERVICE COMMISSION	\N	0	\N	2016-03-15	2016-03-17	0	0	0	0	 
14138	Aligning Pharmacy Practice and Current Regulatory Reforms	\N	Philippine Pharmacist Association	\N	0	\N	2017-08-12	2017-08-12	8	0	0	0	 TECHNICAL
14139	Aligning Pharmacy Practice with Current Regulat0ry Reforms	\N	Philippine Pharmacist Association	\N	0	\N	2017-08-12	2017-08-12	8	0	0	0	 TECHNICAL
14140	Crash Course for Speech Improvement and Business Correspondence	\N	Office of the Provincial Governor	\N	0	\N	2016-11-21	2016-12-09	30	0	0	0	 TECHNICAL
14141	Disaster Preparedness TRaining	\N	Provincial Disaster Risk Reduction Office	\N	0	\N	2016-03-18	2016-03-18	8	0	0	0	 TECHNICAL
14142	Briefing on BSP Demonization Program	\N	Drugstore Association of the Philippines	\N	0	\N	2015-03-13	2015-03-15		0	0	0	 Supervisory
14143	52nd Pamet Annual Convention - Empowering Medical Technologists	\N	Philippine Association of Medical	\N	0	\N	2016-11-08	2016-11-10	24	0	0	0	 TECHNICAL
14144	Refresher Course on HIV Proficiency	\N	Department of Health - San Lazarro Hospital Std. Aids	\N	0	\N	2016-05-12	2016-05-12	8	0	0	0	 TECHNICAL
14145	Malaria Quality Assurance System Assessment and Tracking of Implementation	\N	Departmnet of Health - Regional Office III	\N	0	\N	2014-11-24	2015-11-25	16	0	0	0	 TECHNICAL
14146	Knowing / Understanding Your Customer	\N	Pharex Corporation	\N	0	\N	2012-04-18	2012-04-18	8	0	0	0	 Supervisory
14147	9th Regional Conference - PAMET North Luzon: Soaring Higher to Excellence	\N	Philippine Association of Medical Technologist National Chapter 	\N	0	\N	2015-07-23	2015-07-25	24	0	0	0	 TECHNICAL
14148	Training on Donor Recruitments, Care and Retention	\N	Department of Health - Regional 	\N	0	\N	2015-03-04	2015-03-06	24	0	0	0	 TECHNICAL
14149	Seminar and Training for the Updates on the Revised Implementing Rules and Regulations of Republic Act No. 9184	\N	Provincial Government of Bataan	\N	0	\N	2017-04-20	2017-04-21	16	0	0	0	 TECHNICAL
14150	Magna Carta for women and Team Effectiveness Seminar	\N	Provincial Government of Bataan	\N	0	\N	2017-10-28	2017-10-28	8	0	0	0	 TECHNICAL
14151	Regional Voluntary Blood Services  Summit and Revisiting LGU Score Card	\N	Department of Health - Regional Office III	\N	0	\N	2015-03-23	2015-03-26	16	0	0	0	 TECHNICAL
14152	Crash Course for Speech Improvement and Business Correspondence and Writing for Bataan Provinvial Capitol Employee	\N	Provincial Government of Bataan	\N	0	\N	2017-10-28	2017-10-28	8	0	0	0	 TECHNICAL
14153	Crash Course for Speech Improvement and Business Correspondence and Writing for Bataan Provincial Capitol EmployEe	\N	Office of the Provincial Governor	\N	0	\N	2016-11-21	2016-12-09	28	0	0	0	 TECHNICAL
14154	2016 PGSO team Building and Seminar on Gender Development Program and Basic Concepts	\N	Provincial Government of Bataan and Provincial General Services Office	\N	0	\N	2016-04-22	2016-04-23	16	0	0	0	 TECHNICAL
14155	Streamline Procurement of Microsoft Products and Services for Philippine G0vernment Agencies	\N	Procurement Srvice Philippine Government Electronic Procurement System	\N	0	\N	2015-08-07	2015-08-07	4	0	0	0	 TECHNICAL
14156	Procurement Training for PPMIU & BAC of LGUs'	\N	Philippine Ruiral Development Project (PRDP) Regional Project Coordination Office (RPCO-3)	\N	0	\N	2015-04-14	2015-04-14	8	0	0	0	 TECHNICAL
14161	Lecture Inovation of Chapter Officers,Members		Phil Academy Of Family Physician Bataan Chapter		187	\N	2017-09-26	2017-09-26	\N	0	0	0	
14162	First Regional Convention of Personal Association of the Philippines Chapter Caravan		Perinatal Assive Office Philippine Central Chapter		187	\N	2018-07-20	2018-07-20	\N	0	0	0	
14163	Philippine College of Occupational Medicine 19Th Midyear Council Occupational Health Psysician		Phil Counsil of Occupational Medicine		187	\N	2017-09-28	2017-09-30	\N	0	0	0	
14164	Training of  Tables Exposure Journal Bites		DOH -  Regional Office 3		187	\N	2017-08-08	2017-08-11	\N	0	0	0	
14165	REGIONAL CONVENTION OF HRMP's 2017	\N	CSC REGION 3	\N	0	\N	2017-05-09	2017-05-11	24	0	0	0	SUPERVISORY
14166	ISO ORIENTATION.	\N	PROVINCIAL GOVERNOR'S OFFICE	\N	0	\N	2016-12-01	2016-12-01	8	0	0	0	SUPERVISORY
14167	SPMS FOR LEADERS	\N	PROVINCIAL HUMAN RESOURCE AND MANAGEMENT OFFICE	\N	0	\N	2016-11-28	2016-11-28	8	0	0	0	SUPERVISORY 
14168	REGIONAL CONVENTION OF HRMP's 2016	\N	CSC REGION III	\N	0	\N	2016-03-14	2016-03-16	24	0	0	0	SUPERVISORY
14170	REGIONAL CONVENTION OF HRMP's 2015	\N	CSC REGION III	\N	0	\N	2015-03-17	2015-03-19	24	0	0	0	SUPERVISORY 
14171	SEMINAR ON MAKING PERSONNEL WORK MECHANISM	\N	CSC REGION III	\N	0	\N	2015-07-09	2015-07-10	16	0	0	0	Supervisory
14172	SUPERVISORY DEVELOPMENT COURSE TRACK 3	\N	CSC REGION III	\N	0	\N	2014-02-24	2014-02-26	24	0	0	0	SUPERVISORY 
14173	REGIONAL CONVENTION OF HRMP's 2014	\N	CSC REGION III	\N	0	\N	2014-05-14	2014-05-16	24	0	0	0	SUPERVISORY 
14174	EMPLOYEES COMPENSATION PROGRAM	\N	EMPLOYEES COMPENSATION COMMISSION	\N	0	\N	2014-02-13	2014-02-13	8	0	0	0	 TECHNICAL
14175	Magna Carta for WOmen and Team Effectiveness Seminar	\N	Provincial General Services Office	\N	0	\N	2018-04-13	2018-04-13	4	0	0	0	 Personal Development
14176	LUZON CONVENTION FOR HRMPs 2013	\N	CSC REGION III	\N	0	\N	2013-08-13	2013-08-15	24	0	0	0	SUPERVISORY
14177	Magna Carta for WOmen and Team effectiveness Seminar	\N	Provincial General Services Office	\N	0	\N	2018-04-13	2018-04-13	4	0	0	0	 Personal Development
14178	REGIONAL CONVENTION OF HRMPs	\N	CSC REGION III	\N	0	\N	2013-05-08	2013-05-10	24	0	0	0	SUPERVISORY 
14179	SPMS	\N	CSC REGION III	\N	0	\N	2013-10-29	2013-10-29	8	0	0	0	 TECHNICAL
14180	PUBLIC SECTOR UNIONISM	\N	CSC REGION III	\N	0	\N	2013-11-28	2013-11-29	16	0	0	0	Professional
14181	MAGNA CARTA FOR WOMEN AND TEAM EFFECTIVENESS SEMINAR	\N	PROVINCIAL GENERAL SERVICES OFFICE	\N	0	\N	2018-04-13	2018-04-13	4	0	0	0	 Personal Development
14182	LIVING, LOVING AND SERVING AS A LEADER	\N	CSC REGION III	\N	0	\N	2011-05-17	2011-05-18	16	0	0	0	SUPERVISORY 
14183	MAGNA CARTA FOR WOMEN AND TEAM EFFECTIVENESS SeMINAR	\N	Provincial General Services Office	\N	0	\N	2018-04-13	2018-04-13	4	0	0	0	 Personal Development
14184	Supply ManAgement Support System	\N	Treasury Offfice of Province of Bataan	\N	0	\N	2018-10-09	2018-10-09	8	0	0	0	 Training
14185	SUpply ManAgement Support System	\N	Treasury Office of Province of Bataan	\N	0	\N	2018-10-09	2018-10-09	8	0	0	0	 Training
14186	SEMINAR / TRAINING FOR THE UPDATES ON THE REVISED IMPLEMENTING RULES & REGULATIONS OF REPUBLIC ACT NO.9184	\N	Provincial Government of Bataan	\N	0	\N	2017-04-20	2017-04-21	16	0	0	0	 TECHNICAL
14187	PROVINCIAL GENERAL SERVICES OFFICE (PGSO0 TEAM BUILDING AND SEMINAR ON MAGNA CARTA FOR WOMEN AND TEAM EFFECTIVENESS SEMINAR	\N	City Government of Santa Rosa, Laguna	\N	0	\N	2017-02-16	2017-02-16	8	0	0	0	 Team Training
14188	FMIS BENCHMARKING HELD AT THE CITY OF SANTA ROSA, LAGUNA	\N	City Government of Santa Rosa, Laguna	\N	0	\N	2017-02-16	2017-02-16	8	0	0	0	 TECHNICAL
14189	CONSULTATION - WORKSHOP ON THE PREPARATION OF GOVERNMENT REFORM TARGETS REQUIRED FOR 2017 ONDITIONAL MATCHING TO PROVINCES (CGMP) AND OTHER OPDS LOCALLY - FUNDED ROAD PROJECTS	\N	Department of the Interior and Local Government	\N	0	\N	2016-07-12	2016-09-12	24	0	0	0	 TECHNICAL
14190	ORIENTATION ON THE ENHANCED PUBLIC FINANCIAL MANAGEMENT (PFM) ASSESSMENT TOOL, FOR LOCAL GOVERNMENT UNITS AND THE LATEST PFMAT SOFTWARE AT DBM ROIII CONFERENCE ROOM	\N	Department of Budget and Management	\N	0	\N	2016-11-11	2016-11-11	8	0	0	0	 TECHNICAL
14191	Transforming the government financial sector in the era of asean integration	\N	Association of Government Accountants of the Philippines, Inc. Agap Convention-Seminar	\N	0	\N	2017-10-18	2017-10-21		0	0	0	 
14192	16 HOURS OF COMMUNICATION DEVELOPMENT TRAINING (ORAL & WRITTEN)	\N	Provincial Human Resource Management Office	\N	0	\N	2016-09-11	2016-09-11	16	0	0	0	 Personal Development
14193	Certificate of Completion for ISO 9001:2015 Internal quality Audit	\N	NEO AMCA Innovative Solutions Corporation	\N	0	\N	2017-08-30	2017-08-30		0	0	0	 
14194	STRATEGIC PERFORMANCE MaNAGEMENT SYSTEM FOR LEADERS	\N	Provincial Human Resource Management Office	\N	0	\N	2016-10-28	2016-10-28	8	0	0	0	 Managerial
14195	RE-ORIENTATION OF PROCUREMENT PROCESS HEALD AT OTEL PAMPANGA, CITY OF SAN FERNANDO, PAMPANGA	\N	Philippine Rural Development Project	\N	0	\N	2016-05-10	2016-05-10	8	0	0	0	 TECHNICAL
14196	Seminar-Workshop on the improvement on detailed procurement process, propoerty and supply management and legal remedies in audit	\N	JPLCV Center for Academinc Values Foundation, Inc.	\N	0	\N	2017-07-04	2017-07-06		0	0	0	 
14197	WHAT YOU MUST KNOW ABOUT PROCUREMENT LAW AND ITS IRR HELD AT EDSA SHANGRI-LA HOTEL, MANDALUYONG CITY, PHILIPPINES	\N	Center for Global Best Practices	\N	0	\N	2016-09-29	2016-09-30	16	0	0	0	 TECHNICAL
14198	Seminar-Workshop on the improvement of revenue generation strategies of Provincial LGU's under the CMGP program	\N	DILG- Office of Project Development Services	\N	0	\N	2017-05-29	2017-06-02		0	0	0	 
14199	Training-Worskhop on the implementation of internal audit and internal control system of Provincial LGU's under the CMGP porgram	\N	DILG	\N	0	\N	2017-03-27	2017-03-31		0	0	0	 
14200	PHILIPPINE ASSOCIATION OF GENERAL SERVICES OFFICERS (PAGSO) 11TH NATIONAL CONVENTION	\N	Philippine Association of Gneral Services Officers (PAGSO), Inc.	\N	0	\N	2016-06-15	2016-06-18	32	0	0	0	 TECHNICAL
14201	SEMINAR ON LIVIN, LOVING AND SERVING AS A LEADER	\N	Civil Service Commission Regional Office No.3	\N	0	\N	2015-10-20	2015-10-20	8	0	0	0	 Managerial
14203	SUPERVISORY DEVELOPMENT COURSE TRACK I	\N	Civil Service Commission Regional Office No.3	\N	0	\N	2015-05-10	2015-07-10	24	0	0	0	 Managerial
14204	Performance monitoring and coaching	\N	Ms. Maria Rosario Carlos	\N	0	\N	2018-11-06	2018-11-06	1	0	0	0	 
14205	RETOOLING FOR PROCUREMENT PROCESS FOR PPMIU & BAC OF LGUS CUM PRE - PROCUREMENT CONFERENCE 	\N	Philippine Rural Development Project Under Regional Project Coordination Office 3	\N	0	\N	2015-07-21	2015-07-22	24	0	0	0	 
14206	PHILIPPINE ASSOCIATION OF GENERAL SERVICES OFFICERS (PAGSO) NATIONAL CONVENTION	\N	Philippine Association of General Services Officers Inc.	\N	0	\N	2015-05-13	2015-05-16	32	0	0	0	 TECHNICAL
14207	PROCUREMENT TARINING FOR PPMIU AND BAC OF LGUS HELD AT EUROTEL HOTEL, ANGELES CITY OF PAMPANGA	\N	Philippine Rural Development Project Under Regional Project Coordination Office 3	\N	0	\N	2015-04-14	2015-04-15	16	0	0	0	 TECHNICAL
14208	Capitol Employees Of Bataan Multi Purpose Cooperative	\N	Director/ Gift giving and Salu-Salo with Elders at Bahay Puso	\N	0	\N	2016-12-16	2016-12-16	4	0	0	0	 
14209	MAGNA cARTA FOR WOMEN AND TEAM EFFECTIVENESS SEMINAR.	\N	Provincial general Services Office	\N	0	\N	2018-04-13	2018-04-13	4	0	0	0	 Personal Development
14210	Philippine Institute of Certified Public Accountants (PICPA) Bataan Chapter	\N	Adviser/Visit to Elders at Bahay Puso	\N	0	\N	2011-07-18	2011-07-18	4	0	0	0	 
14211	SUPPLY MANAGEMENT SUPPORT SYSTEM.	\N	Treasury Office of Province of Bataan	\N	0	\N	2018-10-09	2018-10-09	8	0	0	0	 Training
14212	Philippine Institute of Certified Public Accountants (PICPA) Bataan chapter	\N	Adviser/Seminar for 3rd and 4th year accounting students and quiz bowl	\N	0	\N	2011-07-20	2011-07-20	8	0	0	0	 
14213	MAGNACARTA FOR WOMEN AND TEAM EFFECTIVENESS SEMINAR	\N	Provincial Genral Services Office	\N	0	\N	2017-04-18	2017-04-18	4	0	0	0	 Personal Development
14214	Philippine institute of Certified Public Accountants (PICPA) Bataan Chapter	\N	Vice President- Membership / Picpans meet the JPIANS	\N	0	\N	2015-07-14	2015-07-16	12	0	0	0	 
14215	ORIENTATION ON GAD BASIC CONCEPTS	\N	Team Building / GAD	\N	0	\N	2016-04-22	2016-04-23	16	0	0	0	 
14216	Performance monitoring and coaching,	\N	Ms. Maria Rosario Carlos	\N	0	\N	2018-01-19	2018-01-19	1	0	0	0	technical
14217	PHL ASSR 20x intermediate Staff Program I and II	\N	SYCIP, GORRES, VELAYO & Co.	\N	0	\N	2015-12-15	2015-12-18	30	0	0	0	technical
14218	PHL ASSR 102 New Staff Proggram II	\N	SYCIP, GORRES, VELAYO & CO..	\N	0	\N	2015-12-03	2015-12-10	44	0	0	0	technical
14219	PHL ASSR 101 NEW STAFF PROGRAM 1	\N	SYCIP, GORRES, VELAYO & CO.	\N	0	\N	2016-12-02	2016-12-09	46.5	0	0	0	technical
14220	HELD ON: PUBLIC GOVERNANCE FORUM (PROFICIENCY STAGE)	\N	Institute for Solidarity in Asia	\N	0	\N	2015-05-14	2015-05-14	8	0	0	0	 TECHNICAL
14221	HELD ON: GOVERNANCE FORUM (PROFICIENCY STAGE)	\N	Institute for Solidarity in Asia	\N	0	\N	2015-05-14	2015-05-14		0	0	0	 TECHNICAL
14222	SENIOR FINANCE OFFICIALS' MEETING AND THE WORKSHOP ON FINANCIAL MANAGEMENT THROUGH TRANSPARENCY AND REFORMS DRUING APEC SUMMIT	\N	Department of Finance and National Organizing Council	\N	0	\N	2015-06-09	2015-06-12	28	0	0	0	 TECHNICAL
14223	CONFERENCE ON BUILDING ON ENTREPRENEURIAL LEADERSHIP TOWARDS COMPETITIVENESS FOR MORE SUSTAINABLE GREEN AND INCLUSIVE GROWTH	\N	Department of Interior and Local Government	\N	0	\N	2015-10-23	2015-10-23	8	0	0	0	 TECHNICAL
14224	SEMINAR WORKSHOP ON REVISED RULES ON ADMINISTRATIVE CASES IN CIVIL SERVICE	\N	Civil Service Commission	\N	0	\N	2015-10-28	2015-10-29	16	0	0	0	 TECHNICAL
14225	PROJECT MANAGEMENT SEMINAR	\N	Department of Trade and Industry	\N	0	\N	2015-12-03	2015-12-03	8	0	0	0	 TECHNICAL
14226	SEMINAR - WORKSHOP ON REVISED RULES ON ADMINISTRATIVE CASES IN CIVIL SERVICE	\N	Civil Service Commission	\N	0	\N	2015-10-28	2015-10-29	16	0	0	0	 TECHNICAL
14227	OFFICE OF STARTEGY MANAGEMENT (OSM) PLANNING WORKSHOP	\N	Institute for Solidarity In Asia	\N	0	\N	2016-01-14	2016-01-16	20	0	0	0	 TECHNICAL
14228	GENDER AND DEVELOPMENT (GAD) SEMINAR CUM TEAM BUILDING	\N	Provincial Government of La Union	\N	0	\N	2015-06-10	2015-06-11	12	0	0	0	 TECHNICAL
14229	ISO 9001: 2015 ADN RISK AND OPPORTUNITIES MANAGEMENT	\N	Bataan General Hospital	\N	0	\N	2016-08-24	2016-08-26	20	0	0	0	 TECHNICAL
14230	TARINING ON CENSUS AND SURVEY PROCESSING SYSTEM (CsPro) USING PUBLIC UTILITIES FILES	\N	Philippine Statistics Authority - Bataan	\N	0	\N	2017-03-07	2017-03-07	8	0	0	0	 TECHNICAL
14231	BIR E-SALES REPORTING SYSTEM	\N	BIR REGIONAL DIRECTOR'S OFFICE 	\N	0	\N	2014-06-15	2014-06-15	2	0	0	0	 TECHNICAL
14232	SSS R3 ONLINE REPORTING SYSTEM	\N	SSS CUBAO MAIN	\N	0	\N	2013-04-22	2013-04-22	3	0	0	0	 TECHNICAL
14233	PHILHEALTH ELECTRONIC PREMIUM REPORTING SYSTEM	\N	PHILHEALTH QUEZON AVENUE	\N	0	\N	2015-02-26	2015-02-26	3	0	0	0	 TECHNICAL
14234	FIRST SM SUMMIT - BRICKS CLICK	\N	SM SHOPPING CENTER MANAGEMENT	\N	0	\N	2015-10-21	2015-10-22	3	0	0	0	 TECHNICAL
14235	GENDER AND dEVELOPMENT (GAD) SEMINAR CUM TEAM BUILDING	\N	Provincial Government of Bataan	\N	0	\N	2017-12-29	2017-12-29	4	0	0	0	 TECHNICAL
14236	PROVINCE OF LA UNION MINI BOOTCAMP	\N	Provincial Government of Bataan	\N	0	\N	2018-01-30	2018-01-31	16	0	0	0	 TECHNICAL
14237	COUNTRYSIDE DEVELOPMENT OF A CULTURE OF INTEGRITY THROUGH MULTI SECTORAL LOCAL GOVERNMENT INTERGRITY CIRCLES INTRODUCTORY TRAINING	\N	Aisan Institute of Management  (AIM), Konrad - Adenaur - Stiftung Philippines, Logic Network Project	\N	0	\N	2018-08-07	2018-08-09	24	0	0	0	 TECHNICAL
14238	SUPERVISORY DEVELOPMENT COURSE TRACKS II AND III	\N	Civil Srvice Commission Regional Office	\N	0	\N	2018-10-12	2018-11-16	40	0	0	0	 TECHNICAL
14239	A CAPABILITY DEVELOPMENT TRAINING PROGRAM ON DOCUMENTATION IN LOCAL GOVERNANCE	\N	Local Governance and Community Development Initiatives Inc.	\N	0	\N	2018-12-03	2018-12-05	24	0	0	0	 TECHNICAL
14240	"H.I.R.E" - HELPING INDIVIDUALS REACH FOR EMPLOYMENT: EMPOWERING THE NEW MEMBERS OF THE LABOR FORCE	\N	BATAAN PENENSULA STATE UNIVERSITY	\N	0	\N	2018-04-13	2018-04-13	8	0	0	0	 
14241	DATA CONTROL OFFICER TRAINEE	\N	PROMPT MANAGERS AND CONSTRUCTION SERVICES INC.	\N	0	\N	2019-06-06	2019-06-14	56	0	0	0	 TECHNICAL
14242	ON THE JOB TRAINEE (BATAAN GENERAL HOSPITAL AND MEDICAL CENTER	\N	BATAAN PENENSIULA STATE UNIVERSITY	\N	0	\N	2017-06-13	2017-07-12	160	0	0	0	 
14243	"H.I.R.E" HELPING INDIVIDUALS REACH FOR EMPLOYMENT: EMPOWERING THE NEW MEMBERS OF THE LABOR FORCE	\N	BATAAN PENINSULA STATE UNIVERSITY	\N	0	\N	2018-04-13	2018-04-13	8	0	0	0	 
14244	DATA PRIVACY AWARENESS AND COMPLIANCE WORKSHOP	\N	YISRAEL SOLUTIONS AND CONSULTING INC.	\N	0	\N	2018-09-18	2018-09-18	24	0	0	0	 
14245	TRAINING FOR LOTTO TELLERS (FLEX MACHINE)	\N	PCSO BATAAN RANCH	\N	0	\N	2016-12-23	2016-12-23	4	0	0	0	 TECHNICAL
14246	HTML 5 & CSS 3 : NEXT GENERATION WEB DEVELOPMENT	\N	ACLC COLLEGE BALANGA	\N	0	\N	2014-02-28	2014-02-28	8	0	0	0	 TECHNICAL
14252	 ASR 201 and 202: INTERMEDIATE STAFF PROGRAM	\N	SGV and Co.	\N	0	\N	2016-12-19	2016-12-23	56	0	0	0	
14253	TRAINING - WORKSHOP ON THE IMPLEMENTATION OF INTERNAL AUDITOR FRO PROVINCES UNDER THE CMGP PROGRAM	\N	DILG and DBM	\N	0	\N	2017-11-26	2016-11-30	32	0	0	0	 
14254	TRAINING - WORKSHOP ON THE IMPLEMENTATION OF INTERNAL AUDITOR FRO PR0VINCES UNDER THE CMGP PROGRAM	\N	DILG and DBM	\N	0	\N	2017-11-26	2016-11-30	32	0	0	0	 
14255	SEMINAR ON TAX UPDATES (TRAIN LAW)	\N	Philippine Institute of Certified Public Accountant	\N	0	\N	2017-01-27	2017-01-27	8	0	0	0	 
14256	TOOLS AND TECHNIQUES ON INTERNAL AUDITING	\N	Association of Government Internal Auditors	\N	0	\N	2018-02-28	2018-03-03	24	0	0	0	 
14257	RISK - BASED THINKING SEMINAR	\N	NEO Amca	\N	0	\N	2018-11-15	2018-11-15	8	0	0	0	 
14258	GOVERNMENT PROCUREMENT REFORM ACT and IT REVISED IRR	\N	Association of Government Internal Auditors	\N	0	\N	2019-04-26	2019-04-26	24	0	0	0	 TECHNICAL
14259	INTERNAL CONTROL STANDARDS FOR THE PHILIPPINE PUBLIC - SECTOR	\N	Commission on Audit	\N	0	\N	2019-09-25	2019-09-27	24	0	0	0	 TECHNICAL
14260	Training on Donor Recruitments Care and Retention 	\N	Department of Health - Regional Office III	\N	0	\N	2015-03-04	2015-03-06	24	0	0	0	 TECHNICAL
14261	Regional Voluntary Blood Services Summit and Revisiting LGU Score Card 	\N	Department of Health - Regional Office III	\N	0	\N	2015-03-23	2015-03-26	16	0	0	0	 TECHNICAL
14262	Quality Assurance System Review and Consultative Workshop	\N	Department of Health - Regional Office III	\N	0	\N	2015-02-12	2015-02-13	16	0	0	0	 TECHNICAL
14494	Environmental Awareness	\N		\N	0	\N	2018-01-09	2018-01-10	16	0	0	0	 TECHNICAL
14263	Capitol Employees of Bataan Multi-purpose Cooperative	\N	Director/ Gift giving and Salu-salo with elders at Bahay Puso	\N	0	\N	2015-12-15	2015-12-15	4	0	0	0	 
14264	Pastoral Council of Barangy Munting Batangas	\N	Treasurer/ Garage Sale	\N	0	\N	2015-04-10	2015-04-12	8	0	0	0	 
14265	Updates on the revised implementing rules and regulations of Republic Act No. 9184	\N	Provincial Government of Bataan	\N	0	\N	2017-04-20	2017-04-21	16	0	0	0	 
14266	Roll-out training on budget operation manual for LGU'a 2016 edition, manual on setting up and operation of local economic enterprises 	\N	Department of Budget and Management Regional Office III and Association of Local Budget Officers in Region III	\N	0	\N	2020-03-06	2020-03-06		0	0	0	 
14267	Consultation-workshop on the preparation of governance reform targets required for 2017 conditional matching grant to provinces 	\N	DILG- Bureau of Local Government Finance	\N	0	\N	2016-12-07	2016-12-09		0	0	0	 
14268	Cluster Training for the Provincial Roll-ouut of the LGU Integrated Financial Tools 	\N	Department of Finance- Bureau of Local Government Finance 	\N	0	\N	2016-11-08	2016-11-08	8	0	0	0	 
14269	Financial Management for Local Government Units under Philippine Rural Development Project (PRDP)	\N	Department of Agriculture- Philippine rural Development Project- Regional Project Coordination Office- 3	\N	0	\N	2016-05-18	2016-05-20	24	0	0	0	 
14270	38th Annual National Convention- Building Global Partnerships through knowledge sharing	\N	The Government Association of Certified Public Accountants	\N	0	\N	2016-04-27	2016-04-30	32	0	0	0	Managerial
14271	Pre-Implementation Conference of PLGUs on KALSADA PROGRAM	\N	Department of thhe Interior and local Government Office of Project  Development Services	\N	0	\N	2016-04-06	2016-04-08	24	0	0	0	technical
14272	Workshop on Conversion of Accountts for Local Government Agencies	\N	Commission on Audit- Region Office no. III	\N	0	\N	2016-02-09	2016-02-12	32	0	0	0	managerial
14273	Executive Briefing on Philippines Public Sector Accountinng Standards (PPSAS)	\N	Commission on Audit- Regional Office no III	\N	0	\N	2015-12-08	2015-12-10	24	0	0	0	managerial
14274	USP SMARCAD NETWORK, SYSTEM AND SECURITY MANAGEMENT	\N	SMARTMATIC	\N	0	\N	2015-06-03	2015-06-05	24	0	0	0	 
14275	SUPERVISORY DEVELOPMENT C0URSE (SDC) TRACK 1	\N	Provincial Human Resource Management Office	\N	0	\N	2016-11-15	2016-11-16	16	0	0	0	 
14276	ICT RESOURCE ACQUISITION - PR0JECT TERMS OF REFERENCE SEMINAR	\N	Provincial Resource Management Office	\N	0	\N	2016-12-05	2016-12-09	40	0	0	0	 
14277	ENHANCE TMAS TRAINING (TEXT MESSAGING ALERT SYSTEM)	\N	AVI Corporation	\N	0	\N	2017-08-10	2017-08-10	8	0	0	0	 
14278	DATA PRlVACY ACT AWARENESS SEMINAR	\N	National Privacy Commission	\N	0	\N	2018-09-18	2018-09-21	32	0	0	0	 
14279	Internal Quality Auditors Enhancement Training	\N	Neo Amca Solution Corporation	\N	0	\N	2018-08-29	2018-08-29	8	0	0	0	 TECHNICAL
14280	The Workshop for the Formulation of Provincial Governance Reforms Roadmaps for Provincial Local Government Units of Luzon	\N	Department of the Interior and Local Government (DILG)	\N	0	\N	2018-07-24	2018-07-27	32	0	0	0	 TECHNICAL
14281	Seminar on Anti Trafficking in Person and Anti - Violence Against their W0men and their Children	\N	Provincial Engineer's Office	\N	0	\N	2018-05-11	2018-05-12	8	0	0	0	 TECHNICAL
14282	Seminar on Republic Act No.9184 and Its Revised Implementing Rules and Regulations	\N	Department of Budget and Management Regional Office III	\N	0	\N	2017-10-23	2017-10-27	8	0	0	0	 TECHNICAL
14283	Supply Management Support System.	\N	Geodata Solution Inc.	\N	0	\N	2017-10-09	2017-10-09	24	0	0	0	 TECHNICAL
14284	IS0 900: 2015 Internal Quality Audit	\N	Neo Amca Solution Corporation	\N	0	\N	2017-08-30	2017-08-31	16	0	0	0	 TECHNICAL
14285	ISO 9001: 2015 Awareness Seminar	\N	Neo Amca Solution Corporation	\N	0	\N	2017-07-27	2017-07-27	8	0	0	0	 TECHNICAL
14286	Seminar on Workshop on Detailed Procurement Process, Priority & Supply Management & Legal Remedies in Audit System	\N	JPLCV Center for Academic Values Foundation Inc.	\N	0	\N	2017-07-04	2017-07-06	24	0	0	0	 TECHNICAL
14287	hilippine Government Electronic Procurement (PHILGEPS) Training Buyers	\N	Eblackboards Solutions, Inc.	\N	0	\N	2017-02-27	2017-07-28	16	0	0	0	 TECHNICAL
14288	Capitol Employees of Bataan Multi-purpose Cooperatiive Strategic Planning Seminar	\N	Capitol Employees of Bataan Multi-purpose Cooperative	\N	0	\N	2015-12-03	2015-12-05	24	0	0	0	managerial
14289	Conduct and Ethical Standards and Revised Rules on Administrative Cases Seminar	\N	Civil Service Commission Regional Office 3  and Provincial Government of Bataan	\N	0	\N	2015-10-28	2015-10-29	16	0	0	0	Supervisory
14290	Bolstering Good Governance through Public Expenditure Management Reforms	\N	Association of Government Accountants of the Philippines	\N	0	\N	2015-10-21	2015-10-24	32	0	0	0	Professional
14291	Embracing the Challenges of Decision policy of Disaster Risk Financing Option of LGUs	\N	Provincial and City Treasurers Associatio of the Philippines (PACTAP)	\N	0	\N	2015-09-09	2015-09-11	24	0	0	0	Team Training
14292	Regional Consultation and Orietation on the Revised Special Local Roads (SLRF) Guidelines	\N	Department of the Interior and Local Government- Region III	\N	0	\N	2015-08-04	2015-08-04	8	0	0	0	 Professional
14293	Annnual Conference Philippine Association of Local Government Accountants (PhALGA)	\N	Philippines Association of Local Government Accountants (PhaLGA) Inc.	\N	0	\N	2015-05-26	2015-05-29	32	0	0	0	Professional
14294	Annual National Convention Government Association of Certified Accountants (GACPA)	\N	Government Association of Certified Public Accountants	\N	0	\N	2015-04-15	2015-04-17	24	0	0	0	Professional
14295	PICPA Annual Convention	\N	Philippine Institute of Public Accountants (PICPA)	\N	0	\N	2014-11-26	2014-11-29	32	0	0	0	Professional
14296	Preparing for teh Unexpected: Financial Implication of Disaster Management	\N	Association of Government Accountants of the Philippines (AGAP)	\N	0	\N	2014-10-21	2014-10-24	32	0	0	0	Professional
14297	Seminar on Labor Standards and GSIS Benefits	\N	Philippine Institute of Certified Public Accountant (Bataan Chapter)	\N	0	\N	2002-07-17	2002-07-17	8	0	0	0	technical
14298	Value Orientation Woorkshop (VOW)	\N	Civil Service Commission	\N	0	\N	1997-07-15	1997-07-17	24	0	0	0	technical
14299	FinanciaI Literacy Seminar	\N	Provinvial Government of Bataan	\N	0	\N	2019-11-20	2019-11-20	4	0	0	0	 TECHNICAL
14300	Marketing & Strategies Seminar	\N	Bataan Provincial Tourism Office	\N	0	\N	2019-10-10	2019-10-11	16	0	0	0	 TECHNICAL
14301	Training of Trainers on MSME Business Continuity for Bataan LGU	\N	University of the Philippines / Provincial Government of Bataan	\N	0	\N	2019-08-13	2019-08-14	16	0	0	0	 
14302	Filipino Brand of Service Excellence	\N	Bataan Provincial Tourism Office / Department of Tourism	\N	0	\N	2019-08-01	2019-08-01	8	0	0	0	 TECHNICAL
14303	Tourism Awareness & Capability Building on Sustainable Tourism Seminar	\N	Bataan Provincial Tourism Office	\N	0	\N	2019-07-30	2019-07-31	16	0	0	0	 TECHNICAL
14304	13th Post Graduate Course "Back to Basics"	\N	Makati Medical Center	\N	0	\N	2015-11-06	2015-11-06	8	0	0	0	 TECHNICAL
14305	Training of Trainers on HIV and STI Education	\N	Department of Health	\N	0	\N	2016-04-18	2016-04-22	40	0	0	0	 Supervisory
14306	5th E - Health Summit	\N	Philippine Council for Health Research and Development, DOST	\N	0	\N	2016-06-03	2016-06-03	8	0	0	0	Reactor / Speaker
14307	Compliance of Government / Public and Private Healthcare Facilities in Region III on Waste Management	\N	Nueva Ecija University of Science and Technology, DOH, DOST	\N	0	\N	2020-03-06	2020-03-06		0	0	0	 
14308	Compliance of Government / Public and Private Healthcare Facilities in Region III on Waste Management.	\N	Nueva Ecija University of Science and Technology, DOH, DOST	\N	0	\N	2016-07-26	2016-07-26	8	0	0	0	 TECHNICAL
14309	Training on HIV Counseling and Testing	\N	Department of Health	\N	0	\N	2016-09-25	2016-09-30	40	0	0	0	 TECHNICAL
14310	Training on HIV Education and Stigma Reduction	\N	Department of Health	\N	0	\N	2016-09-25	2016-09-30	40	0	0	0	 TECHNICAL
14311	Training of Trainers on Integrated Interpersonal Communication and Counseling	\N	Department of Health	\N	0	\N	2016-10-12	2016-10-14	24	0	0	0	 
14312	Adolscent Health Education & Practical Training for Healthcare Service Provider	\N	Department of Health, United Nations Childrens Fund (UNICEF)	\N	0	\N	2016-10-26	2016-10-28	24	0	0	0	 TECHNICAL
14313	Post Graduate Course "Substance Related and Addictive Disorders: Recognition and Management"	\N	Veterans Memorial Medical Center	\N	0	\N	2017-04-21	2017-04-21	8	0	0	0	 
14314	ALL HAZARD INCIDENT MANAGEMENT TEAM COURSE ON INCIDENT COMMAND SYSTEM	\N	Office of the Civil Defense 3	\N	0	\N	2018-01-22	2018-01-26	5	0	0	0	 TECHNICAL
14315	ALL HAZRAD INCIDENT MANAGEMENT TEAM COURSE ON INCIDENT COMMAND SYSTEM	\N	OFFICE OF THE CIVIL DEFENSE 3	\N	0	\N	2018-01-22	2018-01-26	5	0	0	0	 TECHNICAL
14316	ORIENTATION ON THE REVISED MALARIA TREATMENT PROTOCOL	\N	DEPARTMENT OF HEALTH - REGIONAL OFFICE III	\N	0	\N	2017-08-01	2017-08-03	24	0	0	0	 TECHNICAL
14317	TRAINING ON INCIDENT COMMAND SYSTEM 3	\N	OFFICE OF THE CIVIL DEFENSE 3	\N	0	\N	2016-11-10	2016-11-10	5	0	0	0	 TECHNICAL
14318	COMMUNICATI0N DEVELOPMENT TRAINING (ORAL & WRITTEN)	\N	PROVINCIAL HUMAN RESOURCE MANAGEMENT OFFICE - BATAAN	\N	0	\N	2016-11-10	2016-11-10	8	0	0	0	 TECHNICAL
14319	ROLL OUT TRAINING ON FAMILY PLANNING USAPAN BATCH 1	\N	DEPARTMENT OF HEALTH - REGIONAL OFFICE III	\N	0	\N	2016-09-13	2016-09-15	24	0	0	0	 TECHNICAL
14320	INTEGRATED PLANNING COURSE ON INCIDENT COMMAND SYSTEM	\N	OFFICE OF THE CIVIL DEFENSE	\N	0	\N	2016-08-16	2016-08-16	5	0	0	0	 TECHNICAL
14321	TRAINING ON MATERNAL DEATH SURVEILLANCE AND RESPONSE	\N	DEPARTMENT OF HEALTH - REGIONAL OFFICE III	\N	0	\N	2016-07-05	2016-07-08	40	0	0	0	 TECHNICAL
14322	NATIONAL STAFF MEETING PERSPECTIVE ON HEALTH PREFORMANCE	\N	DEPARTMENT OF HEALTH - REGIONAL OFFICE III	\N	0	\N	2015-12-07	2015-12-10	32	0	0	0	 TECHNICAL
14323	PHILIPPINE DENTAL ASSOCIATION ANNUAL CONVENTION AND SEMINAR	\N	PHILIPPINE DENTAL ASSOCIATIONS	\N	0	\N	2016-05-25	2016-05-30	40	0	0	0	 TECHNICAL
14324	PHILIPPINE DENTAL ASSOCIATION ANNUAL CONVENTION AND SEMINAR.	\N	PHILIPPINE DENTAL ASSOCIATIONS	\N	0	\N	2016-05-25	2016-05-30	40	0	0	0	 TECHNICAL
14325	DEPARTMENT OF HEALTH NATIONAL ASSOCIATION OF DENTIST ANNUAL CONVENTION AND SEMINAR	\N	DEPARTMENT OF HEALTH NATONAL ASSOCIATIONS OF DENTIST	\N	0	\N	2016-03-02	2016-03-04	24	0	0	0	 TECHNICAL
14326	PHILIPPINE DENTAL ASSOCIATION ANNUAL CONVENTI0N AND SEMINAR	\N	PHILIPPINE DENTAL ASSOCIATION	\N	0	\N	2015-05-11	2015-05-16	40	0	0	0	 TECHNICAL
14327	DEPARTMENT OF HEALTH NATIONAL ASSOCIATION OF DENTIST ANNUAL C0NVENTION AND SEMINAR	\N	DEPARTMENT OF HEALTH NATIONAL ASSOCIATIONS OF DENTIST	\N	0	\N	2015-03-03	2015-03-05	24	0	0	0	 TECHNICAL
14328	19 CONSULTATIVE SEMINAR WORKSHOP ON ENVIRONMENTAL HEALTH, SAFE WATER AND SUSTAINABLE SANITATION	\N	LEAGUE OF SANITATION INSPECTOR OF THE PHLIPPINES, INC.	\N	0	\N	2017-04-19	2017-04-21	24	0	0	0	 TECHNICAL
14329	19 CONSULTATIVE SEMINAR WORKSHOP ON ENVIRONMENTAL HEALTH, SAFE WATER AND SUSTAINABLE SANITATI0N	\N	LEAGUE OF SANITATION INSPECTOR OF THE PHILIPPINES INC.	\N	0	\N	2017-04-19	2017-04-21	24	0	0	0	 TECHNICAL
14330	The 16th Fupa Post- Graduate Course "Subastance Related and Addictive Disorders Recognition and Management	\N	Veterans Memorial Medical Center	\N	0	\N	2017-04-21	2017-04-21	8	0	0	0	 Health and Management
14331	Adolescent Health Education and Practical Training for Health Care Service Providers	\N	Department of Health Office III	\N	0	\N	2016-10-26	2016-10-28	24	0	0	0	 Health and Management
14332	THE 16th FVPA POST - GRAUATE COURSE 'SUBSTANCE RELATED AND ADDICTIVE DISORDERS: RECOGNITION AND MANAGEMENT	\N	VETERANS MEMORIAL CENTER	\N	0	\N	2017-04-21	2017-04-21	8	0	0	0	 TECHNICAL
14333	FAMILY PLANNING DEMAND GENERATION FOR THE HOSPITALS	\N	DEAPRTMENT OF HEALTH REGIONAL OFFICE III	\N	0	\N	2017-03-16	2017-03-17	16	0	0	0	 TECHNICAL
14334	THE 16th FVPA POST-GRADUATE COURSE 'SUBSTANCE RELATED AND ADDICTIVE DISORDERS: RECOGNITI0N MANAGEMENT	\N	VETERANS MEMORIAL MEDICAL CENTER	\N	0	\N	2017-04-21	2017-04-21	8	0	0	0	 TECHNICAL
14335	FAMILY PLANNING DEMAND GENERATI0N FOR THE HOSPITALS	\N	DEPARTMENT OF HEALTH REGIONAL III	\N	0	\N	2017-03-16	2017-03-17	16	0	0	0	 TECHNICAL
14336	REVISION OF FIELD HEALTH SERVICES INFROMATION SYSTEM (FHIS) MANUAL OF PROCEDURE 	\N	DEPARTMENT OF HEALTH EPIDEMIOLOGY BUREAU	\N	0	\N	2016-11-29	2016-12-02	32	0	0	0	 TECHNICAL
14337	MATERNAL AND CHILD HEALTH PROGRAM PERFORMANCE TRACKING	\N	DEPARTMENT OF HEALTH REGIONAL OFFICE III	\N	0	\N	2016-11-03	2016-11-04	16	0	0	0	 TECHNICAL
14338	TRAINING ON MATERNAL DEATH REPORTING AND REVIEW SYSTEM FOR LGUs	\N	DEPARTMENT OF HEALTH REGIONAL OFFICE III	\N	0	\N	2016-07-05	2016-07-08	32	0	0	0	 TECHNICAL
14339	TRAINING ON MATERNAL DEATH REPORTING AND REVIEW SYSTEM F0R LGUs	\N	DEPARTMENT OF HEALTH REGIONAL OFFICE III	\N	0	\N	2016-07-05	2016-07-08	32	0	0	0	 
14340	TRAINING ON DATA QUALITY CHECK FOR FAMILY PLANNING - MNCHN KEY INDICATORS	\N	DEPARTMENT OF HEALTH REGIONAL OFFICE III	\N	0	\N	2016-06-28	2016-07-01	32	0	0	0	 
14341	TRAINING ON INFORMED CHOICE AND VOLUNTARISM COMPLIANCE	\N	DEPARTMENT OF HEALTH REGIONAL OFFICE III	\N	0	\N	2016-06-16	2016-06-17	24	0	0	0	 TECHNICAL
14342	TRAINING OF TRAINORS' COURSE ON LACTATION MANAGEMENT	\N	DEPARTMENT OF HEALTH REGIONAL OFFICE III	\N	0	\N	2016-02-15	2016-02-19	40	0	0	0	 TECHNICAL
14343	ORIENTATION - WORKSHOP IN SETTING UP OF FAMILY PLANNING SERVICES IN THE HOSPITAL (BATCH 2)	\N	DEPARTMENT OF HEALTH REGIONAL OFFICE III	\N	0	\N	2016-02-11	2016-02-12	16	0	0	0	 TECHNICAL
14344	13th POST - GRADUATE COURSE ENTITLED 'BACK TO BASICS'	\N	DEAPRTMENT OF NEUROSIENCES PSYCHIATRY	\N	0	\N	2015-11-06	2015-11-06	8	0	0	0	 TECHNICAL
14345	CONSULTATIVE WORKSHOP TO CLARIFY OPERATIONAL ISSUES ON THE GUIDELINES IN ADDRESSING UNMET NEED FOR MODERN FAMILY PLANNING METHODS	\N	USAID	\N	0	\N	2015-10-13	2015-10-15	24	0	0	0	 TECHNICAL
14346	TRAINING ON INTEGRATED CLINIC INFORMATION SYSTEM (ICLINICSYS)	\N	DEPARTMENT OF HEALTH REGIONAL OFFICE III	\N	0	\N	2015-09-29	2015-10-02	32	0	0	0	 TECHNICAL
14347	DATA QUALITY CHECK TRAINING FOR FIELD SERVICS INFORMATION SYSTEM (FHSIS)	\N	DEAPRTMENT OF HEALTH EPIDEMIOLOGY BUREAU	\N	0	\N	2015-08-24	2015-08-28	40	0	0	0	 
14348	SKILLS TRAINING COURSE IN PROGESTIN - ONLY SUBDERMAL IMPLANT	\N	DR.JOSE FAELLA MEMORIAL HOSPITAL	\N	0	\N	2015-06-02	2015-06-03	16	0	0	0	 TECHNICAL
14349	ORIENTATION OF THE REGIONAL IMPLEMENTATION TEAM FRO RESPONSIBLE PARENTHOOD AND REPRODUCTIVE HEALTH LAW (RA10354)	\N	DEAPRTMENT OF HEALTH REGIONAL OFFICE III	\N	0	\N	2015-02-04	2015-02-04	8	0	0	0	 TECHNICAL
14350	VACCINE PREVENTABLE DISEASE SURVEILLANCE ADVOCAY: PHILIPPINE PEDIATRIC SOCIETY CENTRAL LUZON CHAPTER	\N	CENTER FOR HEALTH DEVELOPMENT 3	\N	0	\N	2017-07-30	2017-07-30	8	0	0	0	 TECHNICAL
14351	TRAINING ON DOH INFORMATION SYSTEM	\N	DEPARTMENT OF HEALTH - REGIONAL OFFICE 3	\N	0	\N	2017-03-27	2017-03-29	24	0	0	0	 TECHNICAL
14352	DATA RECONCILIATION AMONG FHSIS COORDINATORS	\N	DEPARTMENT OF REGIONAL OFFICE 3	\N	0	\N	2017-02-27	2017-02-28	16	0	0	0	 TECHNICAL
14353	all hazrd incident management team course on incident command system	\N	Office of Civil Defense Region III	\N	0	\N	2018-02-19	2018-02-23	40	0	0	0	managerial
14354	Incident Command System Posion Course Training	\N	Office of Civil Defense Region III	\N	0	\N	2017-10-16	2017-10-20	40	0	0	0	managerial
14355	Conflict Management in the Workplace	\N	Inspire Leadership Consultancy	\N	0	\N	2016-06-07	2016-06-07	8	0	0	0	 Managerial
14356	12th CBMS Philippines National Conference	\N	Dela Salle University Angelo King Institute	\N	0	\N	2016-02-29	2016-03-02	24	0	0	0	managerial
14357	Philippine Ecotourism 101 Seminar	\N	Blue Water Team	\N	0	\N	2015-07-23	2015-07-24	16	0	0	0	Professional
14358	Municipal Leadership and Governance Program Region III	\N	Department of Health	\N	0	\N	2015-06-01	2016-03-01	7200	0	0	0	managerial
14359	11th Community Based Monitoring System Phil. National Conference	\N	Dela Salle University Angelo King Institute	\N	0	\N	2015-02-02	2015-02-04	24	0	0	0	managerial
14360	Basic Incident Command System training course	\N	Office of Civil Defense Region III	\N	0	\N	2014-07-29	2014-07-31	24	0	0	0	 Managerial
14361	Forum on Nurturing  Cultural Heritage Tourism in the Phil.	\N	Asian Institute of Management Dr. Andrew L. Tan Center of Tourism	\N	0	\N	2014-05-27	2014-05-27	8	0	0	0	managerial
14362	Provincial Disaster Risk Reduction and Management (DRRM) Summit of LCE of Bataan	\N	Office of Civil Defense Region III	\N	0	\N	2014-05-22	2014-05-23	16	0	0	0	managerial
14363	8th National Convention of Soleminizing Officer	\N	National Statistics Office	\N	0	\N	2013-06-06	2013-06-06	24	0	0	0	Professional
14364	Best and Bold Orientation	\N	Department of interior and Local Government	\N	0	\N	2013-06-18	2013-06-15	24	0	0	0	managerial
14365	Best and Bold orientation	\N	Department of interior and Local Government	\N	0	\N	2013-06-15	2013-06-18	24	0	0	0	managerial
14366	Prepare Training on Good Local Governance	\N	UP-NCPAG Center for Local and Regional Governance	\N	0	\N	2013-06-13	2013-06-15	24	0	0	0	managerial
14367	Public Procurement Specialist Certification Course Level 1	\N	University of the Philippines-Diliman (National Engineering Center)	\N	0	\N	2019-02-26	2019-03-07	56	0	0	0	technical
14368	The  7 habits of highly effective people	\N	Ateneo Center for Leading Change, Inc. Franklin Covey Philippines	\N	0	\N	2018-11-13	2018-11-15	24	0	0	0	Supervisory
14369	TRAIN LAW	\N	Center for Global Best Practices	\N	0	\N	2018-06-20	2018-06-20	8	0	0	0	technical
14370	Transformational Leadership	\N	HumanResource Innovations and Solutions	\N	0	\N	2018-04-19	2018-04-19	16	0	0	0	 Supervisory
14371	Seminar on Internal Control System for property and supply management (Appraisal and Disposal)	\N	Association of Government Internal Auditors	\N	0	\N	2016-11-22	2016-11-24	24	0	0	0	technical
14372	In-huse training on government procurement and it's revised implementing rules and regulations	\N	Technical	\N	0	\N	2016-08-11	2016-08-12	16	0	0	0	 16
14373	In-house training on government procurement and it's revised implementing rules and regulations	\N	Government Procurement Policy Board	\N	0	\N	2016-08-11	2016-08-12	16	0	0	0	Techincal
14374	Semiar/Workshop on enterprise Risk Mamagement for Executives	\N	Systems Network International, Inc.	\N	0	\N	2016-07-22	2016-07-22	8	0	0	0	managerial
14375	Seminar/Workshop on Enterprise Risk Management for Executives	\N	Systems Network International, Inc.	\N	0	\N	2016-07-22	2016-07-22	8	0	0	0	managerial
14376	Basic Customer Service Skills	\N	Civil Service Commission- ROIV	\N	0	\N	2016-07-11	2016-07-13		0	0	0	technical
14377	Semar/Workshop on Enterprise Risk Management	\N	Systems Network International, Inc	\N	0	\N	2016-06-29	2016-07-01		0	0	0	technical
14378	Awareness on ISO 9001:2015 Changes	\N	Technical	\N	0	\N	2016-06-15	2016-06-15	8	0	0	0	 
14381	Internal Audit Course	\N	Systems Network International, inc	\N	0	\N	2015-07-23	2015-07-23	8	0	0	0	 
14382	Work Environment Measurement	\N	Occupational Safety and Health Center (DOLE-NCR)	\N	0	\N	2019-09-17	2019-09-19	24	0	0	0	technical
14383	Seminar on DOLE inspecton in your company	\N	Powermax Consulting group and DOLE	\N	0	\N	2018-03-16	2018-03-16	8	0	0	0	 Managerial
14384	Safety Boash Training Course	\N	COSHEMAP	\N	0	\N	2017-07-23	2017-07-24	8	0	0	0	 Managerial
14385	Pollution Control Officer	\N	Environmental Training Institute	\N	0	\N	2016-05-24	2016-05-27		0	0	0	 Managerial
14386	4th National Virtual Conference "Career Opportunities for Teachers"	\N	CalBalita Review Center	\N	0	\N	2019-10-19	2019-10-19	8	0	0	0	 
14387	Seminar andd Research Colloqium during the science days with the theme "Developing Science; fusing Millenials Metamorphosis"	\N	BPSU-BC	\N	0	\N	2017-03-22	2017-03-23	16	0	0	0	 
14388	Between the Lines: A Reading Literacy Project of English Language and Literature Advocates	\N	BPSU-BC	\N	0	\N	2015-09-30	2015-10-09	24	0	0	0	 
14389	Korean Language Training	\N	Hanguel Excellence Language Training Center	\N	0	\N	2019-11-11	2020-01-27	60	0	0	0	 Language Profieciency
14390	Shilded Metal Arc Welding (SMAW) NC II	\N	TESDA	\N	0	\N	2019-07-26	2019-11-04	304	0	0	0	 
14391	HIV-AIDS Symposium	\N	BPSU-BC	\N	0	\N	2017-12-01	2017-12-01	8	0	0	0	 
14392	Seminar and Research Colloquim during the science days with the theme "Developing Science, Fusing Millenials Metamorphosis"	\N	BPSU-BC	\N	0	\N	2017-03-22	2017-03-23	16	0	0	0	 
14393	Seminar on Government Procurement, its IRR and Updates (RA 9184)	\N	Association of Government Internal Auditors, Inc	\N	0	\N	2019-07-24	2019-07-26	24	0	0	0	 
14394	Emergency First Aid BLS-CPR	\N	Agricultural Training Institute	\N	0	\N	2018-12-11	2018-12-12	16	0	0	0	 
14395	National Closing of the Accounting Books	\N	Agricultural Training Institute- Regional Training Center IV-A	\N	0	\N	2018-01-08	2018-01-12	40	0	0	0	 
14396	Orientation on ISO 9001:2015 Cum Initial Gap Assessment	\N	Agricultural Training Institute- Regional Training Center II	\N	0	\N	2017-12-11	2017-12-12	16	0	0	0	 
14397	Accounting Technician Congress 2016	\N	BPSU	\N	0	\N	2016-03-05	2016-03-05		0	0	0	 
14398	PICPANs meets JPIANs	\N	BPSU	\N	0	\N	2016-01-05	2016-01-05	8	0	0	0	 
14399	Survive and Thrive: Powerplan for Success	\N	8	\N	0	\N	2015-12-09	2015-12-09	8	0	0	0	 
14400	Leadership and Training Seminar: Engage JPIA. Encompassing Success, Hardwork, Talent and Play in Vivid Colors	\N	BPSU	\N	0	\N	2015-12-30	2015-12-30	8	0	0	0	 
14401	Leadership and Ethics Seminar: "Engage JPIA. Encompassing Success, Hard work, Talent and Play in Vivid Colors"	\N	BPSU	\N	0	\N	2015-12-30	2015-12-30	8	0	0	0	 
14402	Engage JPIA: Making your way up to the right way	\N	BPSU	\N	0	\N	2015-01-15	2015-01-15	8	0	0	0	 
14403	Trainer's Methodology I	\N	Manila International Skills Academy	\N	0	\N	2019-06-01	2019-08-01	246	0	0	0	 
14404	Contact Center Services NC II          .	\N	Microcity College of Business and Technology	\N	0	\N	2018-12-17	2019-01-12	144	0	0	0	 
14405	Front Office Services NC II	\N	Microcity College of Business and Technology	\N	0	\N	2019-04-01	2019-06-01	442	0	0	0	 
14406	3rd National Convention on Climate Change	\N	Cimate Change Commission	\N	0	\N	2019-11-19	2019-11-20	16	0	0	0	 
14407	Seminar/Workshop on Oral and Written Communication	\N	PHRMO/MAAP	\N	0	\N	2019-10-18	2019-10-18	8	0	0	0	 
14408	Trainng-workshop on environmental and social safeguards batch 5	\N	DILG	\N	0	\N	2019-10-05	2019-10-07	20	0	0	0	 
14409	Forum on Renewable Energy and waste-to-energy	\N	Public/Private Partnership Center	\N	0	\N	2019-08-30	2019-08-30	8	0	0	0	 
14410	Off-Orid Renewable Energy; drives off agricultural value chain analysis	\N	Global Green Growth Institute	\N	0	\N	2019-06-20	2019-06-20	5	0	0	0	technical
14411	ICM System Orientaton and planning workshop	\N	PG-ENRO	\N	0	\N	2019-03-21	2019-03-21	8	0	0	0	 
14412	National Certificate II (Agricultural Crops Production)	\N	D'planners Training Center	\N	0	\N	2018-10-17	2018-12-07	336	0	0	0	 
14413	National Certifcate I (Agricultural Crops Production)	\N	D' Planners Training Center	\N	0	\N	2018-10-17	2018-12-07	302	0	0	0	 
14414	Training Operation and Maintenance of 4 wheel tractor for effective and efficient farm mechanization	\N	Agricultural Training Institutde	\N	0	\N	2017-06-21	2017-06-23	24	0	0	0	 
14415	National Certficate I (Crops)	\N	TESDA	\N	0	\N	2016-06-10	2016-06-12	24	0	0	0	 
14416	Training on Operation and maintenance of U wheel	\N	Agriculture Training institute Regional III	\N	0	\N	2017-06-21	2017-06-23	24	0	0	0	 
14417	National Certificate I (Crops)	\N	TESDA	\N	0	\N	2016-06-10	2016-06-12	24	0	0	0	 
14418	Training on Organic Inputs production	\N	Agriculture Training Institute Regional III	\N	0	\N	2017-06-21	2017-06-23	24	0	0	0	 
14419	Enteprenuerial Development Seminar	\N	Provincial Agriculture	\N	0	\N	2018-10-05	2018-10-06	16	0	0	0	 
14420	Asian Economic Community	\N	Provincial Agriculture	\N	0	\N	2018-12-14	2018-12-14	8	0	0	0	 
14421	Artificial Insemination in Swine Production	\N	DAVS-AIC	\N	0	\N	2018-12-18	2018-12-18	8	0	0	0	 
14422	13th Youth Congress on Information Technology	\N	University of the Philippines	\N	0	\N	2017-09-07	2017-09-10	24	0	0	0	 
14423	Artificial Intelligence: theory and Practice	\N	DICT	\N	0	\N	2017-09-23	2017-09-24	16	0	0	0	 Managerial and Technical
14424	Cloud Computing	\N	BPSU	\N	0	\N	2017-10-14	2017-10-14	4	0	0	0	technical
14425	The World of Data Management	\N	BPSU	\N	0	\N	2017-10-14	2017-10-14	4	0	0	0	managerial
14426	First aid and Basic Life Support Training 	\N	Philippine Red Cross	\N	0	\N	2019-11-25	2019-11-27	24	0	0	0	 TECHNICAL
14427	Basic Occupational Safety and Health Training for Nurses	\N	Occupational Health Nurses Associatin of the Philippines	\N	0	\N	2019-05-27	2019-06-01	50	0	0	0	 TECHNICAL
14428	Port Facility Security Officer Training	\N	Asia Security and Consultancy Inc.	\N	0	\N	2019-02-04	2019-02-07	32	0	0	0	technical
14429	Basic Occupational Safety and Healthh	\N	Safeways Consultancy and Safety Services	\N	0	\N	2012-10-22	2012-10-26	40	0	0	0	technical
14430	Technical Working Group PGS Scorecard Training	\N	Mariveles Mental Hospital	\N	0	\N	2019-12-27	2019-12-27	8	0	0	0	 TECHNICAL
14431	World Aids Day Seminar	\N	Mariveles Mental Hospital	\N	0	\N	2019-12-20	2019-12-20	4	0	0	0	 Foundation
14432	Research and Development Unit Training	\N	Mariveles Mental Hospital	\N	0	\N	2019-12-09	2019-12-09	8	0	0	0	 TECHNICAL
14433	Technical Working Group PGS Training	\N	Mariveles Mental Hospital	\N	0	\N	2019-12-11	2019-12-11	8	0	0	0	 TECHNICAL
14434	Staff Development Seminar	\N	Mariveles Mental Hospital	\N	0	\N	2019-11-21	2019-11-22	16	0	0	0	 Foundation
14435	Internal Quality Audit	\N	Mariveles Mental Hospital	\N	0	\N	2019-06-14	2019-06-14	8	0	0	0	 TECHNICAL
14436	Fire Prevention and Safety Seminar	\N	Mariveles Mental Hospital	\N	0	\N	2019-03-25	2019-03-25	8	0	0	0	 TECHNICAL
14437	Wave and Code of Ethics of Public Employees	\N	Mariveles Mental Hopsital	\N	0	\N	2019-02-26	2019-02-26	8	0	0	0	 Foundation
14438	Zero Waste Management Lecture	\N	Mariveles Mental Hospital	\N	0	\N	2019-01-14	2019-01-14	4	0	0	0	 Foundation
14439	Violence against Women and Children	\N	Mariveles Mental Hospital	\N	0	\N	2018-12-04	2018-12-04	3	0	0	0	 Foundation
14440	Standard First Aid	\N	Mariveles Mental Hospital	\N	0	\N	2018-10-24	2018-10-27	24	0	0	0	 TECHNICAL
14441	Basic Life Support.	\N	Mariveles Mental Hospital	\N	0	\N	2018-11-14	2018-11-15	16	0	0	0	 TECHNICAL
14442	Training in ISO-1911-2018 Revised Guidelines for Auditing Management	\N	Mariveles Mental Hospital	\N	0	\N	2018-11-21	2018-11-23	24	0	0	0	 Foundation
14443	Harmonized Gender and Development Guidelines and GAD Plan and Budget Workshop for FY 2020	\N	Mariveles Mental Hospital	\N	0	\N	2018-09-13	2018-09-14	16	0	0	0	 Foundation
14444	Mentoring	\N	Bataan General Hopsital	\N	0	\N	2017-06-28	2017-07-05	40	0	0	0	 TECHNICAL
14445	Basic Occupational Safety and Health (BOSH))         	\N	ASPREC-Manalo Occupational Safety and Health- Ovaldesk Inc.	\N	0	\N	2019-09-28	2019-10-06	40	0	0	0	 
14446	Petron Bataan Refinery Apprnticeship Program	\N	Petron Corporation- Refining Division	\N	0	\N	2018-02-18	2018-08-17	1040	0	0	0	 
14447	Teacher's Induction Program fro Beginning TeacherS	\N	Department of Education Schools Division Offcie of Bataan	\N	0	\N	2019-08-29	2019-08-30	16	0	0	0	 Classroom Instruction
14448	SLAC SeSsion on Competencies in NAT	\N	Department of Education in Baseco Elementary School	\N	0	\N	2018-07-29	2018-07-29	8	0	0	0	 Classroom Instruction
14449	SLAC Sessions on Competencies in NAT	\N	Department of Education Baseco Elementay School	\N	0	\N	2018-07-29	2018-07-29		0	0	0	 Classroom Instruction
14450	Teacher Induction Program for Beginning Teachers	\N	DEPED	\N	0	\N	2019-08-29	2019-08-30	16	0	0	0	Classroom Instruction
14451	Salc Session on Competencies in NAT	\N	DEPED	\N	0	\N	2018-07-29	2018-07-29	8	0	0	0	Classroom Instruction
14452	Information Security Course I & II	\N	BPI	\N	0	\N	2017-05-17	2017-05-17	8	0	0	0	 
14453	Professional Image Development	\N	BPI	\N	0	\N	2015-09-15	2015-09-15	8	0	0	0	 
14454	BPI Service Plus Workshop	\N	BPI	\N	0	\N	2015-03-10	2015-03-10	8	0	0	0	 
14455	Different UpdAtes of CustOms Broker Profession	\N	APCAS	\N	0	\N	2017-09-28	2017-09-28	4	0	0	0	 
14456	Intrduction of Customs and Tariff Act	\N	APCAS	\N	0	\N	2016-09-24	2019-09-24		0	0	0	 
14457	Introduction of Customs and Tariff Act	\N	APCAS	\N	0	\N	2016-09-24	2016-09-24		0	0	0	 
14458	PASOO 24th Annual Convention: Fat facts.fads, and fallacies	\N	Philippine Association for the Study of overweight and obesity	\N	0	\N	2018-08-30	2018-08-30	8	0	0	0	technical
14459	Stakeholder's Consultation: Resetting of BPSU Research Agenda nd Programs	\N	BPSU-RDO	\N	0	\N	2020-08-23	2020-08-23	1	0	0	0	managerial
14460	Stakeholder's Consultation: Resetting of BPSU Research Agenda and Programs	\N	BPSU-RDO	\N	0	\N	2018-08-29	2018-08-29	8	0	0	0	 Managerial
14461	1ST Mental Health Symposium	\N	PRC- Board of Nutrition and Dietetics	\N	0	\N	2018-08-03	2018-08-03	8	0	0	0	technical
14462	Inter Local Health Zone/ Service Delivery Network Meeting	\N	DOH-Bataan	\N	0	\N	2018-06-08	2018-06-08	8	0	0	0	 
14463	Trsut your Gut Instincts: Prebiotics and Probiotics for Optimal Well-being	\N	Food and Nutrition Science Department, UST	\N	0	\N	2018-04-28	2018-04-28	8	0	0	0	 TECHNICAL
14464	NDAP Bulacan: Kaisa sa Pagsulong ng Wastong Nutrisyon Tungo sa Malusog na Lalawigan	\N	Nutritionist-Dietitian  Association of the Philippines- Bulacan Chapter	\N	0	\N	2017-12-08	2017-12-08	8	0	0	0	technical
14465	Scaling New Heights in Diabetes Care	\N	Philippine Center for Diabeter Education Foundatio, Inc	\N	0	\N	2016-11-09	2016-11-09	8	0	0	0	technical
14466	Seminar on Anti-sexual harrasment and team effectiveness	\N	Provincial Government of Bataan- Provincial Assessor	\N	0	\N	2019-06-04	2019-06-04		0	0	0	 
14467	Mainstreaming GAD Programs thorugh Identifying GAD Issues, GAD Analysis and GAD Plan and Budgetting	\N	Provincial Government of Bataan	\N	0	\N	2015-05-14	2015-05-15	16	0	0	0	 
14468	Pagsasanay sa Korespondisiya	\N	Komisyon sa Wikang Pilipino	\N	0	\N	2015-09-29	2015-09-29	8	0	0	0	 
14469	refresher Training Course on White Corn Production for AEWS of Region III	\N	Agricultural Training Institute Regional Training Center III	\N	0	\N	2019-08-07	2019-08-09	24	0	0	0	 
14470	Trainer's Training on Corn integrated Crop Management CUM GAD and post harvest technologies and mechanization	\N	Agricultural Training Institute Regional Training Center III	\N	0	\N	2019-04-10	2019-04-12	24	0	0	0	 
14471	Season-Long Training of trainers on Intergated Crop Management for Corn with NC III	\N	Agricultural Training Institute Regional TRainign Center III	\N	0	\N	2018-03-12	2018-09-25		0	0	0	 
14472	Regional Stakeholder Consultation Cum Program Assessment and planning	\N	Agricultural Training Institute Regional Training Center III	\N	0	\N	2016-11-08	2016-11-09	16	0	0	0	 
14473	GAD Protocol Updates for Corn and Cassava Cum Extential Learning	\N	Agricultural Training Institute Regional Training Center III	\N	0	\N	2016-09-26	2016-09-30	24	0	0	0	
14474	SCOPSA	\N	Agricultural Training Institute Regional Training Center III	\N	0	\N	2016-05-17	2016-05-20	24	0	0	0	 
14475	Farmer's Field School on Corn Production	\N	Departrment of Agriculture Regional Office III	\N	0	\N	2016-05-12	2016-05-12		0	0	0	 
14476	Training Course on Philippine National Standard Good Agricultural  Practice for corn	\N	Agircultural Training Institute Regional /training Center III	\N	0	\N	2016-04-19	2016-04-21		0	0	0	 
14477	Season-Long Training of Trainers in Integrated Crop Management for Casava Production Cum E-Learning and NC III	\N	Agricultural Training Institute	\N	0	\N	2015-02-16	2015-12-18		0	0	0	 
14478	Quail Production: Hail the Quail (Quail 1)	\N	The e-Extension Program for Agriculture	\N	0	\N	2016-01-20	2016-01-20		0	0	0	 
14479	NC III on Agricultural Crops Production	\N	Department of Agriculture Regional Training Center III	\N	0	\N	2016-01-14	2016-01-14		0	0	0	 
14535	Immersion on Dietary Department	\N	Orani District Hospital	\N	0	\N	2019-09-23	2019-09-24	16	0	0	0	 
14480	Regional Good Agricultural Practices Team Training and Workshop for Region III	\N	Bureau of Agriculture and Fisheries Standards	\N	0	\N	2015-07-22	2015-07-22		0	0	0	 
14481	Basic Urban Gardening	\N	E-learning program for agriculture and fisheries	\N	0	\N	2015-07-15	2015-07-15		0	0	0	 
14482	Farmer's Field School on corn Production	\N	Departrment of Agriulturev Regional Office III	\N	0	\N	2015-03-10	2015-03-10		0	0	0	 
14483	Effective Data analysis using Microsoft Excel	\N	Eagle infotech consultants private limited singapore	\N	0	\N	2014-11-21	2014-11-21	8	0	0	0	 
14484	Leveraging Functions and Formulas using Microsoft Excel	\N	Eagle Infotech Consultants Private Limited Singapore	\N	0	\N	2014-09-22	2014-09-22	8	0	0	0	 
14485	Lead workplace Communication and Engagement	\N	Singapore Workforce Skill Qualifications	\N	0	\N	2014-09-12	2014-09-12	8	0	0	0	 
14486	NTC Redio User Certification Training	\N		\N	0	\N	2018-09-27	2018-09-27		0	0	0	 TECHNICAL
14487	Leap Session	\N		\N	0	\N	2018-07-31	2018-07-31	8	0	0	0	technical
14488	SCBA Doffing and Donning Refresher Training	\N		\N	0	\N	2018-07-05	2018-07-05	4	0	0	0	technical
14489	Effects of Radio Interferenceto Electronic Control Systems	\N		\N	0	\N	2018-06-13	2018-06-13	2	0	0	0	 TECHNICAL
14490	LOTOTO	\N		\N	0	\N	2018-04-03	2018-04-03	8	0	0	0	technical
14491	HIRADC Orientation and Worskhop	\N		\N	0	\N	2018-03-01	2018-03-01	4	0	0	0	 TECHNICAL
14492	MOC Orientation	\N		\N	0	\N	2018-02-27	2018-02-27	3	0	0	0	technical
14493	Industrial Coal and Petroleum Coke Fire Intervention Onsite Training	\N		\N	0	\N	2018-02-08	2018-02-09	16	0	0	0	 TECHNICAL
14497	Behavior Based Defensive Driving	\N		\N	0	\N	2016-11-04	2016-11-04	8	0	0	0	 
14498	IMS Awareness  for RSFFB Operations	\N		\N	0	\N	2016-09-26	2016-09-26	3	0	0	0	technical
14499	Electrical Systems Operations on Circuit Breaker/ Switch Gear Refresher Training Course: TPP/RSFFB	\N		\N	0	\N	2016-06-17	2016-06-17	8	0	0	0	 TECHNICAL
14500	Electrical Systems Operations on Circuit Breaker/ Switch Gear Refresher Training Course: TPP/RSFFB:	\N		\N	0	\N	2016-06-16	2016-06-16	8	0	0	0	 
14501	Safety Demerit System Orientation	\N		\N	0	\N	2015-04-23	2015-04-23	3	0	0	0	technical
14502	Makerspace, Coinsaver turning thesis to start ups.	\N		\N	0	\N	2017-09-16	2017-09-16		0	0	0	 
14503	Thesis Survival Guide, Research Documentation	\N		\N	0	\N	2017-09-16	2017-09-16		0	0	0	 
14504	Engineer a better future	\N		\N	0	\N	2017-09-07	2017-09-07		0	0	0	 
14505	IT Solutions Through Start Ups	\N		\N	0	\N	2017-03-22	2017-03-22		0	0	0	 
14506	Operation and Basic Programming Of OGP Smartscope	\N	Japan Aviation Electronics Inc. Philippines	\N	0	\N	2018-10-03	2018-10-03	24	0	0	0	 
14507	Documentation Accuracy for Quality Nursing Realization	\N		\N	0	\N	2010-12-01	2010-12-01		0	0	0	 Managerial
14508	Trends and Challenges Behind Nursing Practice 	\N	Flocerfida E. Ayangco & Raquel A. Leongson 	\N	0	\N	2011-09-22	2011-09-22	8	0	0	0	 
14509	Emergency Nursing: Code blue Stress Management & Career Mapping Seminar 	\N		\N	0	\N	2012-01-24	2012-01-26	24	0	0	0	 
14510	NURTURING ACADEMIC EXCELLENCE THROUGH RESEARCH AND PUBLICATION (10TH ANNUAL GRADUATE - FACULTY STUDENT RESEARCH FORUM	\N	OUR LADY OF FATIMA UNIVERSITY	\N	0	\N	2018-02-11	2018-02-11	8	0	0	0	 
14511	Leadership Training	\N	Anthony N. Pangilinan 	\N	0	\N	2009-08-28	2009-08-28	8	0	0	0	 
14512	NC II in Caregiving	\N	Philippine Womens University	\N	0	\N	2015-05-15	2015-05-15	8	0	0	0	 
14513	Standard First Aid	\N	Philippine Red Cross Olongapo City Chapter	\N	0	\N	2015-02-11	2015-02-15		0	0	0	 
14514	Building Wiring Installation	\N	Provincial Training Center- 	\N	0	\N	0014-01-01	2015-01-01		0	0	0	 
14515	The 15th Youth Congress on Information Technology	\N	BPSU	\N	0	\N	2017-09-07	2017-09-07		0	0	0	 
14516	The 15th Youth Congress on Information Technology.	\N	BPSU	\N	0	\N	2017-09-07	2017-09-07		0	0	0	 
14517	INFORMATION AND COMMUNICATION TECH CARAVAN KNOWLEDGE ACQUISITION FRO MORE EFFECTIVE BUSSINESS MOBILIZATION	\N	BPSU	\N	0	\N	2017-09-23	0201-09-24		0	0	0	 
14518	PUTTING YOUR HEAD IN THE GAME	\N	BPSU	\N	0	\N	2017-11-19	2019-11-19		0	0	0	 
14519	IDEAS TURNS TO STARUPS	\N	BPSU	\N	0	\N	2017-11-09	2017-11-09		0	0	0	 
14520	OPTIMITIZING EFFECTIVENESS AND PRODUCTIVITY	\N	BPSU	\N	0	\N	2017-11-04	2017-11-04		0	0	0	 
14521	A TESTIMONY OF CARVING YOUR OWN PATH	\N	BPSU	\N	0	\N	2017-03-04	2017-03-04		0	0	0	 
14522	1ST CENTRAL LUZON CONGRESS OF INFROMATION TECHNOLOGY	\N	BPSU	\N	0	\N	2017-03-04	2017-03-04		0	0	0	 
14523	1sT CENTRAL LUZON CONGRESS OF INFORMATION TECHNOLOGY	\N	BPSU	\N	0	\N	2017-03-04	2017-03-04		0	0	0	 
14524	CICT SOSI: THESIS IT	\N	BPSU	\N	0	\N	2020-08-14	2020-08-14		0	0	0	 
14525	19th Philippine National Immunization Conference	\N	Pholippine Foundation for Vaccination	\N	0	\N	2018-11-15	2018-11-16	16	0	0	0	 TECHNICAL
14526	Orientation on Domning and Doffing of PPE with Specimen Collection and Biosafety	\N	Central Luzon Center for Health Development	\N	0	\N	2020-08-18	2020-08-18		0	0	0	 
14527	19th Philippine National Immunization Conference	\N	Philippine Foundation for Vaccination	\N	0	\N	2018-11-15	2018-11-16	16	0	0	0	technical
14528	19th Philippine National Immunization Conference	\N	Philippine Foundation for Vaccinationn	\N	0	\N	2018-11-15	2018-11-16	16	0	0	0	technical
14529	Orientatuon on Domning and Doffing of PPE with Specimen Collection and Biosafety	\N	Central Luzon Center for Development	\N	0	\N	2018-11-07	2018-11-09	24	0	0	0	 TECHNICAL
14530	Water (Safety rescue and survival techniques and boat operation and maintenance	\N	Philippine Coast Guard	\N	0	\N	2017-07-15	2017-07-16	16	0	0	0	 TECHNICAL
14531	Brgy. based rehabilitation program the therapeutic community (TRC) Approach	\N	Provincial Government of Bataan	\N	0	\N	2017-03-06	2017-03-10	40	0	0	0	 
14532	Family Planning Competency Training Level I	\N	Central Luzon Center for Health Development	\N	0	\N	2017-05-15	2017-05-19	40	0	0	0	 TECHNICAL
14533	Basic Life Support -CPR Training for Professional Rescuers	\N	Philippine Red Cross Bataan Chapter	\N	0	\N	2015-10-20	2015-10-22	32	0	0	0	 TECHNICAL
14534	Orientation on Food Safety	\N		\N	0	\N	2019-10-09	2019-10-09	8	0	0	0	 
14536	Basic Life Support and Standard First Aid Training for Providers Course	\N	Department of Health 4a	\N	0	\N	2018-06-02	2018-10-02		0	0	0	Participant
14537	Workplace Ethics Seminar	\N	City Government of Balanga	\N	0	\N	2019-10-22	2019-10-22	4	0	0	0	 
14538	Standard Response Protocol Seminar	\N	CDRRMO	\N	0	\N	2019-06-26	2019-06-27	12	0	0	0	 
14539	Emotional Intelligence: the Road to Personal Success	\N		\N	0	\N	2018-12-12	2018-12-12	8	0	0	0	 
14540	Grant Wrting Seminar	\N	UAC (Reach)	\N	0	\N	2018-09-13	2018-09-13	5	0	0	0	 
14541	2017 Local Legislative Program	\N	Civil Service Commission	\N	0	\N	2017-09-04	2017-09-05	12	0	0	0	 
14542	Advance Microsoft Word: An Excel Training	\N	City Government of Balanga	\N	0	\N	2016-10-26	2016-10-26	8	0	0	0	 
14543	Personality Development Seminar	\N	City Government of Balanga	\N	0	\N	2016-04-20	2016-04-20	8	0	0	0	 
14544	Personality Development Seminar               	\N	City Government of Balanga	\N	0	\N	2016-04-20	2016-04-20	8	0	0	0	 
14545	Cisco Certified Network Associate v3 200-125 Bootcamp	\N		\N	0	\N	2017-07-27	2017-08-27	40	0	0	0	 SKILLS TRAINING
14546	CCNA PH Online Academy	\N		\N	0	\N	2018-02-18	2030-12-31	0	0	0	0	 SKILLS TRAINING
14547	Ultimate Leadership Workshop	\N		\N	0	\N	2020-10-02	2020-10-02		0	0	0	Leadership
14548	Anti Bullying and Cybercrime Seminar	\N		\N	0	\N	2020-10-02	2020-10-02		0	0	0	Participant
14549	Y4IT Research Summit 2019	\N		\N	0	\N	2020-10-02	2020-10-02		0	0	0	 
14550	Login to Reality	\N		\N	0	\N	2020-10-02	2020-10-02		0	0	0	 Personal Development
14551	ICT Industry and Business Modeling	\N		\N	0	\N	2020-10-02	2020-10-02		0	0	0	Personal Development
14552	ICT: On The Innovation Technology Advancement and Professionalism	\N		\N	0	\N	2020-10-02	2020-10-02		0	0	0	 Personal Development
14553	ICT Research Cluster	\N		\N	0	\N	2020-10-02	2020-10-02		0	0	0	 Personal Development
14554	Balangay Bayani Workshop	\N		\N	0	\N	2020-10-02	2020-10-02		0	0	0	 Team Training
14555	Leadership Training Seminar 2017	\N		\N	0	\N	2020-10-02	2020-10-02		0	0	0	Leadership
14556	Diocesan Vocation Youth Jamboree	\N		\N	0	\N	2012-10-14	2012-10-15		0	0	0	 Personal Development
14557	Vocation Youth Jamboree	\N		\N	0	\N	2013-10-20	2013-10-21		0	0	0	 
14558	5th Peer Facilitator Intercollegiate Seminar 	\N	Carel G Caoile, MAGC, RGC	\N	0	\N	2013-02-17	2013-02-17		0	0	0	 
14559	Research Forum 	\N	Dr. Daisy P. Labada	\N	0	\N	2015-01-25	2016-01-25		0	0	0	 
14560	The 21th Century Educator: Tomorrow + Beyond	\N		\N	0	\N	2020-10-02	2020-10-02		0	0	0	 
14561	The Marist Educator: Teaching the Marist Way	\N		\N	0	\N	2016-03-01	2016-03-01		0	0	0	 
14562	The Professional Educator: Ways and Words	\N	Analiza B. Valencia, ED.D	\N	0	\N	2016-03-01	2016-03-01		0	0	0	 
14563	Financial Literacy for Teacher	\N	Analiza B. Valencia, ED.D	\N	0	\N	2016-03-01	2016-03-01		0	0	0	 
14564	Municipal Disaster Risk and Reduction and Management	\N		\N	0	\N	2019-02-01	2019-05-01		0	0	0	Safety Training
14565	BLS/ACLS Training	\N	2MMG COOP HOSPITAL	\N	0	\N	2019-08-08	2019-08-11	9	0	0	0	 Professional
14566	I LEAD: Uncovering the Leader in You	\N	Bataan Peninsula State University-Balanga Campus	\N	0	\N	2018-04-30	2018-04-30	8	0	0	0	Leadership
14567	A Road to Healthy Balangueno: Empowering Balangueno Youth Leaders and Championing Health	\N		\N	0	\N	2018-11-11	2018-11-11	8	0	0	0	Leadership
14568	Business Digital Transformation with SAP	\N	Bataan Peninsula State University - Balanga Campus	\N	0	\N	2018-12-01	2018-12-01	8	0	0	0	Technical 
14569	VUCAD Business and Leadership Summit: Wisdom in the 21st Century	\N	Bataan Peninsula State University - Balanga Campus	\N	0	\N	2019-03-01	2019-03-01	8	0	0	0	Leadership
14570	Basic Occupational Safety and Health for Construction Site Safety Officers	\N	Safeways Consultancy and Safety Services	\N	0	\N	2013-02-25	2013-03-01	40	0	0	0	 Supervisory
14571	Basic Life Support for Healthcare Provider	\N	Philippine National Red Cross	\N	0	\N	2009-08-24	2009-08-25	16	0	0	0	 Supervisory
14572	First Aid Training Standard	\N	Philippine National Red Cross	\N	0	\N	2009-08-26	2019-08-29	32	0	0	0	 Supervisory
14573	First Aid and Basic Life Support: Simplified	\N	Polytechnic University of the Philippines (BPSU Alumni Nursing Association)	\N	0	\N	2008-09-28	2008-09-28	8	0	0	0	 Training
14574	Nursing Theory in Practice	\N	Polytechnic University of the Philippines	\N	0	\N	2008-10-06	2008-10-06	8	0	0	0	 Training
14575	Nursing Informatic Milestone / Critical Care Applications / Role of Technology on Medical Process	\N	Kelserwerth Consultancy Center	\N	0	\N	2008-11-09	2008-11-09	10	0	0	0	 Training
14576	Training Workshop on Capacity Building for Personnel Unit	\N		\N	0	\N	2019-05-22	2019-05-24	24	0	0	0	 Training
14577	Effective Internal Quality Auditing Course for ISO:9001:2015	\N	Pan Resort and Events Place Abucay, Bataan	\N	0	\N	2017-10-18	2017-10-20	24	0	0	0	 Training
14578	Division Seminar Workshop on DEPED on Personnel Action, Records Management	\N	Pan Resort and Events Place Abucay, Bataan	\N	0	\N	2016-12-05	2016-12-07	24	0	0	0	 Training
14579	How to Start a Small Business	\N	Orani Municipal	\N	0	\N	2017-10-05	2020-10-05		0	0	0	 
14580	Taxation	\N	BIR	\N	0	\N	2018-10-05	2020-10-05		0	0	0	 Training
14581	Parenting	\N	ONHS	\N	0	\N	2019-10-05	2020-10-05		0	0	0	 Training
14582	On the Job Training 	\N	North Luzon Fixed Access and Trans Operations Division - PLDT Balanga, Bataan	\N	0	\N	2016-04-06	2016-06-15	360	0	0	0	 
14583	On The Job Training	\N	North Luzon Fixed Acccess and Trans Operations Divisions - PLDT Balanga, Bataan	\N	0	\N	2016-04-06	2016-06-15	360	0	0	0	 
14584	Tesda Housekeeping	\N	TESDA	\N	0	\N	2014-04-14	2014-09-15		0	0	0	 
14585	Basic Customer Service Skill Seminar	\N	Civil Service Commission	\N	0	\N	2010-04-15	2010-04-16	16	0	0	0	 
14586	Reformation of School Health / Nutrition Program / Projects of SDO Bataan for SV 2017 - 2018	\N	Sinagtala Farm Resort Orani, Bataan	\N	0	\N	2017-05-22	2017-05-23		0	0	0	 
14587	Tesda - Break and Pastry Production NC-II	\N	Pats-Tesda	\N	0	\N	2018-09-07	2018-11-07		0	0	0	 
14588	A Testimony of Carving Your Own Path, Optimizing Effectiveness and Productivity, Putting Your Head in the Game, Ideas Turn to Startups	\N	LTO, Pilar, Bataan	\N	0	\N	2017-11-09	2017-11-09	8	0	0	0	 
14589	Cloud Computing, The World of Data Management, A Day in the Life of a Software Test Analyst, Expect Reality, VBA Programming	\N	Louis Resort & Restaurant	\N	0	\N	2017-10-14	2017-10-14	8	0	0	0	 
14590	Makerspace, Coinsaver, Turning Thesis to Startups	\N	Raquel's Function Hall	\N	0	\N	2017-09-16	2017-09-16	8	0	0	0	 TECHNICAL
14591	Y4IT: Engineer a Better Future	\N	SMX Convention Center Manila	\N	0	\N	2017-07-09	2017-07-09	8	0	0	0	 TECHNICAL
14592	IT Solutions Through Startups	\N	Bataan Peninsula State University	\N	0	\N	2017-03-22	2017-03-22	8	0	0	0	 TECHNICAL
14593	Rabbit Farming Seminar	\N	LDS Organic Basket Coop.	\N	0	\N	2017-05-27	2017-05-27	8	0	0	0	 TECHNICAL
14594	Quail and Duck Raising Seminar	\N	Bataan Peninsula State University	\N	0	\N	2017-03-22	2017-03-22	8	0	0	0	 TECHNICAL
14595	National Certificate II in Animal Producation (Poultry Chicken)	\N	TESDA	\N	0	\N	2016-07-02	2016-07-02		0	0	0	Technical
14596	BLS/ACLS Training	\N	2MMG Coop Hospital	\N	0	\N	2019-08-09	2019-08-11	9	0	0	0	 Training
14597	48TH ANNUAL NATIONAL CONVENTION OF THE PHILIPPINE ASSOCIATION OF RADIOLOGIC TECHNOLOGIST, INC.	\N	ST. JUDE COLLEGE	\N	0	\N	2017-12-08	2017-12-11		0	0	0	 
14598	47TH ANNUAL NATIONAL CONVENTION OF THE PHILIPPINE ASSOCIATION OF RADIOLOGIC TECHNOLOGIST, INC.	\N	ST. JDUE COLLEGE	\N	0	\N	2016-12-01	2016-12-04		0	0	0	 
14599	3RD RADIOLOGIC TECHNOLOGY STUDENTS CONGRESS SEMINAR	\N	ST. JUDE COLLEGE	\N	0	\N	2016-03-05	2016-03-05		0	0	0	 
14600	GLOBALIZATION FOR NURSES	\N		\N	0	\N	2013-03-13	2013-03-13		0	0	0	 
14601	SYNERGISM CARE ON PSYCHIATRIC AND OBSTETRIC CARE	\N	BPSU	\N	0	\N	2011-02-25	2011-02-25	8	0	0	0	 
14602	PERSONALIY DEVELOPMENT: TAKING STRIDES FOR A BETTER FUTURE	\N	BPSU	\N	0	\N	2012-08-23	2012-08-23		0	0	0	 
14603	PRE-EMPLOYMENT SEMINAR FOR BPSU GRADUATING STUDETNS	\N	BPSU	\N	0	\N	2012-11-28	2012-11-28	8	0	0	0	 
14604	NURSES AND MIDWIVES: ADVOCATING, LEADING AND CARING	\N	BPSU	\N	0	\N	2013-02-16	2013-02-16	8	0	0	0	 
14605	NATIONAL SERVICE TRAINING PROGRAM	\N	COLEGIO DE SAN JUAN DE LETRAN	\N	0	\N	2013-03-22	2013-03-22		0	0	0	 
14717	ANTI-PIRACY AWARENESS	\N		\N	0	\N	2018-05-25	2018-05-25		0	0	0	 
14606	10TH PHILIPPINE YOUTH CONGRESS ON INFORMATION TECHNOLOGY	\N	COLEGIO DE SAN JUAN DE LETRAN	\N	0	\N	2012-09-14	2012-09-14	0	0	0	0	 
14607	PERSONALITY DEVELOPMENT-SELF DISCIPLINE	\N	COLEGIO DE SAN JUAN DE LETRAN	\N	0	\N	2013-02-04	2013-02-04		0	0	0	 
14608	FIRST INTERNATIONAL STUDENT RESEARCH CONFERENCE ON COMPUTING STUDIES	\N	ANGELES UNIVERSITY FOUNDATION SPORTS AND CULTURAL CENTER	\N	0	\N	2015-02-17	2015-02-17	8	0	0	0	 
14609	SAITE 2014	\N		\N	0	\N	2014-01-05	2014-01-05	8	0	0	0	 
14610	I TRANSCEND:DREAM, EXCEED, SOAR 2016	\N		\N	0	\N	2016-02-24	2016-02-24	8	0	0	0	 
14611	SEMINAR WORKSHOP ON MANUAL OF OPERATIONS FOR DRUG TESTING LABORATORIES	\N		\N	0	\N	2020-03-10	2020-04-12		0	0	0	 
14612	55TH PAMET ANNUAL CONVENTIONS	\N		\N	0	\N	2019-12-02	2019-12-04		0	0	0	 
14613	NOTRE DAME DE CHARTES HOSPITAL CLINIC INTERNSHIP	\N		\N	0	\N	2016-11-15	2017-05-15		0	0	0	 
14614	SAVE A LIFE. LEARN CPR	\N	PHILIPPINE HEART ASSOCIATION	\N	0	\N	2016-04-25	2016-04-25	8	0	0	0	 
14615	DATA GATHERING ORIENTATION FOR ACCOMODATION ESTABLISHMENTS	\N	DEPARTMENT OF TOURISM	\N	0	\N	2016-11-08	2016-11-08	8	0	0	0	 
14616	3RD BPSU ABUCAY CAMPUS STUDENTS "RESEARCH AND DEVELOPMENT INHOUSE REVIEW"	\N	BPSU	\N	0	\N	2016-12-08	2016-12-08		0	0	0	 
14617	2nd Updates and Implementation of Newly Approved Laws and Bills for Integrated Growth and Development of the Agricultural and Biosystem Engineering	\N	BPSU	\N	0	\N	2017-09-25	2017-09-25		0	0	0	 
14618	NC III AGRICULTURAL CROP PRODUCTION	\N	BPSU	\N	0	\N	2019-12-12	2020-02-21		0	0	0	 
14619	NC I AGRICULTURAL CROP PRODUCTION	\N	BPSU	\N	0	\N	2019-12-11	2019-12-11		0	0	0	 
14620	NC II SHIELDED METAL ARC WELDING	\N	TESDA	\N	0	\N	2013-12-17	2013-12-17		0	0	0	 
14621	MANDATORY 8 HOURS TRAINING FOR SAFETY OFFICER	\N		\N	0	\N	2019-04-20	2019-04-20		0	0	0	 
14622	BASIC OCCUPATIONAL SAFETY AND HEALTH BOSH TRAINING	\N		\N	0	\N	2019-06-02	2019-06-05		0	0	0	 
14623	I-CONNECT PRDOCUT TRAINING AUHTORIZED TRAINING ENIGMA TECHNOLOGIES PC HARDWARE AND SOFTWARE	\N	CITY GOVERNMENT 	\N	0	\N	2008-08-30	2008-08-30	8	0	0	0	 
14624	DEPARTMENT OF SCIENCE AND TECHNOLOGY PHILIPPINE, ATMOSPHERIC, GEOPHYSICAL AND ASTRONOMICAL - UNDER STANDING HYDRO METEOROLGICAL HAZARDS AND FLOOD HAZARD MAPPING FOR DISASTER MITIGATION AND PREPAREDNESS	\N	CITY GOVERNMENT 	\N	0	\N	2007-03-16	2007-03-16	8	0	0	0	 
14625	STRUCTURED CABLING SYSTEM AUTHORIZED TRAINING OF LUCENT TECHNOLOGIES	\N	AMA COMPUTER COLLEGE	\N	0	\N	2000-02-22	2000-02-22	5	0	0	0	 
14626	PLDT ON THE JOB TRAINING	\N	ACLC COLLEGE OF BALANGA CITY	\N	0	\N	2000-03-03	2000-04-28	300	0	0	0	 
14627	VISUAL GRAPHIC DESIGN	\N	TESDA	\N	0	\N	2019-05-31	2019-05-31	8	0	0	0	 
14628	HOW TO START A SMALL BUSINESS SEMINAR	\N	DEPARTMENT OF TRADE AND INDUSTRY	\N	0	\N	2019-09-10	2019-09-10	8	0	0	0	 
14629	BASIC APPLICATION DEVELOPMENT	\N	DEPARTMENT OF INFORMATION AND COMMUNICATION TECHNOLOGY	\N	0	\N	2019-08-13	2019-08-13	8	0	0	0	 
14630	GAMIFIED IT EDUCATION	\N	EASTWOODS PROFESSIONAL COLLEGE OF SCIENCE AND TECHNOLOGY	\N	0	\N	2019-09-06	2019-09-06	8	0	0	0	 
14631	MICROSOFT OFFICE SPECIALIST	\N	MICROSOFT	\N	0	\N	2017-05-25	2017-05-25	8	0	0	0	 
14632	PENOLOGY DAY INFORMATION DRIVE	\N	BJMP REGION III BATAAN DISTRICT JAIL	\N	0	\N	2013-06-24	2013-06-24		0	0	0	 
14633	COMPUTER ELECTRONICS SERVICING NC II	\N		\N	0	\N	2014-06-16	2014-06-16		0	0	0	 
14634	ROAD TO SUCCESS	\N		\N	0	\N	2017-12-16	2017-12-16		0	0	0	 
14635	ROBOTICS TODAY AND TOMORROW	\N		\N	0	\N	2017-12-16	2017-12-16		0	0	0	 
14636	INFORMATION TECHNOLOGY INFRASTRACTURE - LIBRARY (ITIL V4 FOUNDATION)	\N	ASSOCIATION OF ENGINEERING STUDENT	\N	0	\N	2018-02-24	2018-02-24		0	0	0	 
14637	PC ASSEMBLY AND DISASSEMBLY, BASIC ADOBE PHOTOSHOP CC 2018	\N	ACLC BALANGA CITY	\N	0	\N	2019-09-26	2019-09-26		0	0	0	 
14638	RADIOLOGY MOBILITY: LEARNING THROUGH ALLIED HEALTH PROFESSIONAL	\N	PHILIPPINE ASSSOCIATION OF RADIOLOGIC TECHNOLOGIST	\N	0	\N	2016-12-02	2016-12-06		0	0	0	 
14639	MAKING RELEVANT, TRANSFORMATIVE TO THE RADIOLOGIC TECHNOLOGY	\N	INTEGRATED COUNCIL OF RADIOLOGIC TECHNOLOGIST OF THE PHILIPPINES	\N	0	\N	2019-02-07	2019-02-17	0	0	0	0	 
14640	BASIC APPLICATION TRAINING FOR CTSOMATOM	\N	SIEMENS	\N	0	\N	2019-07-01	2019-07-01	8	0	0	0	 
14641	ANNUAL CHARITY WORKS AND THANKSGIVING FOR AETA COMMUNITIES	\N		\N	0	\N	2021-01-12	2021-01-12	8	0	0	0	 
14642	ASEPTIC TECHNIQUE WORKSHOP	\N	NORTHERN AREA ARMED FORCES HOSPITAL	\N	0	\N	2018-11-18	2018-11-22	15	0	0	0	
14643	PHARMACENTICAL COMPOUNDING STERILE PREPARATIONS INTENSIVE COURSE	\N	NORTHERN AREA ARMED FORCES HOSPITAL	\N	0	\N	2018-09-26	2018-09-27	13	0	0	0	 
14644	WORKSHOP ON MODERATE SEDATION/ANALGESIA	\N	NORTHERN AREA ARMED FORCES HOSPITAL	\N	0	\N	2018-09-13	2018-09-13	3	0	0	0	 
14645	PREVENTION AND CONTROL OF INFECTION	\N	NORTHERN AREA ARMED FORCES HOSPITAL	\N	0	\N	2018-02-11	2018-02-15	0	0	0	0	`
14646	FACILITY MANAGEMENT AND SAFETY	\N		\N	0	\N	2018-02-11	2018-02-15	15	0	0	0	 
14647	CURRENT CHALLENGES ON MANAGEMENT OF HEPATITIS VIRUSES	\N	NORTHERN AREA ARMED FORCES HOSPITAL	\N	0	\N	2017-03-01	2017-03-02	15	0	0	0	 
14648	CONFERENCE ON WOMAN'S HEALTH IN THE NEW MILLENIUM AND HYSTEROCOPY	\N	NORTHERN AREA ARMED FORCES HOSPITAL	\N	0	\N	2013-02-12	2013-02-13	12	0	0	0	 
14649	SYMPOSIUM ON NEW TRENDS IN ICU PATIENTS CARE	\N	NORTHERN AREA ARMED FORCES HOSPITAL	\N	0	\N	2012-01-17	2012-01-18	11	0	0	0	 
14650	NEW HORIZONS AND RECENT MODALITIES ON MAANGEMENT OF SEVERE TRAUMATIC PATIENTS	\N	NORTHERN AREA ARMED FORCES HOSPITAL	\N	0	\N	2012-09-11	2012-09-12	13	0	0	0	 
14651	SYMPOSIUM ON ASTHMA AND ALLERGIC DIS.	\N	NORTHERN AREA ARMED FORCES HOSPITAL	\N	0	\N	2011-03-05	2011-03-05	14	0	0	0	 
14652	DATA PRIVACY ACT (WEBINAR TRAINING)	\N	DICT	\N	0	\N	2020-05-14	2020-05-14	8	0	0	0	 
14653	CUSTOMER SERVICE TRAINING	\N	CAMAYA COAST	\N	0	\N	2018-10-18	2018-10-18	8	0	0	0	 
14654	ESSENTIAL FOOD SAFETY TRAINING	\N	AIREST RESTAURANT	\N	0	\N	2012-09-29	2012-09-29	8	0	0	0	 
14655	BRIE:BPSU RESEARCH INVENTION	\N		\N	0	\N	2016-12-10	2016-12-10	8	0	0	0	 
14656	UNPLUG: BREAKING INTO THE REAL	\N		\N	0	\N	2016-11-23	2016-11-23		0	0	0	 
14657	ITECH: CONNECT THE UNCONNECTED	\N		\N	0	\N	2016-11-10	2016-11-20		0	0	0	 
14658	ICT INDUSTRY AND BUSINESS MODELINE	\N		\N	0	\N	2016-10-21	2016-10-21		0	0	0	 
14659	OCCUPATIONAL FIRST AID AND BLS-CPR WITH AED OPERATION TRAINING FOR ADULT-LAY RESCUER	\N	PHILIPPINE RED CROSS	\N	0	\N	2016-04-25	2016-04-28	32	0	0	0	 Supervisory
14660	MEMBERSHIP ACCIDENT ASSURANCE BENEFITS UPDATE AND REVIEW	\N	PHILIPPINE RED CROSS	\N	0	\N	2016-10-10	2016-10-12	16	0	0	0	 Supervisory
14661	TRAINING FOR AMBULANCE CREW	\N	PHILIPPINE RED CROSS	\N	0	\N	2020-03-15	2020-02-19	40	0	0	0	 Supervisory
14662	BASIC LIFE SUPPORT	\N	AMERICAN SAFETY AND HEALTH INSTITUTE	\N	0	\N	2018-12-19	2018-12-20	5	0	0	0	 
14663	ADVANCED CARDIAC LIFE SUPPORT	\N	AMERICAN SAFETY AND HEALTH INSTITUTE	\N	0	\N	2018-12-19	2018-12-20	16	0	0	0	 
14664	SEMINAR ON ETHICAL PRACTICES FOR MARKETING THE SERVICES OF CPAS	\N	MR. DANNY CABULAY	\N	0	\N	2019-02-02	2019-02-02	8	0	0	0	 
14665	TAX-UPDATE-TAX ACCELERATION FOR INCLUSION ON TRAIN	\N	MS. ESTELITA AGUIRRE	\N	0	\N	2018-03-24	2018-03-24	8	0	0	0	 
14666	PHILIPPINE CHEMISTRY CONGRESS	\N	KAPISANANG KIMIKA NG PILIPINAS	\N	0	\N	2019-05-28	2019-05-30	24	0	0	0	 
14667	LABORATORY HANDLING AND SAFETY	\N	POP CHEMICAL SOCIETY	\N	0	\N	2021-01-22	2021-01-22	8	0	0	0	 
14668	INSTITUTION OF OCCUPATIONAL AND HEALTH	\N	TITUS	\N	0	\N	2018-10-12	2018-11-02	40	0	0	0	 
14669	Construction Occupational Safety and Health	\N	AVIE TRAINING & CONSULTANCY SERVICES	\N	0	\N	2019-03-21	2019-03-24		0	0	0	 
14670	BASIC OCCUPATIONAL SAFETY AND HEALTH 	\N	BATAAN PENINSULA STATE UNIVERSITY	\N	0	\N	2015-04-09	2015-04-21		0	0	0	 
14671	ONLINE ACLS/BLS TRAINING	\N	ILEAD TRAINING CENTER	\N	0	\N	2020-07-19	2020-07-20	18	0	0	0	 
14672	FINANCIAL LITERACY SEMINAR	\N	CAPITOL EMPLOYEES	\N	0	\N	2019-11-20	2019-11-20	0	0	0	0	
14673	SEMINAR ON MAGNA CARTA FOR WOMEN TEAM EFFECTIVENESS	\N	PHRMO	\N	0	\N	2019-03-22	2019-03-22		0	0	0	 
14674	CPD TRAINING SALES PERSON	\N	CEASAR E. SANTOS REAL ESTATE ACADEMY INC.	\N	0	\N	2018-02-23	2018-02-24	24	0	0	0	 
14675	REAL ESTATE MANAGEMENT TRAINING	\N	LEAD	\N	0	\N	2016-11-17	2016-11-21		0	0	0	 
14676	ONLINE MEDIA POLICY	\N	ONLINE MEDIA GUIDELINES	\N	0	\N	2016-08-07	2016-08-07		0	0	0	 
14677	REAL ESTATE BROKERS ASSOCIATION OF PHILIPPINES	\N	ROBINSON'S LAND CORP.	\N	0	\N	2015-05-01	2015-05-02	24	0	0	0	 
14678	MOLECULAR MECHANICS AND DIAGNOSIS OF ANTIBIOTIC RESISTANCE IN CLINICAL PATHOGENS AND IMMUNODIAGNOSTICS CURRENT TRENDS AND APPLICATIONS	\N	ANGELES UNIVERSITY	\N	0	\N	2019-07-01	2019-07-01	8	0	0	0	 
14679	BASIC OCCUPATIONAL D\\\\SAFETY HEALTH TRAINING	\N	PAMPANGA PREMIER MEDICAL CENTER	\N	0	\N	2019-08-01	2019-08-01	8	0	0	0	 
14680	ECG AND PHARMACOLOGY	\N	REDEL MUNDO TRAINING CENTER	\N	0	\N	2019-03-25	2019-03-25	8	0	0	0	 
14681	BASIC LIFE SUPPORT	\N	FEDEL MUNDO TRAINING CENTER	\N	0	\N	2019-03-25	2019-03-25	8	0	0	0	 
14682	COMPETENCY-BASED TRAINING ON THE DIAGNOSIS OF PARASITIC DISEASES OF PUBLIC HEALTH IMPORTANCE AND BIOSAFETY WORKSHOP	\N	RESEARCH INSTITUE FOR TROPICAL MEDICINE	\N	0	\N	2019-04-02	2019-09-06		0	0	0	 
14683	ADVANCE CARDIAN LIFE SUPPORT   	\N	FEDEL MUNDO TRAINING CENTER	\N	0	\N	2019-03-26	2019-03-26	8	0	0	0	 
14684	54TH PAMET ANNUAL CONVENTION	\N	PICC	\N	0	\N	2019-12-03	2019-12-05	24	0	0	0	 
14685	HEMODIALYSIS	\N	AVITUS KIDNEY CARE AND DIALYSIS CENTER	\N	0	\N	2016-05-03	2017-02-25	8	0	0	0	 
14686	DISASTER RESPONSE WITH WATER RESCUE AND SURVIVAL	\N	VISTA VERDE	\N	0	\N	2016-11-19	2016-11-19	8	0	0	0	 
14687	BASIC IUT	\N	UL MAKABALI MEMORIAL HOSPITAL	\N	0	\N	2016-01-27	2019-01-29	32	0	0	0	 
14688	LECTURE: LABORATORY COSTING	\N	PAMPANGA PREMIER MEDICAL CENTER	\N	0	\N	2021-01-23	2021-01-23		0	0	0	 
14689	HOW TO CONTEST BIR AUDIT FINDINGS	\N	ATTY. EDWARD GIALOGO, CPA	\N	0	\N	2020-08-12	2020-08-12	1.5	0	0	0	 
14690	PFRS FOR SMALL ENTITIES	\N	MR. JEKKEL SALOSAGCOL, CPA	\N	0	\N	2019-08-07	2019-08-07	8	0	0	0	 
14691	TAX UPDATES, ANTI-MONEY LAUNDERING ACT.	\N	ATTY. MA. ANGELES SUMAGWI, CPA	\N	0	\N	2018-11-11	2018-11-11	8	0	0	0	 
14692	BASIC COMPUTER 	\N	TESDA BATAAN AND LGU ABUCAY	\N	0	\N	2002-05-16	2002-06-25	10	0	0	0	 
14693	HILTI AND DEMOLITION TOOLS	\N	HILTI PHIL	\N	0	\N	2002-03-01	2002-03-01	6	0	0	0	 
14694	PURCHASING MATERIALS AND MONITORING SYSTEM	\N	D.M CONSUNJI TRAINING CENTER	\N	0	\N	2001-10-01	2001-10-01	8	0	0	0	 
14695	WORKSHOP REVISED PERFORMANCE EVALUATION	\N	ROCKWELL ENGR. CONST. INC. HYATT HOTEL	\N	0	\N	2000-04-01	2000-04-01		0	0	0	 
14696	BASIC OCCUPATIONAL SAFETY AND HEALTH	\N	DOLE	\N	0	\N	2021-01-23	2021-01-23	40	0	0	0	 
14697	SHIELDED METAL ARC WELDING NC II	\N	TESDA	\N	0	\N	2017-07-13	2017-07-13	8	0	0	0	 
14698	JAPANESE LANGUAGE COURSE	\N	BRIDGING THE GAPS	\N	0	\N	2016-10-13	2016-12-29	300	0	0	0	 
14699	SAFE RIGGING AND SLINGING CERTIFICATION	\N	UNITED PRECAST CONCRETE	\N	0	\N	2016-07-16	2016-07-18	24	0	0	0	 
14700	SAFE ELECTRIC OVERHEAD TRAVELLING	\N	TU SUO MIDDLE EAST	\N	0	\N	2016-07-16	2016-07-18	24	0	0	0	 
14701	CRANE OPERATION AND OPERATOR CERTIFICATION	\N		\N	0	\N	2016-07-16	2016-07-16	24	0	0	0	 
14702	MICROSOFT OFFICE SPECIALIST 	\N	EASTWOODS PROFESSIONAL COLLEGE OF SCIENCE AND TECHNOLOGY	\N	0	\N	2017-10-15	2017-11-06		0	0	0	 
14703	VISUAL GRAPHIC DESIGN NC III	\N	TESDA DINALUPIHAN	\N	0	\N	2018-03-18	2018-04-18		0	0	0	 
14704	INFUSION NURSE CERTIFICATION TRAINING	\N	EDUARDO L. JOSON MEMORIAL HOSPITAL	\N	0	\N	2018-08-24	2018-08-26	24	0	0	0	 
14705	PESO INSTITUTIONAL ORIENTATION TRAINING ON WORK APPRECIATION	\N	DOLE BATAAN	\N	0	\N	2019-11-28	2019-11-28	8	0	0	0	 
14706	CAPABILITY BUILDING TRAINING	\N	OWWA REGION III	\N	0	\N	2019-11-04	2019-11-05	16	0	0	0	 
14707	DIGITAL MEDIA FUNDAMENTAL COURSE	\N	OWWA REGION III	\N	0	\N	2019-05-08	2019-05-28	8	0	0	0	 
14708	DISASTER PREPAREDNESS AND RESPONSE ORIENTATION 	\N	DSWD-NCR	\N	0	\N	2017-10-19	2017-10-19	8	0	0	0	 
14709	TECHNICAL LEARNING SESSION ON DSWD REPORTORAL REQUIREMENTS AND DOCUMENTARY	\N	DSWD - NCR	\N	0	\N	2017-09-07	2017-09-07	8	0	0	0	 
14710	BASIC MODELS IN FAMILY THERAPY AND HEALING	\N	PHILIPPINE WOMENS UNIVERSITY	\N	0	\N	2017-11-02	2017-11-02	8	0	0	0	 
14711	ROLL-OUT TRAINING ON FAMILY EVACUATION PREPAREDNESS AND CAMP COORDINATION AND CAMP MANAGEMENT	\N	DSWD - NCR	\N	0	\N	2017-07-28	2017-07-28	24	0	0	0	 
14712	RESILLENCY PROGRAM FOR CHILDREN IN NEED OF SPECIAL PROTECTION	\N	DSWD - NCR	\N	0	\N	2016-05-25	2016-05-25	8	0	0	0	 
14713	PREPARING THE HEALTH SECTOR AND COMMUNITIES FOR BIG ONE (PART 2)	\N	UP MANILA	\N	0	\N	2018-01-24	2018-01-24	8	0	0	0	 
14714	PSYCHOLOGICAL TRAININGS AND ORIENTATION HANDLING DISTRESS AND PERENIAL CLIENTS	\N	DSWD - NCR	\N	0	\N	2018-11-15	2018-11-16	26	0	0	0	 
14715	SOCIAL WORK FORUM ON MULTI - SECTORAL APPROACH IN ADDRESSING DRUG PROBLEMS IN NCR	\N	DSWD - NCR	\N	0	\N	2018-11-20	2018-11-20	8	0	0	0	 
14716	ORIENTATION ON RA 9745 THEW ANTI - TORTURE ACT AND CASE MANAGEMENT OF SURVIVORS AND THEIR FAMILIES	\N	DSWD - NCR	\N	0	\N	2018-08-15	2018-08-15	8	0	0	0	 
14718	SHIP PERSONNEL LEADERSHIP AND TEAM WORK	\N		\N	0	\N	2018-05-23	2018-05-23		0	0	0	 
14719	ICT RESEARCH CLUSTER 2019	\N	CICT	\N	0	\N	2019-09-13	2019-09-13	8	0	0	0	 
14720	REGIONAL ASSEMBLY OF INFORMATION	\N	CICT	\N	0	\N	2019-09-06	2019-09-06	8	0	0	0	 
14721	TECHNOLOGY EDUCATION 2019	\N	CICT	\N	0	\N	2019-10-18	2019-10-18	8	0	0	0	 
14722	TESTIMONIAL DINNER	\N		\N	0	\N	2019-10-18	2019-10-18		0	0	0	 
14723	PERSONALITY DEVELOPMENT	\N	TRC	\N	0	\N	2000-11-28	2000-11-28	8	0	0	0	 
14724	BETTER PREPARATION FOR A BETTER PROFESSION	\N	TRC	\N	0	\N	2001-01-12	2001-01-12	8	0	0	0	 
14725	E-COMMERCE TOWARD GLOBALIZATION	\N	TRC	\N	0	\N	2001-02-20	2001-02-20	8	0	0	0	 
14726	BASIC RURAL BANKING	\N	PAMP	\N	0	\N	2005-04-16	2005-04-16	8	0	0	0	 
14727	BASIC OF LEPROSY AND DIRECTLY OBSERVED TREATMENT	\N	PAMET CAVITE CHAPTER	\N	0	\N	2008-06-21	2008-06-21	8	0	0	0	 
14728	ROAD MAPPING THE FUTURE OF MEDICAL TECHNOLOGY	\N	PAMET	\N	0	\N	2008-12-10	2008-12-10	8	0	0	0	 
14729	MALARIA SCREENING TEST	\N	MINISTRY OF HEALTH - KSA	\N	0	\N	2010-09-14	2010-09-17	24	0	0	0	 
14730	VIRAL SCREENING TEST	\N	MINISTRY OF HEALTH - KSA	\N	0	\N	2011-01-08	2011-01-08	8	0	0	0	 
14731	EMPOWERING MEDICAL TECHNOLOGIST TOWARDS GLOBAL ADVANCEMENT	\N	PAMET	\N	0	\N	2016-11-09	2016-11-09	8	0	0	0	 
14732	1ST CONTINUEING PROFESSIONAL DEVELOPMENT SEMINAR	\N	PAMET BATAAN CHAPTER	\N	0	\N	2017-07-09	2017-07-09	10	0	0	0	 
14733	SEMINAR/WORKSHOP ON THE MANUAL OPERATIONS	\N	PAMET BAGUIO CHAPTER	\N	0	\N	2018-04-18	2018-04-20	30	0	0	0	 
14734	CONTINUING PROFESSIONAL DEVELOPMENT SEMINAR	\N	PAMET BATAAN CHAPTER	\N	0	\N	2018-09-18	2018-09-18	5	0	0	0	 
14735	SHANGRI-LA FOOD SAFETY MANAGEMENT SYSTEM	\N	SHANGRI-LA HOTEL	\N	0	\N	2018-09-23	2018-09-25	24	0	0	0	 
14736	HAZARD ANALYSIS CRITICAL CONTROL POINT	\N	SHANGRI-LA	\N	0	\N	2018-09-24	2018-09-24	8	0	0	0	 
14737	EMERGENCY RESPONSE/FIRE AND LIFE SAFETY	\N	SHANGRI-LA HOTEL	\N	0	\N	2018-11-12	2018-11-12	8	0	0	0	 
14738	BASIC PHOTOSHOP FOR DIGITAL IMAGING	\N	COMSOFIL, RIYADH, KSA	\N	0	\N	2015-06-09	2015-12-27		0	0	0	 
14739	ADOBE ILLUSTRATOR	\N	COMSOFIL, RIYADH, KSA	\N	0	\N	2016-07-02	2016-04-29		0	0	0	 
14740	WEB DEVELOPMENT	\N	COMSOFIL, RIYADH, KSA	\N	0	\N	2016-06-08	2016-11-27		0	0	0	 
14741	ADOBE IN-DESIGN	\N	COMSOFIL, RIYADH, KSA	\N	0	\N	2017-05-03	2017-05-28		0	0	0	 
14742	PROFESSIONALISM TRAINING	\N	PANAY TRAINING CENTER	\N	0	\N	2018-08-02	2018-08-02	8	0	0	0	 
14743	WORK ATTITUDE AND VALUES TRAINING	\N	PANAY TRAINING CENTER	\N	0	\N	2018-08-17	2018-08-17	8	0	0	0	 
14744	CONSTRUCTION OCCUPATIONAL SAFETY AND HEALTH	\N	PANAY TRAINING CENTER	\N	0	\N	2019-05-04	2019-05-18	40	0	0	0	 
14745	TECHNICAL DUTY FOR NURSING ATTENDANT	\N	BATAAN GENERAL HOSPITAL AND MEDICAL CENTER	\N	0	\N	2019-11-13	2019-11-15	16	0	0	0	 
14746	FILIPINO BRAND OF SERVICE EXCELLENCE	\N	TOURISM INDUSTRY PROGRAM	\N	0	\N	2019-11-06	2019-11-06	8	0	0	0	 Managerial
14747	SERVICE IMAGE INTEGRATION SEMINAR	\N	MS. KAREN AGUSTIN	\N	0	\N	2019-05-17	2019-05-19	24	0	0	0	managerial
14748	INDUSTRIAL PSYCHOLOGY AREA GUIDANCE AND COUNSELING "SCHOOL PSYCHOLOGY AREA"	\N	BPSU	\N	0	\N	2004-01-26	2004-02-10	80	0	0	0	 
14749	SOCCO COMMUNITY PSYCHOLOGY AREA	\N	BPSU	\N	0	\N	2003-12-08	2003-12-19	80	0	0	0	 
14750	CLINICAL PSYCHOLOGY AREA	\N	BPSU	\N	0	\N	2003-11-04	2003-12-05	80	0	0	0	 
14751	ADVANCEMENT: GOING BEYOND LIMITS SPICE SYMPOSIUM	\N		\N	0	\N	2018-04-01	2018-06-01		0	0	0	 
14752	AUTOCAD 2018	\N		\N	0	\N	2018-04-01	2018-06-01		0	0	0	 
14753	ADVANCE EXCEL TIPS AND TRICKS	\N	QATAR SKILLS ACADEMY	\N	0	\N	2020-11-22	2020-10-22	1	0	0	0	technical
14754	INTRAVASCULAR THERAPY (IVT) TRAINING	\N	ASSOCIATION OF NURSING SERVICE ADMINISTRATORS OF THE PHILIPPINES	\N	0	\N	2016-01-15	2016-01-17		0	0	0	
14755	ADVANCE CARDIOVASCULAR LIFE SUPPORT (ACLS)	\N	INSTITUTE OF NURSING ENRICHMENT TRAINING CENTER	\N	0	\N	2014-03-05	2014-03-05		0	0	0	 
14756	BASIC LIFE SUPPORT FOR HEALTHCARE PROFESSIONALS	\N	INSTITUTE OF NURSING ENRICHMENT TRAINING CENTER	\N	0	\N	2014-03-04	2014-03-04		0	0	0	 
14757	BASIC CARDIAC RYTHM RECOGNITION (ECG READING)	\N	INSTITUTE OF NURSING ENRICHMENT TRAINING CENTER	\N	0	\N	2014-03-04	2014-03-04		0	0	0	 
14758	@INVESTABALANGA SEMINAR: FRANCHISE NEGOSYO PARA SA BALANGA	\N	CITY ECONOMIC INVESTMENT & DEV'T OFFICE-BALANGA CITY	\N	0	\N	2018-06-08	2018-06-08	4	0	0	0	 
14759	ANNUAL HUMAN RESOURCE CONFERENCE	\N	PHILIPPINE ASSOCIATION OF WATER DISTRICTS-HUMAN RESOURCE PRACTIONER	\N	0	\N	2018-02-07	2018-02-07	8	0	0	0	 
14760	ORIENTATION & WORKSHOP ON HARMONIZED GENDER & DEVELOPMENT GUIDELINES	\N	PHILIPPINE ASSOCIATION OF WATER DISTRICTS-HUMAN RESOURCE PRACTITIONER	\N	0	\N	2017-02-02	2017-02-02	8	0	0	0	 
14761	DRIVING INNOVATIONS IN WATER UTILITIES: A TECHNICAL SYMPOSIUM ON PHYSICAL ASSET MANAGEMENT	\N	CHEMICAL RESEARCH INC. ; AGUA HAUS INC,; VINTUS SOLUTIONS, INC.	\N	0	\N	2017-02-01	2017-02-01	8	0	0	0	 
14762	ISO 9001:2015 QUALITY MANAGEMENT SYSTEMS AWARENESS AND DOCUMENTATION	\N	TUV RHEINLAND	\N	0	\N	2017-01-16	2017-01-17	16	0	0	0	 
14763	RA 9184 & ITS IRR	\N	DEPARTMENT OF BUDGET & MANAGEMENT RO III	\N	0	\N	2016-10-17	2016-10-19	24	0	0	0	 
14764	ORIENTATION COURSE ON ISO 9001:2015 QUALITY MANAGEMENT SYSTEM	\N	DEVELOPMENT ACADEMY OF THE PHILIPPINES	\N	0	\N	2016-08-19	2016-08-19		0	0	0	 
14765	WATER SAFETY PLAN ORIENTATION & DEVELOPMENT SEMINAR	\N	LOCAL WATER UTILITIES ADMINISTRATION	\N	0	\N	2015-12-15	2015-12-17	24	0	0	0	 
14766	WORK ATTITUDE & VALUES ENHANCEMENT(WAVE) SEMINAR	\N	CIVIL SERVICE COMMISSION	\N	0	\N	2015-12-16	2015-12-16	8	0	0	0	 
14767	PHILGEPS TRAINING FOR BUYERS	\N	EBLACKBOARDS SOLUTIONS INC.	\N	0	\N	2015-11-12	2015-01-13	16	0	0	0	 
14768	SAFETY PLANNING & EMERGENCY PREPAREDNESS SEMINAR	\N	LOCAL WATER UTILITIES ADMINISTRATION	\N	0	\N	2015-11-09	2015-11-10	16	0	0	0	 
14769	EFFECTIVE COMMUNICATION THROUGH MEDIA NETWORKING	\N	LOCAL WATER UTILITIES ADMINISTRATION	\N	0	\N	2015-07-29	2015-07-30	16	0	0	0	 
14770	BECOMING AN EFFECTIVE WATER DISTRICT SECRETARY SEMINAR	\N	BAGUIO CITY WATER DISTRICT	\N	0	\N	2015-06-17	2015-06-18	16	0	0	0	 
14771	HUMAN RESOURCE CONFERENCE	\N	PHILIPPINE ASSOCIATION OF WATER DISTRCITS- HUMAN RESOURCE PRACTITIONER	\N	0	\N	2014-02-04	2014-02-04	8	0	0	0	 
14772	INVESTMENT AND BANKING PROCEDURES	\N	PHILIPPINE COOPERATIVE DEVELOPMENT OFFICE-BATAAN	\N	0	\N	2013-09-13	2013-09-13	8	0	0	0	 
14773	VALUES ORIENTATION SEMINAR	\N	CIVIL SERVICE COMMISSION	\N	0	\N	2013-08-07	2013-08-08	8	0	0	0	 
14774	PERSONNEL SELECTION BOARD SKILLS ENHANCEMENT	\N	CIVIL SERVICE COMMISSION	\N	0	\N	2010-07-16	2010-07-16	8	0	0	0	 
14775	STRATEGIC PLANNING MANAGEMENT (5TH MODULE)	\N	PHILIPPINE COOPERATIVE DEVELOPMENT OFFICE-BATAAN/LANDBANK	\N	0	\N	2009-05-13	2009-05-14	16	0	0	0	 
14776	HUMAN RESOURCE MANAGEMENT (3RD MODULE)	\N	PHILIPPINE COOPERATIVE DEVELOPMENT OFFICE-BATAAN/LANDBANK	\N	0	\N	2007-10-18	2007-10-19	16	0	0	0	 
14777	INTRAVASCULAR THERAPY (IVT) TRAINING	\N	ASSOCIATION OF NURSING SERVICE ADMININSTRATORS OF THE PHILIPPINES	\N	0	\N	2016-01-15	2016-01-17	24	0	0	0	 
14778	NRUSING/NURSE TRAINING ADAPTIVE PROGRAM	\N	THE MEDICAL CITY, ORTIGAS	\N	0	\N	2016-04-16	2016-05-20		0	0	0	 
14779	NURSING/NURSE TRAINING ADAPTIVE PROGRAM	\N	ASSOCIATION OF NURSING SERVICE ADMINISTRATORS OF THE PHILIPPINES	\N	0	\N	2016-04-16	2016-05-20		0	0	0	 
14780	TRAINER'S METHODOLOGY I	\N	TECHNICAL EDUCATION AND SKILLS DEVELOPMENT AUTHORITY	\N	0	\N	2015-04-20	2015-05-09		0	0	0	 
14781	MECHATRONICS SERVICING NC II	\N	MECHATRONICS TECHNOLOGIES CORP.	\N	0	\N	2012-09-05	2012-10-04		0	0	0	 
14782	MASTERING MICROSOFT OFFICE 2016 SEMINAR	\N	PC EXTREME TRAINING TEAM	\N	0	\N	2018-03-11	2018-11-24	80	0	0	0	 
14783	INTERNATIONAL TRAINING ON 21ST CENTURY INCLUSIVE EDUCATION FOR SPED AND EARLY CHILDHOOD EDUCATION TEAHERS	\N	PHILIPPINE CONTINUING PROFESSIONAL DEVELOPMENT TRAINING CENTER, INC.	\N	0	\N	2018-01-23	2018-01-26	16	0	0	0	 
14784	SERVICE LEVEL CURRENCY IDENTIFICATION	\N	MICHEL J LHUILLIER FINANCIAL SERVICES (PAWNSHOP) INC.	\N	0	\N	2018-08-28	2018-08-28	8	0	0	0	technical
14785	MONEY TRANSFER SERVICES TRAINING	\N	MICHEL J LHUILLIER FINANCIAL SERVICES(PAWNSHOP) INC.	\N	0	\N	2018-05-23	2018-05-24	8	0	0	0	technical
14786	JEWELRY BASIC GOLD APPRAISAL	\N	MICHEL J LHUILLIER FINANCIAL SERVICES (PAWNSHOP) INC.	\N	0	\N	2018-04-04	2018-04-05	8	0	0	0	technical
14787	SYNTHESIS: AN INNOVATION OF TECHNOLOGY	\N	BATAAN PENINSULA STATE UNIVERSITY-ORANI	\N	0	\N	2016-11-22	2016-11-22	8	0	0	0	technical
14788	ON THE JOB TRAINING-PHRMO	\N	BATAAN PENINSULA STATE UNIVERSITY-ORANI	\N	0	\N	2016-04-18	2016-05-27	240	0	0	0	 
14789	PERSONAL FINANCES AND WEB BLOGGING	\N	BATAAN PENINSULA STATE UNIVERSITY-ORANI	\N	0	\N	2016-02-12	2016-02-12	3	0	0	0	 TECHNICAL
14790	VISUAL BASIC TO ANDROID PROGRAMMING	\N	BATAAN PENINSULA STATE UNIVERSITY-ORANI	\N	0	\N	2016-02-12	2016-02-12	3	0	0	0	technical
14791	BASIC ANIMATION	\N	BATAAN PENINSULA STATE UNIVERSITY-ORANI	\N	0	\N	2016-02-12	2016-02-12	3	0	0	0	technical
14792	TRAINING IN INTELLECTUAL PROPERTY RIGHTS	\N	BATAAN PENINSULA STATE UNIVERSITY-ORANI	\N	0	\N	2015-08-16	2015-08-19	9	0	0	0	technical
14793	TRAINING ON INTELLECTUAL PROPERTY RIGHTS	\N	BATAAN PENINSULA STATE UNIVERSITY	\N	0	\N	2015-08-19	2015-08-19	9	0	0	0	technical
14794	2017 DEPED-PEAC SUMMER IN-SERVICE TRAINING (INSET) FOR JUNIOR HIGH SCHOOL TEACHERS IN PRIVATE SCHOOLS ON DESIGNING, ASSESSING AND FACILITATING GRADE 7-10 LEARNING UNITS BASED ON THE K-12 STANDARDS	\N	PRIVATE EDUCATION ASSISTANCE COMMITTEE	\N	0	\N	2017-05-01	2017-05-03	24	0	0	0	Supervisory
14795	DIVISION SEMINAR ON CONTENT MASTERY, PROBLEM SOLVING AND E-TEACH STRATEGY FOR SECONDARY SCHOOL MATHEMATIC TEACHERS	\N	DEPED BATAAN	\N	0	\N	2016-06-01	2016-06-02	16	0	0	0	Supervisory
14796	MODULE WRITING	\N	PWU-MANILA	\N	0	\N	2020-05-29	2020-05-29		0	0	0	 
14797	DESIGNING RUBRICS FOR STUDENT'S EVALUATION	\N	PWU-MANILA	\N	0	\N	2020-06-09	2020-06-09		0	0	0	 
14798	FIRST AID AND BASIC LIFE SUPPORT TRAINING	\N	PETRON	\N	0	\N	2017-02-21	2017-02-21		0	0	0	 
14799	VESSEL SAFETY INSPECTION TRAINING	\N	PETRON	\N	0	\N	2016-08-12	2016-08-12	8	0	0	0	 
14800	GUIDE TO PORT ENTRY	\N	PETRON	\N	0	\N	2016-08-04	2016-08-04	8	0	0	0	 
14801	NTC RADIO USER CERTIFICATION	\N	PETRON	\N	0	\N	2018-08-14	2018-08-14	8	0	0	0	~
14802	INTERNATIONAL SHIP AND PORT FACILITY SECURITY	\N	PETRON	\N	0	\N	2016-10-04	2016-10-04	8	0	0	0	 
14803	FIRE FIGHTING AND SCBA TRAINING	\N	PETRON	\N	0	\N	2011-09-21	2011-09-21	8	0	0	0	 
14804	BASIC LIFE SUPPORT (CPR FOR HEALTHCARE PROVIDERS)	\N	PHILIPPINE NATIONAL RED CROSS	\N	0	\N	2009-05-01	2009-05-02	16	0	0	0	technical
14805	HEALTH AND SAFETY TRAINING AWARENESS TRAINING	\N	SEOULMETAL PHILIPPINES, INC.	\N	0	\N	2010-08-18	2010-08-18	8	0	0	0	technical
14806	BASIC OCCUPATIONAL SAFETY AND HEALTH STANDARD	\N	BPSU	\N	0	\N	2013-01-01	2013-01-01		0	0	0	 
14807	METHODOLOGY OF TECHNOLOGY	\N	BPSU	\N	0	\N	2013-01-01	2013-01-01		0	0	0	 
14808	BISTRO ACADEMY - TGIFRIDAYS	\N		\N	0	\N	2014-01-28	2014-06-05		0	0	0	 
14811	LEADERSHIP TRAINING SEMINAR	\N	CENTRAL STUNDENT COUNCIL BOARD	\N	0	\N	2019-06-13	2019-06-15	72	0	0	0	
14812	MEDICAL AND DENTAL MISSION BOMBO MEDICO YSEALI SUMMIT 2019	\N	BOMBO MEDICO	\N	0	\N	2019-07-14	2019-07-14	8	0	0	0	 
14813	BUILDING THE FUTURE	\N	BECTON DICKINSON PHILS. INC.	\N	0	\N	2016-07-04	2016-07-04	4	0	0	0	 Supervisory
14814	DISASTER AWARENESS & PREPAREDNESS SEMINAR WITH FIRE/EARTHQUAKE EVACUATION DRILL	\N	CDRRMO	\N	0	\N	2017-04-25	2017-04-25	4	0	0	0	Supervisory
14815	SAFE HANDLING OF HIGH ALERT MEDICATION	\N	AL ADWAN GENERAL HOSPITAL	\N	0	\N	2020-05-19	2020-05-19	1	0	0	0	 
14816	TQM SEMINAR AND WORKSHOP	\N	AL ADWANI GENERAL HOSPITAL	\N	0	\N	2019-11-08	2019-11-08	4	0	0	0	 
14817	NEONATAL RESUSCITATION PROVIDE COURSE	\N	SAUDI NATIONAL SOCIETY	\N	0	\N	2018-09-19	2018-09-19	24	0	0	0	 
14818	COPD ASSESSMENT	\N	DR. SULAIMAN AL HABIB	\N	0	\N	2017-02-20	2017-02-20	1	0	0	0	
14819	HAZMAT/MSDS/NFPA	\N	DR. SULAIMAN AL HABIB	\N	0	\N	2016-03-23	2016-03-23	1	0	0	0	 
14820	INFECTION CONTROL	\N	DR. SULAIMAN AL HABIB	\N	0	\N	2015-10-06	2015-10-06	1	0	0	0	 
14821	INTERNATIONAL PATIENT SAFETY GOAL	\N	DR. SULAIMAN AL HABIB	\N	0	\N	2015-10-20	2015-10-20	1	0	0	0	 
14822	BASIC LIFE SUPPORT	\N	DR. SULAIMAN AL HABIB	\N	0	\N	2015-08-13	2015-08-13	5	0	0	0	 
14823	3 DAYS BASIC IN THERAPY	\N	V.L MAKABALI MEMORIAL HOSPITAL	\N	0	\N	2010-01-27	2010-01-30	36	0	0	0	 
14824	COMMERCIAL COOKING	\N	PHILIPPINE WOMEN'S UNIVERSITY	\N	0	\N	2010-09-01	2010-12-01	300	0	0	0	 
14825	ON-THE-JOB TRAINING AS CLERK	\N	AFAB-AUTHORITY OF FREEPORT AREA OF BATAAN	\N	0	\N	2010-11-10	2011-02-10	360	0	0	0	 
14826	CORONA VIRUS (COVID-19) FOR NRUSING PROFESSIONAL	\N	INTERCARE	\N	0	\N	2020-08-04	2020-08-04		0	0	0	 
14827	DATA PRIVACY BRIEFING SEMINAR	\N	UE COLLEGE OF EDUCATION	\N	0	\N	2018-01-29	2018-01-29	2	0	0	0	 
14828	LABOR EDUCATION FOR GRADUATING STUDENTS 2018	\N	UE MANILA	\N	0	\N	2018-01-22	2018-01-22	2	0	0	0	 
14829	OJT ON FOOD SERVICE	\N	MESA FILIPINO MODERNE	\N	0	\N	2018-02-12	2018-02-25	150	0	0	0	 
14830	OJT ON PUBLIC HEALTH	\N	CITY OF SAN JUAN	\N	0	\N	2017-12-16	2018-01-26	250	0	0	0	 
14831	OJT ON ADMINISTRATIVE AND THERAPEUTIC DIETETICS	\N	DND PHILIPPINE VETERANS AFFAIR	\N	0	\N	2017-11-13	2017-12-09	200	0	0	0	 
14832	HEALTHY BA TO ?	\N	UE COLLEGE OF EDUCATION	\N	0	\N	2017-10-04	2017-10-04	2	0	0	0	 
14833	VIKINGS DINE AND LEARN	\N	VIKINGS MOA	\N	0	\N	2017-09-26	2017-09-26	3	0	0	0	 
14834	LIGTAS AT MALINIS NA PAGKAIN, MAGANDANG KALUSUGAN	\N	UE COLLEGE OF EDUCATION	\N	0	\N	2017-08-25	2017-08-25	3	0	0	0	 
14835	PAN COMMUNITY HEALTH & NUTRITION MEDICAL MISSION	\N	UE COLLEGE OF EDUCATION	\N	0	\N	2017-05-06	2017-05-07	24	0	0	0	 
14836	HONING 21ST CENTURY SKILLS: CRITICAL & CREATIVE	\N	UE COLLEGE OF EDUCATION	\N	0	\N	2016-09-29	2016-09-29	3	0	0	0	 
14837	ADOLESCENCE: THE ANTECEDENCE OF THE FIRST 1000 DAYS	\N	NUTRITION FOUNDATION OF THE PHILIPPINES	\N	0	\N	2016-07-21	2016-07-21	3	0	0	0	 
14838	PREPARATION FOR UNIVERSAL HEALTH CARE IMPLEMENTATION	\N	DOH REGIONAL OFFICE 3	\N	0	\N	2020-02-20	2020-02-20	8	0	0	0	technical
14839	BASIC DISASTER MANAGEMENT AND PROJECT 143 TRAINING	\N	PHILIPPINE RED CROSS BATAAN CHAPTER	\N	0	\N	2015-06-04	2015-06-05	16	0	0	0	technical
14840	COMMUNITY HEALTH TEAM ASSEMBLY	\N	MUNICIPAL HEALTH OFICE-ORION	\N	0	\N	2014-02-20	2014-02-20	8	0	0	0	technical
14841	ESSENTIAL NON-COMMUNICABLE DISEASE INTERVENTION FOR PRIMARY HEALTH CARE	\N	DOH REGIONAL OFFICE 3	\N	0	\N	2014-11-18	2014-11-18	8	0	0	0	technical
14842	DOH-NCSP PRIMARY EYE CARE AND COMMUNITY EYE HEALTH TRAINING	\N	BATAAN GENERAL HOSPITAL	\N	0	\N	2013-09-18	2013-09-18	8	0	0	0	technical
14843	PAG OORGANISA NG PAMAYANAN PARA SA TAO 	\N	MUNICIPAL SOCIAL WELFARE & DEV'T OFFICE-ORION	\N	0	\N	2012-12-06	2012-12-06	8	0	0	0	technical
14844	KALUSUGAN PANGKALAHATAN COMMUNITY HEALTH TRAINING	\N	MUNICIPAL HEALTH OFFICE ORION	\N	0	\N	2012-06-07	2012-06-07	8	0	0	0	technical
14845	TRAINING ON HEALTH AND NUTRITION AND FIRST AID	\N	ORION MUNICIPAL HEALTH OFFICE	\N	0	\N	2008-10-30	2008-10-30	8	0	0	0	technical
14846	ON THE JOB TRAINING (EXECUTIVE SECRETARY)	\N	BATAAN PENINSULA STATE UNIVERSITY	\N	0	\N	2013-01-01	2013-02-01	40	0	0	0	 
14847	EARLY CHILD HOOD CARE EDUCATION AND DEV'T FOR CHILD CARETAKERS	\N	MAAM DAISY LOZADA	\N	0	\N	2005-07-16	2005-07-23		0	0	0	
14848	BASIC OCCUPATIONAL SAFETY AND HEALTH	\N	AVIETCS TRAINING AND CONSULTANCY SERVICES	\N	0	\N	2018-11-08	2018-11-11	40	0	0	0	 
14849	BASIC LIFE SUPPORT	\N	PHILIPPINE NATIONAL RED CROSS	\N	0	\N	2010-10-08	2010-10-09	16	0	0	0	 
14850	INFUSION NURSE CERTIFICATION TRAINING	\N	ASSOCIATIO OF NURSING SERVICE ADMINISTRATION OF THE PHILIPPINES, INC. PHILIPPINE NURSES ASSOCIATION	\N	0	\N	2018-07-05	2018-07-07	24	0	0	0	 
14851	MOVING ON: UPDATES ON KIDNEY TRANSPLANT- ACTION, IMMUNOSUPPRESION & MANAGEMENT OF COMPLICATIONS	\N	PHILIPPINE NURSES ASSOCIATION	\N	0	\N	2018-03-21	2018-03-21		0	0	0	 
14852	BASIC MOLECULAR BIOLOGY MODULE1 BASIC SCIENCE	\N	CENTER OF DISEASE CONTROL AND PREVENTION	\N	0	\N	2020-10-20	2020-10-21	1.5	0	0	0	
14853	DIFFERERENT DIMENTIONS OF DEMENTIA:IMPROVING PATIENTS QUALITY OF LIFE	\N	PHILIPPINE NURSES ASSOCIATION	\N	0	\N	2017-12-12	2017-12-12		0	0	0	 
14854	BASIC MOLECULAR BIOLOGY MODULE 2 LABORATORY PRACTICE	\N	CENTER FOR DISEASE CONTROL AND PREVENTION	\N	0	\N	2020-10-21	2020-10-22	1.5	0	0	0	 
14855	BASIC MOLECULAR BIOLOGY MODULE 4 PCR AND REALTIME PCR	\N	CENTER FOR DISEASE AND CONTROL AND PREVENTION	\N	0	\N	2020-10-25	2020-10-26	1.5	0	0	0	 
14856	CLOSING THE GAP: HIV AN AIDS	\N	PHILIPPINE NURSES ASSOCIATION	\N	0	\N	2017-07-12	2017-07-12		0	0	0	 
14857	HOW TO BE A WORLD CLASS LABORATORY IN 2020	\N	PENINSULA DE BATAAN HOTEL AND RESORT, ORION	\N	0	\N	2019-06-29	2019-06-29	9	0	0	0	 
14858	BASIC LIFE SUPPORT	\N		\N	0	\N	2018-07-30	2020-07-30	4	0	0	0	 
14859	NATIONAL RESUSCITATION PROGRAM RPOVIDER	\N	DR. MAYSAN SHAAR-NRP COURSE DIRECTION	\N	0	\N	2019-03-10	2021-03-11	6	0	0	0	 
14860	SAFETY ORIENTATION PROGRAM	\N	ENG. HANZAH AWADH THOMALI	\N	0	\N	2020-01-10	2020-01-10	2	0	0	0	 
14861	NURSING DOCUMENTATION COURSE	\N	IBRI REGIONAL HOSPITAL	\N	0	\N	2019-11-19	2019-11-19	7	0	0	0	 
14862	IV THERAPY TRAINING	\N	IBRI REGIONAL HOSPITAL	\N	0	\N	2016-12-20	2016-12-22	21	0	0	0	 
14863	THE RESPIRATORY CARE TRAINING PROGRAM PUT THEORY INTO PRACTICE	\N	KHOULA HOSPITAL	\N	0	\N	2015-11-05	2015-11-07	21	0	0	0	 
14864	ADVANCE CARDIAC LIFE SUPPORT	\N	PHILIPPINE HEART ASSOCIATION	\N	0	\N	2016-03-08	2016-03-10	24	0	0	0	 
14865	BASIC CARDIAC LIFE SUPPORT	\N	PHIL. HEART ASSOCIATION	\N	0	\N	2016-03-08	2016-03-10	24	0	0	0	 
14867	COMPUTER LITERACY FOR ELEMENTARY TEACHERS	\N		\N	0	\N	2015-05-11	2015-05-22	80	0	0	0	 
14868	RESEARCH CLUSTER TECH TRENDS 2015	\N		\N	0	\N	2015-06-26	2015-06-26	8	0	0	0	 
14869	LABOR EDUCATION FOR GRADUATING STUDENTS 2015	\N		\N	0	\N	2015-09-17	2015-09-17	8	0	0	0	 
14870	MOBILE APPS DEVELOPMENT	\N	8	\N	0	\N	2015-09-17	2015-09-17	8	0	0	0	 
14871	TEAMWORK FOR SUCCESS	\N		\N	0	\N	2015-09-17	2015-09-17	8	0	0	0	 
14872	HIGH IMPACT 5: KALUSUGANG TULOY-TULOY PARA SA PAMILYANG PINOY	\N	COLLEGE OF NURSING AND MIDWIFERY (BPSU)	\N	0	\N	2015-09-29	2015-09-29		0	0	0	 
14873	EMERGENCY FIRST AID AND BASIC LIFE SUPPORT CPR C AED TRAINING FOR ADULT LAY RECUES	\N	PHILIPPINE RED CROSS BATAAN CHAPTER	\N	0	\N	2017-09-18	2017-09-20		0	0	0	 
14874	PHILIPPINE RED CROSS EMERGENCY FIRST AID ANF BASIC LIFE SUPPORT CPR WITH AUTOMATED	\N	MS. MARY ANNE SUGUITAN	\N	0	\N	2017-09-18	2017-09-20		0	0	0	 
14875	134TH POST GRADUATE COURSE ON BOSH	\N	OCCUPATIONAL HEALTH NURSE ASSOCIATION	\N	0	\N	2013-04-01	2013-04-06	50	0	0	0	 
14876	OPERATIONS CENTER MANAGEMENT & HANDS-ON TRAINING	\N	PHILIPPINE RED CROSS	\N	0	\N	2017-12-11	2017-12-16	48	0	0	0	 
14877	AMBULANCE OPERATION TRAINING COURSE	\N	PHILIPPINE RED CROSS	\N	0	\N	2017-03-25	2017-03-26	24	0	0	0	 
14878	EMERGENCY MEDICAL TECHNICIAN TRAINING COURSE	\N	PHILIPPINE RED CROSS	\N	0	\N	2017-06-19	2017-06-30	180	0	0	0	 
14879	ON THE JOB TRAINING  F&B DEPARTMENT 	\N	THE LIGHTHOUSE MARIAN RESORT	\N	0	\N	2019-03-09	2019-04-15	300	0	0	0	 
14880	PHILIPPINE RED CROSS (BLS, CPR, FIRST AIDE)	\N	LOCAL GOVERNMENT OF UNIT OF DINALUPIHAN	\N	0	\N	2018-06-05	2018-06-29	40	0	0	0	 
14881	TRAINING ON NEWBORN SCREENING	\N	LOCAL GOVERNMENT UNIT OF DINALUPIHAN	\N	0	\N	2018-03-21	2018-03-22	16	0	0	0	 
14882	BASIC EMERGENCY OBSTETRICS AND NEWBORN CARE	\N	LOCAL GOVERNMENT UNIT OF DINALUPIHAN	\N	0	\N	2017-10-10	2017-10-26	80	0	0	0	 
14883	ON THE JOB TRAINING AS CUSTOMER SERVICE ASSISTANT 	\N	MAX'S RESTAURANT BALANGA CITY	\N	0	\N	2008-08-01	2008-09-21	432	0	0	0	 
14884	ON THE JOB TRAINING ACTUAL SHIPBOARD TRAINING AS FRONT DESK CLERK	\N	SULPICO LINES INC M/V PRINCESS OF THE SOUTH	\N	0	\N	2008-04-06	2008-04-12	168	0	0	0	
14885	ON THE JOB TRAINING AS ROOM ATTENDANT	\N	GRAND SENSORS HOTEL SUBIC BAY	\N	0	\N	2005-03-04	2005-03-06	300	0	0	0	 
14886	CENTER FOR DISEASE CONTORL PREVENTION (BASIC MOLECULAR BIOLOGY MODULE 2)	\N	CENTER FOR DISEASE CONTROL AND PREVENTON	\N	0	\N	2020-10-01	0201-10-01		0	0	0	 
14887	 COOPERATIVE CODES	\N	JUNIOR PHILIPPINE INSTITUTE OF ACCOUNTANCY	\N	0	\N	2018-11-17	2018-11-17		0	0	0	 
14888	ANTI-MONEY LAUNDERING ACT A SELF-COMPLIANCE	\N	JUNIOR PHILIPPINE INSTITUTE OF ACCOUNTANT	\N	0	\N	2021-03-06	2021-03-06		0	0	0	 
14889	PASIKLABAN  SA PIDABS 2014	\N	PHILIPPINE WOMENS UNIVERSITY	\N	0	\N	2014-12-19	2015-12-19		0	0	0	
14890	8TH ANNUAL CONFERENCE OF CRIMINOLOGY AND POLITICAL SCIENCE OF THE PHILIPPINES	\N		\N	0	\N	2015-09-23	2015-09-23		0	0	0	 
14891	DT 104 MARKMANSHIP AND COMBAT SHOOTING	\N	RON MARK D. OCAMPO	\N	0	\N	2017-02-26	2017-02-26		0	0	0	 
14892	CITY PUBLIC SAFETY OFFICE - INTERNSHIP	\N	BATAAN HEROES MEMORIAL COLLEGE	\N	0	\N	2018-01-09	2018-12-10		0	0	0	 
14893	BUREAU OF JAIL MANAGEMENT AND PENOLOGY - INTERNSHIP	\N	BATAAN HEROES MEMORIAL COLLEGE	\N	0	\N	2018-10-15	2018-11-16		0	0	0	 
14894	PILAR MUNICIPAL POLICE STATION - INTERNSHIP	\N	BATAAN HEROES MEMORIAL COLLEGE	\N	0	\N	2019-01-14	2019-01-02		0	0	0	 
14895	BATAAN PAROLE AND PROBATION OFFICE - INTERNSHIP 	\N	BATAAN HEROES MEMORIAL COLLEGE	\N	0	\N	2019-11-02	2019-01-28		0	0	0	 
14896	BUREAU OF FIRE PROTECTION - INTERNSHIP	\N	BATAAN HEROES MEMORIAL COLLEGE	\N	0	\N	2019-01-03	2019-03-15		0	0	0	 
14897	MASTERING QUARANTINE AND QUALITATIVE RESEARCH WRITING: BACKBONE TO PROFESSIONAL LIFELONG LEARNERS	\N	ALISWAG LIFELONG TRAINING CENTER	\N	0	\N	2019-11-29	2019-12-01	0	0	0	0	
14898	AGRICULTURAL CROP PRODUCTION	\N	TESDA	\N	0	\N	2017-10-17	2017-10-20	24	0	0	0	 TECHNICAL
14900	WORK ATTITUDE AND VALUES ENHANCEMENT	\N	GLOBALLAND PROPERTY MANAGEMENT, INC.	\N	0	\N	2015-08-01	2015-08-01	8	0	0	0	 Managerial
14899	SPEAK WITH CONFIDENCE	\N	GLOBALLAND PROPERTY MANAGEMENT	\N	0	\N	2015-08-11	2015-08-11	8	0	0	0	 Managerial
14901	ADVANCE CARDIAC LIFE SUPPORT AND BASIC LIFE SUPPORT	\N	PHILIPPINE HEART ASSOCIATION	\N	0	\N	2016-09-22	2016-09-24	16	0	0	0	 
14902	INTRAVEOUS THERAPY UPDATE	\N	BATAAN GENERAL HOSPITAL	\N	0	\N	2014-06-27	2014-06-29	16	0	0	0	 
14903	40TH CONVENTIONAL SEMINAR (ORNAP)	\N	MANILA	\N	0	\N	2014-07-05	2014-07-06	8	0	0	0	 
14904	INTEGRATING GENETICS IN THE NURSING PRACTICE	\N	UP MANILA	\N	0	\N	2019-07-22	2019-07-23	16	0	0	0	 
14905	SCIENTIFIC GESTURE NEORATAL SEPSIS	\N	BGH	\N	0	\N	2017-06-27	2017-07-27	8	0	0	0	 
14906	ONE DAY SEMINAR ON THE IMPLEMENTATION OF THE ELECTRONIC UPDATING PERSONNEL SERVICES	\N	PERDO PASCUA, PH.D.	\N	0	\N	2010-03-02	2010-03-02	8	0	0	0	 
14907	MEETING WITH THE BIR OFFICER ON THE UPDATE OF TAX EXEMPTION OF PERSONNEL	\N	MEDINA M. DE JESUS	\N	0	\N	2010-05-19	2010-05-19	8	0	0	0	 
14908	2ND DIVISION TRAINING FOR UNTRAINER PRE-SCHOOL TEACHERS	\N	ROMEO M. ALIP, PH.D, CESO V	\N	0	\N	2010-08-04	2010-08-05	16	0	0	0	 
14909	FILIPINO PHARMACIST EMBRACING THE CHALLENGES OF CHANGE	\N	PHILIPPINE PHARMACIST ASSOSCIATION	\N	0	\N	2017-05-24	2017-05-27	24	0	0	0	 Professional
14910	ELECTRONIC DRUG PRICE MNITORING	\N	DEPARTMENT OF HEALTH	\N	0	\N	2016-09-14	2016-09-14	8	0	0	0	 Professional
14911	BOSH TRAINING FOR NURSES	\N	DLX BAGS INC	\N	0	\N	2019-06-13	2019-06-22	48	0	0	0	 Professional
14912	BASIC CARDIAC LIFE SUPPORT	\N	HOPE AMBULANCE	\N	0	\N	2016-06-24	2016-06-26	24	0	0	0	 Professional
14913	BASIC OCCUPATIONA SAFETY AND HEALTH (BOSH)	\N	AYLLON-DELOS REYES SAFETY MANAGEMENT CONSULTANCY SERVICES	\N	0	\N	2017-09-14	2017-09-17	40	0	0	0	 Professional
14914	ON THE JOB TRAINING (MUNICIPAL)	\N	MUNICIPAL TREASURER'S OFFICE-PILAR	\N	0	\N	2015-11-16	2015-12-18	200	0	0	0	 Professional
14915	FIRE WARDEN	\N	AL BARAKAH CAMP SITE U.A.E	\N	0	\N	2016-08-17	2016-08-17	10	0	0	0	 Team Training
14916	NEBOSH HEALTH AND SAFETY AT WORK AWARD	\N	AL BARAKAH CAMP SITE U.A.E	\N	0	\N	2014-11-21	2014-12-05	40	0	0	0	 Professional
14917	SUMMER CADRE TRAINING	\N	ROTC-238TH DEPT-PAF	\N	0	\N	2015-04-12	2015-05-27	1080	0	0	0	 SKILLS TRAINING
14918	BASIC LIFE SUPPORT (FE DEL)	\N	FE DEL MUNDO MEDICAL CENTER	\N	0	\N	2020-02-10	2020-02-10	5	0	0	0	 Professional
14919	PHILIPPINE RED CROSS STANDARD FIRST AID BASIC LIFE	\N	PHILIPPINE RED CROSS BATAAN CHAPTER	\N	0	\N	2018-11-20	2018-11-23	24	0	0	0	 Professional
14920	NURSING DOCUMENTATION SKILLS	\N	AL BULKAYARIN GENERAL HOSPITAL	\N	0	\N	2017-11-21	2017-11-21	3	0	0	0	 
14921	LEADERSHIP IN NURSING	\N	AL BUKAYRIYAN GENERAL HOSPITAL	\N	0	\N	2017-10-22	2017-10-22	4	0	0	0	 
14922	ACCOUNTANCY DAY 2014 "A PROOF OF SURVIVAL"	\N	JUNIOR PHIL. INSTITUTE OF ACCOUNTANTS LPC-CHAPTER	\N	0	\N	2014-09-20	2014-09-20	8	0	0	0	 Professional
14923	LEADERSHIP FOR LEADERS TO LEAD 2014	\N	LIMAY POLYTECHNIC COLLEGE	\N	0	\N	2014-11-28	2014-11-29	24	0	0	0	 Team Training
14924	KATROPA	\N	PROVINCIAL POPULATION OFFICE PROVINCE OF BATAAN	\N	0	\N	2019-11-28	2019-11-29	16	0	0	0	 Team Training
14925	FOOD AND BEVERAGE SERVICES NCII	\N	NC II	\N	0	\N	2017-07-24	2017-09-15	8	0	0	0	 Managerial
14926	FOSTERING A PSYCHOLOGY OF WELL-BEING FOR THE FILIPINO	\N	PSYCHOLOGICAL ASSOCIATION OF THE PHILIPPINES	\N	0	\N	2019-01-25	2019-01-26	20	0	0	0	 Professional
14927	ROAD TO RPM THE JOURNEY OF A TOP NOTCHER	\N	REVIEW FOR GLOBAL OPPORTUNITIES	\N	0	\N	2019-01-19	2019-01-19	9	0	0	0	 Professional
14928	ON-THE-JOB-TRAINING	\N	LR DE GUZMAN CONSTRUCTION	\N	0	\N	2018-06-01	2018-07-31	360	0	0	0	 Training
14929	BASIC TO ADVANCE MS EXCEL	\N	INSIGHTS MANILA	\N	0	\N	2020-08-22	2020-08-23	8	0	0	0	 Training
14930	THE POWER OF PIVOT TABLES	\N	ACCOUNTING CPD.NET	\N	0	\N	2020-08-24	2020-08-24	1	0	0	0	 Training
14931	BIO SAFETY LABORATORY	\N	BIO SAFETY LABORATORY	\N	0	\N	2021-01-01	2021-01-01	0	0	0	0	 Team Training
14932	2019 BPSU CICT STUDENT IN HOUSE REVIEW	\N	BPSU	\N	0	\N	2019-05-06	2019-05-06	0	0	0	0	 Professional
14933	REGULAR IVT TRAINING PROGRAM	\N	V.C MAKAHALI MEMORIAL HOSPITAL INC.	\N	0	\N	2015-08-12	2015-08-14	24	0	0	0	 Professional
14934	BLS/ ACLS	\N	CENTRO MEDICO OF ROSARIO	\N	0	\N	2018-10-22	2018-10-24	24	0	0	0	 Professional
14935	7QC TOOLS	\N	MITSUBA PHILIPPINES CORPORATION	\N	0	\N	2019-09-10	2019-09-13	3	0	0	0	 Professional
14936	FIRST AID AND BASIC LIFE SUPPORT (SUMI)	\N	SUMI PHIL. WIRING SYSTEM CORP.	\N	0	\N	2017-07-20	2017-07-21	16	0	0	0	 SKILLS TRAINING
15216	SEMINAR WORKSHOP ON 5S OF GOOD HOUSEKEEPING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
14937	CLINICAL SIMULATION TRAINING PROGRAM	\N	DAEGU HEALTH COLLEGE, DAEGU SOUTH KOREA	\N	0	\N	2017-08-07	2017-08-20	0	0	0	0	 Team Training
14938	RED CROSS YOUTH LEADERSHIP TRAINING	\N	RED CROSS BALANGA CHAPTER	\N	0	\N	2017-11-10	2017-11-12	0	0	0	0	LEADERSHIP
14939	BLS AND ADVANCE CARDIAC LIFE SUPPORT	\N	PHILLIPINE HEART ASSOCIATION	\N	0	\N	2021-02-26	2017-11-12	18	0	0	0	 SKILLS TRAINING
14940	ARCHITECTURE TRAINING APPRENTICESHIP	\N	PEO, BATAAN	\N	0	\N	2020-12-18	2021-05-16	8	0	0	0	 TECHNICAL
14941	BSL AND BFA (MARIVELES)	\N	MARIVELES RESCUE MEDICS	\N	0	\N	2016-12-13	2016-12-13	3	0	0	0	 TECHNICAL
14942	CARDIO PILMONARY RESUSCITATION	\N	MARIVELES RESCUE MEDICS	\N	0	\N	2018-02-28	2018-02-28	3	0	0	0	 TECHNICAL
14943	CARDIO PULMONARY RESUSCITATION	\N	MARIVELES RESCUE MEDICS	\N	0	\N	2018-02-28	2018-02-28	3	0	0	0	 TECHNICAL
14944	SEMINAR ON REPUBLIC ACT NO. 9184 AND ITS 2016 REVISED IMPLEMENTING RULES AND REGULATION	\N	DEPARTMENT OF BUDGET AND MANAGEMENT REGION III	\N	0	\N	2019-11-18	2019-11-20	24	0	0	0	 TECHNICAL
14945	CONTINUING PROFESSIONAL EDUCATION FOR PROCUREMENT PRACTITIONER	\N	DEPARTMENT OF BUDGET AND MANAGEMENT REGION III	\N	0	\N	2018-01-08	2018-03-08	24	0	0	0	 TECHNICAL
14946	EMERGENCY MEDICAL TECHNICIAN BASIC	\N	GOLDEN SUCCESS TRAINING AND EDUCATIONAL INSTITUTE	\N	0	\N	2018-10-20	2018-02-24	600	0	0	0	 SKILLS TRAINING
14947	WILDERNESS EMERGENCY SERVICES	\N	GOLDEN SUCCESS TRAINING AND EDUCATIONAL INSTITUTE	\N	0	\N	2019-02-16	2019-02-17	30	0	0	0	 SKILLS TRAINING
14948	BLS (PHA,POC)	\N	PHILIPPINE HEART ASSOCIATION, PHILIPPINE COLLEGE OF CARDIOLOGY	\N	0	\N	2018-04-28	2018-04-28	12	0	0	0	 SKILLS TRAINING
14949	ADVANCE CARDIAC LIFE SUPPORT	\N	PHILIPPINE HEART ASSOCIATION , PHILIPPINE COLLEGE OF CARDIOLOGY	\N	0	\N	2018-04-27	2018-04-29	16	0	0	0	 SKILLS TRAINING
14950	ADVANCE CARDIAC LIFE SUPPORT(PHA, PCOC)	\N	PHILIPPINE HEART ASSOCIATION , PHILIPPINE COLLEGE OF CARDIOLOGY	\N	0	\N	2018-04-27	2018-04-29	16	0	0	0	 SKILLS TRAINING
14951	MANUAL OPERATIONS FOR SCREENING DRUGTESTING LABORATORIES	\N	EAST AVENUE MEDICAL CENTER	\N	0	\N	2019-09-25	2019-09-27	0	0	0	0	 TECHNICAL
14952	VISION 2020 BEYOND: REACHING GREATER HEIGHTS FOR MEDICAL TECHNOLOGIST OF TOMORROW (PAMET)	\N	PHILIPPINE ASSOCIATION OF MEDICAL TECHNOLOGIST (PAMET)	\N	0	\N	2020-11-25	2020-11-27		0	0	0	 Team Training
14953	INNOVATION IN INFUSION THERAPY (AON)	\N	ASSOCIATION OF NURSING	\N	0	\N	2021-04-17	0202-04-17	3	0	0	0	 SKILLS TRAINING
14954	BASIC IV THERAPY TRAINING (V.L)	\N	V.L MAKABALI MEMORIAL HOSPITAL, INC.	\N	0	\N	2011-03-02	2011-03-04	24	0	0	0	 Team Training
14955	ACLS/BLS (SAUDI HEART COUNCIL)	\N	SAUDI HEART COUNCIL	\N	0	\N	2019-12-31	2019-12-31	8	0	0	0	 TECHNICAL
14956	WORKING OF HEIGHT SAFETY TRAINING AND EXERCISE (GNPD)	\N	GENERAL NACAR POWER DINGININ PROJECT	\N	0	\N	2018-11-26	2018-11-26	4	0	0	0	 TECHNICAL
14957	PHILIPPINE INTEGRATED MANAGEMENT OF ACUTE MALNUTRITION TRAINING (ORH)	\N	ORION RURAL HEALTH	\N	0	\N	2019-10-17	2019-10-08	16	0	0	0	 TECHNICAL
14958	ESSENTIAL PAIN MANAGEMENT SEMINAR FOR NURSES (BGHMC)	\N	BATAAN GENERAL HOSPITAL AND MEDICAL CENTER	\N	0	\N	2019-04-05	2019-04-05	8	0	0	0	 TECHNICAL
14959	HANDS ON CPR (PHIL. RED CROSS)	\N	PHIL. RED CROSS	\N	0	\N	2018-01-01	2018-01-01	6	0	0	0	 TECHNICAL
14960	ANTI MONEY LAUNDERING ACT	\N	PNB SAVINGS BANK	\N	0	\N	2017-08-26	2017-08-26	8	0	0	0	 TECHNICAL
14961	DISTRIBUTION SCHOOL	\N	COCA-COLA PHIL INC.	\N	0	\N	2018-09-18	2018-09-20	24	0	0	0	 TECHNICAL
14962	BASIC INTRAVENOUS THERAPY	\N	ANGELES UNIVERSITY	\N	0	\N	2010-12-14	2010-12-16	0	0	0	0	 TECHNICAL
14963	MEDICAL TECHNOLOGY INTERNSHIP (SLU)	\N	SAINT LOUIS UNIVERSITY	\N	0	\N	2019-01-15	2019-07-14	832	0	0	0	 TECHNICAL
14964	19TH PHIL. NATIONAL IMMUNIZATION CONFERENCE	\N	PHIL. PEDIATRIC SOCIETY CENTRAL LUZON	\N	0	\N	2018-11-15	2018-11-16	16	0	0	0	 TECHNICAL
14965	FIRST AID AND RISK MANAGEMENT (BPSU)	\N	BPSU	\N	0	\N	2016-07-26	2016-07-28	16	0	0	0	 TECHNICAL
14966	TESDA (INSTRUMENTAL AND CONTROL SERVICING NCII & NCIII)	\N	TESDA	\N	0	\N	2018-04-01	2018-06-01	0	0	0	0	 TECHNICAL
14967	"AN ARCHITEC, A DICTATOR" UAP 2021 TALK WITH JOET TABET	\N	COLLABORATION OF 3 UAP CHAPTERS AROUND THE WORLD	\N	0	\N	2021-02-26	2021-02-26	25	0	0	0	 TECHNICAL
14968	ADVANCE CONCEPTS IN PERINEAL LACERATION REPAIR AND IV THERAPY DURING OB EMERGENCIES	\N	ACCELERATED INTEGRATED SOLUTIONS INC.	\N	0	\N	2020-02-24	2020-02-24	8	0	0	0	 TECHNICAL
14969	2019 MIND EDUCATION SPECIALIST TRAINING (MEST): INTERNATIONAL SEMINAR ON CHARACTER EDUCATION, LEADERSHIP AND MANAGEMENT	\N	INTERNATIONAL MIND EDUCATION INSTITUTE	\N	0	\N	2019-10-04	2019-10-06	24	0	0	0	 TECHNICAL
14970	B.T BASIC TRAINING (BMI)	\N	BATAAN MARITIME INSTITUTE	\N	0	\N	2014-09-16	2014-09-19	32	0	0	0	 TECHNICAL
14971	BASIC LEADERSHIP EXPERIMENTAL SEMINAR (PLT)	\N	PLT COLLEGE INC	\N	0	\N	2019-05-20	2019-05-21	20	0	0	0	 TECHNICAL
14972	BASIC FIRING PROFICIENCY	\N	COMMANDER SHOOTING RANGE AND SPORTS CLUB INC.	\N	0	\N	2020-02-07	2020-02-14	60	0	0	0	 TECHNICAL
14973	VIRTUAL COLORECTAL CANCER WORKSHOP	\N	QATAR CANCER SOCIETY	\N	0	\N	2021-03-31	2021-03-31	5	0	0	0	 TECHNICAL
14974	BASIC OCCUPATIONAL SAFETY (BPSU)	\N	BPSU	\N	0	\N	2012-05-01	2012-05-01	54	0	0	0	 TECHNICAL
14975	BASIC LIFE SUPPORT (AMERICAN HEALTH ASSOCIATION)	\N	EDUSCOPE INTERNATIONAL FZ-LLC DUBAI HEALTH THCARE CITY	\N	0	\N	2019-12-31	2019-12-31	3	0	0	0	 TECHNICAL
14976	BASIC OCCUPATIONAL SAFETY AND HEALTH TRAINING	\N	CDRRMO	\N	0	\N	2019-08-14	2019-08-16	24	0	0	0	 TECHNICAL
14977	BASIC LIFE SUPPORT AND ADVANCE CARDIAC LIFE SUPPORT COURSE (CENTRO)	\N	CENTRO MEDICO	\N	0	\N	2018-04-27	2018-04-29	120	0	0	0	 TECHNICAL
14978	REGULAR IV TRAINING PROGRAM (MMH)	\N	MAKABALI MEMORIAL HOSPITAL	\N	0	\N	2012-06-20	2012-06-21	24	0	0	0	 TECHNICAL
14979	CONSTRUCTION SAFETY AND HEALTH (AVIE)	\N	AVIE TRAINING AND CONSULTING SERVICES	\N	0	\N	2019-12-11	2019-12-14	32	0	0	0	 TECHNICAL
14980	3RD CLASS PRODUCTIVITY IMPROVEMENT TRAINING (HIROSHI)	\N	MR. HIROSHI OKISA	\N	0	\N	2015-07-21	2015-07-21		0	0	0	 TECHNICAL
14981	POSITIVE PSYCHOLOGY AS A TOOL FOR ADDRESSING COVID-19 RELATED MENTAL HEALTH HAZARDS (PGCA)	\N	PHIIPPINE GUIDANCE AND COUNSELING ASSOCIATION INC.	\N	0	\N	2020-08-14	2020-08-14	1	0	0	0	 TECHNICAL
14982	ILOCO NEWS WRITING (PTV)	\N	PTV-CORDILLERA	\N	0	\N	2019-01-01	2019-01-01		0	0	0	 TECHNICAL
14983	EMERGING COMMUNICABLE DISEASE (APCAS)	\N	ASIA PACIFIC COLLEGE OF ADVANCE STUDIES	\N	0	\N	2016-09-13	2016-09-13	4	0	0	0	 TECHNICAL
14984	PHILIPPINE RED CROSS STANDARD FIRST AID AND BASIC LIFE SUPPORT (PRC_JA)	\N	PHILIPPINE RED CROSS	\N	0	\N	2019-01-01	2019-01-01	0	0	0	0	 TECHNICAL
14985	OCCUPATIONAL TRAINING-CPR WITH AED TRAINING (PRC RIZAL)	\N	PHILIPPINE RED CROSS	\N	0	\N	2019-12-05	2019-12-06	0	0	0	0	 TECHNICAL
14986	PERSONALITY ASSESSMENT IN CLINICAL AND HR SETTINGS "WHAT PSYCHOLOGIST AND PSYCHOMETRICIANS NEED TO KNOW" (TARROJA)	\N	MS. MA. ARACELI B. ALCALA & MS. MARIA CARIDAD H. TARROJA	\N	0	\N	2017-07-21	2017-07-22	16	0	0	0	 TECHNICAL
14987	BASIC LIFE SUPPORT (CPR MEDICAL TRAINING)	\N	CPR MEDICAL TRAINING AND LEARNING INSTITUTE	\N	0	\N	2017-09-13	2017-09-15	24	0	0	0	 TECHNICAL
14988	GENDER AND DEVELOPMENT (SP)	\N	SANGGUNIANG PANLALAWIGAN	\N	0	\N	2018-01-01	2018-01-01	0	0	0	0	 TECHNICAL
14989	MILLENIAL NURSE: POSITIVE NURSING (BATAAN PENINSULA)	\N	BATAAN PENINSULA	\N	0	\N	2017-08-05	2017-08-05	0	0	0	0	 TECHNICAL
14990	OCCUPATIONAL FIRST AID & BASIC LIFE SUPPORT (prc)	\N	PHILIPPINE RED CROSS	\N	0	\N	2019-10-07	2019-10-18	16	0	0	0	 TECHNICAL
14991	LOSS CONTROL MANAGEMENT (AVIE TCS)	\N	AVIE TCS	\N	0	\N	2019-07-17	2019-07-20	40	0	0	0	 TECHNICAL
14992	ELECTRICAL ISOLATION AND MAINTENANCE (TESDA)	\N	TESDA BATAAN	\N	0	\N	2017-01-01	2017-01-01	0	0	0	0	 TECHNICAL
14993	3RD PHIL. CONGRESS ON BRAIN ATTACK (STROKE SOC.)	\N	STROKE SOCIETY OF THE PHILIPPINES	\N	0	\N	2002-08-22	2002-08-23	16	0	0	0	 TECHNICAL
14994	BASIC LIFE SUPPORT TRAINING (AMERICAN SAFETY)	\N	AMERICAN SAFETY AND HEART INSTITUTE	\N	0	\N	2015-01-01	2018-01-01	2	0	0	0	 TECHNICAL
14995	SEDATION PROVIDER COURSE AND WORKSHOP	\N	PRINCE SULTAN MILITARY MEDICAL CITY	\N	0	\N	2019-03-13	2019-03-14	8	0	0	0	 TECHNICAL
14996	21ST NATIONAL CIVIL ENGINEERING CONFERENCE (PIOCE)	\N	PHILIPPINE INSTITUTE OF CIVIL ENGENEERS	\N	0	\N	2018-11-24	2018-11-24	8	0	0	0	 TECHNICAL
14997	SEMINAR O ANTI-TRAFFICKING IN PERSON AND ANTI-VIOLENCE AGAINST WOMEN AND CHILDREN (PGO)	\N	PROVINCIAL GOVERNMENT OF BATAAN	\N	0	\N	2018-11-05	2018-12-05	16	0	0	0	 Managerial
14998	PH HALAL ECOSYSTEM : CLINCHING THE MOMENTUM THRU CAPACITY BUILDING (DTI)	\N	DTI	\N	0	\N	2019-11-27	2019-11-27	8	0	0	0	 TECHNICAL
14999	TAXATION (BUSINESS COACH)	\N	BUSINESS COACH INC.	\N	0	\N	2018-10-12	2018-10-15	16	0	0	0	 TECHNICAL
15000	STUDENT ENTREPRENEURSHIP (ASIA PACIFIC COLLEGE)	\N	ASIA PACIFIC COLLEGE OF ADVANCE STUDIES	\N	0	\N	2019-10-04	2019-10-04	5	0	0	0	 TECHNICAL
15001	R.A NO. 7877-ANTI SEXUAL HARASSMENT ACT (PGO OF BATAAN)	\N	PROVINCIAL GOVERNMENT OF BATAAN	\N	0	\N	2019-06-21	2019-06-22	16	0	0	0	Managerial
15002	1ST ACI-BPSU STUDENT CHAMBER (ACI)	\N	ACI-PBSU STUDENT CHAPTER	\N	0	\N	2021-11-08	2021-11-08		0	0	0	 TECHNICAL
15003	CARDIO PULMONARY RESUSCITATION (SAUDI)	\N	SAUDI HEART ASSOCIATION IN ACCORDANCE WITH THE INTERNATIONAL LIASON COMMITTEE ON RESUSCITATION	\N	0	\N	2021-04-08	2018-04-14	8	0	0	0	 TECHNICAL
15004	HOUSEKEEPING (MBC)	\N	MONTEMAR BEACH CLUB	\N	0	\N	2005-08-01	2005-08-17		0	0	0	 TECHNICAL
15005	SEMINAR IN GREEN STRATEGIES FOR ARCHITECT (UAP)	\N	UNITED ARCHITECTS OF THE PHILIPPINES	\N	0	\N	2007-01-01	2007-01-01	8	0	0	0	 TECHNICAL
15006	CONSERVATION GOES TO PROVINCE (NHCP)	\N	NATIONAL HISTORICAL COMMISSION OF THE PHILIPPINES	\N	0	\N	2019-09-16	2019-09-20	40	0	0	0	 TECHNICAL
15007	BASIC LIFE SUPPORT (HCAI)	\N	HEALTH CARE ADVANTAGE INS	\N	0	\N	2019-08-05	2019-08-05	4	0	0	0	 TECHNICAL
15008	EFFECTIVE BUSINESS AND ONLINE WRITING SEMINAR (GOB)	\N	CITY OF GOVERNMENT OF BALANGA	\N	0	\N	2020-03-05	2020-03-05	8	0	0	0	 TECHNICAL
15009	TRAINERS METHODOLOGY 1 (MANILA IS)	\N	MANILA INTERNATIONAL SKILLS	\N	0	\N	2018-01-01	2018-01-01	264	0	0	0	 TECHNICAL
15010	CLICK IT FORWARD PHOTO AND VIDEO WORKSHOP	\N	WORKSHOP	\N	0	\N	2019-04-01	2019-04-01	0	0	0	0	 TECHNICAL
15011	POSITIVE PSYCHOLOGY AS A TOOL FOR ADDRESSING COVID 19 RELATED MENTAL HEALTH ISSUE (PGCA)	\N	PHILIPPINE GUIDANCE COUNCELOR ASSOCIATION	\N	0	\N	2020-08-14	2021-11-12	4	0	0	0	PSYCHOLOGICAL SUPPORT 
15012	CONSTRUCTION OCCUPATIONAL SAFETY AND HEALTH (AVIE)	\N	AVIE TRAINING AND CONSULTANCY SERVICES	\N	0	\N	2019-11-20	2019-11-23	40	0	0	0	 TECHNICAL
15013	AUTOCAD WITH COLOR RENDING 2017 (MICROADD)	\N	MICROADD PAMPANGA	\N	0	\N	2017-07-09	2017-09-03	70	0	0	0	 TECHNICAL
15014	TRAINING OF TRAINERS ON DISASTER RESILIENT LIVELIHOOD PROGRAMMING OF THE GUIDELINES ON LIVELIHOOD INTERVENTIONS OF SLP AFTER DISASTER (DSWD SLP)	\N	DSWD SLP-NPMO	\N	0	\N	2018-11-12	2018-12-14	32	0	0	0	 TECHNICAL
15015	BASIC LIFE SUPPORT (AMERICAN SAFETY)	\N	AMERICA SAFETY AND HEALTH INSTITUTE	\N	0	\N	2021-03-18	2021-03-20	0	0	0	0	 TECHNICAL
15016	BASIC LIFE SUPPORT AND ADVANCE LIFE SUPPORT (EIM)	\N	EARLY INTERVENTION MANAGEMENT (EMI) CERTIFIED BY AHA	\N	0	\N	2019-05-22	2019-05-23	16	0	0	0	 TECHNICAL
15017	CRITICAL CARE COURSE (PHC)	\N	PHILIPPINE HEALTH CENTER	\N	0	\N	2019-10-04	2019-11-26	200	0	0	0	 TECHNICAL
15018	BASIC OCCUPATIONAL SAFETY AND HEALTH TRAINING (SOPHIA)	\N	SOPHIA SCHOOL FOR SKILLS	\N	0	\N	2017-08-15	2017-08-18	40	0	0	0	 TECHNICAL
15019	BAIC LIFE SUPPORT (PRB,CHAPTER)	\N	PHILIPPINE RED CROSS, BATAAN CHAPTER	\N	0	\N	2019-04-29	2019-05-03	32	0	0	0	 TECHNICAL
15020	HOSPITAL CUSTOMER SERVICES (BATAAN WOMENS)	\N	BATAAN WOMENS HOSPITAL	\N	0	\N	2020-07-14	2020-07-14	8	0	0	0	 TECHNICAL
15021	FUTURE DIRECTION OF RESTIRATORY CARE (ASIA PACIFIC)	\N	ASIA PACIFIC FOR RESPIRATORY CARE	\N	0	\N	1997-06-03	1997-06-06	36	0	0	0	 TECHNICAL
15022	TRAUMATIC HEAD INJURY (CNA)	\N	CRITICAL NURSES ASSOCIATION OF THE PHILIPPINES, INC.	\N	0	\N	1997-07-19	1997-07-19	8	0	0	0	 TECHNICAL
15023	INTERNATIONAL RESEARCH CONFERENCE INFORMATION TECHNOLOGY EDUCATION (ROYCE HOTEL)	\N	SOMERSET BALLROOM ROYCE HOTEL CLARK FREE PORT ZONE	\N	0	\N	2019-03-01	2019-03-01	8	0	0	0	 TECHNICAL
15024	BALANGA START UP FORUMS (EASTWOOD)	\N	EASTWOOD PROFESSIONAL COLLEGE OF SCIENCE AND TECHNOLOGY	\N	0	\N	2018-12-02	2018-12-12	8	0	0	0	 TECHNICAL
15025	PHILIPPINE SOCIETY OF INFORMATION TECHNOLOGY EDUCATORS (PSITE) 2018	\N	ANGELES UNIVERSITY FOUNDATION SPORTS AND CULTURAL CENTER MC ARTHUR HIGHWAY ANGELES CITY	\N	0	\N	2018-09-07	2018-09-07	8	0	0	0	 TECHNICAL
15026	BASIC LIFE SUPPORT/ADVANCE CARDIO VASCULAR LIFE SUPPORT (ILEAD)	\N	ILEAD MEDIC SCHOOL FOR HEALTH CARE SCIENCE INC.	\N	0	\N	2021-07-29	2021-07-31	24	0	0	0	 TECHNICAL
15027	46TH ANNUAL ORNAP CONVENTION AND & 48TH FOUNDING ANNIVERSARY	\N	REIOPERATIVE REGISTERED NURSES ASSOC. OF THE PHILIPPINES	\N	0	\N	2021-07-03	2021-07-04	16	0	0	0	 
15028	BASIC LIFE SUPPORT (PHIL. RED CROSS)	\N	PHIL. RED CROSS BATAAN DOCTORS HOSPITAL	\N	0	\N	2018-10-20	2018-10-20	8	0	0	0	 TECHNICAL
15029	I.V THERAPY TRAINING PROGRAM	\N	ASSOCIATION OF NURSING SERVICES ADMINISTRATORS OF THE PHIL. INC.	\N	0	\N	1998-09-28	1998-09-30	18	0	0	0	 TECHNICAL
15030	ON THE JOB TRAINING IN FOOD AND BEVERAGE & HOUSEKEEPING DEPARTMENT	\N	GAP PLAZA HOTEL	\N	0	\N	2011-12-06	2012-01-19	100	0	0	0	 TECHNICAL
15031	FRONT OFFICE SERVICE (TESDA)	\N	TESDA	\N	0	\N	2017-05-24	2022-05-23	600	0	0	0	 TECHNICAL
15032	EMT-B	\N	GOLDEN SUCCESS TECHNICAL AND EDUCATIONAL INSTITUTE INCORPORATED	\N	0	\N	2018-10-20	2019-02-24	600	0	0	0	 TECHNICAL
15033	ADVANCE CARDIOVASCULAR LIFE SUPPORT (AOES)	\N	ACADEMY OF EMERGENCY SCIENCE	\N	0	\N	2017-10-27	2021-12-27	0	0	0	0	 TECHNICAL
15034	ADVANCE TRAUMA LIFE SUPPORT (PGTC)	\N	POST GRADUATE TRAINING CENTER	\N	0	\N	2018-11-03	2018-11-05	14	0	0	0	 TECHNICAL
15035	SALIVA SPECIMEN COLLECTION FOR COVID-19 ONLINE TRAINING WORKSHOP (PRC)	\N	PHILIPPINE RED CROSS	\N	0	\N	2021-06-27	2021-06-27	8	0	0	0	 TECHNICAL
15036	BASIC LIFE SUPPORT TRAINING- HEALTHCARE PROVIDER (RPPMH)	\N	RICARDO P. RODRIGUEZ MEMORAIL HOSPITAL	\N	0	\N	2018-06-25	2018-06-25	0	0	0	0	 TECHNICAL
15037	BASIC LEARNING SKILLS (RED CROSS)	\N	RED CROSS	\N	0	\N	2019-12-12	2019-12-17	0	0	0	0	 TECHNICAL
15038	BASIC FIRST AID AND BLS WITH AED OPERATION ( )	\N	( )	\N	0	\N	2016-03-28	2016-03-31	32	0	0	0	Techncial
15039	WORK ATTITUDE AND VALUES ENCHANCEMENT (CSC)	\N	CIVIL SERVICE COMMISSION	\N	0	\N	2018-05-29	2018-05-29	8	0	0	0	`BEHAVIORAL
15040	NUTRIOTION IN CRITICALLY ILL PATIENTS		ICU FORUM DELAX PHARMA		0	\N	2021-04-14	2021-04-14	2	0	0	0	 TECHNICAL
15041	TREATMENT PARADIGM AND HETEROGENITY OF T2DM AMONG ASIANS		UP MED WEBINARS		0	\N	2021-03-31	2021-03-31	1	0	0	0	 TECHNICAL
15042	OJT AT ENGINEERING DEPARTMENT		LUCK-WELL-CONSTRUCTION		0	\N	2017-06-08	2017-08-04	360	0	0	0	 TECHNICAL
15043	PPHA JUAN HEALTHY LUNG PHARMACIST TRAINING PROGRAM		PHILIPPINE PHARMACIST ASSOCIATION		0	\N	2020-09-07	2020-09-21	6	0	0	0	Team Training
15044	VAW FREE SDO AND GENDER- FAIR LANGUAGE ADVOCACY IN THE WORKPLACE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 TECHNICAL
15045	DIVISION QUALITY MANAGEMENT (DQMS) JOURNEY TOWARDS ONE DEPED, ONE QMS CERTIFICATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15046	FINANCIAL ADVANCEMENT SKILLS FOR SCHOOL ADMINISTRATORS AND FINANCE AND ADMINISTRATIVE PERSONNEL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15047	SAFE SPACES, ACT AND GENDER-RESPONSIVE POLICIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15048	FINALIZATION OF YEAR-END REPORTS AND PERFORMANCE REVIEW FOR FY 2022	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15049	REGIONAL SEMINAR- WORKSHOP ON THE PREPARATION AND CONSOLIDATION OF CY 2022 MID-YEAR FINANCIAL REPORTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15050	TRAINING- WORKSHOP ON QUALITY MANAGEMENT SYSTEMS FOCUSED ON SEVEN S (7s)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15051	REORIENTATION OF WEB-BASED MONITORING SYSTEM USERS OF THE SCHOOLS MOOE FUNDS IN SCHOOLS DIVISION OFFICES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15052	REGIONAL SEMINAR-WORKSHOP IN THE PREPARATION AND CONSOLIDATION OF FY 2021 YEAR-END FINANCIAL REPORTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15053	SEMINAR-WORKSHOP ON THE PREPARATION OF FY 2022 BUDGET EXECUTION DOCUMENTS ENCODING IN THE UNIFIED REPORTING SYSTEM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15054	CAPACITY BUILDING: PROMOTING TRANSPARENCY, ACCOUNTABILITY AND OPTIMIZED USE OF SCHOOL RESOURCES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15055	REGIONAL SEMINAR/ WORKSHOP ON THE PREPARATION AND CONSODILATION OF CY 2021 MID-YEAR FINANCIAL REPORTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15056	2020 GOVERMENT SUMMIT & GENERAL MEMBERSHIP MEETING "FOSTERING EFFECTIVE AND EFFICIENT UTILIZATION OF GOVERNMENT FUNDS: REINFORCING THE LAWS, REGULATIONS AMIDST CHALLENGING TIMES"	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15057	TECHNICAL ASSISTANCE ON THE PREPARATION OF BANK RECONCILIATION STATEMENT, PROPER IMPLEMENTATION OF CHECKING ACCOUNTS AND UPDATES ON FINANCE ISSUES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15058	REGIONAL SEMINAR-WORKSHOP ON THE PREPARATION AND CONSODILATION OF FY 2019 FINANCIAL REPORTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15059	CAPACITY BUILDING ON CAREER DEVELOPMENT & SUCCESSION MANAGEMENT CUM FINANCIAL LITERACY MANAGEMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15060	CAPABILITY BUILDING ON CAREER DEVELOPMENT & SUCCESSION MANAGEMENT CUM FINANCIAL LITERACY MANAGEMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15061	ORIENTATION OF UNIFIED REPORTING SYSTEM (URS) VERSION 2.0 AND ACTUAL ONLINE ENCODING ACTIVITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15062	CAPACITY BUILDING FOR SCHOOL HEADS AND FINANCIAL STAFF ON THE PROPER UTILZATION OF MOOE FUNDS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15063	REGIONAL SEMINAR WORKSHOP ON THE PREPARATION OF CY 2019 MID-YEAR FINANCIAL REPORTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15064	ISO 1901:2018 GUIDELINES FOR AUDITING MANAGEMENT SYSTEM TRAINING COURSE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15065	"AWARENESS ON BATSTATEU SUSTAINABLE DEVELOPMENT GOALS" WEBINAR	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15066	BREAK THE PLASTIC WAVE: A MARINE POLLUTION AWARENESS SEMINAR	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15067	WEBINAR ON EASE OF DOING BUSINESS AND EFFICIENT GOVERNMENT SERVICE DELIVERY ACT OF 2018	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15068	10TH ENTREPRENEURIAL FORUM: "UNVEILING BUSINESS STRATEGY FOR SUCCESS: READY, GET, SET, GROW!"	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15069	ISO 14001:2015 AWARENESS WEBINBAR "ENVIRONMENTAL PILLAR OF SUSTAINABILITY"	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15070	BATSTATEU ALANGILAN TEAM BUILDING 2022 FOR FACULTY AND EMPLOYEES: "3Rs: REFRESH, RELAX AND RESTORE"	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15071	FILES MANAGEMENT AND EMAIL COMMUNICATION WEBINAR-TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15072	MODULE 3: MS EXCEL INTERMEDIATE TRAINING LOOK UP AND REFERENCE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15073	MODULE 2: EXCELBASIC FUNCTION AND FORMULAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15074	MODULE 1: BASIC EXCEL FOR BEGINNERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15075	ICT SPECIALIZED COURSE TRAINING FOR NON-TEACHING SCHOOL STAFF	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15076	ISO 9001:2015 QUALITY MANAGEMENT SYSTEM AWARENESS WEBINAR	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15077	ENHANCING EMPLOYEE DECISION-MAKING THROUGH COMPLETED STAFF WORK	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15078	TRAINING WORKSHOP ON THE PAYROLL PROCESSES, PROCEDURES AND FOR THE DOWNLOADING OF PAYROLLS TO THE DIVISION OFFICES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15079	DIVISION QUALITY MANAGEMENT SYSTEM- JOURNEY TOWARDS ONE DEPED, ONE QMS CERTIFICATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15080	CLUSTER 3: TRAINING OF TRAINERS ON THE PAYROLL PROCESSES, PROCEDURES, AND POLICIES FOR THE DOWNLOADING OF PAYROLLS TO SCHOOL DIVISION OFFICES (REGIONS IV-A, IV-B, V, AND NCR)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15081	FINANCIAL ADVANCEMENT SKILLS FOR SCHOOL ADMINISTRATORS AND ADMINISTRATIVE PERSONNEL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15082	SEMINAR-WORKSHOP ON THE RECONCILIATION OF PSI-POP AND PAYROLL DISBURSEMENT VERSUS THE FY2023 NATIONAL EXPENDITURE PROGRAM (NEP)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15083	TRAINING-WORKSHOP QUALITY MANAGEMEN SYSTEM FOCUSED ON 7s	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15084	PICPA: ANNUAL TAX AND FINANCIAL STATEMENTS FILING REMINDERS AND UPDATES PART 1 AND 2	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15085	2022 ORIENTATION TRAINING ON QUALITY MANAGEMENT SYSTEM, DEPED ANNUAL OF STYLE, AND DEPED SERVICE MARKS AND VISUAL IDENTITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15086	COA: INSURING TRANSPARENCY AND ACCOUNTABILITY OF GOVERNMENT RESPONSE TO PANDEMIC/ BATSTATEU-CABEIHM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15087	BUDGET ALLOCATION AND UTILIZATION FOR BE-LCT DURING PUBLIC HEALTH EMERGENCY/BATSTATEU-CABEIHM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15088	VIRTUAL CAPACITY BUILDING ON RA 9184: GOVERNMENT PROCUREMENT INITIATIVES UNDER NEW NORMAL/ BATSTATEU-CABEIHM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15089	2021 GOVERNMENT SUMMIT: TAXATION, BUSINESS REGISTRATION AND INVOICE REQUIREMENTS/ PICPA	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15090	FINANCIAL MANAGEMENT OPERATIONS MANUAL (FMOM)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15091	WEBINAR ON REVISITING EMPLOYEES ETHICAL STANDARDS AND PRACTICES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15092	2020 GOVERNMENT SUMMIT/PICPA	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15093	TECHNICAL ASSISTANCE CUM WEBINAR ON PREPERATION OF STATEMENT OF BANK RECONCILIATION PROPER IMPLEMENTATION OF CHECKING ACCOUNT AND UPDATES ON FINANCE GUIDELINES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15094	DIVISION ROLL-OUT OF DEPED ORDER NO.29 s.2019 REGARDING PROCEDURE ON CASH ADVANCES FOR SCHOOL MOOE AND PROGRAM FUNDS OF NON-IMPLEMENTING UNITS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15095	CAPACITY BUILDING ON CAREER DEVELOPMENT AND SUCCESSION AND MANAGEMENT CUM FINANCIAL LITERACY MANAGEMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15096	AIM HIGH FIRING RANGE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15097	SCAFOLD ERECTION LEVEL NC II	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15098	ELECTRICAL INSTALLATION AND MAINTENANCE LEVEL NC II	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15099	DIVISION QUALITY MANAGEMENT SYSTEM ( DQMS) JOURNEY TOWARDS ONE DEPED	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15100	PIPE INSULATION NC LEVEL II	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15101	SAFE SPACES ACT AND GENDER RESPONSIVE POLICIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15102	RRE - TRAINING COURSE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15103	IN- SERVICE ENHANCEMENT PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15104	RE-TRAINING COURSE CLASS NO.18	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15105	IN-SERVICE ENHANCEMENT SECURITY TRAINING NO.18	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15106	BASIC FIRING PROFICIENCY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15107	8TH GAWAD ALA EH	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15108	INSTITUTIONALIZETHE MERITOCRACY AND AND EXCELENCE IN HUMAN RESOURCE MANAGEMENT ( PRIME-HRM)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15109	DIVISION MANAGEMENT COMMITTEE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15110	ACTION,IMPACTAD EXCELLENCE : UTILIZING REASEARCH OUTPUTS AND INNOVATIVE PRACTICE FOR MATATAG BASIC EDUCATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15111	2023 STAKEHOLDER'S DAY: EDUCATION FOR ALL CELABRATING COLLABORATION AND PARTNERSHIP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15112	NATIONAL CONVENTION OF DEPED SUPPLY OFFICERS 2023:MATATAG SUPPLY OFFICERS TEAM:RESILIENT,EFFICIENT AND TRANSFORMED THROUGH INNOVATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15113	DIVISION QUALITY MANAGEMENT SYSTEM ( DQMS) JOURNEY TOWARD ONE DEPED, ONE QMS CERTIFICATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15114	CAPACITY BUILDING SEMINAR ON GOVERNMENT PROCUREMENT FOR DIVISION OFFICE PERSONNEL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15115	FINALIZATION OF YEAR - END REPORTS AND PERFORMANCE REVIEW FOR FY 2022	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15116	WORKSHOP ON THE PREPARATION OF FY2023 BUDGET EXECUTION DOCUMENTS CUM ENCODING IN THE UNIFIED REPORTING SYSTEM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15117	WEBINAR ON TRANSITIONING TO THE NEW NORMAL IN SUPPORT TO LEARNING CONTINUITY PLAN	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15118	SEMINAR-WORKSHOP ON THE PREPARATION AND CONSOLIDATION OF CY 2023 YEAR-END FINANCIAL REPORTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15119	PSP WEBINAR: ISO QUALITY MANAGEMENT SYSTEM FOR GOVERNMENT AGENCIES: AN INTRODUCTION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15120	2020 GOVERNMENT SUMMIT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15121	DIVISION ROLL -OUT OF DEPED ORDER NO. 029, S2019 PROCEDURAL GUIDELINES ON THE MANAGEMENT OF CASH ADVANCE FOR SCHOOL MOOE AND PROGRAM FUNDS ON NON-lus PURSUANT TO COA, DBM DEPED JC NO. 2019-1	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15122	FINALIZATION OF YEAR-END REPORTS AND PERFORMANCE REVIEW FOR FY 2023	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15123	REGIONAL SEMINAR- WORKSHOP ON THE PREPARATION AND CONSOLIDATION OF FY 2019 FINANCIAL REPORTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15124	WORKSHOP ON THE PREPARATION OF FY 2023 BUDGET EXECUTION DOCUMENTS CUM ENCODING IN THE UNIFIED REPORTING SYSTEM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15125	2022 ORIENTATION TRAINING ON QUALITY MANAGEMENT SYSTEM, DEPED MANUAL OF STYLE AND DEPED SERVICE MARKS AND VISUAL IDENTITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15126	2020 GOVERNMENT SUMMIT AND GENERAL MEETING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15127	HR TRAINING AND DEVELOPMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15128	ORIENTATION OF UNIFIED REPORTING SYSTEM ( URS) VERSION 2.0 AND ACTUAL ONLINE ENCODING ACTIVITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15129	CAPACITY BUILDING FOR SCHOOLS HEADS AND FINANCIAL STAFF ON THE PROPER UTILIZATION OF MOOE FUNDS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15130	BOOKKEEPING NCIII	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15131	REGIONAL SEMINAR- WORKSHOP ON THE PREPARATION OF CY 2019 MID-YEAR FINANCIAL REPORTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15132	ISO 19011: 2018 GUIDELINES FOR AUDITING MANAGEMENT SYSTEM TRAINING COURSE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15133	DIVISION TRAINING- WORKSHOP ON BASIC CUSTOMER SERVICE SKILLS FOR FRONT LINERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15134	REGIONAL SEMINAR - WORKSHOP ON THE PREPARATION AND CONSOLIDATION OF FY2018 YEAR - END FINANCIAL REPORTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15135	TRAINING WORKSHOP OF THE DEPED INSPECTORATE TEAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15136	ORIENTATION ON PROPERTY AND SUPPLY MANAGEMENT SYSTEM AND CAPACITY BUILDING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15137	ISO 9901: 2015 QUALITY MANAGEMENT SYSTEM RISK AND OPPORTUNITY TRAINING AND WORKSHOP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15138	ISO 9001: 2015 QUALITY MANAGEMENT SYSTEM DOCUMENTATION TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15139	REGIONAL SEMINAR - WORKSHOP ON THE PREPARATION AND CONSOLIDATION OF FY2017 YEAR - END FINANCIAL REPORTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15140	DIVISION EDUCATION DEVELOPMENT PLAN ADJUSTMENT CUM POST-PLANNING ACTIVITIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15141	DIVISION QUALITY MANAGEMENT SYSTEM(DQMS) JOURNEY TOWARDS ONE DEPED, ONE QMS CERTIFICATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15142	DIVISION MANAGEMENT COMMITTEE MEETING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15143	DIVISION TEACHER'S CONGRESS: BASIC AND ACTION REASERCH PROJECTS FOR CONTINOUS IMPROVEMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15144	SEMINAR WORKSHOP ON THE IMPLEMENTATION OF WEB-BASED MONITORING SYSTEM OF SCHOOL MOOE FUNDS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15145	FINANCIAL ADVANCEMENT SKILLS FOR SCHOOL ADMINISTRATOR AND FINANCE PERSONNEL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15146	COORDINATION AND CONSULTATIVE MEETING OFR SDO SUPPLY OFFICERS AND CASHIERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15148	SAFE SPACES ACT AND GENDER - RESPONSIVE POLICY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15149	RESULTS-BASED PERFORMANCE MANAGEMENT SYSTEM: IPCRFS AND OPCRFS RECALIBRATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15150	ORIENTATION AND CAPACITY BUILDING ON LRMDS POLICIES AND GUIDELINES ,ORGANIZATION AND MANAGEMENT OF LRCS CUM CRAFTING OF SCHOOL AND DIVISION LRPLAN SY 2024-2024	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15151	ORIENTATION AND CAPACITY BUILDING ON LRMDS POLICIES AND GUIDELINES ,ORGANIZATION AND MANAGEMENT OF LRS CUM CRAFTING OF SCHOOL AND DIVISION LRPLAN SY 2023-2024	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15152	WE FOR GENDER EQUALITY AND INCLUSIVE SOCIETY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15147	ORIENTATION SEMINAR ON THE PROCEDURAL GUIDELINES ON THE MANAGEMENT OF CASH ADVANCES FOR SCHOOL MOOE AND PROGRAM FUNDS IMPLEMENTING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15153	TECHNICAL ASSISTANCE TO DIVISION PROPONENTS AND SCHOOL LEADERS ON FY 2024 BUDGET PREPARATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15154	GENERAL INSURANCE FORUM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15155	WORKSHOP ON RECONCILIATION ON REPORTED GSIS PREMIUM DEFICIENCIES OF DEPED PERSONNEL (CLUSTER 1- REGIONS IV-A, IV-B AND NCR)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15156	AGENCY AUTHORIZED OFFICERS (AAOs) AND ELECTRONICE REMITTANCE FILE (ERF) HANDLERS REORIENTATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15157	TRAINING- WORKSHOP ON QUALITY MANAGEMENT SYSTEMS FOCUSED ON SEVEN S	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15158	FOSTERING EFFECTIVE AND EFFICIENT UTILIZATION OF GOVERNMENT FUNDS: REINFORCING LAWS, REGULATIONS AMIDST CHALLENGING TIMES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15159	DIVISION TRAINING-WORKSHOP ON BASIC CUSTOMER SKILLS FOR FRONTLINERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15160	DIVISION TRAINING-WORKSHOP ON BASIC CUSTOMER SERVICE SKILLS FOR FRONTLINERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15161	INTERNATIONAL LEADERSHIP AND ORGANIZATIONAL BEHAVIOR	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15162	BRIGADA ESKWELA KICK-OFF CEREMONY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15163	SEMINAR WORKSHOP ON THE PREPARATION AND CONSOLIDATION OF CY 2023 YEAR END REPORTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15164	PUBLIC SECTOR PRODUCTIVITY WEBINAR SERIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15165	PRODUCTIVITY AND QUALITY IMPROVEMENT APPROACHES IN PUBLIC SECTOR WEBINAR SERIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15166	VAW FREE SDO AND GENDER- FAIR LANGUAGE ADVOCACY IN THE WORKPLACE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15167	SUCCESSFUL CAREER DEVELOPMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15168	DIVISION QUALITY MANAGEMENT SYSTEM (DQMS JOURNEY TOWARDS ONE DEPED ONE QMS CERTIFICATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15169	TRAIN LAW SEMINAR	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15170	TAXPAYER SEGMENTATION FORUM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15171	BOOKKEEPING TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15172	DIVISION TEACHERS CONGRESS: BASIC ACTION RESEARCH PROJECT FOR CONTINUOUS IMPROVEMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15173	ORIENTATION IN RECRUITMENT, SELECTION AND APPOINTMENT (RSA) GUIDELINES IN THE DEPARTMENT OF EDUCATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15174	PROVISION OF TECHNICAL ASSISTANCE ON PLANNING AND MANAGING RESOURCES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15175	CAPABILITY BUILDING ON CAREER DEVELOPMENT AND SUCCESSION MANAGEMENT CUM FINANCILA LITERACY MANAGEMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15176	2ND NATIONAL CONFERENCE OF PERSONNEL IN THE ADMINISTRATIVE SERVICE (NCPAS) OF DEPED	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15177	THE ROLE OF MANAGEMENT AND DEPED NEU IN THE CONDUCT OF RESPONSIBLE PUBLIC SECTOR UNIONISM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15178	VAW FREE SDO AND GENDER - FAIR LANGUAGE ADVOCACY IN THE WORKPLACE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15179	COUNCIL STAFF TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15180	GAWAD KAWANI	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15181	ATTENDING PHYSICAL WELLNESS ACTIVITIES FOR EMPLOYEES WELLFARE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15182	MEETING WITH THE ADMINISTRATIVE AIDES I	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15183	DIVISION TRAINING ON SAFE SPACES ACT AND GENDER- RESPONSIVE POLICIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15184	DIVISIONS TRAINING VAW FREE SDO AND GENDER- FAIR LANGUAGE ADVOCACY IN THE WORKPLACE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15185	BRIEFING ON ETRA FOR NGAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15186	TULONG-TULONG SA PAGBANGON. KAPIT-KAMAY SA PAG AHON. NUWIS NA WASTO, ALAY PARA SA PILIPINO	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15187	"ANO NGA BA ANG LATEST MARITESS?- ANNUAL TAX AND FS FILING REMINDERS AND UPDATES- PART 1 & 2"	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15188	BSP INFORMATION CARAVAN IN BATANGAS- KNOW YOUR MONEY, THE POLYMER BANK NOTE AND FRAUD AND SCAMS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15189	BUREAU OF THE TREASURY- ONLINE FIDELITY BONDING SYSTEM VIRTUAL ORIENTATION (LUZON CLUSTER)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15190	GOVERNMENT SERVICE INSURANCE SYSTEM GENERAL INSURANCE FORUM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15191	INVENTORY MANAGEMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15192	PROCUREMENT MANAGEMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15193	INTRODUCTION TO FRONT OFFICE SERVICES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15194	MICROSOFT DIGITAL LITERACY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15195	PARTICIPATING IN WORKPLACE COMMUNICATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15196	PERSONALITY DEVELOPMENT AND ETHICS IN THE WORKPLACE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15197	EDUCATIONAL SPRINGBOARD TO SUCCESS GATEWAY TO FUTURE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15198	PHILIPPINE PROFESSIONAL STANDARD FOR TEACHER FOR CATHOLIC TEACHER AND ETHICS FOR PROFESSIONAL TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15199	FACILITATING STUDENT LEARNING IN THE NEW NORMAL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15200	THE ART OF TEACHING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15201	EDUCATORS ADVOCATE OF POSITIVE SCHOOL ENVIRONMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15202	CHILD PROTECTION AND SAFE ENVIRONEMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15203	PLANNING AND ASSESMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15204	ANNUAL HEALTH AND SAFETY TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15205	FIRE AND SAFETY TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15206	MICROSOFT OFFICE 2021/ 365 ESSENTIALS BUNDLE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15207	THE CHANGING LANDSCAPE OF FILIPINO COUNSELLING AND PSYCHOTHERAPY: KEY ISSUES AND NEXT STEPS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15208	INTERNATIONAL SEMINAR WORKSHOP ON CONTINUOUS BUILDING COMPETENCE FOR NON-TEACHING PERSONNEL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15209	CLUSTER 3- TRAINING OF TRAINERS ON THE PAYROLL POCESSES, PROCEDURES AND POLICIES FOR THE DOWNLOADING PAYROLLS TO SCHOOLS DIVISION OFFICES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15210	PRACTICING COVID- 19 PREVENTIVE MEASURES IN THE WORKPLACE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15211	WEBINAR ON DATA SECURITY AND PROTECTION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15212	COMPLETED STAFF WORK	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15213	LAWS AND RULES ON GOVERNMENT EXPENDITURES ( LARGE ) WITH ACCOUNTABILITY AND RESPONSIBILITY OVER GOVERNMENT FUNDS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15214	CORPORATE COMPETENCE MANAGEMENT COMMUNICATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15215	ISO 9001: 2015 QUALITY MANAGEMENT SYSTEM ( QMS) AWARENESS SEMINAR	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15217	CONDUCT OF FIRST GAWAD KAWANI	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15218	ATTENDING PHYSICAL WELLNESS ACTIVITIES FOR EMPLOYEES WELFARE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15219	TRAINING-WORKSHOP ON QUALITY MANAGEMENT SYSTEM FOCUSED ON SEVEN S (7S)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15220	ROVER ORIENTATION, VIGIL AND INVESTITURE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15221	2023 DIVISION WOMEN'S MONTH CELEBRATION- JINGLE MAKING CONTEST	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15222	PHYSICAL WELLNESS ACTIVITIES FOR EMPLOYEES WELFARE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15223	ATTENDING PHYSICAL WELLNESS ACTIVITIES FOR EMPLOYEE'S WELFARE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15224	MEETING WITH ADMINISTRATIVE AIDES I	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15225	TRAINING- WORKSHOP ON QUALITY MANAGEMENT SYSTEM FOCUSED ON SEVEN S (S7)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15226	ROVER ORIENTATION,VIGIL AND INVESTITURE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15227	CAPACITY BUILDING ON CAREER DEVELOPMENT & SUCCESSION MANAGEMENT COM FINANCIAL LITER	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15228	DIVISION TRAINING WORKSHOP ON BASIC CUSTOMER SERVICES SKILLS FOR FRONTLINE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15229	DIVISION QUALITY MANAGEMENT SYSTEM ( DQMS)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15230	TRAINING WORKSHOP ON SEVEN ( 7S) FOR SCHOOLS LEADERS, ADMINISTRATIVE AIDES AND ADMINISTRATIVE OFFICERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15231	TRAINING- WORKSHOP ON QUALITY MANAGEMENT SYSTEM FOCUSED ON SEVEN (7S)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15232	DIVISION TRAINING ON AUDIT MANAGEMENT SYSTEM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15233	TRAINING WORKSHOP ON THE PAYROLL PROCESSES, PROCEDURES AND FOR THE DOWNLOADING OF PAYROLLS TO THE SCHOOLS DIVISION OFFICES (SDOs) BATCH 1	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15234	TRAINING ON SAFE SPACES ACT AND GENDER- RESPONSIVE POLICIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15235	ENHANCING THE CAPABILITY OF SCHOOL HEADS AND TEACHERS IN THE IMPLEMENTATION OF PROFESSIONAL PROGRAM VIA SCHOOL LEARNING ACTION CELL BATCH 2- CLUSTER 3 (DISTRICT 7)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15236	CONDUCT OF THE REGIONAL SEMINAR-WORKSHOP ON THE CONSOLIDATION AND FINALIZATION OF FY 2023 BUDGET PROPOSAL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15237	MASTER MICROSOFT POWERPOINT 2016 THE EASY WAY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15238	TRAINING OF TRAINERS FOR THE PROCEDURAL GUIDELINES ON THE MANAGEMENT OF CASH ADVANCES FOR SCHOOL MOOE AND PROGRAM FUNDS OF NON-IMPLEMENTING UNITS PURSUANT TO COA, DBM AND DEPED JOINT CIRCULAR O.2019-1	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15239	HOW TO DEVELOP EMOTIONAL RESILIENCE TO MANAGE STREES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15240	HOW TO DEVELOP EMOTIONAL RESILIENCE TO MANAGE STRESS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15241	PROGRAM MANAGEMENT INFORMATION SYSTEM (PMIS) REGIONAL ROLL OUT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15242	ACCOUNTING & FINANCIAL STATEMENT ANALYSIS : COMPLETE TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15243	MASTERING COLLABORATION ; WORK TOGETHER FOR THE BEST RESULTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15244	MICROSOFT ACCESS 2016 MASTER CLASS : BEGINNER TO ADVANCED	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15245	ACORNS' GUIDE TO PERSONAL FINANCE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15246	MICROSOFT EXCEL- EXCEL FROM BEGINNER TO ADVANCED	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15247	2022 ORIENTATION TRAINING ON QUALITY MANAGEMENT SYSTEM. DEPED MANUAL OF STYLE AND DEPED SERVICE MARKS AND VISUAL IDENTITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15248	VIRTUAL TRAINING FOR THE NEWLY HIRED OR APPOINTED ADMINISTRATIVE ASSISTANT ( ADAS) II AND III, ADMINISTRATIVE OFFICER II ( HRMO I ) ON WORK ORIENTATION, JOB	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15249	DIVISION ROLL -OUT OF DEPED ORDER NO. 029, S.2019: RE PROCEDURAL GUIDELINES ON THE MANAGEMENT CASH ADVANCES FOR SCHOOL MOOE AND PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15250	SEMINAR- WORKSHOP ON THE CONDUCT OF FY 2020 BUDGET EXECUTION DOCUMENTS ( BEDS )	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15251	ORIENTATION OF UNIFIED REPORTING ( URS ) VERSION 2.0 AND ACTUAL ONLINE ENCODING ACTIVITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15252	28TH CONFERENCE OF THE REGIONAL COUNCIL OF HUMAN RESOURCE MANAGEMENT PRACTITIONERS "PATRIOTISM AND INTEGRITY: THE HEART OF PUBLIC SERVICE"	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15253	DISTANCE LEARNING PROGRAM (DLP)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15254	RESEARCH BASED PLANNING: ECENTER MAKING IT HAPPEN	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15255	CAREER OPPORTUNITIES IN THE IT-BPM SECTOR	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15256	DIGITAL PHILIPPINES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15257	CAREER OPPORTUNITIES IN THE GLOBAL- IN HOUSE CENTER SECTOR	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15258	CONDUCT OF FY 2023 DIVISION BUDGET PREPARATION FORUM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15259	TOPIC: FOSTERING EFFECTIVE AND EFFICIENT UTILIZATION OF SCHOOL RESOURCES THROUGH THE IMPLEMENTATION OF FINANCIAL MANAGEMENT OPERATION MANUAL FOR IUS AND SELECTED SECONDARY NON-IUS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15260	2ND STAR GOVERNMENT SUMMIT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15261	ORIENTATION ON DEPED ORDER N.16,S.2017 RESEARCH MANAGEMENT GUIDELINES FOR SCHOOLS DIVISION RESEARCH COMMITTEE (SDRC) CUM FIRST DIVISION RESEARCH O'CLOCK	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15262	ON THE JOB TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15263	RE-ORIENTATION ON THE ROLES AND FUNCTIONS OF THE SDO RATIONALIZED STRUCTURE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15264	WORKSHOP ON WRITING QUALITATIVE RESEARCH	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15265	DEALT AWARD (DEDICATED EMPLOYEES WITHOUT ABSENCES, LEAVES AND TARDINESS) SEPTEMBER, OCTOBER AND NOVEMBER	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15266	LGU- PTA SYNERGY EXCELLENCE IN EDUCATION AND AWARDING OF BRIGADA ESKWELA EXCELLENCE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15267	CYBERCRIME: EFFECTIVE REPUTATION MANAGEMENT TECHNIQUES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15268	PHYSICAL WELLNESS ACTIVITIES FOR EMPLOYEES WELFARE (TWG-DAMA)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15269	CALABARZON CYBERTALKS WITH LGU'S	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15270	BASIC COMPUTER LITERACY (ELTECH LEARNING HUB)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15271	TRAINING WORKSHOP ON ENHANCEMENT OF JOB SKILLS FOR ADMINISTRATIVE AIDE I	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15272	DRIVING COURSE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15273	#FRIDAY FOCUS ON SEASON 3: IOT DEMYSTEFIED UNVEILING THE WONDERS OF CONNECTED WORLD	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15274	ISO 9001: 2015 QUALITY MANAGEMENT SYSTEM AWARENESS TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15275	LIFE SKILLS TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15276	GETTING STARTED WITH VIDEO EDITING USING ADOBE PREMIERE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15277	GETTING STARTED VECTOR DRAWING WITH ADOBE ILLUSTRATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15278	ISO 9001: 2015 QUALITY MANAGEMENT SYSTEM 7S- PRINCIPLES OF GOOD HOUSEKEEPING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15280	DIVISION TRAINING ON STRENGTHENING THE IMPLEMENTATION ON ENVIRONMENTAL PROJECTS ( PROJECT SIEP)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15282	DIVISION TRAINING - WORKSHOP ON BASIC CUSTOMER SERVICE SKILLS FOR FRONTLINERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15284	UPHOLDING DIGITAL LEARNING AND WORK EXPERIENCES IN THE NEW NORMAL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15303	FINAL QUALITY ASSURANCE / WORKSHOP OF CONTEXTUALIZED AND LOCALIZED MATERIALS IN ALL LEARNING AREAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15305	2023 SCIENCE AND TECHNOLOGY FAIR	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15307	2023 DIVISION STORYBOOK WRITING WORKSHOP AND COMPETITION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15308	DIVISION CAPACITY BUILDING OF IDENTIFIED/ VOLUNTEER TEACHERS ON THE IMPLEMENTATION OF NATIONAL LEARNING CAMP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15310	CYBER SMART ONLINE CARAVAN	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15311	DATA PRIVACY ACT : HOW TO USE FACEBOOK PRIVACY SETTING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15313	INTERMEDIATE WEB DEVELOPMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15315	DICT LC2 ONLINE TRAINING : VIDEO EDITING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15317	GETTING STARTED WITH GOOGLE FOR EDUCATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15318	SAFETY COURSE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15319	LEVEL 1 TRAINING ( SUBSCRIBER LINE INSTALLATION AND REPAIR, BASIC CUSTOMER SERVICE & SAFETY )	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15320	FLOW AND TEMPERATURE MEASUREMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15321	PRESSURE AND LEVEL MEASUREMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15322	ON- THE- JOB TRAINING ( PLDT BATANGAS CITY )	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15279	GETTING STARTED VECTOR DRAWING WITH ADOBE ILLUSTRATOR	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15281	TECHTALKS - TECH4ED DIGITAL CONFERENCE 2023 REGIONS IV-A AND IV-B	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15283	GENDER AND DEVELOPMENT TRAINING ON SAFE SPACES ACT AND GENDER RESPONSIVE POLICIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15285	CAPACITY BUILDING SEMINAR ON GOVERNMENT PROCUREMENT FOR DIVISION PERSONNEL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15286	BUSINESS COMMUNICATION SKILLS: WRITING GRAMMAR	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15287	BEST PRACTICES IN DOCUMENT MANAGEMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15288	MANAGE WORKPLACE STRESS AND STRIKE A BALANCE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15289	TRAINING WORKSHOP ON QUALITY MANAGMENT SYSTEM FOCUSED ON SEVEN S (7S)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15290	EMAIL ETIQUETTE: WRITE MORE EFFECTIVE EMAILS AT WORK	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15291	EMOTIONAL INTELLIGENCE: MASTER ANXIETY,FEAR AND EMOTION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15292	MICROSOFT EXCEL - EXCEL FROM BEGINNER TO ADVANCED	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15293	DIVISION ROLL-OUT OF DEPED ORDER NO. 029 S. 2019 RE: PROCEDURAL GUIDELINES ON THE MANAGEMENT OF CASH ADVANCE FOR SCHOOL MOOE OF NON-IUS PURSUANT TO COA, DBM, DEPED JC NO. 2019-1	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15295	COMUPUTER ORORGANIZATION ANDHOW TO ORGANIZE COMPUTER FILES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15297	COMPUTER ORGANIZATION AND HOW TO ORGANIZE ORGANIZATION FILES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15298	2022 ORIENTATION TRAINING ON QUALITY MANAGEMENT SYSTEM ,DEPED MANUAL OF STYLE AND DEPED SERVICE MARKS AND VISUAL IDENTITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15300	WEBINAR ON THE EFFICIENT AND EXPEDIENT MANAGE OF ADMINISTRATIVE CASES AND THE PROPER AND SAFE HANDLING OF CASE RECORDS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15302	WEBINAR THE EFFICIENT AND EXPEDIENT MANAGEMENT OF ADMINISTRATIVE CASES AND THE PROPER AND SAFE HANDLING OF CASE RECORDS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15304	BASIC ACCOUNTING FOR NON - ACCOUNTANT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15306	TRAINING-WORKSHOP ON FOUR CORE AREAS TO INSTITUTIONALIZE MERITOCRACY AND EXCELLENCE IN HUMAN RESOURCE MANAGEMENT (PRIME HRM)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15309	DIVISION TRAINING WORKSHOP ON UPDATING LEARNERS AND SCHOOLS' PROFILE IN THE LEARNER INFORMATION SYSTEM AND ENHANCEDE BASIC EDUCATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15312	DIVISION TRAINING WORKSHOP ON UPDATING LEARNERS AND SCHOOLS' PROFILE IN THE LEARNER INFORMATION SYSTEM AND ENHANCED BASIC EDUCATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15314	BASIC LIFE SUPPORT PROVIDERS' TRAINING FOR SCHOOL DRRM COORDINATORS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15316	DIVISION ORIENTATION ON IPCRF-RPMS DATA COLLECTION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15324	CAPACITY BUILDING FOR SCHOOL HEADS AND FINANCIAL STAFF ON THE PROPER UTILIZATION OF MOOE FUNDS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15327	CAPACITY BUILDING ON CAREER DEVELOPMENT & SUCCESSION MANAGE CUM FINACIAL LIT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15334	PICPA 2020 GOVERNMENT SUMMIT & GENERAL MEMBERSHIP BUILDING -FOSTERING EFFECTIVE AND EFFICIENT UTILIZATION OF GOVERNMENT FUNDS: REINFORCING THE LAW ,REGULATIONS AMIDST CHALLEGING TIMES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15341	TRANSERVE UDEMY GOVERNMENT E -LEARNING PLATFORM FOR NON -TEACHING PERSONNL OF SCHOOL DIVISION OFFICES AND REGIONAL OFFICE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15294	SEMINAR-WORKSHOP ON THE PREPARATION AND CONSOLIDATION 0F FY 2022 YEAR-END FINANCIAL REPORTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15296	COMPETENCY ENHANCEMENT COURSES (UDEMY E-LEARNING SOLUTIONS)- VARIOUS COURSES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15299	DIVISION ORIENTATION-WORKSHOP ON PROGRAM MANAGEMENT INFORMATION SYSTEM (PMIS) FOR SDO PROGRAM PROPONENTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15301	BASIC ACCOUNTING FOR NON-ACCOUNTANT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15323	TRAINING OF TRAINERS FOR EXAINERS AND IT SUPPORT TEAMS ON THE ONLINE SYSTEM FOR THE FY 2023 NATIONAL QUALIFYING EXAMINATION FOR SCHOOL HEADS (NQESH)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15325	RESULT-BASED PERFORMANCE MANAGEMENT SYSTEM, INDIVIDUAL PERFORMANCE COMMITMENT AND REVIEW FORMS (IPCRF) AND OFFICE PERFORMANCE COMMITMENT REVIEW FORM (OPCRF) RECALIBRATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15326	ASSESMENT AND CAPACITY BUILDING OF REGIONAL AND DIVISION INFORMATION TECHNOLOGY OFFICERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15328	COMPUTER SCIENCE 101: MASTER THE THEORY BEHIND PROGRAMMING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15329	JAVA PROGRAMMING FOR COMPLETE BEGINNERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15330	CYBER SECURITY OPERATIONS AND TECHNOLOGY SOLUTIONS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15331	THE BEGINNERS 2022 CYBER SECURITY AWARENESS TRAINING COURSE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15332	RISK MANAGEMENT FOR CYBERSECURITY AND IT MANAGERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15333	THE ABSOLUTE BEGINNERS GUIDE TO CYBER SECURITY 2022- PART 1	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15335	THE COMPLETE CYBER SECURIT COURSE: NETWORK AND SECURITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15336	PLETE CYBER SECURITY COURSE: NETWORK AND SECURITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15337	THE COMPLETE CYBER SECURITY COURSE: NETWORK SECURITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15338	THE COMPLETE CYBER SECURITY COURSE: HACKERS EXPOSED	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15339	DIVISION PROGRAM ON STRENGTHENING DEPED CORE VALUES IN DAILY LIFE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15340	DEPED TAYO AND SOCIAL MEDIA FOR GOVERNANCE WORKSHOP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15342	CAPACITY BUILDING FOR REGIONAL AND DIVISION INFORMATION TECHNOLOGY OFFICERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15343	ORIENTATION OF IPCRF-RPMS DATA COLLECTION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15344	STRENGTHENING EDUCATORS WITH COLLABORATION AND PRODUCTIVITY TOOLS (MICROSOFT 0365)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15345	RESULT-BASED PERFORMANCE MANAGEMENT SYSTEM, INDIVIDUAL PERFORMANCE COMMITMENT AND REVIEW FORMS (IPCRF) AND OFFICE PERFORMANCE COMMITMENT AND REVIEW FORM (OPCRF) RECALIBRATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15346	2023 SEMINAR IN GOVERNMENTAL MANAGEMENT " FOSTERING TRANSPARENCY, ACCOUNTABILITY, AND RESILIENT ECONOMIES: A PATH TO GOOD GOVERNANCE AND ECONOMIC SUSTAINABILITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15347	11TH ENTREPRENEURIAL FORM "UNLEASHING SUCCESS- LEARN, LAUNCH, LEAD!"	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15348	MASTER MICROSOFT WORD BEGINNER TO ADVANCED	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15349	INTRODUCTION TO FINANCIAL MODELING FOR BEGINNERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15350	SEMINAR-WORKSHOP ON THE IMPLEMENTATION OF WEB-BASED MONITORING SYSTEM OF SCHOOL MOOE FUNDS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15351	CONDUCT OF FY 2023 DIVISION BUDGET PREPARATION FORUM (FOR SCHOOL HEADS AND SDO PERSONNEL)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15352	ORIENTATION ON THE GUIDELINES OF E-LEARNING PLATFORM AND ITS REQUIRED COURSES FOR NON-TECAHING PERSONNEL OF SCHOOL DIVISION OFFICES AND REGIONAL OFFICE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15353	OFFICE SYSTEM MANAGEMENT INTERNATIONAL SEMINAR	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15354	CAREER DEVELOPMENT ONLINE SEMINAR	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15355	INTERNATIONAL SEMINAR ON LEADERSHIP AND OFFICE ADMINISTRATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15356	EMPLOYEES COMPENSATION PROGRAM WEBINAR	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15357	SEMINAR-WORKSHOP ON THE RECONCILIATION OF PSI-POP AND PAYROLL DISBURSEMENT VERSUS THE FY 2022 NATIONAL EXPENDITURE PROGRAM (NEP)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15358	INTERNATIONAL LEADERSHIP TRAINING IN DIGITAL WORKPLACE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15359	36TH NATIONAL WEBINAR/WORKSHOP ON THE PREPARATION OF CY 2021 MID-YEAR FINANCIAL REPORTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15360	SOCIAL MEDIA RECRUITMENT FOR HUMAN RESOURCE PROFESSIONALS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15361	THE RISE OF AI-ENHANCED LEARNING DEVELOPMENT IN HR	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15362	CONDUCT OF ONLINE SUBMISSION OF BUDGET PROPOSAL (OSBP) VERSION 2.0 FOR FY 2022	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15363	FOUNDATION OF COMPUTER EMEGERNCY RESPONSE TEAM (CERT) OPERATIONS AND PNPKI	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15364	WEBINAR ON MENTAL HEALTH AND PSYCHOSOCIAL SUPPORT IN THE NEW NORMAL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15365	EMPLOOYES COMPENSATION PROGRAM SEMINAR	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15366	IMPLEMENTATION OF WEB-BASED MONITORING SYSTEM OF SCHOOL MOOE FUND	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15367	EMPLOYEES COMPENSATION PROGRAM SEMINAR	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15368	ACCOUNTING FOR NON- ACCOUNTANTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15369	FY 2020 BUDGET EXECUTION DOCUMENTS ( BEDS)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15370	PREPARATION & SUBMISSION OF INVENTORY OF DEPED PERSONNEL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15371	ORIENTING ONESELF TO ENVIRONMENTALLY SUSTAINABLE WORK STANDARDS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15372	DIVISION TRAINING - WORKING ON BASIC CUSTOMER SERVICE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15373	CALABARZON CYBER TALKS WITH GOVERNMENT AGENCIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15374	WORKPLACE EMAILS MADE EASY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15375	ISO 9001: 2015 QUALITY MANAGEMENT SYSTEM INTERNAL AUDIT COURSE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15376	DIGITAL CITIZENSHP AND CIVILITY IN THE WORKPLACE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15377	EXERCISING SUSTAINABLE DEVELOPMENT IN THE WORKPLACE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15378	ORIENTATION OF THE IMPLEMENTATION OF FINANCIAL MANAGEMENT OPERATIONS MANUAL ( FMOM)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15379	INTRODUCTION TO DATA PRIVACY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15380	ORIENTATION ON THE IMPLEMENTATION OF FINANCIAL MANAGEMENT OPERATIONS MANUAL ( FMOM)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15381	PERSONAL FINANCE AND ENTRELEADERSHIP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15382	FY 2017 BUDGET EXECUTION DOCUMENTS ( BEDS)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15383	SOCIAL-EMOTIONAL LEARNING INTEGRATION IN THE CLASSROOM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15384	CASH MANAGEMENT AND CONTROL SYSTEM TRAINING WORKSHOP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15386	" SEC AND PHILHEALTH UPDATES " " TAX UPDATES " " PERS UPDATES " DURING THE SOUTHERN TAGALOG REGIONAL CONFERENCE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15389	TRAINING WORK ON RESOLUTON AND WRITING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15390	MANDATORY CONTINUING LEGAL EDUCATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15392	DEPED PROCUREMENT PROFESSIONALIZATION PROGRAM ( 3 PRO)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15393	TRAINING WORKSHOP FOR ONLINE SAFETY FOR CHILDREN AND POSITIVE DISCIPLINE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15394	TRAINING WORKSHOP ON RESOLUTION WRITING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15396	SEMINAR ON THE DIFFERENT PROCEDURE IN SCHOOL SITES ACQUISITION & DOCUMENTATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15398	YEAR - END WORKSHOP ON RESOLUTION WRITING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15400	TRAINING WORK FOR MEMBERS OF THE RO AND SDO COMPLIANCE TEAM ON DATA PRIVACY ACT OF 2012	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15403	ISO 19011: GUIDELINES FOR AUDITING MANAGEMENT SYSTEM TRAINING COURSE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15407	ISO 9001 : 2015 QMS RISK AND OPPORTUNITY TRAINING AND WORKSHOP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15409	ISO 9001 : 2015 QMS DOCUMENTATION TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15411	ISO 9001 : 2015 QMS AWARENESS TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15413	TRAININ WORKSHOP ON INVESTIGATION, INTELLIGENCE , APPRECIATION OF EVIDENCE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15415	TRAINING WORKSHOP ON INVESTIGATION , INTELLIGENCE , APPRECIATION OF EVIDENCE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15433	WORKSHOP ON THE TRAINING OF DIVISION OFFICE/AUTONOMOUS HIGH SCHOOL PERSONNEL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15434	SEMINAR WORKSHOP ON THE TRAINING OF DIVISION OFFICE/AUTONOMOUS HIGH SCHOOL PERSONNEL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15437	REGIONAL WORKSHOP FOR THE CONSOLIDATION OF FY 2009 YEAR END FINANCIAL STATEMENTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15439	REINAL WORKSHOP FOR THE CONSOLIDATION OF FY 2010 YEAR END FINANCIAL STATEMENTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15441	REGIONAL WORKSHOP FOR THE CONSOLIDATION OF FY 2010 YEAR END FINANCIAL STATEMENTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15443	ORIENTATION SEMINAR OF NEW IMPLEMENTING UNITS AND YEAR END CONFERENCE OF DIVISION ACCOUNTANTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15445	WORKSHOP FOR THE CONSOLIDATION OF FY 2011 YEAR END FINANCIAL STATEMENTS AND TRAINING NEW FINANCIAL STAFF ON THE USAGE OF BMS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15448	REGIONAL WORKSHOP ONTHE PREPARATION OF FY 2013 BUDGET ESTIMATES AT TAGAYTAY INTERNATIONAL CONVENTION CENTER	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15451	CLUSTERES INFORMATIONAL ASSEMBLY OF DEPARTMENT OF EDUCATION NATIONAL EMPLOYEES UNION (NEU) ON THE K TO 12EDUCATION PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15452	REGIONAL WORKSHOP FOR THE CONSOLIDATION OF 2012 YEAR END FINANCIAL STATEMENTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15453	FY 2014 BUDGET PREPARATION CLUSTER I	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15456	TRAINING WORKSHOP ON THE ROLL -OUT OF THE ON - LINE MONTHLY REPORT OF DEBURSEMENTS AND FINANCIAL REPORTING SYSTEM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15458	ECHO - TRAINING ON THE UNITED ACCOUNTS CODE STRUCTURE ( UACS ), TREASURY SINGLE ACCOUNT (TSA) AND OTHER REFORMS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15460	REGIONAL WORKSHOP FOR THE CONSOLIDATION OF FY 2013 YEAR END FINANCIAL STATEMENTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15464	ORIENTATION TRAINING/WORKSHOP ON THE USE OF ONLINE REPORTING SYSTEM FOR THE SUBMISSION OF BUDGET EXECUTION PLANS AND TARGETS FOR 2014	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15467	GUNG HOI A GAD - BASED COMPETENCE ENHANCEMENT PROGRAM FOR DEPARTMENT OF EDUCATION NON - TEACHING PERSONNEL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15468	FY 2016 BUDGET PREPARATION GUIDELINES ONTHE RELEASE OF FUNDS (CLUSTER IV)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15471	FY 2016 BUDGET PREPARATION AND FY 2015 GUIDELINES ON THE RELEASE OF FUNDS (CLUSTER IV)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15474	DIVISION CONFERENCE ON K TO 12 PROGRAM UPDATES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15387	LEDEARSHIP/ CAPACITY DEVELOPMENT TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15388	LEADERSHIP/ CAPACITY DEVELOPMENT TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15391	FIVE DAY NATIONAL TRAINING-WORKSHOP ON BASIC ACCOUNTING AND BOOKKEEPING FOR NON-ACCOUNTANTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15395	ONLINE BOOKKEEPING WITH QUICKBOOKS ONLINE AND XERO	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15397	SERVICE SUPERIORITY WORKSHOP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15399	COUNTERFEIT MONEY DETECTION SEMINAR	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15401	SIGNATURE IDENTIFICATION AND FRAUD DETECTION SEMINAR	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15402	ORIENTATION PROGRAM FOR NEW HIRES: ANTI MONEY LAUDERING MODULE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15405	DEVELOPING A T.E.A.M	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15408	CAMP CONFERENCE OF ASPIRING MARKETING PROFESSIONALS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15416	CURRENT DEVELOPMENT IN ACCOUNTANCY PROFESSION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15404	DIVISION TRAINING WORKSHOP ON CUSTOMER SATISFACTION (FACILITATOR AND PARTICIPANT)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15406	HANDS ON TRAINING ON BASIC COMPUTER OPERATIONS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15410	GUNG HO BASED COMPTENCE ENHANCEMENT PROGRAM FOR DEPED NON- TEACHING PERSONNEL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15412	TRAINING OF THE DEPED RATIONALIZATION PROGRAM HELP DESK TEAM (SDO)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15414	TRAINING ON GENDER AND DEVELOPMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15417	CURRICULUM IMPLEMENTATION DIVISION YEAR END PERFORMANCE REVIEW AND PLANNING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15418	CONDUCT OF FIRST GAWAD KAWANI AWARDEE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15419	DIVISION EDUCATION DEVELOPMENT PLAN ADJUSTMENT CUM POST - PLANNING ACTIVITIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15420	2023 DIVISION ORIENTATION OF THE KEY LEADERS ON THE IMPLEMENTATION OF NATIONAL LEARNING CAMP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15421	CID FIRST QUARTER PROGRAM IMPLEMENTATION REVIEW PERFORMANCE PLANNNING AND COMMITTMENT AND PERFORMANCE, MONITORING AND COACHING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15422	CALABARZON CYBER TALKS WITH THE GOVERNMENT AGENCIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15423	BEST PRACTICES IN FILE NAMING IN LIBRARIES AND ARCHIVES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15424	RESULTS BASED PERFORMANCE MANAGEMENT SYSTEM OPCRF/ IPCRF RECALIBRATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15425	2023 DIVISION WOMEN'S MONTH CELEBRATION- WE FOR GENDER QUALITY & INCLUSIVE SOCIETY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15426	UDEMY - BOOST YOUR PRODUCTIVITY: ADAPT, IMPROVE, DO!	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15427	UDEMY - MASTER MICROSOFT WORD BEGINNER TO ADVANCED	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15428	UDEMY- LEADERSHIP MASTERCLASS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15429	DIVISION MANAGEMENT COMMITTEE MEETING CUM PROGRAM IMPLEMENTATION REVIEW ( PIR)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15430	UDEMY- THE ABSOLUTE BEGINNERS GUIDE TO CYBER SECURITY 2022- PART 1	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15431	UDEMY- MICROSOFT ACCESS 2016 MASTER CLASS: BEGINNER TO ADVANCED	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15432	UDEMY - COMPUTER ORGANIZATION AND HOW TO ORGANIZE COMPUTER FILES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15435	UDEMY: BEST PRACTICES IN DOCUMENT MANAGEMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15436	COORDINATION AND CONSULTATIVE MEETING ON RECORDS MANAGEMENT AND TECHNICAL ASSISTANCE TO SCHOOLS AND LEARNING CENTERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15438	KUMUSTAHAN SESSION WITH UDEMY LEARNERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15440	ORIENTATION ON THE GUIDELINES OF E- LEARNING PLATFORM AND IT'S REQUIRED COURSES FOR NON- TEACHING PERSONNEL OF SDO"S AND RO"S	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15442	2021 ANTI- VAWC CAMPAIGN WEBINAR	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15444	RECORDS MANAGEMENT AND SERVICES: SUSTAINING BEST PRACTICES UNDER THE NEW NORMAL AND BEYOND	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15446	RECORDS MANAGEMENT AND SERVICES: RECORDS COUNTER DISASTER PREPAREDNESS AND BUSINESS CONTINUITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15447	WEBINAR ON THE EFFICIENT AND EXPEDIENT MANAGEMENT OF ADMINISTRATIVE CASES AND THE PROPER AND SAFE HANDLING OF CASE RECORDS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15449	WEBINAR ON THE EFFICIENT AND EXPEDIENT MANAGE OF ADMINISTRATIVE CASES AND THE PROPER AND SAFE HANDLING OF CASES RECOR	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15450	DEACO VIRTUAL REGIONAL CONSULTATIVE FORA FOR TEACHING AND NON- TEACHING PERSONNEL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15454	2ND CLUSTERED CONFERENCE OF THE DEPED ADMINISTRATIVE SERVICES ( CCDEAS)- RECORDS GROUP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15455	SEMINAR WORKSHOP ON RECORDS MANAGEMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15457	FINANCIAL LITERACY TRAINING PROGRAM FOR DEPED PERSONNEL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15459	2019 NATIONAL WOMEN"S MONTH	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15461	DIVISION TRAINING ON STRENGTHENING THE IMPLEMENTATION OF ENVIRONMENT PROJECTS ( PROJECT SIEP)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15462	PROFESSIONAL LEARNING NETWORK FOR ALS TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15463	TRAINING- WORKSHOP FOR CHAIRS AND MEMBERS OF THE RO AND SDO COMPLIANCE TEAM ON DATA PRIVACY ACT OF 2012	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15465	SEMINAR WORKSHOP ON CAPABILITY BUILDING FOCUSING ON LEARNING-CENTERED APPROACH FOR EFFECTIVE DELIVERY OF INSTRUCTION IN ENSCIMA	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15466	ISO 9001: 2015 QUALITY MANAGEMENT SYSTEM- 7S PRINCIPLES OF GOOD HOUSEKEEPING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15469	ISO 9001: 2015 QUALITY MANAGEMENT SYSTEM- DOCUMENTATION TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15470	NATIONAL TRAINING OF EPSA ON THE PROVISION OF GIVING TECHNICAL ASSISTANCE ON THE IMPLEMENTATION OF CONTEXTUALIZED MELCs BASED SHS CURRRICULUM FOR ALS (CLUSTER III)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15472	ORIENTATION FOR HUMSS'S PARENTS AND LEADERS ON PILOT IMPLEMENTATION OF SHS PROGRAM IN BCIHS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15473	ORIENTATION ON THE IMPLEMENTATION OF PAYROLL PROCESS PURSUANT TO DEPED ORDER NOS. 38 ( SUPERCEDED BY DO NO. 55	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15475	ORIENTATION ON THE IMPLEMENTATION OF PAYROLL PROCESS PURSUANT TO DEPED ORDER NOS. 38 ( SUPERCEDED BY DO NO.55) AND 49, S. 2017	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15476	ROLL- OUT PROGRAM/ ORIENTATION ACTIVITY ON THE IMPLEMENTATION OF THE O	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15477	ROLL - OUT PROGRAM/ ORIENTATION ACTIVITY ON THE IMPLEMENTATION OF THE POLICY AND PROCEDURAL GUIDELINES ON THE CERTIFICATION, AUTHENTICATION AND VERIFICATION OF BASIC EDUCATION SCHOOL RECORDS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15478	DIVISION WORKSHOP ON DEVELOPMENT OF PROGRAM DESIGN ON LEARNING PACKAGE FOR CAPACITY BUILDING OF TEACHERS AND SCHOOL LEADERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15479	TRAINING WORKSHOP ON FACILITATION SKILLS AND MANAGEMENT OF LEARNING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15480	ORIENTATION ON QUALITY MANAGEMENT SYSTEM AND OTHER DEPED MANUALS AND STYLE OF DEPED SERVICE MARKS AND VISUAL IDENTITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15481	ROLL- OUT PROGRAM/ ORIENTATION ACTIVITY ON THE IMPLEMENTATION OF THE POLICY AND PROCEDURAL GUIDELINES ON THE CERTIFICATION, AUTHENTICATION AND VERIFICATION OF BASIC EDUCATION SCHOOL RECORDS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15482	ORIENTATION TRAINING ON QUALITY MANAGEMENT SYSTEM AND OTHER DEPED MANUALS AND STYLE OF DEPED SERVICE MARKS AND VISUAL IDENTITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15483	THREE - DAY TRAINING WORKSHOP IN PREPARATION FOR STANDARDIZED SDO PROCESSES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15484	REGIONAL ORIENTATION ON THE IMPLEMENTATION AND PRE-PLANNING ACTIVITIES OF ALS SENIOR HIGH SCHOOL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15485	CONSULLTATIVE MEETING WITH AGENCY AUTHORIZED OFFICERS AND ERF HANDLERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15486	CONSULTATIVE MEETING WITH AGENCY AUTHORIZED OFFICERS AND ERF HANDLERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15487	SEMINAR AND CAPACITY ENHANCEMENT ON LEGAL ACCOUNTABILITY OF PUBLIC OFFICIALS IN PROMOTING TRANSPARENCY IN RECORDING FINANCIAL TRANSACTIONS THROUGH PROPER HANDLING OF GOVERNMENT RECORDS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15488	ENHANCEMENT SEMINAR FORV SCHOOLS DIVISION OFFICE ADMINISTRATIVE OFFICERS V AND HUMAN RESOURCE MANAGEMENT OFFICERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15489	2017 TEA GOVERNANCE FORUM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15490	ORIENTATION AND RE- ORIENTATION MEETING WITH AGENCY AUTHORIZED OFFICERS AND ERF HANDLERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15491	MEETING ON THE DECENTRALIZATION OF DEPED CALABARZON	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15492	DIALOGUE WITH AGENCY AUTHORIZED OFFICER ( AAOS) AND ELECTRONIC REMITTANCE FILE ( ERF) HANDLERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15493	TRAINING- WORKSHOP ON RESULTS- BASED PERFORMANCE AND MANAGEMENT SYSTEM ( RPMS)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15494	RE- ORIENTATION ON THE ROLES AND FUNCTIONS OF THE SDO RATIONALIZED STRUCTURE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15495	DIVISION TRAINING WORKSHOP ON CUSTOMER SATISFACTION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15496	GUNG HO! A GAD BASED COMPETENCE ENHANCEMENT PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15497	WORKSHOP ON UNDISTRIBUTED ACCOUNTS AND CLARIFACTORY ITEMS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15498	DIVISION TRAINING FOR TRAINERS ( TOTS) FOR RESULTS- BASED PERFORMANCE MANAGEMENT SYSTEM ( RPMS)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15499	ORIENTATION ON THE RESULTS- BASED PERFORMANCE MANAGEMENT SYSTEM ( RPMS)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15500	ONE DAY ORIENTATION TRAINING ON THE USE OF ONLINE REPORTING SYSTEM FOR FY 2014 & SUBSEQUENT YEARS, IMPLEMENTATION OF EXMDPS OF ALL NATIONAL GOVERNMENT AGENCIES ( NGAS) AND IMPLEMENTATION OF E- FORM 7	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15501	FY 2015 REGIONAL BUDGET PREPARATORY RELATED ACTIVITES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15502	TRAINING ON GENDER AND DEVELOPMENT (GAD)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15503	GSIS DEPED CONSULTATIIVE MEETING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15504	PRO IV- B EMPLOYERS' FORUM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15505	CUSTOMER RELATIONSHIP ENRICHMENT AND MANAGEMENT ( CREAM) PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15506	ON-LINE CLEARING SYSTEM"S TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15507	SYSTEMATICS FCDU- SAVINGS AND PSP/HYSA SYSTEM TRAINING AND CONVERSION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15508	VMOS UNIT CASCADING SESSION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15509	WORKSHOP AND AWARENESS CAMPAIGN ON UNITED NATION OBSERVANCES, UNESCO PROGRAMS AND PHILIPPINE COMMERATIONS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15510	FINAL QUALITY ASSURANCE/WORKSHOP OF CONTEXTUALIZED AND LOCALIZED MATERIALS IN ALL LEARNING AREAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15511	CONDUCT OF ONLINE SUBMISSION OF BUDGET PROPOSAL ( OSBP ) AND BUDGET FINANCIAL AND ACCOUNTABILITY REPORTS(BFARs)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15512	TRAINING ON HIGHER SKILLS (HOTS) AND SOLO FRAMEWORK ACROSS CURRICULUM FOR EDUCATION LEADERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15513	DIVISION TRAINING WORKSHOP ON TEACHING THE CRITICAL COMPETENCIES IN ALL LEARNING AREAS OF KEY STAGE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15514	ORIENTAL CUM WORKSHOP ON THE UPDATES ON THE ENHANCED FINANCIAL REPORTING SYSTEM (eFRS)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15515	2023 DIVISION WORKSHOP ON QUALITY ASSURANCE OF CONTEXTUALIZED AND LOCALIZED LEARNING MATERIALS IN ALL LEARNING AREAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15516	TRAINING WORKSHOP ON THE RESULTS-BASED PERFORMANCE MANAGEMENT SYSTEM (RPMS)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15517	DEVELOPING A CULTURE OF INNOVATIVE AND RESILIENT LEADERSHIP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15518	REGIONAL SEMINAR WORKSHOP FOR THE CONSOLIDATION OF CY 2015 YEAR END FINANCIAL REPORTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15519	WORKSHOP ON THE DESIGN AND DEVELOPMENT OF PIVOT ASSURANCE FORM MONITORING AND PROGRESS (LAMP) OF REGIONAL LEARNING OUTCOMES IN DISTANCE LEARNING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15520	2017 BUDGET PREPARATION AND STRENTHENING ACCOUNTING POLICIES ON FUND UTILIZATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15521	WORKSHOP ON THE DESIGN AN DDEVELOPMENT OFM PIVOT ASSESSMENT FOR LEARNERS IN DISTANCE LERANING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15522	ORIENTATION OF CLMD CHIEFS. CID CHIEFS, AND TVL SUPERVISORS ON THE IMPLEMENTATIONS OF D.O 54, S. 2022 (GUIDELINES ON THE SELECTION OF SHS TVL SPECIALIZATION)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15523	WORKSHOP ON THE DESIGN AND DEVELOPMENT OF PIVOT ASSESSMENT FOR LEARNERS IN DISTANCE LEARNING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15524	FIRST GAWAD KAWANI	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15525	2023 DIVISION CONFERENCE OF BASIC EDUCATION RESEARCHERS (DCBER)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15526	RESEARCH PAPERS FOR ORAL PRESENTATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15527	CONTENT CREATION AND FINALIZATION OF PIVOT4A SELF-LEARNING MODULES (SLMs) FOR THE SECOND QUARTER	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15528	CURRICULUM AND INTERFACE (CT) INTERFACE WITH THE CURRICULUM AND LEARNING MANAGAMENT DIVISION (CLMD) AND CURRICULUM IMPLEMENTATION DIVISION (CID) CHIEFS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15529	2023 NATIONAL TEACHERS' MONTH DIVISION CELEBRATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15530	NATIONAL READING PROGRAM (NRP)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15531	TRAINING ON HIGHER ORDER THINKING SKILLS (HOTS) AND SOLO FRAMEWORK ACROSS THE CURRICULUM FOR EDUCATION LEADERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15532	TRAINING ON HIGHER ORDER THINKING SKILLS LEARNING PACKAGES (HOTS- PLPS) FOR ENGLISH, SCIENCE, AND MATHEMATICS TEACHERS (BATCH I)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15533	4TH NATIONAL ASSEMBLY OF EDUCATION LEADERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15534	BUILDING A POSITIVE AND STRENGTH- BASED INSTRUCTIONAL SUPERVISION AND TRANSFORMATIONAL LEADERSHIP IN SCHOOLS THROUGH APPRECIATIVE INQUIRY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15535	DIVISION ORIENTATION ON INDIVIDUAL PERFORMANCE COMMITMENT REVIEW (I/OCRF) AND CALIBRATION OF SDO PERSONNEL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15536	IMPLEMENTATION OF SCHOOL- BASED FEEEDING PROGRAM (SBFP) FOR SY 2023-2024	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15537	DIVISION TRAINING WORSKHOP ON GRADE 12 CAREER GUIDANCE PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15538	TRAINING ON ENHANCED BUDGET MONITORING SYSTEM ( EBMS) BATCH 1	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15539	DIVISION ORIENTATION ON THE END-OF-SCHOOL YEAR PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15540	DIVISION BASIC EDUCATION RESEARCH FUND (BERF)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15541	2023 DIVISION ORIENTATION OF THE KEY LEADERS ON THE IMPLMENTATION OF NATIONAL LEARNING CAMP (NLC)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15543	ORIENTATION OF END-OF-SCHOOL YEAR READING PROGRAM (LUZON CLUSTER)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15546	NATIONAL ORIENTATION OF KEY OFFICIALS ON THE IMPLEMENTATION OF THE NATIONAL LEARNING CAMP- LUZON 2 CLUSTER	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15548	TECHNICAL ASSISTANCE PROVISION IN THE FINALIZATION OF DIVISION STRATEGIC HRD PLANS FOR FY 2023-2030	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15551	VETTING AND FINALIZATION OF LEARNING RESOURCE PACKAGE FOR MASTER TEACHERS PROFESSIONAL DEVELOPMENT PROGRAM 2.0 (MTPDP 2.0) VETTING STAGE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15574	DIVISION TRAINING WORKSHOP ON TEACHING THE CRITIAL COMPETENCIES IN ALL LEARNING AREAS OF KEY STAGE 1-2	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15575	DISTRICT ROLL-OUT OF EARLY LANGUAGE LITERACY AND NUMERACY (ELLN)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15576	PUBLIC SCHOOLS DISTRICT SUPERVISORS 2ND NATIONAL RESEARCH CONVENTION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15577	ENHANCING THE CAPABILITY OF SCHOOL HEADS AND TEACHERS IN THE IMPLEMENTATION OF PROFESSIONAL PROGRAM VIA SCHOOL LEARNING ACTION CELL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15578	DIVISION TRAINING ON RESKILLING AND UPSKILLING OF SCHOOL LANORATORY TECHNICIANS/MANAGERS IN THE DEVELOPMENT OF LOCALIZED SAFETY MANAGEMENT SYSTEM MANUAL FOR TECHNICAL AND FUNCTIONALITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15579	EMPLOYEES RESKILLING ADVOCACY, INITIATIVES, SUPPORT FOR EXCELLENCE AND UPSKILLING PROGRAM (E-RAISE UP)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15604	DIVISION CAPACITY BUILDING OF SCIENCE, MATHEMATICS AND ENGLISH TEACHERS ON THE IMPLEMENTATION OF THE NATIONAL LEARNING CAMP-BATCH 3	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15605	DIVISION ROLL-OUT OF HIGHER THINKING SKILLS PROFESSIONAL LEARNING PACKAGES (HOTS-PLPS) FOR ENGLISH, SCIENCE AND MATHEMATICS (BATCH 2)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15606	2023 DIVISION CONFERENCE OF BASIC ACTION RESEARCH	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15607	FINAL QUALITY ASSURANCE/ WORKSHOP OF CONTEXTUALIZED AND LOCALIZED IN ALL LEARNING AREAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15608	DIVISION ORIENTATION OF KEY LEADERS ON THE IMPLEMENTATION OF NATIONAL LEARNING CAMP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15609	DIVISION CAPACITY BUILDING OF SCIENCE, MATHEMATICS AND ENGLISH TEACHERS ON THE IMPLMENTATION OF THE NATIONAL LEARNING CAMP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15610	DIVISION CAPACITY BUILDING OF SCIENCE, MATHEMATICS AND ENGLISH TEACHERS ON THE IMPLMENTATION OF THE NATIONAL LEARNING CAMP BATCH 2	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15611	CAPACITY BUILDING OF CHIEF TRAINER ON THE IMPLMENTATION OF THE NATIONAL LEARNING CAMP LUZON CLUSTER 2	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15612	FINALIZATION OF SCHOOL-BASED LEARNING ACTION CELL (SLAC) LEARNING RESOURCE PACKAGE FOR LEARNING RECOVERY IN LITERACY AND NUMERACY- STAGE 2	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15613	ENHANCING THE CAPACITY OF SCHOOL HEADSAND TEACHERS IN THE IMPLMENTATION OF PROFESSIONAL VIA SCHOOL LEARNING ACTION CELL-CLUSTER	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15614	ORIENTATION ON RECRUITMENT, SELECTION AND APPOINTMENT GUIDELINES IN THE DEPARTMENT OF EDUCATION (BATCH 1)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15618	DIVISION TRAINING ON HOTS- PLP BATCH 2	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15620	TRAINING ON HOTS AND SOLO FRAMEWORK ACROSS THE CURRICULUM FOR EDUCATION LEADERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15622	TRAINING WORKSHOP ON CAPABILITY BUILDING FOCUSING ON LEARNER- CENTERED APPROACH FOR EFFECTIVE DELIVERY OF INSTRUCTION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15624	SEMINAR- WORKSHOP ON CAPABILITY BUILDING FOCUSING ON LEARNER- CENTERED APPROACH FOR EFFECTIVE DELIVERY OF INSTRUCTION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15625	SEMINAR-WORKSHOP ON CAPABILITY BUILDING FOCUSING ON LEARNER- CENTERED APPROACH FOR EFFECTIVE DELIVERY OF INSTRUCTION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15626	DIVISION CAPACITY BUILDING OF TEACHERS ON THE IMPLEMENTATION OF NLC	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15627	DIVISION SCREENING/ SELECTION OF THE LEARNING RESOURCES EVALUATORS (LRES), ILLUSTRATORS AND LAYOUT ARTIST	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15628	NATIONAL MARKET SCOPING OF SUPPLEMENTARY LEARNING RESOURCES FOR SCHOOL LIBRARIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15629	REGIONAL TRAINING OF TRAINERS ON ADVANCING EDUCATION IN THE PHILIPPINES (ABC+) INSTRUCTIONAL LEADERSHIP TRAINING (ILT) UPSCALING PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15632	2022 VIRTUAL CONFERENCE OF BASIC EDUCATION RESEARCHERS (VCBER)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15634	PANDIBISYONG PALIGSAHAN SA FILIPINO SA PAGSULAT NG SANAYSAY NA MAY TEMANG "TIMPALAK JACINTO SA SANAYSAY 2021"	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15635	ORIENTATION ON THE PPST DEPED CENTRAL OFFICE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15636	DIVISION TRAINING WORKSHOP ON THE HOLISTIC ASSESMENT DEPED SDO BATANGAS CITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15637	FLEX2LEAD ONLINE COURSE THAMES INTERNATIONAL/ NEAP R4A	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15638	DIVISION CONFERENCE OF BASIC EDUCATION RESEARCHERS DEPED SDO BATANGAS CITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15639	E-RAISE UP TRAINING RESKILLING ADVOCACY, INITIATIVES, SUPPORT FOR EXCELLENCE AND UPSKILLING DEPED IV-A	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15640	NATIONAL QUALITY MANAGEMENT SYSTEM LAUNCHING DEPED SDO BATANGAS CITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15642	REGIONAL ORIENTATION ON THE IMPLMENTATION OF HOMEROOM GUIDANCE PROGRAM FOR SY: 2022-2023	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15644	1ST WORLD RESEARCH CONFERENCE ACROSS DISCIPLINES (WRCAD)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15648	BA 503 WEBINAR: DEALING THE CHALLENGES OF COVID 19: WAYS TO HANDLE PHYSICAL AND MENTAL HEALTH	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15650	CAPACITY BUILDING ON REENGINEERING TECHNICAL ASSISTANCE (TA) SYSTEM, PROCESS, AND MECHANISM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15653	RO4A WEBINAR ON CAPACITY BUILDING FOR CHAIRPERSON AND MEMBERS OF THE FORMAL INVESTIGATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15654	WEBINAR ON GOOVERNANCE AND MANAGEMENT OF COOPERATIVE UNION OF BATANGAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15656	WEBINAR ON GOVERNANCE AND MANAGEMENT OF COOPERATIVE UNION OF BATANGAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15544	2017 INTERNATIONAL CONFERENCE OF BASIC EDUCATION RESEARCHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15550	CAPACITY BUILDING ON THE EFFECTIVE IMPLEMENTATION OF THE CHILD PROTECTION POLICY IN SCHOOLS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15552	REGIONAL MASS TRAINING IN THE IMPLEMENTATION OF GRADE 11 CAREER GUIDANCE PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15554	MASTER TEACHERS PROFESSIONAL DEVELOPMENT PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15556	INSET- GENDER AND DEVELOPMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15557	NATIONAL CONSCIOUSNESS DAY FOR THE ELIMINATIOIN OF VIOLENCE AGAINST WOMEN AND CHILDREN	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15559	SENIOR HIGH SCHOOL, MASS TRAINING OF G11 TEACHERS ON COMMON TOPICS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15561	MASS TRAINING FOR SENIOR HIGH SCHOOL TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15580	ATTENDED THE DIVISION TRAINING ON AUDIT MANAGEMENT SYSTEM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15581	HIGHER ORDER THINKING SKILLS (HOTS) AND SOLO FRAMEWORK ACROSS THE CURRICULUM FOR EDUCATION LEADER	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15583	DIVISION SEMINAR-WORKSHOP ON BUILDING A POSITIVE AND STRENGTH-BASED INSTRUCTIONAL SUPERVISION & TRANSFORMATIONAL LEADERSHIP IN SCHOOLS THROUGH APPRECIATIVE INQUIRY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15585	ORIENTATION CUM TECHNICAL ASSISTANCE PROVISION FOR NEW RECOGNITION EVALUATION COMMITTEE (REC) MEMBERS AND PROFESSIONAL DEVELOPMENT (PD) PROGRAM PROPONENTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15588	DIVISION TRAINING-WORKSHOP ON HOLISTIC ASSESSMENT FOR KEY STAGES 1-4 (PHASE 1)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15591	ENHANCING THE CAPABILITY OF SCHOOL HEADS AND TEACHERS IN THE IMPLEMENTATION OF PROFESSIONAL PROGRAM VIA SCHOOL LEARNING ACTION CELL BATCH 2 (CLUSTER 2)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15595	CAPABILITY TRAINING WORKSHOP FOR POTENTIAL LEARNING RESOURCE EVALUATORS (LRE's) OF SUPLEMENTARY LEARNING RESOURCES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15596	CAPACITY BUILDING (CB) FOR TEACHERS AND SCHOOL HEADS FOCUSED ON NAVIGATING COMPUTER APPLICATION/S COMMUNICATION PLATFORMS AND ITS UTILIZATION FOR THE IMPROVEMENT OF SCHOOL OPERATIONS AND LEARNING MANAGEMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15597	VALUES RESTORATION OFFICE TRAINING THE TRAINERS (VROTT)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15598	DIVISION WEBINAR ON VIRTUAL LEADERSHIP AND SUPERVISION OF INSTRUCTIONAL REFORMS IN THE NEW NORMAL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15599	FLEX2LEAD TRAINING COURSE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15600	ONLINE ORIENTATION ON CAREER GUIDANCE FOR SCHOOL YEAR 2021-2022	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15601	REGIONAL ORIENTATION ON THE IMPLEMENTATION OF HOMEROOM GUIDANCE PROGRAM FOR SY2021-2022	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15602	GENDER SENSITIVITY TRAINING FOR LR SUPERVISORS AND ILLUSTRATORS IN CREATING GENDER SENSITIVE LEARNING MATERIALS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15630	WORKSHOP ON THE FLALIZATION OF TVL COURSES OFFERING TO ALIGN LOCAL DEVELOPMENT GOALS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15631	WORKSHOP ON THE FINALIZATION OF TVL COURSES OFFERING TO ALIGN LOCAL DEVELOPMENT GOALS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15633	ENHANCING THE CAPACITY OF SCHOOL HEADSAND TEACHERS IN THE IMPLMENTATION OF PROFESSIONAL VIA SCHOOL LEARNING ACTION CELL-CLUSTER 2	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15545	TRAINING- WORKSHOP ON THE SYNCHRONIZES GAD PLANNING AND BUDGETING CUM PREPARATION OF GAD ACCOMPLISHMENT REPORT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15547	11TH ENTREPRENEURIAL FORUM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15549	FIRST QUARTER ACCOMPLISHMENT REVIEW CUM COORDINATION MEETING WITH SCHOOLS DIVISION OFFICES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15553	RESULTS BASED PERFORMANCE MANAGEMENT INDIVIDUAL PERFORMANCE COMMITMENT AND REVIEW FORMS AND OFFICE PERFORMANCE COMMITMENT AND REVIEW FORMS RECALIBRATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15555	ORIENTATION AND CAPACITY BUILDING ON LRMDS POLICIES AND GUIDELINES, ORGANIZATION AND MANAGEMENT OF LCRs CUM CRAFTING OF SCHOOL AND DIVISION LEARNING RESOURCE PLAN SY 2023-2024	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15558	ONLINE SUBMISSION AND REVIEW OF RESEARCH PAPER USING DECISION TREE ALGORITHM FOR DEPED BATANGAS CITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15560	FINALIZATION OF YEAR- END REPORTS AND PERFORMANCE REVIEW FOR FY 2022	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15562	SEMINAR- WORKSHOP ON SYNCRHONIZED GAD PLANNING AND BUDGETING CUM PREPARATION OF GAD ACCOMPLISHMENT REPORT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15563	DIVISION MANAGEMENT COMMITTEE MEETING CUM PROGRAM IMPLEMENTATION REVIEW	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15564	CONDUCT OF THE REGIONAL SEMINAR - WORKSHOP ON THE CONSOLIDATION AND FINALIZATION OF FY 2023 BUDGET PROPOSAL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15565	ORIENTATIONN ON THE WEB- BASED MONITORING SYSTEM OF SCHOOL MOOE FUNDS IN SUPPORT TO THE SECONDARY EDUCATION SUPPORT PROGRAM SYSTEM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15566	ORIENTATION ON THE WEB-BASED MONITORING SYSTEM OF SCHOOL MOOE FUNDS IN SUPPORT TO THE SECONDARY EDUCATION SUPPORT PROGRAM SYSTEM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15567	CONVERGENCE OF RFTATa AND DFTATs FOCUSED ON THE ORGANIZATION AND MANAGEMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15568	2020 DIVISION ANTI-VAWC CAMPAIGN WEBINAR	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15569	CAPACITY BUILDING: PROMOTING TRANSPARENCY, ACCOUNTABILITY ANDC OPTIMIZED USE OF SCHOOL RESOURCES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15570	36TH NATIONAL WEBINAR/ WORKSHOP ON THE PREPARATION OF CY 2021 MID-YEAR FINANCIAL REPORTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15571	COACHING OF TRAINERS: A VIRTUAL ENGAGEMENT CAPACITY DEVELOPMENT FOR FINANCE SERVICE PERSONNEL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15572	BUDGET AND TREASURY MANAGEMENT SYSTEM ORIENTATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15573	REGIONAL VIRTUAL REORIENTATION- WORKSHOP ON PROGRAM MANAGEMENT INFORMATION SYSTEM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15582	WEB DEVELOPMENT FOR WEB DEVELOPERS TRAINING OF TRAINERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15584	WORKSHOP ON THE DEVELOPMENT ON POSITIVE DISCIPLINE LAC SESSION GUIDES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15586	' DEVELOPMENT OF SHS SUPPLEMENTARY MATERIALS FOR SELECTED SPECIALIZED SUBJECTS (HYBRID)'	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15587	' DEVELOPMENT OF SHS SUPPLEMENTARY MATERIALS FOR APPLIED SUBJECTS ( PHASE ) ( HYBRID)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15589	WORKSHOP ON THE FINALIZATION OF SHS SUPPLEMENTARY MATERIALS FOR APPLIED SUBJECTS ( HYBRID )	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15590	' ADVANCE LEARNING PATH FOR OPTIMAL FAMILIARITY ( ENTRY LEVEL BEGINNERS) NATIONAL CYBER DRILL 2022	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15592	BASIC LEARNING PATH FOR OPTIMAL FAMILIARITY ( ENTRY LEVEL/ BEGINNERS ) NATIONAL CYBER DRILL 2022	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15593	FRONT- END WEB DEVELOPMENT TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15594	CYBERSECURITY & INFRASTRUCTURE SECURITY AGENCY ( CISA): VIRTUAL INDUSTRIAL CONTROL SYSTEMS CYBERSECURITY ( 301V) TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15603	THE ONLY PLACE RESTAURANT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15615	DIVISION CAPACITY BUILDING OF SCIENCE, MATHEMATICS AND ENGLISH	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15616	DIVISION CAPACITY BUILDING OF SCIENCE,MATHEMATICS AND ENGLISH (SME)TEACHERS ON THE IMPLEMENTATION OF NATIONAL LEARNING CAMP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15617	DIVISION CAPACITY BUILDING OF SCIENCE ,MATHEMATICS AND ENGLISH {SME) TEACHERS ON THE IMPLEMENTATION OF NATONAL LEARNING CAMP (NLC)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15619	ORIENTATION ON RECRUITMENT, SELECTION AND APPOINTMENT (RSA) GUIDELINES IN THE DEPARTMENT OF EDUCATION (BATCH 1)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15621	REGIONAL TRAINING OF TRAINERS ON ADVANCING BASIC EDUCATION (ABC+)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15623	ENHANCING THE CAPABILITY OF SCHOOL HEADS AND TEACHERS IN THE IMPLEMENTATION OF PROFESSIONAL DEVELOPMENT PROGRAM VIA SCHOOL ACTION CELL (SLAC)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15641	ALS PROFESSIONAL LEARNING NETWORK ON ASSESSMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15643	HIGHER ORDER THINKING SKILLS PROFESSIONAL LEARNING PACKAGES ( HOTS-PLPs) FOR ENGLISH, SCIENCE AND MATHEMATICS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15645	FILIPINO SIGN LANGUAGE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15646	NATIONAL TRAINING ON TRAINERS ON CAPABILITY BUILDING ON ALTERNATIVE LEARNING SYSTEM ( ALS) ASSESSMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15647	ALS CONSULTATIVE CONFERENCE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15649	ADM TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15651	DIVISION EDUCATION DEVELOPMENT PLAN	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15652	HIGHER ORDER THINKING SKILLS ( HOTS) AND SOLO FRAMEWORK ACROSS THE CURRICULUM FOR EDUCATION LEADER	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15655	ALS SEMINAR- WORKSHOP ON BUILDING A POSITIVE AND STRENGTH- BASED INSTRUCTIONAL SUPERVISION & TRANSFORMATIONAL LEADERSHIP IN SCHOOLS THROUGH APPRECIATIVE INQUIRY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15657	ALS SEMINAR- WORKSHOP FOCUSING ON THE LEARNER - CENTERED APPROACH IN TEACHING ENSCIMA IN ADULT EDUCATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15658	DIVISION SEMINAR- WORKSHOP ON BUILDING POSITIVE AND STRENGTH- BASED INSTRUCTIONAL SUPERVISIONS & TRANSFORMATIONAL LEADERSHIP IN SCHOOLS THROUGH APPRECIATIVE INQUIRY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15659	NATIONAL TRAINING OF EDUCATION SPECIALIST II ON THE PROVISION OF TECHNICAL ASSISTANCE ON THE IMPLEMENTATION OF THE CONTEXTUALIZED MELCS- BASED SENIOR HIGH SCHOOL CURRICULUM FOR ALS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15660	2023 RAAM POST EVALUATION AND PLANNING CONFERENCE FOR THE PRE QUALIFYING MEET	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15661	DIVISION ORIENTATION OF THE KEY LEADERS ON THE IMPLEMENTATION OF THE NATIONAL LEARNING CAMP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15662	ENHANCING THE CAPABILITY OF SCHOOL HEADS AND TEACHERS IN THE IMPLMENTATION OF PROFESSIONAL PROGRAM VIA LAC	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15663	TWO DAY PLANNING WORKSHOP ON THE CONDUCT OF RSC FOR THE IDENTIFIED SPORTS EVENT IN THE 12TH ASEAN GAMES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15664	WORKSHOP ON THE QUALITY ASSURANCE OF 3RD AND 4TH QUARTER INTEGRATIVE ASSESMENT FROM G 1-12	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15665	NATIONAL TRAINING OF TRAINERS ON SPORT SKILLS FOR ATHLETICS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15666	WORKSHOP ON THE FINALIZATION OF KINDERGARTEN	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15667	ORIENTATION MEETING OF SCHOOL HEADS ON THE IMPLEMENTATION OF CUSTOMIZED POLICY GUIDELINES ON PRIME HRM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15668	DIVISION SGC RE-ORIENTATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15669	DEVELOPMENT WRITESHOP ON THE ADM ONE-STOP SHOP SCHOOL POLICY AT OASIS, TANZA CAVITE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15670	FIRST QUALITY ASSURANCE/ WORKSHOP OF CONTEXTUALIZED AND LOCALIZED MATERIALS IN ALL LEARNING AREAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15671	DIVISION TRAINING ON STRENGHTENING THE IMPLEMENTATION OF ALTERNATIVE DELIVERY MODE PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15672	PROGRAM IMPLEMENTATION REVIEW ON THE EARLY LANGUAGE LITERACY AND NUMERACY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15673	2023 DIVISION SCHOOL BASED MANAGEMENT (SBM) CONVERGENCE UNDER PROJECT SHARE IT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15674	WORKSHOP ON THE REVISION OF THE BUDGET OF WORK FOR MULTIGRADE TEACHING VIS-A-VIS THE MATATAG AGENDA	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15675	MONITORING AND IMPLEMENTATION OF THE NATONAL LEARNING CAMP ( NLC) AND END OF SCHOOL YEAR ( EOSY) BREAK PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15676	DIVISION MANAGEMENT COMMITTEE ( MANCOM)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15677	IMPLEMENTATION REVIEW OF MULTIGRADE PROGRAM CUM STRATEGIC PLANNING WORKSHOP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15678	PROCESS OBSERVER / FACILITATOR	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15679	PROCESS OBSERVER / FACILITATOR- DIVISION TRAINING WORKSHOP ON TEACHING THE CRITICAL COMPETENCIES IN ALL LEARNING AREAS OF KEY STAGE 1-2	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15680	REGIONAL TRAINING ON NQMS WITH THE PROVISION OF TA	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15681	DIVISION ROLL OUT ON HOTS AND SOLO FRAMEWORK	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15682	RESOURCE SPEAKER- BUILDING A POSITIVE AND STRENGHT- BASED INSTRUCTIONAL SUPERVISION AND TRANSFORMATIONAL LEADERSHIP IN SCHOOLS THROUGH APPRECIATIVE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15683	CO- CHAIRMAN - 2023 DIVISION WORKSHOP ON QUALITY ASSURANCE OF CONTEXTUALIZED AND LOCALIZED LEARNING MATERIALS IN ALL LEARNING AREAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15684	WORKSHOP ON THE QUALITY ASSURANCE OF 2022 REGIONAL STORYBOOK WINNERS AND SDO CONTEXTUALIZED AND DEVELOPED DIGITAL LRs FOR KINDERGARTEN	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15685	DIVISION CAPABILITY TRAINING OF SCIENCE, MATHEMATICS, AND ENGLISH (SME) TEACHERS ON THE IMPLEMENTATION OF NATIONAL LEARNING CAMP ( NLC)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15686	TECHNICAL WORKING GROUP - ADOLESCENT REPRODUCTIVE HEALTH: SOCIAL BEHAVIORAL CHANGE ( SBC) MATERIALS DEVELOPMENT ( ADEPT CONTEXTUALIZATION ) PART 2- VIDEO SHOOTING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15687	DIVISION WORKSHOP ON QUALITY ASSURANCE OF CONTEXTUALIZED AND LOCALIZED LEARNING MATERIALS AREA	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15688	ORIENTATION ON RSP GUIDELINES IN DEPED	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15689	ORIENTATION AND CAPABILITY ON LRMDS POLICIES AND GUIDELINES, ORGANIZATION AND MANAGEMENT OF LRCs CUM CRAFTING OF SCHOOL AND DIVISION LEARNING RESOURCE PLAN SY 2023- 2024	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15690	ORIENTATION WORKSHOP ON LRCP M& E TOOL AND BEMEF	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15691	WORKSHOP ON FINALIZATION OF REGIONAL CONTEXTUALIZED ASSESSMENT TOOL FOR KEY STAGE 1 THROUGH LAMP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15692	REACTOR- ENHANCING THE CAPABILITY OF SCHOOL HEADS AND TEACHERS IN THE IMPLEMENTATION OF PROFESSIONAL PROGRAM VIA SCHOOL LEARNING ACTION CELL BATCH 2 ( CLUSTER 1)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15693	WORKSHOP ON FINALIZATION OF REGIONAL CONTEXTUALIZED ASSESSMENT THROUGH LAMP (PRE-WORK ACTIVITIES) VIA ZOOM MICROSOFT TEAMS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15694	NATIONAL TEACHERS' MONTH CELEBRATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15695	DIVISION TRAINING ON STRENGTHNING THE IMPLMENTATION OF ALTERNATIVE DELIVERY MODE PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15696	ORIENTATION AND CAPACITY BUILDING ON LRMDS POLICIES AND GUIDELINES, ORGANIZATION, AND ......	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15697	WORKSHOP ON EARLY LANGUAGE LITERACY AND NUMERACY (ELLN) HARMONIZATION OF YEAR-END OUTPUTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15698	RESOURCE SPEAKER- BUILDING A POSITIVE AND STRENGTH- BASED INSTRUCTIONAL SUPERVISION AND TRANSFORMATIONAL LEADERSHIP IN SCHOOLS THOUGH APPRECIATIVE INQUIRY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15699	REGIONWIDE ORIENTATION CUM WORKSHOP ON THE PROCESSING OF PERMIT/AUTHORIZATION TO OFFER HOMESCHOOLING PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15700	FACILITATOR- 2023 DIVISION FESTIVAL OF TALENTS:READ-A-THON IN ENGLISH	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15701	LUZON CLUSTER ON UPSKILLING OF SUPERVISOR ON INCLUSIVE EDUCATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15702	BATCH 2-ENHANCING THE CAPABILITY OF SCHOOL HEADS AND TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15703	DIVISION WORKSHOP ON THE DEVELOPMENT OF PROGRAM DESIGN & LEARNING PACKAGE FOR CAPABILITY BUILDING OF TEACHERS AND SCHOOL LEADERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15704	REACTOR- ENHANCING THE CAPABILITY OF SCHOOL HEADS AND TEACHERS IN THE IMPLMENTATION OF PROFESSIONAL PROGRAM VIA SCHOOL LEARNING ACTION CELL BATCH 2 (CLUSTER 1)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15705	WORKSHOP ON THE UPSKILLING OF SUPERVISORS ON INCLUSIVE EDUCATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15706	2023 PLAI CENTENNIAL NATINAL CONGRESS HERITAGE HORIZON HARMONY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15707	ROLLOUT ACTIVITY FOR TRAINERS OF MANAGEMENT TEAM AND SLR COMMITTEES IN THE IMPLEMENTATION OF THE POLICY ON SUPLEMENTARY LEARNING RESOURCES (SLRs)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15708	DIVISION WORKSHOP ON QUALITY ASSURANCE OF CONTEXTUALIZED AND LOCALIZED LEARNING MATERIALS IN ALL LEARNING AREAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15709	QUALITY ASSURANCE WORKSHOP OF SDO ELLN,SHS SPECIALIZED TRACK AND TVL LEARNING RESOURCES - BATCH I	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15710	ORIENTATION AND CAPACITY BUILDING ON LRMDS POLICIES AND GUIDELINES , ORGANIZATION AND MANAGEMENT OF LRCs CUM CRAFTING OF SCHOOL AND DIVISION LEARNING RESOURCE PLAN SY. 2023-2024	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15711	TRAINING ON ONLINE SUBMISSION AND REVIEW OF RESEARCH PAPER USING DECISION FREE ALGORITHM FOR DEPED BATANGAS CITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15712	WORKSHOP ON THE QUALITY ASSURANCE OF SDO CONTEXTUALIZED LEARNING RESOURCES USED FOR THE LEARNING RECOVERY PLAN	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15713	WORKSHOP ON THE QUALITY ASSURANCE OF THIRD AND FOURTH QUARTER INTEGRATIVE ASSESSMENT FROM GRADE 1-12	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15714	DIVISION WORKSHOP ON THE DEVELOPMENT PROGRAM DESIGN AND LEARNING PACKAGE FOR CAPABILITY BUILDING OF TEACHERS AND SCHOOL LEADERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15715	WORKSHOP ON THE QUALITY ASSURANCE OTHE SECOND QUARTER INTEGRATIVE ASSESSMENT FROM GRADE 1-12	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15716	MAXIMIZING THE USE OF KOHA IN COMMUNICATING WITH CLIENTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15717	ONLINE LIBRARY: CURATING RESOURCES FOR ACCESS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15718	COVID-19 POST -COMMUNITY QUARANTINE STRATEGIES FOR LIBRARIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15719	STRATEGIC PLANNING WORKSHOP AND TEAM BUILDING OF THE ACADEMIC DIVISION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15720	INDEXING PERIODICALS AND NEWSPAPERS REVISED AND UPDATED	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15721	WRITING PUBLISHABLE - FORMAT RESEARCH PAPER	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15722	GEARING 21ST CENTURY LIBRARIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15728	ORIENTATION ON THE PROVISIONS OF REPUBLIC ACT ( RA) 11650	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15729	TRAINING OF TEACHERS, SCHOOLHEADS AND SUPERVISORS IN EDUCATING LEARNERS WITH DISABILITIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15730	REGIONAL TRAINING ON FILIPINO SIGN LANGUAGE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15731	TRAINING ON THE USE OF COMPENDIUM OF TEACHING AND LEARNING RESOURCES ON FILIPINO SIGN LANGUAGE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15732	GABAY ( GUIDE): STRENGTHENING INCLUSIVE LEARNING DELIVERY GUIDE FOR LEARNERS WITH DISABILITY IN THE K TO 12 PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15733	GABAY ( GUIDE) : STRENGTHENING INCLUSIVE EDUCATION FOR BLIND, DEAF AND DEAFBLIND CHILDREN- PLANNING WORKSHOP FOR YEAR 5 IMPLEMENTATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15734	WORKSHOP ON THE DEVELOPMENT ON INCLUSIVE LEARNING DELIVERY GUIDE FOR LEARNERS WITH DISABILITY IN THE K TO 12 PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15735	ONLINE MEETING OF REGIONAL AND DIVISION FOCAL PERSONS FOR SPECIAL NEEDS EDUCATION PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15736	REGIONAL WORKSHOP ON THE USE OF FILIPINO SIGN LANGUAGE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15737	WORKSHOP ON THE UPSKILLING OF SUPERVISORS ON INCLUSIVE EDUCATION ( LUZON CLUSTER)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15738	REGIONAL POLICY REVIEW WORKSHOP ON VARIOUS LEARNING DELIVERY USED IN TKHE LEARNING RECOVERY AND CONTINUITY PLAN ( LRCP)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15739	PPSS 4.1 DIFFERENTIATING LEARNING AND DEVELOPMENT INTERVENTIONS IN THE NEW NORMAL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15740	PPSS 3.1 RE- ENGINEERING INSTRUCTIONAL LEADERSHIP SUPPORT IN THE NEW NORMAL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15741	PPSS 1.5 TRANSFIGURING LEARNING RESOURCE MANAGEMENT IN THE NEW NORMAL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15742	PPSS 1.6 HARMONIZING LEARNING OUTCOMES ASSESSMENT FOR DATA DRIVEN SUPERVISION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15743	PPSS 3.2 TECHNOLOGY- BASED INNOVATIONS IN SUPERVISING SCHOOLS AT DISTRICT/ DIVISION/ REGIONAL LEVEL LEVELS IN THE NEW NORMAL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15744	PPSS 2.2 REDEFINING THE ROLES AND APPROACHES OF EDUCATION SUPERVISORS IN PROVIDING TECHNICAL ASSISTANCE IN THE NEW NORMAL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15745	ENHANCING THE CAPABILITY OF SCHOOLHEADS AND TEACHERS IN THE IMPLEMENTATION OF PROFESSIONAL PROGRAM VIA SCHOOL LEARNING ACTION CELL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15746	WORKSHOP ON UPSKILLING OF SUPERVISORS ON INCLUSIVE EDUCATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15747	REGIONAL POLICY REVIEW WORKSHOP ON VARIOUS LEARNING DELIVERY USED IN THE LEARNING RECOVERY AND CONTINUITY PLAN ( LRCP)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15723	DIVISION MANAGEMENT COMMITTEE MEETING (MANCOM)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15724	DIVISION TRAINING ON STRENGTHENING THE IMPLEMENTATION OF ALTERNATIVE DELIVERY MODE PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	
15725	SAFE SPACE ACT AND GENDER - RESPONSIVE POLICIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15726	2ND NATIONAL CONVENTION FOR PSDSA	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15727	CAPACITY BUILDING OF CHIEF TRAINERS ON THE IMPLEMENTATION OF THE NATIONAL LEARNING CAMP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15748	DIVISION TRAINING OF TRAINERS (DTOT) FOR THE EARLY LANGUAGE LITERACY AND NUMERACY (ELLN) IMPLEMENTERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15749	LEARN HR FUNDAMENTALS FOR A CAREER IN HUMAN RESOURCES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15750	HOW TO WRITE AN EFFECTIVE RESEARCH PAPER	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15751	TRAINING WORKSHOP ON QUALITY MANAGEMENT SYSTEM FOCUSED ON SEVEN S (7S)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15752	AUTOMATED NATIONAL AND LOCAL ELECTIONS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15753	DIVISION WOMEN'S MONTH CELEBRATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15754	BASIC MICROSOFT WORD APPLICATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15755	2023 DIVISION SCHOOLS PRESS CONFERENCE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15756	2023 DIVISION CONFERENCE OF BASIC RESEACHERS (DCBER) WITH THE THEME "ACTION IMPACT AND EXCELLENCE: UTILIZING RESEARCH	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15757	Orientation Of The NATIONAL TRAINING OF TRAINERS (NTOT) ON THE NATIONAL READING PROGRAM (LUZON CLUSTER)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15758	REGIONAL TRAINING OF TRAINERS (RTOT) FOR LEARNING RECOVERY PROGRAM IN LITERACY AND NUMERACY THROUGH SCHOOL BASED LEARNING ACTION CELL - BATCH 2	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15759	EVALUATION WORKSHOP OF SUPPLEMENTARY LEARNING RESOURCES (SLRS) FOR THE NATIONAL READING PROGRAM (NRP)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15760	2023 NATIONAL TEACHERS' MONTH CELEBRATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15761	DIVISION CAPACITY BUILDING SCIENCE, MATHEMATICS AND ENGLISH TEACHERS ON THE IMPLEMENTATION OF THE NATIONAL LEARNING CAMP (BATCH 3)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15762	2023 DIVISION STORYBOOK WRITING WORKSHOP ANG COMPETITION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15763	DIVISION ROLL OUT OF THE HIGHER ORDER THINKING SKILLS PLPS FOR ENSCIMA TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15764	DIVISION CONFERENCE OF BASIC ACTION RESEARCH	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15765	ORIENTATION NATIONAL TRAINING OF TRAINERS (NTOT) ON THE NATIONAL READING PROGRAM (LUZON CLUSTER)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15766	NATIONAL TRAINING OF TRAINERS (NTOT ON THE NATIONAL READING PROGRAM (LUZON CLUSTER)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15767	ORIENTATION ON THE NATIONAL TRAINING OF TRAINERS (NTOT) ON THE NATIONAL READING PROGRAM (LUZON CLUSTER)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15768	FINALIZATION OF LEARNING EXEMPLAR ON FINANCIAL LITERACY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15769	JOURNALISM BOOTCAMP SERIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15770	INTERNATIONAL CONFERENCE ON LITERATURE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15771	REGIONAL TRAINING OF TRAINERS (RToT) FOR LEARNING RECOVERY PROGRAM IN LITERACY AND NUMERACY THROUGH SCHOOL BASED LEARNING ACTION CELL - BATCH 2	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15772	TRAINING ON HOTS AND SOLO FRAMEWORK ACROSS THE CURRICUM FOR EDUCATION LEADERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15773	DIVISION TRAINING WORKSHOP ON TEACHING THE CRITICAL COMPETENCIES IN ALL LEARNING AREAS OF KEY STAGE 1-2	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15774	JUAN KAPATID LEARNING SUMMIT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15775	IMPLEMENTATION OF THE END-OF-SCHOOL-YEAR (EOSY) PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15776	REVIEW OF REVISED DEPED- DEVELOPED LEARNING RESOURCES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15777	DIVISION PROGRAM IMPLEMENTATION REVIEW (PIR) OF THE LEARNING EREAS OF KEY STAGE 1-2	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15778	NATIONAL TRAINING OF TRAINERS ON HOTS- PLPS FOR ENGLISH, SCIENCE AND MATHEMATICS TEACHER	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15779	PANSANGAY NA PAGSASANAY SA PAGLINANG NG KASAYSAYAN SA PAGSASALITA AT PAGBASA AT PAGSULAT NG MGA AKDANG PAMPANITIKAN	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15780	NATIONAL MARKET SCOAPING FOR SUPPLEMENTARY LEARNING RESOURCES FOR SCHOL LIBRARIES AND LIBRARY HUBS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15781	REGIONAL PROGRAM REVIEW ON LEARNING DELIVERY SYSTEMS, MODALITIES AND INNOVATIONS IN VIEW OF LEARNING INITIATIVES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15782	TRAINING OF TRAINERS ON ADVANCING BASIC EDUCATION IN THE PHILIPPINES (ABC+) INSTRUCTIONAL LEADERSHI TRAINING (ILT) UPSCALING PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15783	UPSKINING ON REGIONAL AND DIVISION READING SUPERVISORS/COORDINATORS ON THE EARLY LANGUAGE LITERACY AND NUMERACY ( ELLN) WITH FOCUS ON THE SCIENCE OF READING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15784	EVALUATION OF READING PROGRAM: CONVERGENCE WITH REGIONAL AND DIVISION READING COORDINATORS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15785	DIVISION TRAINING WORKSHOP FOR THE READING RECOVERY BRIGADE (R2B)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15786	REVISION OF REGIONAL OFFICE (RO) QUALITY ASSURED SDO CONTEXTUALIZED AND DEVELOPED LEARNING RESOURCES ELLN SHS AND TVL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15787	ENHANCING THE CAPABILITY OF SCHOOL HEADS AND TEACHERS IN THE IMPLEMENTATION OF PROFESSIONAL PROGRAM VIA SCHOOL LEARNING ACTION CELL BATCH 2 - CLUSTER 3/ (DISTRICT 7)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15788	NATIONAL VALIDATION OF CURRICULUM DRAFTS OF GRADES 7-10 (KEY STAGE 3)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15789	TRAINING FOR NQESH PROCTORS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15790	2023 DIVISION SCREENING AND SELECTION OF LEARNING RESOURCE EVALUATORS (LREs), ILLUSTRATORS, AND LAY-OUT ARTIST	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15791	DIVISION TRAINING WORKSHOP ON HOLISTIC ASSESSMENT FOR KEY STAGE 1-4	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15792	ORIENTATION AND CAPACITY BUILDING ON LRMDS POLICIES AND GUIDELINES, ORGANIZATION AND MANAGEMENT OF LRCs CUM CRAFTING OF SCHOOL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15793	2022 DIVISION GAWAD ALA EH CUM EDUCATION WEEK CELEBRATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15794	EVALUATION OF READING RECOVERY PROGRAMAS: TRAINING AND CONVERGENCE WITH SCHOOL HEADS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15795	EVALUATION OF READING RECOVERY PROGRAMAS:M TRAINING AND CONVERGENCE WITH SCHOOL HEADS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15796	NATIONAL TRAINING OF TRAINERS ON SPORTS SKILLS FOR ATHLETICS AND SWIMMING (SOUTHERN LUZON &NCR CLUSTER)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15797	ENHANCING THE CAPABILITY OF SCHOOL HEADS AND TEACHERS IN THE IMPLEMENTATION OF PROFESSIONAL PROGRAM VIA SCHOOL LEARNING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15798	2022 REGIONAL VIRTUAL WORKSHOP ON ASSESSMENT - DRIVEN INTERVENTION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15799	TRAINING WORKSHOP ON WRITING QUANTITATIVE AND QUALITATIVE RESEARCH IN EDUCATION CUM UPDATES ON RESEARCH GUIDELINES AND POLICIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15800	INTEGRATIVE ASSESSMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15801	DIVISION TRAINING - WORKSHOP ON HOLISTIC ASSESSMENT KEY STAGES 1-4 (PHASE 1)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15802	DEVELOPMENT OF OPERATIONAL GFUIDELINES FOR ELLN THROUGH REACH, READ, AND RICE PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15803	PROJECT SALK-SEEK : INTERSERVICE NA PAGSASANAY NG MGA GURO SA PAGPAPAIGTING SA KULTURA NG PANANALIKSIK SA KAGAWARAN NG MGA PILIPINO	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15804	SUSTAINING CULTURE OF QUALITY RESEARCH: A SHARED RESPONSIBILITY"	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15805	DIVISION SCREENING / SELECTION OF LEARNING RESOURCE EVALUATORS (LREs) AND LEARNING RESOURCE ILLUSTRATORS (LRIs)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15806	CAPACITY BUILDING CUM WORKSHOP WITH SDO COUNTERPARTS ON THE ESTABLISHMENT OF PUBLIC AND PUBLIC AND PRIVATE SCHOOLS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15807	DIVISION CAPACITY BUILDING OF SCIENCE, MATHEMATICS AND ENGLISH TEACHERS ON THE IMPLEMENTATION OF THE NATIONAL LEARNING CAMP-BATCH 1	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15809	SEMINAR WORKSHOP ON CAPACITY BUILDING FOCUSING ON LEARNER-CENTERED APPROACH FOR EFFECTIVE DELIVERY OF INSTRUCTION IN ENSCIMA	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15829	ORIENTATION OF PUBLISHERS ON THE DEVELOPMENT OF GRADES 2, 5 AND 8 TEXTBOOKS AND TEACHER'A MANUALS ALIGHNED WITH MATATAG K TO 10 CURRICULUM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15834	GAWAD TEODORA ALONSO 2023 (5TH NATIONAL COMPETITION ON STORYBOOK WRITING)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15837	FINAL QUALITY ASSURANCE TRAINING/WORKSHOP OF CONTEXTUALIZED AND LOCALIZED LEARNING MATERIALS IN ALL LEARNING AREA - BATCH 1	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15840	REFINEMENT VALIDATION OF THE DEVELOPED ALS LEARNING RESOURCE EXEMPLARS OF LEARNING STRANDS 1, 2 AND 3 FOR BASIC LITERACY, ELEMENTARY AND SECONDARY LEVELS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15858	REGIONAL TRAINING OF TRAINERS ON SOLO HOTS FRAMEWORK	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15859	ORIENTATION OF THE KEY LEADERS ON THE IMPLEMENTATION OF NATIONAL LEARNING CAMP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15860	ORIENTATION ON RECRUITMENT, SELECTION AND APPOINTMENT GUIDELINES IN THE DEPARTMENT OF EDUCATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15861	SEMINAR ON THE ROLE OF PARENTS IN ADDRESSING CHALLENGES AMONG ADOLESCENTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15862	RESULTS-BASED PERFORMANCE MANAGEMENT SYSTEM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15863	ORIENTATION AND CAPACITY BUILDING ON LRMDS POLICIES AND GUIDELINES , ORGANIZATION AND MANAGEMENT OF LRCs CUM CRAFTING OF SCHOOL AND DIVISION LEARNING RESOURCE PLAN	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15867	TECHNICAL ASSISTANCE TO DIVISION PROPONENTS AND SCHOOL LEADERS ON FY BUDGET PREPERATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15871	ENHANCEMENT OF CONTINGENCY PLAN FOR DIFFERENT HAZARDS CUM COORDINATION MEETING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15872	ORIENTATION ON THE DIVISION-WIDE E-RAISE UP PROGRMAM JOB-EMBEDDED LEARNING (JEL) EVALUATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15873	8TH NAPSSPHIL PRINCIPAL'S CONGRESS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15877	ONLINE VALUES RESTORATION PROGRAM ON ORGANIC-VRO TRAINING THE TRAINERS EXCELLENCE WORKSHOP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15884	TEACHING GRAMMAR COMMUNICATIVELY IN THE PHILIPPINES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15885	REGIONAL ON THE IMPLEMENTATION OF LDM 2	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15886	REGIONAL ORIENTATION ON THE IMPLEMENTATION OF LDM 2	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15887	REGIONAL ORIENTATION ON THE IMPLEMENTATION OF LDM 1	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15888	DIVISION ROLL-OUT OF DEPED ORDER NO. 89, S. 2019 PROCEDURAL GUIDELINES ON CASH ADVANCE MANAGEMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15889	ORIENTATION WORKSHOP ON THE USE OF ADM MODULES FOR LEARNERS IN DISASTER AREAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15808	SCHOOL- BASED IN - SERVICE TRAINING FOR TEACHERS ( INSET) FOCUSING ON LEARNING RESOURCE STANDARDS, POLICIES AND GUIDELINES ON SCHOOL LR IMPLEMENTATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15810	SCHOOL- BASED IN SERVICE TRAINING FOR TEACHERS ( INSET)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15811	INTERVENTION AND LEARNING MATERIALS DEVELOPMENT TO IMPROVE PUPILS' ACADEMIC PERFORMANCE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15812	TRAINING/ WORKSHOP ON ENHANCING SCIENTIFIC SKILLS OF ROBO - TECH ENTHUSIASTS AND INTELLIGENT MACHINES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15813	2023 DIVISION CONFERENCE OF BASIC EDUCATION RESEARCHERS ( DCBER)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15814	DEVELOPMENT AND QUALITY ASSURANCE OF TEACHING AND LEARNING RESOURCES FOR THE PILOT IMPLEMENTATION OF MATATAG CURRICULUM ( QUARTER 1 OF GRADE 7 MATHEMATICS )	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15815	EVALUATION OF RESEARCH ABSTRACTS FOR 2022 VIRTUAL CONFERENCE OF BASIC EDUCATION RESEARCHERS ( VCBER)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15816	TRAINING/ WORKSHOP ON POLICY ANALYSIS, IMPLEMENTATION AND REVIEW	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15817	VIRTUAL COMMENCEMENT ACTIVITY FOR THE SIXTH CYCLE BASIC EDUCATION RESEARCH FUND ( BERF) GRANTEES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15818	CONVERGENCE OF RFTATS AND DFTATS FOCUSED ON THE ORGANIZATION AND MANAGEMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15819	RE- ORIENTATION ON SCHOOL- BASED MANAGEMENT ( SBM) FOR SCHOOL HEADS, SBM COORDINATORS AND SGC CHAIRPERSONS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15820	SESSION 1 & 2 OF THE IEEE XPLORE DIGITAL LIBRARY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15821	2021 VIRTUAL CONFERENCE OF BASIC EDUCATION RESEARCHERS ( VCBER)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15822	FACULTY DEVELOPMENT WEBINAR ON TEST CONSTRUCTION IN HIGHER EDUCATION : THE BATSTATEU CULTURE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15823	REGIONAL FIFTH CYCLE BASIC EDUCATION RESEARCH FUN ( BERF) COMMENCEMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15824	PROJECT NEUMANN: NAVIGATING EFFECTIVE USE OF MATERIALS AND APPROACHES TO NURTURE STUIDENT NEES: AN EXTENSION ACTIVITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15825	PAFTER VIRTUAL ANNUAL TEACHERS AND EDUCATORS' CONVENTION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15826	MATLAB EXPO 2021	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15827	2021 SEAMEO CONGRESS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15828	WRITING ACTION RESEARCH FOR TEACHERS ( SCHOOL LEARNING ACTION CELL ) IN GULOD SENIOR HIGH SCHOOL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15830	MICROSOFT VIRTUAL ADOPTION CARAVAN	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15831	WEBINAR ON TRANSITIONING TO THE NEW NORMAL IN SUPPORT TO LEARNING CONTINUITY PLAN ( LCP)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15832	MASSIVE OPEN DISTANCE ELEARNING COURSE: UNDERSTANDING THE CHILD BETTER	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15833	MASSIVE OPEN DISTANCE ELEARNING COURSE: UNDERSTANDING THE CHILD BETTER: TEACHING AND LEARNING WITH MODERN ICTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15835	INTRODUCTION TO CSS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15836	RECEIVING AND RESPONDING TO WORKPLACE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15838	2019 DIVISION CONTINUOUS IMPROVEMENT PROJECT ( CIP) SYMPOSIUM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15839	2019 CONFERENCE OF BASIC EDUCATION RESARCHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15841	FINALIZATION OF TEXTBOOK AND TEACHER'S MANUAL PROTOTYPES FOR GRADES 2, 5 AND 8	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15842	EVALUATION OF WORKSHOP ON THE DEPED DEVELOPED LEARNING RESOURCES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15843	DIVISION STORYBOOK WRITING WORKSHOP AND COMPETITION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15844	DQMS JOURNEY TOWARDS ONE DEPED, ONE QMS CERTIFICATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15845	DEVELOPMENT AND QUALITY ASSURANCE OF TEACHING AND LEARNING RESOURCES FOR THE PILOT IMPLEMENTATION OF THE MATATAG CURRICULUM QUARTER 1 TO GRADE 7 FILIPINO	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15846	ALIGNMENT AND REVIEW OF THE DEVELOPED ALS LEARNING STRANDS 1, 2 AND 3 FOR BASIC LITERACY, ELEMENTARY AND SECONDARY LEVELS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15847	QUALITY ASSURANCE WORKSHOP ON SDO ELLN, SHS SPECIALIZED TRACK, AND TVL LEARNING RESOURCES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15848	2023 DIVISION SCREENING/SELECTION OF LEARNING RESOURCES EVALUATORS (LREs), ILLUSTRATORS AND LAYOUT ARTIST	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15849	ORIENTATION WORKSHOP ON THE DEVELOPMENT AND QUALITY ASSURANCE OF SDO CONTEXTUALIZED LEARNING RESOURCES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15850	DEVELOPMENT OF TEXTBOOKS PROTOTYPES FOR GRADES 1, 4 AND 7	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15851	REGIONAL QA OF THE DEVELOPED ALS LEARNING RESOURCE EXEMPLARS FOR LEARNING STRANDS 1, 2, 3 FOR BASIC LITERACY PROGRAM, ELEMENTARY AND SECONDARY LEVELS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15852	UNIVERSITY OF BATANGAS GRADUATE SCHOOL RESEARCH WORKSHOP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15853	UNIVERSITY OF BATANGAS GRADUATE SCHOOL RESEARCH FORUM 2019	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15854	TRAINING ON SAFE SPACES ACT AND GENDER-RESPONSE POLICIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15855	ZERO HUNGER LABORATORY RESEARCH WORKSHOP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15856	ISO 19011: 2018 QUALITY MANAGEMENT SYSTEM: INTERNAL QUALITY AUDIT TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15857	RESEARCH ADVOCACY AND COMMUNITY EMPOWERMENT ( RACE) EXHIBITION IN ASSOCIATION WITH ASCENDENS ASIA	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15864	AUTOMOTIVE BATTERY SERVICING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15865	HELPING YOUTH DRUG FREE THROUGH LITERACY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15866	2020 NATIONAL DRUG EDUCATION PROGRAM WEBINAR SERIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15868	2020 NATIONAL DRUG EDUCATION PREVENTION WEBINAR SERIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15869	REGIONAL TRAINING OF TRAINERS FOR LEARNING RECOVERY PROGRAM IN LITERACY AND NUMERACY THROUGH SCHOOL BASED LEARNING ACTION CELL- BATCH 2	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15870	FINAL QUALITY ASSURANCE/ WORKSHOP OF CONTEXTUALIZED AND LOCALIZED MATERIALS IN ALL LEARNING AREAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15874	INSTITUTION OF OCCUPATIONAL SAFETY AND HEALTH: MANAGING SAFELY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15875	PPSS 4.1 DIFFERENTIATING LEARNING AND DEVELOPEMENT INTERVENTIONS IN THE NEW NORMAL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15876	DRILLING TECHNOLOGY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15878	STANDARD FIRST AIDE WITH PROFESSIONAL CPR AND AED INSTRUCTION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15879	REGIONAL ORIENTATION AND WORKSHOP ON ALIVE CURRICULUM AND ALIVE MELCS FOR MADRASAH EDUCATION PROGRAM ( MEP)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15880	BASIC RIGPASS SAFETY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15881	HYDROGENN SULFIDE SAFETY AND SCBA INSTRUCTION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15882	DIVISION TRAINING ON RESKILLING AND UPSKILLING OF SCHOOL LABORATORY TECHNICIANS / MANAGERS IN THE DEVELOPMENT OF LOCALIZED SAFETY MANAGEMENT SYSTEM MANUAL FOR TECHNICAL AND FUNCTIONALITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15883	EMPLOYEES RESKILLING ADVOCACY, INITIATIVES, SUPPORT FOR EXCELLENCE AND UPSKILLING PROGRAM ( E-RAISE UP)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15890	CAPACITY BUILDING WORKSHOP FOR SCHOOL HEADS ON THE DEVELPMENT O	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15891	CAPACITY BUILDING WORKSHOP FOR SCHOOL HEADS ON THE DEVELOPMENT OF OPCRF ALIGNED WIT PPSSH	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15892	DIVISION SYMPOSIUMON CONTINOUS IMPROVEMENT PROGRAM(CIP)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15893	VIRTUAL LIBRARY ORIENTATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15894	REGIONAL ORIENTATION ON HE IMPLEMENTATION OF HOMEROOM GUIDANDANCE PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15895	CANVA FOR EDUCATION 101	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15896	TRAINING ON THE UTILIZATION OF MFAT FOR LEARNERS WITH DISABILITIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15897	CONSULTATION WORKSHOPO ON THE REVISED ACTION PLANS ON QUALITY INDICATORS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15898	TRAINING OF TEACHERS ON THE UTILIZATION OF EQUIPMENT AND ASSISTIVE TECHNOLOGY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15899	LIFE COACHING ON THE VALUE OF HARDWORK AND DISCIPLINE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15902	TRAINING-WORKSHOP ON THE DEVELOPMENT OF PROGRAM DESIGN & LEARNING RESOURCE PACKAGES FOR CAPABILITY BUILDING OF TEACHERS, SCHOOL LEADERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15903	VIRTUAL TRAINING ON THE INTENSIVE IMPLEMENTATION OF WINS PROGRAM IN SDO BATANGAS CITY IN THIS PANDEMIC TIME	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15906	RESOURCE PACKAGES FOR THE CAPABILITY BUILDING OF TEACHERS,SCHOOL LEADERS AND NON-TEACHING PERSONNEL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15908	DIGITAL POETRY : A COLLABORATIVE PERFORMANCE PROJECT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15909	CREATING INTERACTIVE MATERIALS USING SCRATCH ANIMATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15910	HOUR OF CODE(PROGRAMMING FOR WOMEN)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15912	INTERACTIVE INSTRUCTIONAL MATERIALS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15913	SOLVING PEOPLE PUZZLE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15915	GOOGLE WORKSPACE FOR STUDENT FUNDAMENTALS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15916	EFFECTIVE UTILIZATION OF MULTIMEDIA MATERIALS; DEPED TV	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15918	A NEW NORMAL: THE CRITICAL ROLE OF ASSESSMENT IN ONLINE LEARNING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15920	EFFECTIVE DELIVERY OF SYNCHRONOUS/ASYNCHRONOUS TEACHING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15900	PROMOTING AND STRENGTHENING TB PREVENTION IN THE WORKPLACE PROGRAM IN BATANGAS PROVINCE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15901	ORIENTATION ON THE GUIDELINES ON THE IMPLEMENTATION OF SBFP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15904	TRAINING OF TRAINORS ON NUTRITIONAL ASSESSMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15905	TRAINING ON TRAINORS ON NUTRITIONAL ASSESSMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15907	ORIENTATION TRAINING ON THE DRUG TESTING PROGRAM CLUSTER II 4A AND B	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15911	PROGRAM IMPLEMENTATION REVIEW (PIR) OF EDUCATION SUPPORT SERVICES DIVISION (ESSDS)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15914	ORIENTATION OF THE POLICIES AND PROCEDURES OF THE NATIONAL TB CONTROL PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15917	ADVOCACY ORIENTATION ON RA9482 (ANTI RABIES ACT OF 2007) FOR DEPED MEDICAL PERSONNEL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15919	SCHOOL BASED IMMUNIZATION MEASLES RUBELLA TETANUS DIPTHERIA (MR-TD) ORIENTATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15921	CAPABILITY- BUILDING ON SCHOOL- BASED MANAGEMENT IN THE BETTER NORMAL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15922	NAVIGATING COMPUTER APPLICATIONS ON COMMUNICATION PLATFORMS AND ITS UTILIZATION FOR THE IMPROVEMENT OF SCHOOL OPERATIONS AND LEARNING MANAGEMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15923	SCHOOL- BASED WEBINAR ON WINS PROGRAM IMPLEMENTATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15924	LIKAS 2020- 2021 WEBINAR SERIES: LIBRARIES' EFFECTIVE RESPONSES AND PREPAREDNESS IN THIS TIME OF PANDEMIC	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15925	LEADING WINS: SCHOOL LEVEL WASH IN SCHOOLS MASSIVE OPEN ONLINE COURSE ( MOOC)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15926	RPMS- PPST NATIONAL ORIENTATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15927	ONLINE TRAINING FOR SPECIAL CURRICULAR PROGRAMS ( SCP'S) IN THE NEW NORMAL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15928	ORIENTATION ON THE PHILIPPINE PROFESSIONAL STANDARDS FOR SCHOOL HEADS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15929	DEVELOPING OUTSTANDING LEADERSHIP SKILLS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15930	TRAINING ON QUALITY INDICATORS FOR EDUCATION PROGRAM SERVING CHILDREN WITH SENSORIAL DISABILITIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15931	INTEGRATED CONSULTATIVE MEETING ON VECTOR BORNE AND INFECTIOUS DISEASES FOR DEPED SCHOOL DIVISION OFFICES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15932	NATIONAL WEBINAR ON KINDERGARTEN REMOTE TEACHING AND LEARNING : DEVELOPMENTALLY APPROPRIATE RESPONSES IN THE TIME OF COVID 19	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15933	INTEGRATED CONSULTATIVE MEETING AND PLANNING OF INTEGRATED HELMINTHIASIS CONTROL PROGRAM COORDINATORS OF CALABARZON	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15934	ORIENTATION GUIDELINES ON THE IMPLEMENTATION OF SCHOOL-BASED PROGRAMS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15935	TRAINING ON ONLINE TRAINERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15936	PROMOTING AND STRENGTHENING TB IN THE WORKPLACE IN BATANGAS PROVINCE: A CAPACITY BUILDING FOR DEPED DIVISION OF BATANGAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15937	INTEGRATED CONSULTATIVE MEETING ON DEWORMING AND NUTRITION IN PREPARATION FOR DEVOLUTION TRANSITION PLAN BATANGAS PROVINCE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15938	LAL SESSION 2: SCHOOL LEARNING CONTINUITY PLAN OPERATIONALIZATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15939	LEADERSHIP: PRACTICAL LEADERSHIP SKILLS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15940	MELC MANAGEMENT AND SAMPLE IDEA LESSON EXEMPLAR PRESENTATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15941	EMERGENCY LIFE SUPPORT: FIRST AID TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15942	REGIONAL ORIENTATION ON THE IMPLEMENTATION OF LDM 1 COURSE FOR DIVISION AND SCHOOL LEADERS UNDER BE- LCP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15943	POWER OF THE MIND IN HEALTH AND HEALING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15944	SUPER SCHOOLS SERIES: BEST PRACTICES OF MOREH ACADEMY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15945	CANVA: DESIGN LOGOS, SOCIAL MEDIA CONTENT AND MORE WITH CANVA	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15946	IELTS PREPERATION MASTERCLASS: A COMPLETE GUIDE TO THE IELTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15947	MICROSOFT EXCEL: EXCEL FROM BEGINNER TO ADVANCED	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15948	DIVISION WIDE TRAINING ON THE ENHANCEMENT OF SPED- INCLUSIVE PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15949	DEACO GENERAL WEBINAR SERIES : NEW NORMAL LCP AND NEW DEVELOPMENT FOR TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15950	EMPOWER STUDENT LEARNING WITH TEACHER CLARITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15951	SUPER SCHOOLS SERIES: BEST PRACTICES OF NAGA PAROCHIAL SCHOOL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15952	GUIDING YOUNG LEARNERS TO ONLINE DISTANCE LEARNING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15953	ENGAGAGING THE LEARNERS OF TODAY, THEIR WAY : MOTIVATION AND APPLICATIONS OF GAMEFUL LEARNING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15954	SUPER SCHOOLS SERIES : BEST PRACTICES OF SHEKINAH LEARNING SCHOOL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15955	EMPOWERING THE FAMILY TO MAKE THE SCHOOL COME TO LIFE IN EVERY HOME	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15956	SUPER SCHOOL SERIES: BEST PRACTICES OF SCUOLA DEL BAMBINI DI STA. TERESITA, INTERNATIONAL MONTESSORI,INC	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15957	SUPER SCHOOLS SERIES: BEST PRACTICES OF ST. MARU'S SCHOOL OF CAGAYAN DE ORO, INC.	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15958	DIGITAL TOOLS AND TECHNIQUES IN THE NEW NORMAL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15959	HARNESSING ADAPTIVE LEADERSHIP IN TIMES OF CRISIS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15960	ORGANIZATION DEVELOPMENT IN THE NEW NORMAL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15961	A JOURNEY TO GROWTH MINDSET FOR SUCCESS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15962	GLOBALISASYON AT ANG NEW NORMAL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15963	MENTAL HEALTH AWARENESS SEMINAR	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15964	PAGLIKHA NG MGA PINALATUNTUNANG KAGAMITANG PANTURO TUNGO SA SARILING PAGKATUTO NG MGA MAG-AARAL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15965	WORKSHOP ON THE DEVELOPMENT OF CONTEXTUALIZED TEACHING AND LEARNING RESOURCE PACKAGE FOR COMPREHENSIVE SEXUALITY EDUCATION FOR ALTERNATIVE LEARNING SYSTEM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15966	CONDUCTING ONLINE CLASS 101: WHAT TO KNOW AND HOW TO DO IT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15967	WRITESHOP ON THE DEVELOPMENT OF CONTEXTUALIZED TEACHING AND LEARNING RESOURCE PACKAGE FOR COMPREHENSIVE SEXUALITY EDUCATION FOR ALTERNATIVE LEARNING SYSTEM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15968	PARENTS AS TEACHERS , TEACHERS AS COACHES, AND SCHOOLS AS INNOVATION AS INNOVATION LABS: EDUCATION IN THE NEW NORMAL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15969	ENHANCING THE USE OF VIDEOS FOR ONLINE INSTRUCTION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15970	INSTRUCTIONAL TRANSITION PROCESS: MIGRATING F2F PRACTICE TO REMOTE LEARNING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15971	MAXIMIZING THE MELCS ( MOST ESSENTIAL LEARNING COMPETENCIES)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15973	MODULAR DISTANCE LEARNING: A KEY IN DEVELOPING LEARNERS' AUTONOMY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15974	RIZAL ON LOCKDOWN: SOURCES SA PAGTUTURO NG ARALING PANLIPUNAN, KASAYSAYAN	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15975	OFFLINE LEARNING OPPOTUNITIES: IMPLEMENTING MODULAR APPROACH IN THE CURRENT EDUCATIONS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15976	MERGING LEARNING COMPETENCIES AND PRACTICES TO FACILITATE THE SHIFT TO THE NEW NORMAL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15978	ADDRESSING THE CHALLENGES IN LEADING THE SCHOOL TO ONLINE TEACHING AND LEARNING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15979	ADDRESSING THE CHALLENGES IN DELIVERING REMOTE LEARNING FOR OFFLINE LEARNERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15981	CONTEXTUALIZED LEARNING DELIVERY MODALITIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15983	SHIFTING ON ONLINE LEARNING: THE EFFECTS ON STUDENT'S AND TEACHERS MENTAL HEALTH	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15985	HORIZONTAL INTEGRATION OF SUBJECTS AREA COMPETENCIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15986	ONCE UPON A TIME : A DISCUSSION ON CHILDREN'S LITERATURE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15987	ALIGNMENT OF DIFFERENT LEARNING TASKS TO MOST ESSENTIAL LEARNING COMPETENCY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15988	DEPED: MAKING LEARNING HAPPEN DURING COVID 19 EMERGENCY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15989	BACK TO NORMAL: POST- PANDEMIC REALIGNMENT OF LEARNERS' PREDISPOSITION TO LEARNING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15990	PRIORITIZING CURRICULAR CONCERNS: PUSHING THE BOUNDARIES OF THE NEW NORMAL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15991	TEACH WITH QUIPPER IN THE NEW NORMAL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15992	TEACHERS' RESPONSE AND ACTION TO CHALLENGE IN DISTANCE TEACHING AND LEARNING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15993	INTRODUCTION TO G SUITE FOR EDUCATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15994	TEACHER AND PARENT PARTNERSHIP: BUILDING THE FUTURE OF THE NEW NOW IN EDUCATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15995	INSIGHTS INTO THE NEW NORMAL OF LEARNING BY DOING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15996	THE HUMANIZING PEDAGOGIES: A TEACHING- LEARNING FRAMEWORK IN THE POST PANDEMIC TIME	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15997	EDUCATION IN THE NEW NORMAL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15999	APRIL 30, 2020: DEVELOPING SELF- PACED- LEARNING THROUGH DIGITAL CONTENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16001	DISTANCE LEARNING: ONLINE TEACHING TECHNIQUES AND APPROACHES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16002	TEACHING AND LEARNING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16004	FROM PHYSICAL TO VIRTUAL: THE SHIFT TO ONLINE TEACHING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16006	RAPID TRANSITIONING TO HYBRID EDUCATION IN THE" AGE OF COVID	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16008	ORIENTATION SEMINAR ON SYSTEMATIC TRAINING FOR EFFECTIVE PARENTING (STEP) UNDER THE NATIONAL DRUG EDUCATION PROGRAM (NDEP}	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16009	WEBINAR ON ICPRF DATA COLLECTION SYSTEM FOR SY 2019-2020 (ICPRF}E-TOOL)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16011	WEBINAR ON THE IPCRF DATA COLLECTION SYSTEM FOR SY 2019-2020 (IPCRF E-TOOL)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16012	TRANSITIONING TO THE NEW NORMAL IN SUPPORT TO LEARNING CONTINUITY PLAN	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16015	DIVISION ROLL-OUT OF DEPED ORDER NO.029, S. 2019	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16018	HOME-BASED LEARNING UNWIRED: NO GADGETS , NO INTERNET	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16020	EARLY LANGUAGE LITERACY AND NUMERACY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16023	SCHOOLS LAC SESSION ON INTEGRATING HOTS IN CLASSROOM INSTRUCTION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16026	SCHOOL-BASED CAPACITY BUILDING OF TEACHERS FOR THE NEW NORMAL IN EDUCATION: THE IPCRF DATA COLLECTION SYSTEM FOR SY 2019-2020 AND IDEA LESSON EXEMPLAR	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16028	2019 DIVISION DRRM CAMP (PSYCHOSOCIAL FIRST AID )	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16032	DIVISION TRAINING - WORKSHOP ON ENHANCEMENT OF PEDAGOGICAL SKILLS IN TEACHING READING IN THE MOTHER TOUNGE, BRIDGING PROCESS OF GRADE 2 AND CRITICAL CONTENT OF GRADE 7	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16034	DIVISION PERFORMANCE REVIEW ON PROGRAMS AND PROJECT IMPLEMENTATION, PROVISION OF TECHNICAL ASSISTANCE AND PLANNING FOR SY 2020	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16037	ORIENTATION ON OMNIBUS RULES ON APPOINTMENT AND OTHER HUMAN RESOURCES ACTIONS ORA OHRA CUM RCCP MANUAL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16038	DIVISION TRAINING WORKSHOP ON UPDATING LEARNERS AND SCHOOLS' PROFILE IN THE LEARNER INFORMATION SYSTEM FOR BOSY 2019 - 2020	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16039	2020 DIVISION LEARNING RESOURCE EXPO,	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16040	PUPILS AND TEACHERS' WELFARE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16041	DIVISION ORIENTATION ON IPCRF - RPMS DATA COLLECTION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16042	ORIENTATION SEMINAR ON STEP UNDER NDEP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16043	DIVISION KICK-OFF FOR OPLAN KALUSUGAN SA DEPED ONE HEALTH WEEK	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16044	SURVEY ON THE DRAFT OF PHILIPPINE PROFESSIONAL STANDARDS FOR SCHOOL HEADS AND SUPERVISORS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16045	TRAINING WORKSHOP ON GENDER AND DEVELOPMENT ( GAD ) RESEARCH, STATISTICS AND ANALYSIS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16046	ASSIMILATION AND ORIENTATION OF SBM AND UPHOLD E-SIP CUM SGC	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16047	RESEARCH ADVOCACY FOR COMMUNITY EMPOWERMEBT(RACE)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16048	YEAR-END IPED PROGRAM REVIEW AND PLANNING CUM COMMUNITY ENGAGEMENT ACTIVITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16049	2018 CONFERENCE OF BASIC EDUCATION RESEARCHERS SOUTH-EAST ASIA	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16050	2018 DIVISION CI, SCH.CLIQUE: A TOUR DE FORCE & PROJECT 555 SYMPOSIUM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16051	REGIONWIDE TRAINING ON EARLY LANGUAGE LITERACY AND NUMERACY:PROFESSIONAL DEVELOPMENT COMPONENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16052	TECHNICAL ASSISTANCE PROVISION ON SCHOOL-BASED MANAGEMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16053	WELLNESS RETTREAT WORKSHOP: THE POWER OF A TEACHERS HEART	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16054	2018 DIVISION CONFERENCE OF BASIC EDUCATION RESEARCHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16055	REGIONAL IMPLEMENTATION OF TRAINING WORKSHOP ON AERCA	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16056	MONITORING AND VALIDATION OF DIVISION RESEARCH MANAGEMENT PERFOMANCE MEASURE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16057	ORIENTATION OF TEACHERS AND SCHOOL HEADS ON PPST	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16060	SLAC ON EARLY LANGUAGE LITERACY AND NUMERACY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15972	WORKSHOP ON THE DEVELOPMENT OF POSITIVE LEARNING ACTION CELL (LAC) SESSION GUIDES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15977	WRITESHOP FOR THE DEVELOPMENT OF TRAINING SESSION GUIDE SKILL BUILDING ON ADDRESSING CHILD LABOR ISSUES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15980	DIVISION WORKSHOP ON THE DEVELOPMENT OF PROGRAM DESIGN AND LEARNING PACKAGE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15982	REFINEMENT OF SHS SUPPLEMENTARY LEARNING MATERIALS ON SELECTED LEARNING AREAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15984	DEVELOPMENT OF SHS SUPPLEMENTARY LEARNING MATERIALS ON SELECTED LEARNING AREA	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16010	THREE- DAY TRAINING WORKSHOP ON THE UPDATING OF THE BATANGAS CITY COMPREHENSIVE DEVELOPMENT PLAN (CDP) CY 2019- CY 2025 AND LOCAL DEVELOPMENT INVESTMENT PLAN	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16013	PAFTE IV- A CALABARZON VIRTUAL ANNUAL TEACHERS AND EDUCATORS ' CONVENTION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16014	ORIENTATION GUIDELINES ON THE COUNSELING AND REFERRAL SYSTEM OF LEARNERS FOR SY 2020- 2021	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16016	WORKSHOP ON THE DEVELOPMENT OF PIVOT CURRICULUM MAPS FOR ALL LEARNING AREAS IN ALL KEY STAGES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16017	ACCREDITATION TRAINING FOR LIONS QUEST SKILLS FOR ADOLESCENCE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16019	ONLINE NATIONAL TRAINING OF MASTER TRAINERS ON THE DELIVERY OF ALS LIFE SKILLS SELF- DIRECTED MODULES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16021	MAKING CLASSROOM WORK: INSTERNATIONAL TRAINING ON INNOVATIONS IN PEDAGOGY AND CLASSROOM LEADERSHIP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16022	NATIONAL ORIENTATION ON THE ADOPTION OF BLENDED DELIVERY MODEL FOR TPD; ROLL- OUT OF THE ELLN DIGITAL FOR K TO 3 TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16024	REVISION AND FINALIZATION OF THE ALS K TO 12 BASIC EDUCATION CURRICULUM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16025	NATIONAL TRAINING OF TRAINERS ONN ALTERNATIVE LEARNING SYSTEM K TO 12 BASIC EDUCATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16027	TRAINING OF TRAINERS ON LIFE SKILLS CURRICULUM FOR MASTER TRAINERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16029	TRAINING OF TRAINERS ON LIFE SKILLS CURRICULUM FOR DEPED ALS IMPLEMENTERS OF LUZON	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16030	DIVISION ROLL- OUT ONJ PPST AND RPMS MANUAL FOR TEACHERS AND SCHOOL FUNDS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16031	TRAINING FOR EDUCATION PROGRAM SPECIALIST FOR ALS ON FUNDAMENTALS OF ALS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16033	WRITESHOP IN THE DEVELOPMENT OF NEW POLICIES AND REVISION OF EXISTING ALS POLICIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16035	WRITESHOP ON THE DEVELOPMENT OF NEW POLICIES AND REVISION OF EXISTING ALS POLICIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16036	CAPABILITY BUILDING WORKSHOP ON QUALITATIVE RESEARCH WRITING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16058	101ST FOUNDING ANNIVERSARY, 68TH NURSES WEEK CELEBRATION, PNA AND ANNUAL NATIONAL CONVENTION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16059	TRAUMA- INFORMED INTERVENTION FOR SERVICE PROVIDERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16061	TEENAGE PREGNANCY FORUM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16062	ADEPT TRAINING CUM HEEADSS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16064	ADOLESCENT HEALTH EDUCATION AND PRACTICAL TRAINING ( ADEPT)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16066	ADOLESCENT REPRODUCTIVE HEALTH	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16067	ADOLESCENT REPRODUCTIVE HEALTH: SOCIAL BEHAVIORAL CHANGE ( SBC) MATERIALS DEVELOPMENT ( ADEPT) CONTEXTUALIZATION) PART 2 VIDEO SHOOTING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16068	TOGETHER THROUGH TRANSITIONS: PROMOTING MENTAL HEALTH AND SELF EXPRESSIONS IN THE NEW NORMAL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16069	TRAINER'S TRAINING ON ADOLESCENT HEALTH AND DEVELOPMENT PROGRAM FOR AHD FOCAL AND ADVISERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16070	STRENGTHENING " TB IN THE WORKPLACE" IMPLEMENTATION IN DEPED BATANGAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16071	WORKPLACE MENTAL HEALTH: A MANAGER'S LEARN TO TYPE CORRECTLY ( UDEMY)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16072	WORKPLACE MENTAL HEALTH: A MANAGER'S ULTIMATE GUIDE ( UDEMY)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16073	TOUCH TYPING MASTERY- LEARN TO TYPE CORRECTLY ( UDEMY)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16074	MANAGE CHANGE THROUGH COLLABORATION AND TEAM WORK ( UDEMY)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16075	LEARN MEDITATION WITH CERTIFICATION TO GUIDE OTHERS ( UDEMY)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16076	MICROSOFT ACCESS 2016 MASTER CLASS: BEGINNER TO ADVANCED ( UDEMY)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16077	MENTAL HEALTH FIRST AID SKILLS ( UDEMY)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16078	RECHARGE: RENEWING PASSION AND COMPASSPION AMONG HEALTH PROFESSIONALS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16079	BEYOND THE RN : MAXIMIZING YOUR GROWTH POTENTIAL IN THE FIELD OF NURSING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16081	PSYCHOSOCIAL SUPPORT FOR STUDENTS AT RISK OF SUBSTANCE USE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16082	ADOLESCENT REPRODUCTIVE HEALTH FOUNDATIONAL COURSE CALABARZON CASCADE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16087	SCHOOL BASED IMMUNIZATION MEASLES RUBELLA TETANUS DIPTHERIA ( MR- TD) ORIENTATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16088	ORIENTATION FOR THE HARMONIZED SCHEDULE AND COMBINED MASS DRUG ADMINISTRATION IN CALABARZON	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16090	ADOLESCENT HEALTH AND DEVELOPMENT PROGRAM ( AHDP) TRI CITY MODEL IN BATANGAS PROVINCE LAUNCHING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16092	ORIENTATION AND UPDATES ON THE PREVENTION OF BLINDNESS PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16094	ORIENTATION WORKSHOP FOR SCHOOL- BASED DENGUE IMMUNIZATION FOR BATANGAS PROVINCE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16095	ADOLESCENT HEALTH AND DEVELOPMENT PROGRAM ( AHDP) COORDINATION MEETING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16097	ORIENTATION AND PLANNING WORKSHOP FOR SCHOOL BASED IMMUNIZATION PROVINCE OF BATANGAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16099	ORIENTATION AND PLANNING WORKSHOP FOR SCHOOL BASED IMMUNIZATION IN CALABARZON	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16101	ORIENTATION ON DEPARTMENT OF HEALTH TO 2015- 0030: GUIDELINES ON ( NSDD)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16102	NATIONAL PREVALENCE SURVEY OF SOIL- TRANSMITTED HELMINTHIASIS AND OTHER PARASITIC INFECTIONS AMONG PUBLIC SCHOOL CHILDREN IN THE PHILIPPINES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16123	PROGRAM IMPLEMENTATION REVIEW AND TECHNICAL ASSISTANCE PROVISION ON THE DEVELOPMENT OF DIVISION STRATEGIC HRD PLANS FOR 2024	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16126	NATIONAL DRRM EVALUATION AND PLANNING CONFERENCE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16127	RO POLICY REVIEW AND ASSESSMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16129	RO TRAINING ON DEPED CHILD PROTECTION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16130	TRAINING WORKSHOP ON INTENSIFYING SBFP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
15998	DEPED 12 DAYS OF CHRISTAMS WITH THE TEAEM: MAKULAY AND PASKO NG PAMILYANG PILIPINO	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16000	2023 DIVISION LEADERSHIP TRAINING: "EMPOWERING STUDENT-LEADERS OF TODAY TOWARDS LEADERS OF TOMORROW" CUM OATH TAKING CEREMONY OF SCHOOLS CO-CURRICULAR ORGANIZATIONS OFFICERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16003	2023 WOMEN'S MONTH CELEBRATION WITH THE THEME WE FOR GENDER EQUALITY & INCLUSIVE SOCIETY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16005	ORIENTATION WORKSHOP ON LRCP M&E TOOL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16007	DIVISION CASCADING ON FOUNDATIONAL COURSE ADOLESCENT HEALTH	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16063	DIVISION SEMINAR-WORKSHOPON SBFP, MENTAL HEALTH,ARH&DPE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16065	TRAINING-WORKSHOP ON SCHOOL-BASED LAC SESSION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16080	2023 DIVISION CONFERENCE OF BASIC EDUCATION RESEARCHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16083	DIVISION ROLL OUT OF HIGHER ORDER THINKING SKILLS PROFESSIONAL LEARNING PACKAGES (HOTS - PLPS) FOR ENGLISH, SCIENCE AND MATHEMATICS TEACHERS (BATCH 1)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16084	2023 DIVISION SCHOOL DAYS MANAGEMENT (SBM) CONVERGENCE UNDER PROJECT SHARE IT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16085	PHYSICAL WELLNESS ACTIVITIES FOR EMPLOYEES' WELFARE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16086	2023 DIVISION WOMEN'S MONTH CELEBRATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16089	DIVISION PROPONENTS AND SCHOOL LEADERS ON FY 2024 BUDGET PREPARATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16091	ORIENTATION ON THE GUIDELINES ON THE IMP-LEMENTATION OF SCHOOL-BASED FEEDING PROGRAM (SBFP) FOR SY 2023-2024	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16093	2022 ANTI - VAWC CAMPAIGN MATERIALS DEVELOPMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16096	SCHOOL LEADERS TRAINING ON PAGHUBOG: PILLAR OF YOUTH CUM LAUNCHING OF PROJECT DISCOVER	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16098	DIVISION CASCADING ON FOUNDATIONAL COURSE ADOLESCENT HEALTH WEBINAR	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16100	ENHANCING OF CONTIGENCY PLAN FOR DIFFERENT HAZARDS CUM COORDINATION MEETING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16103	TRAINING WORKSHOP ON QUALITY SYSTEM FOCUS ON SEVEN S (7S)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16104	BASIC LIFE SUPPORT TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16105	SCHOOL GOVERNANCE COUNCIL FUNCTIONALITY ASSESSMENT TOOL CAPACITY BUILDING WORKSHOP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16106	NATIONAL ORIENTAION ON THE STANDARDIZED ADMINISTRATION OF VARIOUS ASSESSMENT PROGRAMS FOR FISCAL YEAR 2023	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16107	DIVISION EDUCATION DEVELOPMENT PLANNING ADJUSTMENT CUM POST PLANNING WORKSHOP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16108	1ST DEPED NATIONAL CONFERENCE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16109	1st DEPED NATIONAL CONFERENCE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16110	SCHOOL GOVERNANCE COUNCIL FUNCTIONALITY ASSESSMENT TOOL CAPACITY BUILDING WORKSHOP BY BUREAU OF HUMAN RESOURCE AND ORGANIZATIONAL DEVELOPMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16111	DEVELOPING MONITORING AND EVALUATION (M&E) TOOL FORB LEARNING RECOVERY CONTINUITY PLAN (LRCP)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16112	CAPACITY BUILDING CUM WORKSHOP OF RO AND SDO M&E FOCAL PERSONS ON QATAME & LEARNING & DEVELOPMENT ACTIVITIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16113	REORIENTATION CUM TECHNICAL ASSISTANCE PROVISION FOR RECOGNITION EVALUATION COMMITTEE MEMBERS AND PROFESSIONAL DEVELOPMENT PROGRAMS PROPONENTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16114	2023 PRIVATE EDUCATION NATIONAL CONFERENCE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16115	BREAD MAKING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16116	CAPACITY BUILDING ON CRAFTING M&E TOOL FOR THE IMPLEMENTED GAD PPAS AND OTHER STRUCTURES, FACILITIES AND POLICIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16117	CULMINATING ACTIVITY ON INDIGENOUS PEOPLES' MONTH CELEBRATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16118	TRAINING WORKSHOP ON WRITING QUANTITATIVE AND QUALITATIVE RESEARCH IN EDUCATION CUM UPDATES ON RESEARCH GUIDLINES AND POLICIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16119	CAPACITY BUILDING CUM WORKSHOP FOR SDO M&E FOCAL PERSONS ON DEVELOPING MONITORING TOOLS FOR DIFFERENT PROGRAMS, PROJECTS AND ACTIVITIES (PPAS)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16120	FINALIZATION OF M&E TOOL FOR THE IMPLEMENTED GAD PPAS AND OTHER STRUCTURES, FACILITIES AND POLICIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16121	ROVER SCOUT ORIENTATION VIGIL AND INVESTITURE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16122	ORIENTATION AND CAPACITY BUILDING ON LRMBS POLICIES AND GUIDELINES, ORGANIZATION AND MANAGEMENT OF LRCS SCHOOL CUM CRAFTING OF SCHOOL AND DIVISION LEARNING RESOURCE PLAN SY 2023 - 2024	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16124	2022 PRIVATE SCHOOLS SUMMIT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16125	CONSULTATIVE WORKSHOP ON A DEVELOPMENT OF TECHNICAL ASSISTANCE RESOURCE PACKAGE FOR LEARNING CONTINUITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16128	CAPACITY BUILDING CUM WORKSHOP ON THE PROCESSING OF THE APPLICATION OF SPECIAL ORDER	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16132	FOSTERING EFFECTIVE AND EFFICIENT UTILIZATION OF SCHOOL RESOURCES THORUGH THE IMPLEMENTATION OF FINANCIAL MANAGEMENT OPERATION MANUEL FOR IMPLEMENTING UNITS AND SELECTED SECONDARY NON-IMPLEMENTING UNITS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16136	NATIONAL CONFERENCE ON STANDARDIZED TEST ADMINISTRATION OF BEA TESTING PROGRAMS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16138	DIVISION PERFORMANCE REVIEW ON PROGRAMS AND PROJECTS IMPLEMENTATION, PROIVISION OF TA	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16139	2018 DIVISION PERFORMANCE REVIEW & FINALIZATION OF DIVISION & SCHOOLS AIP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16140	TRAINING WORKSHOP ON QATAME & VARIED TOOLS IN MONITORING & EVALUATION OF PROGRAMS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16131	NATIONAL CONSULTATIVE WORKSHOP ON THE IMPLEMENTATION OF PROGRAMS, PROJECTS, AND ACTIVITES ( PPAS)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16133	BEMEF ORIENTATION WORKSHOP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16134	FINAL PLANNING CONVERGENCE FOR THE COMPLETION OF THE REGIONAL AND DIVISION EDUCATION DEVELOPMENT PLAN 2023-2028 CUM REDP REFINEMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16135	CALABARZON CONVERGENCE FOR THE LEARNING RECOVERY AND CONTINUITY PLAN ( LRCP)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16137	2ND INTERNATIONAL WEBINAR MARATHON ON EDUCATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16141	CAPABILITY BUILDING PROGRAM FOR DIVISION GAD LEARNING FACILITATORS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16142	RECEIVING AND RESPONDING TO WORKPLACE COMMUNICATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16143	DEAL WITH INTOXICATED GUESTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16144	ADOLESCENT REPRODUCTIVE HEALTH PROGRAM IMPLEMENTATION REVIEW CUM GENDER - RESPONSIVE PLANNING WORKSHOP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16145	CAPACITY BUILDING OF NEAP- R AND SDO HRDS SEPS IN MANAGING AND IMPLEMENTING NEAP PROGRAMS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16146	WORKSHOP OIN INTENSIFYING SCHOOL-BASED FEEDING PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16147	WORKSHOP ON INTENSIFYING SCHOOL-BASED FEEDING PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16148	NEAP'S FY 2022 YEAR-END PERFORMANCE ASSESSMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16149	CONSOLIDATION ACTIVITY ON THE REVIEW OF D.O. 1S. 2020 IMPLEMENTATION AND PROVISION OF TECHNICAL ASSESSMENT TO NEAP- R/ HRDD	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16150	INTEGRATED MEETING ON INFECTIOUS DISEASE WITH EMPHASIS TO WILD (WATER AND FOOD-BORNE, INFLUENZA, LEPTOSPIROSIS AND DENGUE) DISEASES IN ALIGNMENT WITH UHC DESIGNATING SCHOOL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16151	COMPETENCY ENHANCEMENT TRAINING FOR REGIONAL OFFICE EMPLOYEES LEVEL 2 ( CENTRE 2) BATCH 1	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16152	LEARNERS' CONVERGENCEB PH 2023	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16153	DIVISION CAPACITY BUILDING OF SCIENCE, MATHEMATICS, AND ENGLISH ( SME) TEACHERS ON THE IMPLEMENTATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16154	NEW HORIZONS IN HYPERTENSION AND LIPID MANAGEMENT (ONLINE)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16155	DIVISION CAPACITY BUILDING OF SCIENCE, MATHEMATICS, AND ENGLISH ( SME) TEACHERS ON THE IMPLEMENTATION OF NATIONAL LEARNING CAMP ( NLC)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16156	REVIEW OF D.O.1 S. 2020 IMPLEMENTATION AND PROVISION OF TECHNICAL ASSISTANCE TO NEAP- R/HRDD- CLUSTER I	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16157	CAPACITY BUILDING WORKSHOP FOR THE TRAINING AND ADVOCACY TEAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16158	ORIENTATION GUIDANCE ANDN COUNSELING PROGRAM AND PSYCHOLOGICAL FIRST AID APPROACH IN COUNSELING FOR SCHOOL GUIDANCE COORDINATOR	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16159	DEVELOPING MONITORING AND EVALUATION ( M&E) TOOLS FOR LEARNING RECOVERY AND CONTINUITY PLAN ( LCRP) PHASE 2	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16160	DEVELOPING MONITORING AND EVALUATION ( M&E) TOOLS FOR LEARNING RECOVERY AND CONTINUITY PLAN ( LCRP) PHASE 1	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16161	ORIENTATION ON GUIDANCE AND COUNSELING PROGRAM AND PSYCHOLOGICAL FIRST AID APPROACH IN COUNSELING FOR SCHOOL GUIDANCE COORDINATOR	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16162	CAPACITY BUILDING CUM WORKSHOP OF RO AND SDO M&E FOCAL PERSONS ON QATAME OF LEARNING AND DEVELOPMENT ( L&D) ACTIVITIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16163	REGIONAL CONTINGENCY PLAN REVIERW AND ENHANCEMENT WORKSHOP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16164	VETTING AND FINALIZATION OF LEARNING RESOURCE PACKAGE FOR MASTERS TEACHERS PROFESSIONAL DEVELOPMENT PROGRAM 2.0 ( MTPDP 2.0 ) ( VETTING STAGE)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16165	KNOWLEDGE SHARING SESSION ON NOTABLE PROFESSIONAL DEVELOPMENT PRACTICE FOR TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16166	KNOWLEDGE SHARING SESSION ( KSS) IN NOTABLE PROFESSIONAL DEVELOPMENT PRACTICES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16167	ONLINE TRAINING ON REPUBLIC ACT NO. 9184 AND ITS 2016 REVISEDI IMPLEMENTING RULES AND REGULATIONS RECOGNIZED BY THE GOVERNMENT PROCUREMENT POLICY BOARD ( GPPB)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16168	REORIENTATION ON THE ENHANCED RECOGNITION EVALUATION TOOL IN THE CENTRAL OFFICE AND REGIONAL OFFICES FOR NEAP- R AND RECOGNITION EVALUATION COMMITTEE ( REC)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16169	TRAINING- WORKSHOP FOR REGIONAL OFFICE PERSONNEL ON CONTINUOUS IMPROVEMENT PROGRAM ( CIP) UNDER THE NEW NORMAL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16170	NEAP ONBOARDING PROGRAM FOR NEWLY HIRED PERSONNEL - BATCH 3	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16171	TECHNICAL ASSISTANCE TO DIVISION PROPONENTS AND SCHOOL LEADERS ON FY 2024 BUDGET PREPARATION, BULWAGANG ALA EH, SCHOOLS DIVISION OFFICE OF BATANGAS CITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16172	NATIONAL TRAINING OF TRAINERS ON YOUTH DISASTER READINESS DEVELOPMENT PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16173	FOR A CARDIOLOGIC XIX: CARDIOLOGY MODE RIDICULOUSLY SIMPLE (ONLINE)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16174	EXPANDING HORIZONS ON CHILD HEALTH	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16175	WORKSHOP ON THE PREPARATION OF FY 2024 FORWARD ESTIMATES ON BASIC EDUCATION CRUCIAL RESOURCES, BALAI ISABE , TALISAY, BATANGAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16176	TRAINING-WORKSHOP ON FACILITATION SKILLS AND MANAGEMENT OF LEARNING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16177	PEDIATRIC G.I.T.: ADDRESSING CONCERNS IN PEDIATRIC GASTROENTOLOGY, HEPATOLOGY AND NUTRITION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16178	KUNG ALAM MO LUNGS: UNDERSTANDING AND OVERCOMING PNEUMONIA	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16179	6TH REGIONAL CAREER ADVOCACY CONGRESS- PH 4.0: PREPARING FOR A DIGITAL-READY WORKFORCE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16180	2024 NATIONAL PLANNING CONFERENCE: SCHOOL BUILDING PROGRAM,SUBIC BAY EXHIBITION AND COVENTION CENTER,SUBIC,ZAMBALES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16181	6TH NATIONAL CONFERENCE OF DEPED ENGINEERS AND ARCHITECTS MEZZO HOTEL ,CEBU CITY ,CEBU	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16182	FERDERATION OF SUPREME STUDENT GOVERNMENT LEADERSHIP FORUM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16183	FEDERATION OF SUPREME STUDENT GOVERNMENT LEADERSHIP FORUM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16184	CONSTRUCTION OCCUPATIONAL SAFETY AND HEALTH TRAINING FOR SAFETY OFFICER 2(SO2),EL CIETO HOTEL,STA, ROSA CITY, LAGUNA INFRASTUCTURE AUDIT TRAINING WORKSHOP BATANGAS CITY CONVENTION CENTER, BATANGAS CITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16185	CONSTRUCTION OCCUPATIONAL SAFETY AND HEALTH TRAINING FOR SAFETY OFFICER 2(SO2),EL CIETO HOTEL,STA, ROSA CITY, LAGUNA	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16186	ENHANCEMENT OF CONTINGENCY PLAN FOR DIFFERENT HAZARDS CUM COORDINATION MEETING, BULWAGANG ALA EH,SCHOOLS DIVISION OFFICE OF BATANGAS CITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16195	REGIONAL ROLL- OUT OF THE SCHOOL GOVERNANCE COUNCIL: FUNCTIONALTY ASSESSMENT TOOL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16187	PROVISION OF TECHNICAL ASSITANCE OF PLANNING AND MANAGING RESOURCES, BULWAGANG ALA EH SCHOOLS DIVISION OFFICE OF BATANGAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16188	DIVISION WORKSHOP ON THE DEVELOPMENT OF PROGRAM FOR CAPABILITY BUILDING OF TEACHERS AND SCHOOL LEADERS ,SOLANA EVENT CENTER , ALANGILAN, BATANGAS CITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16189	ORIENTATION TRAINING COURSE FOR SAFETY OFFICER I (SO1) WITH 2-HOUR TRAIN THE TRAINERS TRAINING,VIA ZOOM ,(ASPREC-MANALO OCCUPATIONAL SAFETY & HEALTH DEPARTMENT OF LABOR AND EMPLOYMENT)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16190	ORIENTATION /TRAINING COURSE FOR SAFETY OFFICER I (SO1) WITH 2-HOUR TRAIN THE TRAINERS TRAINING,VIA ZOOM ,(ASPREC-MANALO OCCUPATIONAL SAFETY & HEALTH DEPARTMENT OF LABOR AND EMPLOYMENT)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16191	VIRTUAL TRAINING ON INTENSIVE IMPLEMENTATION OF WINS PROGRAM ON SDO BATANGAS CITY IN THIS PANDEMIC TIME ,VIA ZOOM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16192	REGIONAL VIRTUAL TECHNICAL ASSISTANCE DELIVERY ON SCHOOL TITLING AND PHYSICAL FACILITY MANAGEMENT IN THE NEW NOTRMAL, VIA YOUTUBE LIVE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16193	REGIONAL VIRTUAL TECHNICAL ASSISTANCE DELIVERY ON SCHOOL TITLING AND PHYSICAL FACILITY MANAGEMENT IN THE NEW NORMAL, VIA YOUTUBE LIVE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16194	VIRTUAL ORIENTATION OF THE CONDUCT OF ONE-TIME CLEANSING OF PPE ACCOUNT BALANCES TO SCHOOLS DIVISION OFFICES,VIA GOOGLE MEET,(DEPARTMENT OF EDUCATION CALABARZON,VIA GOOGLE MEET)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16196	ACCELERATING WINS DIVISION-LEVEL WASH-IN SCHOOLS (WINS) MASSIVE OPEN ONLINE COURSE (MOOC), DEPARTMENT OF EDUCATION- CENTRAL OFFICE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16199	ORIENTATION ON CONTRACT TRACINGREFERRAL AND MANAGEMENT OF COVID-19 CASES IN DEPED CALABARZON, VIA GOOGLE MEET	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16203	CALABARZON REGIONAL AND SDO WEBSHOP CONTINGENCY PLANNING AMIDST COVID-19,VIA GOOGLE MEET	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16205	WEBINAR ON MENTAL HEALTH AND PSYCHOSOCIAL SUPPORT IN THE NEW NORMAL, VIA ZOOM AND FACEBOOK LIVE STREAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16197	TRAINING WORKSHOP ON SYNCHRONIZED GAD PLANNING AND BUDGETING CUM PREPARATION OF GAD ACCOMPLISHMENT REPORT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16198	TRAINING WORKSHOP ON ESTABLISHING FUNCTIONAL CHILD PROTECTION COMMITTEES IN SCHOOLS DIVISION OFFICE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16200	WORKSHOP ON THE DEVELOPMENT OF LIBRARY OF VALIDATED KNOWLEDGE ON EMERGING BEST PRACTICES IN RESOLVING BLICS& TECHNICAL ASSISTANCE RESOURCE PACKAGE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16201	FINAL VETTING ON THE DEVELOPED IMPLEMENTING GUIDELINES ON THE REVIEWED GENDER RELATED POLICIES IN DEPED	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16202	FINALIZATION OF THE IMPLEMENTING GUIDELINES ON THE REVIEWED GENDER-RELATED POLICIES IN DEPED	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16204	DEEPINING SESSIONS FOR RO AND SDO GAD LEARNING FACILITATORS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16206	REGIONAL TRAINING OF TRAINERS FOR MASTER TEACHERS PROFESSIONAL DEVELOPMENT PROGRAM 2.0 BATCH 2	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16207	CALABARZON REGIONAL AND SDO ONLINE ORIENTATION ON D.O. 14, S. 2020 AND ORGANIZING THE CALABARZON COVID -19TASK FORCE VIA GOOGLE MEET	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16208	ORIENTATION CUM TECHNICAL ASSISTANCE PROVISION FOR NEW RECOGNITION EVALUATION COMMITTEE ( REC) MEMBERS AND PROFESSIONAL DEVELOPMENT PROGRAM PROPONENTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16209	TRAINING ON ONLINE ENCODING AND VALIDATION OF THE NATIONAL PUBLIC SCHOOL BUILDING INVENTORY(NSBI) FOR SY 2019-2020, KUMINTANG ELEMENTARY SCHOOL , BATANGAS CITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16210	NATIONAL TRAINING OF THE REGIONAL CORE OF TRAINERS FORV ALS ACT AND ITS IRR- SPEAKERS BUREAU	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16211	DIVISION TRAINING ON AUDIT MANAGEMENT SYSTEM, BATANGAS CITY INTEGRATED HIGH SCHOOL ,BATANGAS CITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16212	NATIONAL IMPLEMENTATION PLANNING WORKSHOP ON THE COMPREHENSIVE SCHOOL FACILITIES DEVELOPMENT PLAN , DEPED ECOTECH CENTER, LAHUG , CEBU CITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16213	VAW FREE SDO AND GENDER- FAIR LANGUAGE ADVOCACY IN THE WORKPLACE, BULWAGANG ALA EH, SCHOOLS DIVISION OFFICE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16214	DIVISION EDUCATION DEVELOPMENT PLAN ADJUSTMENT CUM POST PLANNING ACTIVITIES, NAWAWALANG PARAISO RESORT AND HOTEL CAMAYSA,TAYABAS CITY, QUEZON	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16216	DIVISION QUALITY MANAGEMENT (DQMS) JOURNEY TOWARDS ONE DEPED, ONE QMS CERTIFICATION, M.I. SEVILLA'S RESORT ,LUCENA CITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16217	SAFE SPACES, ACT AND GENDER-RESPONSIVE POLICIES, BATIS ARAMIN RESORT AND HOTEL , LUCBAN QUEZON	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16219	RESULT-BASED PERFORMANCE MANAGEMENT SYSTEM, INDIVIDUAL PERFORMANCE COMMITMENT AND REVIEW FORMS (IPCRF) AND OFFICE PERFORMANCE COMMITMENT AND REVIEW FORM (OPCRF) RECALIBRATION, LAWAS SEASIDE RESORT, LOBO BATANGAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16221	2023 DIVISION WOMEN'S MONTH CELEBRATION WELLNESS DANCE CONTEST, BULWAGANG ALA EH SCHOOLS DIVISION OFFICE OF BATANGAS CITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16222	TECHNICAL ASSISTANCE TO DIVISION PROPONENTS AND SCHOOL LEADERS ON FY 2024 BUDGET PREPARATION, BULWAGANG ALA EH , SDO BATANGAS CITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16226	CAPACITY BUILDING SEMINAR ON GOVERNMENT PROCUREMENT FOR DIVISION OFFICE PERSONNEL,BULWAGANG ALA EH, SCHOOLS DIVISION OFFICE OF BATANGAS CITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16229	2023 NATIONAL PLANNING CONFERENCE : SCHOOL BUILDING PROGRAM, SUBIC BAY EXHIBITION AND CONVENTION CENTER ,SUBIC ZAMBALES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16234	RESULTS-BASED PERFORMANCE MANAGEMENT SYSTEM: IPCRFS AND OPCRFS RECALIBRATION,LAWAS SEASIDE RESORT, LOBO BATANGAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16239	TRAINING WORKSHOP ON ESTABLISHING FUNCTIONAL CHILD PROTECTION COMMITTEES IN SCHOOLS DIVISION OFFICES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16240	DEPARTMENT OF EDUCATION SCHOOLS DIVISION BATANGAS CITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16241	ORIENTATION ON THE DEVELOPMENT OF FOUR LEGACIES FOR CHILDREN	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16242	DEPED YOUTH FORMATORS CONVERGENCE 2023	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16244	E-LEARNING FOR LOCAL COUNCILS FOR THE PROTECTION OF CHILDREN ( LCPCS) 2023	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16246	DIVISION SEED EXCHANGE PROGRAM CUM ENVIRONMENTAL EDUCATION SEMINAR	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16247	CONVERGENCE IN INVIGORATING CHILD RIGHTS IN EDUCATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16249	JOINT WORKSHOP ON PLANNING AND BUDGETING OF THE CITY COUNCIL FOR THE PROTECTION OF CHILDREN ( CCPC) & GAD FOCAL POINT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16252	INTEGRATED SCHOOL NUTRITION MODEL( ISNM) ONLINE CONFERENCE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16254	PHILIPPINE YOUTH CONVERGENCE 2022' YOUTH BELONG EMBRACING DIVERSITY, ACHIEVING QUALITY, AND INCLUSIVE EDUCATION FOR ALL''	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16255	COMPETENCY ENHANCEMENT COURSES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16256	STUDENT TESTING & EVALUATION ( STE) SEMINAR- WORKSHOP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16257	ADOLESCENT REPRODUCTIVE HEALTH FOUNDATION COURSE CALABARZON CASCADE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16260	NATIONAL BARKADA KONTRA DROGA ( BKD) CONVENTION 2022	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16261	NATIONAL ORIENTATION FOR THE NEW CHILD PROTECTION FOCAL PERSONS IN THE REGIONAL AND SCHOOLS DIVISION OFFICES OF THE DEPARTMENT OF EDUCATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16263	MID- YEAR HUMAN RESOURCE MANAGEMENT AND ADMINISTRATIVE OFFICERS ASSEMBLY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16266	FIRST QUARTER CONFERENCE FOR ADMINISTRATIVE OFFICERS II/V AND PERSONNEL ACTIONS ON GUIDELINES ON THE IMPLEMENTATION OF RECLASS, ERF AND OTHER PERSONNEL ACTIONS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16268	VIRTUAL TRAINING FOR THE NEWLY HIRED OR APPOINTED ADAS II & III, ADMIN OFFICER II ( HRMO I) ON WORK ORIENTATION, JOB ROTATION INTERFACE, AND GMIS UPDATING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16270	3RD PGCA- BATANGAS CHAPTER PROFESSIONAL ASSEMBLY W/ THE THEME ' GETTING EVERYONE TOWARDS A COMPREHENSIVE APPROACH TO SUICIDE PREVENTION IN SCHOOL AND WORKPLACE'	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16271	TRAINING- WORKSHOP ON FINANCIAL MANAGEMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16272	REFRESHER COURSE ON RISK- BASED ASSSESSMENT AND OPPORTUNITIES MANAGEMENT RELATIVE TO ISO 9001: 2015 QMS STANDARDS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16273	DIVISION GST AND REVIEW ON GAD POLICIES AND MANDATE FOR SDO EMPLOYEES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16274	NATIONAL CLIMATE CONFERENCE AND DRRM 2023 NATIONAL DRRM YEAR-END EVALUATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16275	RESEARCH AGENDA WORKSHOP - DRRM CCAM AND CAPACITY BUILDING ON THE USE OF DRRM INFORMATION SYSTEM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16276	TSUNAMI CONTINGENCY PLANNING WORKSHOP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16277	WORKSHOP ON THE DEVELOPMENT OF SCHOOL SAFETY PLAN	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16278	DIVISION QMS JOURNEY TOWARD ONE QMS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16215	CAPACITY BUILDING ON THE PROVISIONS OF RA 1650	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16218	WORKSHOP ON THE PREPARATION OF FY 2024 FORWARD ESTIMATES ON BASIC EDUCATION CRUCIAL RESOURCES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16220	NATIONAL PLANNING CONFERENCE ON THE SCHOOL BUILDING PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16223	TRAINING ON INCLUSIVE EDUCATION AS A WHOLE SYSTEM APPROACH	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16224	2022 NATIONAL PLANNING CONFERENCE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16225	DATA MANAGEMENT INFORMATION REQUIREMENTS FOR SY 2022-2023	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16227	DESIGNING AND ALIGNING INSTRUCTIONAL MATERIALS FOR LEARNERS' INCREASED LEVEL OF PERFORMANCE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16228	SEMINAR WORKSHOP ON SYNCHRONIZED GAD PLANNING AND BUDGETING CUM PREPARATION OF GAD ACCOMPLISHMENT REPORT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16230	INITIATING RESEARCH PRACTICE UTILIZING PROJECT CARE- CONVENING AND ACTIVATING RESEARCHERS AND EDUCATORS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16231	2023 - 2028 DIVISION EDUCATION DEVELOPMENT PLAN WORKSHOP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16232	EMPOWERING THE FD4S RESEARCHULTURE THROUGH PROJECT 4D (DRIVE, DISCOVER, DESIGN AND DELIVER)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16233	CAPACITY BUILDING ON KEY PERFORMANCE INDICATORS WORKSHOP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16235	SHARING THE BASIC EDUCATION PLAN IN CALABARZON (PHASE 3)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16236	REGIONAL TRAINING OF TRAINERS ON PROGRAM INFORMATION SYSTEM (PMIS)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16237	FOCUS ON WHAT MATTERS TO YOU: BE CYBERSAFE IN CYBERSPACE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16238	FOUNDATION OF COMPUTER EMERGENCY RESPONSE TEAM OPERATIONS (CERT)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16243	NATIONAL DRUG EDUCATION PROGRAM IMPLEMENTATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16245	ONLINE TRAINING ON TEACHERS' COMPETENCE IMPROVEMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16248	DISASTER RISK REDUCTION MANAGEMENT (DRRM) REVIEW AND UPDATES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16250	DEEPENING THE 4F'S (FAITH, FAMILY, FRIENDSHIP AND FINANCIAL)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16251	2020 DIVISION CONFERENCE OF BASIC EDUCATION RESEARCHERS (DCBER)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16253	SCHOOL-BASED WEBINAR/TRAINING ON "MULTIMODAL-LEARNING ASSESSMENT"	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16258	REGIONAL CAPACITY BUILDING ON THE DEVELOPMENT AND UTILIZATION OF IDEA EXEMPLARS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16259	DATA INNOVATION: KEY TO A BETTER NATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16262	2019 CALABARZON ENGLISH LANGUAGE CONFERENCE (CELCON): A TRAINING WORKSHOP ON PEDAGOGY, CRITICAL CONTENT, ISSUES AND PRACTICES IN SECOND LANGUAGE TEACHING AND LEARNING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16264	OVERCOMING EMOTIONAL TENSION AND STRAIN OF THEN 21ST CENTURY TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16265	2019 DIVISION ROBOTICS COMPETITION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16267	PAGKAKAUNAWAAN, PAGKAKAISA AT PAGMAMAHALAN (3PS) SANDATA SA PANGKALAHATANG KAUNLARAN	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16269	4TH CYCLE BASIC EDUCATION RESEARCH FUND (BERF) PROPOSAL PRESENTATION- BATCH 2	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16288	MENTAL AWARENESS SEMINAR: '"PAHALAGAHAN ANG KASALUSUGAN NG KAISIPAN, TUNGO SA TAMANG PAGTUTURO NG KABATAAN"	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16289	2023 DIVISION LEADERSHIP TRAINING "EMPOWERING STUDENT-LEADERS OF TODAY TOWARDS LEADERS OF TOMORROW"	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16290	TECHNICAL ASSITANCE TO DIVISION PROPONENT AND SCHOOL LEADERS ON PY 2023 BUDGET PREPARATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16291	NATIONAL PARENT- TEACHER ASSOCIATIONS (PTAS) FORUM FOR CITY FEDERATED PTA OFFICERS AND CITY SCHOOLS DIVISION PTA COORDINATORS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16292	2023 NATIONAL EDUCATION SUMMIT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16293	CAPACITY DEVELOPMENT/ STRESS DEBRIEFING ACTIVITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16294	PTA FORUM ON THE OMNIBUG GUIDELINE ON THE REGULATION OF OPERATIONS OF PTA	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16279	ORIENTATION ON PUBLIC SERVICE CONTINUITY PLAN CUM ENHANCEMENT OF CONTINGENCY PLAN AMIDST COVID-19	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16280	INFRASTRACTURE AUDIT TRAINING WORKSHOP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16281	NATIONAL DRRM MID YEAR EVALUATION AND PLANNING WORKSHOP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16282	ENHANCEMENT OF MULTI-HAZARD CONTINGENCY PLAN AND SCHOOL SAFETY PLAN	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16283	BASIC SWIMMING ABD WATER SURVIVAL COURSE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16284	BASIC SWIMMING AND WATER SURVIVAL COURSE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16285	CAPABILITY DEVELOPMENT TRAINING ON DISASTER RESPONSE AND AVACUATION AND CAMP MANAGEMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16286	2023 NATIONAL RISK REDUCTION AND MANAGEMENT PLANNING CONFERENCE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16287	KNOW MINE, KNOW LIFE: ELEVATING THE MISSION OF RESPONSIBLE MINING THOUGH ZOOM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16295	SBFP PROGRAM IMPLEMENTATION REVIEW AND PLANNING WORKSHOP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16296	WORKSHOP ON THE DEVELOPMENT OF SCHOOL CANTEEN AND SBFP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16297	WORKSHOP ON DISASTER RISK REDUCTION AND MANAGEMENT (DRRM) AND FORMULATION OF LOCAL NUTRITION ACTION PLAN (LNAP)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16298	TRAINING ON FOOD SAFETY COMPLIANCE OFFICER (FSCO)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16299	WORKSHOP ON THE FINALIZATION OF THE SCHOOL-BASED FEEDING PROGRAM (SBFP) FOOD SAFETY PROTOCOLS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16300	TRAINING ON BASIC FOOD SAFETY (BFS) AND HAZARD ANALYSIS ANAD CRITICAL CONTROL POINT (HACCP)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16301	REGIONAL FOOD EXCHANGE AND FOOD EXHIBITION SEMINAR	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16302	SBFP PROGRAM SUPPLIERS'/PARTNERS' FORUM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16303	TRAINING ON PRIMARY EYE CARE FOR DEPED NURSES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16304	HARMONIZATION OF EDUCATION SUPPORT SERVICES PROGRAMS AND PROJECTS IMPLEMENTATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16305	1ST JOINT VIRTUAL CONVENTION FOR HEALTH PROFESSIONALS IN CALABARZON "RECHARGE: RENEWING PASSION AND COMPASSION AMONG HEALTH PROFESSIONALS"	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16306	SCHOOL BASED FEEDING PROGRAM NATIONAL WORK CONFERENCE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16307	LAUNCHING OF THE ARALIN SA MADISKARTENG PANANALAPI OF RCBC DISKARTECH PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16308	VIRTUAL WORKSHOP ON SBFP INITIAL MILK SUPPLY MAPPING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16309	PSYCHOSOCIAL THERAPEUTIC ACTIVITIES AND TEAM- BUILDING FOR THE ASSOCIATION OF BARANGAY DRRM OFFICERS TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16310	ENGLISH FOR MEDIA LITERACY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16311	TESOL METHODOLOGY (K-12/ HE)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16312	DIVISION ROLL OUT ON PHILIPPINE PROFESSIONAL STANDARD FOR TEACHERS (PPST) AND RESULT-BASED PERFORMANCE MANAGEMENT SYSTEM (RPMS) MANUAL FOR TEACHERS AND SCHOOL HEADS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16313	DIVISION CAPACITY BUILDING FOR EDUCATORS ON INCLUSIVE EDUCATION CUM AWARENESS ON FILIPINO LANGUANGE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 TECHNICAL
16314	DESIGNING OF PROFESSIONAL DEVELOPMENT PROGRAMS FOR TEACHERS AND SCHOOL LEADERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 TECHNICAL
16315	DIVISION CAPACITY BUILDING FOR EDUCATORS ON INCLUSIVE EDUCATION CUM AWARENESS ON FILIPINO SIGN LANGUAGE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 TECHNICAL
16316	DIVISION CAPACITY BUILDING FOR GRADE 4 TO 6 TEACHERS ON THE IMPLEMENTATION OF END OF SCHOOL YEAR REMEDIAL ACTIVITIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	Participant
16317	HEALTH AND WELLNESS CUM AND GAD SENSITIVITY CAPABILITY BUILDING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	Participant
16318	CLASSROOM MANAGEMENT-CREATING AN INCLUSIVE CLASSROOM ENVIRONMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 TECHNICAL
16319	MASTER CLASS FOR GRADE 1 TEACHERS ACROSS LEARNING AREAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 TECHNICAL
16320	DISTRICT DOSCONFERENCE OF BASIC EDUCATION RESEARCHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 TECHNICAL
16321	FOSTERING RESILIENCE STRENGTHENING MENTAL HEALTH PROGRAMS FOR DEPED STUDENTS AND PERSONNEL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 TECHNICAL
16322	DIVISION TEACHERS' CONGRESS: BASIC AND ACTION RESEARCH PROJECTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16323	2024 DIVISION TRAINING FOR SPECIAL EDUCATION TEACHERS AND THE ADAPTATIONS OF PROGRAMS AND SERVICES FOR LEARNERS WITH DISABILITIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 TECHNICAL
16324	RE-ORIENTATION ON SCHOOL-BASED MANAGEMENT (SBM) FOR SCHOOL HEADS, SCHOOL SBM COORDINATORS AND SGC CHAIRPERSONS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16325	DIVISION TRAINING OF SCHOOL TRAINERS ON MATATAG CURICULUM IMPLEMENTATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 TECHNICAL
16326	DIVISION ROLL-OUT OF INSTRUCTIONAL LEADERSHIP TRAINING STRENGTHENING LEARNING CONDITIONS FOR EARLY LITERACY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 TECHNICAL
16327	2024 DISTRICT TEACHERS CONGRESS CUM TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 TECHNICAL
16328	LEARNING AND DEVELOPMENT IN COLLABORATIVE EXPERTISE SESSIONS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 TECHNICAL
16329	TECHNICAL ASSISTANCE PROVISION IN ESTABLISHING AND SUSTAINING KAPARTNER	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 TECHNICAL
16330	CAPACITY BUILDING FOR SCHOOL LEADERS CUM MATATAG CURRICULUM COLLOQUIUM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	MANAGERIAL
16331	DIVISION CAPABILITY BUILDING FOR SPECIAL EDUCATION AND RECEIVING TEACHERS ON FILIPINO SIGN LANGUAGE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	MANAGERIAL
16332	DIVISION CAPACITY BUILDING FOR EDUCATION ON INCLUSIVE EDUCATION CUM AWARENESS ON FILIPINO SIGN LANGUAGE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	MANAGERIAL
16333	ORIENTATION OF COMPREHENSIVE SEXUALITY EDUCATION (CSE) - ADOLESCENT REPRODUCTIVE HEALTH (ARH) PROGRAM CONVERGENCE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	MANAGERIAL
16334	BATANGAS CULTURE AND ARTS COUNCIL-MUSIC SECTOR CHORAL TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 TECHNICAL
16335	2022 DIVISION TRAINING WORKSHOP FOR THE READING RECOVERY BRIGADE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	Participant
16336	VIDEO EDITING APPLICATIONS 101	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	Participant
16337	PHOTO EDITING AND DIGITAL BANNER DESIGN USING GIMP FOR INSTRUCTIONAL VIDEO DEVELOPMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16338	MASTER CLASSES FOR GRADE 4 TEACHERS ACROSS ALL LEARNING AREAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16339	MASTER CLASSES FOR GRADE 7 TEACHERS ACROSS ALL LEARNING AREAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16340	RECONCEPTUALIZING TEACHER IDEOLOGY IN MULTILINGUAL ENGLISH LANGUAGE CLASSROOMS: AN ACELT SEED PROJECT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16341	DIVISION ROLL OUT OF HIGHER ORDER THINKING SKILLS PROFESSIONAL LEARNING PACKAGES (HOTS - PLPS) FOR ENGLISH, SCIENCE AND MATHEMATICS TEACHERS (BATCH 2)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16342	CAPACITY BUILDING FOR TEACHERS AND SCHOOL HEADS FOCUSED ON NAVIGATING COMPUTER APPLICATION/COMMUNICATION PLATFORMS AND ITS UTILIZATION FOR THE IMPROVEMENT OF SCHOOL OPERATIONS AND LEARNING MANAGEMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16343	DISTRICT IV GENDER AND DEVELOPMENT (GAD) ACTIVITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16344	STRENGTHENING GAD POLICIES AND MANDATES TOWARDS EFFICIENT MATATAG CURRICULUM IMPLEMENTATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	MANAGERIAL
16345	SCHOOL AND DIVISION LEARNINGI RESOURCE (LR) PLANNING WORKSHOP FOR SY 2024-2025	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16346	DISTRICT ORIENTATION TRAINING ON THE IMPLEMENTATION OF ALTERNATIVE DELIVERY MODE (ADM) PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16347	SCHOOL-BASED TRAINING OF TEACHERS ON MATATAG CURRICULUM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16348	SCHOOL-BASED IN-SERVICE TRAINING FOR TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16349	DIISION TRAINING WORKSHOP ON TEACHING THE CRITICAL COMPETENCIES IN ALL LEARNING AREAS OF KEY STAGE 1-3	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16350	DIVISION TRAINING WORKSHOP ON TEACHING THE CRITICAL COMPETENCIES IN ALL LEARNING AREAS OF KEY STAGE 1-3	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16351	MID-YEAR SCHOOL-BASED INSERVICE TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16352	TEACH ON: KEEPING THE PASSION ALIVE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16353	DISTRICT IV GENDER AND DEVELOPMENT (GAD) ACTIVITY - EQUAL VOICES: A CELEBRATION OF WOMEN AND GENDER EQUITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16354	DIVISION DRUG EDUCATION SYMPOSIUM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16355	BASIC TRAINING COURSE FOR OUTFIT ADVISORS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16356	CAPACITY BUILDING ON THE FORMULATION OF SCHOOL CHILD PROTECTION POLICY AND OPERATIONAL GUIDELINES CUM CONFERENCE OF THE LEARNERS' RIGHT AND PROTECTION SCHOOL FOCAL PERSONS ANTI-BULLYING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 TECHNICAL
16357	SCHOOL-BASED TRAINING OF TEACHERS (SBTT) ON MATATAG CURRICULUM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16358	2022 VIRTUAL CONTINUOUS IMPROVEMENT PROJECT SYMPOSIUM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16359	DIVISION ROLLOUT OF DEPARTMENT OF EDUCATION COMPUTERIZATION PROGRAM (DCP) ADOPTION CAPABILITY BUILDING FOR TEACHERS OF RECEPIENT SCHOOLS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16360	WRITESHOP ON THE DEVELOPMENT AND/OR ENHANCEMENT OF EXISTING SCHOOL CONTINGENCY PLAN	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16361	SCHOOL-BASED TRAINING OF TEACHERS IN MATATAG CURRICULUM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16362	PROJECT BAGWIS: PAGSASANAY SA PAGBUO NG GAWAING PANG-INTERBENSYON SA FILIPINO MATATAG KURIKULUM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL 
16363	2024 IN-SERVICE TRAINING (INSET) MASTER CLASSES FOR GRADE 7 TEACHERS ACROSS ALL LEARNING AREAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16364	ORIENTATION ON COMPREHENSIVE SEXUALITY EDUCATIION (CSE) FOR GRADE 7 TEACHERS ACROSS ALL LEARNING AREAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16365	SLAC SESSION: VALUES BASED PEDAGOGY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16366	SLAC SESSOPM: TEACHING AND LEARNING SUPPORT AND INTERVENTIONS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16367	SLAC SESSION: TEACHING AND LEARNING SUPPORT AND INTERVENTIONS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16368	GOOGLEARN: UPSKILLING THE 21ST CENTURY EDUCATORS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16369	CHILD PROTECTION E-LEARNING COURSE FOR EDUCATORS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16370	MASTERCLASS ON DESIGNING MATATAG-READY SCIENCE AND MATCH CLASSES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16371	TURNITIN FEEDBACK STUDIO WITH ORIGINALITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16372	TRAINING WORKSHOP ON THE ANALYSIS OF NAT RESULTS CUM ACTIONS/BASIC REASEARCH WRITING ASSESSMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16373	BOY SCOUT OF THE PHILIPPINES - NATIONAL COURT OF HONOR - BRONZE SERVICE AWARDEE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16374	ADVANCEMENT TRAINING FOR EAGLE SCOUT RANK	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16375	DIVISION CAPACITY BUILDING FOR GRADE 4 TO 6 TEACHERS ON THE IMPLEMENTATION OF END OF SCHOOL YEAR (EOSY) BREAK REMEDIATION ACTIVITIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16376	9TH U4U (YOU FOR YOU) TEEN TRAIL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16377	DIVISION WORKSHOP ON QUALITY ASSURANCE CONTEXTUALIZED LEARNING RESOURCES/MATERIALS IN ALL LEARNING AREAS AND INCLUSIVE EDUCATION FOR THE MATATAG CURRICULUM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16378	2024 DIVISION WORKSHOP ON QUALITY ASSURANCE OF CONTEXTUALIZED LEARNING RESOURCES/MATERIALS IN ALL LEARNING AREAS AND INCLUSIVE EDUCATION FOR THE MATATAG CURRICULUM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16379	RULERS: RETOOLING, UPSKILLING LECTURERS FOR EFFECTIVE AND RESPONSIVE TEACHING SERVICE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16380	ASSOCIATION OF UNIVERSITY OF ASIA PACIFIC (RECAP 2022)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16381	2022 REGIONAL VIRTUAL WORKSHOP ON ASSESSMENT - DRIVEN INTERVENTION FOR ENGLISH AND FILIPINO	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16382	2021 NATIONAL DRUG EDUCATION PROGRAM WEBINAR SERIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16383	2021 DIVISION CONFERENCE OF BASIC EDUCATION RESEARCHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16384	2024 TEACHERS CONGRESS CUM TEACHERS' DAY CELEBRATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16385	PROFESSIONAL LEARNING NETWORK PLAN (PLN) YEAR II	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16386	DIVISION ROLL-OUT OF HOTS PROFESSIONAL LEARNING PACKAGES FOR ENSCIEMA	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16387	SEMINAR WORKSHOP ON CAPABILITY BUILDING FOCUSING ON LEARNING-CENTERED APPROACH FOR EFFECTIVE DELIVERY OF INSTRUCTION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16388	ENHANCING THE CAPABILITY OF SCHOOL HEADS AND TEACHERS IN THE IMPLEMENTATION OF PROFESSIONAL PROGRAM VIA SCHOOL LEARNING ACTION CELL BATCH 2-CLUSTER1	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16389	MASS TRAINING FOR ALS TEACHERS ON THE IMPLEMENTATION OF ALS ACT AND ITS IMPLEMENTING RULES AND REGULATIONS (IRR) BATCH 2	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16390	MINDFULNESS AND SOCIAL-EMOTIONAL LEARNING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16391	INCLUSIVE EDUCATION AND SPECIAL NEEDS SUPPORT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16392	ASSESSMENT AND DATA DRIVEN INSTRUCTIONS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16393	TEACHING TO THINK-INTEGRATING HIGHER ORDER THINKING SKILLS OR HOTS IN CLASSROOM INSTRUCTION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16394	DEPED MATATAG CURRICULUM TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16395	MATATAG MASTER CLASSES FOR GRADE I TEACHERS ACROSS ALL LEARNING AREAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	32
16399	DIVISION CAPACITY BUILDING FOR SPECIAL EDUCATION AND RECEIVING TEACHERS ON FILIPINO SIGN LANGUAGE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16396	INTERNATIONAL TRAINING - HIGH IMPACT TEACHING IN DIGITAL ERA: AN INTERNATIONAL ONLINE TRAINING PROGRAM "SAFEGUARDING EDUCATION: EDUCATION CONTINUITY PLANNING AND THE WHOLE-SCHOOL APPROACH INNOVATION IN EDUCATION"	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16397	ENHANCING CAPABILITY OF SCHOOL HEADS AND TEACHERS IN THE IMPLEMENTATION OF PROFESSIONAL PROGRAM VIA SCHOOL LEARNING ACTION CELL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16398	PROCESS OBSERVER-SCHOOL'S CI PROJECT-ENTRY TO THE 2022 SEARCH FOR THE BEST CI PROJECTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16400	MASTER CLASSES FOR GRADE 1 TEACHERS ACROSS ALL LEARNING AREAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16401	EMBRACING THE CULTURE OF RESEARCH: A DISTRICT VI IN-SERVICE TRAINING ENHANCING TEACHERS SKILLS IN WRITING ACTION RESEARCH THROUGH MICROSOFT 365	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16402	DIVISION FOCUS GROUP DISCUSSION OF TEACHERS ON THE REVISED CURRICULUM FOR KINDERGARTEN TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16403	2024 DISTRICT DOSCONFERENCE OF BASIC EDUCATION RESEARCHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16404	2024 IN SERVICE TRAINING FOR TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16405	FIVE DAY SCHOOL IN SERVICE TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16406	DISTRICT II TRAINING ON EARLY LANGUAGE LITERACY AND NUMERACY PROGRAM FOR K TO 3 TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16407	2023 MIDYEAR IN-SERBICE TRAINING (INSET)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16408	ORIENTATION ON SCHOOL-BASED MANAGEMENT (SBM) FOR SCHOOL HEADS, SBM, COORDINATORS AND SGC CHAIRPERSONS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16409	VIRTUAL IN-SERVICE TRAINING FOR TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16410	THE IMPLEMENTATION OF CYCLE OF PREVENTION INTERVENTION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16411	GOING THE DISTANCE : ONLINE DELIVERY OF PREVENTIVE DRUG EDUCATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16412	2024 TRAINING/WORKSHOP ONN THE DEVELOPMENT OF CONTEXTUALIZED LEARNING RESOURCES/MATERIALS IN ALL LEARNING AREAS & INCLUSICE EDUCATION FOR THE MATATAG CURRICULUM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16413	ORIENTATION ON ENHANCEMENT OF MULTI-HAZARD CONTINGENCY PLANS AND SCHOOL SAFETY PLANS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16414	DIVISION CAPABILITY AND BUILDING FOR SPECIAL EDUCATION AND RECEIVING TEACHERS ON	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16415	ENHANCING THE CAPABILITY OF SCHOOL HEADS AND TEACHERS IN THE IMPLEMENTATION OF PROFESSIONAL PROGRAM VIA SCHOOL LEARNING ACTION CELL BATCH 2-CLUSTER1 (DISTRICT 2)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16416	SCHOOL DIVISION OF BATANGAS CITY - DISTRICT II - IN-SERVICE EDUCATION AND TRAINING (INSET)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16417	MOVING FROM THRIVING TO SURVIVING: LIVING WITH AUTISM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16418	CHILD PROTECTION E-LEARNING COURSE FOR EDUCATORS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16419	INCREASING PARTICIPATION OF AUTISTIC/NEURODIVERSE LEARNERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16420	2021 DIVISION CONFERENCE OF BASIC EDUCATION RESEARCHERS (DCBER) WITH THE THEME "COPING, EMBRACING AND TRANSITINONING EDUCATION ON A POST COVID GENERATION"	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16421	2021 DIVISION CONFERENCE OF BASIG EDUCATION RESEARCHERS (DCBER) WITH THE THEME "COPING, EMBRACING AND TRANSFORMING EDUCATION IN A POST COVID GRENERATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16422	IN-SERVICE TRAINING FOR TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16423	TRAINING ON THE IMPLEMENTATION OF SCHOOL-BASED FEEDING PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16424	MID-YEAR IN-SERVICE TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16425	VIRTUAL CONFERENCE OF BASIC EDUCATION RESEARCHERS (VCBER)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16426	DIVISION CAPACITY BUILDING WORKSHOP ON EVALUATION OF BASIC AND ACTION RESEARCH, ETHICS AND PUBLICATION, CONTINUOUS IMPROVEMENT PROJECTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16427	DIVISON CAPACITY BUILDING FOR GRADES 4-6 ENSCIMA TEACHERS ON THE IMPLEMENTATION OF EOSY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16428	DIVISION CAPACITY BUILDING FOR GRADE 4 TO 6 TEACHERS ON THE IMPLEMENTATION OF END OF SCHOOL YEAR (EOSY)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16429	MASTER CLASSES FOR GRADE 1, 4 AND 7 TEACHERS ACROSS ALL LEARNING AREAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16430	REGIONAL TRAINING OF RECEIVING TEACHERS ON SNED CONTENT AND PEDAGOGY (BATCH 3)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16431	ETHNOMATHEMATICS AND CULTURALLY RELEVANT MATHEMATICS IN EDUCATION IN THE PHILIPPINES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16432	DISTRICT II TRAINING ON EARLY LANGUAGE LITERACY AND NUMERACY (ELLN) PROGRAM FOR KINDERGARTEN TO GRADE 3 TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16433	ANTI-DRUG ADVOCACY CAMPAIGN	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16434	SUSTAINING TEACHING STRATEGIES IN A POST PANDEMIC BLENDED LEARNING ENVIRONMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16435	NATIONAL TRAINING ON EDUCATIONAL TECHNOLOGY TOOLS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16436	EDUCATIONAL RESOURCES FOR REMOTE TEACHING AND LEARNING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16437	INSTRUCTIONAL DESIGN IN REMOTE TEACHING ANG LEARNING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16438	TECHNOLOGIES IN REMOTE TEACHING AND LEARNING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16439	PLANNING AND DESIGNING AND DEVELOPING COURSE MATERIALS FOR FLEXIBLE LEARNING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16440	DISTRICT SCHOOL IN-SERVICE TRAINING 2024	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 TECHNICAL
16441	BUCAL ELEMENTARY SCHOOL ORGANIZATIONAL STRENGTHENING ON GENDER MAINSTREAMING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16442	WRITESHOP ON ENHANCEMENT AND UPDATING OF CONTINGENCY PLAN	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16443	ORIENTATION ON THE GUIDELINES ON THE IMPLEMENTATION OF SCHOOL-BASED FEEDING PROGRAM (SBFP) FOR SY 2023-2024	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16444	MATATAG MASTER CLASSES FOR GRADE 7 TEACHERS ACROSS ALL LEARNING AREAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16445	IKA-7 KONGRESO NG CALABARZON PASATAF	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16446	ENGAGING SCHOOL LEADERS & TEACHERS IN NAVIGATION ACROSS LEARNING AREAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16447	ENGAGING SCHOOL LEADERS & TEACHERS IN NAVIGATION APPLICATION / COMMUNICATION PLATFORMS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16448	ORIENTATIION ON THE ENHANCEMENT OF MULTI-HAZARD CONTINGENCY AND SAFETY PLANS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16449	2023 DISTRICT SCHOOL BASED MANAGEMENT CONVERGENCE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16450	MASTER CLASSES FOR KINDERGARTEN GRADES 1-4 AND 7 TEACHERS ACROSS ALL LEARNING AREAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16451	DISTRICT MID-YEAR IN SERVICE TRAINING ON RESEARCH ORIENTATION, PRESENTATION AND EVALUATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16452	ORIENTATION ON THE GUIDELINES ON THE IMPLEMENTATION OF SCHOOL-BASED FEEDING PROGRAM FOR SY 2023-2024	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16453	DISTRICT INSET ON SCHOOL DATA MANAGEMENT SYSTEM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16454	2021 DIVISION VIRTUAL LEADERSHIP TRAINING FOR STUDENT LEADERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16455	DIVISION PROGRAM IMPLEMENTATION REVIEW OF THE SCHOOL LEARNING ACTION CELL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16456	DISTRICT III MID-YEAR IN-SERVICE TRAINING ON RESEARCH ORIENTATION, PRESENTATION AND EVALUATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16457	MASTER CLASSES FOR KINDERGARTEN, GRADE 1, GRADE 4, AND GRADE 7 (K147) TEACHERS ACROSS ALL LEARNING AREAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16458	DISTRICT III IN-SERVICE TRAINING ON EARLY LANGUAGE LITERACY AND NUMERACY (ELLN)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16459	DISTRICT IN-SERVICE TRAINING ON SCHOOL DATA MANAGEMENT SYSTEM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16460	2023 DIVISION CLINIQUING FOR REGIONAL SCHOOLS PRESS CONFERENCE QUALIFIERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16461	DISTRICT IN-SERVICE TRAINING : "ONWARDS TO RECOVERY AND SUSTAINABLE EDUCATION"	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16462	MID-YEAR SCHOOL-BASED INSET FOR TEACHERS AND PERFORMANCE REVIEW AND EVALUATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16463	DIVISION SPORTS TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16464	SSCHOOL INSERVICE TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16465	SCHOOL INSERVICE TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16466	DISTRICT VIII SERVICE TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16469	2022 DISTRICT III WEBINAR/WORKSHOP ON LEARNING ASSESSMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16470	SCHOOL BASED TRAINING OF TEACHERS ON MATATAG CURRICULUM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16471	SCHOOL IN-SERVICE TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16472	DISTRICT IN SERVICE TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16473	MASTER CLASSES FOR GRADE 6 TEACHERS ACROSS ALL LEARNING AREAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16474	MASSIVE OPEN ONLINE COURSE (MOOC) BECOMING A BETTER TEACHER EVERYDAY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16475	ENHANCING THE CULTURE OF RESEARCH: A DISTRICT VI IN-SERVICE TRAINING ENHANCING TEACHERS' SKILLS ON WRITING ACTION RESEARCH THROUGH MICROSOFT 365	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16476	ENHANCING THE CAPABILITY OF SCHOOL HEADS AND TEACHERS IN THE IMPLEMENTATION OF PROFESSIONAL PROGRAM VIA SCHOOL LEARNING ACTION CELL BATCH 2- CLUSTER 3 (DISTRICT 6)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16477	TRAINING WORKSHOP IN INCLUSIVE SCIENCE EDUCATION FOR LINGUISTIC AND CULTURAL DIVERSITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16478	HIGH IMPACT IN TEACHING DIGITAL ERA: AN INTERNATIONAL ONLINE TRAINING PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16479	DIVISION CAPACITY BUILDING FOR GRADE 4 TO 6 ENSCIMA TEACHERS ON THE IMPLEMENTATION OF END OF SCHOOL YEAR (EOSY) BREAK REMEDIATION ACTIVITIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16480	MASTER CLASS FOR GRADE 4 TEACHERS ACROSS ALL LEARNING AREAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16481	BASIC TRAINING ON GRAPHIC DESIGN	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16482	MASTER CLASS FOR KINDERGARTEN, GRADE 1, GRADE 4, AND GRADE 7 (K147) TEACHERS ACROSS ALL LEARNING AREAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16483	TRAINING OF COACHES FOR VARIOUS SPORTS EVENTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16484	TRAINING ON PSYCHOLOGICAL FIRST AID RESPONDERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 TECHNICAL
16485	DEPARTMENT OF EDUCATION INFORMATION AND COMMUNICATION TECHNOLOGY INITIATIVES FOR THE NEW NORMAL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16486	LEARNING REFRAMED PART 1: BEYOND CLASSROOM: THE HOME AS A PLACE WHERE WE FIRST LEARN	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16487	KEEPING THINGS IN PLACE: MECHANISMS FOR VALUES LEARNING IN HOME BASED EDUCATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16488	CAPACITY BUILDING ON THE USE OF ADVANCE TECHNOLOGY FOR YOUTH FORMATION COORDINATORS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 TECHNICAL
16489	DISTANCE, YET CONNECTED: LEARNING TOGETHER THROUGH VIRTUAL COMMUNITIES OF INQUIRY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16490	NATIONAL TRAINING OF TRAIBERS (NTOT) LUZON CLUSTER FOR GRADE 10 CAREER GUIDANCE PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL 
16491	2024 DIVISION LEARNING RESOURCE EXPO (DLRE) CUM LAUNCHING OF PROJECT LEARNING RESOURCE AND LIBRARY (LR-LIB) EXPRESS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16492	2024 DISTRICT TRAINING "TRAINING OF COACHES FOR VARIOUS EVENTS"	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16493	DIVISION ROLL OUT ON HIGHER ORDER THINKING SKILLS PROFESSIIONAL LEARNING PACKAGES HOT PLP'S FOR MATHEMATICS, ENGLISH AND SCIENCE TEACHER	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL 
16494	SEMINAR ON EDUCATIONAL INNOVATION AND PEDAGOGIES FOR TEACHERS OF ENGLISH, SCIENCE, MATHEMATICS, FILIPINO, SOCIAL STUDIES, MAPEH, ESP, AND TLE MAJORS 1.0	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16495	COMPUTER SKILLS DEVELOPMENT TRAINING : IMPROVING CLASSROM LEARNING THRU ICT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16496	REVISITING MAGNA CARTA FOR PUBLIC SCHOOL TEACHERS (R.A.4670) AND ADAPTION OF INTERNATIONAL STANDARDS ON EDUCATIONAL LEADERSHIP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16497	RESKILLING COODE OF PROFESSIONAL ETHICS FOR TEACHERS AND CURRICULUM DEVELOPMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16498	SEMINAR WORKSHOP ON CAPABILITY BUILDING FOCUSING ON LEARNERS CENTERED APPROACH FOR EFFECTIVE DELIVERY INSTRUCTION IN ENSCIMA	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16499	PEER EDUCATION TRAINING FOR ALTERNATIVE LEARNING SYSTEM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16500	DIVISION CAPACITY BUILDING WORKSHIP ON THE EVALUATION OF BASIC AND ACTION RESEARCH ETHICS, PUBLICATION AND CONTINOUS PROJECT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16501	DIVISION CAPACITY BUILDING IN SCIENCE, MATHEMATICS AND ENGLISH TEACHERS ON THE IMPLEMENTATION OF THE NATIONAL LEARNING CAMP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16502	REINVENTING EDUCATION FOR RELEVANCE AND QUALITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16503	INTERNATIONAL CONFERENCE ON EDUCATION, INNOVATIONS AND COMMUNITY DEVELOPMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16504	MASS TRAINING OF ALS TEACHERS ON THE IMPLEMENTATION OF ALS ACT AND ITS IMPLEMENTING RULES AND REGULATIONS (IRR)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16505	DIVISION TRAINING OF GRADE 7 TEACHERS ON MATATAG CURRICULUM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16506	2024 GAD TRAINING WITH THE THEME: "INTEGRATING GAD CONCEPTS AND ACTIVITIES IN TEACHING WHILE ENSURING GENDER RESPONSIVENESS AND SAFETY OF LEARNERS AND PERSONNEL"	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16507	DIVISION ROLL-OUT OF HIGHER THINKING SKILLS PROFESSIONAL LEARNING PACKAGES (HOTS-PLPS) FOR ENGLISH, SCIENCE AND MATHEMATICS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16508	SCHOOL LEARNING ACTION CELL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16509	DIVISION CAPACITY BUILDING FOR EDUCATORS ON INCLUSIVE EDUCATION CUM AWARENESS ON FILIPINO SIGN LANGUAGE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16510	EMPOWERING EDUCATIONAL FOCUS THROUGH NURTURING MINDS: THE SLAC PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16511	DISTRICT-SCHOOL IN SERVICE TRAINING FOR TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16512	DIVISION CAPABILITY BUILDING TRAINING FOR SPECIAL EDUCATION AND RECEIVING TEACHERS ON FILIPINO SIGN LANGUAGE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16513	DIVISION ROLL OUT OF DEPED COMPUTERIZATION PROGRAM ADOPTION CAPABILITY BUILDING FOR TEACHERS OF DCP RECEPIENT SCHOOL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16514	BATANGAS CITY E-RAISE UP FOR PROFICIENT TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16515	VIRTUAL IN-SERVICE TRAINING 2.0	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16516	VIRTUAL IN-SERVICE TRAINING FOR PUBLIC SCHOOL TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16517	CAPABILITY BUILDING FOR TEACHERS AND SCHOOL LEADERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16518	MASTER CLASSES IN FILIPINO 7	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16519	DIVISION TRAINING OF COACHES FOR VARIOUS EVENTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16520	DIVISION CAPACITY BUILDING FOR GRADES 4-6 ENCIMA TEACHERS ON THE IMPLEMENTATION OF END-OF-SCHOOL YEAR (EOSY) BREAK REMEDIATION ACTIVITIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16521	DISTRICT VIII ON THE CRAFTING OF THE SCHOOL'S CONTIGENCY AND SAFETY PLAN	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16522	DISTRICT VIII ORIENTATION ON NATIONAL LEARNING CAMP (NATIONAL LEARNING)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16523	SCHOOL LEARNING ACTION CELL PROGRAM 2024	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16524	ENHANCING THE CAPABILITY OF SCHOOL HEADS AND TEACHERS IN THE IMPLEMENTATION OF PROFESSIONAL PROGRAM VIA SCHOOL LEARNING ACTION CELL BATCH 2-CLUSTER1 (DISTRICT 10)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16525	2023 DISTRICT ASSEMBLE FOR STRATEGIC DIRECTIONS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16528	NATIONAL SEMINAR-WORKSHOP ON THE NEW CURRICULUM FOR TEACHERS AND SCHOOL LEADERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16529	NATIONAL SEMINAR-WORKSHOP ON PPST-BASED CURRICULUM IMPLEMENTATION AND INSTRUCTIONAL LEADERSHIP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16531	NATIONAL WEBINAR ON ELEVATING TEACHERS' CLASSROOM PRACTICES: PLANNING, DEVELOPING, AND EXECUTING STRATEGIES ALIGNED WITH THE PHILIPPINE PROFESSIONAL STANDARDS FOR TEACHERS (PPST)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16536	EQUAL VOICES: A CELEBRATION OF WOMEN AND GENDER EQUITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16537	SCHOOL-LEVEL WRITESHOP ON THE DEVELOPMENT AND/OR ENHANCEMENT OF EXISTING SCHOOL CONTINGENCY PLAN	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16538	SCHOOL BASED IN-SET TRAINING 2024	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16539	SCHOOL-BASED IN-SET TRAINING 2024	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16540	CAPACITY BUILDING PROMOTING TRANSPARENCY, ACCOUNTABILITY AND OPTIMIZED USE OF SCHOOL RESOURCES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16542	DISTRICT IV GAD TRAINI NG: GENDER AND DEVELOPMENT TRAINING (EQUAL VOICES: A CELEBRATION OF WOMEN AND GENDER EQUITY)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16544	BSP BASIC TRAINING COURSE FOR KAWAN LEADERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16545	BASIC GRAPHIC DESIGN AND DIGITAL ARTS FOR SCHOOL PAPER	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16550	EXPLICIT TEACHING LITERACY AND NUMERACY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16551	IMPLEMENTATION OF ALTERNATIVE DELIVERY MODE PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16552	SCHOOL-BASED IN-SERVICE TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16554	LEARNING THROUGH ENHANCED AND EVIDENCE-BASED PEDAGOGIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16557	SEMESTRAL BREAK IN SERVICE TRAINING ON PEDAGOGICAL APPROACHES IN TEACHING CUM STRATEGIES IN TEACHING READING FOR KEY STAGE 1 AND 2 TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16567	SCES LEARN: STRATEGIC COACHING ON ENHANCING STRUGGLING LEARNERS ENGAGEMENT APPROACH FOR READING AND NUMERACY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16526	MASTERCLASS FOR GRADE 4 TEACHERS ACROSS ALL LEARNING AREAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16527	BASIC TRAINING COURSES FOR TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16530	BASKETBALL ACCREDITATION UNDER DEPARTMENT OF EDUCATION REFEREES ASOCIATION (DEBRA)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16532	DISTRICT IV GAD TRAINING: GENDER AND DEVELOPMENT TRAINING (EQUAL VOICES: A CELEBRATION OF WOMEN AND GENDER EQUITY)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16533	BSIP BASIC TRAINING COURSE FOR KAWAN LEADERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16534	CURRICULUM: CURRICULUM MAPPING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16535	INSTRUCTIONAL STRATEGIES: DISTANCE LEARNING STRATEGIES THAT WORK IN FILIPINO	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16541	GENDER AND DEVELOPMENT TRAINING: EQUAL VOICE: A CELEBRATION OF WOMEN AND GENDER EQUITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16543	MASTER CLASSES FOR KINDER TEACHERS ACROSS ALL LEARNING AREAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16546	BOY SCOUT OF THE PHILIPPINES BASIC TRAINING COURSE FOR KAWN LEADERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16547	SCES LEARN: STRATEGIC COACHING ON ENHANCING STRUGGLING LEARNER'S ENGAGEMENT APPROACH FOR READING AND NUMERACY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16548	TEACHING ENGLISH AS A FOREIGN LANGUAGE COURSE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16549	2023 DIVISION LEADERSHIP TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL 
16553	IKA 48 PAMBANSANG SEMINAR-GAWAING KAPULUNGAN SA FILIPINO	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 TECHNICAL
16555	PROJECT E-LRC: WORKSHOP ON CREATING A VIRTUAL SCHOOL LIBRARY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16556	VIRTUAL IN-SERVICE TRAINING FOR PUBLIC SCHOOL TEACHERS 2.0	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16558	WRITESHOP IN THE DEVELOPMENT OF ARALING PANLIPUNAN ASSESSMENT TOOL IN THE NEW NORMAL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16559	CAMPUS JOURNALISM BOOTCAMP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16560	CREATE FOR THE CLIMATE INFORMATION, EDUCATION, AND COMMUNICATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16561	SCHOOL BASED IN-SERVICE TRAINING 2024	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16562	DIVISION WORKSHOP TRAINING ON TEACHING THE CRITICAL COMPETENCIES IN ALL LEARNING AREAS OF KEY STAGE 1-2	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16563	BAWAT PAARALAN EDUKASYON- THE PHILIPPINE WHOLE SCHOOL CONTINUUM CONGRESS (BPE CONGRESS)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16564	SELF-PACED LEARNING ROLES OF TEACHERS TOWARDS THE NEW NORMAL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL 
16565	JUAN KAPATID COACH TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16566	ILEARN, ICREATE, ISHARE DIGITAL CAPABILITIESl: EMPOWERING EDUCATORS FOR 21ST CENTURY LEARNING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16568	2021 REGIONAL WEBINAR IN READING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL 
16569	SCHOOL LEARNING ACTION CELL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL 
16570	MASTER FOR GRADE 1 TEACHERS ACROSS ALL LEARNING AREAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TEHCNICAL 
16571	DISTRICT IV TRAINING OF K-3 TEACHERS FOR EARLY LANGUAGE, LITERACY AND NUMERACY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16572	DISTRICT IV GAD TRAINING: GENDER AND DEVELOPMENT TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16573	PAMBANSANG SEMINAR GAWAING-KAPULUNGAN SA FILIPINO	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16574	SCHOOL-BASED IN-SERVICE TRAINING 2024	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16575	SEMSTRAL BREAK IN-SERVICE TRAINING ON PEDAGOGICAL APPROACHES IN TEACHING CUM STRATEGIES IN TEACHING READING FOR KEY STAGE 1 & 2 TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16576	STRUGGLING LEARNER'S ENGAGEMENT APPROACH FOR READING AND NUMERACY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16577	STRENGTHENING THE EDUCATIONAL LANDSCAPE THROUGH LANGUAGE AND LITERACY DEVELOPMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16578	DISTRICT IN-SERVICE TRAINING FOR TEACHERS 2024	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	technical
16579	DISTRICT VIII IN-SERVICE TRAINING FOR TEACHERS 2024	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 TECHNICAL
16580	DISTRICT IN-SERVICE TRAINING FOR TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16581	SCHOOL IN-SERVICE TRAINING FOR TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16582	DIVISION CAPACITY BUILDING OF SME GRADE 1-3 TEACHERS ON THE IMPLEMENTATION OF NLC BATCH 4	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16583	DISTRICT-WIDE TRAINING FOR K TO 3 TEACHERS ON THE EARLY LANGUAGE LITERACY AND NUMERACY (ELLN)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16584	EMPOWERING TEACHERS ON THE PREPARATION OF INDIVIDUAL PORTFOLIO FOR IPCRF SY 2021-2022 CUM MEANS OF VERIFICATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16585	EDUCATING TEACHERS ON HOW TO FACILITATE ONLINE CLASSES WITH THE UTILIZATION OF DIFFERENT ONLINE APPLICATIONS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16586	DIVISION ONLINE WRITESHOP AND QUALITY ASSURANCE LEARNING ACTIVITY SHEETS FOR QUARTERS 3 & 4	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16587	LAWS AND RULES ON GOVERNMENT EXPENDITURES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16588	MASTERCLASS FOR GRADE 1 TEACHERS ACROSS ALL LEARNING AREAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16589	FY 2025 BUDGET PREPARATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16590	REGIONAL TRAINING OF RECEIVING TEACHERS ON SPECIAL NEEDS EDUCATIONS (SNED)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16591	PROJECT E-LRC: WORKSHOP ON CREATING VIRTUAL SCHOOL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16592	JUAN KAPATID TEACHER SUMMIT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16593	DISTRICT GENDER AND DEVELOPMENT TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16594	BLOOMS TAXONOMY AND UNPACKING OF MELC	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16595	MATATAG CURRICULUM TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16596	DISTRICT 4 ORIENTATION TRAINING ON THE IMPLEMENTATION OF ALTERNATIVE DELIVERY MODE (ADM) PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16597	DIVISION TEACHER'S CONGRESS: BASIC AND ACTION RESEARCH PROJECTS FOR CONTINUOUS IMPROVEMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16598	DISTRICT IV TRAINING OF K TO 3 TEACHERS FOR THE EARLY LANGUAGE LITERACY AND NUMERACY PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16599	DISTRICT VIII GAD TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16600	LAC SESSION ON TRAINING WORKSHOP IN KNOWLEDGE CHANNEL LEARNING EFFECTIVELY THROUGH ENHANCED AND EVIDENCE BASED PEDAGOGIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16601	KNOWLEDGE CHANNEL WORKSHOP LEARNING EFFECTIVELY THROUGH ENHANCED AND EVIDENCE BASED PEDAGOGIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16602	DIVISION TRAINING ON RESKILLING AND UPSKILLING OF SCHOOL LABORATORY TECHNICIANS/MANAGERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16603	REGIONAL ACCREDITATION FOR DEPED TECHNICAL OFFICIALS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16604	EMPOWERING TEACHERS ON THE PREPARATION OF INDIVIDUAL PORTFOLIO FOR IPCRF SY 2021-2022	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16605	INTERNATIONAL WEBINAR-TRAINING IN ENGLISH WITH THE THEME- "STRENGTHENING THE EDUCATIONAL LANDSCAPE THROUGH LANGUAGE AND LITERACY DEVELOPMENT"	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16606	MIDYEAR PERFORMACE REVIEW AND CAPACITY BUILDING FOR SCHOOL PERSONNEL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16607	SLAC SESSION ON INTEGRATING APPRECIATIVE INQUIRY APPROACH	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16609	2023 LUZON CHAPTER RESPONSIBLE PUBLIC SECTOR UNIONISM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16612	INTERNATIONAL WEBINAR-TRAINING IN ENGLISH	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16613	SCHOOL LEARNING ACTION CELL SESSION ON INTEGRATING APPRECIATIVE INQUIRY APPROACH CUM GAWAD KINANGAN YEAR 2	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16614	SCHOOL LEARNING ACTION CELL SESSION ON DO. NO.35 S 2016 AND FOUR QUADRANTS OA A TEACHER	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16608	OPERATORS' DAY: ENHANCE YOUR TECHNICAL PROFICIENCY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16611	SBTT MATATAG CURRICULUM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16610	2024 STORYBOOK TRAINING WORKSHOP AND COMPETITION (2024 TEODORA ALFONSO)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16615	ENHANCING INSTRUCTIONAL SUPERVSION: A POSITIVE APPROACH THROUGH APPRECIATIVE INQUIRY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16616	2024 CAMPUS JOURNALIZM BOOTCAMP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16617	2024 CAMPUS JOURNALISM BOOTCAMP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16618	EXPLICIT TEACHING LITERACY AND NUMERACY VIA SCHOOL LEARNING ACTION CELL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16619	DISTRICT IV TRAINING OF K-3 TEACHERS FOR THE EARLY LANGUAGE LITERACY AND NUMERACY (ELLN) PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16620	MASTER CLASSES OF KINDERGARTEN, GRADE 1, 4, AND 7 ON ALL LEARNING AREAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16621	REGIONAL TRAINING OF RECEIVING TEACHERS ON SNED	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16622	DISTRICT IV GENDER AND DEVELOPMENT TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16623	UPSKILLING OF EDUCATION LEADERS ON THE EARLY LANGUAGE LITERACY AND NUMERACY (ELLN) WITH FOCUS ON THE SCIENCE OF READING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16624	ORIENTATION TRAINING ON ALTERNATIVE DELIVERY MODE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16625	2024 TRAINING WORKSHOP ON THE DEVELOPMENT OF CONTEXTUALIZED LEARNING RESOURCES/MATERIALS IN ALL LEARNING AREAS & INCLUSICE EDUCATION FOR THE MATATAG CURRICULUM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16626	INCLUSIVE EDUCATION AS A STRATEGY FOR INCREASIG PARTICIPATION RATE OF STA. CLARA ELEMENTARY SCHOOL LEARNERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16627	ENHANCING TEACHERS EFFECTIVENESS TRU ICT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16628	EXPLICIT TEACHING LITERACY AND NUMERACY APPROACHES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16629	TRAINING ON SCHOOL PREPAREDNESS AND WRITE SHOP ON THE DEVELOPMENT AND/OR ENHANCEMENT ON EXISTING SCHOOL CONTIGENCY PLAN	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16630	TRAINING IN CONTACT CENTER SERVICES NCII	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16631	NATIONAL CERTIFICATE II ORGANIC AGRICULTURE PRODUCTION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16632	BSIP BASIC TRAINING COURSE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16633	BSP BASIC TRAINING COURSE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16634	DISTRICT SPORTS PROGRAM LAUNCHING, TRAINING, COACHING, AND MENTORING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16635	COMPUTER SYSTEM SERVICES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16636	ICT TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16637	ENGLISH LANGUAGE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16638	INTERNATIONAL WEBINAR-WORKSHOP ON ENGLISH ENHANCEMENT: TOWARDS PERSONAL, ACADEMIC AND PROFESSIONAL GROWTH	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16639	REGIONAL TRAINERS GETHERING 2022	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16640	REGIONAL TRAINERS GATHERING 2022	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16641	COUNCIL BOARD ORIENTATION (DIGITAL TRAINING)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16642	VIRTUAL IN-SERVICE TRAINING FOR PUBLIC SCHOOL TEACHERS CAPACITY IN USING ICT AND EMERGING TECHNOLOGIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16643	VIRTUAL IN-SERVICE TRAINING FOR PUBLIC SCHOOL TEACHERS-RETOOLING OF TEACHERS CAPACITY IN USING ICT AND EMERGING TECHNOLOGIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16644	SCHOOL LEARNING ACTION CELL ON THE USE OF EFFECTIVE INTERVENTION AND ENHANCEMENT STRATEGIES TO IMPROVE PERFORMANCE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16645	FIRE PREVENTION AND SAFTEY CONSCIOUSNESS TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16646	STRESS MANAGEMENT AND WELLNESS ACTIVITY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL 
16647	DISTRICT TRARINING ON ACTION RESEARCH	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16648	DISTRICT TRAINING ON ACTION RESEARCH	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16649	GRASSROOTS COACHING PROGRAM (VOLLEYBALL)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16650	DISTRICT IV GAD TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16651	REINFORCING THE RESEARCH CULTURE FOR TEACHERS' EMPOWERMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16652	MASTER CLASSFOR GRADE 1 TEACHERS ACROSS ALL LEARNING AREAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16653	DIVISION CAPACITY BUILDING FOR GRADES 4 TO 6 TEACHERS ON THE IMPLEMENTATION OF END-OF-SCHOOL YEAR (EOSY) BREAK REMEDIATION ACTIVITIES (NATIONAL LEARNING CAMP)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16654	ORIENTATION ON COMPREHENSIVE SEXUALITY EDUCATION (CSE) ADOLESCENT REPRODUCTIVE HEALTH (ARH) PROGRAM CONERGENCE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16655	DIVISION TRAINING ON ENHANCING INSTRUCTIONAL SUPERVISION A POSITIVE APPROACH THROUGH APRECIATIVE INQUIRY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16656	2024 SELECTION / SCREENING OF LEARNING RESOURCE EVALUATORS (LRES) ILLUSTRATORS AND LAYOUT ARTISTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16657	FREE HYBRID NATIONAL ORIENTATION SEMINAR ON THE 2022 DEPED EXPANDED CAREER PROGRESSION SYSTEM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16658	LEARNING EFFECTIVELY THROUGH ENHANCED AND EVIDENCE-BASED PEDAGOGIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16659	OUTDOOR LEADERSHIP COURSE OF GSP BATANGAS CITY COUNCIL SOUTHERN LUZON REGION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16660	ENHANCEMENT THE CAPABILITY OF SCHOOL HEADS AND TEACHERS IN THE IMPLEMENTATION OF PROFESSIONAL PROGRAM VIA SLAC	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16661	RECONCEPTUALIZING TEACHER IDEOLOGY IN MULTILINGUAL LANGUAGE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16662	MASTER CLASS FOR KINDERGARTEN, GRADE 1, GRADE 4, AND GRADE 7 IN SCIENCE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16663	DRRM TRAINING WORKSHOP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16664	TRAINING WORKSHOP ON EARLY LANGUAGE AND LITERACY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	TECHNICAL
16665	USE OF EFFECTIVE INTERVENTION AND ENHANCEMENT STRATEGIES TO IMPROVE PERFORMANCE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16666	BALANCE LITERACY APPROACH AND INTEGRATIVE LEARNING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16667	SCHOOL LEARNING ACTION CELL ON BALANCE LITERACY APPROACH AND INTEGRATIVE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16668	SCHOOL LEARNING ACTION CELL ON EVALUATING TEST AND ASSESSMENT RESULTS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	
16669	SESSION ON INTEGRATING APPRECIATIVE INQUIRY APPROACH CUM GAWAD KINANGAN YEAR 2	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16670	INCLUSIVE EDUCATION (IE) AND ALTERNATION DELIVERY MODE (ADM) PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16671	NEAP-MASTERCLASS RECONCEPTUALIZING TEACHER IDEOLOGY IN MULTILINGUAL ENGLISH LANGUAGE CLASSROOM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16672	DIVISION CAPACITY BUILDING FOR GRADES 4-6 TEACHERS ON THE END OF SCHOOL YEAR BREAK ACTIVITIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16673	LEARNING DELIVERY MODALITIES (LDM1) COURSE FOR LAC LEADERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16674	DIVISION TRAINING FOR MASTER TEACHERS AND KEY TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16675	DIVISION CAPACITY BUILDING OF SCIENCE, MATHEMATICS, ADN ENGLISH (SME) GRADES 4-6 TEACHERS ON THE IMPLEMENTATION OF END OF SCHOOL BREAK ACTIVITIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16676	DIVISION CAPACITY BUILDING OF SCIENCE, MATHEMATICS, ANS ENGLISH (SME) GRADES 4-6 TEACHERS ON THE IMPLEMENTATION OF END OF SCHOOL BREAK ACTIVITIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16677	DIVISION CAPACITY BUILDING OF SCIENCE, MATHEMATICS, AND ENGLISH (SME) GRADES 4-6 TEACHERS ON THE IMPLEMENTATION OF END OF SCHOOL BREAK ACTIVITIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16678	DISTRICT FIELD ADVISER AND TROOP LEADERS' GATHERING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16679	DIVISION LEARNING CAMP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16680	INTRODUCTION OF ONLINE TEACHING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16681	RE-ORIENTATION AND WRITESHOP OF CONTINGENCY PLAN	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16682	SCHOOL LEARNING ACTION CELL SESSION ON FOSTERING AND INTEGTRATING GROWTH MINDSET TO ENHANCE PERFORMANCE IN CLASSROOMS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	
16683	SCHOOL LEARNING ACTION CELL SESSION ON EMPLOYING INNOVATIVE TEACHING TECHNIQUES APPLIED IN CLASSROOM SETTING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	
16684	SCHOOL LEARNING ACTION CELL SESSION ON DEVELOPING CONTEXTUALIZED AND LOCALIZED TEACHING MATERIALS USING ICT AND OTHER APPLICATIONS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16685	SCHOOL LEARNING ACTION CELL SESSION ON THE USE OF EXCEL APP IN MAKING INSTRUCTIONAL MATERIALS AND DATA ANALYSIS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	
16686	SLAC ON FOSTERING AND INTEGRATING GROWTH MINDSET TO ENHANCE PERFORMANCE IN THE CLASSROOM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	
16687	GENDER AND DEVELOPMENT ACTIVITY FOR SCHOOL PERSONNEL WITH THE THEME "STRENGHTENING AND DEVELOPMENT IN THE WORKPLACE"	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16688	DIVISION TRAINING FOR SPECIAL EDUCATION TEACHERS ON THE ADPATATION OF PROGRAMS AND SERVICES FOR LEARNERS WITH DISABILITIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16689	SLAC SESSION ON EMPLOYING INNOVATIVE TEACHING TECHNIQUES APPLIED IN CLASSROOM SETTING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16690	DIVISION TRAINING ON ACTION RESEARCH	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16691	STRENGTHENING GENDER AND DEVELOPMENT IN THE WORKPLACE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	
16692	FINAL DIVISION WORKSHOP ON QUALITY ASSURANCE OF CONTEXTUALIZED LEARNING RESOURCES/MATERIALS IN ALL LEARNING AREAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16693	DIVISION CAPACITY BUILDING SCIENCE, MATHEMATICS AND ENGLISH TEACHERS ON THE IMPLEMENTATION OF THE NATIONAL LEARNING CAMP	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16694	DISTRITC WIDE ROLL-OUT ON EARLY LANGUAGE LITERACY AND NUMERACY (ELLN)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16695	DISTRICT-WIDE ROLL-OUT ON EARLY LANGUAGE LITERCY AND NUMERACY (ELLN)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16696	LEARNING DELIVERY MODALITIES (LDM2) COURSE FOR TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16697	SEMINAR ON EDUCATIONAL INNOVATION AND PEDAGOGIES FOR TEACHERS OF ENGLISH, SCIENCE, MATHEMATICS, FILIPINO, SOCIAL STUDIES, MAPEH, ESP, AND TLE MAJORS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16698	UPSKILLING AND RESKILLING TEACHING AND SUPERVISION SKILLS TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16699	ORIENTATION ON THE GUIDELINES ON THE IMPLEMENTATION OF SBFP FOR SY 2024-2025	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	
16700	INSET (MASTER CLASSES FOR KINDERGARTEN G7 TEACHERS ACROSS ALL LEARNING AREAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16701	2023 DISTRICT ASSEMBLY FOR STRATEGIC DIRECTIONS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16702	DALUMAT SA WIKA, PANITIKAN AT ARALING PANGKULTURA SA BAGONG NORMAL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16703	TELEVISED VIRTUAL IN SERVICE TRAINING FOR TEACHERS 3.0	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16704	SCHOOL LEARNING ACTION CELL SESSION ON ASSESSMENT AS A FORM OF FEEDBACK GIVING ACTIVITIES CUM SCHOOL MONITORING , EVALUATION AND ADJUSTMENTS (SMEA)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16705	TEACH TALK (THE CONTEMPORARY WORLD EDITION) UNDER THE LINANGIN	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16706	ONLINE ORIENTATION ON THE NATIONAL SCHOOL BUILDING INVENTORY	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16707	TERTIARY EDUCATORS SKILL-BUILDING ON TEST CONSTRUCTION (TEST) KAPWA SERVICES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16708	FIVE-DAY IN-SERVICE TRAINING (INSET) 2023 FOR TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16709	SOCIAL EDUCATION: CRITICAL INQUIRY IN SOCIAL STUDIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16710	MOVING FORWARD: TEACHING SOCIAL STUDIES IN THE NEW NORMAL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16711	UPSKILLING THE 21ST CENTURY EDUCATORS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16712	TEACHING AND ASSESSING THE K-12 STANDARD ACROSS THE DIFFERENT LEARNING MODALITIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16713	SESSION ON INTEGRATING APPRECIATIVE INQUIRY APPROACH	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16714	SESSION ON INCLUSIVE EDUCATION (IE) AND ALTERNATIVE DELIVERY MODE (ADM) PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	
16715	VIRTUAL IN-SERVICE TRAINING FOR TEACHERS 2.0	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16716	DISTRICT TRAINING WRITESHOP FOR MELCS AND EXEMPLARS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16717	DIVISION ORIENTATION ON NATIONAL LEARNING CAMP FOR DISTRICT FACILITATORS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16718	INTEGRATING GAD CONCEPTS AND ACTIVITIES IN TEACHING WHILE ENSURING GENDER RESPONSIVENESS AND SAFETY OF LEARNERS AND PERSONNEL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16719	DIVISION CAPABILITY FOR SPECIAL EDUCATION AND RECEIVING TEACHERS ON FILIPINO SIGN LANGUAGE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16720	INSET MASTER CLASS FOR KINDERGARTEN G1, G4, AND G7 TEACHERS ACROSS ALL LEARNING AREAS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16721	5 DAY IN SERVICE TRAINING FOR TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16722	2022 DISTRICT RESEARCHERS WORKSHOP ON ACTION RESEARCH	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16723	LEARNING DELIVERY MODALITIES COURSE FOR TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16724	MASTER CLASS FOR KINDERGARTEN, GRADE 1, GRADE 4, AND GRADE 7 TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16725	TRAINING WORKSHOP ANALYSIS OF NAT RESULT CUM ACTION BASIC RESEARCH WRITING ON ASSESSMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16726	DISTRICT TRAINING ON THE ENHANCEMENT OF DAP-ELLN AND INCLUSIVE CHILD-CENTERED TECHNIQUES FOR K-3 TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16727	DIVISION WIDE TRAINING ON THE ENHANCEMENT OF DAP-ELLN AND INCLUSIVE CHILD-CENTERED TECHNIQUES FOR K-3 TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16728	PAMBANSANG SAMAHAN NG MGA TAGAMASID AT TAGAPAGTAGUYOD SA FILIPINO	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16729	126th INDEPENDENCE DAY COMMEMORATION MASTER CLASS PROFESSIONAL DEVELOPMENT PROGRAM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16730	iLEARN, iCREATE, iSHARE DIGITAL CAPABILITIES: EMPOWERING EDUCATORS FOR 21st CENTURY LEARNING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	
16731	MID-YEAR PERFORMANCE REVIEW AND CAPACITY BUILDING FOR SCHOOL PERSONNEL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16732	INDUCTION PROGRAM FOR BEGINNING TEACHERS (IPBT) YEAR 1	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16733	ENHANCING CAPABILITY OF SCHOOL HEADS AND TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16734	DIVISION CAPACITY BUILDING FOR EDUCATORS ON INCLUSIVE EDUCATION	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16735	UPSKILLING OF EDUCATION LEADERS ON ELLN	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16736	STRENGTHENING GAD POLICIES AND MANDATES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16737	NEAP MASTER CLASS - RECONCEPTUALIZING TEACHER IDEOLOGY IN MULTILINGUAL ENGLISH LANGUAGE CLASSROOM: AN ACELT SPEED PROJECT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16738	INSET (MASTER CLASSES FOR KINDERGARTEN, G1, G4, AND G7 TEACHERS ACROSS ALL LEARNING AREAS (NATIONAL LEVEL)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16739	SLAC SESSION ON THE USE OF EFFECTIVE INTERVENTION AND ENHANCEMENT STRATEGIES	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16740	SLAC SESSION ON BALANCE LITERACY APPROACH AND INTEGRATIVE LEARNING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	
16741	WEBINAR TRAINING IN ENGLISH-STRNGTHENING THE EDUCATIONAL LANDSCAPE THROUGH LANGUAGE	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16742	2024 DISTRICT GENDER AND DEVELOPMENT TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16743	2024 REGIONAL TRAINING OF RECEIVING TEACHERS ON SNED	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16744	DIVISION TRAINING ON TEACHING THE CRITICAL COMPETENCIES IN ALL LEARNING AREAS OF KEY STAGE 1-2	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16745	DISTRICT SPOTS PROGRAM LAUNCHING, TRAINING, COACHING, AND MENTORING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16778	SCHOOL BASED IN SERVICE TRAINING FOR TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16779	ORIENTATION ON THE GUIDELINES ON THE IMPLEMENTATION OF SCHOOL BASED FEEDING PROGRAM (SBFP)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16780	DISTRICT WIDE ROLL-OUT ON EARLY LANGUAGE LITERACY AND NUMERACY (ELLN)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16781	DIVISION TEACHERS CONGRESS BASIC AND ACTION RESEARCH PROJECTS FOR CONTINUOUS IMPROVEMENT	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16782	SCHOOL BASED IN SERVICE TRAINING	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16783	SCHOOL MIDYEAR INSERVICE TRAINING FOR TEACHERS SY 2023-2024	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16784	DIVISION LAUNCHING OF THE DEVELOPED CONTEXTUALIZED SCIENCE LABORATORY SAFETY MANAGEMENT MANUAK FOR TECHNICAL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16785	DESIGNING LEADERS PROFESSIONAL DEVELOPMENT PROGRAMS FOR TEACHERS AND SCHOOL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16786	SCHOOL BASED WITH THE TRAINING OF TEACHERS (SBTT) ON MATATAG CURRICULUM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16787	41ST PRINCIPAL TRAINING AND DEVELOPMENT PROGRAM CUM NATIONAL BOARD CONFERENCE (PTDP-NBC)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16788	DIVISION TRAINING OF SCHOOL TRAINERS ON THE MATATAG CURRICULUM	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16789	THE TEACHER AS PROFESSIONAL	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16790	IN-SERVICE TRAINING (MASTER CLASSES FOR KINDERGARTEN, G1, G4, AND G7 TEACHERS ACROSS ALL LEARNING AREAS)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16791	BASIC TRAINING COURSE (BSP)	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16792	DIVISION-BASED TRAINING FOR MULTIGRADE TEACHERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16793	SCHOOL IN-SERVICE TRAINING FOR TEACHERS SY 2023-2024	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16794	2023 DICTRICT ASSEMBLY FOR STRATEGIC DIRECTIONS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16795	DISTIRICT WIDE ROLL OUT ON ELLN	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16796	DISTIRCT WIDE ROLL OUT ON ELLN	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16797	BOY SCOUT OF THE PHILIPPINES ADULT LEADER	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16798	LEARNING CAMP VOLUNTEER NATIONAL LEARNING CAMP 2024	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
16799	STRATEGIES FOR TEACHING DIVERSE LEARNERS	\N	\N	\N	\N	\N	\N	\N	\N	0	0	0	 
\.


--
-- TOC entry 4679 (class 0 OID 0)
-- Dependencies: 444
-- Name: Trainings_TrainingId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Trainings_TrainingId_seq"', 16799, true);


--
-- TOC entry 4067 (class 0 OID 17822)
-- Dependencies: 445
-- Data for Name: TravelOrderEmployees; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "TravelOrderEmployees" ("TravelOrderEmployeeId", "TravelOrderId", "EmployeeId") FROM stdin;
\.


--
-- TOC entry 4680 (class 0 OID 0)
-- Dependencies: 446
-- Name: TravelOrderEmployees_TravelOrderEmployeeId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"TravelOrderEmployees_TravelOrderEmployeeId_seq"', 7061, true);


--
-- TOC entry 4681 (class 0 OID 0)
-- Dependencies: 448
-- Name: TravelOrderId_TravelOrderId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"TravelOrderId_TravelOrderId_seq"', 2471, true);


--
-- TOC entry 4069 (class 0 OID 17827)
-- Dependencies: 447
-- Data for Name: TravelOrders; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "TravelOrders" ("TravelOrderId", "EmployeeId", "DepartureDate", "ReturnDate", "Remarks", "Allowance", "Purpose", "Status", "Destination", "DateFiled", "OrderNumber", "DepartmentId", "DepartureTime", "ReturnTime") FROM stdin;
\.


--
-- TOC entry 4071 (class 0 OID 17839)
-- Dependencies: 449
-- Data for Name: UserGroups; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "UserGroups" ("Id", "UserGroupName", "IsDefault", "IsActive") FROM stdin;
1	Applicant	t	t
2	Employee	t	t
3	Supervisor	t	t
4	Human Resource Manager	t	t
5	Executive	t	t
12	Human Resource	f	t
13	Encoder	f	t
14	PHRMO	f	t
17	Leave Administrator	f	t
15	Payroll 	f	t
19	Job Order Administrator	f	t
18	Payroll Administrator	f	f
20	RSP	f	t
21	AKIN LANG TO MUNA	f	f
\.


--
-- TOC entry 4682 (class 0 OID 0)
-- Dependencies: 450
-- Name: UserGroups_Id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"UserGroups_Id_seq"', 21, true);


--
-- TOC entry 4073 (class 0 OID 17847)
-- Dependencies: 451
-- Data for Name: UserPermissions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "UserPermissions" ("SystemPageCode", "Access", "Id") FROM stdin;
SystemUsersView	Read	3
TransferApprovalView	Read	3
TravelOrderView	Read	3
VisitorsView	Read	3
WithholdingTaxView	Read	3
MonitizedLeaveCreditsView	Full	4
AdvertisementImagesView	Full	4
AllowanceApplicationView	Full	4
AllowancesView	Full	4
ApplicantsView	Full	4
AppointmentRequestsView	Full	4
AuditTrailWindow	Full	4
AwardView	Full	4
CardsView	Full	4
DailyTimeRecordView	Full	4
DemotionApprovalView	Full	4
DepartmentView	Full	4
DivisionView	Full	4
EmployeeLeavesView	Full	4
EmployeesMasterlistView	Full	4
EvaluationsView	Full	4
EventsView	Full	4
GateOfficerDashboardView	Full	4
GSISContributionView	Full	4
HDMFContributionView	Full	4
HolidayView	Full	4
HumanResourceManagementView	Full	4
HumanResourcePolicyView	Full	4
JobVacanciesView	Full	4
LeaveTypeView	Full	4
LeaveView	Full	4
LoanApplicationsView	Full	4
LoanTypeView	Full	4
LogMonitoringView	Full	4
LogReportView	Full	4
LoyaltyAwardsView	Full	4
MessageDisplayView	Full	4
MultipliersView	Full	4
NewEmployeeApprovalView	Full	4
NonPlantillaRecordsView	Full	4
NoticeOfStepIncrementView	Full	4
PayablesWindow	Full	4
PayrollDateView	Full	4
PayrollSettingsWindow	Full	4
PayrollSummaryView	Full	4
PhilHealthContributionView	Full	4
PlantillaRecordsView	Full	4
PositionView	Full	4
PromotionApprovalView	Full	4
RateTypeView	Full	4
RenewalApprovalView	Full	4
ResignationView	Full	4
RFIDParameterWindow	Full	4
SalaryAdjustmentApprovalView	Full	4
SalaryGradeView	Full	4
SchedulesReportView	Full	4
SchedulesView	Full	4
SectionView	Full	4
SeparationApprovalView	Full	4
SeparationsView	Full	4
SSSContribution	Full	4
StepIncrementApprovalView	Full	4
SystemParameterWindow	Full	4
SystemUsersView	Full	4
TimeApprovalView	Full	4
AwardView	Restricted	1
AdvertisementImagesView	Read	3
AllowanceApplicationView	Read	3
AllowancesView	Read	3
ApplicantsView	Read	3
AppointmentRequestsView	Read	3
AuditTrailWindow	Read	3
AwardView	Read	3
CardsView	Read	3
DailyTimeRecordView	Read	3
DemotionApprovalView	Read	3
DepartmentView	Read	3
DivisionView	Read	3
EmployeeLeavesView	Read	3
EmployeesMasterlistView	Read	3
EvaluationsView	Read	3
EventsView	Read	3
GateOfficerDashboardView	Read	3
GSISContributionView	Read	3
HDMFContributionView	Read	3
HolidayView	Read	3
HumanResourceManagementView	Read	3
HumanResourcePolicyView	Read	3
JobVacanciesView	Read	3
LeaveTypeView	Read	3
LeaveView	Read	3
LoanApplicationsView	Read	3
LoanTypeView	Read	3
LogMonitoringView	Read	3
LogReportView	Read	3
LoyaltyAwardsView	Read	3
MessageDisplayView	Read	3
MultipliersView	Read	3
NewEmployeeApprovalView	Read	3
NonPlantillaRecordsView	Read	3
NoticeOfStepIncrementView	Read	3
PayablesWindow	Read	3
PayrollDateView	Read	3
PayrollSettingsWindow	Read	3
PayrollSummaryView	Read	3
PhilHealthContributionView	Read	3
PlantillaRecordsView	Read	3
PositionView	Read	3
PromotionApprovalView	Read	3
RateTypeView	Read	3
RenewalApprovalView	Read	3
ResignationView	Read	3
RFIDParameterWindow	Read	3
SalaryAdjustmentApprovalView	Read	3
SalaryGradeView	Read	3
SchedulesReportView	Read	3
SchedulesView	Read	3
SectionView	Read	3
SeparationApprovalView	Read	3
SeparationsView	Read	3
SSSContribution	Read	3
StepIncrementApprovalView	Read	3
SystemParameterWindow	Read	3
MonitizedLeaveCreditsView	Read	3
TimeApprovalView	Full	3
AdvertisementImagesView	Full	5
AllowanceApplicationView	Full	5
AllowancesView	Full	5
ApplicantsView	Full	5
AppointmentRequestsView	Full	5
AuditTrailWindow	Full	5
AwardView	Full	5
CardsView	Full	5
DailyTimeRecordView	Full	5
DemotionApprovalView	Full	5
DepartmentView	Full	5
DivisionView	Full	5
EmployeeLeavesView	Full	5
EmployeesMasterlistView	Full	5
EvaluationsView	Full	5
EventsView	Full	5
GateOfficerDashboardView	Full	5
GSISContributionView	Full	5
HDMFContributionView	Full	5
HolidayView	Full	5
HumanResourceManagementView	Full	5
HumanResourcePolicyView	Full	5
JobVacanciesView	Full	5
LeaveTypeView	Full	5
LeaveView	Full	5
LoanApplicationsView	Full	5
LoanTypeView	Full	5
LogMonitoringView	Full	5
LogReportView	Full	5
LoyaltyAwardsView	Full	5
MessageDisplayView	Full	5
MultipliersView	Full	5
NewEmployeeApprovalView	Full	5
NonPlantillaRecordsView	Full	5
NoticeOfStepIncrementView	Full	5
PayablesWindow	Full	5
PayrollDateView	Full	5
PayrollSettingsWindow	Full	5
PayrollSummaryView	Full	5
PhilHealthContributionView	Full	5
PlantillaRecordsView	Full	5
PositionView	Full	5
PromotionApprovalView	Full	5
RateTypeView	Full	5
RenewalApprovalView	Full	5
ResignationView	Full	5
RFIDParameterWindow	Full	5
SalaryAdjustmentApprovalView	Full	5
SalaryGradeView	Full	5
SchedulesReportView	Full	5
SchedulesView	Full	5
SectionView	Full	5
SeparationApprovalView	Full	5
SeparationsView	Full	5
SSSContribution	Full	5
StepIncrementApprovalView	Full	5
SystemParameterWindow	Full	5
SystemUsersView	Full	5
TimeApprovalView	Full	5
TransferApprovalView	Full	5
TravelOrderView	Full	5
VisitorsView	Full	5
WithholdingTaxView	Full	5
TransferApprovalView	Full	4
TravelOrderView	Full	4
VisitorsView	Full	4
WithholdingTaxView	Full	4
MonitizedLeaveCreditsView	Full	5
AdvertisementImagesView	Restricted	1
AllowanceApplicationView	Restricted	1
AuditTrailWindow	Restricted	1
CardsView	Restricted	1
DailyTimeRecordView	Restricted	1
DemotionApprovalView	Restricted	1
EventsView	Restricted	1
GateOfficerDashboardView	Restricted	1
GSISContributionView	Restricted	1
HDMFContributionView	Restricted	1
HolidayView	Restricted	1
HumanResourcePolicyView	Restricted	1
LogMonitoringView	Restricted	1
LogReportView	Restricted	1
LoyaltyAwardsView	Restricted	1
MessageDisplayView	Restricted	1
MultipliersView	Restricted	1
PayablesWindow	Restricted	1
PayrollDateView	Restricted	1
PayrollSettingsWindow	Restricted	1
PayrollSummaryView	Restricted	1
PhilHealthContributionView	Restricted	1
RenewalApprovalView	Restricted	1
RFIDParameterWindow	Restricted	1
SalaryAdjustmentApprovalView	Restricted	1
SchedulesReportView	Restricted	1
SchedulesView	Restricted	1
SeparationApprovalView	Restricted	1
SeparationsView	Restricted	1
SSSContribution	Restricted	1
MonitizedLeaveCreditsView	Restricted	1
StepIncrementApprovalView	Restricted	1
SystemParameterWindow	Restricted	1
SystemUsersView	Restricted	1
TimeApprovalView	Restricted	1
VisitorsView	Restricted	1
WithholdingTaxView	Restricted	1
AdvertisementImagesView	Restricted	2
AllowanceApplicationView	Restricted	2
AllowancesView	Restricted	2
AppointmentRequestsView	Restricted	2
AuditTrailWindow	Restricted	2
AwardView	Restricted	2
CardsView	Restricted	2
DailyTimeRecordView	Restricted	2
DemotionApprovalView	Restricted	2
DepartmentView	Restricted	2
DivisionView	Restricted	2
EmployeeLeavesView	Restricted	2
EmployeesMasterlistView	Restricted	2
EvaluationsView	Restricted	2
EventsView	Restricted	2
GateOfficerDashboardView	Restricted	2
GSISContributionView	Restricted	2
HDMFContributionView	Restricted	2
HolidayView	Restricted	2
HumanResourceManagementView	Restricted	2
HumanResourcePolicyView	Restricted	2
JobVacanciesView	Restricted	2
LeaveTypeView	Restricted	2
LeaveView	Restricted	2
LoanApplicationsView	Restricted	2
LoanTypeView	Restricted	2
LogMonitoringView	Restricted	2
LogReportView	Restricted	2
LoyaltyAwardsView	Restricted	2
MessageDisplayView	Restricted	2
MonitizedLeaveCreditsView	Restricted	2
MultipliersView	Restricted	2
NewEmployeeApprovalView	Restricted	2
NoticeOfStepIncrementView	Restricted	2
PayablesWindow	Restricted	2
PayrollDateView	Restricted	2
PayrollSettingsWindow	Restricted	2
PayrollSummaryView	Restricted	2
PhilHealthContributionView	Restricted	2
PlantillaRecordsView	Restricted	2
PositionView	Restricted	2
PromotionApprovalView	Restricted	2
RateTypeView	Restricted	2
RenewalApprovalView	Restricted	2
ResignationView	Restricted	2
RFIDParameterWindow	Restricted	2
SalaryAdjustmentApprovalView	Restricted	2
SalaryGradeView	Restricted	2
SchedulesReportView	Restricted	2
SchedulesView	Restricted	2
SectionView	Restricted	2
SeparationApprovalView	Restricted	2
SeparationsView	Restricted	2
SSSContribution	Restricted	2
StepIncrementApprovalView	Restricted	2
SystemParameterWindow	Restricted	2
SystemUsersView	Restricted	2
TimeApprovalView	Restricted	2
TransferApprovalView	Restricted	2
TravelOrderView	Restricted	2
VisitorsView	Restricted	2
WithholdingTaxView	Restricted	2
CreditsComputationView	Restricted	2
EarningsView	Restricted	2
TaxReportsIrregularView	Restricted	2
TaxReportsView	Restricted	2
MultipleTimeApprovalView	Full	5
PermissionToLeave	Full	5
CreditsComputationView	Full	5
EarningsView	Full	5
TaxReportsIrregularView	Full	5
TaxReportsView	Full	5
CreditsComputationView	Full	4
EarningsView	Full	4
MultipleTimeApprovalView	Full	4
PermissionToLeave	Full	4
TaxReportsIrregularView	Full	4
TaxReportsView	Full	4
AdvertisementImagesView	Restricted	12
AllowanceApplicationView	Restricted	12
AllowancesView	Restricted	12
AppointmentRequestsView	Restricted	12
AuditTrailWindow	Restricted	12
AwardView	Restricted	12
CardsView	Restricted	12
CreditsComputationView	Restricted	12
DailyTimeRecordView	Restricted	12
DemotionApprovalView	Restricted	12
EarningsView	Restricted	12
EmployeeLeavesView	Restricted	12
EvaluationsView	Restricted	12
EventsView	Restricted	12
GateOfficerDashboardView	Restricted	12
GSISContributionView	Restricted	12
HDMFContributionView	Restricted	12
HolidayView	Restricted	12
LeaveTypeView	Restricted	12
LeaveView	Restricted	12
LoanApplicationsView	Restricted	12
LoanTypeView	Restricted	12
LogMonitoringView	Restricted	12
LogReportView	Restricted	12
LoyaltyAwardsView	Restricted	12
MessageDisplayView	Restricted	12
MonitizedLeaveCreditsView	Restricted	12
MultipliersView	Restricted	12
HumanResourceManagementView	Full	12
DivisionView	Restricted	12
TravelOrderView	Restricted	1
EmployeesMasterlistView	Full	12
DepartmentView	Restricted	12
PayablesWindow	Restricted	12
PayrollDateView	Restricted	12
PayrollSettingsWindow	Restricted	12
PayrollSummaryView	Restricted	12
PhilHealthContributionView	Restricted	12
PromotionApprovalView	Restricted	12
RenewalApprovalView	Restricted	12
ResignationView	Restricted	12
RFIDParameterWindow	Restricted	12
SalaryAdjustmentApprovalView	Restricted	12
SalaryGradeView	Restricted	12
SchedulesReportView	Restricted	12
SchedulesView	Restricted	12
SeparationApprovalView	Restricted	12
SeparationsView	Restricted	12
SSSContribution	Restricted	12
StepIncrementApprovalView	Restricted	12
TimeApprovalView	Full	14
ApplicantsView	Full	12
JobVacanciesView	Full	12
SystemParameterWindow	Restricted	12
SystemUsersView	Restricted	12
TaxReportsIrregularView	Restricted	12
TaxReportsView	Restricted	12
TimeApprovalView	Restricted	12
TransferApprovalView	Restricted	12
TravelOrderView	Restricted	12
VisitorsView	Restricted	12
WithholdingTaxView	Restricted	12
HumanResourceManagementView	Full	1
JobVacanciesView	Full	1
MultipleTimeApprovalView	Restricted	1
CreditsComputationView	Restricted	1
EarningsView	Restricted	1
EmployeeLeavesView	Restricted	1
PermissionToLeave	Restricted	1
TaxReportsIrregularView	Restricted	1
TaxReportsView	Restricted	1
ApplicantsView	Restricted	2
SectionView	Restricted	1
SalaryGradeView	Restricted	1
NoticeOfStepIncrementView	Restricted	1
PlantillaRecordsView	Restricted	1
PositionView	Restricted	1
AllowancesView	Restricted	1
DivisionView	Restricted	1
EmployeesMasterlistView	Restricted	1
EvaluationsView	Restricted	1
LeaveTypeView	Restricted	1
LeaveView	Restricted	1
LoanApplicationsView	Restricted	1
LoanTypeView	Restricted	1
RateTypeView	Restricted	12
MultipleTimeApprovalView	Restricted	12
PermissionToLeave	Restricted	12
NoticeOfStepIncrementView	Restricted	12
AdvertisementImagesView	Restricted	13
AllowanceApplicationView	Restricted	13
AllowancesView	Restricted	13
AppointmentRequestsView	Restricted	13
AuditTrailWindow	Restricted	13
AwardView	Restricted	13
CardsView	Restricted	13
CreditsComputationView	Restricted	13
DailyTimeRecordView	Restricted	13
DemotionApprovalView	Restricted	13
EarningsView	Restricted	13
EmployeeLeavesView	Restricted	13
EmployeesMasterlistView	Restricted	13
EvaluationsView	Restricted	13
EventsView	Restricted	13
GateOfficerDashboardView	Restricted	13
GSISContributionView	Restricted	13
HDMFContributionView	Restricted	13
HolidayView	Restricted	13
HumanResourceManagementView	Full	13
HumanResourcePolicyView	Restricted	13
LeaveTypeView	Restricted	13
LeaveView	Restricted	13
LoanApplicationsView	Restricted	13
LoanTypeView	Restricted	13
LogMonitoringView	Restricted	13
LogReportView	Restricted	13
PlantillaRecordsView	Restricted	12
PositionView	Restricted	12
SectionView	Restricted	12
NonPlantillaRecordsView	Restricted	12
LoyaltyAwardsView	Restricted	13
MessageDisplayView	Restricted	13
MonitizedLeaveCreditsView	Restricted	13
MultipleTimeApprovalView	Restricted	13
MultipliersView	Restricted	13
NoticeOfStepIncrementView	Restricted	13
PayablesWindow	Restricted	13
PayrollDateView	Restricted	13
PayrollSettingsWindow	Restricted	13
PayrollSummaryView	Restricted	13
PermissionToLeave	Restricted	13
PhilHealthContributionView	Restricted	13
PlantillaRecordsView	Restricted	13
PromotionApprovalView	Restricted	13
RateTypeView	Restricted	13
RenewalApprovalView	Restricted	13
ResignationView	Restricted	13
RFIDParameterWindow	Restricted	13
SalaryAdjustmentApprovalView	Restricted	13
SalaryGradeView	Restricted	13
SchedulesReportView	Restricted	13
SchedulesView	Restricted	13
SectionView	Restricted	13
SeparationApprovalView	Restricted	13
SeparationsView	Restricted	13
SSSContribution	Restricted	13
StepIncrementApprovalView	Restricted	13
SystemParameterWindow	Restricted	13
SystemUsersView	Restricted	13
TaxReportsIrregularView	Restricted	13
TaxReportsView	Restricted	13
TimeApprovalView	Restricted	13
TransferApprovalView	Restricted	13
TravelOrderView	Restricted	13
VisitorsView	Restricted	13
WithholdingTaxView	Restricted	13
DemotionApprovalView	Full	14
HumanResourceManagementView	Full	14
JobVacanciesView	Full	14
NewEmployeeApprovalView	Full	14
NoticeOfStepIncrementView	Full	14
RenewalApprovalView	Full	14
ResignationView	Full	14
NonPlantillaRecordsView	Full	13
PositionView	Full	13
DepartmentView	Full	13
DivisionView	Full	13
DepartmentView	Full	1
NonPlantillaRecordsView	Full	1
TransferApprovalView	Full	14
TravelOrderView	Full	14
AdvertisementImagesView	Restricted	14
AllowanceApplicationView	Restricted	14
AllowancesView	Restricted	14
ApplicantsView	Restricted	14
AppointmentRequestsView	Restricted	14
AuditTrailWindow	Restricted	14
AwardView	Restricted	14
CardsView	Restricted	14
CreditsComputationView	Restricted	14
DailyTimeRecordView	Restricted	14
DepartmentView	Restricted	14
DivisionView	Restricted	14
EarningsView	Restricted	14
EmployeeLeavesView	Restricted	14
EventsView	Restricted	14
EmployeesMasterlistView	Restricted	14
EvaluationsView	Restricted	14
GateOfficerDashboardView	Restricted	14
GSISContributionView	Restricted	14
HDMFContributionView	Restricted	14
HolidayView	Restricted	14
HumanResourcePolicyView	Restricted	14
LeaveTypeView	Restricted	14
LeaveView	Restricted	14
LoanApplicationsView	Restricted	14
LoanTypeView	Restricted	14
LogMonitoringView	Restricted	14
LogReportView	Restricted	14
LoyaltyAwardsView	Restricted	14
MessageDisplayView	Restricted	14
MonitizedLeaveCreditsView	Restricted	14
MultipleTimeApprovalView	Restricted	14
MultipliersView	Restricted	14
NonPlantillaRecordsView	Restricted	14
PayablesWindow	Restricted	14
PayrollDateView	Restricted	14
PayrollSettingsWindow	Restricted	14
PayrollSummaryView	Restricted	14
PermissionToLeave	Restricted	14
PhilHealthContributionView	Restricted	14
PlantillaRecordsView	Restricted	14
PositionView	Restricted	14
PromotionApprovalView	Restricted	14
RateTypeView	Restricted	14
RFIDParameterWindow	Restricted	14
SalaryAdjustmentApprovalView	Restricted	14
SalaryGradeView	Restricted	14
SchedulesReportView	Restricted	14
SchedulesView	Restricted	14
SectionView	Restricted	14
SeparationApprovalView	Restricted	14
SeparationsView	Restricted	14
SSSContribution	Restricted	14
StepIncrementApprovalView	Restricted	14
SystemParameterWindow	Restricted	14
SystemUsersView	Restricted	14
TaxReportsIrregularView	Restricted	14
TaxReportsView	Restricted	14
VisitorsView	Restricted	14
WithholdingTaxView	Restricted	14
AdvertisementImagesView	Restricted	15
AppointmentRequestsView	Restricted	15
AuditTrailWindow	Restricted	15
AwardView	Restricted	15
CardsView	Restricted	15
CreditsComputationView	Restricted	15
DemotionApprovalView	Restricted	15
EmployeeLeavesView	Restricted	15
EvaluationsView	Restricted	15
EventsView	Restricted	15
GateOfficerDashboardView	Restricted	15
LeaveTypeView	Restricted	15
LeaveView	Restricted	15
LoyaltyAwardsView	Restricted	15
MessageDisplayView	Restricted	15
NoticeOfStepIncrementView	Restricted	15
PlantillaRecordsView	Restricted	15
PromotionApprovalView	Restricted	15
RenewalApprovalView	Restricted	15
ResignationView	Restricted	15
RFIDParameterWindow	Restricted	15
SalaryAdjustmentApprovalView	Restricted	15
SectionView	Restricted	15
SeparationApprovalView	Restricted	15
SeparationsView	Restricted	15
StepIncrementApprovalView	Restricted	15
SystemUsersView	Restricted	15
TimeApprovalView	Restricted	15
TransferApprovalView	Restricted	15
VisitorsView	Restricted	15
PayrollDateView	Full	15
PayrollSettingsWindow	Full	15
PayrollSummaryView	Full	15
MultipleTimeApprovalView	Restricted	15
PermissionToLeave	Restricted	15
AdvertisementImagesView	Restricted	16
AllowanceApplicationView	Restricted	16
AllowancesView	Restricted	16
ApplicantsView	Restricted	16
AppointmentRequestsView	Restricted	16
AuditTrailWindow	Restricted	16
AwardView	Restricted	16
CardsView	Restricted	16
CreditsComputationView	Restricted	16
DailyTimeRecordView	Restricted	16
DemotionApprovalView	Restricted	16
DepartmentView	Restricted	16
ApplicantsView	Full	15
EmployeesMasterlistView	Full	15
DepartmentView	Full	15
DivisionView	Full	15
PositionView	Full	15
DivisionView	Restricted	16
EarningsView	Restricted	16
EmployeeLeavesView	Restricted	16
EmployeesMasterlistView	Restricted	16
EvaluationsView	Restricted	16
EventsView	Restricted	16
GateOfficerDashboardView	Restricted	16
GSISContributionView	Restricted	16
HDMFContributionView	Restricted	16
HolidayView	Restricted	16
HumanResourceManagementView	Restricted	16
HumanResourcePolicyView	Restricted	16
JobVacanciesView	Restricted	16
LeaveTypeView	Restricted	16
LeaveView	Restricted	16
LoanApplicationsView	Restricted	16
LoanTypeView	Restricted	16
LogMonitoringView	Restricted	16
LogReportView	Restricted	16
LoyaltyAwardsView	Restricted	16
MessageDisplayView	Restricted	16
MonitizedLeaveCreditsView	Restricted	16
MultipliersView	Restricted	16
NewEmployeeApprovalView	Restricted	16
NonPlantillaRecordsView	Restricted	16
NoticeOfStepIncrementView	Restricted	16
PayablesWindow	Restricted	16
PayrollDateView	Restricted	16
PayrollSettingsWindow	Restricted	16
PayrollSummaryView	Restricted	16
PhilHealthContributionView	Restricted	16
PlantillaRecordsView	Restricted	16
PositionView	Restricted	16
PromotionApprovalView	Restricted	16
RateTypeView	Restricted	16
RenewalApprovalView	Restricted	16
ResignationView	Restricted	16
RFIDParameterWindow	Restricted	16
SalaryAdjustmentApprovalView	Restricted	16
SalaryGradeView	Restricted	16
SchedulesReportView	Restricted	16
SchedulesView	Restricted	16
SectionView	Restricted	16
SeparationApprovalView	Restricted	16
SeparationsView	Restricted	16
SSSContribution	Restricted	16
StepIncrementApprovalView	Restricted	16
SystemParameterWindow	Restricted	16
SystemUsersView	Restricted	16
TaxReportsIrregularView	Restricted	16
TaxReportsView	Restricted	16
TimeApprovalView	Restricted	16
TransferApprovalView	Restricted	16
TravelOrderView	Restricted	16
VisitorsView	Restricted	16
WithholdingTaxView	Restricted	16
CreditsComputationView	Full	17
EmployeeLeavesView	Full	17
HolidayView	Full	17
HumanResourceManagementView	Full	17
LeaveTypeView	Full	17
LeaveView	Full	17
MonitizedLeaveCreditsView	Full	17
AdvertisementImagesView	Restricted	17
AllowanceApplicationView	Restricted	17
AllowancesView	Restricted	17
ApplicantsView	Restricted	17
AppointmentRequestsView	Restricted	17
AuditTrailWindow	Restricted	17
AwardView	Restricted	17
CardsView	Restricted	17
DailyTimeRecordView	Restricted	17
DemotionApprovalView	Restricted	17
DepartmentView	Restricted	17
DivisionView	Restricted	17
EarningsView	Restricted	17
EmployeesMasterlistView	Restricted	17
EvaluationsView	Restricted	17
EventsView	Restricted	17
GateOfficerDashboardView	Restricted	17
GSISContributionView	Restricted	17
HDMFContributionView	Restricted	17
HumanResourcePolicyView	Restricted	17
JobVacanciesView	Restricted	17
LoanApplicationsView	Restricted	17
LoanTypeView	Restricted	17
LogMonitoringView	Restricted	17
LogReportView	Restricted	17
LoyaltyAwardsView	Restricted	17
MessageDisplayView	Restricted	17
MultipleTimeApprovalView	Restricted	17
MultipliersView	Restricted	17
NewEmployeeApprovalView	Restricted	17
NonPlantillaRecordsView	Restricted	17
NoticeOfStepIncrementView	Restricted	17
PayablesWindow	Restricted	17
PayrollDateView	Restricted	17
PayrollSettingsWindow	Restricted	17
PayrollSummaryView	Restricted	17
PermissionToLeave	Restricted	17
PhilHealthContributionView	Restricted	17
PlantillaRecordsView	Restricted	17
PositionView	Restricted	17
PromotionApprovalView	Restricted	17
RateTypeView	Restricted	17
RenewalApprovalView	Restricted	17
ResignationView	Restricted	17
RFIDParameterWindow	Restricted	17
SalaryAdjustmentApprovalView	Restricted	17
SalaryGradeView	Restricted	17
SchedulesReportView	Restricted	17
SchedulesView	Restricted	17
SectionView	Restricted	17
SeparationApprovalView	Restricted	17
SeparationsView	Restricted	17
SSSContribution	Restricted	17
StepIncrementApprovalView	Restricted	17
SystemParameterWindow	Restricted	17
SystemUsersView	Restricted	17
TaxReportsIrregularView	Restricted	17
TaxReportsView	Restricted	17
TimeApprovalView	Restricted	17
TransferApprovalView	Restricted	17
TravelOrderView	Restricted	17
VisitorsView	Restricted	17
WithholdingTaxView	Restricted	17
AdvertisementImagesView	Restricted	18
AllowanceApplicationView	Restricted	18
AllowancesView	Restricted	18
ApplicantsView	Restricted	18
AppointmentRequestsView	Restricted	18
AuditTrailWindow	Restricted	18
AwardView	Restricted	18
CardsView	Restricted	18
CreditsComputationView	Restricted	18
DemotionApprovalView	Restricted	18
DepartmentView	Restricted	18
DivisionView	Restricted	18
EmployeeLeavesView	Restricted	18
EvaluationsView	Restricted	18
EventsView	Restricted	18
GateOfficerDashboardView	Restricted	18
HumanResourceManagementView	Full	18
HumanResourcePolicyView	Restricted	18
JobVacanciesView	Restricted	18
LeaveTypeView	Restricted	18
LeaveView	Restricted	18
LoanApplicationsView	Restricted	18
LoanTypeView	Restricted	18
LoyaltyAwardsView	Restricted	18
MessageDisplayView	Restricted	18
DailyTimeRecordView	Full	18
EarningsView	Full	18
EmployeesMasterlistView	Restricted	18
GSISContributionView	Full	18
HDMFContributionView	Full	18
HolidayView	Full	18
LogMonitoringView	Full	18
LogReportView	Full	18
MonitizedLeaveCreditsView	Restricted	18
MultipliersView	Restricted	18
NewEmployeeApprovalView	Restricted	18
NoticeOfStepIncrementView	Restricted	18
PermissionToLeave	Restricted	18
PositionView	Restricted	18
PromotionApprovalView	Restricted	18
RateTypeView	Restricted	18
RenewalApprovalView	Restricted	18
ResignationView	Restricted	18
RFIDParameterWindow	Restricted	18
SalaryGradeView	Restricted	18
SectionView	Restricted	18
SeparationApprovalView	Restricted	18
SeparationsView	Restricted	18
StepIncrementApprovalView	Restricted	18
SystemParameterWindow	Restricted	18
SystemUsersView	Restricted	18
TransferApprovalView	Restricted	18
VisitorsView	Restricted	18
PayablesWindow	Full	18
PayrollDateView	Full	18
PayrollSettingsWindow	Full	18
PayrollSummaryView	Full	18
PhilHealthContributionView	Full	18
SchedulesReportView	Full	18
SchedulesView	Full	18
SSSContribution	Full	18
TaxReportsIrregularView	Full	18
TaxReportsView	Full	18
TravelOrderView	Full	18
WithholdingTaxView	Full	18
AdvertisementImagesView	Restricted	19
AllowanceApplicationView	Restricted	19
AllowancesView	Restricted	19
ApplicantsView	Full	19
AppointmentRequestsView	Full	19
AuditTrailWindow	Restricted	19
AwardView	Restricted	19
CardsView	Restricted	19
CreditsComputationView	Restricted	19
DailyTimeRecordView	Restricted	19
DemotionApprovalView	Restricted	19
DepartmentView	Restricted	19
DivisionView	Restricted	19
EarningsView	Restricted	19
EmployeeLeavesView	Restricted	19
EmployeesMasterlistView	Full	19
EvaluationsView	Restricted	19
EventsView	Restricted	19
GateOfficerDashboardView	Restricted	19
GSISContributionView	Restricted	19
HDMFContributionView	Restricted	19
HolidayView	Restricted	19
HumanResourceManagementView	Full	19
HumanResourcePolicyView	Restricted	19
JobVacanciesView	Full	19
LeaveTypeView	Restricted	19
LeaveView	Restricted	19
LoanApplicationsView	Restricted	19
LoanTypeView	Restricted	19
LogMonitoringView	Restricted	19
LogReportView	Restricted	19
LoyaltyAwardsView	Restricted	19
MessageDisplayView	Restricted	19
MonitizedLeaveCreditsView	Restricted	19
MultipleTimeApprovalView	Restricted	19
MultipliersView	Restricted	19
NonPlantillaRecordsView	Full	19
NoticeOfStepIncrementView	Restricted	19
PayablesWindow	Restricted	19
PayrollDateView	Restricted	19
PayrollSettingsWindow	Restricted	19
PayrollSummaryView	Restricted	19
PermissionToLeave	Restricted	19
PhilHealthContributionView	Restricted	19
PlantillaRecordsView	Restricted	19
PositionView	Restricted	19
PromotionApprovalView	Restricted	19
RateTypeView	Restricted	19
RenewalApprovalView	Full	19
ResignationView	Full	19
RFIDParameterWindow	Restricted	19
SalaryAdjustmentApprovalView	Restricted	19
SalaryGradeView	Restricted	19
SchedulesReportView	Restricted	19
SchedulesView	Restricted	19
SectionView	Restricted	19
SeparationApprovalView	Restricted	19
SeparationsView	Restricted	19
SSSContribution	Restricted	19
StepIncrementApprovalView	Restricted	19
OtherDeductionsView	Restricted	2
SystemParameterWindow	Restricted	19
SystemUsersView	Restricted	19
TaxReportsIrregularView	Restricted	19
TaxReportsView	Restricted	19
TimeApprovalView	Restricted	19
TransferApprovalView	Restricted	19
TravelOrderView	Restricted	19
VisitorsView	Restricted	19
WithholdingTaxView	Restricted	19
PlantillaRecordsView	Full	18
MultipleTimeApprovalView	Full	18
NonPlantillaRecordsView	Full	18
TimeApprovalView	Full	18
SalaryAdjustmentApprovalView	Full	18
AllowanceApplicationView	Full	15
AllowancesView	Full	15
EarningsView	Full	15
GSISContributionView	Full	15
HDMFContributionView	Full	15
HolidayView	Restricted	15
HumanResourcePolicyView	Full	15
LoanApplicationsView	Full	15
LoanTypeView	Full	15
MonitizedLeaveCreditsView	Full	15
MultipliersView	Full	15
PayablesWindow	Full	15
PhilHealthContributionView	Full	15
RateTypeView	Full	15
SalaryGradeView	Full	15
SSSContribution	Full	15
SystemParameterWindow	Full	15
TaxReportsIrregularView	Full	15
TaxReportsView	Full	15
WithholdingTaxView	Full	15
OtherDeductionsView	Full	15
AdvertisementImagesView	Restricted	20
AllowanceApplicationView	Restricted	20
AllowancesView	Restricted	20
ApplicantsView	Full	20
AppointmentRequestsView	Restricted	20
AuditTrailWindow	Restricted	20
AwardView	Restricted	20
CardsView	Restricted	20
CreditsComputationView	Restricted	20
DailyTimeRecordView	Restricted	20
DeductionTypesView	Restricted	20
DemotionApprovalView	Restricted	20
DepartmentView	Restricted	20
DivisionView	Restricted	20
EarningsView	Restricted	20
EmployeeLeavesView	Restricted	20
EmployeesMasterlistView	Restricted	20
EvaluationsView	Restricted	20
EventsView	Restricted	20
GateOfficerDashboardView	Restricted	20
GSISContributionView	Restricted	20
HDMFContributionView	Restricted	20
HolidayView	Restricted	20
HumanResourceManagementView	Full	20
HumanResourcePolicyView	Restricted	20
JobVacanciesView	Full	20
LeaveTypeView	Restricted	20
LeaveView	Restricted	20
LoanApplicationsView	Restricted	20
LoanTypeView	Restricted	20
LocatorSlipsView	Restricted	20
LogMonitoringView	Restricted	20
LogReportView	Restricted	20
LoyaltyAwardsView	Restricted	20
MessageDisplayView	Restricted	20
MonitizedLeaveCreditsView	Restricted	20
MultipleTimeApprovalView	Restricted	20
MultipliersView	Restricted	20
NewEmployeeApprovalView	Restricted	20
NoticeOfStepIncrementView	Restricted	20
OtherDeductionsView	Restricted	20
PayablesWindow	Restricted	20
PayrollDateView	Restricted	20
PayrollSettingsWindow	Restricted	20
PayrollSummaryView	Restricted	20
PermissionToLeave	Restricted	20
PhilHealthContributionView	Restricted	20
PositionView	Restricted	20
PromotionApprovalView	Restricted	20
RateTypeView	Restricted	20
RenewalApprovalView	Restricted	20
ResignationView	Restricted	20
RFIDParameterWindow	Restricted	20
SalaryAdjustmentApprovalView	Restricted	20
SalaryGradeView	Restricted	20
SchedulesReportView	Restricted	20
SchedulesView	Restricted	20
SectionView	Restricted	20
SeparationApprovalView	Restricted	20
SeparationsView	Restricted	20
SSSContribution	Restricted	20
StepIncrementApprovalView	Restricted	20
NonPlantillaRecordsView	Full	20
SystemParameterWindow	Restricted	20
SystemUsersView	Restricted	20
TaxReportsIrregularView	Restricted	20
TaxReportsView	Restricted	20
TimeApprovalView	Restricted	20
TransferApprovalView	Restricted	20
TravelOrderView	Restricted	20
VisitorsView	Restricted	20
WithholdingTaxView	Restricted	20
DeductionTypesView	Restricted	17
LocatorSlipsView	Full	17
OtherDeductionsView	Restricted	17
PlantillaRecordsView	Full	20
DeductionTypesView	Restricted	1
EmployeeDashboardView	Restricted	1
LocatorSlipsView	Restricted	1
OtherDeductionsView	Restricted	1
DeductionTypesView	Restricted	2
EmployeeDashboardView	Read	2
LocatorSlipsView	Restricted	2
MultipleTimeApprovalView	Restricted	2
PermissionToLeave	Restricted	2
DeductionTypesView	Restricted	19
EmployeeDashboardView	Full	19
LocatorSlipsView	Restricted	19
OtherDeductionsView	Restricted	19
EmployeeDashboardView	Restricted	20
EmployeeDashboardView	Full	17
DeductionTypesView	Restricted	13
LocatorSlipsView	Restricted	13
OtherDeductionsView	Restricted	13
DeductionTypesView	Restricted	4
OtherDeductionsView	Restricted	4
DeductionTypesView	Restricted	14
EmployeeDashboardView	Restricted	14
LocatorSlipsView	Restricted	14
OtherDeductionsView	Restricted	14
DeductionTypesView	Restricted	5
EmployeeDashboardView	Restricted	5
LocatorSlipsView	Restricted	5
OtherDeductionsView	Restricted	5
EmployeeDashboardView	Full	4
DeductionTypesView	Restricted	12
EmployeeDashboardView	Restricted	12
LocatorSlipsView	Restricted	12
OtherDeductionsView	Restricted	12
HumanResourceManagementView	Read	15
ApplicantsView	Full	13
JobVacanciesView	Full	13
NewEmployeeApprovalView	Full	13
NonPlantillaRecordsView	Restricted	2
EmployeeDashboardView	Full	13
ApplicantsView	Full	1
AppointmentRequestsView	Full	1
NewEmployeeApprovalView	Full	1
HumanResourcePolicyView	Full	12
NewEmployeeApprovalView	Full	12
JobVacanciesView	Full	15
NewEmployeeApprovalView	Full	15
NonPlantillaRecordsView	Full	15
DeductionTypesView	Full	15
EmployeeDashboardView	Full	15
LocatorSlipsView	Full	15
LogMonitoringView	Full	15
LogReportView	Full	15
SchedulesReportView	Full	15
SchedulesView	Full	15
TravelOrderView	Full	15
DailyTimeRecordView	Full	15
PromotionApprovalView	Full	1
RateTypeView	Full	1
ResignationView	Full	1
TransferApprovalView	Full	1
NewEmployeeApprovalView	Full	19
LocatorSlipsView	Full	4
AdvertisementImagesView	Full	21
AllowanceApplicationView	Full	21
AllowancesView	Full	21
ApplicantsView	Full	21
AppointmentRequestsView	Full	21
AuditTrailWindow	Full	21
AwardView	Full	21
CardsView	Full	21
CreditsComputationView	Full	21
DailyTimeRecordView	Full	21
DeductionTypesView	Restricted	21
DemotionApprovalView	Full	21
DepartmentView	Full	21
DivisionView	Full	21
EarningsView	Full	21
EmployeeDashboardView	Full	21
EmployeeLeavesView	Full	21
EmployeesMasterlistView	Full	21
EvaluationsView	Full	21
EventsView	Full	21
GateOfficerDashboardView	Full	21
GSISContributionView	Full	21
HDMFContributionView	Full	21
HolidayView	Full	21
HumanResourceManagementView	Full	21
HumanResourcePolicyView	Full	21
JobVacanciesView	Full	21
LeaveTypeView	Full	21
LeaveView	Full	21
LoanApplicationsView	Full	21
LoanTypeView	Full	21
LocatorSlipsView	Full	21
LogMonitoringView	Full	21
LogReportView	Full	21
LoyaltyAwardsView	Full	21
MessageDisplayView	Full	21
MonitizedLeaveCreditsView	Full	21
MultipleTimeApprovalView	Full	21
MultipliersView	Full	21
NewEmployeeApprovalView	Full	21
NonPlantillaRecordsView	Full	21
NoticeOfStepIncrementView	Full	21
OtherDeductionsView	Restricted	21
PayablesWindow	Full	21
PayrollDateView	Full	21
PayrollSettingsWindow	Full	21
PayrollSummaryView	Full	21
PermissionToLeave	Full	21
PhilHealthContributionView	Full	21
PlantillaRecordsView	Full	21
PositionView	Full	21
PromotionApprovalView	Full	21
RateTypeView	Full	21
RenewalApprovalView	Full	21
ResignationView	Full	21
RFIDParameterWindow	Full	21
SalaryAdjustmentApprovalView	Full	21
SalaryGradeView	Full	21
SchedulesReportView	Full	21
SchedulesView	Full	21
SectionView	Full	21
SeparationApprovalView	Full	21
SeparationsView	Full	21
SSSContribution	Full	21
StepIncrementApprovalView	Full	21
SystemParameterWindow	Full	21
SystemUsersView	Full	21
TaxReportsIrregularView	Full	21
TaxReportsView	Full	21
TimeApprovalView	Full	21
TransferApprovalView	Full	21
TravelOrderView	Full	21
VisitorsView	Full	21
WithholdingTaxView	Full	21
\.


--
-- TOC entry 4074 (class 0 OID 17853)
-- Dependencies: 452
-- Data for Name: Users; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Users" ("Username", "DisplayName", "Password", "Id", "BasicInformationId", "EmployeeGroupId", "CustomEmployeeGroupId") FROM stdin;
admin	Administrator	21232f297a57a5a743894a0e4a801fc3	1	1	4	0
\.


--
-- TOC entry 4683 (class 0 OID 0)
-- Dependencies: 453
-- Name: Users_Id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Users_Id_seq"', 37, true);


--
-- TOC entry 4076 (class 0 OID 17861)
-- Dependencies: 454
-- Data for Name: ViolationPolicies; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "ViolationPolicies" ("ViolationPolicyId", "ViolationName", "NumberOfOffense", "Punishment") FROM stdin;
\.


--
-- TOC entry 4684 (class 0 OID 0)
-- Dependencies: 455
-- Name: ViolationPolicies_ViolationPolicyId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"ViolationPolicies_ViolationPolicyId_seq"', 7, true);


--
-- TOC entry 4078 (class 0 OID 17869)
-- Dependencies: 456
-- Data for Name: Violations; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Violations" ("ViolationId", "ViolationDescription") FROM stdin;
\.


--
-- TOC entry 4079 (class 0 OID 17875)
-- Dependencies: 457
-- Data for Name: ViolationsAndSanctions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "ViolationsAndSanctions" ("ViolationAndSanctionId", "ViolationId", "SanctionId", "NumberOfOffense") FROM stdin;
\.


--
-- TOC entry 4685 (class 0 OID 0)
-- Dependencies: 458
-- Name: ViolationsAndSanctions_ViolationAndSanctionId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"ViolationsAndSanctions_ViolationAndSanctionId_seq"', 39, true);


--
-- TOC entry 4686 (class 0 OID 0)
-- Dependencies: 459
-- Name: Violations_ViolationId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Violations_ViolationId_seq"', 29, true);


--
-- TOC entry 4082 (class 0 OID 17882)
-- Dependencies: 460
-- Data for Name: VisitorLogs; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "VisitorLogs" ("VisitorLogId", "CardId", "VisitorId", "TimeInDate", "TimeIn", "TimeOutDate", "TimeOut", "Purpose", "Remarks") FROM stdin;
\.


--
-- TOC entry 4687 (class 0 OID 0)
-- Dependencies: 461
-- Name: VisitorLogs_VisitorLogId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"VisitorLogs_VisitorLogId_seq"', 1, false);


--
-- TOC entry 4084 (class 0 OID 17890)
-- Dependencies: 462
-- Data for Name: Visitors; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "Visitors" ("VisitorId", "FirstName", "MiddleName", "LastName", "FullName", "Type", "CompanyName", "ContactNumber", "ImageName") FROM stdin;
\.


--
-- TOC entry 4688 (class 0 OID 0)
-- Dependencies: 463
-- Name: Visitors_VisitorId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"Visitors_VisitorId_seq"', 3, true);


--
-- TOC entry 4689 (class 0 OID 0)
-- Dependencies: 465
-- Name: WithholdingTaxStatus_WithholdingTaxStatusId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"WithholdingTaxStatus_WithholdingTaxStatusId_seq"', 9, true);


--
-- TOC entry 4690 (class 0 OID 0)
-- Dependencies: 467
-- Name: WithholdingTax_WithholdingTaxId_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('"WithholdingTax_WithholdingTaxId_seq"', 362, true);


--
-- TOC entry 4088 (class 0 OID 17908)
-- Dependencies: 466
-- Data for Name: WithholdingTaxes; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "WithholdingTaxes" ("WithholdingTaxId", "BracketNumber", "TaxRate", "InExcessFactor", "WithholdingTaxStatusId", "Duration", "MaxSalaryBase", "MinSalaryBase", "DateImplemented", "ValidUntil") FROM stdin;
154	1	0.00	0.00	1	Daily	0.00	0.00	2009-01-01	
232	7	961.54	0.30	4	Weekly	11537.99	6731.00	2009-01-01	
163	2	0.00	0.05	2	Daily	197.99	165.00	2009-01-01	
173	4	8.25	0.15	3	Daily	478.99	347.00	2009-01-01	
177	8	412.54	0.32	3	Daily	99999999.00	1898.00	2009-01-01	
203	2	0.00	0.05	1	Weekly	191.99	0.00	2009-01-01	
202	1	0.00	0.00	1	Weekly	0.00	0.00	2009-01-01	
219	2	0.00	0.05	3	Weekly	1634.99	1442.00	2009-01-01	
227	2	0.00	0.05	4	Weekly	2114.99	1923.00	2009-01-01	
222	5	163.46	0.20	3	Weekly	4134.99	2788.00	2009-01-01	
221	4	48.08	0.15	3	Weekly	2787.99	2019.00	2009-01-01	
223	6	432.00	0.25	3	Weekly	6249.99	4135.00	2009-01-01	
218	1	0.00	0.00	3	Weekly	1441.99	0.00	2009-01-01	
229	4	48.08	0.15	4	Weekly	3268.99	2500.00	2009-01-01	
155	2	0.00	0.05	1	Daily	32.99	0.00	2009-01-01	
157	4	8.25	0.15	1	Daily	230.99	99.00	2009-01-01	
158	5	28.05	0.20	1	Daily	461.99	231.00	2009-01-01	
159	6	74.26	0.25	1	Daily	824.99	462.00	2009-01-01	
161	8	412.54	0.32	1	Daily	99999999.00	1650.00	2009-01-01	
171	2	0.00	0.05	3	Daily	280.99	248.00	2009-01-01	
165	4	8.25	0.15	2	Daily	395.99	264.00	2009-01-01	
166	5	28.05	0.20	2	Daily	461.99	396.00	2009-01-01	
167	6	74.26	0.25	2	Daily	824.99	462.00	2009-01-01	
168	7	165.02	0.30	2	Daily	1814.99	825.00	2009-01-01	
169	8	412.54	0.32	2	Daily	99999999.00	1815.00	2009-01-01	
162	1	0.00	0.00	2	Daily	164.99	0.00	2009-01-01	
187	2	0.00	0.05	5	Daily	445.99	413.00	2009-01-01	
174	5	28.05	0.20	3	Daily	709.99	479.00	2009-01-01	
175	6	74.26	0.25	3	Daily	1072.99	710.00	2009-01-01	
176	7	165.02	0.30	3	Daily	1897.99	1073.00	2009-01-01	
170	1	0.00	0.00	3	Daily	247.99	0.00	2009-01-01	
181	4	8.25	0.15	4	Daily	560.99	429.00	2009-01-01	
182	5	28.05	0.20	4	Daily	791.99	561.00	2009-01-01	
183	6	74.26	0.25	4	Daily	1154.99	792.00	2009-01-01	
184	7	165.02	0.30	4	Daily	1979.99	1155.00	2009-01-01	
185	8	412.54	0.32	4	Daily	99999999.00	1980.00	2009-01-01	
178	1	0.00	0.00	4	Daily	329.99	0.00	2009-01-01	
195	2	0.00	0.05	6	Daily	527.99	495.00	2009-01-01	
189	4	8.25	0.15	5	Daily	643.99	512.00	2009-01-01	
190	5	28.05	0.20	5	Daily	874.99	644.00	2009-01-01	
191	6	74.26	0.25	5	Daily	1237.99	875.00	2009-01-01	
192	7	165.02	0.30	5	Daily	2062.99	1238.00	2009-01-01	
193	8	412.54	0.32	5	Daily	99999999.00	2063.00	2009-01-01	
197	4	8.25	0.15	6	Daily	725.99	594.00	2009-01-01	
198	5	28.05	0.20	6	Daily	956.99	726.00	2009-01-01	
199	6	74.26	0.25	6	Daily	1319.99	957.00	2009-01-01	
200	7	165.02	0.30	6	Daily	2144.99	1320.00	2009-01-01	
201	8	412.54	0.32	6	Daily	99999999.00	2145.00	2009-01-01	
211	2	0.00	0.05	2	Weekly	1153.99	962.00	2009-01-01	
205	4	48.08	0.15	1	Weekly	1345.99	577.00	2009-01-01	
206	5	163.16	0.20	1	Weekly	2691.99	1346.00	2009-01-01	
207	6	432.69	0.25	1	Weekly	4807.99	2692.00	2009-01-01	
208	7	961.54	0.30	1	Weekly	9614.99	4808.00	2009-01-01	
209	8	2403.85	0.32	1	Weekly	99999999.00	9615.00	2009-01-01	
186	1	0.00	0.00	5	Daily	412.99	0.00	2009-01-01	
213	4	48.08	0.15	2	Weekly	2307.99	1538.00	2009-01-01	
215	6	432.69	0.25	2	Weekly	5768.99	3654.00	2009-01-01	
216	7	961.54	0.30	2	Weekly	10576.99	5769.00	2009-01-01	
217	8	2403.85	0.32	2	Weekly	99999999.00	10577.00	2009-01-01	
210	1	0.00	0.00	2	Weekly	961.99	0.00	2009-01-01	
224	7	961.54	0.30	3	Weekly	11057.99	6250.00	2009-01-01	
225	8	2403.85	0.32	3	Weekly	99999999.00	11058.00	2009-01-01	
235	2	0.00	0.05	5	Weekly	2595.99	2404.00	2009-01-01	
230	5	163.46	0.20	4	Weekly	4614.99	3269.00	2009-01-01	
231	6	432.69	0.25	4	Weekly	6730.99	4615.00	2009-01-01	
233	8	2403.85	0.32	4	Weekly	99999999.00	11538.00	2009-01-01	
226	1	0.00	0.00	4	Weekly	1922.99	0.00	2009-01-01	
243	2	0.00	0.05	6	Weekly	3076.99	2885.00	2009-01-01	
237	4	48.08	0.15	5	Weekly	3749.99	2981.00	2009-01-01	
238	5	163.46	0.20	5	Weekly	5095.99	3750.00	2009-01-01	
240	7	961.54	0.30	5	Weekly	12018.99	7212.00	2009-01-01	
241	8	2403.85	0.32	5	Weekly	99999999.00	12019.00	2009-01-01	
156	3	1.65	0.10	1	Daily	98.99	33.00	2009-01-01	
164	3	1.65	0.10	2	Daily	263.99	198.00	2009-01-01	
172	3	1.65	0.10	3	Daily	346.99	281.00	2009-01-01	
180	3	1.65	0.10	4	Daily	428.99	363.00	2009-01-01	
188	3	1.65	0.10	5	Daily	511.99	446.00	2009-01-01	
196	3	1.62	0.10	6	Daily	593.99	528.00	2009-01-01	
204	3	9.62	0.10	1	Weekly	576.99	192.00	2009-01-01	
212	3	9.62	0.10	2	Weekly	1537.99	1154.00	2009-01-01	
220	3	9.62	0.10	3	Weekly	2018.99	1635.00	2009-01-01	
228	3	9.62	0.10	4	Weekly	2499.99	2115.00	2009-01-01	
236	3	9.62	0.10	5	Weekly	2980.99	2596.00	2009-01-01	
244	3	9.62	0.10	6	Weekly	3461.99	3077.00	2009-01-01	
245	4	48.08	0.15	6	Weekly	4230.99	3462.00	2009-01-01	
246	5	163.46	0.20	6	Weekly	5576.99	4231.00	2009-01-01	
247	6	432.69	0.25	6	Weekly	7691.99	5577.00	2009-01-01	
249	8	2403.85	0.32	6	Weekly	99999999.00	12500.00	2009-01-01	
242	1	0.00	0.00	6	Weekly	2884.99	0.00	2009-01-01	
234	1	0.00	0.00	5	Weekly	2403.99	0.00	2009-01-01	
250	1	0.00	0.00	1	Semi Monthly	0.00	0.00	2009-01-01	
274	1	0.00	0.00	4	Semi Monthly	4166.99	0.00	2009-01-01	
291	2	0.00	0.05	6	Semi Monthly	6666.99	6250.00	2009-01-01	
298	1	0.00	0.00	1	Monthly	0.00	0.00	2009-01-01	
308	2	0.00	0.05	2	Monthly	4999.99	4167.00	2009-01-01	
301	4	208.33	0.15	1	Monthly	5832.99	2500.00	2009-01-01	
282	1	0.00	0.00	5	Semi Monthly	5207.99	0.00	2009-01-01	
299	2	0.00	0.05	1	Monthly	832.99	0.00	2009-01-01	
293	4	104.17	0.15	6	Semi Monthly	9166.99	7500.00	2009-01-01	
294	5	354.17	0.20	6	Semi Monthly	12082.99	9167.00	2009-01-01	
295	6	937.50	0.25	6	Semi Monthly	16666.99	12083.00	2009-01-01	
296	7	2083.33	0.30	6	Semi Monthly	27082.99	16667.00	2009-01-01	
297	8	5208.33	0.32	6	Semi Monthly	99999999.00	27083.00	2009-01-01	
300	3	41.67	0.10	1	Monthly	2499.99	833.00	2009-01-01	
331	1	0.00	0.00	5	Monthly	10416.99	0.00	2009-01-01	
332	2	0.00	0.05	5	Monthly	11249.99	10417.00	2009-01-01	
326	4	208.33	0.15	4	Monthly	14166.99	10833.00	2009-01-01	
327	5	708.33	0.20	4	Monthly	19999.99	14167.00	2009-01-01	
328	6	1875.00	0.25	4	Monthly	29166.99	20000.00	2009-01-01	
329	7	4166.67	0.30	4	Monthly	49999.99	29167.00	2009-01-01	
330	8	10416.67	0.32	4	Monthly	99999999.00	50000.00	2009-01-01	
333	3	41.67	0.10	5	Monthly	12916.99	11250.00	2009-01-01	
179	2	0.00	0.05	4	Daily	362.99	330.00	2009-01-01	
251	2	0.00	0.05	1	Semi Monthly	416.99	0.00	2009-01-01	
267	2	0.00	0.05	3	Semi Monthly	3541.99	3125.00	2009-01-01	
275	2	0.00	0.05	4	Semi Monthly	4582.99	4167.00	2009-01-01	
283	2	0.00	0.05	5	Semi Monthly	5624.99	5208.00	2009-01-01	
316	2	0.00	0.05	3	Monthly	7082.99	6250.00	2009-01-01	
324	2	0.00	0.05	4	Monthly	9166.99	8333.00	2009-01-01	
214	5	163.46	0.20	2	Weekly	3653.99	2308.00	2009-01-01	
239	6	432.69	0.25	5	Weekly	7211.99	5096.00	2009-01-01	
252	3	20.83	0.10	1	Semi Monthly	1249.99	417.00	2009-01-01	
253	4	104.17	0.15	1	Semi Monthly	2916.99	1250.00	2009-01-01	
254	5	354.17	0.20	1	Semi Monthly	5832.99	2917.00	2009-01-01	
255	6	937.50	0.25	1	Semi Monthly	10416.99	5833.00	2009-01-01	
256	7	2083.33	0.30	1	Semi Monthly	20832.99	10417.00	2009-01-01	
257	8	5208.33	0.32	1	Semi Monthly	99999999.00	20833.00	2009-01-01	
260	3	20.83	0.10	2	Semi Monthly	3332.99	2500.00	2009-01-01	
261	4	104.17	0.15	2	Semi Monthly	4999.99	3333.00	2009-01-01	
262	5	354.17	0.20	2	Semi Monthly	7916.99	5000.00	2009-01-01	
263	6	937.50	0.25	2	Semi Monthly	12499.99	7917.00	2009-01-01	
264	7	2083.33	0.30	2	Semi Monthly	22916.99	12500.00	2009-01-01	
265	8	5208.33	0.32	2	Semi Monthly	99999999.00	22917.00	2009-01-01	
268	3	20.83	0.10	3	Semi Monthly	4374.99	3542.00	2009-01-01	
269	4	104.17	0.15	3	Semi Monthly	6041.99	4375.00	2009-01-01	
270	5	354.17	0.20	3	Semi Monthly	8957.99	6042.00	2009-01-01	
272	7	2083.33	0.30	3	Semi Monthly	23957.99	13542.00	2009-01-01	
273	8	5208.33	0.32	3	Semi Monthly	99999999.00	23958.00	2009-01-01	
276	3	20.83	0.10	4	Semi Monthly	5416.99	4583.00	2009-01-01	
277	4	104.17	0.15	4	Semi Monthly	7082.99	5417.00	2009-01-01	
278	5	354.17	0.20	4	Semi Monthly	9999.99	7083.00	2009-01-01	
279	6	937.50	0.25	4	Semi Monthly	14582.99	10000.00	2009-01-01	
280	7	2083.33	0.30	4	Semi Monthly	24999.99	14583.00	2009-01-01	
281	8	5208.33	0.32	4	Semi Monthly	99999999.00	25000.00	2009-01-01	
284	3	20.83	0.10	5	Semi Monthly	6457.99	5625.00	2009-01-01	
285	4	104.17	0.15	5	Semi Monthly	8124.99	6458.00	2009-01-01	
286	5	354.17	0.20	5	Semi Monthly	11041.99	8125.00	2009-01-01	
287	6	937.50	0.25	5	Semi Monthly	15624.99	11042.00	2009-01-01	
288	7	2083.33	0.30	5	Semi Monthly	26041.99	15625.00	2009-01-01	
289	8	5208.33	0.32	5	Semi Monthly	99999999.00	26042.00	2009-01-01	
292	3	20.93	0.10	6	Semi Monthly	7499.99	6667.00	2009-01-01	
302	5	708.33	0.20	1	Monthly	11666.99	5833.00	2009-01-01	
304	6	1875.00	0.25	1	Monthly	20832.99	11667.00	2009-01-01	
305	7	4166.67	0.30	1	Monthly	41666.99	20833.00	2009-01-01	
306	8	10416.67	0.32	1	Monthly	99999999.00	41667.00	2009-01-01	
309	3	41.67	0.10	2	Monthly	6666.99	5000.00	2009-01-01	
310	4	208.33	0.15	2	Monthly	9999.99	6667.00	2009-01-01	
311	5	708.33	0.20	2	Monthly	15832.99	10000.00	2009-01-01	
313	7	4166.67	0.30	2	Monthly	45832.99	25000.00	2009-01-01	
314	8	10416.67	0.32	2	Monthly	99999999.00	45833.00	2009-01-01	
317	3	41.67	0.10	3	Monthly	8749.99	7083.00	2009-01-01	
318	4	208.33	0.15	3	Monthly	12082.99	8750.00	2009-01-01	
319	5	708.33	0.20	3	Monthly	17916.99	12083.00	2009-01-01	
320	6	1875.00	0.25	3	Monthly	27082.99	17917.00	2009-01-01	
321	7	4166.67	0.30	3	Monthly	47916.99	27083.00	2009-01-01	
322	8	10416.67	0.32	3	Monthly	99999999.00	47917.00	2009-01-01	
325	3	41.67	0.10	4	Monthly	10832.99	9167.00	2009-01-01	
334	4	208.33	0.15	5	Monthly	16249.99	12917.00	2009-01-01	
307	1	0.00	0.00	2	Monthly	4166.99	0.00	2009-01-01	
315	1	0.00	0.00	3	Monthly	6249.99	0.00	2009-01-01	
323	1	0.00	0.00	4	Monthly	8332.99	0.00	2009-01-01	
290	1	0.00	0.00	6	Semi Monthly	6249.99	0.00	2009-01-01	
266	1	0.00	0.00	3	Semi Monthly	3124.99	0.00	2009-01-01	
258	1	0.00	0.00	2	Semi Monthly	2082.99	0.00	2009-01-01	
194	1	0.00	0.00	6	Daily	494.99	0.00	2009-01-01	
160	7	165.02	0.30	1	Daily	1649.99	825.00	2009-01-01	
259	2	0.00	0.05	2	Semi Monthly	2499.99	2083.00	2009-01-01	
340	2	0.00	0.05	6	Monthly	13332.99	12500.00	2009-01-01	
248	7	961.54	0.30	6	Weekly	12499.99	7692.00	2009-01-01	
271	6	937.50	0.20	3	Semi Monthly	13541.99	8958.00	2009-01-01	
312	6	1875.00	0.25	2	Monthly	24999.99	15833.00	2009-01-01	
335	5	708.33	0.20	5	Monthly	22082.99	16250.00	2009-01-01	
336	6	1875.00	0.25	5	Monthly	31249.99	22083.00	2009-01-01	
337	7	4166.67	0.30	5	Monthly	52082.99	31250.00	2009-01-01	
338	8	10416.67	0.32	5	Monthly	99999999.00	52083.00	2009-01-01	
341	3	41.67	0.10	6	Monthly	14999.99	13333.00	2009-01-01	
342	4	208.33	0.15	6	Monthly	18332.99	15000.00	2009-01-01	
343	5	708.33	0.20	6	Monthly	24166.99	18333.00	2009-01-01	
344	6	1875.00	0.25	6	Monthly	33332.99	24167.00	2009-01-01	
345	7	4166.67	0.30	6	Monthly	54166.99	33333.00	2009-01-01	
346	8	10416.67	0.32	6	Monthly	99999999.00	54167.00	2009-01-01	
339	1	0.00	0.00	6	Monthly	12499.99	0.00	2009-01-01	
350	2	500.00	0.10	1	Annual	29999.00	10000.00	2000-01-01	
349	1	0.00	0.05	1	Annual	9999.00	0.00	2000-01-01	
351	3	2500.00	0.15	1	Annual	69999.00	30000.00	2000-01-01	
352	4	8500.00	0.20	1	Annual	139999.00	70000.00	2000-01-01	
353	5	22500.00	0.25	1	Annual	249999.00	140000.00	2000-01-01	
354	6	50000.00	0.30	1	Annual	499999.00	250000.00	2000-01-01	
355	7	125000.00	0.32	1	Annual	99999999.00	500000.00	2000-01-01	
357	1	0.00	0.00	1	Annual	250000.00	1.00	2018-01-01	12/31/2022 12:00:00 AM
358	2	0.00	0.20	1	Annual	400000.00	250000.01	2018-01-01	12/31/2022 12:00:00 AM
359	3	30000.00	0.25	1	Annual	800000.00	400000.01	2018-01-01	12/31/2022 12:00:00 AM
360	4	130000.00	0.30	1	Annual	2000000.00	800000.01	2018-01-01	12/31/2022 12:00:00 AM
361	5	490000.00	0.32	1	Annual	8000000.00	2000000.01	2018-01-01	12/31/2022 12:00:00 AM
362	6	2041000.00	0.35	1	Annual	99999999.00	8000000.01	2018-01-01	12/31/2022 12:00:00 AM
\.


--
-- TOC entry 4086 (class 0 OID 17898)
-- Dependencies: 464
-- Data for Name: WithholdingTaxesStatus; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY "WithholdingTaxesStatus" ("WithholdingTaxStatusId", "StatusCode", "Description", "PersonalExemption", "NumberofChildren") FROM stdin;
1	Z	Single	0.00	0
4	ME2 / S2	Married / Single with 2 dependents	100000.00	2
5	ME3 / S3	Married / Single with 3 dependents	125000.00	3
6	ME4 / S4	Married / Single with 4 dependents	150000.00	4
3	ME1 / S1	Married / Single with 1 dependent	75000.00	1
2	S/ME	Single/Married	50000.00	0
9	Y	Separated	5000.00	2
\.


--
-- TOC entry 3481 (class 2606 OID 18066)
-- Name: Adjustments_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Adjustments"
    ADD CONSTRAINT "Adjustments_pkey" PRIMARY KEY ("Id");


--
-- TOC entry 3483 (class 2606 OID 18068)
-- Name: AdvertisementImages_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "AdvertisementImages"
    ADD CONSTRAINT "AdvertisementImages_pkey" PRIMARY KEY ("AdId");


--
-- TOC entry 3485 (class 2606 OID 18070)
-- Name: AllowanceRates_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "AllowanceRates"
    ADD CONSTRAINT "AllowanceRates_pkey" PRIMARY KEY ("AllowanceRateId");


--
-- TOC entry 3487 (class 2606 OID 18072)
-- Name: AllowanceTypes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "AllowanceTypes"
    ADD CONSTRAINT "AllowanceTypes_pkey" PRIMARY KEY ("AllowanceTypeId");


--
-- TOC entry 3489 (class 2606 OID 18074)
-- Name: Allowances_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Allowances"
    ADD CONSTRAINT "Allowances_pkey" PRIMARY KEY ("AllowanceId");


--
-- TOC entry 3491 (class 2606 OID 18076)
-- Name: AnnulLeaveCredits_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "AnnualLeaveCredits"
    ADD CONSTRAINT "AnnulLeaveCredits_pkey" PRIMARY KEY ("AnnualLeaveCreditId");


--
-- TOC entry 3493 (class 2606 OID 18078)
-- Name: ApplicationPolicies_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "ApplicationPolicies"
    ADD CONSTRAINT "ApplicationPolicies_pkey" PRIMARY KEY ("ApplicationPolicyId");


--
-- TOC entry 3495 (class 2606 OID 18080)
-- Name: AppliedPremiumsPolicies_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "AppliedPremiumsPolicies"
    ADD CONSTRAINT "AppliedPremiumsPolicies_pkey" PRIMARY KEY ("AppliedPremiumsPolicyId");


--
-- TOC entry 3497 (class 2606 OID 18082)
-- Name: ApprovedLogs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "ApprovedLogs"
    ADD CONSTRAINT "ApprovedLogs_pkey" PRIMARY KEY ("ApprovedLogId");


--
-- TOC entry 3499 (class 2606 OID 18084)
-- Name: AuditTrails_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "AuditTrails"
    ADD CONSTRAINT "AuditTrails_pkey" PRIMARY KEY ("AuditTrailId");


--
-- TOC entry 3501 (class 2606 OID 18086)
-- Name: BankAccounts_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "BankAccounts"
    ADD CONSTRAINT "BankAccounts_pkey" PRIMARY KEY ("BankAccountNumber");


--
-- TOC entry 3503 (class 2606 OID 18088)
-- Name: BasicInformation_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "BasicInformation"
    ADD CONSTRAINT "BasicInformation_pkey" PRIMARY KEY ("BasicInformationId");


--
-- TOC entry 3505 (class 2606 OID 18090)
-- Name: BonusTypes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "BonusTypes"
    ADD CONSTRAINT "BonusTypes_pkey" PRIMARY KEY ("BonusTypeId");


--
-- TOC entry 3507 (class 2606 OID 18092)
-- Name: Breaks_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Breaks"
    ADD CONSTRAINT "Breaks_pkey" PRIMARY KEY ("BreakId");


--
-- TOC entry 3509 (class 2606 OID 18094)
-- Name: Cards_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Cards"
    ADD CONSTRAINT "Cards_pkey" PRIMARY KEY ("CardId");


--
-- TOC entry 3511 (class 2606 OID 18096)
-- Name: CharacterReferences_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "CharacterReferences"
    ADD CONSTRAINT "CharacterReferences_pkey" PRIMARY KEY ("CharacterReferenceId");


--
-- TOC entry 3513 (class 2606 OID 18098)
-- Name: Children_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Children"
    ADD CONSTRAINT "Children_pkey" PRIMARY KEY ("ChildrenId");


--
-- TOC entry 3515 (class 2606 OID 18100)
-- Name: CommunityServices_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "CommunityServices"
    ADD CONSTRAINT "CommunityServices_pkey" PRIMARY KEY ("CommunityServiceId");


--
-- TOC entry 3517 (class 2606 OID 18102)
-- Name: Companies_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Companies"
    ADD CONSTRAINT "Companies_pkey" PRIMARY KEY ("CompanyId");


--
-- TOC entry 3519 (class 2606 OID 18104)
-- Name: ContributionMemberships_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "ContributionMemberships"
    ADD CONSTRAINT "ContributionMemberships_pkey" PRIMARY KEY ("ContributionMembershipId");


--
-- TOC entry 3521 (class 2606 OID 18106)
-- Name: ContributionTypes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "ContributionTypes"
    ADD CONSTRAINT "ContributionTypes_pkey" PRIMARY KEY ("ContributionTypeId");


--
-- TOC entry 3523 (class 2606 OID 18108)
-- Name: Courses_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Courses"
    ADD CONSTRAINT "Courses_pkey" PRIMARY KEY ("CourseId");


--
-- TOC entry 3525 (class 2606 OID 18110)
-- Name: Credentials_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Credentials"
    ADD CONSTRAINT "Credentials_pkey" PRIMARY KEY ("CredentialId");


--
-- TOC entry 3527 (class 2606 OID 18112)
-- Name: CreditsComputationDates_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "CreditsComputationDates"
    ADD CONSTRAINT "CreditsComputationDates_pkey" PRIMARY KEY ("CreditsComputationDateId");


--
-- TOC entry 3529 (class 2606 OID 18114)
-- Name: DailyLeaveCredits_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "DailyLeaveCredits"
    ADD CONSTRAINT "DailyLeaveCredits_pkey" PRIMARY KEY ("DailyLeaveCreditId");


--
-- TOC entry 3531 (class 2606 OID 18116)
-- Name: DayConversionValues_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "DayConversionValues"
    ADD CONSTRAINT "DayConversionValues_pkey" PRIMARY KEY ("DayConversionValueId");


--
-- TOC entry 3533 (class 2606 OID 18118)
-- Name: DeductionTypes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "DeductionTypes"
    ADD CONSTRAINT "DeductionTypes_pkey" PRIMARY KEY ("DeductionTypeId");


--
-- TOC entry 3535 (class 2606 OID 18120)
-- Name: Departments_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Departments"
    ADD CONSTRAINT "Departments_pkey" PRIMARY KEY ("DepartmentId");


--
-- TOC entry 3537 (class 2606 OID 18122)
-- Name: DistributionReleases_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "DistributionReleases"
    ADD CONSTRAINT "DistributionReleases_pkey" PRIMARY KEY ("DistributionEntryId");


--
-- TOC entry 3539 (class 2606 OID 18124)
-- Name: Distributions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Distributions"
    ADD CONSTRAINT "Distributions_pkey" PRIMARY KEY ("DistributionId");


--
-- TOC entry 3541 (class 2606 OID 18126)
-- Name: Divisions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Divisions"
    ADD CONSTRAINT "Divisions_pkey" PRIMARY KEY ("DivisionId");


--
-- TOC entry 3543 (class 2606 OID 18128)
-- Name: EducationalBackground_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "EducationalBackgrounds"
    ADD CONSTRAINT "EducationalBackground_pkey" PRIMARY KEY ("EducationalBackgroundId");


--
-- TOC entry 3545 (class 2606 OID 18130)
-- Name: Eligibilities_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Eligibilities"
    ADD CONSTRAINT "Eligibilities_pkey" PRIMARY KEY ("EligibilityId");


--
-- TOC entry 3547 (class 2606 OID 18132)
-- Name: EligibilityDocumentTypes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "EligibilityDocumentTypes"
    ADD CONSTRAINT "EligibilityDocumentTypes_pkey" PRIMARY KEY ("EligibilityDocumentTypeId");


--
-- TOC entry 3549 (class 2606 OID 18134)
-- Name: EligibilityProcessStatuses_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "EligibilityProcessStatuses"
    ADD CONSTRAINT "EligibilityProcessStatuses_pkey" PRIMARY KEY ("EligibilityProcessStatusId");


--
-- TOC entry 3551 (class 2606 OID 18136)
-- Name: EmployeeAllowances_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "EmployeeAllowances"
    ADD CONSTRAINT "EmployeeAllowances_pkey" PRIMARY KEY ("EmployeeAllowanceId");


--
-- TOC entry 3553 (class 2606 OID 18138)
-- Name: EmployeeAwards_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "EmployeeAwards"
    ADD CONSTRAINT "EmployeeAwards_pkey" PRIMARY KEY ("EmployeeAwardId");


--
-- TOC entry 3557 (class 2606 OID 18140)
-- Name: EmployeeCards_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "EmployeeCards"
    ADD CONSTRAINT "EmployeeCards_pkey" PRIMARY KEY ("CardId");


--
-- TOC entry 3559 (class 2606 OID 18142)
-- Name: EmployeeDeductions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "EmployeeDeductions"
    ADD CONSTRAINT "EmployeeDeductions_pkey" PRIMARY KEY ("EmployeeDeductionId");


--
-- TOC entry 3561 (class 2606 OID 18144)
-- Name: EmployeeEarnings_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "EmployeeEarnings"
    ADD CONSTRAINT "EmployeeEarnings_pkey" PRIMARY KEY ("EarningId");


--
-- TOC entry 3563 (class 2606 OID 18146)
-- Name: EmployeeLogs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "EmployeeLogs"
    ADD CONSTRAINT "EmployeeLogs_pkey" PRIMARY KEY ("EmployeeLogId");


--
-- TOC entry 3565 (class 2606 OID 18148)
-- Name: EmployeePremiumContributions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "EmployeePremiumContributions"
    ADD CONSTRAINT "EmployeePremiumContributions_pkey" PRIMARY KEY ("EmployeePremiumContributionId");


--
-- TOC entry 3567 (class 2606 OID 18150)
-- Name: EmployeeRelatives_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "EmployeeRelatives"
    ADD CONSTRAINT "EmployeeRelatives_pkey" PRIMARY KEY ("EmployeeRelativeId");


--
-- TOC entry 3569 (class 2606 OID 18152)
-- Name: EmployeeSchedules_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "EmployeeSchedules"
    ADD CONSTRAINT "EmployeeSchedules_pkey" PRIMARY KEY ("EmployeeScheduleId");


--
-- TOC entry 3571 (class 2606 OID 18154)
-- Name: EmployeeTrainings_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "EmployeeTrainings"
    ADD CONSTRAINT "EmployeeTrainings_pkey" PRIMARY KEY ("EmployeeTrainingId");


--
-- TOC entry 3573 (class 2606 OID 18156)
-- Name: EmployeeViolations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "EmployeeViolations"
    ADD CONSTRAINT "EmployeeViolations_pkey" PRIMARY KEY ("EmployeeViolationId");


--
-- TOC entry 3577 (class 2606 OID 18158)
-- Name: EmployeeWeeklySchedulesMembers_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "EmployeeWeeklySchedulesMembers"
    ADD CONSTRAINT "EmployeeWeeklySchedulesMembers_pkey" PRIMARY KEY ("EmployeeWeeklySchedulesMemberId");


--
-- TOC entry 3575 (class 2606 OID 18160)
-- Name: EmployeeWeeklySchedules_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "EmployeeWeeklySchedules"
    ADD CONSTRAINT "EmployeeWeeklySchedules_pkey" PRIMARY KEY ("EmployeeWeeklyScheduleId");


--
-- TOC entry 3555 (class 2606 OID 18162)
-- Name: EmployeeWithholdingTaxes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "EmployeeBonuses"
    ADD CONSTRAINT "EmployeeWithholdingTaxes_pkey" PRIMARY KEY ("EmployeeBonusId");


--
-- TOC entry 3579 (class 2606 OID 18164)
-- Name: EmployeeWithholdingTaxes_pkey1; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "EmployeeWithholdingTaxes"
    ADD CONSTRAINT "EmployeeWithholdingTaxes_pkey1" PRIMARY KEY ("EmployeeWithholdingTaxId");


--
-- TOC entry 3581 (class 2606 OID 18166)
-- Name: Employees_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Employees"
    ADD CONSTRAINT "Employees_pkey" PRIMARY KEY ("EmployeeId");


--
-- TOC entry 3585 (class 2606 OID 18168)
-- Name: EmploymentStatusPolicies_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "EmploymentStatusPolicies"
    ADD CONSTRAINT "EmploymentStatusPolicies_pkey" PRIMARY KEY ("EmploymentStatusPolicyId");


--
-- TOC entry 3583 (class 2606 OID 18170)
-- Name: EmploymentStatus_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "EmploymentStatus"
    ADD CONSTRAINT "EmploymentStatus_pkey" PRIMARY KEY ("EmploymentStatusId");


--
-- TOC entry 3587 (class 2606 OID 18172)
-- Name: EvaluationAnswers_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "EvaluationAnswers"
    ADD CONSTRAINT "EvaluationAnswers_pkey" PRIMARY KEY ("EvaluationAnswerId");


--
-- TOC entry 3589 (class 2606 OID 18174)
-- Name: EvaluationDepartments_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "EvaluationDepartments"
    ADD CONSTRAINT "EvaluationDepartments_pkey" PRIMARY KEY ("EvaluationDepartmentId");


--
-- TOC entry 3591 (class 2606 OID 18176)
-- Name: EvaluationEmployees_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "EvaluationEmployees"
    ADD CONSTRAINT "EvaluationEmployees_pkey" PRIMARY KEY ("EvaluationEmployeeId");


--
-- TOC entry 3593 (class 2606 OID 18178)
-- Name: EvaluationIpcrItems_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "EvaluationIpcrItems"
    ADD CONSTRAINT "EvaluationIpcrItems_pkey" PRIMARY KEY ("EvaluationIpcrItemId");


--
-- TOC entry 3595 (class 2606 OID 18180)
-- Name: EvaluationOverallAnswers_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "EvaluationOverallAnswers"
    ADD CONSTRAINT "EvaluationOverallAnswers_pkey" PRIMARY KEY ("EvaluationOverallAnswerId");


--
-- TOC entry 3597 (class 2606 OID 18182)
-- Name: EvaluationQuestionTypes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "EvaluationQuestionTypes"
    ADD CONSTRAINT "EvaluationQuestionTypes_pkey" PRIMARY KEY ("QuestionTypeId");


--
-- TOC entry 3599 (class 2606 OID 18184)
-- Name: EvaluationQuestions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "EvaluationQuestions"
    ADD CONSTRAINT "EvaluationQuestions_pkey" PRIMARY KEY ("EvaluationQuestionId");


--
-- TOC entry 3601 (class 2606 OID 18186)
-- Name: EvaluationRateTypes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "EvaluationRateTypes"
    ADD CONSTRAINT "EvaluationRateTypes_pkey" PRIMARY KEY ("RateNumber");


--
-- TOC entry 3603 (class 2606 OID 18188)
-- Name: EvaluationRatings_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "EvaluationRatings"
    ADD CONSTRAINT "EvaluationRatings_pkey" PRIMARY KEY ("RatingId");


--
-- TOC entry 3605 (class 2606 OID 18190)
-- Name: Evaluations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Evaluations"
    ADD CONSTRAINT "Evaluations_pkey" PRIMARY KEY ("EvaluationId");


--
-- TOC entry 3607 (class 2606 OID 18192)
-- Name: Event_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Events"
    ADD CONSTRAINT "Event_pkey" PRIMARY KEY ("EventId");


--
-- TOC entry 3609 (class 2606 OID 18194)
-- Name: Expenses_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Expenses"
    ADD CONSTRAINT "Expenses_pkey" PRIMARY KEY ("ExpenseId");


--
-- TOC entry 3611 (class 2606 OID 18196)
-- Name: Experiences_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Experiences"
    ADD CONSTRAINT "Experiences_pkey" PRIMARY KEY ("ExperienceId");


--
-- TOC entry 3613 (class 2606 OID 18198)
-- Name: FaceScannerDevices_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "FaceScannerDevices"
    ADD CONSTRAINT "FaceScannerDevices_pkey" PRIMARY KEY ("FaceScannerDeviceId");


--
-- TOC entry 3615 (class 2606 OID 18200)
-- Name: FaceScannerLogs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "FaceScannerLogs"
    ADD CONSTRAINT "FaceScannerLogs_pkey" PRIMARY KEY ("FaceScannerLogId");


--
-- TOC entry 3617 (class 2606 OID 18202)
-- Name: FlapBarriers_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "FlapBarriers"
    ADD CONSTRAINT "FlapBarriers_pkey" PRIMARY KEY ("FlapBarrierId");


--
-- TOC entry 3619 (class 2606 OID 18204)
-- Name: GSISContributions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "GSISContributions"
    ADD CONSTRAINT "GSISContributions_pkey" PRIMARY KEY ("GSISContributionId");


--
-- TOC entry 3621 (class 2606 OID 18206)
-- Name: GeneralPolicies_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "GeneralPolicies"
    ADD CONSTRAINT "GeneralPolicies_pkey" PRIMARY KEY ("GeneralPolicyId");


--
-- TOC entry 3623 (class 2606 OID 18208)
-- Name: HDMFContribution_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "HDMFContributions"
    ADD CONSTRAINT "HDMFContribution_pkey" PRIMARY KEY ("HDMFBracketId");


--
-- TOC entry 3625 (class 2606 OID 18210)
-- Name: HolidayMultipliers_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "HolidayMultipliers"
    ADD CONSTRAINT "HolidayMultipliers_pkey" PRIMARY KEY ("HolidayMultiplierId");


--
-- TOC entry 3627 (class 2606 OID 18212)
-- Name: HolidayPolicies_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "HolidayPolicies"
    ADD CONSTRAINT "HolidayPolicies_pkey" PRIMARY KEY ("HolidayPolicyId");


--
-- TOC entry 3629 (class 2606 OID 18214)
-- Name: Holidays_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Holidays"
    ADD CONSTRAINT "Holidays_pkey" PRIMARY KEY ("HolidayId");


--
-- TOC entry 3631 (class 2606 OID 18216)
-- Name: Honorarias_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Honorarias"
    ADD CONSTRAINT "Honorarias_pkey" PRIMARY KEY ("EmployeeId", "Year");


--
-- TOC entry 3633 (class 2606 OID 18218)
-- Name: JobVacancies_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "JobVacancies"
    ADD CONSTRAINT "JobVacancies_pkey" PRIMARY KEY ("JobVacancyId");


--
-- TOC entry 3635 (class 2606 OID 18220)
-- Name: LeaveCredits_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "LeaveCredits"
    ADD CONSTRAINT "LeaveCredits_pkey" PRIMARY KEY ("LeaveCreditId");


--
-- TOC entry 3637 (class 2606 OID 18222)
-- Name: LeavePolicies_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "LeavePolicies"
    ADD CONSTRAINT "LeavePolicies_pkey" PRIMARY KEY ("LeavePolicyId");


--
-- TOC entry 3639 (class 2606 OID 18224)
-- Name: LeaveRecord_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "LeaveRecords"
    ADD CONSTRAINT "LeaveRecord_pkey" PRIMARY KEY ("LeaveRecordId");


--
-- TOC entry 3641 (class 2606 OID 18226)
-- Name: Leaves_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Leaves"
    ADD CONSTRAINT "Leaves_pkey" PRIMARY KEY ("LeaveId");


--
-- TOC entry 3643 (class 2606 OID 18228)
-- Name: LoanApplications_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "LoanApplications"
    ADD CONSTRAINT "LoanApplications_pkey" PRIMARY KEY ("LoanApplicationId");


--
-- TOC entry 3645 (class 2606 OID 18230)
-- Name: LoanBreakdowns_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "LoanBreakdowns"
    ADD CONSTRAINT "LoanBreakdowns_pkey" PRIMARY KEY ("LoanBreakdownId");


--
-- TOC entry 3647 (class 2606 OID 18232)
-- Name: LoanTypes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "LoanTypes"
    ADD CONSTRAINT "LoanTypes_pkey" PRIMARY KEY ("LoanTypeId");


--
-- TOC entry 3649 (class 2606 OID 18234)
-- Name: LocatorSlips_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "LocatorSlips"
    ADD CONSTRAINT "LocatorSlips_pkey" PRIMARY KEY ("LocatorSlipId");


--
-- TOC entry 3651 (class 2606 OID 18236)
-- Name: LoyaltyAwardsPolicies_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "LoyaltyAwardPolicies"
    ADD CONSTRAINT "LoyaltyAwardsPolicies_pkey" PRIMARY KEY ("LoyaltyAwardPolicyId");


--
-- TOC entry 3653 (class 2606 OID 18238)
-- Name: MemberContributionExclusions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "MemberContributionExclusions"
    ADD CONSTRAINT "MemberContributionExclusions_pkey" PRIMARY KEY ("ContributionId", "EmployeeId");


--
-- TOC entry 3655 (class 2606 OID 18240)
-- Name: Messages_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Messages"
    ADD CONSTRAINT "Messages_pkey" PRIMARY KEY ("MessageId");


--
-- TOC entry 3657 (class 2606 OID 18242)
-- Name: MonitizedLeaveCredits_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "MonitizedLeaveCredits"
    ADD CONSTRAINT "MonitizedLeaveCredits_pkey" PRIMARY KEY ("MonetizedLeaveCreditId");


--
-- TOC entry 3659 (class 2606 OID 18244)
-- Name: Multiplier_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Multipliers"
    ADD CONSTRAINT "Multiplier_pkey" PRIMARY KEY ("MultiplierId");


--
-- TOC entry 3661 (class 2606 OID 18246)
-- Name: NonPlantillaItemEntries_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "NonPlantillaItemEntries"
    ADD CONSTRAINT "NonPlantillaItemEntries_pkey" PRIMARY KEY ("NonPlantillaItemEntryId");


--
-- TOC entry 3663 (class 2606 OID 18248)
-- Name: NonPlantillaItems_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "NonPlantillaItems"
    ADD CONSTRAINT "NonPlantillaItems_pkey" PRIMARY KEY ("NonPlantillaItemId");


--
-- TOC entry 3665 (class 2606 OID 18250)
-- Name: Notifications_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Notifications"
    ADD CONSTRAINT "Notifications_pkey" PRIMARY KEY ("NotificationId");


--
-- TOC entry 3667 (class 2606 OID 18252)
-- Name: OTMultipliers_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "OTMultipliers"
    ADD CONSTRAINT "OTMultipliers_pkey" PRIMARY KEY ("OTMultiplierId");


--
-- TOC entry 3669 (class 2606 OID 18254)
-- Name: Organizations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Organizations"
    ADD CONSTRAINT "Organizations_pkey" PRIMARY KEY ("OrganizationId");


--
-- TOC entry 3671 (class 2606 OID 18256)
-- Name: OtherCharges_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "OtherCharges"
    ADD CONSTRAINT "OtherCharges_pkey" PRIMARY KEY ("OtherChargesId");


--
-- TOC entry 3673 (class 2606 OID 18258)
-- Name: OtherDeductions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "OtherDeductions"
    ADD CONSTRAINT "OtherDeductions_pkey" PRIMARY KEY ("OtherDeductionId");


--
-- TOC entry 3675 (class 2606 OID 18260)
-- Name: Overtimes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Overtimes"
    ADD CONSTRAINT "Overtimes_pkey" PRIMARY KEY ("OvertimeId");


--
-- TOC entry 3677 (class 2606 OID 18262)
-- Name: PayrollAllowances_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "PayrollAllowances"
    ADD CONSTRAINT "PayrollAllowances_pkey" PRIMARY KEY ("PayrollAllowanceId");


--
-- TOC entry 3679 (class 2606 OID 18264)
-- Name: PayrollClusters_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "PayrollClusters"
    ADD CONSTRAINT "PayrollClusters_pkey" PRIMARY KEY ("PayrollClusterId");


--
-- TOC entry 3681 (class 2606 OID 18266)
-- Name: PayrollDates_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "PayrollDates"
    ADD CONSTRAINT "PayrollDates_pkey" PRIMARY KEY ("PayrollDateId");


--
-- TOC entry 3683 (class 2606 OID 18268)
-- Name: PayrollOtherDeductions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "PayrollOtherDeductions"
    ADD CONSTRAINT "PayrollOtherDeductions_pkey" PRIMARY KEY ("PayrollOtherDeductionsId");


--
-- TOC entry 3685 (class 2606 OID 18270)
-- Name: PayrollPremiums_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "PayrollPremiums"
    ADD CONSTRAINT "PayrollPremiums_pkey" PRIMARY KEY ("PayrollPremiumId");


--
-- TOC entry 3687 (class 2606 OID 18272)
-- Name: PayrollProfiles_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "PayrollProfiles"
    ADD CONSTRAINT "PayrollProfiles_pkey" PRIMARY KEY ("PayrollProfileId");


--
-- TOC entry 3689 (class 2606 OID 18274)
-- Name: Payrolls_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Payrolls"
    ADD CONSTRAINT "Payrolls_pkey" PRIMARY KEY ("PayrollId");


--
-- TOC entry 3691 (class 2606 OID 18276)
-- Name: PermissionToLeaves_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "PermissionToLeaves"
    ADD CONSTRAINT "PermissionToLeaves_pkey" PRIMARY KEY ("PermissionToLeaveId");


--
-- TOC entry 3693 (class 2606 OID 18278)
-- Name: PersonnelActionMemoNotifications_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "PersonnelActionMemoNotifications"
    ADD CONSTRAINT "PersonnelActionMemoNotifications_pkey" PRIMARY KEY ("PersonnelActionMemoNotificationId");


--
-- TOC entry 3695 (class 2606 OID 18280)
-- Name: PersonnelActionMemos_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "PersonnelActionMemos"
    ADD CONSTRAINT "PersonnelActionMemos_pkey" PRIMARY KEY ("PersonnelActionMemoId");


--
-- TOC entry 3697 (class 2606 OID 18282)
-- Name: PhilHealthContribution_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "PhilHealthContributions"
    ADD CONSTRAINT "PhilHealthContribution_pkey" PRIMARY KEY ("PhilHealthContributionId");


--
-- TOC entry 3699 (class 2606 OID 18284)
-- Name: PlantillaRecordEntries_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "PlantillaRecordEntries"
    ADD CONSTRAINT "PlantillaRecordEntries_pkey" PRIMARY KEY ("PlantillaRecordEntryId");


--
-- TOC entry 3701 (class 2606 OID 18286)
-- Name: PlantillaRecords_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "PlantillaRecords"
    ADD CONSTRAINT "PlantillaRecords_pkey" PRIMARY KEY ("PlantillaRecordId");


--
-- TOC entry 3703 (class 2606 OID 18288)
-- Name: PositionEducationalBackgrounds_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "PositionEducationalBackgrounds"
    ADD CONSTRAINT "PositionEducationalBackgrounds_pkey" PRIMARY KEY ("PositionEducationalBackgroundId");


--
-- TOC entry 3705 (class 2606 OID 18290)
-- Name: PositionEligibilities_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "PositionEligibilities"
    ADD CONSTRAINT "PositionEligibilities_pkey" PRIMARY KEY ("PositionEligibilityId");


--
-- TOC entry 3707 (class 2606 OID 18292)
-- Name: PositionExperiences_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "PositionExperiences"
    ADD CONSTRAINT "PositionExperiences_pkey" PRIMARY KEY ("PositionExperienceId");


--
-- TOC entry 3709 (class 2606 OID 18294)
-- Name: PositionTrainings_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "PositionTrainings"
    ADD CONSTRAINT "PositionTrainings_pkey" PRIMARY KEY ("PositionTrainingId");


--
-- TOC entry 3711 (class 2606 OID 18296)
-- Name: Positions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Positions"
    ADD CONSTRAINT "Positions_pkey" PRIMARY KEY ("PositionId");


--
-- TOC entry 3713 (class 2606 OID 18298)
-- Name: Questionnaire_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Questionnaires"
    ADD CONSTRAINT "Questionnaire_pkey" PRIMARY KEY ("QuestionnaireId");


--
-- TOC entry 3715 (class 2606 OID 18300)
-- Name: RFIDParameters_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "RFIDParameters"
    ADD CONSTRAINT "RFIDParameters_pkey" PRIMARY KEY ("RFIDParameterId");


--
-- TOC entry 3717 (class 2606 OID 18302)
-- Name: Rankings_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Rankings"
    ADD CONSTRAINT "Rankings_pkey" PRIMARY KEY ("RankId");


--
-- TOC entry 3719 (class 2606 OID 18304)
-- Name: RateType_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "RateTypes"
    ADD CONSTRAINT "RateType_pkey" PRIMARY KEY ("RateTypeId");


--
-- TOC entry 3721 (class 2606 OID 18306)
-- Name: Recognitions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Recognitions"
    ADD CONSTRAINT "Recognitions_pkey" PRIMARY KEY ("RecognitionId");


--
-- TOC entry 3723 (class 2606 OID 18308)
-- Name: ReportPrintSettings_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "ReportPrintSettings"
    ADD CONSTRAINT "ReportPrintSettings_pkey" PRIMARY KEY ("ReportPrintSettingId");


--
-- TOC entry 3725 (class 2606 OID 18310)
-- Name: ReportSignatories_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "ReportSignatories"
    ADD CONSTRAINT "ReportSignatories_pkey" PRIMARY KEY ("ReportSignatoryId");


--
-- TOC entry 3727 (class 2606 OID 18312)
-- Name: SSSContribution_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "SSSContributions"
    ADD CONSTRAINT "SSSContribution_pkey" PRIMARY KEY ("SSSBracketId");


--
-- TOC entry 3729 (class 2606 OID 18314)
-- Name: SalaryGrades_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "SalaryGrades"
    ADD CONSTRAINT "SalaryGrades_pkey" PRIMARY KEY ("SalaryGradeId");


--
-- TOC entry 3731 (class 2606 OID 18316)
-- Name: Sanctions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Sanctions"
    ADD CONSTRAINT "Sanctions_pkey" PRIMARY KEY ("SanctionId");


--
-- TOC entry 3733 (class 2606 OID 18318)
-- Name: ScheduleTemplates_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "ScheduleTemplates"
    ADD CONSTRAINT "ScheduleTemplates_pkey" PRIMARY KEY ("ScheduleTemplateId");


--
-- TOC entry 3735 (class 2606 OID 18320)
-- Name: Sections_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Sections"
    ADD CONSTRAINT "Sections_pkey" PRIMARY KEY ("SectionId");


--
-- TOC entry 3737 (class 2606 OID 18322)
-- Name: SelfEmployedSSSEmployees_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "SelfEmployedSSSEmployees"
    ADD CONSTRAINT "SelfEmployedSSSEmployees_pkey" PRIMARY KEY ("SelfEmployedId");


--
-- TOC entry 3739 (class 2606 OID 18324)
-- Name: SeparatedRecords_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "SeparatedRecords"
    ADD CONSTRAINT "SeparatedRecords_pkey" PRIMARY KEY ("SeparatedRecordId");


--
-- TOC entry 3741 (class 2606 OID 18326)
-- Name: ServiceRecord_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "ServiceRecords"
    ADD CONSTRAINT "ServiceRecord_pkey" PRIMARY KEY ("ServiceRecordId");


--
-- TOC entry 3743 (class 2606 OID 18328)
-- Name: Skills_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Skills"
    ADD CONSTRAINT "Skills_pkey" PRIMARY KEY ("SkillId");


--
-- TOC entry 3745 (class 2606 OID 18330)
-- Name: Spouse_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Spouses"
    ADD CONSTRAINT "Spouse_pkey" PRIMARY KEY ("SpouseId");


--
-- TOC entry 3747 (class 2606 OID 18332)
-- Name: StationEmployees_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "StationEmployees"
    ADD CONSTRAINT "StationEmployees_pkey" PRIMARY KEY ("StationEmployeeId");


--
-- TOC entry 3749 (class 2606 OID 18334)
-- Name: Stations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Stations"
    ADD CONSTRAINT "Stations_pkey" PRIMARY KEY ("StationId");


--
-- TOC entry 3751 (class 2606 OID 18336)
-- Name: StepIncrementPolicies_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "StepIncrementPolicies"
    ADD CONSTRAINT "StepIncrementPolicies_pkey" PRIMARY KEY ("StepIncrementPolicyId");


--
-- TOC entry 3753 (class 2606 OID 18338)
-- Name: StudyLeaveServiceObligations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "StudyLeaveServiceObligations"
    ADD CONSTRAINT "StudyLeaveServiceObligations_pkey" PRIMARY KEY ("ServiceObligationId");


--
-- TOC entry 3755 (class 2606 OID 18340)
-- Name: SystemParameters_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "SystemParameters"
    ADD CONSTRAINT "SystemParameters_pkey" PRIMARY KEY ("SystemParameterId");


--
-- TOC entry 3757 (class 2606 OID 18342)
-- Name: TardinessPolicies_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "TardinessPolicies"
    ADD CONSTRAINT "TardinessPolicies_pkey" PRIMARY KEY ("Id");


--
-- TOC entry 3759 (class 2606 OID 18344)
-- Name: TimeLogPolicies_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "TimeLogPolicies"
    ADD CONSTRAINT "TimeLogPolicies_pkey" PRIMARY KEY ("Id");


--
-- TOC entry 3761 (class 2606 OID 18346)
-- Name: Trainings_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Trainings"
    ADD CONSTRAINT "Trainings_pkey" PRIMARY KEY ("TrainingId");


--
-- TOC entry 3763 (class 2606 OID 18348)
-- Name: TravelOrderEmployees_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "TravelOrderEmployees"
    ADD CONSTRAINT "TravelOrderEmployees_pkey" PRIMARY KEY ("TravelOrderEmployeeId");


--
-- TOC entry 3765 (class 2606 OID 18350)
-- Name: TravelOrderId_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "TravelOrders"
    ADD CONSTRAINT "TravelOrderId_pkey" PRIMARY KEY ("TravelOrderId");


--
-- TOC entry 3767 (class 2606 OID 18352)
-- Name: UserGroups_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "UserGroups"
    ADD CONSTRAINT "UserGroups_pkey" PRIMARY KEY ("Id");


--
-- TOC entry 3769 (class 2606 OID 18354)
-- Name: UserPermissions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "UserPermissions"
    ADD CONSTRAINT "UserPermissions_pkey" PRIMARY KEY ("Id", "SystemPageCode");


--
-- TOC entry 3771 (class 2606 OID 18356)
-- Name: Users_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Users"
    ADD CONSTRAINT "Users_pkey" PRIMARY KEY ("Id");


--
-- TOC entry 3773 (class 2606 OID 18358)
-- Name: ViolationPolicies_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "ViolationPolicies"
    ADD CONSTRAINT "ViolationPolicies_pkey" PRIMARY KEY ("ViolationPolicyId");


--
-- TOC entry 3777 (class 2606 OID 18360)
-- Name: ViolationsAndSanctions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "ViolationsAndSanctions"
    ADD CONSTRAINT "ViolationsAndSanctions_pkey" PRIMARY KEY ("ViolationAndSanctionId");


--
-- TOC entry 3775 (class 2606 OID 18362)
-- Name: Violations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Violations"
    ADD CONSTRAINT "Violations_pkey" PRIMARY KEY ("ViolationId");


--
-- TOC entry 3779 (class 2606 OID 18364)
-- Name: VisitorLogs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "VisitorLogs"
    ADD CONSTRAINT "VisitorLogs_pkey" PRIMARY KEY ("VisitorLogId");


--
-- TOC entry 3781 (class 2606 OID 18366)
-- Name: Visitors_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "Visitors"
    ADD CONSTRAINT "Visitors_pkey" PRIMARY KEY ("VisitorId");


--
-- TOC entry 3783 (class 2606 OID 18368)
-- Name: WithholdingTaxStatus_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "WithholdingTaxesStatus"
    ADD CONSTRAINT "WithholdingTaxStatus_pkey" PRIMARY KEY ("WithholdingTaxStatusId");


--
-- TOC entry 3785 (class 2606 OID 18370)
-- Name: WithholdingTax_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace: 
--

ALTER TABLE ONLY "WithholdingTaxes"
    ADD CONSTRAINT "WithholdingTax_pkey" PRIMARY KEY ("WithholdingTaxId");


--
-- TOC entry 3789 (class 2620 OID 18371)
-- Name: FaceScannerLogs_tr_ai; Type: TRIGGER; Schema: public; Owner: postgres
--

CREATE TRIGGER "FaceScannerLogs_tr_ai" AFTER INSERT ON "FaceScannerLogs" FOR EACH ROW EXECUTE PROCEDURE fsl_tr_ai();


--
-- TOC entry 3786 (class 2606 OID 18372)
-- Name: EmployeeWeeklySchedulesMembers_EmployeeId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "EmployeeWeeklySchedulesMembers"
    ADD CONSTRAINT "EmployeeWeeklySchedulesMembers_EmployeeId_fkey" FOREIGN KEY ("EmployeeId") REFERENCES "Employees"("EmployeeId");


--
-- TOC entry 3787 (class 2606 OID 18377)
-- Name: EmployeeWeeklySchedulesMembers_ScheduleTemplateId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "EmployeeWeeklySchedulesMembers"
    ADD CONSTRAINT "EmployeeWeeklySchedulesMembers_ScheduleTemplateId_fkey" FOREIGN KEY ("ScheduleTemplateId") REFERENCES "ScheduleTemplates"("ScheduleTemplateId");


--
-- TOC entry 3788 (class 2606 OID 18382)
-- Name: ServiceRecords_EmployeeId_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY "ServiceRecords"
    ADD CONSTRAINT "ServiceRecords_EmployeeId_fkey" FOREIGN KEY ("EmployeeId") REFERENCES "Employees"("EmployeeId");


--
-- TOC entry 4096 (class 0 OID 0)
-- Dependencies: 6
-- Name: public; Type: ACL; Schema: -; Owner: postgres
--

REVOKE ALL ON SCHEMA public FROM PUBLIC;
REVOKE ALL ON SCHEMA public FROM postgres;
GRANT ALL ON SCHEMA public TO postgres;
GRANT ALL ON SCHEMA public TO PUBLIC;


--
-- TOC entry 4098 (class 0 OID 0)
-- Dependencies: 168
-- Name: Adjustments; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Adjustments" FROM PUBLIC;
REVOKE ALL ON TABLE "Adjustments" FROM postgres;
GRANT ALL ON TABLE "Adjustments" TO postgres;


--
-- TOC entry 4100 (class 0 OID 0)
-- Dependencies: 169
-- Name: Adjustments_Id_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Adjustments_Id_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Adjustments_Id_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Adjustments_Id_seq" TO postgres;
GRANT ALL ON SEQUENCE "Adjustments_Id_seq" TO PUBLIC;


--
-- TOC entry 4101 (class 0 OID 0)
-- Dependencies: 170
-- Name: AdvertisementImages; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "AdvertisementImages" FROM PUBLIC;
REVOKE ALL ON TABLE "AdvertisementImages" FROM postgres;
GRANT ALL ON TABLE "AdvertisementImages" TO postgres;
GRANT ALL ON TABLE "AdvertisementImages" TO PUBLIC;


--
-- TOC entry 4103 (class 0 OID 0)
-- Dependencies: 171
-- Name: AdvertisementImages_AdId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "AdvertisementImages_AdId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "AdvertisementImages_AdId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "AdvertisementImages_AdId_seq" TO postgres;
GRANT ALL ON SEQUENCE "AdvertisementImages_AdId_seq" TO PUBLIC;


--
-- TOC entry 4104 (class 0 OID 0)
-- Dependencies: 172
-- Name: AllowanceRates; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "AllowanceRates" FROM PUBLIC;
REVOKE ALL ON TABLE "AllowanceRates" FROM postgres;
GRANT ALL ON TABLE "AllowanceRates" TO postgres;
GRANT ALL ON TABLE "AllowanceRates" TO PUBLIC;


--
-- TOC entry 4106 (class 0 OID 0)
-- Dependencies: 173
-- Name: AllowanceRates_AllowanceRateId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "AllowanceRates_AllowanceRateId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "AllowanceRates_AllowanceRateId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "AllowanceRates_AllowanceRateId_seq" TO postgres;
GRANT ALL ON SEQUENCE "AllowanceRates_AllowanceRateId_seq" TO PUBLIC;


--
-- TOC entry 4107 (class 0 OID 0)
-- Dependencies: 174
-- Name: AllowanceTypes; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "AllowanceTypes" FROM PUBLIC;
REVOKE ALL ON TABLE "AllowanceTypes" FROM postgres;
GRANT ALL ON TABLE "AllowanceTypes" TO postgres;
GRANT ALL ON TABLE "AllowanceTypes" TO PUBLIC;


--
-- TOC entry 4109 (class 0 OID 0)
-- Dependencies: 175
-- Name: AllowanceTypes_AllowanceTypeId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "AllowanceTypes_AllowanceTypeId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "AllowanceTypes_AllowanceTypeId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "AllowanceTypes_AllowanceTypeId_seq" TO postgres;
GRANT ALL ON SEQUENCE "AllowanceTypes_AllowanceTypeId_seq" TO PUBLIC;


--
-- TOC entry 4110 (class 0 OID 0)
-- Dependencies: 176
-- Name: Allowances; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Allowances" FROM PUBLIC;
REVOKE ALL ON TABLE "Allowances" FROM postgres;
GRANT ALL ON TABLE "Allowances" TO postgres;


--
-- TOC entry 4112 (class 0 OID 0)
-- Dependencies: 177
-- Name: Allowances_AllowanceID_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Allowances_AllowanceID_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Allowances_AllowanceID_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Allowances_AllowanceID_seq" TO postgres;
GRANT ALL ON SEQUENCE "Allowances_AllowanceID_seq" TO PUBLIC;


--
-- TOC entry 4113 (class 0 OID 0)
-- Dependencies: 178
-- Name: AnnualLeaveCredits; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "AnnualLeaveCredits" FROM PUBLIC;
REVOKE ALL ON TABLE "AnnualLeaveCredits" FROM postgres;
GRANT ALL ON TABLE "AnnualLeaveCredits" TO postgres;
GRANT ALL ON TABLE "AnnualLeaveCredits" TO PUBLIC;


--
-- TOC entry 4115 (class 0 OID 0)
-- Dependencies: 179
-- Name: AnnulLeaveCredits_AnnualLeaveCreditId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "AnnulLeaveCredits_AnnualLeaveCreditId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "AnnulLeaveCredits_AnnualLeaveCreditId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "AnnulLeaveCredits_AnnualLeaveCreditId_seq" TO postgres;
GRANT ALL ON SEQUENCE "AnnulLeaveCredits_AnnualLeaveCreditId_seq" TO PUBLIC;


--
-- TOC entry 4116 (class 0 OID 0)
-- Dependencies: 180
-- Name: ApplicationPolicies; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "ApplicationPolicies" FROM PUBLIC;
REVOKE ALL ON TABLE "ApplicationPolicies" FROM postgres;
GRANT ALL ON TABLE "ApplicationPolicies" TO postgres;
GRANT ALL ON TABLE "ApplicationPolicies" TO PUBLIC;


--
-- TOC entry 4118 (class 0 OID 0)
-- Dependencies: 181
-- Name: ApplicationPolicies_ApplicationPolicyId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "ApplicationPolicies_ApplicationPolicyId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "ApplicationPolicies_ApplicationPolicyId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "ApplicationPolicies_ApplicationPolicyId_seq" TO postgres;
GRANT ALL ON SEQUENCE "ApplicationPolicies_ApplicationPolicyId_seq" TO PUBLIC;


--
-- TOC entry 4119 (class 0 OID 0)
-- Dependencies: 182
-- Name: AppliedPremiumsPolicies; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "AppliedPremiumsPolicies" FROM PUBLIC;
REVOKE ALL ON TABLE "AppliedPremiumsPolicies" FROM postgres;
GRANT ALL ON TABLE "AppliedPremiumsPolicies" TO postgres;
GRANT ALL ON TABLE "AppliedPremiumsPolicies" TO PUBLIC;


--
-- TOC entry 4121 (class 0 OID 0)
-- Dependencies: 183
-- Name: AppliedPremiumsPolicies_AppliedPremiumsPolicyId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "AppliedPremiumsPolicies_AppliedPremiumsPolicyId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "AppliedPremiumsPolicies_AppliedPremiumsPolicyId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "AppliedPremiumsPolicies_AppliedPremiumsPolicyId_seq" TO postgres;
GRANT ALL ON SEQUENCE "AppliedPremiumsPolicies_AppliedPremiumsPolicyId_seq" TO PUBLIC;


--
-- TOC entry 4122 (class 0 OID 0)
-- Dependencies: 184
-- Name: ApprovedLogs; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "ApprovedLogs" FROM PUBLIC;
REVOKE ALL ON TABLE "ApprovedLogs" FROM postgres;
GRANT ALL ON TABLE "ApprovedLogs" TO postgres;
GRANT ALL ON TABLE "ApprovedLogs" TO PUBLIC;


--
-- TOC entry 4124 (class 0 OID 0)
-- Dependencies: 185
-- Name: ApprovedLogs_ApprovedLogId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "ApprovedLogs_ApprovedLogId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "ApprovedLogs_ApprovedLogId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "ApprovedLogs_ApprovedLogId_seq" TO postgres;
GRANT ALL ON SEQUENCE "ApprovedLogs_ApprovedLogId_seq" TO PUBLIC;


--
-- TOC entry 4125 (class 0 OID 0)
-- Dependencies: 186
-- Name: AuditTrails; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "AuditTrails" FROM PUBLIC;
REVOKE ALL ON TABLE "AuditTrails" FROM postgres;
GRANT ALL ON TABLE "AuditTrails" TO postgres;
GRANT ALL ON TABLE "AuditTrails" TO PUBLIC;


--
-- TOC entry 4127 (class 0 OID 0)
-- Dependencies: 187
-- Name: AuditTrails_AuditTrailId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "AuditTrails_AuditTrailId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "AuditTrails_AuditTrailId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "AuditTrails_AuditTrailId_seq" TO postgres;
GRANT ALL ON SEQUENCE "AuditTrails_AuditTrailId_seq" TO PUBLIC;


--
-- TOC entry 4128 (class 0 OID 0)
-- Dependencies: 188
-- Name: BankAccounts; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "BankAccounts" FROM PUBLIC;
REVOKE ALL ON TABLE "BankAccounts" FROM postgres;
GRANT ALL ON TABLE "BankAccounts" TO postgres;


--
-- TOC entry 4129 (class 0 OID 0)
-- Dependencies: 189
-- Name: BasicInformation; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "BasicInformation" FROM PUBLIC;
REVOKE ALL ON TABLE "BasicInformation" FROM postgres;
GRANT ALL ON TABLE "BasicInformation" TO postgres;
GRANT ALL ON TABLE "BasicInformation" TO PUBLIC;


--
-- TOC entry 4131 (class 0 OID 0)
-- Dependencies: 190
-- Name: BasicInformation_BasicInformationId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "BasicInformation_BasicInformationId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "BasicInformation_BasicInformationId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "BasicInformation_BasicInformationId_seq" TO postgres;
GRANT ALL ON SEQUENCE "BasicInformation_BasicInformationId_seq" TO PUBLIC;


--
-- TOC entry 4132 (class 0 OID 0)
-- Dependencies: 191
-- Name: BonusTypes; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "BonusTypes" FROM PUBLIC;
REVOKE ALL ON TABLE "BonusTypes" FROM postgres;
GRANT ALL ON TABLE "BonusTypes" TO postgres;
GRANT ALL ON TABLE "BonusTypes" TO PUBLIC;


--
-- TOC entry 4134 (class 0 OID 0)
-- Dependencies: 192
-- Name: BonusTypes_BonusTypeId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "BonusTypes_BonusTypeId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "BonusTypes_BonusTypeId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "BonusTypes_BonusTypeId_seq" TO postgres;
GRANT ALL ON SEQUENCE "BonusTypes_BonusTypeId_seq" TO PUBLIC;


--
-- TOC entry 4135 (class 0 OID 0)
-- Dependencies: 193
-- Name: Breaks; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Breaks" FROM PUBLIC;
REVOKE ALL ON TABLE "Breaks" FROM postgres;
GRANT ALL ON TABLE "Breaks" TO postgres;
GRANT ALL ON TABLE "Breaks" TO PUBLIC;


--
-- TOC entry 4137 (class 0 OID 0)
-- Dependencies: 194
-- Name: Breaks_BreakId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Breaks_BreakId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Breaks_BreakId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Breaks_BreakId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Breaks_BreakId_seq" TO PUBLIC;


--
-- TOC entry 4138 (class 0 OID 0)
-- Dependencies: 195
-- Name: Cards; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Cards" FROM PUBLIC;
REVOKE ALL ON TABLE "Cards" FROM postgres;
GRANT ALL ON TABLE "Cards" TO postgres;


--
-- TOC entry 4139 (class 0 OID 0)
-- Dependencies: 196
-- Name: CharacterReferences; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "CharacterReferences" FROM PUBLIC;
REVOKE ALL ON TABLE "CharacterReferences" FROM postgres;
GRANT ALL ON TABLE "CharacterReferences" TO postgres;
GRANT ALL ON TABLE "CharacterReferences" TO PUBLIC;


--
-- TOC entry 4141 (class 0 OID 0)
-- Dependencies: 197
-- Name: CharacterReferences_CharacterReferenceId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "CharacterReferences_CharacterReferenceId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "CharacterReferences_CharacterReferenceId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "CharacterReferences_CharacterReferenceId_seq" TO postgres;
GRANT ALL ON SEQUENCE "CharacterReferences_CharacterReferenceId_seq" TO PUBLIC;


--
-- TOC entry 4142 (class 0 OID 0)
-- Dependencies: 198
-- Name: Children; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Children" FROM PUBLIC;
REVOKE ALL ON TABLE "Children" FROM postgres;
GRANT ALL ON TABLE "Children" TO postgres;


--
-- TOC entry 4144 (class 0 OID 0)
-- Dependencies: 199
-- Name: Children_ChildrenId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Children_ChildrenId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Children_ChildrenId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Children_ChildrenId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Children_ChildrenId_seq" TO PUBLIC;


--
-- TOC entry 4145 (class 0 OID 0)
-- Dependencies: 200
-- Name: CommunityServices; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "CommunityServices" FROM PUBLIC;
REVOKE ALL ON TABLE "CommunityServices" FROM postgres;
GRANT ALL ON TABLE "CommunityServices" TO postgres;
GRANT ALL ON TABLE "CommunityServices" TO PUBLIC;


--
-- TOC entry 4147 (class 0 OID 0)
-- Dependencies: 201
-- Name: CommunityServices_CommunityServiceId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "CommunityServices_CommunityServiceId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "CommunityServices_CommunityServiceId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "CommunityServices_CommunityServiceId_seq" TO postgres;
GRANT ALL ON SEQUENCE "CommunityServices_CommunityServiceId_seq" TO PUBLIC;


--
-- TOC entry 4148 (class 0 OID 0)
-- Dependencies: 202
-- Name: Companies; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Companies" FROM PUBLIC;
REVOKE ALL ON TABLE "Companies" FROM postgres;
GRANT ALL ON TABLE "Companies" TO postgres;


--
-- TOC entry 4150 (class 0 OID 0)
-- Dependencies: 203
-- Name: Companies_CompanyId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Companies_CompanyId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Companies_CompanyId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Companies_CompanyId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Companies_CompanyId_seq" TO PUBLIC;


--
-- TOC entry 4151 (class 0 OID 0)
-- Dependencies: 204
-- Name: ContributionMemberships; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "ContributionMemberships" FROM PUBLIC;
REVOKE ALL ON TABLE "ContributionMemberships" FROM postgres;
GRANT ALL ON TABLE "ContributionMemberships" TO postgres;
GRANT ALL ON TABLE "ContributionMemberships" TO PUBLIC;


--
-- TOC entry 4153 (class 0 OID 0)
-- Dependencies: 205
-- Name: ContributionMemberships_ContributionMembershipId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "ContributionMemberships_ContributionMembershipId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "ContributionMemberships_ContributionMembershipId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "ContributionMemberships_ContributionMembershipId_seq" TO postgres;
GRANT ALL ON SEQUENCE "ContributionMemberships_ContributionMembershipId_seq" TO PUBLIC;


--
-- TOC entry 4154 (class 0 OID 0)
-- Dependencies: 206
-- Name: ContributionTypes; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "ContributionTypes" FROM PUBLIC;
REVOKE ALL ON TABLE "ContributionTypes" FROM postgres;
GRANT ALL ON TABLE "ContributionTypes" TO postgres;
GRANT ALL ON TABLE "ContributionTypes" TO PUBLIC;


--
-- TOC entry 4156 (class 0 OID 0)
-- Dependencies: 207
-- Name: ContributionTypes_ContributionTypeId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "ContributionTypes_ContributionTypeId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "ContributionTypes_ContributionTypeId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "ContributionTypes_ContributionTypeId_seq" TO postgres;
GRANT ALL ON SEQUENCE "ContributionTypes_ContributionTypeId_seq" TO PUBLIC;


--
-- TOC entry 4157 (class 0 OID 0)
-- Dependencies: 208
-- Name: Courses; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Courses" FROM PUBLIC;
REVOKE ALL ON TABLE "Courses" FROM postgres;
GRANT ALL ON TABLE "Courses" TO postgres;
GRANT ALL ON TABLE "Courses" TO PUBLIC;


--
-- TOC entry 4159 (class 0 OID 0)
-- Dependencies: 209
-- Name: Courses_CourseId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Courses_CourseId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Courses_CourseId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Courses_CourseId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Courses_CourseId_seq" TO PUBLIC;


--
-- TOC entry 4160 (class 0 OID 0)
-- Dependencies: 210
-- Name: Credentials; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Credentials" FROM PUBLIC;
REVOKE ALL ON TABLE "Credentials" FROM postgres;
GRANT ALL ON TABLE "Credentials" TO postgres;
GRANT ALL ON TABLE "Credentials" TO PUBLIC;


--
-- TOC entry 4162 (class 0 OID 0)
-- Dependencies: 211
-- Name: Credentials_CredentialId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Credentials_CredentialId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Credentials_CredentialId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Credentials_CredentialId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Credentials_CredentialId_seq" TO PUBLIC;


--
-- TOC entry 4163 (class 0 OID 0)
-- Dependencies: 212
-- Name: CreditsComputationDates; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "CreditsComputationDates" FROM PUBLIC;
REVOKE ALL ON TABLE "CreditsComputationDates" FROM postgres;
GRANT ALL ON TABLE "CreditsComputationDates" TO postgres;
GRANT ALL ON TABLE "CreditsComputationDates" TO PUBLIC;


--
-- TOC entry 4165 (class 0 OID 0)
-- Dependencies: 213
-- Name: CreditsComputationDates_CreditsComputationDateId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "CreditsComputationDates_CreditsComputationDateId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "CreditsComputationDates_CreditsComputationDateId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "CreditsComputationDates_CreditsComputationDateId_seq" TO postgres;
GRANT ALL ON SEQUENCE "CreditsComputationDates_CreditsComputationDateId_seq" TO PUBLIC;


--
-- TOC entry 4166 (class 0 OID 0)
-- Dependencies: 214
-- Name: DailyLeaveCredits; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "DailyLeaveCredits" FROM PUBLIC;
REVOKE ALL ON TABLE "DailyLeaveCredits" FROM postgres;
GRANT ALL ON TABLE "DailyLeaveCredits" TO postgres;
GRANT ALL ON TABLE "DailyLeaveCredits" TO PUBLIC;


--
-- TOC entry 4168 (class 0 OID 0)
-- Dependencies: 215
-- Name: DailyLeaveCredits_DailyLeaveCreditId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "DailyLeaveCredits_DailyLeaveCreditId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "DailyLeaveCredits_DailyLeaveCreditId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "DailyLeaveCredits_DailyLeaveCreditId_seq" TO postgres;
GRANT ALL ON SEQUENCE "DailyLeaveCredits_DailyLeaveCreditId_seq" TO PUBLIC;


--
-- TOC entry 4169 (class 0 OID 0)
-- Dependencies: 216
-- Name: DayConversionValues; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "DayConversionValues" FROM PUBLIC;
REVOKE ALL ON TABLE "DayConversionValues" FROM postgres;
GRANT ALL ON TABLE "DayConversionValues" TO postgres;
GRANT ALL ON TABLE "DayConversionValues" TO PUBLIC;


--
-- TOC entry 4171 (class 0 OID 0)
-- Dependencies: 217
-- Name: DayConversionValues_DayConversionValueId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "DayConversionValues_DayConversionValueId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "DayConversionValues_DayConversionValueId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "DayConversionValues_DayConversionValueId_seq" TO postgres;
GRANT ALL ON SEQUENCE "DayConversionValues_DayConversionValueId_seq" TO PUBLIC;


--
-- TOC entry 4172 (class 0 OID 0)
-- Dependencies: 218
-- Name: DeductionTypes; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "DeductionTypes" FROM PUBLIC;
REVOKE ALL ON TABLE "DeductionTypes" FROM postgres;
GRANT ALL ON TABLE "DeductionTypes" TO postgres;
GRANT ALL ON TABLE "DeductionTypes" TO PUBLIC;


--
-- TOC entry 4174 (class 0 OID 0)
-- Dependencies: 219
-- Name: DeductionTypes_DeductionTypeId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "DeductionTypes_DeductionTypeId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "DeductionTypes_DeductionTypeId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "DeductionTypes_DeductionTypeId_seq" TO postgres;
GRANT ALL ON SEQUENCE "DeductionTypes_DeductionTypeId_seq" TO PUBLIC;


--
-- TOC entry 4175 (class 0 OID 0)
-- Dependencies: 220
-- Name: Departments; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Departments" FROM PUBLIC;
REVOKE ALL ON TABLE "Departments" FROM postgres;
GRANT ALL ON TABLE "Departments" TO postgres;


--
-- TOC entry 4177 (class 0 OID 0)
-- Dependencies: 221
-- Name: Departments_DepartmentId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Departments_DepartmentId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Departments_DepartmentId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Departments_DepartmentId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Departments_DepartmentId_seq" TO PUBLIC;


--
-- TOC entry 4178 (class 0 OID 0)
-- Dependencies: 222
-- Name: DistributionReleases; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "DistributionReleases" FROM PUBLIC;
REVOKE ALL ON TABLE "DistributionReleases" FROM postgres;
GRANT ALL ON TABLE "DistributionReleases" TO postgres;
GRANT ALL ON TABLE "DistributionReleases" TO PUBLIC;


--
-- TOC entry 4180 (class 0 OID 0)
-- Dependencies: 223
-- Name: DistributionReleases_DistributionEntryId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "DistributionReleases_DistributionEntryId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "DistributionReleases_DistributionEntryId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "DistributionReleases_DistributionEntryId_seq" TO postgres;
GRANT ALL ON SEQUENCE "DistributionReleases_DistributionEntryId_seq" TO PUBLIC;


--
-- TOC entry 4181 (class 0 OID 0)
-- Dependencies: 224
-- Name: Distributions; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Distributions" FROM PUBLIC;
REVOKE ALL ON TABLE "Distributions" FROM postgres;
GRANT ALL ON TABLE "Distributions" TO postgres;
GRANT ALL ON TABLE "Distributions" TO PUBLIC;


--
-- TOC entry 4183 (class 0 OID 0)
-- Dependencies: 225
-- Name: Distributions_DistributionId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Distributions_DistributionId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Distributions_DistributionId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Distributions_DistributionId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Distributions_DistributionId_seq" TO PUBLIC;


--
-- TOC entry 4184 (class 0 OID 0)
-- Dependencies: 226
-- Name: Divisions; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Divisions" FROM PUBLIC;
REVOKE ALL ON TABLE "Divisions" FROM postgres;
GRANT ALL ON TABLE "Divisions" TO postgres;


--
-- TOC entry 4186 (class 0 OID 0)
-- Dependencies: 227
-- Name: Divisions_DivisionId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Divisions_DivisionId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Divisions_DivisionId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Divisions_DivisionId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Divisions_DivisionId_seq" TO PUBLIC;


--
-- TOC entry 4187 (class 0 OID 0)
-- Dependencies: 228
-- Name: EducationalBackgrounds; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "EducationalBackgrounds" FROM PUBLIC;
REVOKE ALL ON TABLE "EducationalBackgrounds" FROM postgres;
GRANT ALL ON TABLE "EducationalBackgrounds" TO postgres;


--
-- TOC entry 4189 (class 0 OID 0)
-- Dependencies: 229
-- Name: EducationalBackground_EducationalID_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "EducationalBackground_EducationalID_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "EducationalBackground_EducationalID_seq" FROM postgres;
GRANT ALL ON SEQUENCE "EducationalBackground_EducationalID_seq" TO postgres;
GRANT ALL ON SEQUENCE "EducationalBackground_EducationalID_seq" TO PUBLIC;


--
-- TOC entry 4190 (class 0 OID 0)
-- Dependencies: 230
-- Name: Eligibilities; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Eligibilities" FROM PUBLIC;
REVOKE ALL ON TABLE "Eligibilities" FROM postgres;
GRANT ALL ON TABLE "Eligibilities" TO postgres;
GRANT ALL ON TABLE "Eligibilities" TO PUBLIC;


--
-- TOC entry 4192 (class 0 OID 0)
-- Dependencies: 231
-- Name: Eligibilities_EligibilityId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Eligibilities_EligibilityId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Eligibilities_EligibilityId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Eligibilities_EligibilityId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Eligibilities_EligibilityId_seq" TO PUBLIC;


--
-- TOC entry 4193 (class 0 OID 0)
-- Dependencies: 232
-- Name: EligibilityDocumentTypes; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "EligibilityDocumentTypes" FROM PUBLIC;
REVOKE ALL ON TABLE "EligibilityDocumentTypes" FROM postgres;
GRANT ALL ON TABLE "EligibilityDocumentTypes" TO postgres;
GRANT ALL ON TABLE "EligibilityDocumentTypes" TO PUBLIC;


--
-- TOC entry 4195 (class 0 OID 0)
-- Dependencies: 233
-- Name: EligibilityDocumentTypes_EligibilityDocumentTypeId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "EligibilityDocumentTypes_EligibilityDocumentTypeId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "EligibilityDocumentTypes_EligibilityDocumentTypeId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "EligibilityDocumentTypes_EligibilityDocumentTypeId_seq" TO postgres;
GRANT ALL ON SEQUENCE "EligibilityDocumentTypes_EligibilityDocumentTypeId_seq" TO PUBLIC;


--
-- TOC entry 4196 (class 0 OID 0)
-- Dependencies: 234
-- Name: EligibilityProcessStatuses; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "EligibilityProcessStatuses" FROM PUBLIC;
REVOKE ALL ON TABLE "EligibilityProcessStatuses" FROM postgres;
GRANT ALL ON TABLE "EligibilityProcessStatuses" TO postgres;
GRANT ALL ON TABLE "EligibilityProcessStatuses" TO PUBLIC;


--
-- TOC entry 4198 (class 0 OID 0)
-- Dependencies: 235
-- Name: EligibilityProcessStatuses_EligibilityProcessStatusId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "EligibilityProcessStatuses_EligibilityProcessStatusId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "EligibilityProcessStatuses_EligibilityProcessStatusId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "EligibilityProcessStatuses_EligibilityProcessStatusId_seq" TO postgres;
GRANT ALL ON SEQUENCE "EligibilityProcessStatuses_EligibilityProcessStatusId_seq" TO PUBLIC;


--
-- TOC entry 4199 (class 0 OID 0)
-- Dependencies: 236
-- Name: EmployeeAllowances; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "EmployeeAllowances" FROM PUBLIC;
REVOKE ALL ON TABLE "EmployeeAllowances" FROM postgres;
GRANT ALL ON TABLE "EmployeeAllowances" TO postgres;


--
-- TOC entry 4201 (class 0 OID 0)
-- Dependencies: 237
-- Name: EmployeeAllowances_EmployeeAllowanceId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "EmployeeAllowances_EmployeeAllowanceId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "EmployeeAllowances_EmployeeAllowanceId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "EmployeeAllowances_EmployeeAllowanceId_seq" TO postgres;
GRANT ALL ON SEQUENCE "EmployeeAllowances_EmployeeAllowanceId_seq" TO PUBLIC;


--
-- TOC entry 4202 (class 0 OID 0)
-- Dependencies: 238
-- Name: EmployeeAwards; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "EmployeeAwards" FROM PUBLIC;
REVOKE ALL ON TABLE "EmployeeAwards" FROM postgres;
GRANT ALL ON TABLE "EmployeeAwards" TO postgres;
GRANT ALL ON TABLE "EmployeeAwards" TO PUBLIC;


--
-- TOC entry 4204 (class 0 OID 0)
-- Dependencies: 239
-- Name: EmployeeAwards_EmployeeAwardId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "EmployeeAwards_EmployeeAwardId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "EmployeeAwards_EmployeeAwardId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "EmployeeAwards_EmployeeAwardId_seq" TO postgres;
GRANT ALL ON SEQUENCE "EmployeeAwards_EmployeeAwardId_seq" TO PUBLIC;


--
-- TOC entry 4205 (class 0 OID 0)
-- Dependencies: 240
-- Name: EmployeeBonuses; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "EmployeeBonuses" FROM PUBLIC;
REVOKE ALL ON TABLE "EmployeeBonuses" FROM postgres;
GRANT ALL ON TABLE "EmployeeBonuses" TO postgres;
GRANT ALL ON TABLE "EmployeeBonuses" TO PUBLIC;


--
-- TOC entry 4206 (class 0 OID 0)
-- Dependencies: 241
-- Name: EmployeeCards; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "EmployeeCards" FROM PUBLIC;
REVOKE ALL ON TABLE "EmployeeCards" FROM postgres;
GRANT ALL ON TABLE "EmployeeCards" TO postgres;
GRANT ALL ON TABLE "EmployeeCards" TO PUBLIC;


--
-- TOC entry 4207 (class 0 OID 0)
-- Dependencies: 242
-- Name: EmployeeDeductions; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "EmployeeDeductions" FROM PUBLIC;
REVOKE ALL ON TABLE "EmployeeDeductions" FROM postgres;
GRANT ALL ON TABLE "EmployeeDeductions" TO postgres;
GRANT ALL ON TABLE "EmployeeDeductions" TO PUBLIC;


--
-- TOC entry 4209 (class 0 OID 0)
-- Dependencies: 243
-- Name: EmployeeDeductions_EmployeeDeductionId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "EmployeeDeductions_EmployeeDeductionId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "EmployeeDeductions_EmployeeDeductionId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "EmployeeDeductions_EmployeeDeductionId_seq" TO postgres;
GRANT ALL ON SEQUENCE "EmployeeDeductions_EmployeeDeductionId_seq" TO PUBLIC;


--
-- TOC entry 4210 (class 0 OID 0)
-- Dependencies: 244
-- Name: EmployeeEarnings; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "EmployeeEarnings" FROM PUBLIC;
REVOKE ALL ON TABLE "EmployeeEarnings" FROM postgres;
GRANT ALL ON TABLE "EmployeeEarnings" TO postgres;
GRANT ALL ON TABLE "EmployeeEarnings" TO PUBLIC;


--
-- TOC entry 4212 (class 0 OID 0)
-- Dependencies: 245
-- Name: EmployeeEarnings_EarningId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "EmployeeEarnings_EarningId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "EmployeeEarnings_EarningId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "EmployeeEarnings_EarningId_seq" TO postgres;
GRANT ALL ON SEQUENCE "EmployeeEarnings_EarningId_seq" TO PUBLIC;


--
-- TOC entry 4213 (class 0 OID 0)
-- Dependencies: 246
-- Name: EmployeeLogs; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "EmployeeLogs" FROM PUBLIC;
REVOKE ALL ON TABLE "EmployeeLogs" FROM postgres;
GRANT ALL ON TABLE "EmployeeLogs" TO postgres;


--
-- TOC entry 4215 (class 0 OID 0)
-- Dependencies: 247
-- Name: EmployeeLogs_EmployeeLogId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "EmployeeLogs_EmployeeLogId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "EmployeeLogs_EmployeeLogId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "EmployeeLogs_EmployeeLogId_seq" TO postgres;
GRANT ALL ON SEQUENCE "EmployeeLogs_EmployeeLogId_seq" TO PUBLIC;


--
-- TOC entry 4216 (class 0 OID 0)
-- Dependencies: 248
-- Name: EmployeePremiumContributions; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "EmployeePremiumContributions" FROM PUBLIC;
REVOKE ALL ON TABLE "EmployeePremiumContributions" FROM postgres;
GRANT ALL ON TABLE "EmployeePremiumContributions" TO postgres;
GRANT ALL ON TABLE "EmployeePremiumContributions" TO PUBLIC;


--
-- TOC entry 4218 (class 0 OID 0)
-- Dependencies: 249
-- Name: EmployeePremiumContributions_EmployeePremiumContributionId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "EmployeePremiumContributions_EmployeePremiumContributionId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "EmployeePremiumContributions_EmployeePremiumContributionId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "EmployeePremiumContributions_EmployeePremiumContributionId_seq" TO postgres;
GRANT ALL ON SEQUENCE "EmployeePremiumContributions_EmployeePremiumContributionId_seq" TO PUBLIC;


--
-- TOC entry 4219 (class 0 OID 0)
-- Dependencies: 250
-- Name: EmployeeRelatives; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "EmployeeRelatives" FROM PUBLIC;
REVOKE ALL ON TABLE "EmployeeRelatives" FROM postgres;
GRANT ALL ON TABLE "EmployeeRelatives" TO postgres;
GRANT ALL ON TABLE "EmployeeRelatives" TO PUBLIC;


--
-- TOC entry 4221 (class 0 OID 0)
-- Dependencies: 251
-- Name: EmployeeRelatives_EmployeeRelativeId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "EmployeeRelatives_EmployeeRelativeId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "EmployeeRelatives_EmployeeRelativeId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "EmployeeRelatives_EmployeeRelativeId_seq" TO postgres;
GRANT ALL ON SEQUENCE "EmployeeRelatives_EmployeeRelativeId_seq" TO PUBLIC;


--
-- TOC entry 4222 (class 0 OID 0)
-- Dependencies: 252
-- Name: EmployeeSchedules; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "EmployeeSchedules" FROM PUBLIC;
REVOKE ALL ON TABLE "EmployeeSchedules" FROM postgres;
GRANT ALL ON TABLE "EmployeeSchedules" TO postgres;
GRANT ALL ON TABLE "EmployeeSchedules" TO PUBLIC;


--
-- TOC entry 4224 (class 0 OID 0)
-- Dependencies: 253
-- Name: EmployeeSchedules_EmployeeScheduleId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "EmployeeSchedules_EmployeeScheduleId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "EmployeeSchedules_EmployeeScheduleId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "EmployeeSchedules_EmployeeScheduleId_seq" TO postgres;
GRANT ALL ON SEQUENCE "EmployeeSchedules_EmployeeScheduleId_seq" TO PUBLIC;


--
-- TOC entry 4225 (class 0 OID 0)
-- Dependencies: 254
-- Name: EmployeeTrainings; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "EmployeeTrainings" FROM PUBLIC;
REVOKE ALL ON TABLE "EmployeeTrainings" FROM postgres;
GRANT ALL ON TABLE "EmployeeTrainings" TO postgres;
GRANT ALL ON TABLE "EmployeeTrainings" TO PUBLIC;


--
-- TOC entry 4227 (class 0 OID 0)
-- Dependencies: 255
-- Name: EmployeeTrainings_EmployeeTrainingId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "EmployeeTrainings_EmployeeTrainingId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "EmployeeTrainings_EmployeeTrainingId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "EmployeeTrainings_EmployeeTrainingId_seq" TO postgres;
GRANT ALL ON SEQUENCE "EmployeeTrainings_EmployeeTrainingId_seq" TO PUBLIC;


--
-- TOC entry 4228 (class 0 OID 0)
-- Dependencies: 256
-- Name: EmployeeViolations; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "EmployeeViolations" FROM PUBLIC;
REVOKE ALL ON TABLE "EmployeeViolations" FROM postgres;
GRANT ALL ON TABLE "EmployeeViolations" TO postgres;
GRANT ALL ON TABLE "EmployeeViolations" TO PUBLIC;


--
-- TOC entry 4230 (class 0 OID 0)
-- Dependencies: 257
-- Name: EmployeeViolations_EmployeeViolationId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "EmployeeViolations_EmployeeViolationId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "EmployeeViolations_EmployeeViolationId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "EmployeeViolations_EmployeeViolationId_seq" TO postgres;
GRANT ALL ON SEQUENCE "EmployeeViolations_EmployeeViolationId_seq" TO PUBLIC;


--
-- TOC entry 4231 (class 0 OID 0)
-- Dependencies: 258
-- Name: EmployeeWeeklySchedules; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "EmployeeWeeklySchedules" FROM PUBLIC;
REVOKE ALL ON TABLE "EmployeeWeeklySchedules" FROM postgres;
GRANT ALL ON TABLE "EmployeeWeeklySchedules" TO postgres;
GRANT ALL ON TABLE "EmployeeWeeklySchedules" TO PUBLIC;


--
-- TOC entry 4232 (class 0 OID 0)
-- Dependencies: 259
-- Name: EmployeeWeeklySchedulesMembers; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "EmployeeWeeklySchedulesMembers" FROM PUBLIC;
REVOKE ALL ON TABLE "EmployeeWeeklySchedulesMembers" FROM postgres;
GRANT ALL ON TABLE "EmployeeWeeklySchedulesMembers" TO postgres;
GRANT ALL ON TABLE "EmployeeWeeklySchedulesMembers" TO PUBLIC;


--
-- TOC entry 4234 (class 0 OID 0)
-- Dependencies: 260
-- Name: EmployeeWeeklySchedulesMember_EmployeeWeeklySchedulesMember_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "EmployeeWeeklySchedulesMember_EmployeeWeeklySchedulesMember_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "EmployeeWeeklySchedulesMember_EmployeeWeeklySchedulesMember_seq" FROM postgres;
GRANT ALL ON SEQUENCE "EmployeeWeeklySchedulesMember_EmployeeWeeklySchedulesMember_seq" TO postgres;
GRANT ALL ON SEQUENCE "EmployeeWeeklySchedulesMember_EmployeeWeeklySchedulesMember_seq" TO PUBLIC;


--
-- TOC entry 4236 (class 0 OID 0)
-- Dependencies: 261
-- Name: EmployeeWeeklySchedules_EmployeeWeeklyScheduleId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "EmployeeWeeklySchedules_EmployeeWeeklyScheduleId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "EmployeeWeeklySchedules_EmployeeWeeklyScheduleId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "EmployeeWeeklySchedules_EmployeeWeeklyScheduleId_seq" TO postgres;
GRANT ALL ON SEQUENCE "EmployeeWeeklySchedules_EmployeeWeeklyScheduleId_seq" TO PUBLIC;


--
-- TOC entry 4237 (class 0 OID 0)
-- Dependencies: 262
-- Name: EmployeeWithholdingTaxes; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "EmployeeWithholdingTaxes" FROM PUBLIC;
REVOKE ALL ON TABLE "EmployeeWithholdingTaxes" FROM postgres;
GRANT ALL ON TABLE "EmployeeWithholdingTaxes" TO postgres;
GRANT ALL ON TABLE "EmployeeWithholdingTaxes" TO PUBLIC;


--
-- TOC entry 4239 (class 0 OID 0)
-- Dependencies: 263
-- Name: EmployeeWithholdingTaxes_EmployeeWithholdingTaxId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "EmployeeWithholdingTaxes_EmployeeWithholdingTaxId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "EmployeeWithholdingTaxes_EmployeeWithholdingTaxId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "EmployeeWithholdingTaxes_EmployeeWithholdingTaxId_seq" TO postgres;
GRANT ALL ON SEQUENCE "EmployeeWithholdingTaxes_EmployeeWithholdingTaxId_seq" TO PUBLIC;


--
-- TOC entry 4241 (class 0 OID 0)
-- Dependencies: 264
-- Name: EmployeeWithholdingTaxes_EmployeeWithholdingTaxId_seq1; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "EmployeeWithholdingTaxes_EmployeeWithholdingTaxId_seq1" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "EmployeeWithholdingTaxes_EmployeeWithholdingTaxId_seq1" FROM postgres;
GRANT ALL ON SEQUENCE "EmployeeWithholdingTaxes_EmployeeWithholdingTaxId_seq1" TO postgres;
GRANT ALL ON SEQUENCE "EmployeeWithholdingTaxes_EmployeeWithholdingTaxId_seq1" TO PUBLIC;


--
-- TOC entry 4242 (class 0 OID 0)
-- Dependencies: 265
-- Name: Employees; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Employees" FROM PUBLIC;
REVOKE ALL ON TABLE "Employees" FROM postgres;
GRANT ALL ON TABLE "Employees" TO postgres;
GRANT ALL ON TABLE "Employees" TO PUBLIC;


--
-- TOC entry 4244 (class 0 OID 0)
-- Dependencies: 266
-- Name: Employees_EmployeeId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Employees_EmployeeId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Employees_EmployeeId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Employees_EmployeeId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Employees_EmployeeId_seq" TO PUBLIC;


--
-- TOC entry 4245 (class 0 OID 0)
-- Dependencies: 267
-- Name: Employees_EmployeeSequence_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Employees_EmployeeSequence_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Employees_EmployeeSequence_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Employees_EmployeeSequence_seq" TO postgres;
GRANT ALL ON SEQUENCE "Employees_EmployeeSequence_seq" TO PUBLIC;


--
-- TOC entry 4246 (class 0 OID 0)
-- Dependencies: 268
-- Name: Employees_SeqId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Employees_SeqId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Employees_SeqId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Employees_SeqId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Employees_SeqId_seq" TO PUBLIC;


--
-- TOC entry 4247 (class 0 OID 0)
-- Dependencies: 269
-- Name: EmploymentStatus; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "EmploymentStatus" FROM PUBLIC;
REVOKE ALL ON TABLE "EmploymentStatus" FROM postgres;
GRANT ALL ON TABLE "EmploymentStatus" TO postgres;


--
-- TOC entry 4248 (class 0 OID 0)
-- Dependencies: 270
-- Name: EmploymentStatusPolicies; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "EmploymentStatusPolicies" FROM PUBLIC;
REVOKE ALL ON TABLE "EmploymentStatusPolicies" FROM postgres;
GRANT ALL ON TABLE "EmploymentStatusPolicies" TO postgres;
GRANT ALL ON TABLE "EmploymentStatusPolicies" TO PUBLIC;


--
-- TOC entry 4250 (class 0 OID 0)
-- Dependencies: 271
-- Name: EmploymentStatusPolicies_EmploymentStatusPolicyId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "EmploymentStatusPolicies_EmploymentStatusPolicyId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "EmploymentStatusPolicies_EmploymentStatusPolicyId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "EmploymentStatusPolicies_EmploymentStatusPolicyId_seq" TO postgres;
GRANT ALL ON SEQUENCE "EmploymentStatusPolicies_EmploymentStatusPolicyId_seq" TO PUBLIC;


--
-- TOC entry 4252 (class 0 OID 0)
-- Dependencies: 272
-- Name: EmploymentStatus_EmploymentStatusId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "EmploymentStatus_EmploymentStatusId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "EmploymentStatus_EmploymentStatusId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "EmploymentStatus_EmploymentStatusId_seq" TO postgres;
GRANT ALL ON SEQUENCE "EmploymentStatus_EmploymentStatusId_seq" TO PUBLIC;


--
-- TOC entry 4253 (class 0 OID 0)
-- Dependencies: 273
-- Name: EvaluationAnswers; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "EvaluationAnswers" FROM PUBLIC;
REVOKE ALL ON TABLE "EvaluationAnswers" FROM postgres;
GRANT ALL ON TABLE "EvaluationAnswers" TO postgres;
GRANT ALL ON TABLE "EvaluationAnswers" TO PUBLIC;


--
-- TOC entry 4255 (class 0 OID 0)
-- Dependencies: 274
-- Name: EvaluationAnswers_EvaluationAnswerId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "EvaluationAnswers_EvaluationAnswerId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "EvaluationAnswers_EvaluationAnswerId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "EvaluationAnswers_EvaluationAnswerId_seq" TO postgres;
GRANT ALL ON SEQUENCE "EvaluationAnswers_EvaluationAnswerId_seq" TO PUBLIC;


--
-- TOC entry 4256 (class 0 OID 0)
-- Dependencies: 275
-- Name: EvaluationDepartments; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "EvaluationDepartments" FROM PUBLIC;
REVOKE ALL ON TABLE "EvaluationDepartments" FROM postgres;
GRANT ALL ON TABLE "EvaluationDepartments" TO postgres;
GRANT ALL ON TABLE "EvaluationDepartments" TO PUBLIC;


--
-- TOC entry 4258 (class 0 OID 0)
-- Dependencies: 276
-- Name: EvaluationDepartments_EvaluationDepartmentId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "EvaluationDepartments_EvaluationDepartmentId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "EvaluationDepartments_EvaluationDepartmentId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "EvaluationDepartments_EvaluationDepartmentId_seq" TO postgres;
GRANT ALL ON SEQUENCE "EvaluationDepartments_EvaluationDepartmentId_seq" TO PUBLIC;


--
-- TOC entry 4259 (class 0 OID 0)
-- Dependencies: 277
-- Name: EvaluationEmployees; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "EvaluationEmployees" FROM PUBLIC;
REVOKE ALL ON TABLE "EvaluationEmployees" FROM postgres;
GRANT ALL ON TABLE "EvaluationEmployees" TO postgres;
GRANT ALL ON TABLE "EvaluationEmployees" TO PUBLIC;


--
-- TOC entry 4261 (class 0 OID 0)
-- Dependencies: 278
-- Name: EvaluationEmployees_EvaluationEmployeeId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "EvaluationEmployees_EvaluationEmployeeId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "EvaluationEmployees_EvaluationEmployeeId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "EvaluationEmployees_EvaluationEmployeeId_seq" TO postgres;
GRANT ALL ON SEQUENCE "EvaluationEmployees_EvaluationEmployeeId_seq" TO PUBLIC;


--
-- TOC entry 4262 (class 0 OID 0)
-- Dependencies: 279
-- Name: EvaluationIpcrItems; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "EvaluationIpcrItems" FROM PUBLIC;
REVOKE ALL ON TABLE "EvaluationIpcrItems" FROM postgres;
GRANT ALL ON TABLE "EvaluationIpcrItems" TO postgres;
GRANT ALL ON TABLE "EvaluationIpcrItems" TO PUBLIC;


--
-- TOC entry 4264 (class 0 OID 0)
-- Dependencies: 280
-- Name: EvaluationIpcrItems_EvaluationIpcrItemId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "EvaluationIpcrItems_EvaluationIpcrItemId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "EvaluationIpcrItems_EvaluationIpcrItemId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "EvaluationIpcrItems_EvaluationIpcrItemId_seq" TO postgres;
GRANT ALL ON SEQUENCE "EvaluationIpcrItems_EvaluationIpcrItemId_seq" TO PUBLIC;


--
-- TOC entry 4265 (class 0 OID 0)
-- Dependencies: 281
-- Name: EvaluationOverallAnswers; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "EvaluationOverallAnswers" FROM PUBLIC;
REVOKE ALL ON TABLE "EvaluationOverallAnswers" FROM postgres;
GRANT ALL ON TABLE "EvaluationOverallAnswers" TO postgres;
GRANT ALL ON TABLE "EvaluationOverallAnswers" TO PUBLIC;


--
-- TOC entry 4267 (class 0 OID 0)
-- Dependencies: 282
-- Name: EvaluationOverallAnswers_EvaluationOverallAnswerId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "EvaluationOverallAnswers_EvaluationOverallAnswerId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "EvaluationOverallAnswers_EvaluationOverallAnswerId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "EvaluationOverallAnswers_EvaluationOverallAnswerId_seq" TO postgres;
GRANT ALL ON SEQUENCE "EvaluationOverallAnswers_EvaluationOverallAnswerId_seq" TO PUBLIC;


--
-- TOC entry 4268 (class 0 OID 0)
-- Dependencies: 283
-- Name: EvaluationQuestionTypes; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "EvaluationQuestionTypes" FROM PUBLIC;
REVOKE ALL ON TABLE "EvaluationQuestionTypes" FROM postgres;
GRANT ALL ON TABLE "EvaluationQuestionTypes" TO postgres;
GRANT ALL ON TABLE "EvaluationQuestionTypes" TO PUBLIC;


--
-- TOC entry 4270 (class 0 OID 0)
-- Dependencies: 284
-- Name: EvaluationQuestionTypes_QuestionTypeId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "EvaluationQuestionTypes_QuestionTypeId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "EvaluationQuestionTypes_QuestionTypeId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "EvaluationQuestionTypes_QuestionTypeId_seq" TO postgres;
GRANT ALL ON SEQUENCE "EvaluationQuestionTypes_QuestionTypeId_seq" TO PUBLIC;


--
-- TOC entry 4271 (class 0 OID 0)
-- Dependencies: 285
-- Name: EvaluationQuestions; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "EvaluationQuestions" FROM PUBLIC;
REVOKE ALL ON TABLE "EvaluationQuestions" FROM postgres;
GRANT ALL ON TABLE "EvaluationQuestions" TO postgres;
GRANT ALL ON TABLE "EvaluationQuestions" TO PUBLIC;


--
-- TOC entry 4273 (class 0 OID 0)
-- Dependencies: 286
-- Name: EvaluationQuestions_EvaluationQuestionId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "EvaluationQuestions_EvaluationQuestionId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "EvaluationQuestions_EvaluationQuestionId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "EvaluationQuestions_EvaluationQuestionId_seq" TO postgres;
GRANT ALL ON SEQUENCE "EvaluationQuestions_EvaluationQuestionId_seq" TO PUBLIC;


--
-- TOC entry 4274 (class 0 OID 0)
-- Dependencies: 287
-- Name: EvaluationRateTypes; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "EvaluationRateTypes" FROM PUBLIC;
REVOKE ALL ON TABLE "EvaluationRateTypes" FROM postgres;
GRANT ALL ON TABLE "EvaluationRateTypes" TO postgres;
GRANT ALL ON TABLE "EvaluationRateTypes" TO PUBLIC;


--
-- TOC entry 4275 (class 0 OID 0)
-- Dependencies: 288
-- Name: EvaluationRatings; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "EvaluationRatings" FROM PUBLIC;
REVOKE ALL ON TABLE "EvaluationRatings" FROM postgres;
GRANT ALL ON TABLE "EvaluationRatings" TO postgres;
GRANT ALL ON TABLE "EvaluationRatings" TO PUBLIC;


--
-- TOC entry 4277 (class 0 OID 0)
-- Dependencies: 289
-- Name: EvaluationRatings_RatingId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "EvaluationRatings_RatingId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "EvaluationRatings_RatingId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "EvaluationRatings_RatingId_seq" TO postgres;
GRANT ALL ON SEQUENCE "EvaluationRatings_RatingId_seq" TO PUBLIC;


--
-- TOC entry 4278 (class 0 OID 0)
-- Dependencies: 290
-- Name: Evaluations; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Evaluations" FROM PUBLIC;
REVOKE ALL ON TABLE "Evaluations" FROM postgres;
GRANT ALL ON TABLE "Evaluations" TO postgres;
GRANT ALL ON TABLE "Evaluations" TO PUBLIC;


--
-- TOC entry 4280 (class 0 OID 0)
-- Dependencies: 291
-- Name: Evaluations_EvaluationId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Evaluations_EvaluationId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Evaluations_EvaluationId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Evaluations_EvaluationId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Evaluations_EvaluationId_seq" TO PUBLIC;


--
-- TOC entry 4281 (class 0 OID 0)
-- Dependencies: 292
-- Name: Events; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Events" FROM PUBLIC;
REVOKE ALL ON TABLE "Events" FROM postgres;
GRANT ALL ON TABLE "Events" TO postgres;
GRANT ALL ON TABLE "Events" TO PUBLIC;


--
-- TOC entry 4283 (class 0 OID 0)
-- Dependencies: 293
-- Name: Events_EventId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Events_EventId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Events_EventId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Events_EventId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Events_EventId_seq" TO PUBLIC;


--
-- TOC entry 4284 (class 0 OID 0)
-- Dependencies: 294
-- Name: Expenses; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Expenses" FROM PUBLIC;
REVOKE ALL ON TABLE "Expenses" FROM postgres;
GRANT ALL ON TABLE "Expenses" TO postgres;


--
-- TOC entry 4286 (class 0 OID 0)
-- Dependencies: 295
-- Name: Expenses_ExpenseId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Expenses_ExpenseId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Expenses_ExpenseId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Expenses_ExpenseId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Expenses_ExpenseId_seq" TO PUBLIC;


--
-- TOC entry 4287 (class 0 OID 0)
-- Dependencies: 296
-- Name: Experiences; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Experiences" FROM PUBLIC;
REVOKE ALL ON TABLE "Experiences" FROM postgres;
GRANT ALL ON TABLE "Experiences" TO postgres;
GRANT ALL ON TABLE "Experiences" TO PUBLIC;


--
-- TOC entry 4289 (class 0 OID 0)
-- Dependencies: 297
-- Name: Experiences_ExperienceId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Experiences_ExperienceId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Experiences_ExperienceId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Experiences_ExperienceId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Experiences_ExperienceId_seq" TO PUBLIC;


--
-- TOC entry 4290 (class 0 OID 0)
-- Dependencies: 298
-- Name: FaceScannerDevices; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "FaceScannerDevices" FROM PUBLIC;
REVOKE ALL ON TABLE "FaceScannerDevices" FROM postgres;
GRANT ALL ON TABLE "FaceScannerDevices" TO postgres;
GRANT ALL ON TABLE "FaceScannerDevices" TO PUBLIC;


--
-- TOC entry 4292 (class 0 OID 0)
-- Dependencies: 299
-- Name: FaceScannerDevices_FaceScannerDeviceId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "FaceScannerDevices_FaceScannerDeviceId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "FaceScannerDevices_FaceScannerDeviceId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "FaceScannerDevices_FaceScannerDeviceId_seq" TO postgres;
GRANT ALL ON SEQUENCE "FaceScannerDevices_FaceScannerDeviceId_seq" TO PUBLIC;


--
-- TOC entry 4293 (class 0 OID 0)
-- Dependencies: 300
-- Name: FaceScannerLogs; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "FaceScannerLogs" FROM PUBLIC;
REVOKE ALL ON TABLE "FaceScannerLogs" FROM postgres;
GRANT ALL ON TABLE "FaceScannerLogs" TO postgres;
GRANT ALL ON TABLE "FaceScannerLogs" TO PUBLIC;


--
-- TOC entry 4295 (class 0 OID 0)
-- Dependencies: 301
-- Name: FaceScannerLogs_FaceScannerLogId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "FaceScannerLogs_FaceScannerLogId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "FaceScannerLogs_FaceScannerLogId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "FaceScannerLogs_FaceScannerLogId_seq" TO postgres;
GRANT ALL ON SEQUENCE "FaceScannerLogs_FaceScannerLogId_seq" TO PUBLIC;


--
-- TOC entry 4296 (class 0 OID 0)
-- Dependencies: 302
-- Name: FlapBarriers; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "FlapBarriers" FROM PUBLIC;
REVOKE ALL ON TABLE "FlapBarriers" FROM postgres;
GRANT ALL ON TABLE "FlapBarriers" TO postgres;
GRANT ALL ON TABLE "FlapBarriers" TO PUBLIC;


--
-- TOC entry 4298 (class 0 OID 0)
-- Dependencies: 303
-- Name: FlapBarriers_FlapBarrierId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "FlapBarriers_FlapBarrierId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "FlapBarriers_FlapBarrierId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "FlapBarriers_FlapBarrierId_seq" TO postgres;
GRANT ALL ON SEQUENCE "FlapBarriers_FlapBarrierId_seq" TO PUBLIC;


--
-- TOC entry 4299 (class 0 OID 0)
-- Dependencies: 304
-- Name: GSISContributions; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "GSISContributions" FROM PUBLIC;
REVOKE ALL ON TABLE "GSISContributions" FROM postgres;
GRANT ALL ON TABLE "GSISContributions" TO postgres;
GRANT ALL ON TABLE "GSISContributions" TO PUBLIC;


--
-- TOC entry 4301 (class 0 OID 0)
-- Dependencies: 305
-- Name: GSISContributions_GSISContributionId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "GSISContributions_GSISContributionId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "GSISContributions_GSISContributionId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "GSISContributions_GSISContributionId_seq" TO postgres;
GRANT ALL ON SEQUENCE "GSISContributions_GSISContributionId_seq" TO PUBLIC;


--
-- TOC entry 4302 (class 0 OID 0)
-- Dependencies: 306
-- Name: GeneralPolicies; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "GeneralPolicies" FROM PUBLIC;
REVOKE ALL ON TABLE "GeneralPolicies" FROM postgres;
GRANT ALL ON TABLE "GeneralPolicies" TO postgres;
GRANT ALL ON TABLE "GeneralPolicies" TO PUBLIC;


--
-- TOC entry 4304 (class 0 OID 0)
-- Dependencies: 307
-- Name: GeneralPolicies_GeneralPolicyId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "GeneralPolicies_GeneralPolicyId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "GeneralPolicies_GeneralPolicyId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "GeneralPolicies_GeneralPolicyId_seq" TO postgres;
GRANT ALL ON SEQUENCE "GeneralPolicies_GeneralPolicyId_seq" TO PUBLIC;


--
-- TOC entry 4305 (class 0 OID 0)
-- Dependencies: 308
-- Name: HDMFContributions; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "HDMFContributions" FROM PUBLIC;
REVOKE ALL ON TABLE "HDMFContributions" FROM postgres;
GRANT ALL ON TABLE "HDMFContributions" TO postgres;


--
-- TOC entry 4307 (class 0 OID 0)
-- Dependencies: 309
-- Name: HDMF_HDMFBracketId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "HDMF_HDMFBracketId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "HDMF_HDMFBracketId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "HDMF_HDMFBracketId_seq" TO postgres;
GRANT ALL ON SEQUENCE "HDMF_HDMFBracketId_seq" TO PUBLIC;


--
-- TOC entry 4308 (class 0 OID 0)
-- Dependencies: 310
-- Name: HolidayMultipliers; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "HolidayMultipliers" FROM PUBLIC;
REVOKE ALL ON TABLE "HolidayMultipliers" FROM postgres;
GRANT ALL ON TABLE "HolidayMultipliers" TO postgres;
GRANT ALL ON TABLE "HolidayMultipliers" TO PUBLIC;


--
-- TOC entry 4310 (class 0 OID 0)
-- Dependencies: 311
-- Name: HolidayMultipliers_HolidayMultiplierId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "HolidayMultipliers_HolidayMultiplierId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "HolidayMultipliers_HolidayMultiplierId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "HolidayMultipliers_HolidayMultiplierId_seq" TO postgres;
GRANT ALL ON SEQUENCE "HolidayMultipliers_HolidayMultiplierId_seq" TO PUBLIC;


--
-- TOC entry 4311 (class 0 OID 0)
-- Dependencies: 312
-- Name: HolidayPolicies; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "HolidayPolicies" FROM PUBLIC;
REVOKE ALL ON TABLE "HolidayPolicies" FROM postgres;
GRANT ALL ON TABLE "HolidayPolicies" TO postgres;
GRANT ALL ON TABLE "HolidayPolicies" TO PUBLIC;


--
-- TOC entry 4313 (class 0 OID 0)
-- Dependencies: 313
-- Name: HolidayPolicies_HolidayPolicyId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "HolidayPolicies_HolidayPolicyId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "HolidayPolicies_HolidayPolicyId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "HolidayPolicies_HolidayPolicyId_seq" TO postgres;
GRANT ALL ON SEQUENCE "HolidayPolicies_HolidayPolicyId_seq" TO PUBLIC;


--
-- TOC entry 4314 (class 0 OID 0)
-- Dependencies: 314
-- Name: Holidays; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Holidays" FROM PUBLIC;
REVOKE ALL ON TABLE "Holidays" FROM postgres;
GRANT ALL ON TABLE "Holidays" TO postgres;


--
-- TOC entry 4316 (class 0 OID 0)
-- Dependencies: 315
-- Name: Holidays_HolidayId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Holidays_HolidayId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Holidays_HolidayId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Holidays_HolidayId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Holidays_HolidayId_seq" TO PUBLIC;


--
-- TOC entry 4317 (class 0 OID 0)
-- Dependencies: 316
-- Name: Honorarias; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Honorarias" FROM PUBLIC;
REVOKE ALL ON TABLE "Honorarias" FROM postgres;
GRANT ALL ON TABLE "Honorarias" TO postgres;
GRANT ALL ON TABLE "Honorarias" TO PUBLIC;


--
-- TOC entry 4318 (class 0 OID 0)
-- Dependencies: 317
-- Name: JobVacancies; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "JobVacancies" FROM PUBLIC;
REVOKE ALL ON TABLE "JobVacancies" FROM postgres;
GRANT ALL ON TABLE "JobVacancies" TO postgres;
GRANT ALL ON TABLE "JobVacancies" TO PUBLIC;


--
-- TOC entry 4320 (class 0 OID 0)
-- Dependencies: 318
-- Name: JobVacancies_JobVacancyId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "JobVacancies_JobVacancyId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "JobVacancies_JobVacancyId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "JobVacancies_JobVacancyId_seq" TO postgres;
GRANT ALL ON SEQUENCE "JobVacancies_JobVacancyId_seq" TO PUBLIC;


--
-- TOC entry 4321 (class 0 OID 0)
-- Dependencies: 319
-- Name: LeaveCredits; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "LeaveCredits" FROM PUBLIC;
REVOKE ALL ON TABLE "LeaveCredits" FROM postgres;
GRANT ALL ON TABLE "LeaveCredits" TO postgres;


--
-- TOC entry 4323 (class 0 OID 0)
-- Dependencies: 320
-- Name: LeaveCredits_LeaveCreditID_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "LeaveCredits_LeaveCreditID_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "LeaveCredits_LeaveCreditID_seq" FROM postgres;
GRANT ALL ON SEQUENCE "LeaveCredits_LeaveCreditID_seq" TO postgres;
GRANT ALL ON SEQUENCE "LeaveCredits_LeaveCreditID_seq" TO PUBLIC;


--
-- TOC entry 4324 (class 0 OID 0)
-- Dependencies: 321
-- Name: LeavePolicies; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "LeavePolicies" FROM PUBLIC;
REVOKE ALL ON TABLE "LeavePolicies" FROM postgres;
GRANT ALL ON TABLE "LeavePolicies" TO postgres;
GRANT ALL ON TABLE "LeavePolicies" TO PUBLIC;


--
-- TOC entry 4326 (class 0 OID 0)
-- Dependencies: 322
-- Name: LeavePolicies_LeavePolicyId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "LeavePolicies_LeavePolicyId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "LeavePolicies_LeavePolicyId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "LeavePolicies_LeavePolicyId_seq" TO postgres;
GRANT ALL ON SEQUENCE "LeavePolicies_LeavePolicyId_seq" TO PUBLIC;


--
-- TOC entry 4327 (class 0 OID 0)
-- Dependencies: 323
-- Name: LeaveRecords; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "LeaveRecords" FROM PUBLIC;
REVOKE ALL ON TABLE "LeaveRecords" FROM postgres;
GRANT ALL ON TABLE "LeaveRecords" TO postgres;


--
-- TOC entry 4329 (class 0 OID 0)
-- Dependencies: 324
-- Name: LeaveRecord_LeaveRecordId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "LeaveRecord_LeaveRecordId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "LeaveRecord_LeaveRecordId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "LeaveRecord_LeaveRecordId_seq" TO postgres;
GRANT ALL ON SEQUENCE "LeaveRecord_LeaveRecordId_seq" TO PUBLIC;


--
-- TOC entry 4330 (class 0 OID 0)
-- Dependencies: 325
-- Name: Leaves; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Leaves" FROM PUBLIC;
REVOKE ALL ON TABLE "Leaves" FROM postgres;
GRANT ALL ON TABLE "Leaves" TO postgres;


--
-- TOC entry 4332 (class 0 OID 0)
-- Dependencies: 326
-- Name: Leaves_LeaveId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Leaves_LeaveId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Leaves_LeaveId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Leaves_LeaveId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Leaves_LeaveId_seq" TO PUBLIC;


--
-- TOC entry 4333 (class 0 OID 0)
-- Dependencies: 327
-- Name: LoanApplications; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "LoanApplications" FROM PUBLIC;
REVOKE ALL ON TABLE "LoanApplications" FROM postgres;
GRANT ALL ON TABLE "LoanApplications" TO postgres;
GRANT ALL ON TABLE "LoanApplications" TO PUBLIC;


--
-- TOC entry 4335 (class 0 OID 0)
-- Dependencies: 328
-- Name: LoanApplications_LoanApplicationId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "LoanApplications_LoanApplicationId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "LoanApplications_LoanApplicationId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "LoanApplications_LoanApplicationId_seq" TO postgres;
GRANT ALL ON SEQUENCE "LoanApplications_LoanApplicationId_seq" TO PUBLIC;


--
-- TOC entry 4336 (class 0 OID 0)
-- Dependencies: 329
-- Name: LoanBreakdowns; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "LoanBreakdowns" FROM PUBLIC;
REVOKE ALL ON TABLE "LoanBreakdowns" FROM postgres;
GRANT ALL ON TABLE "LoanBreakdowns" TO postgres;
GRANT ALL ON TABLE "LoanBreakdowns" TO PUBLIC;


--
-- TOC entry 4338 (class 0 OID 0)
-- Dependencies: 330
-- Name: LoanBreakdowns_LoanBreakdownId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "LoanBreakdowns_LoanBreakdownId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "LoanBreakdowns_LoanBreakdownId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "LoanBreakdowns_LoanBreakdownId_seq" TO postgres;
GRANT ALL ON SEQUENCE "LoanBreakdowns_LoanBreakdownId_seq" TO PUBLIC;


--
-- TOC entry 4339 (class 0 OID 0)
-- Dependencies: 331
-- Name: LoanTypes; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "LoanTypes" FROM PUBLIC;
REVOKE ALL ON TABLE "LoanTypes" FROM postgres;
GRANT ALL ON TABLE "LoanTypes" TO postgres;


--
-- TOC entry 4341 (class 0 OID 0)
-- Dependencies: 332
-- Name: LoanTypes_LoanTypeId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "LoanTypes_LoanTypeId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "LoanTypes_LoanTypeId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "LoanTypes_LoanTypeId_seq" TO postgres;
GRANT ALL ON SEQUENCE "LoanTypes_LoanTypeId_seq" TO PUBLIC;


--
-- TOC entry 4342 (class 0 OID 0)
-- Dependencies: 333
-- Name: LocatorSlips; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "LocatorSlips" FROM PUBLIC;
REVOKE ALL ON TABLE "LocatorSlips" FROM postgres;
GRANT ALL ON TABLE "LocatorSlips" TO postgres;
GRANT ALL ON TABLE "LocatorSlips" TO PUBLIC;


--
-- TOC entry 4344 (class 0 OID 0)
-- Dependencies: 334
-- Name: LocatorSlips_LocatorSlipId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "LocatorSlips_LocatorSlipId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "LocatorSlips_LocatorSlipId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "LocatorSlips_LocatorSlipId_seq" TO postgres;
GRANT ALL ON SEQUENCE "LocatorSlips_LocatorSlipId_seq" TO PUBLIC;


--
-- TOC entry 4345 (class 0 OID 0)
-- Dependencies: 335
-- Name: LoyaltyAwardPolicies; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "LoyaltyAwardPolicies" FROM PUBLIC;
REVOKE ALL ON TABLE "LoyaltyAwardPolicies" FROM postgres;
GRANT ALL ON TABLE "LoyaltyAwardPolicies" TO postgres;
GRANT ALL ON TABLE "LoyaltyAwardPolicies" TO PUBLIC;


--
-- TOC entry 4347 (class 0 OID 0)
-- Dependencies: 336
-- Name: LoyaltyAwardsPolicies_LoyaltyAwardPolicyId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "LoyaltyAwardsPolicies_LoyaltyAwardPolicyId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "LoyaltyAwardsPolicies_LoyaltyAwardPolicyId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "LoyaltyAwardsPolicies_LoyaltyAwardPolicyId_seq" TO postgres;
GRANT ALL ON SEQUENCE "LoyaltyAwardsPolicies_LoyaltyAwardPolicyId_seq" TO PUBLIC;


--
-- TOC entry 4348 (class 0 OID 0)
-- Dependencies: 337
-- Name: MemberContributionExclusions; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "MemberContributionExclusions" FROM PUBLIC;
REVOKE ALL ON TABLE "MemberContributionExclusions" FROM postgres;
GRANT ALL ON TABLE "MemberContributionExclusions" TO postgres;
GRANT ALL ON TABLE "MemberContributionExclusions" TO PUBLIC;


--
-- TOC entry 4349 (class 0 OID 0)
-- Dependencies: 338
-- Name: Messages; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Messages" FROM PUBLIC;
REVOKE ALL ON TABLE "Messages" FROM postgres;
GRANT ALL ON TABLE "Messages" TO postgres;


--
-- TOC entry 4351 (class 0 OID 0)
-- Dependencies: 339
-- Name: Messages_MessageId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Messages_MessageId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Messages_MessageId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Messages_MessageId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Messages_MessageId_seq" TO PUBLIC;


--
-- TOC entry 4352 (class 0 OID 0)
-- Dependencies: 340
-- Name: MonitizedLeaveCredits; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "MonitizedLeaveCredits" FROM PUBLIC;
REVOKE ALL ON TABLE "MonitizedLeaveCredits" FROM postgres;
GRANT ALL ON TABLE "MonitizedLeaveCredits" TO postgres;
GRANT ALL ON TABLE "MonitizedLeaveCredits" TO PUBLIC;


--
-- TOC entry 4354 (class 0 OID 0)
-- Dependencies: 341
-- Name: MonitizedLeaveCredits_MonetizedLeaveCreditId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "MonitizedLeaveCredits_MonetizedLeaveCreditId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "MonitizedLeaveCredits_MonetizedLeaveCreditId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "MonitizedLeaveCredits_MonetizedLeaveCreditId_seq" TO postgres;
GRANT ALL ON SEQUENCE "MonitizedLeaveCredits_MonetizedLeaveCreditId_seq" TO PUBLIC;


--
-- TOC entry 4355 (class 0 OID 0)
-- Dependencies: 342
-- Name: Multipliers; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Multipliers" FROM PUBLIC;
REVOKE ALL ON TABLE "Multipliers" FROM postgres;
GRANT ALL ON TABLE "Multipliers" TO postgres;


--
-- TOC entry 4357 (class 0 OID 0)
-- Dependencies: 343
-- Name: Multiplier_MultiplierId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Multiplier_MultiplierId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Multiplier_MultiplierId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Multiplier_MultiplierId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Multiplier_MultiplierId_seq" TO PUBLIC;


--
-- TOC entry 4358 (class 0 OID 0)
-- Dependencies: 344
-- Name: NonPlantillaItemEntries; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "NonPlantillaItemEntries" FROM PUBLIC;
REVOKE ALL ON TABLE "NonPlantillaItemEntries" FROM postgres;
GRANT ALL ON TABLE "NonPlantillaItemEntries" TO postgres;
GRANT ALL ON TABLE "NonPlantillaItemEntries" TO PUBLIC;


--
-- TOC entry 4360 (class 0 OID 0)
-- Dependencies: 345
-- Name: NonPlantillaItemEntries_NonPlantillaItemEntryId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "NonPlantillaItemEntries_NonPlantillaItemEntryId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "NonPlantillaItemEntries_NonPlantillaItemEntryId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "NonPlantillaItemEntries_NonPlantillaItemEntryId_seq" TO postgres;
GRANT ALL ON SEQUENCE "NonPlantillaItemEntries_NonPlantillaItemEntryId_seq" TO PUBLIC;


--
-- TOC entry 4361 (class 0 OID 0)
-- Dependencies: 346
-- Name: NonPlantillaItems; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "NonPlantillaItems" FROM PUBLIC;
REVOKE ALL ON TABLE "NonPlantillaItems" FROM postgres;
GRANT ALL ON TABLE "NonPlantillaItems" TO postgres;
GRANT ALL ON TABLE "NonPlantillaItems" TO PUBLIC;


--
-- TOC entry 4363 (class 0 OID 0)
-- Dependencies: 347
-- Name: NonPlantillaItems_NonPlantillaItemId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "NonPlantillaItems_NonPlantillaItemId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "NonPlantillaItems_NonPlantillaItemId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "NonPlantillaItems_NonPlantillaItemId_seq" TO postgres;
GRANT ALL ON SEQUENCE "NonPlantillaItems_NonPlantillaItemId_seq" TO PUBLIC;


--
-- TOC entry 4364 (class 0 OID 0)
-- Dependencies: 348
-- Name: Notifications; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Notifications" FROM PUBLIC;
REVOKE ALL ON TABLE "Notifications" FROM postgres;
GRANT ALL ON TABLE "Notifications" TO postgres;
GRANT ALL ON TABLE "Notifications" TO PUBLIC;


--
-- TOC entry 4366 (class 0 OID 0)
-- Dependencies: 349
-- Name: Notifications_NotificationId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Notifications_NotificationId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Notifications_NotificationId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Notifications_NotificationId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Notifications_NotificationId_seq" TO PUBLIC;


--
-- TOC entry 4367 (class 0 OID 0)
-- Dependencies: 350
-- Name: OTMultipliers; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "OTMultipliers" FROM PUBLIC;
REVOKE ALL ON TABLE "OTMultipliers" FROM postgres;
GRANT ALL ON TABLE "OTMultipliers" TO postgres;
GRANT ALL ON TABLE "OTMultipliers" TO PUBLIC;


--
-- TOC entry 4369 (class 0 OID 0)
-- Dependencies: 351
-- Name: OTMultipliers_OTMultipliersId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "OTMultipliers_OTMultipliersId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "OTMultipliers_OTMultipliersId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "OTMultipliers_OTMultipliersId_seq" TO postgres;
GRANT ALL ON SEQUENCE "OTMultipliers_OTMultipliersId_seq" TO PUBLIC;


--
-- TOC entry 4370 (class 0 OID 0)
-- Dependencies: 352
-- Name: Organizations; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Organizations" FROM PUBLIC;
REVOKE ALL ON TABLE "Organizations" FROM postgres;
GRANT ALL ON TABLE "Organizations" TO postgres;
GRANT ALL ON TABLE "Organizations" TO PUBLIC;


--
-- TOC entry 4372 (class 0 OID 0)
-- Dependencies: 353
-- Name: Organizations_OrganizationId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Organizations_OrganizationId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Organizations_OrganizationId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Organizations_OrganizationId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Organizations_OrganizationId_seq" TO PUBLIC;


--
-- TOC entry 4373 (class 0 OID 0)
-- Dependencies: 354
-- Name: OtherCharges; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "OtherCharges" FROM PUBLIC;
REVOKE ALL ON TABLE "OtherCharges" FROM postgres;
GRANT ALL ON TABLE "OtherCharges" TO postgres;


--
-- TOC entry 4375 (class 0 OID 0)
-- Dependencies: 355
-- Name: OtherCharges_OtherChargesId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "OtherCharges_OtherChargesId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "OtherCharges_OtherChargesId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "OtherCharges_OtherChargesId_seq" TO postgres;
GRANT ALL ON SEQUENCE "OtherCharges_OtherChargesId_seq" TO PUBLIC;


--
-- TOC entry 4376 (class 0 OID 0)
-- Dependencies: 356
-- Name: OtherDeductions; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "OtherDeductions" FROM PUBLIC;
REVOKE ALL ON TABLE "OtherDeductions" FROM postgres;
GRANT ALL ON TABLE "OtherDeductions" TO postgres;


--
-- TOC entry 4378 (class 0 OID 0)
-- Dependencies: 357
-- Name: OtherDeductions_OtherDeductionId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "OtherDeductions_OtherDeductionId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "OtherDeductions_OtherDeductionId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "OtherDeductions_OtherDeductionId_seq" TO postgres;
GRANT ALL ON SEQUENCE "OtherDeductions_OtherDeductionId_seq" TO PUBLIC;


--
-- TOC entry 4379 (class 0 OID 0)
-- Dependencies: 358
-- Name: Overtimes; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Overtimes" FROM PUBLIC;
REVOKE ALL ON TABLE "Overtimes" FROM postgres;
GRANT ALL ON TABLE "Overtimes" TO postgres;
GRANT ALL ON TABLE "Overtimes" TO PUBLIC;


--
-- TOC entry 4381 (class 0 OID 0)
-- Dependencies: 359
-- Name: Overtimes_OvertimeId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Overtimes_OvertimeId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Overtimes_OvertimeId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Overtimes_OvertimeId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Overtimes_OvertimeId_seq" TO PUBLIC;


--
-- TOC entry 4382 (class 0 OID 0)
-- Dependencies: 360
-- Name: PayrollAllowances; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "PayrollAllowances" FROM PUBLIC;
REVOKE ALL ON TABLE "PayrollAllowances" FROM postgres;
GRANT ALL ON TABLE "PayrollAllowances" TO postgres;
GRANT ALL ON TABLE "PayrollAllowances" TO PUBLIC;


--
-- TOC entry 4384 (class 0 OID 0)
-- Dependencies: 361
-- Name: PayrollAllowances_PayrollAllowanceId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "PayrollAllowances_PayrollAllowanceId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "PayrollAllowances_PayrollAllowanceId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "PayrollAllowances_PayrollAllowanceId_seq" TO postgres;
GRANT ALL ON SEQUENCE "PayrollAllowances_PayrollAllowanceId_seq" TO PUBLIC;


--
-- TOC entry 4385 (class 0 OID 0)
-- Dependencies: 362
-- Name: PayrollClusters; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "PayrollClusters" FROM PUBLIC;
REVOKE ALL ON TABLE "PayrollClusters" FROM postgres;
GRANT ALL ON TABLE "PayrollClusters" TO postgres;
GRANT ALL ON TABLE "PayrollClusters" TO PUBLIC;


--
-- TOC entry 4387 (class 0 OID 0)
-- Dependencies: 363
-- Name: PayrollClusters_PayrollClusterId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "PayrollClusters_PayrollClusterId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "PayrollClusters_PayrollClusterId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "PayrollClusters_PayrollClusterId_seq" TO postgres;
GRANT ALL ON SEQUENCE "PayrollClusters_PayrollClusterId_seq" TO PUBLIC;


--
-- TOC entry 4388 (class 0 OID 0)
-- Dependencies: 364
-- Name: PayrollDates; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "PayrollDates" FROM PUBLIC;
REVOKE ALL ON TABLE "PayrollDates" FROM postgres;
GRANT ALL ON TABLE "PayrollDates" TO postgres;
GRANT ALL ON TABLE "PayrollDates" TO PUBLIC;


--
-- TOC entry 4390 (class 0 OID 0)
-- Dependencies: 365
-- Name: PayrollDates_PayrollDateId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "PayrollDates_PayrollDateId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "PayrollDates_PayrollDateId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "PayrollDates_PayrollDateId_seq" TO postgres;
GRANT ALL ON SEQUENCE "PayrollDates_PayrollDateId_seq" TO PUBLIC;


--
-- TOC entry 4391 (class 0 OID 0)
-- Dependencies: 366
-- Name: PayrollOtherDeductions; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "PayrollOtherDeductions" FROM PUBLIC;
REVOKE ALL ON TABLE "PayrollOtherDeductions" FROM postgres;
GRANT ALL ON TABLE "PayrollOtherDeductions" TO postgres;
GRANT ALL ON TABLE "PayrollOtherDeductions" TO PUBLIC;


--
-- TOC entry 4393 (class 0 OID 0)
-- Dependencies: 367
-- Name: PayrollOtherDeductions_PayrollOtherDeductionsId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "PayrollOtherDeductions_PayrollOtherDeductionsId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "PayrollOtherDeductions_PayrollOtherDeductionsId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "PayrollOtherDeductions_PayrollOtherDeductionsId_seq" TO postgres;
GRANT ALL ON SEQUENCE "PayrollOtherDeductions_PayrollOtherDeductionsId_seq" TO PUBLIC;


--
-- TOC entry 4394 (class 0 OID 0)
-- Dependencies: 368
-- Name: PayrollPremiums; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "PayrollPremiums" FROM PUBLIC;
REVOKE ALL ON TABLE "PayrollPremiums" FROM postgres;
GRANT ALL ON TABLE "PayrollPremiums" TO postgres;
GRANT ALL ON TABLE "PayrollPremiums" TO PUBLIC;


--
-- TOC entry 4396 (class 0 OID 0)
-- Dependencies: 369
-- Name: PayrollPremiums_PayrollPremiumId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "PayrollPremiums_PayrollPremiumId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "PayrollPremiums_PayrollPremiumId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "PayrollPremiums_PayrollPremiumId_seq" TO postgres;
GRANT ALL ON SEQUENCE "PayrollPremiums_PayrollPremiumId_seq" TO PUBLIC;


--
-- TOC entry 4397 (class 0 OID 0)
-- Dependencies: 370
-- Name: PayrollProfiles; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "PayrollProfiles" FROM PUBLIC;
REVOKE ALL ON TABLE "PayrollProfiles" FROM postgres;
GRANT ALL ON TABLE "PayrollProfiles" TO postgres;
GRANT ALL ON TABLE "PayrollProfiles" TO PUBLIC;


--
-- TOC entry 4399 (class 0 OID 0)
-- Dependencies: 371
-- Name: PayrollProfiles_PayrollProfileId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "PayrollProfiles_PayrollProfileId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "PayrollProfiles_PayrollProfileId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "PayrollProfiles_PayrollProfileId_seq" TO postgres;
GRANT ALL ON SEQUENCE "PayrollProfiles_PayrollProfileId_seq" TO PUBLIC;


--
-- TOC entry 4400 (class 0 OID 0)
-- Dependencies: 372
-- Name: Payrolls; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Payrolls" FROM PUBLIC;
REVOKE ALL ON TABLE "Payrolls" FROM postgres;
GRANT ALL ON TABLE "Payrolls" TO postgres;
GRANT ALL ON TABLE "Payrolls" TO PUBLIC;


--
-- TOC entry 4402 (class 0 OID 0)
-- Dependencies: 373
-- Name: Payrolls_PayrollId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Payrolls_PayrollId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Payrolls_PayrollId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Payrolls_PayrollId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Payrolls_PayrollId_seq" TO PUBLIC;


--
-- TOC entry 4403 (class 0 OID 0)
-- Dependencies: 374
-- Name: PermissionToLeaves; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "PermissionToLeaves" FROM PUBLIC;
REVOKE ALL ON TABLE "PermissionToLeaves" FROM postgres;
GRANT ALL ON TABLE "PermissionToLeaves" TO postgres;
GRANT ALL ON TABLE "PermissionToLeaves" TO PUBLIC;


--
-- TOC entry 4405 (class 0 OID 0)
-- Dependencies: 375
-- Name: PermissionToLeaves_PermissionToLeaveId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "PermissionToLeaves_PermissionToLeaveId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "PermissionToLeaves_PermissionToLeaveId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "PermissionToLeaves_PermissionToLeaveId_seq" TO postgres;
GRANT ALL ON SEQUENCE "PermissionToLeaves_PermissionToLeaveId_seq" TO PUBLIC;


--
-- TOC entry 4406 (class 0 OID 0)
-- Dependencies: 376
-- Name: PersonnelActionMemoNotifications; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "PersonnelActionMemoNotifications" FROM PUBLIC;
REVOKE ALL ON TABLE "PersonnelActionMemoNotifications" FROM postgres;
GRANT ALL ON TABLE "PersonnelActionMemoNotifications" TO postgres;
GRANT ALL ON TABLE "PersonnelActionMemoNotifications" TO PUBLIC;


--
-- TOC entry 4408 (class 0 OID 0)
-- Dependencies: 377
-- Name: PersonnelActionMemoNotificati_PersonnelActionMemoNotificati_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "PersonnelActionMemoNotificati_PersonnelActionMemoNotificati_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "PersonnelActionMemoNotificati_PersonnelActionMemoNotificati_seq" FROM postgres;
GRANT ALL ON SEQUENCE "PersonnelActionMemoNotificati_PersonnelActionMemoNotificati_seq" TO postgres;
GRANT ALL ON SEQUENCE "PersonnelActionMemoNotificati_PersonnelActionMemoNotificati_seq" TO PUBLIC;


--
-- TOC entry 4409 (class 0 OID 0)
-- Dependencies: 378
-- Name: PersonnelActionMemos; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "PersonnelActionMemos" FROM PUBLIC;
REVOKE ALL ON TABLE "PersonnelActionMemos" FROM postgres;
GRANT ALL ON TABLE "PersonnelActionMemos" TO postgres;
GRANT ALL ON TABLE "PersonnelActionMemos" TO PUBLIC;


--
-- TOC entry 4411 (class 0 OID 0)
-- Dependencies: 379
-- Name: PersonnelActionMemos_PersonnelActionMemoId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "PersonnelActionMemos_PersonnelActionMemoId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "PersonnelActionMemos_PersonnelActionMemoId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "PersonnelActionMemos_PersonnelActionMemoId_seq" TO postgres;
GRANT ALL ON SEQUENCE "PersonnelActionMemos_PersonnelActionMemoId_seq" TO PUBLIC;


--
-- TOC entry 4412 (class 0 OID 0)
-- Dependencies: 380
-- Name: PhilHealthContributions; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "PhilHealthContributions" FROM PUBLIC;
REVOKE ALL ON TABLE "PhilHealthContributions" FROM postgres;
GRANT ALL ON TABLE "PhilHealthContributions" TO postgres;


--
-- TOC entry 4414 (class 0 OID 0)
-- Dependencies: 381
-- Name: PhilHealthContribution_PhilHealthBracketId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "PhilHealthContribution_PhilHealthBracketId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "PhilHealthContribution_PhilHealthBracketId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "PhilHealthContribution_PhilHealthBracketId_seq" TO postgres;
GRANT ALL ON SEQUENCE "PhilHealthContribution_PhilHealthBracketId_seq" TO PUBLIC;


--
-- TOC entry 4415 (class 0 OID 0)
-- Dependencies: 382
-- Name: PlantillaRecordEntries; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "PlantillaRecordEntries" FROM PUBLIC;
REVOKE ALL ON TABLE "PlantillaRecordEntries" FROM postgres;
GRANT ALL ON TABLE "PlantillaRecordEntries" TO postgres;
GRANT ALL ON TABLE "PlantillaRecordEntries" TO PUBLIC;


--
-- TOC entry 4417 (class 0 OID 0)
-- Dependencies: 383
-- Name: PlantillaRecordEntries_PlantillaRecordEntryId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "PlantillaRecordEntries_PlantillaRecordEntryId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "PlantillaRecordEntries_PlantillaRecordEntryId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "PlantillaRecordEntries_PlantillaRecordEntryId_seq" TO postgres;
GRANT ALL ON SEQUENCE "PlantillaRecordEntries_PlantillaRecordEntryId_seq" TO PUBLIC;


--
-- TOC entry 4418 (class 0 OID 0)
-- Dependencies: 384
-- Name: PlantillaRecords; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "PlantillaRecords" FROM PUBLIC;
REVOKE ALL ON TABLE "PlantillaRecords" FROM postgres;
GRANT ALL ON TABLE "PlantillaRecords" TO postgres;
GRANT ALL ON TABLE "PlantillaRecords" TO PUBLIC;


--
-- TOC entry 4420 (class 0 OID 0)
-- Dependencies: 385
-- Name: PlantillaRecords_PlantillaRecordId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "PlantillaRecords_PlantillaRecordId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "PlantillaRecords_PlantillaRecordId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "PlantillaRecords_PlantillaRecordId_seq" TO postgres;
GRANT ALL ON SEQUENCE "PlantillaRecords_PlantillaRecordId_seq" TO PUBLIC;


--
-- TOC entry 4421 (class 0 OID 0)
-- Dependencies: 386
-- Name: PositionEducationalBackgrounds; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "PositionEducationalBackgrounds" FROM PUBLIC;
REVOKE ALL ON TABLE "PositionEducationalBackgrounds" FROM postgres;
GRANT ALL ON TABLE "PositionEducationalBackgrounds" TO postgres;
GRANT ALL ON TABLE "PositionEducationalBackgrounds" TO PUBLIC;


--
-- TOC entry 4423 (class 0 OID 0)
-- Dependencies: 387
-- Name: PositionEducationalBackground_PositionEducationalBackground_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "PositionEducationalBackground_PositionEducationalBackground_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "PositionEducationalBackground_PositionEducationalBackground_seq" FROM postgres;
GRANT ALL ON SEQUENCE "PositionEducationalBackground_PositionEducationalBackground_seq" TO postgres;
GRANT ALL ON SEQUENCE "PositionEducationalBackground_PositionEducationalBackground_seq" TO PUBLIC;


--
-- TOC entry 4424 (class 0 OID 0)
-- Dependencies: 388
-- Name: PositionEligibilities; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "PositionEligibilities" FROM PUBLIC;
REVOKE ALL ON TABLE "PositionEligibilities" FROM postgres;
GRANT ALL ON TABLE "PositionEligibilities" TO postgres;
GRANT ALL ON TABLE "PositionEligibilities" TO PUBLIC;


--
-- TOC entry 4426 (class 0 OID 0)
-- Dependencies: 389
-- Name: PositionEligibilities_PositionEligibilityId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "PositionEligibilities_PositionEligibilityId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "PositionEligibilities_PositionEligibilityId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "PositionEligibilities_PositionEligibilityId_seq" TO postgres;
GRANT ALL ON SEQUENCE "PositionEligibilities_PositionEligibilityId_seq" TO PUBLIC;


--
-- TOC entry 4427 (class 0 OID 0)
-- Dependencies: 390
-- Name: PositionExperiences; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "PositionExperiences" FROM PUBLIC;
REVOKE ALL ON TABLE "PositionExperiences" FROM postgres;
GRANT ALL ON TABLE "PositionExperiences" TO postgres;
GRANT ALL ON TABLE "PositionExperiences" TO PUBLIC;


--
-- TOC entry 4429 (class 0 OID 0)
-- Dependencies: 391
-- Name: PositionExperiences_PositionExperienceId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "PositionExperiences_PositionExperienceId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "PositionExperiences_PositionExperienceId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "PositionExperiences_PositionExperienceId_seq" TO postgres;
GRANT ALL ON SEQUENCE "PositionExperiences_PositionExperienceId_seq" TO PUBLIC;


--
-- TOC entry 4430 (class 0 OID 0)
-- Dependencies: 392
-- Name: PositionTrainings; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "PositionTrainings" FROM PUBLIC;
REVOKE ALL ON TABLE "PositionTrainings" FROM postgres;
GRANT ALL ON TABLE "PositionTrainings" TO postgres;
GRANT ALL ON TABLE "PositionTrainings" TO PUBLIC;


--
-- TOC entry 4432 (class 0 OID 0)
-- Dependencies: 393
-- Name: PositionTrainings_PositionTrainingId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "PositionTrainings_PositionTrainingId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "PositionTrainings_PositionTrainingId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "PositionTrainings_PositionTrainingId_seq" TO postgres;
GRANT ALL ON SEQUENCE "PositionTrainings_PositionTrainingId_seq" TO PUBLIC;


--
-- TOC entry 4433 (class 0 OID 0)
-- Dependencies: 394
-- Name: Positions; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Positions" FROM PUBLIC;
REVOKE ALL ON TABLE "Positions" FROM postgres;
GRANT ALL ON TABLE "Positions" TO postgres;


--
-- TOC entry 4435 (class 0 OID 0)
-- Dependencies: 395
-- Name: Positions_PositionId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Positions_PositionId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Positions_PositionId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Positions_PositionId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Positions_PositionId_seq" TO PUBLIC;


--
-- TOC entry 4436 (class 0 OID 0)
-- Dependencies: 396
-- Name: Questionnaires; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Questionnaires" FROM PUBLIC;
REVOKE ALL ON TABLE "Questionnaires" FROM postgres;
GRANT ALL ON TABLE "Questionnaires" TO postgres;
GRANT ALL ON TABLE "Questionnaires" TO PUBLIC;


--
-- TOC entry 4438 (class 0 OID 0)
-- Dependencies: 397
-- Name: Questionnaires_QuestionnaireId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Questionnaires_QuestionnaireId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Questionnaires_QuestionnaireId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Questionnaires_QuestionnaireId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Questionnaires_QuestionnaireId_seq" TO PUBLIC;


--
-- TOC entry 4439 (class 0 OID 0)
-- Dependencies: 398
-- Name: RFIDParameters; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "RFIDParameters" FROM PUBLIC;
REVOKE ALL ON TABLE "RFIDParameters" FROM postgres;
GRANT ALL ON TABLE "RFIDParameters" TO postgres;


--
-- TOC entry 4441 (class 0 OID 0)
-- Dependencies: 399
-- Name: RFIDParameters_RFIDParameterId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "RFIDParameters_RFIDParameterId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "RFIDParameters_RFIDParameterId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "RFIDParameters_RFIDParameterId_seq" TO postgres;
GRANT ALL ON SEQUENCE "RFIDParameters_RFIDParameterId_seq" TO PUBLIC;


--
-- TOC entry 4442 (class 0 OID 0)
-- Dependencies: 400
-- Name: Rankings; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Rankings" FROM PUBLIC;
REVOKE ALL ON TABLE "Rankings" FROM postgres;
GRANT ALL ON TABLE "Rankings" TO postgres;


--
-- TOC entry 4444 (class 0 OID 0)
-- Dependencies: 401
-- Name: Rankings_RankId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Rankings_RankId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Rankings_RankId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Rankings_RankId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Rankings_RankId_seq" TO PUBLIC;


--
-- TOC entry 4445 (class 0 OID 0)
-- Dependencies: 402
-- Name: RateTypes; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "RateTypes" FROM PUBLIC;
REVOKE ALL ON TABLE "RateTypes" FROM postgres;
GRANT ALL ON TABLE "RateTypes" TO postgres;


--
-- TOC entry 4447 (class 0 OID 0)
-- Dependencies: 403
-- Name: RateType_RateTypeId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "RateType_RateTypeId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "RateType_RateTypeId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "RateType_RateTypeId_seq" TO postgres;
GRANT ALL ON SEQUENCE "RateType_RateTypeId_seq" TO PUBLIC;


--
-- TOC entry 4448 (class 0 OID 0)
-- Dependencies: 404
-- Name: Recognitions; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Recognitions" FROM PUBLIC;
REVOKE ALL ON TABLE "Recognitions" FROM postgres;
GRANT ALL ON TABLE "Recognitions" TO postgres;
GRANT ALL ON TABLE "Recognitions" TO PUBLIC;


--
-- TOC entry 4450 (class 0 OID 0)
-- Dependencies: 405
-- Name: Recognitions_RecognitionId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Recognitions_RecognitionId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Recognitions_RecognitionId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Recognitions_RecognitionId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Recognitions_RecognitionId_seq" TO PUBLIC;


--
-- TOC entry 4451 (class 0 OID 0)
-- Dependencies: 406
-- Name: ReportPrintSettings; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "ReportPrintSettings" FROM PUBLIC;
REVOKE ALL ON TABLE "ReportPrintSettings" FROM postgres;
GRANT ALL ON TABLE "ReportPrintSettings" TO postgres;
GRANT ALL ON TABLE "ReportPrintSettings" TO PUBLIC;


--
-- TOC entry 4453 (class 0 OID 0)
-- Dependencies: 407
-- Name: ReportPrintSettings_ReportPrintSettingId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "ReportPrintSettings_ReportPrintSettingId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "ReportPrintSettings_ReportPrintSettingId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "ReportPrintSettings_ReportPrintSettingId_seq" TO postgres;
GRANT ALL ON SEQUENCE "ReportPrintSettings_ReportPrintSettingId_seq" TO PUBLIC;


--
-- TOC entry 4454 (class 0 OID 0)
-- Dependencies: 408
-- Name: ReportSignatories; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "ReportSignatories" FROM PUBLIC;
REVOKE ALL ON TABLE "ReportSignatories" FROM postgres;
GRANT ALL ON TABLE "ReportSignatories" TO postgres;
GRANT ALL ON TABLE "ReportSignatories" TO PUBLIC;


--
-- TOC entry 4456 (class 0 OID 0)
-- Dependencies: 409
-- Name: ReportSignatories_ReportSignatoryId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "ReportSignatories_ReportSignatoryId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "ReportSignatories_ReportSignatoryId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "ReportSignatories_ReportSignatoryId_seq" TO postgres;
GRANT ALL ON SEQUENCE "ReportSignatories_ReportSignatoryId_seq" TO PUBLIC;


--
-- TOC entry 4457 (class 0 OID 0)
-- Dependencies: 410
-- Name: SSSContributions; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "SSSContributions" FROM PUBLIC;
REVOKE ALL ON TABLE "SSSContributions" FROM postgres;
GRANT ALL ON TABLE "SSSContributions" TO postgres;


--
-- TOC entry 4459 (class 0 OID 0)
-- Dependencies: 411
-- Name: SSSContribution_SSSBracketId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "SSSContribution_SSSBracketId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "SSSContribution_SSSBracketId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "SSSContribution_SSSBracketId_seq" TO postgres;
GRANT ALL ON SEQUENCE "SSSContribution_SSSBracketId_seq" TO PUBLIC;


--
-- TOC entry 4460 (class 0 OID 0)
-- Dependencies: 412
-- Name: SalaryGrades; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "SalaryGrades" FROM PUBLIC;
REVOKE ALL ON TABLE "SalaryGrades" FROM postgres;
GRANT ALL ON TABLE "SalaryGrades" TO postgres;


--
-- TOC entry 4462 (class 0 OID 0)
-- Dependencies: 413
-- Name: SalaryGrades_Id_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "SalaryGrades_Id_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "SalaryGrades_Id_seq" FROM postgres;
GRANT ALL ON SEQUENCE "SalaryGrades_Id_seq" TO postgres;
GRANT ALL ON SEQUENCE "SalaryGrades_Id_seq" TO PUBLIC;


--
-- TOC entry 4463 (class 0 OID 0)
-- Dependencies: 414
-- Name: Sanctions; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Sanctions" FROM PUBLIC;
REVOKE ALL ON TABLE "Sanctions" FROM postgres;
GRANT ALL ON TABLE "Sanctions" TO postgres;
GRANT ALL ON TABLE "Sanctions" TO PUBLIC;


--
-- TOC entry 4465 (class 0 OID 0)
-- Dependencies: 415
-- Name: Sanctions_SanctionId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Sanctions_SanctionId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Sanctions_SanctionId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Sanctions_SanctionId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Sanctions_SanctionId_seq" TO PUBLIC;


--
-- TOC entry 4466 (class 0 OID 0)
-- Dependencies: 416
-- Name: ScheduleTemplates; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "ScheduleTemplates" FROM PUBLIC;
REVOKE ALL ON TABLE "ScheduleTemplates" FROM postgres;
GRANT ALL ON TABLE "ScheduleTemplates" TO postgres;
GRANT ALL ON TABLE "ScheduleTemplates" TO PUBLIC;


--
-- TOC entry 4468 (class 0 OID 0)
-- Dependencies: 417
-- Name: ScheduleTemplates_ScheduleTemplateId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "ScheduleTemplates_ScheduleTemplateId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "ScheduleTemplates_ScheduleTemplateId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "ScheduleTemplates_ScheduleTemplateId_seq" TO postgres;
GRANT ALL ON SEQUENCE "ScheduleTemplates_ScheduleTemplateId_seq" TO PUBLIC;


--
-- TOC entry 4469 (class 0 OID 0)
-- Dependencies: 418
-- Name: Sections; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Sections" FROM PUBLIC;
REVOKE ALL ON TABLE "Sections" FROM postgres;
GRANT ALL ON TABLE "Sections" TO postgres;


--
-- TOC entry 4471 (class 0 OID 0)
-- Dependencies: 419
-- Name: Sections_SectionId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Sections_SectionId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Sections_SectionId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Sections_SectionId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Sections_SectionId_seq" TO PUBLIC;


--
-- TOC entry 4472 (class 0 OID 0)
-- Dependencies: 420
-- Name: SelfEmployedSSSEmployees; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "SelfEmployedSSSEmployees" FROM PUBLIC;
REVOKE ALL ON TABLE "SelfEmployedSSSEmployees" FROM postgres;
GRANT ALL ON TABLE "SelfEmployedSSSEmployees" TO postgres;
GRANT ALL ON TABLE "SelfEmployedSSSEmployees" TO PUBLIC;


--
-- TOC entry 4474 (class 0 OID 0)
-- Dependencies: 421
-- Name: SelfEmployedSSSEmployees_SelfEmployedId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "SelfEmployedSSSEmployees_SelfEmployedId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "SelfEmployedSSSEmployees_SelfEmployedId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "SelfEmployedSSSEmployees_SelfEmployedId_seq" TO postgres;
GRANT ALL ON SEQUENCE "SelfEmployedSSSEmployees_SelfEmployedId_seq" TO PUBLIC;


--
-- TOC entry 4475 (class 0 OID 0)
-- Dependencies: 422
-- Name: SeparatedRecords; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "SeparatedRecords" FROM PUBLIC;
REVOKE ALL ON TABLE "SeparatedRecords" FROM postgres;
GRANT ALL ON TABLE "SeparatedRecords" TO postgres;
GRANT ALL ON TABLE "SeparatedRecords" TO PUBLIC;


--
-- TOC entry 4477 (class 0 OID 0)
-- Dependencies: 423
-- Name: SeparatedRecords_SeparatedRecordId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "SeparatedRecords_SeparatedRecordId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "SeparatedRecords_SeparatedRecordId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "SeparatedRecords_SeparatedRecordId_seq" TO postgres;
GRANT ALL ON SEQUENCE "SeparatedRecords_SeparatedRecordId_seq" TO PUBLIC;


--
-- TOC entry 4478 (class 0 OID 0)
-- Dependencies: 424
-- Name: ServiceRecords; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "ServiceRecords" FROM PUBLIC;
REVOKE ALL ON TABLE "ServiceRecords" FROM postgres;
GRANT ALL ON TABLE "ServiceRecords" TO postgres;


--
-- TOC entry 4480 (class 0 OID 0)
-- Dependencies: 425
-- Name: ServiceRecord_ServiceId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "ServiceRecord_ServiceId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "ServiceRecord_ServiceId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "ServiceRecord_ServiceId_seq" TO postgres;
GRANT ALL ON SEQUENCE "ServiceRecord_ServiceId_seq" TO PUBLIC;


--
-- TOC entry 4481 (class 0 OID 0)
-- Dependencies: 426
-- Name: Skills; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Skills" FROM PUBLIC;
REVOKE ALL ON TABLE "Skills" FROM postgres;
GRANT ALL ON TABLE "Skills" TO postgres;
GRANT ALL ON TABLE "Skills" TO PUBLIC;


--
-- TOC entry 4483 (class 0 OID 0)
-- Dependencies: 427
-- Name: Skills_SkillId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Skills_SkillId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Skills_SkillId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Skills_SkillId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Skills_SkillId_seq" TO PUBLIC;


--
-- TOC entry 4484 (class 0 OID 0)
-- Dependencies: 428
-- Name: Spouses; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Spouses" FROM PUBLIC;
REVOKE ALL ON TABLE "Spouses" FROM postgres;
GRANT ALL ON TABLE "Spouses" TO postgres;


--
-- TOC entry 4486 (class 0 OID 0)
-- Dependencies: 429
-- Name: Spouse_SpouseId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Spouse_SpouseId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Spouse_SpouseId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Spouse_SpouseId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Spouse_SpouseId_seq" TO PUBLIC;


--
-- TOC entry 4487 (class 0 OID 0)
-- Dependencies: 430
-- Name: StationEmployees; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "StationEmployees" FROM PUBLIC;
REVOKE ALL ON TABLE "StationEmployees" FROM postgres;
GRANT ALL ON TABLE "StationEmployees" TO postgres;
GRANT ALL ON TABLE "StationEmployees" TO PUBLIC;


--
-- TOC entry 4489 (class 0 OID 0)
-- Dependencies: 431
-- Name: StationEmployees_StationEmployeeId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "StationEmployees_StationEmployeeId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "StationEmployees_StationEmployeeId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "StationEmployees_StationEmployeeId_seq" TO postgres;
GRANT ALL ON SEQUENCE "StationEmployees_StationEmployeeId_seq" TO PUBLIC;


--
-- TOC entry 4490 (class 0 OID 0)
-- Dependencies: 432
-- Name: Stations; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Stations" FROM PUBLIC;
REVOKE ALL ON TABLE "Stations" FROM postgres;
GRANT ALL ON TABLE "Stations" TO postgres;
GRANT ALL ON TABLE "Stations" TO PUBLIC;


--
-- TOC entry 4492 (class 0 OID 0)
-- Dependencies: 433
-- Name: Stations_StationId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Stations_StationId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Stations_StationId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Stations_StationId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Stations_StationId_seq" TO PUBLIC;


--
-- TOC entry 4493 (class 0 OID 0)
-- Dependencies: 434
-- Name: StepIncrementPolicies; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "StepIncrementPolicies" FROM PUBLIC;
REVOKE ALL ON TABLE "StepIncrementPolicies" FROM postgres;
GRANT ALL ON TABLE "StepIncrementPolicies" TO postgres;
GRANT ALL ON TABLE "StepIncrementPolicies" TO PUBLIC;


--
-- TOC entry 4495 (class 0 OID 0)
-- Dependencies: 435
-- Name: StepIncrementPolicies_StepIncrementPolicyId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "StepIncrementPolicies_StepIncrementPolicyId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "StepIncrementPolicies_StepIncrementPolicyId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "StepIncrementPolicies_StepIncrementPolicyId_seq" TO postgres;
GRANT ALL ON SEQUENCE "StepIncrementPolicies_StepIncrementPolicyId_seq" TO PUBLIC;


--
-- TOC entry 4496 (class 0 OID 0)
-- Dependencies: 436
-- Name: StudyLeaveServiceObligations; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "StudyLeaveServiceObligations" FROM PUBLIC;
REVOKE ALL ON TABLE "StudyLeaveServiceObligations" FROM postgres;
GRANT ALL ON TABLE "StudyLeaveServiceObligations" TO postgres;
GRANT ALL ON TABLE "StudyLeaveServiceObligations" TO PUBLIC;


--
-- TOC entry 4498 (class 0 OID 0)
-- Dependencies: 437
-- Name: StudyLeaveServiceObligations_ServiceObligationId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "StudyLeaveServiceObligations_ServiceObligationId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "StudyLeaveServiceObligations_ServiceObligationId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "StudyLeaveServiceObligations_ServiceObligationId_seq" TO postgres;
GRANT ALL ON SEQUENCE "StudyLeaveServiceObligations_ServiceObligationId_seq" TO PUBLIC;


--
-- TOC entry 4499 (class 0 OID 0)
-- Dependencies: 438
-- Name: SystemParameters; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "SystemParameters" FROM PUBLIC;
REVOKE ALL ON TABLE "SystemParameters" FROM postgres;
GRANT ALL ON TABLE "SystemParameters" TO postgres;


--
-- TOC entry 4500 (class 0 OID 0)
-- Dependencies: 439
-- Name: TardinessPolicies; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "TardinessPolicies" FROM PUBLIC;
REVOKE ALL ON TABLE "TardinessPolicies" FROM postgres;
GRANT ALL ON TABLE "TardinessPolicies" TO postgres;


--
-- TOC entry 4502 (class 0 OID 0)
-- Dependencies: 440
-- Name: TardinessPolicies_Id_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "TardinessPolicies_Id_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "TardinessPolicies_Id_seq" FROM postgres;
GRANT ALL ON SEQUENCE "TardinessPolicies_Id_seq" TO postgres;
GRANT ALL ON SEQUENCE "TardinessPolicies_Id_seq" TO PUBLIC;


--
-- TOC entry 4503 (class 0 OID 0)
-- Dependencies: 441
-- Name: TimeLogPolicies; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "TimeLogPolicies" FROM PUBLIC;
REVOKE ALL ON TABLE "TimeLogPolicies" FROM postgres;
GRANT ALL ON TABLE "TimeLogPolicies" TO postgres;


--
-- TOC entry 4505 (class 0 OID 0)
-- Dependencies: 442
-- Name: TimeLogPolicies_Id_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "TimeLogPolicies_Id_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "TimeLogPolicies_Id_seq" FROM postgres;
GRANT ALL ON SEQUENCE "TimeLogPolicies_Id_seq" TO postgres;
GRANT ALL ON SEQUENCE "TimeLogPolicies_Id_seq" TO PUBLIC;


--
-- TOC entry 4506 (class 0 OID 0)
-- Dependencies: 443
-- Name: Trainings; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Trainings" FROM PUBLIC;
REVOKE ALL ON TABLE "Trainings" FROM postgres;
GRANT ALL ON TABLE "Trainings" TO postgres;
GRANT ALL ON TABLE "Trainings" TO PUBLIC;


--
-- TOC entry 4508 (class 0 OID 0)
-- Dependencies: 444
-- Name: Trainings_TrainingId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Trainings_TrainingId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Trainings_TrainingId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Trainings_TrainingId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Trainings_TrainingId_seq" TO PUBLIC;


--
-- TOC entry 4509 (class 0 OID 0)
-- Dependencies: 445
-- Name: TravelOrderEmployees; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "TravelOrderEmployees" FROM PUBLIC;
REVOKE ALL ON TABLE "TravelOrderEmployees" FROM postgres;
GRANT ALL ON TABLE "TravelOrderEmployees" TO postgres;
GRANT ALL ON TABLE "TravelOrderEmployees" TO PUBLIC;


--
-- TOC entry 4511 (class 0 OID 0)
-- Dependencies: 446
-- Name: TravelOrderEmployees_TravelOrderEmployeeId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "TravelOrderEmployees_TravelOrderEmployeeId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "TravelOrderEmployees_TravelOrderEmployeeId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "TravelOrderEmployees_TravelOrderEmployeeId_seq" TO postgres;
GRANT ALL ON SEQUENCE "TravelOrderEmployees_TravelOrderEmployeeId_seq" TO PUBLIC;


--
-- TOC entry 4512 (class 0 OID 0)
-- Dependencies: 447
-- Name: TravelOrders; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "TravelOrders" FROM PUBLIC;
REVOKE ALL ON TABLE "TravelOrders" FROM postgres;
GRANT ALL ON TABLE "TravelOrders" TO postgres;
GRANT ALL ON TABLE "TravelOrders" TO PUBLIC;


--
-- TOC entry 4514 (class 0 OID 0)
-- Dependencies: 448
-- Name: TravelOrderId_TravelOrderId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "TravelOrderId_TravelOrderId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "TravelOrderId_TravelOrderId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "TravelOrderId_TravelOrderId_seq" TO postgres;
GRANT ALL ON SEQUENCE "TravelOrderId_TravelOrderId_seq" TO PUBLIC;


--
-- TOC entry 4515 (class 0 OID 0)
-- Dependencies: 449
-- Name: UserGroups; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "UserGroups" FROM PUBLIC;
REVOKE ALL ON TABLE "UserGroups" FROM postgres;
GRANT ALL ON TABLE "UserGroups" TO postgres;
GRANT ALL ON TABLE "UserGroups" TO PUBLIC;


--
-- TOC entry 4517 (class 0 OID 0)
-- Dependencies: 450
-- Name: UserGroups_Id_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "UserGroups_Id_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "UserGroups_Id_seq" FROM postgres;
GRANT ALL ON SEQUENCE "UserGroups_Id_seq" TO postgres;
GRANT ALL ON SEQUENCE "UserGroups_Id_seq" TO PUBLIC;


--
-- TOC entry 4518 (class 0 OID 0)
-- Dependencies: 451
-- Name: UserPermissions; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "UserPermissions" FROM PUBLIC;
REVOKE ALL ON TABLE "UserPermissions" FROM postgres;
GRANT ALL ON TABLE "UserPermissions" TO postgres;


--
-- TOC entry 4519 (class 0 OID 0)
-- Dependencies: 452
-- Name: Users; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Users" FROM PUBLIC;
REVOKE ALL ON TABLE "Users" FROM postgres;
GRANT ALL ON TABLE "Users" TO postgres;


--
-- TOC entry 4521 (class 0 OID 0)
-- Dependencies: 453
-- Name: Users_Id_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Users_Id_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Users_Id_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Users_Id_seq" TO postgres;
GRANT ALL ON SEQUENCE "Users_Id_seq" TO PUBLIC;


--
-- TOC entry 4523 (class 0 OID 0)
-- Dependencies: 454
-- Name: ViolationPolicies; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "ViolationPolicies" FROM PUBLIC;
REVOKE ALL ON TABLE "ViolationPolicies" FROM postgres;
GRANT ALL ON TABLE "ViolationPolicies" TO postgres;
GRANT ALL ON TABLE "ViolationPolicies" TO PUBLIC;


--
-- TOC entry 4525 (class 0 OID 0)
-- Dependencies: 455
-- Name: ViolationPolicies_ViolationPolicyId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "ViolationPolicies_ViolationPolicyId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "ViolationPolicies_ViolationPolicyId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "ViolationPolicies_ViolationPolicyId_seq" TO postgres;
GRANT ALL ON SEQUENCE "ViolationPolicies_ViolationPolicyId_seq" TO PUBLIC;


--
-- TOC entry 4526 (class 0 OID 0)
-- Dependencies: 456
-- Name: Violations; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Violations" FROM PUBLIC;
REVOKE ALL ON TABLE "Violations" FROM postgres;
GRANT ALL ON TABLE "Violations" TO postgres;
GRANT ALL ON TABLE "Violations" TO PUBLIC;


--
-- TOC entry 4527 (class 0 OID 0)
-- Dependencies: 457
-- Name: ViolationsAndSanctions; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "ViolationsAndSanctions" FROM PUBLIC;
REVOKE ALL ON TABLE "ViolationsAndSanctions" FROM postgres;
GRANT ALL ON TABLE "ViolationsAndSanctions" TO postgres;
GRANT ALL ON TABLE "ViolationsAndSanctions" TO PUBLIC;


--
-- TOC entry 4529 (class 0 OID 0)
-- Dependencies: 458
-- Name: ViolationsAndSanctions_ViolationAndSanctionId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "ViolationsAndSanctions_ViolationAndSanctionId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "ViolationsAndSanctions_ViolationAndSanctionId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "ViolationsAndSanctions_ViolationAndSanctionId_seq" TO postgres;
GRANT ALL ON SEQUENCE "ViolationsAndSanctions_ViolationAndSanctionId_seq" TO PUBLIC;


--
-- TOC entry 4531 (class 0 OID 0)
-- Dependencies: 459
-- Name: Violations_ViolationId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Violations_ViolationId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Violations_ViolationId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Violations_ViolationId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Violations_ViolationId_seq" TO PUBLIC;


--
-- TOC entry 4532 (class 0 OID 0)
-- Dependencies: 460
-- Name: VisitorLogs; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "VisitorLogs" FROM PUBLIC;
REVOKE ALL ON TABLE "VisitorLogs" FROM postgres;
GRANT ALL ON TABLE "VisitorLogs" TO postgres;


--
-- TOC entry 4534 (class 0 OID 0)
-- Dependencies: 461
-- Name: VisitorLogs_VisitorLogId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "VisitorLogs_VisitorLogId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "VisitorLogs_VisitorLogId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "VisitorLogs_VisitorLogId_seq" TO postgres;
GRANT ALL ON SEQUENCE "VisitorLogs_VisitorLogId_seq" TO PUBLIC;


--
-- TOC entry 4535 (class 0 OID 0)
-- Dependencies: 462
-- Name: Visitors; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "Visitors" FROM PUBLIC;
REVOKE ALL ON TABLE "Visitors" FROM postgres;
GRANT ALL ON TABLE "Visitors" TO postgres;


--
-- TOC entry 4537 (class 0 OID 0)
-- Dependencies: 463
-- Name: Visitors_VisitorId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "Visitors_VisitorId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "Visitors_VisitorId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "Visitors_VisitorId_seq" TO postgres;
GRANT ALL ON SEQUENCE "Visitors_VisitorId_seq" TO PUBLIC;


--
-- TOC entry 4538 (class 0 OID 0)
-- Dependencies: 464
-- Name: WithholdingTaxesStatus; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "WithholdingTaxesStatus" FROM PUBLIC;
REVOKE ALL ON TABLE "WithholdingTaxesStatus" FROM postgres;
GRANT ALL ON TABLE "WithholdingTaxesStatus" TO postgres;


--
-- TOC entry 4540 (class 0 OID 0)
-- Dependencies: 465
-- Name: WithholdingTaxStatus_WithholdingTaxStatusId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "WithholdingTaxStatus_WithholdingTaxStatusId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "WithholdingTaxStatus_WithholdingTaxStatusId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "WithholdingTaxStatus_WithholdingTaxStatusId_seq" TO postgres;
GRANT ALL ON SEQUENCE "WithholdingTaxStatus_WithholdingTaxStatusId_seq" TO PUBLIC;


--
-- TOC entry 4541 (class 0 OID 0)
-- Dependencies: 466
-- Name: WithholdingTaxes; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON TABLE "WithholdingTaxes" FROM PUBLIC;
REVOKE ALL ON TABLE "WithholdingTaxes" FROM postgres;
GRANT ALL ON TABLE "WithholdingTaxes" TO postgres;


--
-- TOC entry 4543 (class 0 OID 0)
-- Dependencies: 467
-- Name: WithholdingTax_WithholdingTaxId_seq; Type: ACL; Schema: public; Owner: postgres
--

REVOKE ALL ON SEQUENCE "WithholdingTax_WithholdingTaxId_seq" FROM PUBLIC;
REVOKE ALL ON SEQUENCE "WithholdingTax_WithholdingTaxId_seq" FROM postgres;
GRANT ALL ON SEQUENCE "WithholdingTax_WithholdingTaxId_seq" TO postgres;
GRANT ALL ON SEQUENCE "WithholdingTax_WithholdingTaxId_seq" TO PUBLIC;


--
-- TOC entry 2508 (class 826 OID 18388)
-- Name: DEFAULT PRIVILEGES FOR SEQUENCES; Type: DEFAULT ACL; Schema: -; Owner: postgres
--

ALTER DEFAULT PRIVILEGES FOR ROLE postgres REVOKE ALL ON SEQUENCES  FROM PUBLIC;
ALTER DEFAULT PRIVILEGES FOR ROLE postgres REVOKE ALL ON SEQUENCES  FROM postgres;
ALTER DEFAULT PRIVILEGES FOR ROLE postgres GRANT ALL ON SEQUENCES  TO postgres;
ALTER DEFAULT PRIVILEGES FOR ROLE postgres GRANT ALL ON SEQUENCES  TO PUBLIC;


--
-- TOC entry 2509 (class 826 OID 18390)
-- Name: DEFAULT PRIVILEGES FOR TABLES; Type: DEFAULT ACL; Schema: -; Owner: postgres
--

ALTER DEFAULT PRIVILEGES FOR ROLE postgres REVOKE ALL ON TABLES  FROM PUBLIC;
ALTER DEFAULT PRIVILEGES FOR ROLE postgres REVOKE ALL ON TABLES  FROM postgres;
ALTER DEFAULT PRIVILEGES FOR ROLE postgres GRANT ALL ON TABLES  TO postgres;
ALTER DEFAULT PRIVILEGES FOR ROLE postgres GRANT ALL ON TABLES  TO PUBLIC;


-- Completed on 2025-03-27 10:16:19

--
-- PostgreSQL database dump complete
--